File tree Expand file tree Collapse file tree 5 files changed +12
-8
lines changed
Expand file tree Collapse file tree 5 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 33 |_ _|___ ___ ___ ___ ___
44 | | | .'| . | . | -_| _|
55 |_| |__,|_ |_ |___|_|
6- |___|___| version 0.4.5
6+ |___|___| version 0.5.0
77```
88# [ Tagger: Zero dependency, Vanilla JavaScript Tag Editor] ( https://github.com/jcubic/tagger )
99
10- [ ![ npm] ( https://img.shields.io/badge/npm-0.4.5 -blue.svg )] ( https://www.npmjs.com/package/@jcubic/tagger )
10+ [ ![ npm] ( https://img.shields.io/badge/npm-0.5.0 -blue.svg )] ( https://www.npmjs.com/package/@jcubic/tagger )
1111
1212![ Tag Editor widget in JavaScript] ( https://raw.githubusercontent.com/jcubic/tagger/master/screenshot.png )
1313
@@ -100,6 +100,9 @@ TypeScript definition file:
100100[ tagger.d.ts] ( https://github.com/jcubic/tagger/blob/master/tagger.d.ts )
101101
102102## Changelog
103+ ### 0.5.0
104+ * fix initialization [ #23 ] ( https://github.com/jcubic/tagger/issues/23 ) . Thanks to [ James Lucas] ( https://github.com/lucasnetau )
105+ * add placeholder option. Thanks to [ James Lucas] ( https://github.com/lucasnetau )
103106### 0.4.5
104107* fix another wrapping issue [ #37 ] ( https://github.com/jcubic/tagger/issues/37 )
105108### 0.4.4
@@ -143,5 +146,5 @@ TypeScript definition file:
143146
144147## License
145148
146- Copyright (c) 2018-2022 [ Jakub T. Jankiewicz] ( https://jcubic.pl/me ) <br />
149+ Copyright (c) 2018-2023 [ Jakub T. Jankiewicz] ( https://jcubic.pl/me ) <br />
147150Released under the MIT license
Original file line number Diff line number Diff line change 11{
22 "name" : " @jcubic/tagger" ,
3- "version" : " 0.4.5 " ,
3+ "version" : " 0.5.0 " ,
44 "description" : " Zero dependency, Vanilla JavaScript Tag Editor" ,
55 "typings" : " tagger.d.ts" ,
66 "main" : " tagger.js" ,
Original file line number Diff line number Diff line change 33 * |_ _|___ ___ ___ ___ ___
44 * | | | .'| . | . | -_| _|
55 * |_| |__,|_ |_ |___|_|
6- * |___|___| version 0.4.4
6+ * |___|___| version 0.5.0
77 *
88 * Tagger - Zero dependency, Vanilla JavaScript Tag Editor
99 *
10- * Copyright (c) 2018-2022 Jakub T. Jankiewicz <https://jcubic.pl/me>
10+ * Copyright (c) 2018-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
1111 * Released under the MIT license
1212 */
1313.tagger {
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ interface tagger_options {
3030 tag_limit ?: number ;
3131 completion ?: Tagger . completion ;
3232 link ?: Tagger . link ;
33+ placeholder ?: string ;
3334}
3435
3536interface tagger_instance {
Original file line number Diff line number Diff line change 33 * |_ _|___ ___ ___ ___ ___
44 * | | | .'| . | . | -_| _|
55 * |_| |__,|_ |_ |___|_|
6- * |___|___| version 0.4.5
6+ * |___|___| version 0.5.0
77 *
88 * Tagger - Zero dependency, Vanilla JavaScript Tag Editor
99 *
10- * Copyright (c) 2018-2022 Jakub T. Jankiewicz <https://jcubic.pl/me>
10+ * Copyright (c) 2018-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
1111 * Released under the MIT license
1212 */
1313/* global define, module, global */
You can’t perform that action at this time.
0 commit comments