@vuetify/nightly 3.7.2-master.2024-09-22 → 3.7.2-master.2024-09-27
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/importMap-labs.json +12 -12
- package/dist/json/importMap.json +156 -156
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +4764 -4764
- package/dist/vuetify-labs.d.ts +194 -194
- package/dist/vuetify-labs.esm.js +7 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2916 -2916
- package/dist/vuetify.d.ts +211 -211
- package/dist/vuetify.esm.js +7 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +22 -22
- package/lib/components/VBottomSheet/index.d.mts +4 -4
- package/lib/components/VCarousel/index.d.mts +2 -2
- package/lib/components/VCheckbox/index.d.mts +2 -2
- package/lib/components/VChip/VChip.mjs +2 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPicker.mjs +2 -2
- package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +22 -22
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs +87 -0
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs.map +1 -0
- package/lib/components/VDataTable/index.d.mts +6 -6
- package/lib/components/VDatePicker/index.d.mts +2 -2
- package/lib/components/VDialog/index.d.mts +22 -22
- package/lib/components/VFileInput/__tests__/text.txt +1 -0
- package/lib/components/VFileInput/index.d.mts +3 -3
- package/lib/components/VInput/index.d.mts +2 -2
- package/lib/components/VList/VListItem.mjs +1 -0
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VMenu/index.d.mts +20 -20
- package/lib/components/VMessages/index.d.mts +8 -8
- package/lib/components/VNavigationDrawer/index.d.mts +7 -7
- package/lib/components/VOverlay/index.d.mts +4 -4
- package/lib/components/VRadioGroup/index.d.mts +2 -2
- package/lib/components/VSelect/index.d.mts +22 -22
- package/lib/components/VSnackbar/index.d.mts +31 -31
- package/lib/components/VSpeedDial/index.d.mts +2 -2
- package/lib/components/VSwitch/index.d.mts +2 -2
- package/lib/components/VTextField/index.d.mts +3 -3
- package/lib/components/VTextarea/index.d.mts +3 -3
- package/lib/components/VTooltip/index.d.mts +24 -24
- package/lib/components/VWindow/index.d.mts +2 -2
- package/lib/components/index.d.mts +157 -157
- package/lib/directives/ripple/index.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +54 -54
- package/lib/labs/VNumberInput/index.d.mts +9 -9
- package/lib/labs/VSnackbarQueue/index.d.mts +52 -52
- package/lib/labs/VTreeview/index.d.mts +7 -7
- package/lib/labs/components.d.mts +68 -68
- package/package.json +22 -15
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs +0 -74
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs.map +0 -1
@@ -136,6 +136,7 @@ declare const VSnackbar: {
|
|
136
136
|
timeout: string | number;
|
137
137
|
vertical: boolean;
|
138
138
|
modelValue: boolean;
|
139
|
+
tile: boolean;
|
139
140
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
140
141
|
updateLocation: (e?: Event) => void;
|
141
142
|
});
|
@@ -144,7 +145,6 @@ declare const VSnackbar: {
|
|
144
145
|
closeOnContentClick: boolean;
|
145
146
|
closeOnBack: boolean;
|
146
147
|
contained: boolean;
|
147
|
-
tile: boolean;
|
148
148
|
multiLine: boolean;
|
149
149
|
} & {
|
150
150
|
offset?: string | number | number[] | undefined;
|
@@ -164,9 +164,9 @@ declare const VSnackbar: {
|
|
164
164
|
timer?: string | boolean | undefined;
|
165
165
|
rounded?: string | number | boolean | undefined;
|
166
166
|
contentClass?: any;
|
167
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
167
168
|
closeDelay?: string | number | undefined;
|
168
169
|
openDelay?: string | number | undefined;
|
169
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
170
170
|
openOnClick?: boolean | undefined;
|
171
171
|
openOnFocus?: boolean | undefined;
|
172
172
|
contentProps?: any;
|
@@ -273,9 +273,9 @@ declare const VSnackbar: {
|
|
273
273
|
class?: any;
|
274
274
|
theme?: string | undefined;
|
275
275
|
contentClass?: any;
|
276
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
276
277
|
closeDelay?: string | number | undefined;
|
277
278
|
openDelay?: string | number | undefined;
|
278
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
279
279
|
openOnClick?: boolean | undefined;
|
280
280
|
openOnFocus?: boolean | undefined;
|
281
281
|
contentProps?: any;
|
@@ -352,9 +352,9 @@ declare const VSnackbar: {
|
|
352
352
|
class?: any;
|
353
353
|
theme?: string | undefined;
|
354
354
|
contentClass?: any;
|
355
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
355
356
|
closeDelay?: string | number | undefined;
|
356
357
|
openDelay?: string | number | undefined;
|
357
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
358
358
|
openOnClick?: boolean | undefined;
|
359
359
|
openOnFocus?: boolean | undefined;
|
360
360
|
contentProps?: any;
|
@@ -415,7 +415,7 @@ declare const VSnackbar: {
|
|
415
415
|
}>;
|
416
416
|
$root: vue.ComponentPublicInstance | null;
|
417
417
|
$parent: vue.ComponentPublicInstance | null;
|
418
|
-
$emit: ((event: "
|
418
|
+
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
419
419
|
$el: any;
|
420
420
|
$options: vue.ComponentOptionsBase<{
|
421
421
|
absolute: boolean;
|
@@ -455,9 +455,9 @@ declare const VSnackbar: {
|
|
455
455
|
class?: any;
|
456
456
|
theme?: string | undefined;
|
457
457
|
contentClass?: any;
|
458
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
458
459
|
closeDelay?: string | number | undefined;
|
459
460
|
openDelay?: string | number | undefined;
|
460
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
461
461
|
openOnClick?: boolean | undefined;
|
462
462
|
openOnFocus?: boolean | undefined;
|
463
463
|
contentProps?: any;
|
@@ -607,9 +607,9 @@ declare const VSnackbar: {
|
|
607
607
|
class?: any;
|
608
608
|
theme?: string | undefined;
|
609
609
|
contentClass?: any;
|
610
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
610
611
|
closeDelay?: string | number | undefined;
|
611
612
|
openDelay?: string | number | undefined;
|
612
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
613
613
|
openOnClick?: boolean | undefined;
|
614
614
|
openOnFocus?: boolean | undefined;
|
615
615
|
contentProps?: any;
|
@@ -660,7 +660,7 @@ declare const VSnackbar: {
|
|
660
660
|
globalTop: Readonly<Ref<boolean>>;
|
661
661
|
localTop: vue.ComputedRef<boolean>;
|
662
662
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
663
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "
|
663
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
664
664
|
_allExposed: {
|
665
665
|
activatorEl: Ref<HTMLElement | undefined>;
|
666
666
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -688,6 +688,7 @@ declare const VSnackbar: {
|
|
688
688
|
timeout: string | number;
|
689
689
|
vertical: boolean;
|
690
690
|
modelValue: boolean;
|
691
|
+
tile: boolean;
|
691
692
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
692
693
|
updateLocation: (e?: Event) => void;
|
693
694
|
});
|
@@ -696,7 +697,6 @@ declare const VSnackbar: {
|
|
696
697
|
closeOnContentClick: boolean;
|
697
698
|
closeOnBack: boolean;
|
698
699
|
contained: boolean;
|
699
|
-
tile: boolean;
|
700
700
|
multiLine: boolean;
|
701
701
|
} & {
|
702
702
|
offset?: string | number | number[] | undefined;
|
@@ -716,9 +716,9 @@ declare const VSnackbar: {
|
|
716
716
|
timer?: string | boolean | undefined;
|
717
717
|
rounded?: string | number | boolean | undefined;
|
718
718
|
contentClass?: any;
|
719
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
719
720
|
closeDelay?: string | number | undefined;
|
720
721
|
openDelay?: string | number | undefined;
|
721
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
722
722
|
openOnClick?: boolean | undefined;
|
723
723
|
openOnFocus?: boolean | undefined;
|
724
724
|
contentProps?: any;
|
@@ -774,6 +774,7 @@ declare const VSnackbar: {
|
|
774
774
|
vertical: boolean;
|
775
775
|
modelValue: boolean;
|
776
776
|
rounded: string | number | boolean;
|
777
|
+
tile: boolean;
|
777
778
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
778
779
|
updateLocation: (e?: Event) => void;
|
779
780
|
});
|
@@ -784,7 +785,6 @@ declare const VSnackbar: {
|
|
784
785
|
closeOnContentClick: boolean;
|
785
786
|
closeOnBack: boolean;
|
786
787
|
contained: boolean;
|
787
|
-
tile: boolean;
|
788
788
|
multiLine: boolean;
|
789
789
|
}, true, {}, vue.SlotsType<Partial<{
|
790
790
|
activator: (arg: {
|
@@ -818,6 +818,7 @@ declare const VSnackbar: {
|
|
818
818
|
timeout: string | number;
|
819
819
|
vertical: boolean;
|
820
820
|
modelValue: boolean;
|
821
|
+
tile: boolean;
|
821
822
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
822
823
|
updateLocation: (e?: Event) => void;
|
823
824
|
});
|
@@ -826,7 +827,6 @@ declare const VSnackbar: {
|
|
826
827
|
closeOnContentClick: boolean;
|
827
828
|
closeOnBack: boolean;
|
828
829
|
contained: boolean;
|
829
|
-
tile: boolean;
|
830
830
|
multiLine: boolean;
|
831
831
|
} & {
|
832
832
|
offset?: string | number | number[] | undefined;
|
@@ -846,9 +846,9 @@ declare const VSnackbar: {
|
|
846
846
|
timer?: string | boolean | undefined;
|
847
847
|
rounded?: string | number | boolean | undefined;
|
848
848
|
contentClass?: any;
|
849
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
849
850
|
closeDelay?: string | number | undefined;
|
850
851
|
openDelay?: string | number | undefined;
|
851
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
852
852
|
openOnClick?: boolean | undefined;
|
853
853
|
openOnFocus?: boolean | undefined;
|
854
854
|
contentProps?: any;
|
@@ -955,9 +955,9 @@ declare const VSnackbar: {
|
|
955
955
|
class?: any;
|
956
956
|
theme?: string | undefined;
|
957
957
|
contentClass?: any;
|
958
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
958
959
|
closeDelay?: string | number | undefined;
|
959
960
|
openDelay?: string | number | undefined;
|
960
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
961
961
|
openOnClick?: boolean | undefined;
|
962
962
|
openOnFocus?: boolean | undefined;
|
963
963
|
contentProps?: any;
|
@@ -1034,9 +1034,9 @@ declare const VSnackbar: {
|
|
1034
1034
|
class?: any;
|
1035
1035
|
theme?: string | undefined;
|
1036
1036
|
contentClass?: any;
|
1037
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1037
1038
|
closeDelay?: string | number | undefined;
|
1038
1039
|
openDelay?: string | number | undefined;
|
1039
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1040
1040
|
openOnClick?: boolean | undefined;
|
1041
1041
|
openOnFocus?: boolean | undefined;
|
1042
1042
|
contentProps?: any;
|
@@ -1097,7 +1097,7 @@ declare const VSnackbar: {
|
|
1097
1097
|
}>;
|
1098
1098
|
$root: vue.ComponentPublicInstance | null;
|
1099
1099
|
$parent: vue.ComponentPublicInstance | null;
|
1100
|
-
$emit: ((event: "
|
1100
|
+
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1101
1101
|
$el: any;
|
1102
1102
|
$options: vue.ComponentOptionsBase<{
|
1103
1103
|
absolute: boolean;
|
@@ -1137,9 +1137,9 @@ declare const VSnackbar: {
|
|
1137
1137
|
class?: any;
|
1138
1138
|
theme?: string | undefined;
|
1139
1139
|
contentClass?: any;
|
1140
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1140
1141
|
closeDelay?: string | number | undefined;
|
1141
1142
|
openDelay?: string | number | undefined;
|
1142
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1143
1143
|
openOnClick?: boolean | undefined;
|
1144
1144
|
openOnFocus?: boolean | undefined;
|
1145
1145
|
contentProps?: any;
|
@@ -1289,9 +1289,9 @@ declare const VSnackbar: {
|
|
1289
1289
|
class?: any;
|
1290
1290
|
theme?: string | undefined;
|
1291
1291
|
contentClass?: any;
|
1292
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1292
1293
|
closeDelay?: string | number | undefined;
|
1293
1294
|
openDelay?: string | number | undefined;
|
1294
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1295
1295
|
openOnClick?: boolean | undefined;
|
1296
1296
|
openOnFocus?: boolean | undefined;
|
1297
1297
|
contentProps?: any;
|
@@ -1342,7 +1342,7 @@ declare const VSnackbar: {
|
|
1342
1342
|
globalTop: Readonly<Ref<boolean>>;
|
1343
1343
|
localTop: vue.ComputedRef<boolean>;
|
1344
1344
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
1345
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "
|
1345
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1346
1346
|
_allExposed: {
|
1347
1347
|
activatorEl: Ref<HTMLElement | undefined>;
|
1348
1348
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -1369,6 +1369,7 @@ declare const VSnackbar: {
|
|
1369
1369
|
vertical: boolean;
|
1370
1370
|
modelValue: boolean;
|
1371
1371
|
rounded: string | number | boolean;
|
1372
|
+
tile: boolean;
|
1372
1373
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
1373
1374
|
updateLocation: (e?: Event) => void;
|
1374
1375
|
});
|
@@ -1379,7 +1380,6 @@ declare const VSnackbar: {
|
|
1379
1380
|
closeOnContentClick: boolean;
|
1380
1381
|
closeOnBack: boolean;
|
1381
1382
|
contained: boolean;
|
1382
|
-
tile: boolean;
|
1383
1383
|
multiLine: boolean;
|
1384
1384
|
}>;
|
1385
1385
|
__isFragment?: never;
|
@@ -1400,6 +1400,7 @@ declare const VSnackbar: {
|
|
1400
1400
|
timeout: string | number;
|
1401
1401
|
vertical: boolean;
|
1402
1402
|
modelValue: boolean;
|
1403
|
+
tile: boolean;
|
1403
1404
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
1404
1405
|
updateLocation: (e?: Event) => void;
|
1405
1406
|
});
|
@@ -1408,7 +1409,6 @@ declare const VSnackbar: {
|
|
1408
1409
|
closeOnContentClick: boolean;
|
1409
1410
|
closeOnBack: boolean;
|
1410
1411
|
contained: boolean;
|
1411
|
-
tile: boolean;
|
1412
1412
|
multiLine: boolean;
|
1413
1413
|
} & {
|
1414
1414
|
offset?: string | number | number[] | undefined;
|
@@ -1428,9 +1428,9 @@ declare const VSnackbar: {
|
|
1428
1428
|
timer?: string | boolean | undefined;
|
1429
1429
|
rounded?: string | number | boolean | undefined;
|
1430
1430
|
contentClass?: any;
|
1431
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1431
1432
|
closeDelay?: string | number | undefined;
|
1432
1433
|
openDelay?: string | number | undefined;
|
1433
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1434
1434
|
openOnClick?: boolean | undefined;
|
1435
1435
|
openOnFocus?: boolean | undefined;
|
1436
1436
|
contentProps?: any;
|
@@ -1537,9 +1537,9 @@ declare const VSnackbar: {
|
|
1537
1537
|
class?: any;
|
1538
1538
|
theme?: string | undefined;
|
1539
1539
|
contentClass?: any;
|
1540
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1540
1541
|
closeDelay?: string | number | undefined;
|
1541
1542
|
openDelay?: string | number | undefined;
|
1542
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1543
1543
|
openOnClick?: boolean | undefined;
|
1544
1544
|
openOnFocus?: boolean | undefined;
|
1545
1545
|
contentProps?: any;
|
@@ -1616,9 +1616,9 @@ declare const VSnackbar: {
|
|
1616
1616
|
class?: any;
|
1617
1617
|
theme?: string | undefined;
|
1618
1618
|
contentClass?: any;
|
1619
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1619
1620
|
closeDelay?: string | number | undefined;
|
1620
1621
|
openDelay?: string | number | undefined;
|
1621
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1622
1622
|
openOnClick?: boolean | undefined;
|
1623
1623
|
openOnFocus?: boolean | undefined;
|
1624
1624
|
contentProps?: any;
|
@@ -1679,7 +1679,7 @@ declare const VSnackbar: {
|
|
1679
1679
|
}>;
|
1680
1680
|
$root: vue.ComponentPublicInstance | null;
|
1681
1681
|
$parent: vue.ComponentPublicInstance | null;
|
1682
|
-
$emit: ((event: "
|
1682
|
+
$emit: ((event: "update:modelValue", value: boolean) => void) & ((event: "click:outside", e: MouseEvent) => void) & ((event: "afterEnter") => void) & ((event: "afterLeave") => void);
|
1683
1683
|
$el: any;
|
1684
1684
|
$options: vue.ComponentOptionsBase<{
|
1685
1685
|
absolute: boolean;
|
@@ -1719,9 +1719,9 @@ declare const VSnackbar: {
|
|
1719
1719
|
class?: any;
|
1720
1720
|
theme?: string | undefined;
|
1721
1721
|
contentClass?: any;
|
1722
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1722
1723
|
closeDelay?: string | number | undefined;
|
1723
1724
|
openDelay?: string | number | undefined;
|
1724
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1725
1725
|
openOnClick?: boolean | undefined;
|
1726
1726
|
openOnFocus?: boolean | undefined;
|
1727
1727
|
contentProps?: any;
|
@@ -1871,9 +1871,9 @@ declare const VSnackbar: {
|
|
1871
1871
|
class?: any;
|
1872
1872
|
theme?: string | undefined;
|
1873
1873
|
contentClass?: any;
|
1874
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1874
1875
|
closeDelay?: string | number | undefined;
|
1875
1876
|
openDelay?: string | number | undefined;
|
1876
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
1877
1877
|
openOnClick?: boolean | undefined;
|
1878
1878
|
openOnFocus?: boolean | undefined;
|
1879
1879
|
contentProps?: any;
|
@@ -1924,7 +1924,7 @@ declare const VSnackbar: {
|
|
1924
1924
|
globalTop: Readonly<Ref<boolean>>;
|
1925
1925
|
localTop: vue.ComputedRef<boolean>;
|
1926
1926
|
updateLocation: Ref<((e: Event) => void) | undefined>;
|
1927
|
-
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "
|
1927
|
+
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "theme" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack")>, `$${any}`> & {
|
1928
1928
|
_allExposed: {
|
1929
1929
|
activatorEl: Ref<HTMLElement | undefined>;
|
1930
1930
|
scrimEl: Ref<HTMLElement | undefined>;
|
@@ -1953,6 +1953,7 @@ declare const VSnackbar: {
|
|
1953
1953
|
vertical: boolean;
|
1954
1954
|
modelValue: boolean;
|
1955
1955
|
rounded: string | number | boolean;
|
1956
|
+
tile: boolean;
|
1956
1957
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: Ref<Record<string, string>>) => undefined | {
|
1957
1958
|
updateLocation: (e?: Event) => void;
|
1958
1959
|
});
|
@@ -1963,7 +1964,6 @@ declare const VSnackbar: {
|
|
1963
1964
|
closeOnContentClick: boolean;
|
1964
1965
|
closeOnBack: boolean;
|
1965
1966
|
contained: boolean;
|
1966
|
-
tile: boolean;
|
1967
1967
|
multiLine: boolean;
|
1968
1968
|
}, {}, string, vue.SlotsType<Partial<{
|
1969
1969
|
activator: (arg: {
|
@@ -2022,6 +2022,7 @@ declare const VSnackbar: {
|
|
2022
2022
|
theme: StringConstructor;
|
2023
2023
|
modelValue: BooleanConstructor;
|
2024
2024
|
contentClass: null;
|
2025
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2025
2026
|
locationStrategy: {
|
2026
2027
|
type: vue.PropType<StrategyProps$1["locationStrategy"]>;
|
2027
2028
|
default: string;
|
@@ -2029,7 +2030,6 @@ declare const VSnackbar: {
|
|
2029
2030
|
};
|
2030
2031
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
2031
2032
|
openDelay: (StringConstructor | NumberConstructor)[];
|
2032
|
-
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2033
2033
|
activatorProps: {
|
2034
2034
|
type: vue.PropType<Record<string, any>>;
|
2035
2035
|
default: () => {};
|
@@ -2121,6 +2121,7 @@ declare const VSnackbar: {
|
|
2121
2121
|
theme: StringConstructor;
|
2122
2122
|
modelValue: BooleanConstructor;
|
2123
2123
|
contentClass: null;
|
2124
|
+
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2124
2125
|
locationStrategy: {
|
2125
2126
|
type: vue.PropType<StrategyProps$1["locationStrategy"]>;
|
2126
2127
|
default: string;
|
@@ -2128,7 +2129,6 @@ declare const VSnackbar: {
|
|
2128
2129
|
};
|
2129
2130
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
2130
2131
|
openDelay: (StringConstructor | NumberConstructor)[];
|
2131
|
-
activator: vue.PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2132
2132
|
activatorProps: {
|
2133
2133
|
type: vue.PropType<Record<string, any>>;
|
2134
2134
|
default: () => {};
|
@@ -2206,6 +2206,7 @@ declare const VSnackbarQueue: {
|
|
2206
2206
|
disabled: boolean;
|
2207
2207
|
timeout: string | number;
|
2208
2208
|
vertical: boolean;
|
2209
|
+
tile: boolean;
|
2209
2210
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
2210
2211
|
updateLocation: (e?: Event) => void;
|
2211
2212
|
});
|
@@ -2214,7 +2215,6 @@ declare const VSnackbarQueue: {
|
|
2214
2215
|
closeOnContentClick: boolean;
|
2215
2216
|
closeOnBack: boolean;
|
2216
2217
|
contained: boolean;
|
2217
|
-
tile: boolean;
|
2218
2218
|
closeText: string;
|
2219
2219
|
multiLine: boolean;
|
2220
2220
|
} & {
|
@@ -2235,17 +2235,17 @@ declare const VSnackbarQueue: {
|
|
2235
2235
|
timer?: string | boolean | undefined;
|
2236
2236
|
rounded?: string | number | boolean | undefined;
|
2237
2237
|
contentClass?: any;
|
2238
|
+
closable?: string | boolean | undefined;
|
2239
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2238
2240
|
closeDelay?: string | number | undefined;
|
2239
2241
|
openDelay?: string | number | undefined;
|
2240
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2241
2242
|
openOnClick?: boolean | undefined;
|
2242
2243
|
openOnFocus?: boolean | undefined;
|
2243
2244
|
contentProps?: any;
|
2244
2245
|
attach?: string | boolean | Element | undefined;
|
2245
|
-
closable?: string | boolean | undefined;
|
2246
2246
|
} & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
2247
2247
|
'update:modelValue': (val: (string | SnackbarMessage)[]) => true;
|
2248
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
2248
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:text" | "update:modelValue" | "v-slot:actions">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
2249
2249
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
2250
2250
|
absolute: boolean;
|
2251
2251
|
location: Anchor;
|
@@ -2259,6 +2259,7 @@ declare const VSnackbarQueue: {
|
|
2259
2259
|
disabled: boolean;
|
2260
2260
|
timeout: string | number;
|
2261
2261
|
vertical: boolean;
|
2262
|
+
tile: boolean;
|
2262
2263
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
2263
2264
|
updateLocation: (e?: Event) => void;
|
2264
2265
|
});
|
@@ -2267,7 +2268,6 @@ declare const VSnackbarQueue: {
|
|
2267
2268
|
closeOnContentClick: boolean;
|
2268
2269
|
closeOnBack: boolean;
|
2269
2270
|
contained: boolean;
|
2270
|
-
tile: boolean;
|
2271
2271
|
closeText: string;
|
2272
2272
|
multiLine: boolean;
|
2273
2273
|
} & {
|
@@ -2288,14 +2288,14 @@ declare const VSnackbarQueue: {
|
|
2288
2288
|
timer?: string | boolean | undefined;
|
2289
2289
|
rounded?: string | number | boolean | undefined;
|
2290
2290
|
contentClass?: any;
|
2291
|
+
closable?: string | boolean | undefined;
|
2292
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2291
2293
|
closeDelay?: string | number | undefined;
|
2292
2294
|
openDelay?: string | number | undefined;
|
2293
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2294
2295
|
openOnClick?: boolean | undefined;
|
2295
2296
|
openOnFocus?: boolean | undefined;
|
2296
2297
|
contentProps?: any;
|
2297
2298
|
attach?: string | boolean | Element | undefined;
|
2298
|
-
closable?: string | boolean | undefined;
|
2299
2299
|
} & {}, {
|
2300
2300
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
2301
2301
|
absolute: boolean;
|
@@ -2311,6 +2311,7 @@ declare const VSnackbarQueue: {
|
|
2311
2311
|
timeout: string | number;
|
2312
2312
|
vertical: boolean;
|
2313
2313
|
rounded: string | number | boolean;
|
2314
|
+
tile: boolean;
|
2314
2315
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
2315
2316
|
updateLocation: (e?: Event) => void;
|
2316
2317
|
});
|
@@ -2321,7 +2322,6 @@ declare const VSnackbarQueue: {
|
|
2321
2322
|
closeOnContentClick: boolean;
|
2322
2323
|
closeOnBack: boolean;
|
2323
2324
|
contained: boolean;
|
2324
|
-
tile: boolean;
|
2325
2325
|
closeText: string;
|
2326
2326
|
multiLine: boolean;
|
2327
2327
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -2358,6 +2358,7 @@ declare const VSnackbarQueue: {
|
|
2358
2358
|
disabled: boolean;
|
2359
2359
|
timeout: string | number;
|
2360
2360
|
vertical: boolean;
|
2361
|
+
tile: boolean;
|
2361
2362
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
2362
2363
|
updateLocation: (e?: Event) => void;
|
2363
2364
|
});
|
@@ -2366,7 +2367,6 @@ declare const VSnackbarQueue: {
|
|
2366
2367
|
closeOnContentClick: boolean;
|
2367
2368
|
closeOnBack: boolean;
|
2368
2369
|
contained: boolean;
|
2369
|
-
tile: boolean;
|
2370
2370
|
closeText: string;
|
2371
2371
|
multiLine: boolean;
|
2372
2372
|
} & {
|
@@ -2387,14 +2387,14 @@ declare const VSnackbarQueue: {
|
|
2387
2387
|
timer?: string | boolean | undefined;
|
2388
2388
|
rounded?: string | number | boolean | undefined;
|
2389
2389
|
contentClass?: any;
|
2390
|
+
closable?: string | boolean | undefined;
|
2391
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2390
2392
|
closeDelay?: string | number | undefined;
|
2391
2393
|
openDelay?: string | number | undefined;
|
2392
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2393
2394
|
openOnClick?: boolean | undefined;
|
2394
2395
|
openOnFocus?: boolean | undefined;
|
2395
2396
|
contentProps?: any;
|
2396
2397
|
attach?: string | boolean | Element | undefined;
|
2397
|
-
closable?: string | boolean | undefined;
|
2398
2398
|
} & {}, {}, {}, {}, {}, {
|
2399
2399
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
2400
2400
|
absolute: boolean;
|
@@ -2410,6 +2410,7 @@ declare const VSnackbarQueue: {
|
|
2410
2410
|
timeout: string | number;
|
2411
2411
|
vertical: boolean;
|
2412
2412
|
rounded: string | number | boolean;
|
2413
|
+
tile: boolean;
|
2413
2414
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
2414
2415
|
updateLocation: (e?: Event) => void;
|
2415
2416
|
});
|
@@ -2420,7 +2421,6 @@ declare const VSnackbarQueue: {
|
|
2420
2421
|
closeOnContentClick: boolean;
|
2421
2422
|
closeOnBack: boolean;
|
2422
2423
|
contained: boolean;
|
2423
|
-
tile: boolean;
|
2424
2424
|
closeText: string;
|
2425
2425
|
multiLine: boolean;
|
2426
2426
|
}>;
|
@@ -2441,6 +2441,7 @@ declare const VSnackbarQueue: {
|
|
2441
2441
|
disabled: boolean;
|
2442
2442
|
timeout: string | number;
|
2443
2443
|
vertical: boolean;
|
2444
|
+
tile: boolean;
|
2444
2445
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
2445
2446
|
updateLocation: (e?: Event) => void;
|
2446
2447
|
});
|
@@ -2449,7 +2450,6 @@ declare const VSnackbarQueue: {
|
|
2449
2450
|
closeOnContentClick: boolean;
|
2450
2451
|
closeOnBack: boolean;
|
2451
2452
|
contained: boolean;
|
2452
|
-
tile: boolean;
|
2453
2453
|
closeText: string;
|
2454
2454
|
multiLine: boolean;
|
2455
2455
|
} & {
|
@@ -2470,17 +2470,17 @@ declare const VSnackbarQueue: {
|
|
2470
2470
|
timer?: string | boolean | undefined;
|
2471
2471
|
rounded?: string | number | boolean | undefined;
|
2472
2472
|
contentClass?: any;
|
2473
|
+
closable?: string | boolean | undefined;
|
2474
|
+
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2473
2475
|
closeDelay?: string | number | undefined;
|
2474
2476
|
openDelay?: string | number | undefined;
|
2475
|
-
activator?: Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined;
|
2476
2477
|
openOnClick?: boolean | undefined;
|
2477
2478
|
openOnFocus?: boolean | undefined;
|
2478
2479
|
contentProps?: any;
|
2479
2480
|
attach?: string | boolean | Element | undefined;
|
2480
|
-
closable?: string | boolean | undefined;
|
2481
2481
|
} & {}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
2482
2482
|
'update:modelValue': (val: (string | SnackbarMessage)[]) => true;
|
2483
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
2483
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:text" | "update:modelValue" | "v-slot:actions">, string, {
|
2484
2484
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
2485
2485
|
absolute: boolean;
|
2486
2486
|
location: Anchor;
|
@@ -2495,6 +2495,7 @@ declare const VSnackbarQueue: {
|
|
2495
2495
|
timeout: string | number;
|
2496
2496
|
vertical: boolean;
|
2497
2497
|
rounded: string | number | boolean;
|
2498
|
+
tile: boolean;
|
2498
2499
|
locationStrategy: "connected" | "static" | ((data: LocationStrategyData, props: StrategyProps$1, contentStyles: vue.Ref<Record<string, string>>) => undefined | {
|
2499
2500
|
updateLocation: (e?: Event) => void;
|
2500
2501
|
});
|
@@ -2505,7 +2506,6 @@ declare const VSnackbarQueue: {
|
|
2505
2506
|
closeOnContentClick: boolean;
|
2506
2507
|
closeOnBack: boolean;
|
2507
2508
|
contained: boolean;
|
2508
|
-
tile: boolean;
|
2509
2509
|
closeText: string;
|
2510
2510
|
multiLine: boolean;
|
2511
2511
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -2591,6 +2591,8 @@ declare const VSnackbarQueue: {
|
|
2591
2591
|
default: undefined;
|
2592
2592
|
};
|
2593
2593
|
contentClass: null;
|
2594
|
+
tile: BooleanConstructor;
|
2595
|
+
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2594
2596
|
locationStrategy: {
|
2595
2597
|
type: PropType<StrategyProps$1["locationStrategy"]>;
|
2596
2598
|
default: string;
|
@@ -2598,7 +2600,6 @@ declare const VSnackbarQueue: {
|
|
2598
2600
|
};
|
2599
2601
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
2600
2602
|
openDelay: (StringConstructor | NumberConstructor)[];
|
2601
|
-
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2602
2603
|
activatorProps: {
|
2603
2604
|
type: PropType<Record<string, any>>;
|
2604
2605
|
default: () => {};
|
@@ -2620,7 +2621,6 @@ declare const VSnackbarQueue: {
|
|
2620
2621
|
contained: BooleanConstructor;
|
2621
2622
|
contentProps: null;
|
2622
2623
|
attach: PropType<boolean | string | Element>;
|
2623
|
-
tile: BooleanConstructor;
|
2624
2624
|
multiLine: BooleanConstructor;
|
2625
2625
|
closable: (StringConstructor | BooleanConstructor)[];
|
2626
2626
|
closeText: {
|
@@ -2698,6 +2698,8 @@ declare const VSnackbarQueue: {
|
|
2698
2698
|
default: undefined;
|
2699
2699
|
};
|
2700
2700
|
contentClass: null;
|
2701
|
+
tile: BooleanConstructor;
|
2702
|
+
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2701
2703
|
locationStrategy: {
|
2702
2704
|
type: PropType<StrategyProps$1["locationStrategy"]>;
|
2703
2705
|
default: string;
|
@@ -2705,7 +2707,6 @@ declare const VSnackbarQueue: {
|
|
2705
2707
|
};
|
2706
2708
|
closeDelay: (StringConstructor | NumberConstructor)[];
|
2707
2709
|
openDelay: (StringConstructor | NumberConstructor)[];
|
2708
|
-
activator: PropType<Element | "parent" | (string & {}) | vue.ComponentPublicInstance | undefined>;
|
2709
2710
|
activatorProps: {
|
2710
2711
|
type: PropType<Record<string, any>>;
|
2711
2712
|
default: () => {};
|
@@ -2727,7 +2728,6 @@ declare const VSnackbarQueue: {
|
|
2727
2728
|
contained: BooleanConstructor;
|
2728
2729
|
contentProps: null;
|
2729
2730
|
attach: PropType<boolean | string | Element>;
|
2730
|
-
tile: BooleanConstructor;
|
2731
2731
|
multiLine: BooleanConstructor;
|
2732
2732
|
closable: (StringConstructor | BooleanConstructor)[];
|
2733
2733
|
closeText: {
|