@fastkit/vui-wysiwyg 4.0.22 → 4.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vui-wysiwyg.d.ts +5 -5
- package/package.json +3 -3
package/dist/vui-wysiwyg.d.ts
CHANGED
|
@@ -327,9 +327,9 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
327
327
|
counter: PropType<string | number | boolean>;
|
|
328
328
|
counterValue: PropType<(value: string) => number>;
|
|
329
329
|
limit: BooleanConstructor;
|
|
330
|
-
autocomplete: PropType<boolean | "name" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "
|
|
330
|
+
autocomplete: PropType<boolean | "name" | "email" | "tel" | "url" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "photo">;
|
|
331
331
|
name: StringConstructor;
|
|
332
|
-
modelValue: vue.Prop<
|
|
332
|
+
modelValue: vue.Prop<any, any>;
|
|
333
333
|
autofocus: BooleanConstructor;
|
|
334
334
|
spellcheck: BooleanConstructor;
|
|
335
335
|
viewonly: BooleanConstructor;
|
|
@@ -360,7 +360,7 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
360
360
|
computedAutocapitalize: vue.ComputedRef<_fastkit_vue_form_control__.FormAutoCapitalize | undefined>;
|
|
361
361
|
counterSettings: vue.ComputedRef<_fastkit_vue_form_control__.TextableCounterSettings | undefined>;
|
|
362
362
|
counterResult: vue.ComputedRef<_fastkit_vue_form_control__.TextableCounterResult | undefined>;
|
|
363
|
-
computedAutocomplete: vue.ComputedRef<"name" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "
|
|
363
|
+
computedAutocomplete: vue.ComputedRef<"name" | "email" | "tel" | "url" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "photo" | undefined>;
|
|
364
364
|
nodeControl: _fastkit_vue_form_control__.FormNodeControl<any, any>;
|
|
365
365
|
currentValue: vue.WritableComputedRef<string>;
|
|
366
366
|
computedTabindex: vue.ComputedRef<number>;
|
|
@@ -468,9 +468,9 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
468
468
|
counter: PropType<string | number | boolean>;
|
|
469
469
|
counterValue: PropType<(value: string) => number>;
|
|
470
470
|
limit: BooleanConstructor;
|
|
471
|
-
autocomplete: PropType<boolean | "name" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "
|
|
471
|
+
autocomplete: PropType<boolean | "name" | "email" | "tel" | "url" | "off" | "on" | "honorific-prefix" | "given-name" | "additional-name" | "family-name" | "honorific-suffix" | "nickname" | "username" | "new-password" | "current-password" | "one-time-code" | "organization-title" | "organization" | "street-address" | "address-line1" | "address-line2" | "address-line3" | "address-level4" | "address-level3" | "address-level2" | "address-level1" | "country" | "country-name" | "postal-code" | "cc-name" | "cc-given-name" | "cc-additional-name" | "cc-family-name" | "cc-number" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-csc" | "cc-type" | "transaction-currency" | "transaction-amount" | "language" | "bday" | "bday-day" | "bday-month" | "bday-year" | "sex" | "tel-country-code" | "tel-national" | "tel-area-code" | "tel-local" | "tel-extension" | "impp" | "photo">;
|
|
472
472
|
name: StringConstructor;
|
|
473
|
-
modelValue: vue.Prop<
|
|
473
|
+
modelValue: vue.Prop<any, any>;
|
|
474
474
|
autofocus: BooleanConstructor;
|
|
475
475
|
spellcheck: BooleanConstructor;
|
|
476
476
|
viewonly: BooleanConstructor;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui-wysiwyg",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.24",
|
|
4
4
|
"description": "vui-wysiwyg",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"repository": {
|
|
@@ -300,11 +300,11 @@
|
|
|
300
300
|
"@tiptap/vue-3": "^2.0.3"
|
|
301
301
|
},
|
|
302
302
|
"devDependencies": {
|
|
303
|
-
"@fastkit/vui": "0.16.
|
|
303
|
+
"@fastkit/vui": "0.16.24"
|
|
304
304
|
},
|
|
305
305
|
"peerDependencies": {
|
|
306
306
|
"vue": "^3.3.0",
|
|
307
|
-
"@fastkit/vui": "0.16.
|
|
307
|
+
"@fastkit/vui": "0.16.24"
|
|
308
308
|
},
|
|
309
309
|
"scripts": {
|
|
310
310
|
"build": "plugboy build",
|