@fastkit/vui 0.19.45 → 0.19.47
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.d.ts +7 -2
- package/dist/vui.mjs +2 -2
- package/dist/vui.mjs.map +1 -1
- package/package.json +11 -11
- package/src/components/VTextField/VTextField.tsx +3 -1
package/dist/vui.d.ts
CHANGED
|
@@ -353,6 +353,7 @@ declare function createTextFieldProps(): {
|
|
|
353
353
|
type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
354
354
|
default: string;
|
|
355
355
|
};
|
|
356
|
+
list: vue.PropType<_fastkit_vue_form_control.TextInputListSpec>;
|
|
356
357
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
357
358
|
minlength: (NumberConstructor | StringConstructor)[];
|
|
358
359
|
maxlength: (NumberConstructor | StringConstructor)[];
|
|
@@ -441,6 +442,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
441
442
|
type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
442
443
|
default: string;
|
|
443
444
|
};
|
|
445
|
+
list: vue.PropType<_fastkit_vue_form_control.TextInputListSpec>;
|
|
444
446
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
445
447
|
minlength: (NumberConstructor | StringConstructor)[];
|
|
446
448
|
maxlength: (NumberConstructor | StringConstructor)[];
|
|
@@ -537,6 +539,7 @@ declare const VTextField: vue.DefineComponent<{
|
|
|
537
539
|
type: vue.PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
538
540
|
default: string;
|
|
539
541
|
};
|
|
542
|
+
list: vue.PropType<_fastkit_vue_form_control.TextInputListSpec>;
|
|
540
543
|
mask: vue.PropType<_fastkit_vue_form_control.IMaskInput>;
|
|
541
544
|
minlength: (NumberConstructor | StringConstructor)[];
|
|
542
545
|
maxlength: (NumberConstructor | StringConstructor)[];
|
|
@@ -2174,7 +2177,7 @@ declare const VBusyImage: vue.DefineComponent<{
|
|
|
2174
2177
|
is: PropType<string | undefined>;
|
|
2175
2178
|
'aria-activedescendant': PropType<string | undefined>;
|
|
2176
2179
|
'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
|
|
2177
|
-
'aria-autocomplete': PropType<"none" | "
|
|
2180
|
+
'aria-autocomplete': PropType<"none" | "list" | "inline" | "both" | undefined>;
|
|
2178
2181
|
'aria-busy': PropType<(boolean | "true" | "false") | undefined>;
|
|
2179
2182
|
'aria-checked': PropType<(boolean | "true" | "false") | "mixed" | undefined>;
|
|
2180
2183
|
'aria-colcount': PropType<(string | number) | undefined>;
|
|
@@ -2369,7 +2372,7 @@ declare const VBusyImage: vue.DefineComponent<{
|
|
|
2369
2372
|
is: PropType<string | undefined>;
|
|
2370
2373
|
'aria-activedescendant': PropType<string | undefined>;
|
|
2371
2374
|
'aria-atomic': PropType<(boolean | "true" | "false") | undefined>;
|
|
2372
|
-
'aria-autocomplete': PropType<"none" | "
|
|
2375
|
+
'aria-autocomplete': PropType<"none" | "list" | "inline" | "both" | undefined>;
|
|
2373
2376
|
'aria-busy': PropType<(boolean | "true" | "false") | undefined>;
|
|
2374
2377
|
'aria-checked': PropType<(boolean | "true" | "false") | "mixed" | undefined>;
|
|
2375
2378
|
'aria-colcount': PropType<(string | number) | undefined>;
|
|
@@ -5777,6 +5780,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
5777
5780
|
type: PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
5778
5781
|
default: string;
|
|
5779
5782
|
};
|
|
5783
|
+
list: PropType<_fastkit_vue_form_control.TextInputListSpec>;
|
|
5780
5784
|
minlength: (NumberConstructor | StringConstructor)[];
|
|
5781
5785
|
placeholder: StringConstructor;
|
|
5782
5786
|
autocapitalize: PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
@@ -5872,6 +5876,7 @@ declare const VNumberField: vue.DefineComponent<{
|
|
|
5872
5876
|
type: PropType<_fastkit_vue_form_control.TextInputMaskModel>;
|
|
5873
5877
|
default: string;
|
|
5874
5878
|
};
|
|
5879
|
+
list: PropType<_fastkit_vue_form_control.TextInputListSpec>;
|
|
5875
5880
|
minlength: (NumberConstructor | StringConstructor)[];
|
|
5876
5881
|
placeholder: StringConstructor;
|
|
5877
5882
|
autocapitalize: PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
package/dist/vui.mjs
CHANGED
|
@@ -2998,9 +2998,9 @@ var VTextField = defineComponent({
|
|
|
2998
2998
|
"size": control.size.value
|
|
2999
2999
|
}, {
|
|
3000
3000
|
...ctx.slots,
|
|
3001
|
-
default: () => inputControl.createInputElement({
|
|
3001
|
+
default: () => [inputControl.createInputElement({
|
|
3002
3002
|
class: "v-text-field__input__element"
|
|
3003
|
-
})
|
|
3003
|
+
}), inputControl.createDatalist()]
|
|
3004
3004
|
});
|
|
3005
3005
|
const infoAppendsSlot = () => {
|
|
3006
3006
|
const {
|