vuetify 3.5.16 → 3.5.17
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/json/attributes.json +226 -30
- package/dist/json/importMap-labs.json +8 -4
- package/dist/json/importMap.json +126 -126
- package/dist/json/tags.json +54 -0
- package/dist/json/web-types.json +607 -84
- package/dist/vuetify-labs.css +2606 -2579
- package/dist/vuetify-labs.d.ts +742 -64
- package/dist/vuetify-labs.esm.js +356 -127
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +355 -126
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2393 -2367
- package/dist/vuetify.d.ts +127 -62
- package/dist/vuetify.esm.js +169 -101
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +168 -100
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +181 -178
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +8 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBanner/VBanner.css +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbs.css +1 -1
- package/lib/components/VBtn/index.d.mts +1 -0
- package/lib/components/VBtnToggle/index.d.mts +1 -0
- package/lib/components/VCard/VCard.css +3 -3
- package/lib/components/VCarousel/VCarouselItem.mjs +1 -1
- package/lib/components/VCarousel/VCarouselItem.mjs.map +1 -1
- package/lib/components/VCarousel/index.d.mts +1 -0
- package/lib/components/VChip/VChip.css +1 -1
- package/lib/components/VChip/VChip.sass +1 -0
- package/lib/components/VChipGroup/index.d.mts +1 -0
- package/lib/components/VCombobox/VCombobox.mjs +8 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +10 -0
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.mjs +6 -2
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs +39 -0
- package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs.map +1 -0
- package/lib/components/VDialog/index.d.mts +4 -10
- package/lib/components/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +17 -5
- package/lib/components/VInput/VInput.mjs +6 -1
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VInput/index.d.mts +6 -0
- package/lib/components/VList/VList.mjs +2 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +3 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/touch.mjs +16 -2
- package/lib/components/VNavigationDrawer/touch.mjs.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs +11 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
- package/lib/components/VProgressLinear/index.d.mts +21 -0
- package/lib/components/VRangeSlider/index.d.mts +6 -0
- package/lib/components/VSelect/VSelect.mjs +5 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +1 -0
- package/lib/components/VSlider/index.d.mts +6 -0
- package/lib/components/VSnackbar/VSnackbar.css +18 -4
- package/lib/components/VSnackbar/VSnackbar.mjs +26 -8
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +19 -3
- package/lib/components/VSwitch/VSwitch.css +14 -2
- package/lib/components/VSwitch/VSwitch.sass +8 -2
- package/lib/components/VSystemBar/VSystemBar.css +1 -1
- package/lib/components/VTabs/index.d.mts +1 -0
- package/lib/components/VTextField/index.d.mts +15 -3
- package/lib/components/VTextarea/index.d.mts +15 -3
- package/lib/components/VWindow/index.d.mts +1 -0
- package/lib/components/index.d.mts +85 -21
- package/lib/composables/group.mjs +10 -1
- package/lib/composables/group.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -41
- package/lib/labs/VEmptyState/VEmptyState.css +3 -3
- package/lib/labs/VFab/VFab.css +1 -0
- package/lib/labs/VFab/VFab.mjs +3 -2
- package/lib/labs/VFab/VFab.mjs.map +1 -1
- package/lib/labs/VFab/VFab.sass +1 -0
- package/lib/labs/VFab/index.d.mts +10 -0
- package/lib/labs/VNumberInput/VNumberInput.mjs +79 -24
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/index.d.mts +56 -29
- package/lib/labs/VSnackbarQueue/VSnackbarQueue.mjs +112 -0
- package/lib/labs/VSnackbarQueue/VSnackbarQueue.mjs.map +1 -0
- package/lib/labs/VSnackbarQueue/index.d.mts +2693 -0
- package/lib/labs/VSnackbarQueue/index.mjs +2 -0
- package/lib/labs/VSnackbarQueue/index.mjs.map +1 -0
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +1 -3
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/index.d.mts +6 -13
- package/lib/labs/components.d.mts +2893 -282
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/locale/af.mjs +1 -0
- package/lib/locale/af.mjs.map +1 -1
- package/lib/locale/ar.mjs +1 -0
- package/lib/locale/ar.mjs.map +1 -1
- package/lib/locale/az.mjs +1 -0
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/bg.mjs +1 -0
- package/lib/locale/bg.mjs.map +1 -1
- package/lib/locale/ca.mjs +1 -0
- package/lib/locale/ca.mjs.map +1 -1
- package/lib/locale/ckb.mjs +1 -0
- package/lib/locale/ckb.mjs.map +1 -1
- package/lib/locale/cs.mjs +1 -0
- package/lib/locale/cs.mjs.map +1 -1
- package/lib/locale/da.mjs +1 -0
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +1 -0
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/el.mjs +1 -0
- package/lib/locale/el.mjs.map +1 -1
- package/lib/locale/en.mjs +1 -0
- package/lib/locale/en.mjs.map +1 -1
- package/lib/locale/es.mjs +1 -0
- package/lib/locale/es.mjs.map +1 -1
- package/lib/locale/et.mjs +1 -0
- package/lib/locale/et.mjs.map +1 -1
- package/lib/locale/fa.mjs +1 -0
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/locale/fi.mjs +1 -0
- package/lib/locale/fi.mjs.map +1 -1
- package/lib/locale/fr.mjs +1 -0
- package/lib/locale/fr.mjs.map +1 -1
- package/lib/locale/he.mjs +1 -0
- package/lib/locale/he.mjs.map +1 -1
- package/lib/locale/hr.mjs +1 -0
- package/lib/locale/hr.mjs.map +1 -1
- package/lib/locale/hu.mjs +1 -0
- package/lib/locale/hu.mjs.map +1 -1
- package/lib/locale/id.mjs +1 -0
- package/lib/locale/id.mjs.map +1 -1
- package/lib/locale/index.d.mts +43 -0
- package/lib/locale/it.mjs +1 -0
- package/lib/locale/it.mjs.map +1 -1
- package/lib/locale/ja.mjs +1 -0
- package/lib/locale/ja.mjs.map +1 -1
- package/lib/locale/km.mjs +1 -0
- package/lib/locale/km.mjs.map +1 -1
- package/lib/locale/ko.mjs +1 -0
- package/lib/locale/ko.mjs.map +1 -1
- package/lib/locale/lt.mjs +1 -0
- package/lib/locale/lt.mjs.map +1 -1
- package/lib/locale/lv.mjs +1 -0
- package/lib/locale/lv.mjs.map +1 -1
- package/lib/locale/nl.mjs +1 -0
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/locale/no.mjs +1 -0
- package/lib/locale/no.mjs.map +1 -1
- package/lib/locale/pl.mjs +1 -0
- package/lib/locale/pl.mjs.map +1 -1
- package/lib/locale/pt.mjs +1 -0
- package/lib/locale/pt.mjs.map +1 -1
- package/lib/locale/ro.mjs +1 -0
- package/lib/locale/ro.mjs.map +1 -1
- package/lib/locale/ru.mjs +1 -0
- package/lib/locale/ru.mjs.map +1 -1
- package/lib/locale/sk.mjs +1 -0
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/locale/sl.mjs +1 -0
- package/lib/locale/sl.mjs.map +1 -1
- package/lib/locale/sr-Cyrl.mjs +1 -0
- package/lib/locale/sr-Cyrl.mjs.map +1 -1
- package/lib/locale/sr-Latn.mjs +1 -0
- package/lib/locale/sr-Latn.mjs.map +1 -1
- package/lib/locale/sv.mjs +1 -0
- package/lib/locale/sv.mjs.map +1 -1
- package/lib/locale/th.mjs +1 -0
- package/lib/locale/th.mjs.map +1 -1
- package/lib/locale/tr.mjs +1 -0
- package/lib/locale/tr.mjs.map +1 -1
- package/lib/locale/uk.mjs +1 -0
- package/lib/locale/uk.mjs.map +1 -1
- package/lib/locale/vi.mjs +1 -0
- package/lib/locale/vi.mjs.map +1 -1
- package/lib/locale/zh-Hans.mjs +1 -0
- package/lib/locale/zh-Hans.mjs.map +1 -1
- package/lib/locale/zh-Hant.mjs +1 -0
- package/lib/locale/zh-Hant.mjs.map +1 -1
- package/lib/styles/main.css +78 -78
- package/lib/styles/settings/_variables.scss +21 -14
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -1816,6 +1816,7 @@ interface GroupItem {
|
|
|
1816
1816
|
id: number;
|
|
1817
1817
|
value: Ref<unknown>;
|
|
1818
1818
|
disabled: Ref<boolean | undefined>;
|
|
1819
|
+
useIndexAsValue?: boolean;
|
|
1819
1820
|
}
|
|
1820
1821
|
interface GroupProvide {
|
|
1821
1822
|
register: (item: GroupItem, cmp: ComponentInternalInstance) => void;
|
|
@@ -3391,6 +3392,7 @@ declare const VInput: {
|
|
|
3391
3392
|
class?: any;
|
|
3392
3393
|
id?: string | undefined;
|
|
3393
3394
|
label?: string | undefined;
|
|
3395
|
+
theme?: string | undefined;
|
|
3394
3396
|
name?: string | undefined;
|
|
3395
3397
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3396
3398
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3428,6 +3430,7 @@ declare const VInput: {
|
|
|
3428
3430
|
class?: any;
|
|
3429
3431
|
id?: string | undefined;
|
|
3430
3432
|
label?: string | undefined;
|
|
3433
|
+
theme?: string | undefined;
|
|
3431
3434
|
name?: string | undefined;
|
|
3432
3435
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3433
3436
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3495,6 +3498,7 @@ declare const VInput: {
|
|
|
3495
3498
|
class?: any;
|
|
3496
3499
|
id?: string | undefined;
|
|
3497
3500
|
label?: string | undefined;
|
|
3501
|
+
theme?: string | undefined;
|
|
3498
3502
|
name?: string | undefined;
|
|
3499
3503
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3500
3504
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3549,6 +3553,7 @@ declare const VInput: {
|
|
|
3549
3553
|
class?: any;
|
|
3550
3554
|
id?: string | undefined;
|
|
3551
3555
|
label?: string | undefined;
|
|
3556
|
+
theme?: string | undefined;
|
|
3552
3557
|
name?: string | undefined;
|
|
3553
3558
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3554
3559
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3633,6 +3638,7 @@ declare const VInput: {
|
|
|
3633
3638
|
modelValue: null;
|
|
3634
3639
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
3635
3640
|
validationValue: null;
|
|
3641
|
+
theme: StringConstructor;
|
|
3636
3642
|
density: {
|
|
3637
3643
|
type: PropType<Density>;
|
|
3638
3644
|
default: string;
|
|
@@ -3694,6 +3700,7 @@ declare const VInput: {
|
|
|
3694
3700
|
modelValue: null;
|
|
3695
3701
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
3696
3702
|
validationValue: null;
|
|
3703
|
+
theme: StringConstructor;
|
|
3697
3704
|
density: {
|
|
3698
3705
|
type: PropType<Density>;
|
|
3699
3706
|
default: string;
|
|
@@ -29349,7 +29356,6 @@ declare const VDialog: {
|
|
|
29349
29356
|
} & {
|
|
29350
29357
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
29351
29358
|
onAfterLeave?: (() => any) | undefined;
|
|
29352
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
29353
29359
|
}, Omit<Omit<{
|
|
29354
29360
|
$: vue.ComponentInternalInstance;
|
|
29355
29361
|
$data: {};
|
|
@@ -29799,9 +29805,8 @@ declare const VDialog: {
|
|
|
29799
29805
|
localTop: vue.ComputedRef<boolean>;
|
|
29800
29806
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
29801
29807
|
}> & {} & vue.ComponentCustomProperties & {}, "class" | "width" | "height" | "theme" | "key" | "target" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "offset" | "onUpdate:modelValue" | "contentClass" | "opacity" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterEnter" | "onAfterLeave" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("style" | "disabled" | "absolute" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
29802
|
-
'
|
|
29803
|
-
|
|
29804
|
-
afterLeave: () => boolean;
|
|
29808
|
+
'update:modelValue': (value: boolean) => true;
|
|
29809
|
+
afterLeave: () => true;
|
|
29805
29810
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
29806
29811
|
style: vue.StyleValue;
|
|
29807
29812
|
disabled: boolean;
|
|
@@ -29883,7 +29888,6 @@ declare const VDialog: {
|
|
|
29883
29888
|
} & {
|
|
29884
29889
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
29885
29890
|
onAfterLeave?: (() => any) | undefined;
|
|
29886
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
29887
29891
|
}, {
|
|
29888
29892
|
style: vue.StyleValue;
|
|
29889
29893
|
disabled: boolean;
|
|
@@ -30015,7 +30019,6 @@ declare const VDialog: {
|
|
|
30015
30019
|
} & {
|
|
30016
30020
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30017
30021
|
onAfterLeave?: (() => any) | undefined;
|
|
30018
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
30019
30022
|
}, Omit<Omit<{
|
|
30020
30023
|
$: vue.ComponentInternalInstance;
|
|
30021
30024
|
$data: {};
|
|
@@ -30580,7 +30583,6 @@ declare const VDialog: {
|
|
|
30580
30583
|
} & {
|
|
30581
30584
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30582
30585
|
onAfterLeave?: (() => any) | undefined;
|
|
30583
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
30584
30586
|
}, Omit<Omit<{
|
|
30585
30587
|
$: vue.ComponentInternalInstance;
|
|
30586
30588
|
$data: {};
|
|
@@ -31030,9 +31032,8 @@ declare const VDialog: {
|
|
|
31030
31032
|
localTop: vue.ComputedRef<boolean>;
|
|
31031
31033
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
31032
31034
|
}> & {} & vue.ComponentCustomProperties & {}, "class" | "width" | "height" | "theme" | "key" | "target" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "offset" | "onUpdate:modelValue" | "contentClass" | "opacity" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "onAfterEnter" | "onAfterLeave" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("style" | "disabled" | "absolute" | "transition" | "zIndex" | "modelValue" | "origin" | "eager" | "location" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
31033
|
-
'
|
|
31034
|
-
|
|
31035
|
-
afterLeave: () => boolean;
|
|
31035
|
+
'update:modelValue': (value: boolean) => true;
|
|
31036
|
+
afterLeave: () => true;
|
|
31036
31037
|
}, string, {
|
|
31037
31038
|
style: vue.StyleValue;
|
|
31038
31039
|
disabled: boolean;
|
|
@@ -32627,6 +32628,7 @@ declare const VFileInput: {
|
|
|
32627
32628
|
class?: any;
|
|
32628
32629
|
id?: string | undefined;
|
|
32629
32630
|
label?: string | undefined;
|
|
32631
|
+
theme?: string | undefined;
|
|
32630
32632
|
name?: string | undefined;
|
|
32631
32633
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32632
32634
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -32656,6 +32658,7 @@ declare const VFileInput: {
|
|
|
32656
32658
|
class?: any;
|
|
32657
32659
|
id?: string | undefined;
|
|
32658
32660
|
label?: string | undefined;
|
|
32661
|
+
theme?: string | undefined;
|
|
32659
32662
|
name?: string | undefined;
|
|
32660
32663
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32661
32664
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -32713,6 +32716,7 @@ declare const VFileInput: {
|
|
|
32713
32716
|
class?: any;
|
|
32714
32717
|
id?: string | undefined;
|
|
32715
32718
|
label?: string | undefined;
|
|
32719
|
+
theme?: string | undefined;
|
|
32716
32720
|
name?: string | undefined;
|
|
32717
32721
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32718
32722
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -32801,6 +32805,7 @@ declare const VFileInput: {
|
|
|
32801
32805
|
class?: any;
|
|
32802
32806
|
id?: string | undefined;
|
|
32803
32807
|
label?: string | undefined;
|
|
32808
|
+
theme?: string | undefined;
|
|
32804
32809
|
name?: string | undefined;
|
|
32805
32810
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32806
32811
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -32820,7 +32825,7 @@ declare const VFileInput: {
|
|
|
32820
32825
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
32821
32826
|
modelValue?: unknown;
|
|
32822
32827
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
32823
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
32828
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
32824
32829
|
'click:control': (e: MouseEvent) => true;
|
|
32825
32830
|
'mousedown:control': (e: MouseEvent) => true;
|
|
32826
32831
|
'update:focused': (focused: boolean) => true;
|
|
@@ -33210,6 +33215,7 @@ declare const VFileInput: {
|
|
|
33210
33215
|
class?: any;
|
|
33211
33216
|
id?: string | undefined;
|
|
33212
33217
|
label?: string | undefined;
|
|
33218
|
+
theme?: string | undefined;
|
|
33213
33219
|
name?: string | undefined;
|
|
33214
33220
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33215
33221
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33239,6 +33245,7 @@ declare const VFileInput: {
|
|
|
33239
33245
|
class?: any;
|
|
33240
33246
|
id?: string | undefined;
|
|
33241
33247
|
label?: string | undefined;
|
|
33248
|
+
theme?: string | undefined;
|
|
33242
33249
|
name?: string | undefined;
|
|
33243
33250
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33244
33251
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33296,6 +33303,7 @@ declare const VFileInput: {
|
|
|
33296
33303
|
class?: any;
|
|
33297
33304
|
id?: string | undefined;
|
|
33298
33305
|
label?: string | undefined;
|
|
33306
|
+
theme?: string | undefined;
|
|
33299
33307
|
name?: string | undefined;
|
|
33300
33308
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33301
33309
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33384,6 +33392,7 @@ declare const VFileInput: {
|
|
|
33384
33392
|
class?: any;
|
|
33385
33393
|
id?: string | undefined;
|
|
33386
33394
|
label?: string | undefined;
|
|
33395
|
+
theme?: string | undefined;
|
|
33387
33396
|
name?: string | undefined;
|
|
33388
33397
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33389
33398
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33403,7 +33412,7 @@ declare const VFileInput: {
|
|
|
33403
33412
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
33404
33413
|
modelValue?: unknown;
|
|
33405
33414
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
33406
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, {}, {}, {}, {
|
|
33415
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, {}, {}, {}, {
|
|
33407
33416
|
reverse: boolean;
|
|
33408
33417
|
flat: boolean;
|
|
33409
33418
|
style: vue.StyleValue;
|
|
@@ -33608,6 +33617,7 @@ declare const VFileInput: {
|
|
|
33608
33617
|
class?: any;
|
|
33609
33618
|
id?: string | undefined;
|
|
33610
33619
|
label?: string | undefined;
|
|
33620
|
+
theme?: string | undefined;
|
|
33611
33621
|
name?: string | undefined;
|
|
33612
33622
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33613
33623
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33637,6 +33647,7 @@ declare const VFileInput: {
|
|
|
33637
33647
|
class?: any;
|
|
33638
33648
|
id?: string | undefined;
|
|
33639
33649
|
label?: string | undefined;
|
|
33650
|
+
theme?: string | undefined;
|
|
33640
33651
|
name?: string | undefined;
|
|
33641
33652
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33642
33653
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33694,6 +33705,7 @@ declare const VFileInput: {
|
|
|
33694
33705
|
class?: any;
|
|
33695
33706
|
id?: string | undefined;
|
|
33696
33707
|
label?: string | undefined;
|
|
33708
|
+
theme?: string | undefined;
|
|
33697
33709
|
name?: string | undefined;
|
|
33698
33710
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33699
33711
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33782,6 +33794,7 @@ declare const VFileInput: {
|
|
|
33782
33794
|
class?: any;
|
|
33783
33795
|
id?: string | undefined;
|
|
33784
33796
|
label?: string | undefined;
|
|
33797
|
+
theme?: string | undefined;
|
|
33785
33798
|
name?: string | undefined;
|
|
33786
33799
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33787
33800
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33801,7 +33814,7 @@ declare const VFileInput: {
|
|
|
33801
33814
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
33802
33815
|
modelValue?: unknown;
|
|
33803
33816
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
33804
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
33817
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
33805
33818
|
'click:control': (e: MouseEvent) => true;
|
|
33806
33819
|
'mousedown:control': (e: MouseEvent) => true;
|
|
33807
33820
|
'update:focused': (focused: boolean) => true;
|
|
@@ -33938,7 +33951,7 @@ declare const VFileInput: {
|
|
|
33938
33951
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
33939
33952
|
modelValue: {
|
|
33940
33953
|
type: PropType<File | File[]>;
|
|
33941
|
-
default: () => never[];
|
|
33954
|
+
default: (props: any) => never[] | null;
|
|
33942
33955
|
validator: (val: any) => boolean;
|
|
33943
33956
|
};
|
|
33944
33957
|
focused: BooleanConstructor;
|
|
@@ -34056,7 +34069,7 @@ declare const VFileInput: {
|
|
|
34056
34069
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
34057
34070
|
modelValue: {
|
|
34058
34071
|
type: PropType<File | File[]>;
|
|
34059
|
-
default: () => never[];
|
|
34072
|
+
default: (props: any) => never[] | null;
|
|
34060
34073
|
validator: (val: any) => boolean;
|
|
34061
34074
|
};
|
|
34062
34075
|
focused: BooleanConstructor;
|
|
@@ -44259,6 +44272,7 @@ declare const VProgressLinear: {
|
|
|
44259
44272
|
absolute: boolean;
|
|
44260
44273
|
modelValue: string | number;
|
|
44261
44274
|
tile: boolean;
|
|
44275
|
+
location: NonNullable<Anchor>;
|
|
44262
44276
|
max: string | number;
|
|
44263
44277
|
indeterminate: boolean;
|
|
44264
44278
|
bufferValue: string | number;
|
|
@@ -44307,6 +44321,7 @@ declare const VProgressLinear: {
|
|
|
44307
44321
|
absolute: boolean;
|
|
44308
44322
|
modelValue: string | number;
|
|
44309
44323
|
tile: boolean;
|
|
44324
|
+
location: NonNullable<Anchor>;
|
|
44310
44325
|
max: string | number;
|
|
44311
44326
|
indeterminate: boolean;
|
|
44312
44327
|
bufferValue: string | number;
|
|
@@ -44354,6 +44369,7 @@ declare const VProgressLinear: {
|
|
|
44354
44369
|
modelValue: string | number;
|
|
44355
44370
|
rounded: string | number | boolean;
|
|
44356
44371
|
tile: boolean;
|
|
44372
|
+
location: NonNullable<Anchor>;
|
|
44357
44373
|
max: string | number;
|
|
44358
44374
|
indeterminate: boolean;
|
|
44359
44375
|
bufferValue: string | number;
|
|
@@ -44384,6 +44400,7 @@ declare const VProgressLinear: {
|
|
|
44384
44400
|
absolute: boolean;
|
|
44385
44401
|
modelValue: string | number;
|
|
44386
44402
|
tile: boolean;
|
|
44403
|
+
location: NonNullable<Anchor>;
|
|
44387
44404
|
max: string | number;
|
|
44388
44405
|
indeterminate: boolean;
|
|
44389
44406
|
bufferValue: string | number;
|
|
@@ -44431,6 +44448,7 @@ declare const VProgressLinear: {
|
|
|
44431
44448
|
modelValue: string | number;
|
|
44432
44449
|
rounded: string | number | boolean;
|
|
44433
44450
|
tile: boolean;
|
|
44451
|
+
location: NonNullable<Anchor>;
|
|
44434
44452
|
max: string | number;
|
|
44435
44453
|
indeterminate: boolean;
|
|
44436
44454
|
bufferValue: string | number;
|
|
@@ -44451,6 +44469,7 @@ declare const VProgressLinear: {
|
|
|
44451
44469
|
absolute: boolean;
|
|
44452
44470
|
modelValue: string | number;
|
|
44453
44471
|
tile: boolean;
|
|
44472
|
+
location: NonNullable<Anchor>;
|
|
44454
44473
|
max: string | number;
|
|
44455
44474
|
indeterminate: boolean;
|
|
44456
44475
|
bufferValue: string | number;
|
|
@@ -44500,6 +44519,7 @@ declare const VProgressLinear: {
|
|
|
44500
44519
|
modelValue: string | number;
|
|
44501
44520
|
rounded: string | number | boolean;
|
|
44502
44521
|
tile: boolean;
|
|
44522
|
+
location: NonNullable<Anchor>;
|
|
44503
44523
|
max: string | number;
|
|
44504
44524
|
indeterminate: boolean;
|
|
44505
44525
|
bufferValue: string | number;
|
|
@@ -44525,6 +44545,10 @@ declare const VProgressLinear: {
|
|
|
44525
44545
|
default: undefined;
|
|
44526
44546
|
};
|
|
44527
44547
|
tile: BooleanConstructor;
|
|
44548
|
+
location: {
|
|
44549
|
+
type: vue.PropType<NonNullable<Anchor>>;
|
|
44550
|
+
default: NonNullable<Anchor>;
|
|
44551
|
+
};
|
|
44528
44552
|
class: vue.PropType<any>;
|
|
44529
44553
|
style: {
|
|
44530
44554
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -44571,6 +44595,10 @@ declare const VProgressLinear: {
|
|
|
44571
44595
|
default: undefined;
|
|
44572
44596
|
};
|
|
44573
44597
|
tile: BooleanConstructor;
|
|
44598
|
+
location: {
|
|
44599
|
+
type: vue.PropType<NonNullable<Anchor>>;
|
|
44600
|
+
default: NonNullable<Anchor>;
|
|
44601
|
+
};
|
|
44574
44602
|
class: vue.PropType<any>;
|
|
44575
44603
|
style: {
|
|
44576
44604
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -45597,6 +45625,7 @@ declare const VRangeSlider: {
|
|
|
45597
45625
|
class?: any;
|
|
45598
45626
|
id?: string | undefined;
|
|
45599
45627
|
label?: string | undefined;
|
|
45628
|
+
theme?: string | undefined;
|
|
45600
45629
|
color?: string | undefined;
|
|
45601
45630
|
name?: string | undefined;
|
|
45602
45631
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -45701,6 +45730,7 @@ declare const VRangeSlider: {
|
|
|
45701
45730
|
class?: any;
|
|
45702
45731
|
id?: string | undefined;
|
|
45703
45732
|
label?: string | undefined;
|
|
45733
|
+
theme?: string | undefined;
|
|
45704
45734
|
color?: string | undefined;
|
|
45705
45735
|
name?: string | undefined;
|
|
45706
45736
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -45867,6 +45897,7 @@ declare const VRangeSlider: {
|
|
|
45867
45897
|
class?: any;
|
|
45868
45898
|
id?: string | undefined;
|
|
45869
45899
|
label?: string | undefined;
|
|
45900
|
+
theme?: string | undefined;
|
|
45870
45901
|
color?: string | undefined;
|
|
45871
45902
|
name?: string | undefined;
|
|
45872
45903
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -46000,6 +46031,7 @@ declare const VRangeSlider: {
|
|
|
46000
46031
|
class?: any;
|
|
46001
46032
|
id?: string | undefined;
|
|
46002
46033
|
label?: string | undefined;
|
|
46034
|
+
theme?: string | undefined;
|
|
46003
46035
|
color?: string | undefined;
|
|
46004
46036
|
name?: string | undefined;
|
|
46005
46037
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -46228,6 +46260,7 @@ declare const VRangeSlider: {
|
|
|
46228
46260
|
};
|
|
46229
46261
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
46230
46262
|
validationValue: null;
|
|
46263
|
+
theme: StringConstructor;
|
|
46231
46264
|
density: {
|
|
46232
46265
|
type: PropType<Density>;
|
|
46233
46266
|
default: string;
|
|
@@ -46351,6 +46384,7 @@ declare const VRangeSlider: {
|
|
|
46351
46384
|
};
|
|
46352
46385
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
46353
46386
|
validationValue: null;
|
|
46387
|
+
theme: StringConstructor;
|
|
46354
46388
|
density: {
|
|
46355
46389
|
type: PropType<Density>;
|
|
46356
46390
|
default: string;
|
|
@@ -51722,6 +51756,7 @@ declare const VSlider: {
|
|
|
51722
51756
|
class?: any;
|
|
51723
51757
|
id?: string | undefined;
|
|
51724
51758
|
label?: string | undefined;
|
|
51759
|
+
theme?: string | undefined;
|
|
51725
51760
|
color?: string | undefined;
|
|
51726
51761
|
name?: string | undefined;
|
|
51727
51762
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -51825,6 +51860,7 @@ declare const VSlider: {
|
|
|
51825
51860
|
class?: any;
|
|
51826
51861
|
id?: string | undefined;
|
|
51827
51862
|
label?: string | undefined;
|
|
51863
|
+
theme?: string | undefined;
|
|
51828
51864
|
color?: string | undefined;
|
|
51829
51865
|
name?: string | undefined;
|
|
51830
51866
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -51989,6 +52025,7 @@ declare const VSlider: {
|
|
|
51989
52025
|
class?: any;
|
|
51990
52026
|
id?: string | undefined;
|
|
51991
52027
|
label?: string | undefined;
|
|
52028
|
+
theme?: string | undefined;
|
|
51992
52029
|
color?: string | undefined;
|
|
51993
52030
|
name?: string | undefined;
|
|
51994
52031
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -52120,6 +52157,7 @@ declare const VSlider: {
|
|
|
52120
52157
|
class?: any;
|
|
52121
52158
|
id?: string | undefined;
|
|
52122
52159
|
label?: string | undefined;
|
|
52160
|
+
theme?: string | undefined;
|
|
52123
52161
|
color?: string | undefined;
|
|
52124
52162
|
name?: string | undefined;
|
|
52125
52163
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -52283,6 +52321,7 @@ declare const VSlider: {
|
|
|
52283
52321
|
};
|
|
52284
52322
|
validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
52285
52323
|
validationValue: null;
|
|
52324
|
+
theme: StringConstructor;
|
|
52286
52325
|
density: {
|
|
52287
52326
|
type: vue.PropType<Density>;
|
|
52288
52327
|
default: string;
|
|
@@ -52405,6 +52444,7 @@ declare const VSlider: {
|
|
|
52405
52444
|
};
|
|
52406
52445
|
validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
52407
52446
|
validationValue: null;
|
|
52447
|
+
theme: StringConstructor;
|
|
52408
52448
|
density: {
|
|
52409
52449
|
type: vue.PropType<Density>;
|
|
52410
52450
|
default: string;
|
|
@@ -59348,6 +59388,7 @@ declare const VTextarea: {
|
|
|
59348
59388
|
class?: any;
|
|
59349
59389
|
id?: string | undefined;
|
|
59350
59390
|
label?: string | undefined;
|
|
59391
|
+
theme?: string | undefined;
|
|
59351
59392
|
name?: string | undefined;
|
|
59352
59393
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59353
59394
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59377,6 +59418,7 @@ declare const VTextarea: {
|
|
|
59377
59418
|
class?: any;
|
|
59378
59419
|
id?: string | undefined;
|
|
59379
59420
|
label?: string | undefined;
|
|
59421
|
+
theme?: string | undefined;
|
|
59380
59422
|
name?: string | undefined;
|
|
59381
59423
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59382
59424
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59434,6 +59476,7 @@ declare const VTextarea: {
|
|
|
59434
59476
|
class?: any;
|
|
59435
59477
|
id?: string | undefined;
|
|
59436
59478
|
label?: string | undefined;
|
|
59479
|
+
theme?: string | undefined;
|
|
59437
59480
|
name?: string | undefined;
|
|
59438
59481
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59439
59482
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59522,6 +59565,7 @@ declare const VTextarea: {
|
|
|
59522
59565
|
class?: any;
|
|
59523
59566
|
id?: string | undefined;
|
|
59524
59567
|
label?: string | undefined;
|
|
59568
|
+
theme?: string | undefined;
|
|
59525
59569
|
name?: string | undefined;
|
|
59526
59570
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59527
59571
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59541,7 +59585,7 @@ declare const VTextarea: {
|
|
|
59541
59585
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
59542
59586
|
modelValue?: unknown;
|
|
59543
59587
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
59544
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
59588
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
59545
59589
|
'click:control': (e: MouseEvent) => true;
|
|
59546
59590
|
'mousedown:control': (e: MouseEvent) => true;
|
|
59547
59591
|
'update:focused': (focused: boolean) => true;
|
|
@@ -59897,6 +59941,7 @@ declare const VTextarea: {
|
|
|
59897
59941
|
class?: any;
|
|
59898
59942
|
id?: string | undefined;
|
|
59899
59943
|
label?: string | undefined;
|
|
59944
|
+
theme?: string | undefined;
|
|
59900
59945
|
name?: string | undefined;
|
|
59901
59946
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59902
59947
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59926,6 +59971,7 @@ declare const VTextarea: {
|
|
|
59926
59971
|
class?: any;
|
|
59927
59972
|
id?: string | undefined;
|
|
59928
59973
|
label?: string | undefined;
|
|
59974
|
+
theme?: string | undefined;
|
|
59929
59975
|
name?: string | undefined;
|
|
59930
59976
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59931
59977
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59983,6 +60029,7 @@ declare const VTextarea: {
|
|
|
59983
60029
|
class?: any;
|
|
59984
60030
|
id?: string | undefined;
|
|
59985
60031
|
label?: string | undefined;
|
|
60032
|
+
theme?: string | undefined;
|
|
59986
60033
|
name?: string | undefined;
|
|
59987
60034
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59988
60035
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60071,6 +60118,7 @@ declare const VTextarea: {
|
|
|
60071
60118
|
class?: any;
|
|
60072
60119
|
id?: string | undefined;
|
|
60073
60120
|
label?: string | undefined;
|
|
60121
|
+
theme?: string | undefined;
|
|
60074
60122
|
name?: string | undefined;
|
|
60075
60123
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60076
60124
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60090,7 +60138,7 @@ declare const VTextarea: {
|
|
|
60090
60138
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
60091
60139
|
modelValue?: unknown;
|
|
60092
60140
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
60093
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, {}, {}, {}, {
|
|
60141
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, {}, {}, {}, {
|
|
60094
60142
|
reverse: boolean;
|
|
60095
60143
|
flat: boolean;
|
|
60096
60144
|
style: vue.StyleValue;
|
|
@@ -60282,6 +60330,7 @@ declare const VTextarea: {
|
|
|
60282
60330
|
class?: any;
|
|
60283
60331
|
id?: string | undefined;
|
|
60284
60332
|
label?: string | undefined;
|
|
60333
|
+
theme?: string | undefined;
|
|
60285
60334
|
name?: string | undefined;
|
|
60286
60335
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60287
60336
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60311,6 +60360,7 @@ declare const VTextarea: {
|
|
|
60311
60360
|
class?: any;
|
|
60312
60361
|
id?: string | undefined;
|
|
60313
60362
|
label?: string | undefined;
|
|
60363
|
+
theme?: string | undefined;
|
|
60314
60364
|
name?: string | undefined;
|
|
60315
60365
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60316
60366
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60368,6 +60418,7 @@ declare const VTextarea: {
|
|
|
60368
60418
|
class?: any;
|
|
60369
60419
|
id?: string | undefined;
|
|
60370
60420
|
label?: string | undefined;
|
|
60421
|
+
theme?: string | undefined;
|
|
60371
60422
|
name?: string | undefined;
|
|
60372
60423
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60373
60424
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60456,6 +60507,7 @@ declare const VTextarea: {
|
|
|
60456
60507
|
class?: any;
|
|
60457
60508
|
id?: string | undefined;
|
|
60458
60509
|
label?: string | undefined;
|
|
60510
|
+
theme?: string | undefined;
|
|
60459
60511
|
name?: string | undefined;
|
|
60460
60512
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60461
60513
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60475,7 +60527,7 @@ declare const VTextarea: {
|
|
|
60475
60527
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
60476
60528
|
modelValue?: unknown;
|
|
60477
60529
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
60478
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
60530
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
60479
60531
|
'click:control': (e: MouseEvent) => true;
|
|
60480
60532
|
'mousedown:control': (e: MouseEvent) => true;
|
|
60481
60533
|
'update:focused': (focused: boolean) => true;
|
|
@@ -60933,6 +60985,7 @@ declare const VTextField: {
|
|
|
60933
60985
|
class?: any;
|
|
60934
60986
|
id?: string | undefined;
|
|
60935
60987
|
label?: string | undefined;
|
|
60988
|
+
theme?: string | undefined;
|
|
60936
60989
|
name?: string | undefined;
|
|
60937
60990
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60938
60991
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60962,6 +61015,7 @@ declare const VTextField: {
|
|
|
60962
61015
|
class?: any;
|
|
60963
61016
|
id?: string | undefined;
|
|
60964
61017
|
label?: string | undefined;
|
|
61018
|
+
theme?: string | undefined;
|
|
60965
61019
|
name?: string | undefined;
|
|
60966
61020
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60967
61021
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61019,6 +61073,7 @@ declare const VTextField: {
|
|
|
61019
61073
|
class?: any;
|
|
61020
61074
|
id?: string | undefined;
|
|
61021
61075
|
label?: string | undefined;
|
|
61076
|
+
theme?: string | undefined;
|
|
61022
61077
|
name?: string | undefined;
|
|
61023
61078
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61024
61079
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61107,6 +61162,7 @@ declare const VTextField: {
|
|
|
61107
61162
|
class?: any;
|
|
61108
61163
|
id?: string | undefined;
|
|
61109
61164
|
label?: string | undefined;
|
|
61165
|
+
theme?: string | undefined;
|
|
61110
61166
|
name?: string | undefined;
|
|
61111
61167
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61112
61168
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61126,7 +61182,7 @@ declare const VTextField: {
|
|
|
61126
61182
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
61127
61183
|
modelValue?: unknown;
|
|
61128
61184
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
61129
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
|
61185
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
|
61130
61186
|
$: vue.ComponentInternalInstance;
|
|
61131
61187
|
$data: {};
|
|
61132
61188
|
$props: Partial<{
|
|
@@ -61745,6 +61801,7 @@ declare const VTextField: {
|
|
|
61745
61801
|
class?: any;
|
|
61746
61802
|
id?: string | undefined;
|
|
61747
61803
|
label?: string | undefined;
|
|
61804
|
+
theme?: string | undefined;
|
|
61748
61805
|
name?: string | undefined;
|
|
61749
61806
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61750
61807
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61774,6 +61831,7 @@ declare const VTextField: {
|
|
|
61774
61831
|
class?: any;
|
|
61775
61832
|
id?: string | undefined;
|
|
61776
61833
|
label?: string | undefined;
|
|
61834
|
+
theme?: string | undefined;
|
|
61777
61835
|
name?: string | undefined;
|
|
61778
61836
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61779
61837
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61831,6 +61889,7 @@ declare const VTextField: {
|
|
|
61831
61889
|
class?: any;
|
|
61832
61890
|
id?: string | undefined;
|
|
61833
61891
|
label?: string | undefined;
|
|
61892
|
+
theme?: string | undefined;
|
|
61834
61893
|
name?: string | undefined;
|
|
61835
61894
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61836
61895
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61919,6 +61978,7 @@ declare const VTextField: {
|
|
|
61919
61978
|
class?: any;
|
|
61920
61979
|
id?: string | undefined;
|
|
61921
61980
|
label?: string | undefined;
|
|
61981
|
+
theme?: string | undefined;
|
|
61922
61982
|
name?: string | undefined;
|
|
61923
61983
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61924
61984
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61938,7 +61998,7 @@ declare const VTextField: {
|
|
|
61938
61998
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
61939
61999
|
modelValue?: unknown;
|
|
61940
62000
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
61941
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
|
62001
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
|
61942
62002
|
$: vue.ComponentInternalInstance;
|
|
61943
62003
|
$data: {};
|
|
61944
62004
|
$props: Partial<{
|
|
@@ -62389,6 +62449,7 @@ declare const VTextField: {
|
|
|
62389
62449
|
class?: any;
|
|
62390
62450
|
id?: string | undefined;
|
|
62391
62451
|
label?: string | undefined;
|
|
62452
|
+
theme?: string | undefined;
|
|
62392
62453
|
name?: string | undefined;
|
|
62393
62454
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62394
62455
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62418,6 +62479,7 @@ declare const VTextField: {
|
|
|
62418
62479
|
class?: any;
|
|
62419
62480
|
id?: string | undefined;
|
|
62420
62481
|
label?: string | undefined;
|
|
62482
|
+
theme?: string | undefined;
|
|
62421
62483
|
name?: string | undefined;
|
|
62422
62484
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62423
62485
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62475,6 +62537,7 @@ declare const VTextField: {
|
|
|
62475
62537
|
class?: any;
|
|
62476
62538
|
id?: string | undefined;
|
|
62477
62539
|
label?: string | undefined;
|
|
62540
|
+
theme?: string | undefined;
|
|
62478
62541
|
name?: string | undefined;
|
|
62479
62542
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62480
62543
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62563,6 +62626,7 @@ declare const VTextField: {
|
|
|
62563
62626
|
class?: any;
|
|
62564
62627
|
id?: string | undefined;
|
|
62565
62628
|
label?: string | undefined;
|
|
62629
|
+
theme?: string | undefined;
|
|
62566
62630
|
name?: string | undefined;
|
|
62567
62631
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62568
62632
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62582,7 +62646,7 @@ declare const VTextField: {
|
|
|
62582
62646
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
62583
62647
|
modelValue?: unknown;
|
|
62584
62648
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
62585
|
-
}, VInputSlots>, "class" | "id" | "label" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
|
62649
|
+
}, VInputSlots>, "class" | "id" | "label" | "theme" | "key" | "name" | "v-slot:default" | "$children" | "v-slots" | "ref" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "v-slot:prepend" | "v-slot:append" | "prependIcon" | "appendIcon" | "onClick:prepend" | "onClick:append" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("style" | "error" | "disabled" | "messages" | "focused" | "errorMessages" | "maxErrors" | "readonly" | "rules" | "density" | "direction" | "centerAffix" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
|
62586
62650
|
$: vue.ComponentInternalInstance;
|
|
62587
62651
|
$data: {};
|
|
62588
62652
|
$props: Partial<{
|
|
@@ -69050,42 +69114,44 @@ declare module '@vue/runtime-core' {
|
|
|
69050
69114
|
}
|
|
69051
69115
|
|
|
69052
69116
|
export interface GlobalComponents {
|
|
69053
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
69054
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
69055
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
69056
69117
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
69057
69118
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
69058
69119
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
69059
|
-
|
|
69120
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
69121
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
69122
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
69060
69123
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
69061
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
69062
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
69063
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
69064
69124
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
69065
69125
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
69066
69126
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
69127
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
69128
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
69129
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
69130
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
69131
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
69132
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
69133
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
69067
69134
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
69068
69135
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
69069
69136
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
69137
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
69138
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
69070
69139
|
VCard: typeof import('vuetify/components')['VCard']
|
|
69071
69140
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
69072
69141
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
69073
69142
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
69074
69143
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
69075
69144
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
69076
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
69077
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
69078
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
69079
69145
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
69080
69146
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
69081
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
69082
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
69083
|
-
VChip: typeof import('vuetify/components')['VChip']
|
|
69084
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
69085
69147
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
69086
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
69087
69148
|
VCode: typeof import('vuetify/components')['VCode']
|
|
69149
|
+
VChip: typeof import('vuetify/components')['VChip']
|
|
69088
69150
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
69151
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
69152
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
69153
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
69154
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
69089
69155
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
69090
69156
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
69091
69157
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
@@ -69093,34 +69159,32 @@ declare module '@vue/runtime-core' {
|
|
|
69093
69159
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
69094
69160
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
69095
69161
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
69096
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
69097
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
69098
69162
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
69099
69163
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
69100
69164
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
69101
69165
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
69102
69166
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
69103
69167
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
69104
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69105
69168
|
VField: typeof import('vuetify/components')['VField']
|
|
69106
69169
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
69107
69170
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
69108
69171
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
69109
69172
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
69110
69173
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
69111
|
-
|
|
69174
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
69112
69175
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
69113
69176
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
69114
69177
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
69115
69178
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
69116
69179
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
69180
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
69117
69181
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
69118
69182
|
VImg: typeof import('vuetify/components')['VImg']
|
|
69119
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
69120
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
69121
69183
|
VInput: typeof import('vuetify/components')['VInput']
|
|
69184
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
69122
69185
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
69123
69186
|
VItem: typeof import('vuetify/components')['VItem']
|
|
69187
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
69124
69188
|
VList: typeof import('vuetify/components')['VList']
|
|
69125
69189
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
69126
69190
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -69132,61 +69196,61 @@ declare module '@vue/runtime-core' {
|
|
|
69132
69196
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
69133
69197
|
VMain: typeof import('vuetify/components')['VMain']
|
|
69134
69198
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
69135
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69136
69199
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
69137
69200
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
69138
|
-
|
|
69201
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69139
69202
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
69140
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
69141
69203
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69142
|
-
|
|
69204
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69205
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
69143
69206
|
VRating: typeof import('vuetify/components')['VRating']
|
|
69144
|
-
|
|
69207
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
69145
69208
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
69146
|
-
|
|
69209
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
69147
69210
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
69148
|
-
|
|
69149
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69211
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
69150
69212
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
69151
69213
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
69214
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
69215
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69216
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69152
69217
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
69153
69218
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
69154
69219
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
69155
69220
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
69156
69221
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
69157
69222
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
69158
|
-
|
|
69159
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69223
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69160
69224
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
69161
69225
|
VTab: typeof import('vuetify/components')['VTab']
|
|
69162
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69163
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
69164
69226
|
VTable: typeof import('vuetify/components')['VTable']
|
|
69165
69227
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
69228
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
69229
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69230
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69166
69231
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
69167
69232
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
69168
69233
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
69169
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69170
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69171
69234
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
69235
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
69172
69236
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
69173
69237
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
69174
69238
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
69175
69239
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
69176
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
69177
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
69178
69240
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
69179
69241
|
VCol: typeof import('vuetify/components')['VCol']
|
|
69180
69242
|
VRow: typeof import('vuetify/components')['VRow']
|
|
69181
69243
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
69244
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
69245
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
69246
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
69182
69247
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
69183
69248
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
69184
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
69185
69249
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
69186
69250
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
69187
69251
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
69188
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
69189
69252
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
69253
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
69190
69254
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
69191
69255
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
69192
69256
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
@@ -69213,15 +69277,16 @@ declare module '@vue/runtime-core' {
|
|
|
69213
69277
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
69214
69278
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
69215
69279
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
69216
|
-
|
|
69280
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69217
69281
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
69218
69282
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69219
69283
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69220
|
-
|
|
69284
|
+
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69221
69285
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
69222
69286
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
69223
69287
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
69224
69288
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69289
|
+
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
|
69225
69290
|
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69226
69291
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69227
69292
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|