@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.
- package/CHANGELOG.md +8 -2
- package/dist/json/attributes.json +17 -17
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +116 -116
- package/dist/json/web-types.json +28 -28
- package/dist/vuetify-labs.css +1377 -1363
- package/dist/vuetify-labs.d.ts +129 -123
- 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 +765 -751
- package/dist/vuetify.d.ts +171 -165
- 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 +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +3 -1
- package/lib/components/VAvatar/VAvatar.css +3 -1
- package/lib/components/VBanner/index.d.mts +11 -11
- package/lib/components/VBtn/VBtn.css +3 -1
- package/lib/components/VCard/VCard.css +3 -1
- package/lib/components/VChip/VChip.css +3 -1
- package/lib/components/VChipGroup/index.d.mts +11 -11
- package/lib/components/VDataTable/index.d.mts +66 -66
- package/lib/components/VList/VListItem.css +3 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +3 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/index.d.mts +19 -13
- package/lib/components/VSlideGroup/index.d.mts +11 -11
- package/lib/components/VSnackbar/VSnackbar.css +3 -1
- package/lib/components/VTabs/index.d.mts +11 -11
- package/lib/components/index.d.mts +129 -123
- package/lib/composables/display.mjs +1 -1
- package/lib/composables/display.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -42
- package/lib/styles/tools/_variant.sass +3 -1
- package/package.json +1 -1
@@ -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-alert .v-alert__underlay {
|
61
|
+
position: absolute;
|
62
|
+
}
|
61
63
|
.v-alert--prominent {
|
62
64
|
grid-template-areas: "prepend content append close" "prepend content . .";
|
63
65
|
}
|
@@ -72,13 +72,15 @@
|
|
72
72
|
background: currentColor;
|
73
73
|
opacity: var(--v-activated-opacity);
|
74
74
|
border-radius: inherit;
|
75
|
-
position: absolute;
|
76
75
|
top: 0;
|
77
76
|
right: 0;
|
78
77
|
bottom: 0;
|
79
78
|
left: 0;
|
80
79
|
pointer-events: none;
|
81
80
|
}
|
81
|
+
.v-avatar .v-avatar__underlay {
|
82
|
+
position: absolute;
|
83
|
+
}
|
82
84
|
.v-avatar--rounded {
|
83
85
|
border-radius: 4px;
|
84
86
|
}
|
@@ -24,7 +24,7 @@ declare const VBanner: {
|
|
24
24
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
25
25
|
style: vue.StyleValue;
|
26
26
|
tag: string;
|
27
|
-
mobile: boolean;
|
27
|
+
mobile: boolean | null;
|
28
28
|
sticky: boolean;
|
29
29
|
tile: boolean;
|
30
30
|
density: Density;
|
@@ -71,7 +71,7 @@ declare const VBanner: {
|
|
71
71
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
72
72
|
style: vue.StyleValue;
|
73
73
|
tag: string;
|
74
|
-
mobile: boolean;
|
74
|
+
mobile: boolean | null;
|
75
75
|
sticky: boolean;
|
76
76
|
tile: boolean;
|
77
77
|
density: Density;
|
@@ -118,7 +118,7 @@ declare const VBanner: {
|
|
118
118
|
}, {
|
119
119
|
style: vue.StyleValue;
|
120
120
|
tag: string;
|
121
|
-
mobile: boolean;
|
121
|
+
mobile: boolean | null;
|
122
122
|
sticky: boolean;
|
123
123
|
rounded: string | number | boolean;
|
124
124
|
tile: boolean;
|
@@ -147,7 +147,7 @@ declare const VBanner: {
|
|
147
147
|
}, {
|
148
148
|
style: vue.StyleValue;
|
149
149
|
tag: string;
|
150
|
-
mobile: boolean;
|
150
|
+
mobile: boolean | null;
|
151
151
|
sticky: boolean;
|
152
152
|
tile: boolean;
|
153
153
|
density: Density;
|
@@ -194,7 +194,7 @@ declare const VBanner: {
|
|
194
194
|
}, {}, {}, {}, {}, {
|
195
195
|
style: vue.StyleValue;
|
196
196
|
tag: string;
|
197
|
-
mobile: boolean;
|
197
|
+
mobile: boolean | null;
|
198
198
|
sticky: boolean;
|
199
199
|
rounded: string | number | boolean;
|
200
200
|
tile: boolean;
|
@@ -207,7 +207,7 @@ declare const VBanner: {
|
|
207
207
|
} & vue.ComponentOptionsBase<{
|
208
208
|
style: vue.StyleValue;
|
209
209
|
tag: string;
|
210
|
-
mobile: boolean;
|
210
|
+
mobile: boolean | null;
|
211
211
|
sticky: boolean;
|
212
212
|
tile: boolean;
|
213
213
|
density: Density;
|
@@ -254,7 +254,7 @@ declare const VBanner: {
|
|
254
254
|
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
255
255
|
style: vue.StyleValue;
|
256
256
|
tag: string;
|
257
|
-
mobile: boolean;
|
257
|
+
mobile: boolean | null;
|
258
258
|
sticky: boolean;
|
259
259
|
rounded: string | number | boolean;
|
260
260
|
tile: boolean;
|
@@ -294,8 +294,8 @@ declare const VBanner: {
|
|
294
294
|
validator(v: any): boolean;
|
295
295
|
};
|
296
296
|
mobile: {
|
297
|
-
type:
|
298
|
-
default:
|
297
|
+
type: PropType<boolean | null>;
|
298
|
+
default: boolean;
|
299
299
|
};
|
300
300
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
301
301
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -344,8 +344,8 @@ declare const VBanner: {
|
|
344
344
|
validator(v: any): boolean;
|
345
345
|
};
|
346
346
|
mobile: {
|
347
|
-
type:
|
348
|
-
default:
|
347
|
+
type: PropType<boolean | null>;
|
348
|
+
default: boolean;
|
349
349
|
};
|
350
350
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
351
351
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -144,13 +144,15 @@
|
|
144
144
|
background: currentColor;
|
145
145
|
opacity: var(--v-activated-opacity);
|
146
146
|
border-radius: inherit;
|
147
|
-
position: absolute;
|
148
147
|
top: 0;
|
149
148
|
right: 0;
|
150
149
|
bottom: 0;
|
151
150
|
left: 0;
|
152
151
|
pointer-events: none;
|
153
152
|
}
|
153
|
+
.v-btn .v-btn__underlay {
|
154
|
+
position: absolute;
|
155
|
+
}
|
154
156
|
@supports selector(:focus-visible) {
|
155
157
|
.v-btn::after {
|
156
158
|
content: "";
|
@@ -82,13 +82,15 @@
|
|
82
82
|
background: currentColor;
|
83
83
|
opacity: var(--v-activated-opacity);
|
84
84
|
border-radius: inherit;
|
85
|
-
position: absolute;
|
86
85
|
top: 0;
|
87
86
|
right: 0;
|
88
87
|
bottom: 0;
|
89
88
|
left: 0;
|
90
89
|
pointer-events: none;
|
91
90
|
}
|
91
|
+
.v-card .v-card__underlay {
|
92
|
+
position: absolute;
|
93
|
+
}
|
92
94
|
.v-card--disabled {
|
93
95
|
pointer-events: none;
|
94
96
|
user-select: none;
|
@@ -332,13 +332,15 @@
|
|
332
332
|
background: currentColor;
|
333
333
|
opacity: var(--v-activated-opacity);
|
334
334
|
border-radius: inherit;
|
335
|
-
position: absolute;
|
336
335
|
top: 0;
|
337
336
|
right: 0;
|
338
337
|
bottom: 0;
|
339
338
|
left: 0;
|
340
339
|
pointer-events: none;
|
341
340
|
}
|
341
|
+
.v-chip .v-chip__underlay {
|
342
|
+
position: absolute;
|
343
|
+
}
|
342
344
|
.v-chip--border {
|
343
345
|
border-width: thin;
|
344
346
|
}
|
@@ -79,7 +79,7 @@ declare const VChipGroup: {
|
|
79
79
|
style: vue.StyleValue;
|
80
80
|
disabled: boolean;
|
81
81
|
tag: string;
|
82
|
-
mobile: boolean;
|
82
|
+
mobile: boolean | null;
|
83
83
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
84
84
|
column: boolean;
|
85
85
|
multiple: boolean;
|
@@ -105,7 +105,7 @@ declare const VChipGroup: {
|
|
105
105
|
style: vue.StyleValue;
|
106
106
|
disabled: boolean;
|
107
107
|
tag: string;
|
108
|
-
mobile: boolean;
|
108
|
+
mobile: boolean | null;
|
109
109
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
110
110
|
column: boolean;
|
111
111
|
multiple: boolean;
|
@@ -129,7 +129,7 @@ declare const VChipGroup: {
|
|
129
129
|
style: vue.StyleValue;
|
130
130
|
disabled: boolean;
|
131
131
|
tag: string;
|
132
|
-
mobile: boolean;
|
132
|
+
mobile: boolean | null;
|
133
133
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
134
134
|
column: boolean;
|
135
135
|
multiple: boolean;
|
@@ -162,7 +162,7 @@ declare const VChipGroup: {
|
|
162
162
|
style: vue.StyleValue;
|
163
163
|
disabled: boolean;
|
164
164
|
tag: string;
|
165
|
-
mobile: boolean;
|
165
|
+
mobile: boolean | null;
|
166
166
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
167
167
|
column: boolean;
|
168
168
|
multiple: boolean;
|
@@ -186,7 +186,7 @@ declare const VChipGroup: {
|
|
186
186
|
style: vue.StyleValue;
|
187
187
|
disabled: boolean;
|
188
188
|
tag: string;
|
189
|
-
mobile: boolean;
|
189
|
+
mobile: boolean | null;
|
190
190
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
191
191
|
column: boolean;
|
192
192
|
multiple: boolean;
|
@@ -206,7 +206,7 @@ declare const VChipGroup: {
|
|
206
206
|
style: vue.StyleValue;
|
207
207
|
disabled: boolean;
|
208
208
|
tag: string;
|
209
|
-
mobile: boolean;
|
209
|
+
mobile: boolean | null;
|
210
210
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
211
211
|
column: boolean;
|
212
212
|
multiple: boolean;
|
@@ -232,7 +232,7 @@ declare const VChipGroup: {
|
|
232
232
|
style: vue.StyleValue;
|
233
233
|
disabled: boolean;
|
234
234
|
tag: string;
|
235
|
-
mobile: boolean;
|
235
|
+
mobile: boolean | null;
|
236
236
|
variant: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
237
237
|
column: boolean;
|
238
238
|
multiple: boolean;
|
@@ -291,8 +291,8 @@ declare const VChipGroup: {
|
|
291
291
|
default: null;
|
292
292
|
};
|
293
293
|
mobile: {
|
294
|
-
type:
|
295
|
-
default:
|
294
|
+
type: PropType<boolean | null>;
|
295
|
+
default: boolean;
|
296
296
|
};
|
297
297
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
298
298
|
centerActive: BooleanConstructor;
|
@@ -355,8 +355,8 @@ declare const VChipGroup: {
|
|
355
355
|
default: null;
|
356
356
|
};
|
357
357
|
mobile: {
|
358
|
-
type:
|
359
|
-
default:
|
358
|
+
type: PropType<boolean | null>;
|
359
|
+
default: boolean;
|
360
360
|
};
|
361
361
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
362
362
|
centerActive: BooleanConstructor;
|