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-labs.d.ts
CHANGED
|
@@ -1801,6 +1801,7 @@ interface GroupItem {
|
|
|
1801
1801
|
id: number;
|
|
1802
1802
|
value: Ref<unknown>;
|
|
1803
1803
|
disabled: Ref<boolean | undefined>;
|
|
1804
|
+
useIndexAsValue?: boolean;
|
|
1804
1805
|
}
|
|
1805
1806
|
interface GroupProvide {
|
|
1806
1807
|
register: (item: GroupItem, cmp: ComponentInternalInstance) => void;
|
|
@@ -3376,6 +3377,7 @@ declare const VInput: {
|
|
|
3376
3377
|
class?: any;
|
|
3377
3378
|
id?: string | undefined;
|
|
3378
3379
|
label?: string | undefined;
|
|
3380
|
+
theme?: string | undefined;
|
|
3379
3381
|
name?: string | undefined;
|
|
3380
3382
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3381
3383
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3413,6 +3415,7 @@ declare const VInput: {
|
|
|
3413
3415
|
class?: any;
|
|
3414
3416
|
id?: string | undefined;
|
|
3415
3417
|
label?: string | undefined;
|
|
3418
|
+
theme?: string | undefined;
|
|
3416
3419
|
name?: string | undefined;
|
|
3417
3420
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3418
3421
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3480,6 +3483,7 @@ declare const VInput: {
|
|
|
3480
3483
|
class?: any;
|
|
3481
3484
|
id?: string | undefined;
|
|
3482
3485
|
label?: string | undefined;
|
|
3486
|
+
theme?: string | undefined;
|
|
3483
3487
|
name?: string | undefined;
|
|
3484
3488
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3485
3489
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3534,6 +3538,7 @@ declare const VInput: {
|
|
|
3534
3538
|
class?: any;
|
|
3535
3539
|
id?: string | undefined;
|
|
3536
3540
|
label?: string | undefined;
|
|
3541
|
+
theme?: string | undefined;
|
|
3537
3542
|
name?: string | undefined;
|
|
3538
3543
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3539
3544
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -3618,6 +3623,7 @@ declare const VInput: {
|
|
|
3618
3623
|
modelValue: null;
|
|
3619
3624
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
3620
3625
|
validationValue: null;
|
|
3626
|
+
theme: StringConstructor;
|
|
3621
3627
|
density: {
|
|
3622
3628
|
type: PropType<Density>;
|
|
3623
3629
|
default: string;
|
|
@@ -3679,6 +3685,7 @@ declare const VInput: {
|
|
|
3679
3685
|
modelValue: null;
|
|
3680
3686
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
3681
3687
|
validationValue: null;
|
|
3688
|
+
theme: StringConstructor;
|
|
3682
3689
|
density: {
|
|
3683
3690
|
type: PropType<Density>;
|
|
3684
3691
|
default: string;
|
|
@@ -29633,7 +29640,6 @@ declare const VDialog: {
|
|
|
29633
29640
|
} & {
|
|
29634
29641
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
29635
29642
|
onAfterLeave?: (() => any) | undefined;
|
|
29636
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
29637
29643
|
}, Omit<Omit<{
|
|
29638
29644
|
$: vue.ComponentInternalInstance;
|
|
29639
29645
|
$data: {};
|
|
@@ -30083,9 +30089,8 @@ declare const VDialog: {
|
|
|
30083
30089
|
localTop: vue.ComputedRef<boolean>;
|
|
30084
30090
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
30085
30091
|
}> & {} & 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, {
|
|
30086
|
-
'
|
|
30087
|
-
|
|
30088
|
-
afterLeave: () => boolean;
|
|
30092
|
+
'update:modelValue': (value: boolean) => true;
|
|
30093
|
+
afterLeave: () => true;
|
|
30089
30094
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
30090
30095
|
style: vue.StyleValue;
|
|
30091
30096
|
disabled: boolean;
|
|
@@ -30167,7 +30172,6 @@ declare const VDialog: {
|
|
|
30167
30172
|
} & {
|
|
30168
30173
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30169
30174
|
onAfterLeave?: (() => any) | undefined;
|
|
30170
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
30171
30175
|
}, {
|
|
30172
30176
|
style: vue.StyleValue;
|
|
30173
30177
|
disabled: boolean;
|
|
@@ -30299,7 +30303,6 @@ declare const VDialog: {
|
|
|
30299
30303
|
} & {
|
|
30300
30304
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30301
30305
|
onAfterLeave?: (() => any) | undefined;
|
|
30302
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
30303
30306
|
}, Omit<Omit<{
|
|
30304
30307
|
$: vue.ComponentInternalInstance;
|
|
30305
30308
|
$data: {};
|
|
@@ -30864,7 +30867,6 @@ declare const VDialog: {
|
|
|
30864
30867
|
} & {
|
|
30865
30868
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
30866
30869
|
onAfterLeave?: (() => any) | undefined;
|
|
30867
|
-
"onClick:outside"?: ((e: MouseEvent) => any) | undefined;
|
|
30868
30870
|
}, Omit<Omit<{
|
|
30869
30871
|
$: vue.ComponentInternalInstance;
|
|
30870
30872
|
$data: {};
|
|
@@ -31314,9 +31316,8 @@ declare const VDialog: {
|
|
|
31314
31316
|
localTop: vue.ComputedRef<boolean>;
|
|
31315
31317
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
|
31316
31318
|
}> & {} & 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, {
|
|
31317
|
-
'
|
|
31318
|
-
|
|
31319
|
-
afterLeave: () => boolean;
|
|
31319
|
+
'update:modelValue': (value: boolean) => true;
|
|
31320
|
+
afterLeave: () => true;
|
|
31320
31321
|
}, string, {
|
|
31321
31322
|
style: vue.StyleValue;
|
|
31322
31323
|
disabled: boolean;
|
|
@@ -32911,6 +32912,7 @@ declare const VFileInput: {
|
|
|
32911
32912
|
class?: any;
|
|
32912
32913
|
id?: string | undefined;
|
|
32913
32914
|
label?: string | undefined;
|
|
32915
|
+
theme?: string | undefined;
|
|
32914
32916
|
name?: string | undefined;
|
|
32915
32917
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32916
32918
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -32940,6 +32942,7 @@ declare const VFileInput: {
|
|
|
32940
32942
|
class?: any;
|
|
32941
32943
|
id?: string | undefined;
|
|
32942
32944
|
label?: string | undefined;
|
|
32945
|
+
theme?: string | undefined;
|
|
32943
32946
|
name?: string | undefined;
|
|
32944
32947
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32945
32948
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -32997,6 +33000,7 @@ declare const VFileInput: {
|
|
|
32997
33000
|
class?: any;
|
|
32998
33001
|
id?: string | undefined;
|
|
32999
33002
|
label?: string | undefined;
|
|
33003
|
+
theme?: string | undefined;
|
|
33000
33004
|
name?: string | undefined;
|
|
33001
33005
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33002
33006
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33085,6 +33089,7 @@ declare const VFileInput: {
|
|
|
33085
33089
|
class?: any;
|
|
33086
33090
|
id?: string | undefined;
|
|
33087
33091
|
label?: string | undefined;
|
|
33092
|
+
theme?: string | undefined;
|
|
33088
33093
|
name?: string | undefined;
|
|
33089
33094
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33090
33095
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33104,7 +33109,7 @@ declare const VFileInput: {
|
|
|
33104
33109
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
33105
33110
|
modelValue?: unknown;
|
|
33106
33111
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
33107
|
-
}, 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, {
|
|
33112
|
+
}, 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, {
|
|
33108
33113
|
'click:control': (e: MouseEvent) => true;
|
|
33109
33114
|
'mousedown:control': (e: MouseEvent) => true;
|
|
33110
33115
|
'update:focused': (focused: boolean) => true;
|
|
@@ -33494,6 +33499,7 @@ declare const VFileInput: {
|
|
|
33494
33499
|
class?: any;
|
|
33495
33500
|
id?: string | undefined;
|
|
33496
33501
|
label?: string | undefined;
|
|
33502
|
+
theme?: string | undefined;
|
|
33497
33503
|
name?: string | undefined;
|
|
33498
33504
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33499
33505
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33523,6 +33529,7 @@ declare const VFileInput: {
|
|
|
33523
33529
|
class?: any;
|
|
33524
33530
|
id?: string | undefined;
|
|
33525
33531
|
label?: string | undefined;
|
|
33532
|
+
theme?: string | undefined;
|
|
33526
33533
|
name?: string | undefined;
|
|
33527
33534
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33528
33535
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33580,6 +33587,7 @@ declare const VFileInput: {
|
|
|
33580
33587
|
class?: any;
|
|
33581
33588
|
id?: string | undefined;
|
|
33582
33589
|
label?: string | undefined;
|
|
33590
|
+
theme?: string | undefined;
|
|
33583
33591
|
name?: string | undefined;
|
|
33584
33592
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33585
33593
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33668,6 +33676,7 @@ declare const VFileInput: {
|
|
|
33668
33676
|
class?: any;
|
|
33669
33677
|
id?: string | undefined;
|
|
33670
33678
|
label?: string | undefined;
|
|
33679
|
+
theme?: string | undefined;
|
|
33671
33680
|
name?: string | undefined;
|
|
33672
33681
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33673
33682
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33687,7 +33696,7 @@ declare const VFileInput: {
|
|
|
33687
33696
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
33688
33697
|
modelValue?: unknown;
|
|
33689
33698
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
33690
|
-
}, 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}`>, {}, {}, {}, {
|
|
33699
|
+
}, 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}`>, {}, {}, {}, {
|
|
33691
33700
|
reverse: boolean;
|
|
33692
33701
|
flat: boolean;
|
|
33693
33702
|
style: vue.StyleValue;
|
|
@@ -33892,6 +33901,7 @@ declare const VFileInput: {
|
|
|
33892
33901
|
class?: any;
|
|
33893
33902
|
id?: string | undefined;
|
|
33894
33903
|
label?: string | undefined;
|
|
33904
|
+
theme?: string | undefined;
|
|
33895
33905
|
name?: string | undefined;
|
|
33896
33906
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33897
33907
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33921,6 +33931,7 @@ declare const VFileInput: {
|
|
|
33921
33931
|
class?: any;
|
|
33922
33932
|
id?: string | undefined;
|
|
33923
33933
|
label?: string | undefined;
|
|
33934
|
+
theme?: string | undefined;
|
|
33924
33935
|
name?: string | undefined;
|
|
33925
33936
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33926
33937
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -33978,6 +33989,7 @@ declare const VFileInput: {
|
|
|
33978
33989
|
class?: any;
|
|
33979
33990
|
id?: string | undefined;
|
|
33980
33991
|
label?: string | undefined;
|
|
33992
|
+
theme?: string | undefined;
|
|
33981
33993
|
name?: string | undefined;
|
|
33982
33994
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
33983
33995
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -34066,6 +34078,7 @@ declare const VFileInput: {
|
|
|
34066
34078
|
class?: any;
|
|
34067
34079
|
id?: string | undefined;
|
|
34068
34080
|
label?: string | undefined;
|
|
34081
|
+
theme?: string | undefined;
|
|
34069
34082
|
name?: string | undefined;
|
|
34070
34083
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
34071
34084
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -34085,7 +34098,7 @@ declare const VFileInput: {
|
|
|
34085
34098
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
34086
34099
|
modelValue?: unknown;
|
|
34087
34100
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
34088
|
-
}, 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, {
|
|
34101
|
+
}, 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, {
|
|
34089
34102
|
'click:control': (e: MouseEvent) => true;
|
|
34090
34103
|
'mousedown:control': (e: MouseEvent) => true;
|
|
34091
34104
|
'update:focused': (focused: boolean) => true;
|
|
@@ -34222,7 +34235,7 @@ declare const VFileInput: {
|
|
|
34222
34235
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
34223
34236
|
modelValue: {
|
|
34224
34237
|
type: PropType<File | File[]>;
|
|
34225
|
-
default: () => never[];
|
|
34238
|
+
default: (props: any) => never[] | null;
|
|
34226
34239
|
validator: (val: any) => boolean;
|
|
34227
34240
|
};
|
|
34228
34241
|
focused: BooleanConstructor;
|
|
@@ -34340,7 +34353,7 @@ declare const VFileInput: {
|
|
|
34340
34353
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
34341
34354
|
modelValue: {
|
|
34342
34355
|
type: PropType<File | File[]>;
|
|
34343
|
-
default: () => never[];
|
|
34356
|
+
default: (props: any) => never[] | null;
|
|
34344
34357
|
validator: (val: any) => boolean;
|
|
34345
34358
|
};
|
|
34346
34359
|
focused: BooleanConstructor;
|
|
@@ -44543,6 +44556,7 @@ declare const VProgressLinear: {
|
|
|
44543
44556
|
absolute: boolean;
|
|
44544
44557
|
modelValue: string | number;
|
|
44545
44558
|
tile: boolean;
|
|
44559
|
+
location: NonNullable<Anchor>;
|
|
44546
44560
|
max: string | number;
|
|
44547
44561
|
indeterminate: boolean;
|
|
44548
44562
|
bufferValue: string | number;
|
|
@@ -44591,6 +44605,7 @@ declare const VProgressLinear: {
|
|
|
44591
44605
|
absolute: boolean;
|
|
44592
44606
|
modelValue: string | number;
|
|
44593
44607
|
tile: boolean;
|
|
44608
|
+
location: NonNullable<Anchor>;
|
|
44594
44609
|
max: string | number;
|
|
44595
44610
|
indeterminate: boolean;
|
|
44596
44611
|
bufferValue: string | number;
|
|
@@ -44638,6 +44653,7 @@ declare const VProgressLinear: {
|
|
|
44638
44653
|
modelValue: string | number;
|
|
44639
44654
|
rounded: string | number | boolean;
|
|
44640
44655
|
tile: boolean;
|
|
44656
|
+
location: NonNullable<Anchor>;
|
|
44641
44657
|
max: string | number;
|
|
44642
44658
|
indeterminate: boolean;
|
|
44643
44659
|
bufferValue: string | number;
|
|
@@ -44668,6 +44684,7 @@ declare const VProgressLinear: {
|
|
|
44668
44684
|
absolute: boolean;
|
|
44669
44685
|
modelValue: string | number;
|
|
44670
44686
|
tile: boolean;
|
|
44687
|
+
location: NonNullable<Anchor>;
|
|
44671
44688
|
max: string | number;
|
|
44672
44689
|
indeterminate: boolean;
|
|
44673
44690
|
bufferValue: string | number;
|
|
@@ -44715,6 +44732,7 @@ declare const VProgressLinear: {
|
|
|
44715
44732
|
modelValue: string | number;
|
|
44716
44733
|
rounded: string | number | boolean;
|
|
44717
44734
|
tile: boolean;
|
|
44735
|
+
location: NonNullable<Anchor>;
|
|
44718
44736
|
max: string | number;
|
|
44719
44737
|
indeterminate: boolean;
|
|
44720
44738
|
bufferValue: string | number;
|
|
@@ -44735,6 +44753,7 @@ declare const VProgressLinear: {
|
|
|
44735
44753
|
absolute: boolean;
|
|
44736
44754
|
modelValue: string | number;
|
|
44737
44755
|
tile: boolean;
|
|
44756
|
+
location: NonNullable<Anchor>;
|
|
44738
44757
|
max: string | number;
|
|
44739
44758
|
indeterminate: boolean;
|
|
44740
44759
|
bufferValue: string | number;
|
|
@@ -44784,6 +44803,7 @@ declare const VProgressLinear: {
|
|
|
44784
44803
|
modelValue: string | number;
|
|
44785
44804
|
rounded: string | number | boolean;
|
|
44786
44805
|
tile: boolean;
|
|
44806
|
+
location: NonNullable<Anchor>;
|
|
44787
44807
|
max: string | number;
|
|
44788
44808
|
indeterminate: boolean;
|
|
44789
44809
|
bufferValue: string | number;
|
|
@@ -44809,6 +44829,10 @@ declare const VProgressLinear: {
|
|
|
44809
44829
|
default: undefined;
|
|
44810
44830
|
};
|
|
44811
44831
|
tile: BooleanConstructor;
|
|
44832
|
+
location: {
|
|
44833
|
+
type: vue.PropType<NonNullable<Anchor>>;
|
|
44834
|
+
default: NonNullable<Anchor>;
|
|
44835
|
+
};
|
|
44812
44836
|
class: vue.PropType<any>;
|
|
44813
44837
|
style: {
|
|
44814
44838
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -44855,6 +44879,10 @@ declare const VProgressLinear: {
|
|
|
44855
44879
|
default: undefined;
|
|
44856
44880
|
};
|
|
44857
44881
|
tile: BooleanConstructor;
|
|
44882
|
+
location: {
|
|
44883
|
+
type: vue.PropType<NonNullable<Anchor>>;
|
|
44884
|
+
default: NonNullable<Anchor>;
|
|
44885
|
+
};
|
|
44858
44886
|
class: vue.PropType<any>;
|
|
44859
44887
|
style: {
|
|
44860
44888
|
type: vue.PropType<vue.StyleValue>;
|
|
@@ -45881,6 +45909,7 @@ declare const VRangeSlider: {
|
|
|
45881
45909
|
class?: any;
|
|
45882
45910
|
id?: string | undefined;
|
|
45883
45911
|
label?: string | undefined;
|
|
45912
|
+
theme?: string | undefined;
|
|
45884
45913
|
color?: string | undefined;
|
|
45885
45914
|
name?: string | undefined;
|
|
45886
45915
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -45985,6 +46014,7 @@ declare const VRangeSlider: {
|
|
|
45985
46014
|
class?: any;
|
|
45986
46015
|
id?: string | undefined;
|
|
45987
46016
|
label?: string | undefined;
|
|
46017
|
+
theme?: string | undefined;
|
|
45988
46018
|
color?: string | undefined;
|
|
45989
46019
|
name?: string | undefined;
|
|
45990
46020
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -46151,6 +46181,7 @@ declare const VRangeSlider: {
|
|
|
46151
46181
|
class?: any;
|
|
46152
46182
|
id?: string | undefined;
|
|
46153
46183
|
label?: string | undefined;
|
|
46184
|
+
theme?: string | undefined;
|
|
46154
46185
|
color?: string | undefined;
|
|
46155
46186
|
name?: string | undefined;
|
|
46156
46187
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -46284,6 +46315,7 @@ declare const VRangeSlider: {
|
|
|
46284
46315
|
class?: any;
|
|
46285
46316
|
id?: string | undefined;
|
|
46286
46317
|
label?: string | undefined;
|
|
46318
|
+
theme?: string | undefined;
|
|
46287
46319
|
color?: string | undefined;
|
|
46288
46320
|
name?: string | undefined;
|
|
46289
46321
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -46512,6 +46544,7 @@ declare const VRangeSlider: {
|
|
|
46512
46544
|
};
|
|
46513
46545
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
46514
46546
|
validationValue: null;
|
|
46547
|
+
theme: StringConstructor;
|
|
46515
46548
|
density: {
|
|
46516
46549
|
type: PropType<Density>;
|
|
46517
46550
|
default: string;
|
|
@@ -46635,6 +46668,7 @@ declare const VRangeSlider: {
|
|
|
46635
46668
|
};
|
|
46636
46669
|
validateOn: PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
46637
46670
|
validationValue: null;
|
|
46671
|
+
theme: StringConstructor;
|
|
46638
46672
|
density: {
|
|
46639
46673
|
type: PropType<Density>;
|
|
46640
46674
|
default: string;
|
|
@@ -52006,6 +52040,7 @@ declare const VSlider: {
|
|
|
52006
52040
|
class?: any;
|
|
52007
52041
|
id?: string | undefined;
|
|
52008
52042
|
label?: string | undefined;
|
|
52043
|
+
theme?: string | undefined;
|
|
52009
52044
|
color?: string | undefined;
|
|
52010
52045
|
name?: string | undefined;
|
|
52011
52046
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -52109,6 +52144,7 @@ declare const VSlider: {
|
|
|
52109
52144
|
class?: any;
|
|
52110
52145
|
id?: string | undefined;
|
|
52111
52146
|
label?: string | undefined;
|
|
52147
|
+
theme?: string | undefined;
|
|
52112
52148
|
color?: string | undefined;
|
|
52113
52149
|
name?: string | undefined;
|
|
52114
52150
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -52273,6 +52309,7 @@ declare const VSlider: {
|
|
|
52273
52309
|
class?: any;
|
|
52274
52310
|
id?: string | undefined;
|
|
52275
52311
|
label?: string | undefined;
|
|
52312
|
+
theme?: string | undefined;
|
|
52276
52313
|
color?: string | undefined;
|
|
52277
52314
|
name?: string | undefined;
|
|
52278
52315
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -52404,6 +52441,7 @@ declare const VSlider: {
|
|
|
52404
52441
|
class?: any;
|
|
52405
52442
|
id?: string | undefined;
|
|
52406
52443
|
label?: string | undefined;
|
|
52444
|
+
theme?: string | undefined;
|
|
52407
52445
|
color?: string | undefined;
|
|
52408
52446
|
name?: string | undefined;
|
|
52409
52447
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
@@ -52567,6 +52605,7 @@ declare const VSlider: {
|
|
|
52567
52605
|
};
|
|
52568
52606
|
validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
52569
52607
|
validationValue: null;
|
|
52608
|
+
theme: StringConstructor;
|
|
52570
52609
|
density: {
|
|
52571
52610
|
type: vue.PropType<Density>;
|
|
52572
52611
|
default: string;
|
|
@@ -52689,6 +52728,7 @@ declare const VSlider: {
|
|
|
52689
52728
|
};
|
|
52690
52729
|
validateOn: vue.PropType<("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined>;
|
|
52691
52730
|
validationValue: null;
|
|
52731
|
+
theme: StringConstructor;
|
|
52692
52732
|
density: {
|
|
52693
52733
|
type: vue.PropType<Density>;
|
|
52694
52734
|
default: string;
|
|
@@ -59632,6 +59672,7 @@ declare const VTextarea: {
|
|
|
59632
59672
|
class?: any;
|
|
59633
59673
|
id?: string | undefined;
|
|
59634
59674
|
label?: string | undefined;
|
|
59675
|
+
theme?: string | undefined;
|
|
59635
59676
|
name?: string | undefined;
|
|
59636
59677
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59637
59678
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59661,6 +59702,7 @@ declare const VTextarea: {
|
|
|
59661
59702
|
class?: any;
|
|
59662
59703
|
id?: string | undefined;
|
|
59663
59704
|
label?: string | undefined;
|
|
59705
|
+
theme?: string | undefined;
|
|
59664
59706
|
name?: string | undefined;
|
|
59665
59707
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59666
59708
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59718,6 +59760,7 @@ declare const VTextarea: {
|
|
|
59718
59760
|
class?: any;
|
|
59719
59761
|
id?: string | undefined;
|
|
59720
59762
|
label?: string | undefined;
|
|
59763
|
+
theme?: string | undefined;
|
|
59721
59764
|
name?: string | undefined;
|
|
59722
59765
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59723
59766
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59806,6 +59849,7 @@ declare const VTextarea: {
|
|
|
59806
59849
|
class?: any;
|
|
59807
59850
|
id?: string | undefined;
|
|
59808
59851
|
label?: string | undefined;
|
|
59852
|
+
theme?: string | undefined;
|
|
59809
59853
|
name?: string | undefined;
|
|
59810
59854
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
59811
59855
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -59825,7 +59869,7 @@ declare const VTextarea: {
|
|
|
59825
59869
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
59826
59870
|
modelValue?: unknown;
|
|
59827
59871
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
59828
|
-
}, 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, {
|
|
59872
|
+
}, 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, {
|
|
59829
59873
|
'click:control': (e: MouseEvent) => true;
|
|
59830
59874
|
'mousedown:control': (e: MouseEvent) => true;
|
|
59831
59875
|
'update:focused': (focused: boolean) => true;
|
|
@@ -60181,6 +60225,7 @@ declare const VTextarea: {
|
|
|
60181
60225
|
class?: any;
|
|
60182
60226
|
id?: string | undefined;
|
|
60183
60227
|
label?: string | undefined;
|
|
60228
|
+
theme?: string | undefined;
|
|
60184
60229
|
name?: string | undefined;
|
|
60185
60230
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60186
60231
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60210,6 +60255,7 @@ declare const VTextarea: {
|
|
|
60210
60255
|
class?: any;
|
|
60211
60256
|
id?: string | undefined;
|
|
60212
60257
|
label?: string | undefined;
|
|
60258
|
+
theme?: string | undefined;
|
|
60213
60259
|
name?: string | undefined;
|
|
60214
60260
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60215
60261
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60267,6 +60313,7 @@ declare const VTextarea: {
|
|
|
60267
60313
|
class?: any;
|
|
60268
60314
|
id?: string | undefined;
|
|
60269
60315
|
label?: string | undefined;
|
|
60316
|
+
theme?: string | undefined;
|
|
60270
60317
|
name?: string | undefined;
|
|
60271
60318
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60272
60319
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60355,6 +60402,7 @@ declare const VTextarea: {
|
|
|
60355
60402
|
class?: any;
|
|
60356
60403
|
id?: string | undefined;
|
|
60357
60404
|
label?: string | undefined;
|
|
60405
|
+
theme?: string | undefined;
|
|
60358
60406
|
name?: string | undefined;
|
|
60359
60407
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60360
60408
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60374,7 +60422,7 @@ declare const VTextarea: {
|
|
|
60374
60422
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
60375
60423
|
modelValue?: unknown;
|
|
60376
60424
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
60377
|
-
}, 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}`>, {}, {}, {}, {
|
|
60425
|
+
}, 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}`>, {}, {}, {}, {
|
|
60378
60426
|
reverse: boolean;
|
|
60379
60427
|
flat: boolean;
|
|
60380
60428
|
style: vue.StyleValue;
|
|
@@ -60566,6 +60614,7 @@ declare const VTextarea: {
|
|
|
60566
60614
|
class?: any;
|
|
60567
60615
|
id?: string | undefined;
|
|
60568
60616
|
label?: string | undefined;
|
|
60617
|
+
theme?: string | undefined;
|
|
60569
60618
|
name?: string | undefined;
|
|
60570
60619
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60571
60620
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60595,6 +60644,7 @@ declare const VTextarea: {
|
|
|
60595
60644
|
class?: any;
|
|
60596
60645
|
id?: string | undefined;
|
|
60597
60646
|
label?: string | undefined;
|
|
60647
|
+
theme?: string | undefined;
|
|
60598
60648
|
name?: string | undefined;
|
|
60599
60649
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60600
60650
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60652,6 +60702,7 @@ declare const VTextarea: {
|
|
|
60652
60702
|
class?: any;
|
|
60653
60703
|
id?: string | undefined;
|
|
60654
60704
|
label?: string | undefined;
|
|
60705
|
+
theme?: string | undefined;
|
|
60655
60706
|
name?: string | undefined;
|
|
60656
60707
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60657
60708
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60740,6 +60791,7 @@ declare const VTextarea: {
|
|
|
60740
60791
|
class?: any;
|
|
60741
60792
|
id?: string | undefined;
|
|
60742
60793
|
label?: string | undefined;
|
|
60794
|
+
theme?: string | undefined;
|
|
60743
60795
|
name?: string | undefined;
|
|
60744
60796
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
60745
60797
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -60759,7 +60811,7 @@ declare const VTextarea: {
|
|
|
60759
60811
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
60760
60812
|
modelValue?: unknown;
|
|
60761
60813
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
60762
|
-
}, 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, {
|
|
60814
|
+
}, 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, {
|
|
60763
60815
|
'click:control': (e: MouseEvent) => true;
|
|
60764
60816
|
'mousedown:control': (e: MouseEvent) => true;
|
|
60765
60817
|
'update:focused': (focused: boolean) => true;
|
|
@@ -61217,6 +61269,7 @@ declare const VTextField: {
|
|
|
61217
61269
|
class?: any;
|
|
61218
61270
|
id?: string | undefined;
|
|
61219
61271
|
label?: string | undefined;
|
|
61272
|
+
theme?: string | undefined;
|
|
61220
61273
|
name?: string | undefined;
|
|
61221
61274
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61222
61275
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61246,6 +61299,7 @@ declare const VTextField: {
|
|
|
61246
61299
|
class?: any;
|
|
61247
61300
|
id?: string | undefined;
|
|
61248
61301
|
label?: string | undefined;
|
|
61302
|
+
theme?: string | undefined;
|
|
61249
61303
|
name?: string | undefined;
|
|
61250
61304
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61251
61305
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61303,6 +61357,7 @@ declare const VTextField: {
|
|
|
61303
61357
|
class?: any;
|
|
61304
61358
|
id?: string | undefined;
|
|
61305
61359
|
label?: string | undefined;
|
|
61360
|
+
theme?: string | undefined;
|
|
61306
61361
|
name?: string | undefined;
|
|
61307
61362
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61308
61363
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61391,6 +61446,7 @@ declare const VTextField: {
|
|
|
61391
61446
|
class?: any;
|
|
61392
61447
|
id?: string | undefined;
|
|
61393
61448
|
label?: string | undefined;
|
|
61449
|
+
theme?: string | undefined;
|
|
61394
61450
|
name?: string | undefined;
|
|
61395
61451
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61396
61452
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -61410,7 +61466,7 @@ declare const VTextField: {
|
|
|
61410
61466
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
61411
61467
|
modelValue?: unknown;
|
|
61412
61468
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
61413
|
-
}, 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<{
|
|
61469
|
+
}, 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<{
|
|
61414
61470
|
$: vue.ComponentInternalInstance;
|
|
61415
61471
|
$data: {};
|
|
61416
61472
|
$props: Partial<{
|
|
@@ -62029,6 +62085,7 @@ declare const VTextField: {
|
|
|
62029
62085
|
class?: any;
|
|
62030
62086
|
id?: string | undefined;
|
|
62031
62087
|
label?: string | undefined;
|
|
62088
|
+
theme?: string | undefined;
|
|
62032
62089
|
name?: string | undefined;
|
|
62033
62090
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62034
62091
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62058,6 +62115,7 @@ declare const VTextField: {
|
|
|
62058
62115
|
class?: any;
|
|
62059
62116
|
id?: string | undefined;
|
|
62060
62117
|
label?: string | undefined;
|
|
62118
|
+
theme?: string | undefined;
|
|
62061
62119
|
name?: string | undefined;
|
|
62062
62120
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62063
62121
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62115,6 +62173,7 @@ declare const VTextField: {
|
|
|
62115
62173
|
class?: any;
|
|
62116
62174
|
id?: string | undefined;
|
|
62117
62175
|
label?: string | undefined;
|
|
62176
|
+
theme?: string | undefined;
|
|
62118
62177
|
name?: string | undefined;
|
|
62119
62178
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62120
62179
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62203,6 +62262,7 @@ declare const VTextField: {
|
|
|
62203
62262
|
class?: any;
|
|
62204
62263
|
id?: string | undefined;
|
|
62205
62264
|
label?: string | undefined;
|
|
62265
|
+
theme?: string | undefined;
|
|
62206
62266
|
name?: string | undefined;
|
|
62207
62267
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62208
62268
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62222,7 +62282,7 @@ declare const VTextField: {
|
|
|
62222
62282
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
62223
62283
|
modelValue?: unknown;
|
|
62224
62284
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
62225
|
-
}, 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<{
|
|
62285
|
+
}, 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<{
|
|
62226
62286
|
$: vue.ComponentInternalInstance;
|
|
62227
62287
|
$data: {};
|
|
62228
62288
|
$props: Partial<{
|
|
@@ -62673,6 +62733,7 @@ declare const VTextField: {
|
|
|
62673
62733
|
class?: any;
|
|
62674
62734
|
id?: string | undefined;
|
|
62675
62735
|
label?: string | undefined;
|
|
62736
|
+
theme?: string | undefined;
|
|
62676
62737
|
name?: string | undefined;
|
|
62677
62738
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62678
62739
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62702,6 +62763,7 @@ declare const VTextField: {
|
|
|
62702
62763
|
class?: any;
|
|
62703
62764
|
id?: string | undefined;
|
|
62704
62765
|
label?: string | undefined;
|
|
62766
|
+
theme?: string | undefined;
|
|
62705
62767
|
name?: string | undefined;
|
|
62706
62768
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62707
62769
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62759,6 +62821,7 @@ declare const VTextField: {
|
|
|
62759
62821
|
class?: any;
|
|
62760
62822
|
id?: string | undefined;
|
|
62761
62823
|
label?: string | undefined;
|
|
62824
|
+
theme?: string | undefined;
|
|
62762
62825
|
name?: string | undefined;
|
|
62763
62826
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62764
62827
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62847,6 +62910,7 @@ declare const VTextField: {
|
|
|
62847
62910
|
class?: any;
|
|
62848
62911
|
id?: string | undefined;
|
|
62849
62912
|
label?: string | undefined;
|
|
62913
|
+
theme?: string | undefined;
|
|
62850
62914
|
name?: string | undefined;
|
|
62851
62915
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
62852
62916
|
validateOn?: ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | "lazy" | undefined;
|
|
@@ -62866,7 +62930,7 @@ declare const VTextField: {
|
|
|
62866
62930
|
}> & {} & vue.ComponentCustomProperties & {} & GenericProps<{
|
|
62867
62931
|
modelValue?: unknown;
|
|
62868
62932
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
62869
|
-
}, 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<{
|
|
62933
|
+
}, 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<{
|
|
62870
62934
|
$: vue.ComponentInternalInstance;
|
|
62871
62935
|
$data: {};
|
|
62872
62936
|
$props: Partial<{
|
|
@@ -71191,6 +71255,7 @@ declare const VFab: {
|
|
|
71191
71255
|
active: boolean;
|
|
71192
71256
|
disabled: boolean;
|
|
71193
71257
|
tag: string;
|
|
71258
|
+
layout: boolean;
|
|
71194
71259
|
offset: boolean;
|
|
71195
71260
|
order: string | number;
|
|
71196
71261
|
absolute: boolean;
|
|
@@ -71258,6 +71323,7 @@ declare const VFab: {
|
|
|
71258
71323
|
active: boolean;
|
|
71259
71324
|
disabled: boolean;
|
|
71260
71325
|
tag: string;
|
|
71326
|
+
layout: boolean;
|
|
71261
71327
|
offset: boolean;
|
|
71262
71328
|
order: string | number;
|
|
71263
71329
|
absolute: boolean;
|
|
@@ -71323,6 +71389,7 @@ declare const VFab: {
|
|
|
71323
71389
|
active: boolean;
|
|
71324
71390
|
disabled: boolean;
|
|
71325
71391
|
tag: string;
|
|
71392
|
+
layout: boolean;
|
|
71326
71393
|
offset: boolean;
|
|
71327
71394
|
order: string | number;
|
|
71328
71395
|
absolute: boolean;
|
|
@@ -71365,6 +71432,7 @@ declare const VFab: {
|
|
|
71365
71432
|
active: boolean;
|
|
71366
71433
|
disabled: boolean;
|
|
71367
71434
|
tag: string;
|
|
71435
|
+
layout: boolean;
|
|
71368
71436
|
offset: boolean;
|
|
71369
71437
|
order: string | number;
|
|
71370
71438
|
absolute: boolean;
|
|
@@ -71430,6 +71498,7 @@ declare const VFab: {
|
|
|
71430
71498
|
active: boolean;
|
|
71431
71499
|
disabled: boolean;
|
|
71432
71500
|
tag: string;
|
|
71501
|
+
layout: boolean;
|
|
71433
71502
|
offset: boolean;
|
|
71434
71503
|
order: string | number;
|
|
71435
71504
|
absolute: boolean;
|
|
@@ -71465,6 +71534,7 @@ declare const VFab: {
|
|
|
71465
71534
|
active: boolean;
|
|
71466
71535
|
disabled: boolean;
|
|
71467
71536
|
tag: string;
|
|
71537
|
+
layout: boolean;
|
|
71468
71538
|
offset: boolean;
|
|
71469
71539
|
order: string | number;
|
|
71470
71540
|
absolute: boolean;
|
|
@@ -71532,6 +71602,7 @@ declare const VFab: {
|
|
|
71532
71602
|
active: boolean;
|
|
71533
71603
|
disabled: boolean;
|
|
71534
71604
|
tag: string;
|
|
71605
|
+
layout: boolean;
|
|
71535
71606
|
offset: boolean;
|
|
71536
71607
|
order: string | number;
|
|
71537
71608
|
absolute: boolean;
|
|
@@ -71668,6 +71739,7 @@ declare const VFab: {
|
|
|
71668
71739
|
app: BooleanConstructor;
|
|
71669
71740
|
appear: BooleanConstructor;
|
|
71670
71741
|
extended: BooleanConstructor;
|
|
71742
|
+
layout: BooleanConstructor;
|
|
71671
71743
|
location: {
|
|
71672
71744
|
type: PropType<"left" | "right" | "end" | "top" | "bottom" | "start">;
|
|
71673
71745
|
default: string;
|
|
@@ -71787,6 +71859,7 @@ declare const VFab: {
|
|
|
71787
71859
|
app: BooleanConstructor;
|
|
71788
71860
|
appear: BooleanConstructor;
|
|
71789
71861
|
extended: BooleanConstructor;
|
|
71862
|
+
layout: BooleanConstructor;
|
|
71790
71863
|
location: {
|
|
71791
71864
|
type: PropType<"left" | "right" | "end" | "top" | "bottom" | "start">;
|
|
71792
71865
|
default: string;
|
|
@@ -71811,11 +71884,13 @@ declare const VNumberInput: {
|
|
|
71811
71884
|
disabled: boolean;
|
|
71812
71885
|
focused: boolean;
|
|
71813
71886
|
readonly: boolean | null;
|
|
71814
|
-
modelValue: string | number;
|
|
71815
71887
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
71816
71888
|
inset: boolean;
|
|
71817
71889
|
density: Density;
|
|
71890
|
+
max: number;
|
|
71818
71891
|
persistentHint: boolean;
|
|
71892
|
+
min: number;
|
|
71893
|
+
step: number;
|
|
71819
71894
|
controlVariant: ControlVariant;
|
|
71820
71895
|
hideInput: boolean;
|
|
71821
71896
|
} & {
|
|
@@ -71825,14 +71900,12 @@ declare const VNumberInput: {
|
|
|
71825
71900
|
color?: string | undefined;
|
|
71826
71901
|
loading?: string | boolean | undefined;
|
|
71827
71902
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
71903
|
+
modelValue?: number | undefined;
|
|
71828
71904
|
rounded?: string | number | boolean | undefined;
|
|
71829
|
-
max?: number | undefined;
|
|
71830
71905
|
bgColor?: string | undefined;
|
|
71831
71906
|
baseColor?: string | undefined;
|
|
71832
71907
|
hint?: string | undefined;
|
|
71833
71908
|
hideDetails?: boolean | "auto" | undefined;
|
|
71834
|
-
min?: number | undefined;
|
|
71835
|
-
step?: number | undefined;
|
|
71836
71909
|
} & {
|
|
71837
71910
|
$children?: {} | vue.VNodeChild | {
|
|
71838
71911
|
clear?: ((arg: DefaultInputSlot & {
|
|
@@ -71898,11 +71971,13 @@ declare const VNumberInput: {
|
|
|
71898
71971
|
disabled: boolean;
|
|
71899
71972
|
focused: boolean;
|
|
71900
71973
|
readonly: boolean | null;
|
|
71901
|
-
modelValue: string | number;
|
|
71902
71974
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
71903
71975
|
inset: boolean;
|
|
71904
71976
|
density: Density;
|
|
71977
|
+
max: number;
|
|
71905
71978
|
persistentHint: boolean;
|
|
71979
|
+
min: number;
|
|
71980
|
+
step: number;
|
|
71906
71981
|
controlVariant: ControlVariant;
|
|
71907
71982
|
hideInput: boolean;
|
|
71908
71983
|
} & {
|
|
@@ -71912,14 +71987,12 @@ declare const VNumberInput: {
|
|
|
71912
71987
|
color?: string | undefined;
|
|
71913
71988
|
loading?: string | boolean | undefined;
|
|
71914
71989
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
71990
|
+
modelValue?: number | undefined;
|
|
71915
71991
|
rounded?: string | number | boolean | undefined;
|
|
71916
|
-
max?: number | undefined;
|
|
71917
71992
|
bgColor?: string | undefined;
|
|
71918
71993
|
baseColor?: string | undefined;
|
|
71919
71994
|
hint?: string | undefined;
|
|
71920
71995
|
hideDetails?: boolean | "auto" | undefined;
|
|
71921
|
-
min?: number | undefined;
|
|
71922
|
-
step?: number | undefined;
|
|
71923
71996
|
} & {
|
|
71924
71997
|
$children?: {} | vue.VNodeChild | {
|
|
71925
71998
|
clear?: ((arg: DefaultInputSlot & {
|
|
@@ -71983,12 +72056,15 @@ declare const VNumberInput: {
|
|
|
71983
72056
|
disabled: boolean;
|
|
71984
72057
|
focused: boolean;
|
|
71985
72058
|
readonly: boolean | null;
|
|
71986
|
-
modelValue:
|
|
72059
|
+
modelValue: number;
|
|
71987
72060
|
rounded: string | number | boolean;
|
|
71988
72061
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
71989
72062
|
inset: boolean;
|
|
71990
72063
|
density: Density;
|
|
72064
|
+
max: number;
|
|
71991
72065
|
persistentHint: boolean;
|
|
72066
|
+
min: number;
|
|
72067
|
+
step: number;
|
|
71992
72068
|
controlVariant: ControlVariant;
|
|
71993
72069
|
hideInput: boolean;
|
|
71994
72070
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -72044,11 +72120,13 @@ declare const VNumberInput: {
|
|
|
72044
72120
|
disabled: boolean;
|
|
72045
72121
|
focused: boolean;
|
|
72046
72122
|
readonly: boolean | null;
|
|
72047
|
-
modelValue: string | number;
|
|
72048
72123
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
72049
72124
|
inset: boolean;
|
|
72050
72125
|
density: Density;
|
|
72126
|
+
max: number;
|
|
72051
72127
|
persistentHint: boolean;
|
|
72128
|
+
min: number;
|
|
72129
|
+
step: number;
|
|
72052
72130
|
controlVariant: ControlVariant;
|
|
72053
72131
|
hideInput: boolean;
|
|
72054
72132
|
} & {
|
|
@@ -72058,14 +72136,12 @@ declare const VNumberInput: {
|
|
|
72058
72136
|
color?: string | undefined;
|
|
72059
72137
|
loading?: string | boolean | undefined;
|
|
72060
72138
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
72139
|
+
modelValue?: number | undefined;
|
|
72061
72140
|
rounded?: string | number | boolean | undefined;
|
|
72062
|
-
max?: number | undefined;
|
|
72063
72141
|
bgColor?: string | undefined;
|
|
72064
72142
|
baseColor?: string | undefined;
|
|
72065
72143
|
hint?: string | undefined;
|
|
72066
72144
|
hideDetails?: boolean | "auto" | undefined;
|
|
72067
|
-
min?: number | undefined;
|
|
72068
|
-
step?: number | undefined;
|
|
72069
72145
|
} & {
|
|
72070
72146
|
$children?: {} | vue.VNodeChild | {
|
|
72071
72147
|
clear?: ((arg: DefaultInputSlot & {
|
|
@@ -72129,12 +72205,15 @@ declare const VNumberInput: {
|
|
|
72129
72205
|
disabled: boolean;
|
|
72130
72206
|
focused: boolean;
|
|
72131
72207
|
readonly: boolean | null;
|
|
72132
|
-
modelValue:
|
|
72208
|
+
modelValue: number;
|
|
72133
72209
|
rounded: string | number | boolean;
|
|
72134
72210
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
72135
72211
|
inset: boolean;
|
|
72136
72212
|
density: Density;
|
|
72213
|
+
max: number;
|
|
72137
72214
|
persistentHint: boolean;
|
|
72215
|
+
min: number;
|
|
72216
|
+
step: number;
|
|
72138
72217
|
controlVariant: ControlVariant;
|
|
72139
72218
|
hideInput: boolean;
|
|
72140
72219
|
}>;
|
|
@@ -72148,11 +72227,13 @@ declare const VNumberInput: {
|
|
|
72148
72227
|
disabled: boolean;
|
|
72149
72228
|
focused: boolean;
|
|
72150
72229
|
readonly: boolean | null;
|
|
72151
|
-
modelValue: string | number;
|
|
72152
72230
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
72153
72231
|
inset: boolean;
|
|
72154
72232
|
density: Density;
|
|
72233
|
+
max: number;
|
|
72155
72234
|
persistentHint: boolean;
|
|
72235
|
+
min: number;
|
|
72236
|
+
step: number;
|
|
72156
72237
|
controlVariant: ControlVariant;
|
|
72157
72238
|
hideInput: boolean;
|
|
72158
72239
|
} & {
|
|
@@ -72162,14 +72243,12 @@ declare const VNumberInput: {
|
|
|
72162
72243
|
color?: string | undefined;
|
|
72163
72244
|
loading?: string | boolean | undefined;
|
|
72164
72245
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
72246
|
+
modelValue?: number | undefined;
|
|
72165
72247
|
rounded?: string | number | boolean | undefined;
|
|
72166
|
-
max?: number | undefined;
|
|
72167
72248
|
bgColor?: string | undefined;
|
|
72168
72249
|
baseColor?: string | undefined;
|
|
72169
72250
|
hint?: string | undefined;
|
|
72170
72251
|
hideDetails?: boolean | "auto" | undefined;
|
|
72171
|
-
min?: number | undefined;
|
|
72172
|
-
step?: number | undefined;
|
|
72173
72252
|
} & {
|
|
72174
72253
|
$children?: {} | vue.VNodeChild | {
|
|
72175
72254
|
clear?: ((arg: DefaultInputSlot & {
|
|
@@ -72235,12 +72314,15 @@ declare const VNumberInput: {
|
|
|
72235
72314
|
disabled: boolean;
|
|
72236
72315
|
focused: boolean;
|
|
72237
72316
|
readonly: boolean | null;
|
|
72238
|
-
modelValue:
|
|
72317
|
+
modelValue: number;
|
|
72239
72318
|
rounded: string | number | boolean;
|
|
72240
72319
|
variant: "underlined" | "filled" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
72241
72320
|
inset: boolean;
|
|
72242
72321
|
density: Density;
|
|
72322
|
+
max: number;
|
|
72243
72323
|
persistentHint: boolean;
|
|
72324
|
+
min: number;
|
|
72325
|
+
step: number;
|
|
72244
72326
|
controlVariant: ControlVariant;
|
|
72245
72327
|
hideInput: boolean;
|
|
72246
72328
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -72284,8 +72366,8 @@ declare const VNumberInput: {
|
|
|
72284
72366
|
}>[];
|
|
72285
72367
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
72286
72368
|
modelValue: {
|
|
72287
|
-
type:
|
|
72288
|
-
default:
|
|
72369
|
+
type: NumberConstructor;
|
|
72370
|
+
default: undefined;
|
|
72289
72371
|
};
|
|
72290
72372
|
focused: BooleanConstructor;
|
|
72291
72373
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
@@ -72333,13 +72415,22 @@ declare const VNumberInput: {
|
|
|
72333
72415
|
};
|
|
72334
72416
|
inset: BooleanConstructor;
|
|
72335
72417
|
hideInput: BooleanConstructor;
|
|
72336
|
-
min:
|
|
72337
|
-
|
|
72338
|
-
|
|
72418
|
+
min: {
|
|
72419
|
+
type: NumberConstructor;
|
|
72420
|
+
default: number;
|
|
72421
|
+
};
|
|
72422
|
+
max: {
|
|
72423
|
+
type: NumberConstructor;
|
|
72424
|
+
default: number;
|
|
72425
|
+
};
|
|
72426
|
+
step: {
|
|
72427
|
+
type: NumberConstructor;
|
|
72428
|
+
default: number;
|
|
72429
|
+
};
|
|
72339
72430
|
}, vue.ExtractPropTypes<{
|
|
72340
72431
|
modelValue: {
|
|
72341
|
-
type:
|
|
72342
|
-
default:
|
|
72432
|
+
type: NumberConstructor;
|
|
72433
|
+
default: undefined;
|
|
72343
72434
|
};
|
|
72344
72435
|
focused: BooleanConstructor;
|
|
72345
72436
|
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
@@ -72387,9 +72478,18 @@ declare const VNumberInput: {
|
|
|
72387
72478
|
};
|
|
72388
72479
|
inset: BooleanConstructor;
|
|
72389
72480
|
hideInput: BooleanConstructor;
|
|
72390
|
-
min:
|
|
72391
|
-
|
|
72392
|
-
|
|
72481
|
+
min: {
|
|
72482
|
+
type: NumberConstructor;
|
|
72483
|
+
default: number;
|
|
72484
|
+
};
|
|
72485
|
+
max: {
|
|
72486
|
+
type: NumberConstructor;
|
|
72487
|
+
default: number;
|
|
72488
|
+
};
|
|
72489
|
+
step: {
|
|
72490
|
+
type: NumberConstructor;
|
|
72491
|
+
default: number;
|
|
72492
|
+
};
|
|
72393
72493
|
}>>;
|
|
72394
72494
|
type VNumberInput = InstanceType<typeof VNumberInput>;
|
|
72395
72495
|
|
|
@@ -72507,6 +72607,590 @@ declare const VPickerTitle: {
|
|
|
72507
72607
|
}>>;
|
|
72508
72608
|
type VPickerTitle = InstanceType<typeof VPickerTitle>;
|
|
72509
72609
|
|
|
72610
|
+
type VSnackbarQueueSlots<T extends string | SnackbarMessage> = {
|
|
72611
|
+
default: {
|
|
72612
|
+
item: T;
|
|
72613
|
+
};
|
|
72614
|
+
text: {
|
|
72615
|
+
item: T;
|
|
72616
|
+
};
|
|
72617
|
+
actions: {
|
|
72618
|
+
item: T;
|
|
72619
|
+
props: {
|
|
72620
|
+
onClick: () => void;
|
|
72621
|
+
};
|
|
72622
|
+
};
|
|
72623
|
+
};
|
|
72624
|
+
type SnackbarMessage = Omit<VSnackbar['$props'], '$children' | 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover'>;
|
|
72625
|
+
declare const VSnackbarQueue: {
|
|
72626
|
+
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
72627
|
+
style: vue.StyleValue;
|
|
72628
|
+
disabled: boolean;
|
|
72629
|
+
absolute: boolean;
|
|
72630
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72631
|
+
component?: vue.Component | undefined;
|
|
72632
|
+
})>;
|
|
72633
|
+
zIndex: string | number;
|
|
72634
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
72635
|
+
origin: Anchor | "auto" | "overlap";
|
|
72636
|
+
vertical: boolean;
|
|
72637
|
+
tile: boolean;
|
|
72638
|
+
eager: boolean;
|
|
72639
|
+
location: Anchor;
|
|
72640
|
+
locationStrategy: "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
72641
|
+
updateLocation: (e: Event) => void;
|
|
72642
|
+
} | undefined) | "connected";
|
|
72643
|
+
activatorProps: Record<string, any>;
|
|
72644
|
+
openOnHover: boolean;
|
|
72645
|
+
closeOnContentClick: boolean;
|
|
72646
|
+
closeOnBack: boolean;
|
|
72647
|
+
contained: boolean;
|
|
72648
|
+
closeText: string;
|
|
72649
|
+
multiLine: boolean;
|
|
72650
|
+
timeout: string | number;
|
|
72651
|
+
} & {
|
|
72652
|
+
class?: any;
|
|
72653
|
+
text?: string | undefined;
|
|
72654
|
+
width?: string | number | undefined;
|
|
72655
|
+
height?: string | number | undefined;
|
|
72656
|
+
theme?: string | undefined;
|
|
72657
|
+
target?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | "cursor" | [x: number, y: number] | undefined;
|
|
72658
|
+
color?: string | undefined;
|
|
72659
|
+
offset?: string | number | number[] | undefined;
|
|
72660
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
72661
|
+
rounded?: string | number | boolean | undefined;
|
|
72662
|
+
contentClass?: any;
|
|
72663
|
+
opacity?: string | number | undefined;
|
|
72664
|
+
maxHeight?: string | number | undefined;
|
|
72665
|
+
maxWidth?: string | number | undefined;
|
|
72666
|
+
minHeight?: string | number | undefined;
|
|
72667
|
+
minWidth?: string | number | undefined;
|
|
72668
|
+
closable?: string | boolean | undefined;
|
|
72669
|
+
activator?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | undefined;
|
|
72670
|
+
closeDelay?: string | number | undefined;
|
|
72671
|
+
openDelay?: string | number | undefined;
|
|
72672
|
+
openOnClick?: boolean | undefined;
|
|
72673
|
+
openOnFocus?: boolean | undefined;
|
|
72674
|
+
contentProps?: any;
|
|
72675
|
+
attach?: string | boolean | Element | undefined;
|
|
72676
|
+
timer?: string | boolean | undefined;
|
|
72677
|
+
} & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
72678
|
+
'update:modelValue': (val: (string | SnackbarMessage)[]) => true;
|
|
72679
|
+
}, "v-slot:default" | "$children" | "v-slots" | "modelValue" | "v-slot:text" | "update:modelValue" | "v-slot:actions">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
72680
|
+
style: vue.StyleValue;
|
|
72681
|
+
disabled: boolean;
|
|
72682
|
+
absolute: boolean;
|
|
72683
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72684
|
+
component?: vue.Component | undefined;
|
|
72685
|
+
})>;
|
|
72686
|
+
zIndex: string | number;
|
|
72687
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
72688
|
+
origin: Anchor | "auto" | "overlap";
|
|
72689
|
+
vertical: boolean;
|
|
72690
|
+
tile: boolean;
|
|
72691
|
+
eager: boolean;
|
|
72692
|
+
location: Anchor;
|
|
72693
|
+
locationStrategy: "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
72694
|
+
updateLocation: (e: Event) => void;
|
|
72695
|
+
} | undefined) | "connected";
|
|
72696
|
+
activatorProps: Record<string, any>;
|
|
72697
|
+
openOnHover: boolean;
|
|
72698
|
+
closeOnContentClick: boolean;
|
|
72699
|
+
closeOnBack: boolean;
|
|
72700
|
+
contained: boolean;
|
|
72701
|
+
closeText: string;
|
|
72702
|
+
multiLine: boolean;
|
|
72703
|
+
timeout: string | number;
|
|
72704
|
+
} & {
|
|
72705
|
+
class?: any;
|
|
72706
|
+
text?: string | undefined;
|
|
72707
|
+
width?: string | number | undefined;
|
|
72708
|
+
height?: string | number | undefined;
|
|
72709
|
+
theme?: string | undefined;
|
|
72710
|
+
target?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | "cursor" | [x: number, y: number] | undefined;
|
|
72711
|
+
color?: string | undefined;
|
|
72712
|
+
offset?: string | number | number[] | undefined;
|
|
72713
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
72714
|
+
rounded?: string | number | boolean | undefined;
|
|
72715
|
+
contentClass?: any;
|
|
72716
|
+
opacity?: string | number | undefined;
|
|
72717
|
+
maxHeight?: string | number | undefined;
|
|
72718
|
+
maxWidth?: string | number | undefined;
|
|
72719
|
+
minHeight?: string | number | undefined;
|
|
72720
|
+
minWidth?: string | number | undefined;
|
|
72721
|
+
closable?: string | boolean | undefined;
|
|
72722
|
+
activator?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | undefined;
|
|
72723
|
+
closeDelay?: string | number | undefined;
|
|
72724
|
+
openDelay?: string | number | undefined;
|
|
72725
|
+
openOnClick?: boolean | undefined;
|
|
72726
|
+
openOnFocus?: boolean | undefined;
|
|
72727
|
+
contentProps?: any;
|
|
72728
|
+
attach?: string | boolean | Element | undefined;
|
|
72729
|
+
timer?: string | boolean | undefined;
|
|
72730
|
+
} & {}, {
|
|
72731
|
+
style: vue.StyleValue;
|
|
72732
|
+
disabled: boolean;
|
|
72733
|
+
absolute: boolean;
|
|
72734
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72735
|
+
component?: vue.Component | undefined;
|
|
72736
|
+
})>;
|
|
72737
|
+
zIndex: string | number;
|
|
72738
|
+
rounded: string | number | boolean;
|
|
72739
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
72740
|
+
origin: Anchor | "auto" | "overlap";
|
|
72741
|
+
vertical: boolean;
|
|
72742
|
+
tile: boolean;
|
|
72743
|
+
eager: boolean;
|
|
72744
|
+
location: Anchor;
|
|
72745
|
+
locationStrategy: "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
72746
|
+
updateLocation: (e: Event) => void;
|
|
72747
|
+
} | undefined) | "connected";
|
|
72748
|
+
activatorProps: Record<string, any>;
|
|
72749
|
+
openOnClick: boolean;
|
|
72750
|
+
openOnHover: boolean;
|
|
72751
|
+
openOnFocus: boolean;
|
|
72752
|
+
closeOnContentClick: boolean;
|
|
72753
|
+
closeOnBack: boolean;
|
|
72754
|
+
contained: boolean;
|
|
72755
|
+
closeText: string;
|
|
72756
|
+
multiLine: boolean;
|
|
72757
|
+
timeout: string | number;
|
|
72758
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
72759
|
+
default: (arg: {
|
|
72760
|
+
item: string | SnackbarMessage;
|
|
72761
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
72762
|
+
[key: string]: any;
|
|
72763
|
+
}>[];
|
|
72764
|
+
text: (arg: {
|
|
72765
|
+
item: string | SnackbarMessage;
|
|
72766
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
72767
|
+
[key: string]: any;
|
|
72768
|
+
}>[];
|
|
72769
|
+
actions: (arg: {
|
|
72770
|
+
item: string | SnackbarMessage;
|
|
72771
|
+
props: {
|
|
72772
|
+
onClick: () => void;
|
|
72773
|
+
};
|
|
72774
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
72775
|
+
[key: string]: any;
|
|
72776
|
+
}>[];
|
|
72777
|
+
}>>, {
|
|
72778
|
+
P: {};
|
|
72779
|
+
B: {};
|
|
72780
|
+
D: {};
|
|
72781
|
+
C: {};
|
|
72782
|
+
M: {};
|
|
72783
|
+
Defaults: {};
|
|
72784
|
+
}, {
|
|
72785
|
+
style: vue.StyleValue;
|
|
72786
|
+
disabled: boolean;
|
|
72787
|
+
absolute: boolean;
|
|
72788
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72789
|
+
component?: vue.Component | undefined;
|
|
72790
|
+
})>;
|
|
72791
|
+
zIndex: string | number;
|
|
72792
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
72793
|
+
origin: Anchor | "auto" | "overlap";
|
|
72794
|
+
vertical: boolean;
|
|
72795
|
+
tile: boolean;
|
|
72796
|
+
eager: boolean;
|
|
72797
|
+
location: Anchor;
|
|
72798
|
+
locationStrategy: "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
72799
|
+
updateLocation: (e: Event) => void;
|
|
72800
|
+
} | undefined) | "connected";
|
|
72801
|
+
activatorProps: Record<string, any>;
|
|
72802
|
+
openOnHover: boolean;
|
|
72803
|
+
closeOnContentClick: boolean;
|
|
72804
|
+
closeOnBack: boolean;
|
|
72805
|
+
contained: boolean;
|
|
72806
|
+
closeText: string;
|
|
72807
|
+
multiLine: boolean;
|
|
72808
|
+
timeout: string | number;
|
|
72809
|
+
} & {
|
|
72810
|
+
class?: any;
|
|
72811
|
+
text?: string | undefined;
|
|
72812
|
+
width?: string | number | undefined;
|
|
72813
|
+
height?: string | number | undefined;
|
|
72814
|
+
theme?: string | undefined;
|
|
72815
|
+
target?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | "cursor" | [x: number, y: number] | undefined;
|
|
72816
|
+
color?: string | undefined;
|
|
72817
|
+
offset?: string | number | number[] | undefined;
|
|
72818
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
72819
|
+
rounded?: string | number | boolean | undefined;
|
|
72820
|
+
contentClass?: any;
|
|
72821
|
+
opacity?: string | number | undefined;
|
|
72822
|
+
maxHeight?: string | number | undefined;
|
|
72823
|
+
maxWidth?: string | number | undefined;
|
|
72824
|
+
minHeight?: string | number | undefined;
|
|
72825
|
+
minWidth?: string | number | undefined;
|
|
72826
|
+
closable?: string | boolean | undefined;
|
|
72827
|
+
activator?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | undefined;
|
|
72828
|
+
closeDelay?: string | number | undefined;
|
|
72829
|
+
openDelay?: string | number | undefined;
|
|
72830
|
+
openOnClick?: boolean | undefined;
|
|
72831
|
+
openOnFocus?: boolean | undefined;
|
|
72832
|
+
contentProps?: any;
|
|
72833
|
+
attach?: string | boolean | Element | undefined;
|
|
72834
|
+
timer?: string | boolean | undefined;
|
|
72835
|
+
} & {}, {}, {}, {}, {}, {
|
|
72836
|
+
style: vue.StyleValue;
|
|
72837
|
+
disabled: boolean;
|
|
72838
|
+
absolute: boolean;
|
|
72839
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72840
|
+
component?: vue.Component | undefined;
|
|
72841
|
+
})>;
|
|
72842
|
+
zIndex: string | number;
|
|
72843
|
+
rounded: string | number | boolean;
|
|
72844
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
72845
|
+
origin: Anchor | "auto" | "overlap";
|
|
72846
|
+
vertical: boolean;
|
|
72847
|
+
tile: boolean;
|
|
72848
|
+
eager: boolean;
|
|
72849
|
+
location: Anchor;
|
|
72850
|
+
locationStrategy: "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
72851
|
+
updateLocation: (e: Event) => void;
|
|
72852
|
+
} | undefined) | "connected";
|
|
72853
|
+
activatorProps: Record<string, any>;
|
|
72854
|
+
openOnClick: boolean;
|
|
72855
|
+
openOnHover: boolean;
|
|
72856
|
+
openOnFocus: boolean;
|
|
72857
|
+
closeOnContentClick: boolean;
|
|
72858
|
+
closeOnBack: boolean;
|
|
72859
|
+
contained: boolean;
|
|
72860
|
+
closeText: string;
|
|
72861
|
+
multiLine: boolean;
|
|
72862
|
+
timeout: string | number;
|
|
72863
|
+
}>;
|
|
72864
|
+
__isFragment?: undefined;
|
|
72865
|
+
__isTeleport?: undefined;
|
|
72866
|
+
__isSuspense?: undefined;
|
|
72867
|
+
} & vue.ComponentOptionsBase<{
|
|
72868
|
+
style: vue.StyleValue;
|
|
72869
|
+
disabled: boolean;
|
|
72870
|
+
absolute: boolean;
|
|
72871
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72872
|
+
component?: vue.Component | undefined;
|
|
72873
|
+
})>;
|
|
72874
|
+
zIndex: string | number;
|
|
72875
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
72876
|
+
origin: Anchor | "auto" | "overlap";
|
|
72877
|
+
vertical: boolean;
|
|
72878
|
+
tile: boolean;
|
|
72879
|
+
eager: boolean;
|
|
72880
|
+
location: Anchor;
|
|
72881
|
+
locationStrategy: "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
72882
|
+
updateLocation: (e: Event) => void;
|
|
72883
|
+
} | undefined) | "connected";
|
|
72884
|
+
activatorProps: Record<string, any>;
|
|
72885
|
+
openOnHover: boolean;
|
|
72886
|
+
closeOnContentClick: boolean;
|
|
72887
|
+
closeOnBack: boolean;
|
|
72888
|
+
contained: boolean;
|
|
72889
|
+
closeText: string;
|
|
72890
|
+
multiLine: boolean;
|
|
72891
|
+
timeout: string | number;
|
|
72892
|
+
} & {
|
|
72893
|
+
class?: any;
|
|
72894
|
+
text?: string | undefined;
|
|
72895
|
+
width?: string | number | undefined;
|
|
72896
|
+
height?: string | number | undefined;
|
|
72897
|
+
theme?: string | undefined;
|
|
72898
|
+
target?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | "cursor" | [x: number, y: number] | undefined;
|
|
72899
|
+
color?: string | undefined;
|
|
72900
|
+
offset?: string | number | number[] | undefined;
|
|
72901
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
|
72902
|
+
rounded?: string | number | boolean | undefined;
|
|
72903
|
+
contentClass?: any;
|
|
72904
|
+
opacity?: string | number | undefined;
|
|
72905
|
+
maxHeight?: string | number | undefined;
|
|
72906
|
+
maxWidth?: string | number | undefined;
|
|
72907
|
+
minHeight?: string | number | undefined;
|
|
72908
|
+
minWidth?: string | number | undefined;
|
|
72909
|
+
closable?: string | boolean | undefined;
|
|
72910
|
+
activator?: Element | (string & {}) | vue.ComponentPublicInstance | "parent" | undefined;
|
|
72911
|
+
closeDelay?: string | number | undefined;
|
|
72912
|
+
openDelay?: string | number | undefined;
|
|
72913
|
+
openOnClick?: boolean | undefined;
|
|
72914
|
+
openOnFocus?: boolean | undefined;
|
|
72915
|
+
contentProps?: any;
|
|
72916
|
+
attach?: string | boolean | Element | undefined;
|
|
72917
|
+
timer?: string | boolean | undefined;
|
|
72918
|
+
} & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
72919
|
+
'update:modelValue': (val: (string | SnackbarMessage)[]) => true;
|
|
72920
|
+
}, "v-slot:default" | "$children" | "v-slots" | "modelValue" | "v-slot:text" | "update:modelValue" | "v-slot:actions">, string, {
|
|
72921
|
+
style: vue.StyleValue;
|
|
72922
|
+
disabled: boolean;
|
|
72923
|
+
absolute: boolean;
|
|
72924
|
+
transition: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72925
|
+
component?: vue.Component | undefined;
|
|
72926
|
+
})>;
|
|
72927
|
+
zIndex: string | number;
|
|
72928
|
+
rounded: string | number | boolean;
|
|
72929
|
+
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
|
72930
|
+
origin: Anchor | "auto" | "overlap";
|
|
72931
|
+
vertical: boolean;
|
|
72932
|
+
tile: boolean;
|
|
72933
|
+
eager: boolean;
|
|
72934
|
+
location: Anchor;
|
|
72935
|
+
locationStrategy: "static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
72936
|
+
updateLocation: (e: Event) => void;
|
|
72937
|
+
} | undefined) | "connected";
|
|
72938
|
+
activatorProps: Record<string, any>;
|
|
72939
|
+
openOnClick: boolean;
|
|
72940
|
+
openOnHover: boolean;
|
|
72941
|
+
openOnFocus: boolean;
|
|
72942
|
+
closeOnContentClick: boolean;
|
|
72943
|
+
closeOnBack: boolean;
|
|
72944
|
+
contained: boolean;
|
|
72945
|
+
closeText: string;
|
|
72946
|
+
multiLine: boolean;
|
|
72947
|
+
timeout: string | number;
|
|
72948
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
72949
|
+
default: (arg: {
|
|
72950
|
+
item: string | SnackbarMessage;
|
|
72951
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
72952
|
+
[key: string]: any;
|
|
72953
|
+
}>[];
|
|
72954
|
+
text: (arg: {
|
|
72955
|
+
item: string | SnackbarMessage;
|
|
72956
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
72957
|
+
[key: string]: any;
|
|
72958
|
+
}>[];
|
|
72959
|
+
actions: (arg: {
|
|
72960
|
+
item: string | SnackbarMessage;
|
|
72961
|
+
props: {
|
|
72962
|
+
onClick: () => void;
|
|
72963
|
+
};
|
|
72964
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
72965
|
+
[key: string]: any;
|
|
72966
|
+
}>[];
|
|
72967
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T extends readonly (string | SnackbarMessage)[]>(props: {
|
|
72968
|
+
modelValue?: T | undefined;
|
|
72969
|
+
'onUpdate:modelValue'?: ((val: T) => void) | undefined;
|
|
72970
|
+
}, slots: VSnackbarQueueSlots<T[number]>) => GenericProps<{
|
|
72971
|
+
modelValue?: T | undefined;
|
|
72972
|
+
'onUpdate:modelValue'?: ((val: T) => void) | undefined;
|
|
72973
|
+
}, VSnackbarQueueSlots<T[number]>>) & FilterPropsOptions<{
|
|
72974
|
+
class: PropType<any>;
|
|
72975
|
+
style: {
|
|
72976
|
+
type: PropType<vue.StyleValue>;
|
|
72977
|
+
default: null;
|
|
72978
|
+
};
|
|
72979
|
+
text: StringConstructor;
|
|
72980
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
72981
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
72982
|
+
theme: StringConstructor;
|
|
72983
|
+
target: PropType<Element | (string & {}) | vue.ComponentPublicInstance | "parent" | "cursor" | [x: number, y: number] | undefined>;
|
|
72984
|
+
color: StringConstructor;
|
|
72985
|
+
disabled: BooleanConstructor;
|
|
72986
|
+
offset: PropType<string | number | number[] | undefined>;
|
|
72987
|
+
absolute: BooleanConstructor;
|
|
72988
|
+
transition: Omit<{
|
|
72989
|
+
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
72990
|
+
component?: vue.Component | undefined;
|
|
72991
|
+
})>;
|
|
72992
|
+
default: string;
|
|
72993
|
+
validator: (val: unknown) => boolean;
|
|
72994
|
+
}, "default" | "type"> & {
|
|
72995
|
+
type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72996
|
+
component?: vue.Component | undefined;
|
|
72997
|
+
})>>;
|
|
72998
|
+
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
72999
|
+
component?: vue.Component | undefined;
|
|
73000
|
+
})>;
|
|
73001
|
+
};
|
|
73002
|
+
position: {
|
|
73003
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
|
73004
|
+
validator: (v: any) => boolean;
|
|
73005
|
+
};
|
|
73006
|
+
zIndex: {
|
|
73007
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
73008
|
+
default: number;
|
|
73009
|
+
};
|
|
73010
|
+
rounded: {
|
|
73011
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
73012
|
+
default: undefined;
|
|
73013
|
+
};
|
|
73014
|
+
variant: {
|
|
73015
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
73016
|
+
default: string;
|
|
73017
|
+
validator: (v: any) => boolean;
|
|
73018
|
+
};
|
|
73019
|
+
contentClass: null;
|
|
73020
|
+
origin: {
|
|
73021
|
+
type: PropType<Anchor | "auto" | "overlap">;
|
|
73022
|
+
default: string;
|
|
73023
|
+
};
|
|
73024
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
73025
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
73026
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
73027
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
73028
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
73029
|
+
vertical: BooleanConstructor;
|
|
73030
|
+
tile: BooleanConstructor;
|
|
73031
|
+
eager: BooleanConstructor;
|
|
73032
|
+
location: {
|
|
73033
|
+
type: PropType<Anchor>;
|
|
73034
|
+
default: string;
|
|
73035
|
+
};
|
|
73036
|
+
activator: PropType<Element | (string & {}) | vue.ComponentPublicInstance | "parent" | undefined>;
|
|
73037
|
+
locationStrategy: {
|
|
73038
|
+
type: PropType<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
73039
|
+
updateLocation: (e: Event) => void;
|
|
73040
|
+
} | undefined) | "connected">;
|
|
73041
|
+
default: string;
|
|
73042
|
+
validator: (val: any) => boolean;
|
|
73043
|
+
};
|
|
73044
|
+
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
73045
|
+
openDelay: (StringConstructor | NumberConstructor)[];
|
|
73046
|
+
activatorProps: {
|
|
73047
|
+
type: PropType<Record<string, any>>;
|
|
73048
|
+
default: () => {};
|
|
73049
|
+
};
|
|
73050
|
+
openOnClick: {
|
|
73051
|
+
type: BooleanConstructor;
|
|
73052
|
+
default: undefined;
|
|
73053
|
+
};
|
|
73054
|
+
openOnHover: BooleanConstructor;
|
|
73055
|
+
openOnFocus: {
|
|
73056
|
+
type: BooleanConstructor;
|
|
73057
|
+
default: undefined;
|
|
73058
|
+
};
|
|
73059
|
+
closeOnContentClick: BooleanConstructor;
|
|
73060
|
+
closeOnBack: {
|
|
73061
|
+
type: BooleanConstructor;
|
|
73062
|
+
default: boolean;
|
|
73063
|
+
};
|
|
73064
|
+
contained: BooleanConstructor;
|
|
73065
|
+
contentProps: null;
|
|
73066
|
+
attach: PropType<string | boolean | Element>;
|
|
73067
|
+
multiLine: BooleanConstructor;
|
|
73068
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
73069
|
+
timeout: {
|
|
73070
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
73071
|
+
default: number;
|
|
73072
|
+
};
|
|
73073
|
+
closable: (StringConstructor | BooleanConstructor)[];
|
|
73074
|
+
closeText: {
|
|
73075
|
+
type: StringConstructor;
|
|
73076
|
+
default: string;
|
|
73077
|
+
};
|
|
73078
|
+
modelValue: {
|
|
73079
|
+
type: PropType<readonly (string | SnackbarMessage)[]>;
|
|
73080
|
+
default: () => never[];
|
|
73081
|
+
};
|
|
73082
|
+
}, vue.ExtractPropTypes<{
|
|
73083
|
+
class: PropType<any>;
|
|
73084
|
+
style: {
|
|
73085
|
+
type: PropType<vue.StyleValue>;
|
|
73086
|
+
default: null;
|
|
73087
|
+
};
|
|
73088
|
+
text: StringConstructor;
|
|
73089
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
73090
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
73091
|
+
theme: StringConstructor;
|
|
73092
|
+
target: PropType<Element | (string & {}) | vue.ComponentPublicInstance | "parent" | "cursor" | [x: number, y: number] | undefined>;
|
|
73093
|
+
color: StringConstructor;
|
|
73094
|
+
disabled: BooleanConstructor;
|
|
73095
|
+
offset: PropType<string | number | number[] | undefined>;
|
|
73096
|
+
absolute: BooleanConstructor;
|
|
73097
|
+
transition: Omit<{
|
|
73098
|
+
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
73099
|
+
component?: vue.Component | undefined;
|
|
73100
|
+
})>;
|
|
73101
|
+
default: string;
|
|
73102
|
+
validator: (val: unknown) => boolean;
|
|
73103
|
+
}, "default" | "type"> & {
|
|
73104
|
+
type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
|
73105
|
+
component?: vue.Component | undefined;
|
|
73106
|
+
})>>;
|
|
73107
|
+
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
73108
|
+
component?: vue.Component | undefined;
|
|
73109
|
+
})>;
|
|
73110
|
+
};
|
|
73111
|
+
position: {
|
|
73112
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
|
73113
|
+
validator: (v: any) => boolean;
|
|
73114
|
+
};
|
|
73115
|
+
zIndex: {
|
|
73116
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
73117
|
+
default: number;
|
|
73118
|
+
};
|
|
73119
|
+
rounded: {
|
|
73120
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
73121
|
+
default: undefined;
|
|
73122
|
+
};
|
|
73123
|
+
variant: {
|
|
73124
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
73125
|
+
default: string;
|
|
73126
|
+
validator: (v: any) => boolean;
|
|
73127
|
+
};
|
|
73128
|
+
contentClass: null;
|
|
73129
|
+
origin: {
|
|
73130
|
+
type: PropType<Anchor | "auto" | "overlap">;
|
|
73131
|
+
default: string;
|
|
73132
|
+
};
|
|
73133
|
+
opacity: (StringConstructor | NumberConstructor)[];
|
|
73134
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
73135
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
73136
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
73137
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
73138
|
+
vertical: BooleanConstructor;
|
|
73139
|
+
tile: BooleanConstructor;
|
|
73140
|
+
eager: BooleanConstructor;
|
|
73141
|
+
location: {
|
|
73142
|
+
type: PropType<Anchor>;
|
|
73143
|
+
default: string;
|
|
73144
|
+
};
|
|
73145
|
+
activator: PropType<Element | (string & {}) | vue.ComponentPublicInstance | "parent" | undefined>;
|
|
73146
|
+
locationStrategy: {
|
|
73147
|
+
type: PropType<"static" | ((data: LocationStrategyData, props: StrategyProps, contentStyles: vue.Ref<Record<string, string>>) => {
|
|
73148
|
+
updateLocation: (e: Event) => void;
|
|
73149
|
+
} | undefined) | "connected">;
|
|
73150
|
+
default: string;
|
|
73151
|
+
validator: (val: any) => boolean;
|
|
73152
|
+
};
|
|
73153
|
+
closeDelay: (StringConstructor | NumberConstructor)[];
|
|
73154
|
+
openDelay: (StringConstructor | NumberConstructor)[];
|
|
73155
|
+
activatorProps: {
|
|
73156
|
+
type: PropType<Record<string, any>>;
|
|
73157
|
+
default: () => {};
|
|
73158
|
+
};
|
|
73159
|
+
openOnClick: {
|
|
73160
|
+
type: BooleanConstructor;
|
|
73161
|
+
default: undefined;
|
|
73162
|
+
};
|
|
73163
|
+
openOnHover: BooleanConstructor;
|
|
73164
|
+
openOnFocus: {
|
|
73165
|
+
type: BooleanConstructor;
|
|
73166
|
+
default: undefined;
|
|
73167
|
+
};
|
|
73168
|
+
closeOnContentClick: BooleanConstructor;
|
|
73169
|
+
closeOnBack: {
|
|
73170
|
+
type: BooleanConstructor;
|
|
73171
|
+
default: boolean;
|
|
73172
|
+
};
|
|
73173
|
+
contained: BooleanConstructor;
|
|
73174
|
+
contentProps: null;
|
|
73175
|
+
attach: PropType<string | boolean | Element>;
|
|
73176
|
+
multiLine: BooleanConstructor;
|
|
73177
|
+
timer: (StringConstructor | BooleanConstructor)[];
|
|
73178
|
+
timeout: {
|
|
73179
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
73180
|
+
default: number;
|
|
73181
|
+
};
|
|
73182
|
+
closable: (StringConstructor | BooleanConstructor)[];
|
|
73183
|
+
closeText: {
|
|
73184
|
+
type: StringConstructor;
|
|
73185
|
+
default: string;
|
|
73186
|
+
};
|
|
73187
|
+
modelValue: {
|
|
73188
|
+
type: PropType<readonly (string | SnackbarMessage)[]>;
|
|
73189
|
+
default: () => never[];
|
|
73190
|
+
};
|
|
73191
|
+
}>>;
|
|
73192
|
+
type VSnackbarQueue = InstanceType<typeof VSnackbarQueue>;
|
|
73193
|
+
|
|
72510
73194
|
type SparklineItem = number | {
|
|
72511
73195
|
value: number;
|
|
72512
73196
|
};
|
|
@@ -74043,10 +74727,10 @@ declare const VTimePickerClock: {
|
|
|
74043
74727
|
step: number;
|
|
74044
74728
|
scrollable: boolean;
|
|
74045
74729
|
ampm: boolean;
|
|
74046
|
-
displayedValue: null;
|
|
74047
74730
|
} & {
|
|
74048
74731
|
color?: string | undefined;
|
|
74049
74732
|
modelValue?: number | undefined;
|
|
74733
|
+
displayedValue?: any;
|
|
74050
74734
|
allowedValues?: ((value: number) => boolean) | undefined;
|
|
74051
74735
|
} & {
|
|
74052
74736
|
$children?: vue.VNodeChild | {
|
|
@@ -74074,10 +74758,10 @@ declare const VTimePickerClock: {
|
|
|
74074
74758
|
step: number;
|
|
74075
74759
|
scrollable: boolean;
|
|
74076
74760
|
ampm: boolean;
|
|
74077
|
-
displayedValue: null;
|
|
74078
74761
|
} & {
|
|
74079
74762
|
color?: string | undefined;
|
|
74080
74763
|
modelValue?: number | undefined;
|
|
74764
|
+
displayedValue?: any;
|
|
74081
74765
|
allowedValues?: ((value: number) => boolean) | undefined;
|
|
74082
74766
|
} & {
|
|
74083
74767
|
$children?: vue.VNodeChild | {
|
|
@@ -74100,7 +74784,6 @@ declare const VTimePickerClock: {
|
|
|
74100
74784
|
step: number;
|
|
74101
74785
|
scrollable: boolean;
|
|
74102
74786
|
ampm: boolean;
|
|
74103
|
-
displayedValue: null;
|
|
74104
74787
|
}, true, {}, vue.SlotsType<Partial<{
|
|
74105
74788
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74106
74789
|
[key: string]: any;
|
|
@@ -74123,10 +74806,10 @@ declare const VTimePickerClock: {
|
|
|
74123
74806
|
step: number;
|
|
74124
74807
|
scrollable: boolean;
|
|
74125
74808
|
ampm: boolean;
|
|
74126
|
-
displayedValue: null;
|
|
74127
74809
|
} & {
|
|
74128
74810
|
color?: string | undefined;
|
|
74129
74811
|
modelValue?: number | undefined;
|
|
74812
|
+
displayedValue?: any;
|
|
74130
74813
|
allowedValues?: ((value: number) => boolean) | undefined;
|
|
74131
74814
|
} & {
|
|
74132
74815
|
$children?: vue.VNodeChild | {
|
|
@@ -74149,7 +74832,6 @@ declare const VTimePickerClock: {
|
|
|
74149
74832
|
step: number;
|
|
74150
74833
|
scrollable: boolean;
|
|
74151
74834
|
ampm: boolean;
|
|
74152
|
-
displayedValue: null;
|
|
74153
74835
|
}>;
|
|
74154
74836
|
__isFragment?: undefined;
|
|
74155
74837
|
__isTeleport?: undefined;
|
|
@@ -74165,10 +74847,10 @@ declare const VTimePickerClock: {
|
|
|
74165
74847
|
step: number;
|
|
74166
74848
|
scrollable: boolean;
|
|
74167
74849
|
ampm: boolean;
|
|
74168
|
-
displayedValue: null;
|
|
74169
74850
|
} & {
|
|
74170
74851
|
color?: string | undefined;
|
|
74171
74852
|
modelValue?: number | undefined;
|
|
74853
|
+
displayedValue?: any;
|
|
74172
74854
|
allowedValues?: ((value: number) => boolean) | undefined;
|
|
74173
74855
|
} & {
|
|
74174
74856
|
$children?: vue.VNodeChild | {
|
|
@@ -74194,7 +74876,6 @@ declare const VTimePickerClock: {
|
|
|
74194
74876
|
step: number;
|
|
74195
74877
|
scrollable: boolean;
|
|
74196
74878
|
ampm: boolean;
|
|
74197
|
-
displayedValue: null;
|
|
74198
74879
|
}, {}, string, vue.SlotsType<Partial<{
|
|
74199
74880
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
74200
74881
|
[key: string]: any;
|
|
@@ -74204,9 +74885,7 @@ declare const VTimePickerClock: {
|
|
|
74204
74885
|
ampm: BooleanConstructor;
|
|
74205
74886
|
color: StringConstructor;
|
|
74206
74887
|
disabled: BooleanConstructor;
|
|
74207
|
-
displayedValue:
|
|
74208
|
-
default: null;
|
|
74209
|
-
};
|
|
74888
|
+
displayedValue: null;
|
|
74210
74889
|
double: BooleanConstructor;
|
|
74211
74890
|
format: {
|
|
74212
74891
|
type: FunctionConstructor;
|
|
@@ -74238,9 +74917,7 @@ declare const VTimePickerClock: {
|
|
|
74238
74917
|
ampm: BooleanConstructor;
|
|
74239
74918
|
color: StringConstructor;
|
|
74240
74919
|
disabled: BooleanConstructor;
|
|
74241
|
-
displayedValue:
|
|
74242
|
-
default: null;
|
|
74243
|
-
};
|
|
74920
|
+
displayedValue: null;
|
|
74244
74921
|
double: BooleanConstructor;
|
|
74245
74922
|
format: {
|
|
74246
74923
|
type: FunctionConstructor;
|
|
@@ -76421,6 +77098,7 @@ declare const allComponents_d_VSlideYReverseTransition: typeof VSlideYReverseTra
|
|
|
76421
77098
|
declare const allComponents_d_VSlideYTransition: typeof VSlideYTransition;
|
|
76422
77099
|
declare const allComponents_d_VSlider: typeof VSlider;
|
|
76423
77100
|
declare const allComponents_d_VSnackbar: typeof VSnackbar;
|
|
77101
|
+
declare const allComponents_d_VSnackbarQueue: typeof VSnackbarQueue;
|
|
76424
77102
|
declare const allComponents_d_VSpacer: typeof VSpacer;
|
|
76425
77103
|
declare const allComponents_d_VSparkline: typeof VSparkline;
|
|
76426
77104
|
declare const allComponents_d_VSpeedDial: typeof VSpeedDial;
|
|
@@ -76456,7 +77134,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
|
|
|
76456
77134
|
declare const allComponents_d_VWindow: typeof VWindow;
|
|
76457
77135
|
declare const allComponents_d_VWindowItem: typeof VWindowItem;
|
|
76458
77136
|
declare namespace allComponents_d {
|
|
76459
|
-
export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VEmptyState as VEmptyState, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFab as VFab, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VNumberInput as VNumberInput, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VSpeedDial as VSpeedDial, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimePicker as VTimePicker, type allComponents_d_VTimePickerClock as VTimePickerClock, type allComponents_d_VTimePickerControls as VTimePickerControls, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VTreeview as VTreeview, type allComponents_d_VTreeviewGroup as VTreeviewGroup, type allComponents_d_VTreeviewItem as VTreeviewItem, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
|
|
77137
|
+
export { type allComponents_d_VAlert as VAlert, type allComponents_d_VAlertTitle as VAlertTitle, type allComponents_d_VApp as VApp, type allComponents_d_VAppBar as VAppBar, type allComponents_d_VAppBarNavIcon as VAppBarNavIcon, type allComponents_d_VAppBarTitle as VAppBarTitle, type allComponents_d_VAutocomplete as VAutocomplete, type allComponents_d_VAvatar as VAvatar, type allComponents_d_VBadge as VBadge, type allComponents_d_VBanner as VBanner, type allComponents_d_VBannerActions as VBannerActions, type allComponents_d_VBannerText as VBannerText, type allComponents_d_VBottomNavigation as VBottomNavigation, type allComponents_d_VBottomSheet as VBottomSheet, type allComponents_d_VBreadcrumbs as VBreadcrumbs, type allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, type allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, type allComponents_d_VBtn as VBtn, type allComponents_d_VBtnGroup as VBtnGroup, type allComponents_d_VBtnToggle as VBtnToggle, type allComponents_d_VCalendar as VCalendar, type allComponents_d_VCalendarDay as VCalendarDay, type allComponents_d_VCalendarHeader as VCalendarHeader, type allComponents_d_VCalendarInterval as VCalendarInterval, type allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, type allComponents_d_VCalendarMonthDay as VCalendarMonthDay, type allComponents_d_VCard as VCard, type allComponents_d_VCardActions as VCardActions, type allComponents_d_VCardItem as VCardItem, type allComponents_d_VCardSubtitle as VCardSubtitle, type allComponents_d_VCardText as VCardText, type allComponents_d_VCardTitle as VCardTitle, type allComponents_d_VCarousel as VCarousel, type allComponents_d_VCarouselItem as VCarouselItem, type allComponents_d_VCheckbox as VCheckbox, type allComponents_d_VCheckboxBtn as VCheckboxBtn, type allComponents_d_VChip as VChip, type allComponents_d_VChipGroup as VChipGroup, type allComponents_d_VClassIcon as VClassIcon, type allComponents_d_VCode as VCode, type allComponents_d_VCol as VCol, type allComponents_d_VColorPicker as VColorPicker, type allComponents_d_VCombobox as VCombobox, type allComponents_d_VComponentIcon as VComponentIcon, type allComponents_d_VConfirmEdit as VConfirmEdit, type allComponents_d_VContainer as VContainer, type allComponents_d_VCounter as VCounter, type allComponents_d_VDataIterator as VDataIterator, type allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, type allComponents_d_VDataTableHeaders as VDataTableHeaders, type allComponents_d_VDataTableRow as VDataTableRow, type allComponents_d_VDataTableRows as VDataTableRows, type allComponents_d_VDataTableServer as VDataTableServer, type allComponents_d_VDataTableVirtual as VDataTableVirtual, type allComponents_d_VDatePicker as VDatePicker, type allComponents_d_VDatePickerControls as VDatePickerControls, type allComponents_d_VDatePickerHeader as VDatePickerHeader, type allComponents_d_VDatePickerMonth as VDatePickerMonth, type allComponents_d_VDatePickerMonths as VDatePickerMonths, type allComponents_d_VDatePickerYears as VDatePickerYears, type allComponents_d_VDefaultsProvider as VDefaultsProvider, type allComponents_d_VDialog as VDialog, type allComponents_d_VDialogBottomTransition as VDialogBottomTransition, type allComponents_d_VDialogTopTransition as VDialogTopTransition, type allComponents_d_VDialogTransition as VDialogTransition, type allComponents_d_VDivider as VDivider, type allComponents_d_VEmptyState as VEmptyState, type allComponents_d_VExpandTransition as VExpandTransition, type allComponents_d_VExpandXTransition as VExpandXTransition, type allComponents_d_VExpansionPanel as VExpansionPanel, type allComponents_d_VExpansionPanelText as VExpansionPanelText, type allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, type allComponents_d_VExpansionPanels as VExpansionPanels, type allComponents_d_VFab as VFab, type allComponents_d_VFabTransition as VFabTransition, type allComponents_d_VFadeTransition as VFadeTransition, type allComponents_d_VField as VField, type allComponents_d_VFieldLabel as VFieldLabel, type allComponents_d_VFileInput as VFileInput, type allComponents_d_VFooter as VFooter, type allComponents_d_VForm as VForm, type allComponents_d_VHover as VHover, type allComponents_d_VIcon as VIcon, type allComponents_d_VImg as VImg, type allComponents_d_VInfiniteScroll as VInfiniteScroll, type allComponents_d_VInput as VInput, type allComponents_d_VItem as VItem, type allComponents_d_VItemGroup as VItemGroup, type allComponents_d_VKbd as VKbd, type allComponents_d_VLabel as VLabel, type allComponents_d_VLayout as VLayout, type allComponents_d_VLayoutItem as VLayoutItem, type allComponents_d_VLazy as VLazy, type allComponents_d_VLigatureIcon as VLigatureIcon, type allComponents_d_VList as VList, type allComponents_d_VListGroup as VListGroup, type allComponents_d_VListImg as VListImg, type allComponents_d_VListItem as VListItem, type allComponents_d_VListItemAction as VListItemAction, type allComponents_d_VListItemMedia as VListItemMedia, type allComponents_d_VListItemSubtitle as VListItemSubtitle, type allComponents_d_VListItemTitle as VListItemTitle, type allComponents_d_VListSubheader as VListSubheader, type allComponents_d_VLocaleProvider as VLocaleProvider, type allComponents_d_VMain as VMain, type allComponents_d_VMenu as VMenu, type allComponents_d_VMessages as VMessages, type allComponents_d_VNavigationDrawer as VNavigationDrawer, type allComponents_d_VNoSsr as VNoSsr, type allComponents_d_VNumberInput as VNumberInput, type allComponents_d_VOtpInput as VOtpInput, type allComponents_d_VOverlay as VOverlay, type allComponents_d_VPagination as VPagination, type allComponents_d_VParallax as VParallax, type allComponents_d_VPicker as VPicker, type allComponents_d_VPickerTitle as VPickerTitle, type allComponents_d_VProgressCircular as VProgressCircular, type allComponents_d_VProgressLinear as VProgressLinear, type allComponents_d_VRadio as VRadio, type allComponents_d_VRadioGroup as VRadioGroup, type allComponents_d_VRangeSlider as VRangeSlider, type allComponents_d_VRating as VRating, type allComponents_d_VResponsive as VResponsive, type allComponents_d_VRow as VRow, type allComponents_d_VScaleTransition as VScaleTransition, type allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, type allComponents_d_VScrollXTransition as VScrollXTransition, type allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, type allComponents_d_VScrollYTransition as VScrollYTransition, type allComponents_d_VSelect as VSelect, type allComponents_d_VSelectionControl as VSelectionControl, type allComponents_d_VSelectionControlGroup as VSelectionControlGroup, type allComponents_d_VSheet as VSheet, type allComponents_d_VSkeletonLoader as VSkeletonLoader, type allComponents_d_VSlideGroup as VSlideGroup, type allComponents_d_VSlideGroupItem as VSlideGroupItem, type allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, type allComponents_d_VSlideXTransition as VSlideXTransition, type allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, type allComponents_d_VSlideYTransition as VSlideYTransition, type allComponents_d_VSlider as VSlider, type allComponents_d_VSnackbar as VSnackbar, type allComponents_d_VSnackbarQueue as VSnackbarQueue, type allComponents_d_VSpacer as VSpacer, type allComponents_d_VSparkline as VSparkline, type allComponents_d_VSpeedDial as VSpeedDial, type allComponents_d_VStepper as VStepper, type allComponents_d_VStepperActions as VStepperActions, type allComponents_d_VStepperHeader as VStepperHeader, type allComponents_d_VStepperItem as VStepperItem, type allComponents_d_VStepperWindow as VStepperWindow, type allComponents_d_VStepperWindowItem as VStepperWindowItem, type allComponents_d_VSvgIcon as VSvgIcon, type allComponents_d_VSwitch as VSwitch, type allComponents_d_VSystemBar as VSystemBar, type allComponents_d_VTab as VTab, type allComponents_d_VTable as VTable, type allComponents_d_VTabs as VTabs, type allComponents_d_VTextField as VTextField, type allComponents_d_VTextarea as VTextarea, type allComponents_d_VThemeProvider as VThemeProvider, type allComponents_d_VTimePicker as VTimePicker, type allComponents_d_VTimePickerClock as VTimePickerClock, type allComponents_d_VTimePickerControls as VTimePickerControls, type allComponents_d_VTimeline as VTimeline, type allComponents_d_VTimelineItem as VTimelineItem, type allComponents_d_VToolbar as VToolbar, type allComponents_d_VToolbarItems as VToolbarItems, type allComponents_d_VToolbarTitle as VToolbarTitle, type allComponents_d_VTooltip as VTooltip, type allComponents_d_VTreeview as VTreeview, type allComponents_d_VTreeviewGroup as VTreeviewGroup, type allComponents_d_VTreeviewItem as VTreeviewItem, type allComponents_d_VValidation as VValidation, type allComponents_d_VVirtualScroll as VVirtualScroll, type allComponents_d_VWindow as VWindow, type allComponents_d_VWindowItem as VWindowItem };
|
|
76460
77138
|
}
|
|
76461
77139
|
|
|
76462
77140
|
declare const md1: Blueprint;
|