@vuetify/nightly 3.6.3-master.2024-05-02 → 3.6.3-master.2024-05-03

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/dist/json/attributes.json +17 -17
  3. package/dist/json/importMap-labs.json +28 -28
  4. package/dist/json/importMap.json +116 -116
  5. package/dist/json/web-types.json +28 -28
  6. package/dist/vuetify-labs.css +1377 -1363
  7. package/dist/vuetify-labs.d.ts +129 -123
  8. package/dist/vuetify-labs.esm.js +7 -5
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +7 -5
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +765 -751
  13. package/dist/vuetify.d.ts +171 -165
  14. package/dist/vuetify.esm.js +7 -5
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +7 -5
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +5 -5
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAlert/VAlert.css +3 -1
  22. package/lib/components/VAvatar/VAvatar.css +3 -1
  23. package/lib/components/VBanner/index.d.mts +11 -11
  24. package/lib/components/VBtn/VBtn.css +3 -1
  25. package/lib/components/VCard/VCard.css +3 -1
  26. package/lib/components/VChip/VChip.css +3 -1
  27. package/lib/components/VChipGroup/index.d.mts +11 -11
  28. package/lib/components/VDataTable/index.d.mts +66 -66
  29. package/lib/components/VList/VListItem.css +3 -1
  30. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +3 -1
  31. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  32. package/lib/components/VNavigationDrawer/index.d.mts +19 -13
  33. package/lib/components/VSlideGroup/index.d.mts +11 -11
  34. package/lib/components/VSnackbar/VSnackbar.css +3 -1
  35. package/lib/components/VTabs/index.d.mts +11 -11
  36. package/lib/components/index.d.mts +129 -123
  37. package/lib/composables/display.mjs +1 -1
  38. package/lib/composables/display.mjs.map +1 -1
  39. package/lib/entry-bundler.mjs +1 -1
  40. package/lib/framework.mjs +1 -1
  41. package/lib/index.d.mts +42 -42
  42. package/lib/styles/tools/_variant.sass +3 -1
  43. package/package.json +1 -1
@@ -17,7 +17,7 @@ declare const VNavigationDrawer: {
17
17
  style: vue.StyleValue;
18
18
  width: string | number;
19
19
  tag: string;
20
- mobile: boolean;
20
+ mobile: NonNullable<boolean | null> | null;
21
21
  order: string | number;
22
22
  absolute: boolean;
23
23
  sticky: boolean;
@@ -77,7 +77,7 @@ declare const VNavigationDrawer: {
77
77
  style: vue.StyleValue;
78
78
  width: string | number;
79
79
  tag: string;
80
- mobile: boolean;
80
+ mobile: NonNullable<boolean | null> | null;
81
81
  order: string | number;
82
82
  absolute: boolean;
83
83
  sticky: boolean;
@@ -132,7 +132,7 @@ declare const VNavigationDrawer: {
132
132
  style: vue.StyleValue;
133
133
  width: string | number;
134
134
  tag: string;
135
- mobile: boolean;
135
+ mobile: NonNullable<boolean | null> | null;
136
136
  order: string | number;
137
137
  absolute: boolean;
138
138
  sticky: boolean;
@@ -175,7 +175,7 @@ declare const VNavigationDrawer: {
175
175
  style: vue.StyleValue;
176
176
  width: string | number;
177
177
  tag: string;
178
- mobile: boolean;
178
+ mobile: NonNullable<boolean | null> | null;
179
179
  order: string | number;
180
180
  absolute: boolean;
181
181
  sticky: boolean;
@@ -232,7 +232,7 @@ declare const VNavigationDrawer: {
232
232
  style: vue.StyleValue;
233
233
  width: string | number;
234
234
  tag: string;
235
- mobile: boolean;
235
+ mobile: NonNullable<boolean | null> | null;
236
236
  order: string | number;
237
237
  absolute: boolean;
238
238
  sticky: boolean;
@@ -259,7 +259,7 @@ declare const VNavigationDrawer: {
259
259
  style: vue.StyleValue;
260
260
  width: string | number;
261
261
  tag: string;
262
- mobile: boolean;
262
+ mobile: NonNullable<boolean | null> | null;
263
263
  order: string | number;
264
264
  absolute: boolean;
265
265
  sticky: boolean;
@@ -319,7 +319,7 @@ declare const VNavigationDrawer: {
319
319
  style: vue.StyleValue;
320
320
  width: string | number;
321
321
  tag: string;
322
- mobile: boolean;
322
+ mobile: NonNullable<boolean | null> | null;
323
323
  order: string | number;
324
324
  absolute: boolean;
325
325
  sticky: boolean;
@@ -377,9 +377,12 @@ declare const VNavigationDrawer: {
377
377
  type: (StringConstructor | NumberConstructor)[];
378
378
  validator(v: any): boolean;
379
379
  };
380
- mobile: {
381
- type: BooleanConstructor;
382
- default: null;
380
+ mobile: Omit<{
381
+ type: PropType<boolean | null>;
382
+ default: boolean;
383
+ }, "default" | "type"> & {
384
+ type: PropType<NonNullable<boolean | null> | null>;
385
+ default: NonNullable<boolean | null> | null;
383
386
  };
384
387
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
385
388
  closeDelay: (StringConstructor | NumberConstructor)[];
@@ -452,9 +455,12 @@ declare const VNavigationDrawer: {
452
455
  type: (StringConstructor | NumberConstructor)[];
453
456
  validator(v: any): boolean;
454
457
  };
455
- mobile: {
456
- type: BooleanConstructor;
457
- default: null;
458
+ mobile: Omit<{
459
+ type: PropType<boolean | null>;
460
+ default: boolean;
461
+ }, "default" | "type"> & {
462
+ type: PropType<NonNullable<boolean | null> | null>;
463
+ default: NonNullable<boolean | null> | null;
458
464
  };
459
465
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
460
466
  closeDelay: (StringConstructor | NumberConstructor)[];
@@ -88,7 +88,7 @@ declare const VSlideGroup: {
88
88
  style: vue.StyleValue;
89
89
  disabled: boolean;
90
90
  tag: string;
91
- mobile: boolean;
91
+ mobile: boolean | null;
92
92
  multiple: boolean;
93
93
  direction: "horizontal" | "vertical";
94
94
  selectedClass: string;
@@ -113,7 +113,7 @@ declare const VSlideGroup: {
113
113
  style: vue.StyleValue;
114
114
  disabled: boolean;
115
115
  tag: string;
116
- mobile: boolean;
116
+ mobile: boolean | null;
117
117
  multiple: boolean;
118
118
  direction: "horizontal" | "vertical";
119
119
  selectedClass: string;
@@ -131,7 +131,7 @@ declare const VSlideGroup: {
131
131
  style: vue.StyleValue;
132
132
  disabled: boolean;
133
133
  tag: string;
134
- mobile: boolean;
134
+ mobile: boolean | null;
135
135
  multiple: boolean;
136
136
  direction: "horizontal" | "vertical";
137
137
  selectedClass: string;
@@ -160,7 +160,7 @@ declare const VSlideGroup: {
160
160
  style: vue.StyleValue;
161
161
  disabled: boolean;
162
162
  tag: string;
163
- mobile: boolean;
163
+ mobile: boolean | null;
164
164
  multiple: boolean;
165
165
  direction: "horizontal" | "vertical";
166
166
  selectedClass: string;
@@ -183,7 +183,7 @@ declare const VSlideGroup: {
183
183
  style: vue.StyleValue;
184
184
  disabled: boolean;
185
185
  tag: string;
186
- mobile: boolean;
186
+ mobile: boolean | null;
187
187
  multiple: boolean;
188
188
  direction: "horizontal" | "vertical";
189
189
  selectedClass: string;
@@ -199,7 +199,7 @@ declare const VSlideGroup: {
199
199
  style: vue.StyleValue;
200
200
  disabled: boolean;
201
201
  tag: string;
202
- mobile: boolean;
202
+ mobile: boolean | null;
203
203
  multiple: boolean;
204
204
  direction: "horizontal" | "vertical";
205
205
  selectedClass: string;
@@ -224,7 +224,7 @@ declare const VSlideGroup: {
224
224
  style: vue.StyleValue;
225
225
  disabled: boolean;
226
226
  tag: string;
227
- mobile: boolean;
227
+ mobile: boolean | null;
228
228
  multiple: boolean;
229
229
  direction: "horizontal" | "vertical";
230
230
  selectedClass: string;
@@ -265,8 +265,8 @@ declare const VSlideGroup: {
265
265
  default: string;
266
266
  };
267
267
  mobile: {
268
- type: BooleanConstructor;
269
- default: null;
268
+ type: PropType<boolean | null>;
269
+ default: boolean;
270
270
  };
271
271
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
272
272
  class: PropType<any>;
@@ -313,8 +313,8 @@ declare const VSlideGroup: {
313
313
  default: string;
314
314
  };
315
315
  mobile: {
316
- type: BooleanConstructor;
317
- default: null;
316
+ type: PropType<boolean | null>;
317
+ default: boolean;
318
318
  };
319
319
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
320
320
  class: PropType<any>;
@@ -51,13 +51,15 @@
51
51
  background: currentColor;
52
52
  opacity: var(--v-activated-opacity);
53
53
  border-radius: inherit;
54
- position: absolute;
55
54
  top: 0;
56
55
  right: 0;
57
56
  bottom: 0;
58
57
  left: 0;
59
58
  pointer-events: none;
60
59
  }
60
+ .v-snackbar .v-snackbar__underlay {
61
+ position: absolute;
62
+ }
61
63
 
62
64
  .v-snackbar__content {
63
65
  flex-grow: 1;
@@ -1711,7 +1711,7 @@ declare const VTabs: {
1711
1711
  style: vue.StyleValue;
1712
1712
  disabled: boolean;
1713
1713
  tag: string;
1714
- mobile: boolean;
1714
+ mobile: boolean | null;
1715
1715
  items: readonly TabItem[];
1716
1716
  mandatory: NonNullable<boolean | "force">;
1717
1717
  multiple: boolean;
@@ -1769,7 +1769,7 @@ declare const VTabs: {
1769
1769
  style: vue.StyleValue;
1770
1770
  disabled: boolean;
1771
1771
  tag: string;
1772
- mobile: boolean;
1772
+ mobile: boolean | null;
1773
1773
  items: readonly TabItem[];
1774
1774
  mandatory: NonNullable<boolean | "force">;
1775
1775
  multiple: boolean;
@@ -1826,7 +1826,7 @@ declare const VTabs: {
1826
1826
  height: string | number;
1827
1827
  disabled: boolean;
1828
1828
  tag: string;
1829
- mobile: boolean;
1829
+ mobile: boolean | null;
1830
1830
  modelValue: any;
1831
1831
  items: readonly TabItem[];
1832
1832
  mandatory: NonNullable<boolean | "force">;
@@ -1873,7 +1873,7 @@ declare const VTabs: {
1873
1873
  style: vue.StyleValue;
1874
1874
  disabled: boolean;
1875
1875
  tag: string;
1876
- mobile: boolean;
1876
+ mobile: boolean | null;
1877
1877
  items: readonly TabItem[];
1878
1878
  mandatory: NonNullable<boolean | "force">;
1879
1879
  multiple: boolean;
@@ -1930,7 +1930,7 @@ declare const VTabs: {
1930
1930
  height: string | number;
1931
1931
  disabled: boolean;
1932
1932
  tag: string;
1933
- mobile: boolean;
1933
+ mobile: boolean | null;
1934
1934
  modelValue: any;
1935
1935
  items: readonly TabItem[];
1936
1936
  mandatory: NonNullable<boolean | "force">;
@@ -1955,7 +1955,7 @@ declare const VTabs: {
1955
1955
  style: vue.StyleValue;
1956
1956
  disabled: boolean;
1957
1957
  tag: string;
1958
- mobile: boolean;
1958
+ mobile: boolean | null;
1959
1959
  items: readonly TabItem[];
1960
1960
  mandatory: NonNullable<boolean | "force">;
1961
1961
  multiple: boolean;
@@ -2014,7 +2014,7 @@ declare const VTabs: {
2014
2014
  height: string | number;
2015
2015
  disabled: boolean;
2016
2016
  tag: string;
2017
- mobile: boolean;
2017
+ mobile: boolean | null;
2018
2018
  modelValue: any;
2019
2019
  items: readonly TabItem[];
2020
2020
  mandatory: NonNullable<boolean | "force">;
@@ -2078,8 +2078,8 @@ declare const VTabs: {
2078
2078
  };
2079
2079
  disabled: BooleanConstructor;
2080
2080
  mobile: {
2081
- type: BooleanConstructor;
2082
- default: null;
2081
+ type: PropType<boolean | null>;
2082
+ default: boolean;
2083
2083
  };
2084
2084
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
2085
2085
  class: PropType<any>;
@@ -2156,8 +2156,8 @@ declare const VTabs: {
2156
2156
  };
2157
2157
  disabled: BooleanConstructor;
2158
2158
  mobile: {
2159
- type: BooleanConstructor;
2160
- default: null;
2159
+ type: PropType<boolean | null>;
2160
+ default: boolean;
2161
2161
  };
2162
2162
  mobileBreakpoint: PropType<number | DisplayBreakpoint>;
2163
2163
  class: PropType<any>;