@vuetify/nightly 3.5.9-dev.2024-03-26 → 3.5.9-dev.2024-03-30
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 +5 -2
- package/dist/json/attributes.json +43 -7
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +110 -110
- package/dist/json/tags.json +9 -0
- package/dist/json/web-types.json +101 -14
- package/dist/vuetify-labs.css +2027 -2025
- package/dist/vuetify-labs.d.ts +130 -19
- package/dist/vuetify-labs.esm.js +162 -138
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +162 -138
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +336 -334
- package/dist/vuetify.d.ts +163 -52
- package/dist/vuetify.esm.js +162 -138
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +162 -138
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +189 -189
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs +1 -1
- package/lib/components/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +64 -42
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +60 -0
- package/lib/components/VTimeline/VTimeline.mjs +12 -6
- package/lib/components/VTimeline/VTimeline.mjs.map +1 -1
- package/lib/components/VTimeline/index.d.mts +70 -19
- package/lib/components/index.d.mts +130 -19
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +33 -33
- package/lib/labs/VPicker/VPicker.css +2 -0
- package/lib/labs/VPicker/VPicker.sass +2 -0
- package/lib/styles/generic/_transitions.scss +4 -4
- package/lib/styles/main.css +4 -4
- package/package.json +1 -1
|
@@ -14,10 +14,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
|
|
|
14
14
|
declare const VTimeline: {
|
|
15
15
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
16
16
|
style: vue.StyleValue;
|
|
17
|
+
size: string | number;
|
|
17
18
|
tag: string;
|
|
18
19
|
justify: string;
|
|
19
20
|
density: Density;
|
|
20
|
-
|
|
21
|
+
fillDot: boolean;
|
|
22
|
+
lineInset: NonNullable<string | number>;
|
|
21
23
|
lineThickness: string | number;
|
|
22
24
|
} & {
|
|
23
25
|
direction?: TimelineDirection | undefined;
|
|
@@ -25,7 +27,10 @@ declare const VTimeline: {
|
|
|
25
27
|
align?: TimelineAlign | undefined;
|
|
26
28
|
side?: TimelineSide;
|
|
27
29
|
theme?: string | undefined;
|
|
30
|
+
dotColor?: string | undefined;
|
|
31
|
+
iconColor?: string | undefined;
|
|
28
32
|
lineColor?: string | undefined;
|
|
33
|
+
hideOpposite?: boolean | undefined;
|
|
29
34
|
truncateLine?: TimelineTruncateLine;
|
|
30
35
|
} & {
|
|
31
36
|
$children?: vue.VNodeChild | {
|
|
@@ -38,10 +43,12 @@ declare const VTimeline: {
|
|
|
38
43
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
39
44
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
40
45
|
style: vue.StyleValue;
|
|
46
|
+
size: string | number;
|
|
41
47
|
tag: string;
|
|
42
48
|
justify: string;
|
|
43
49
|
density: Density;
|
|
44
|
-
|
|
50
|
+
fillDot: boolean;
|
|
51
|
+
lineInset: NonNullable<string | number>;
|
|
45
52
|
lineThickness: string | number;
|
|
46
53
|
} & {
|
|
47
54
|
direction?: TimelineDirection | undefined;
|
|
@@ -49,7 +56,10 @@ declare const VTimeline: {
|
|
|
49
56
|
align?: TimelineAlign | undefined;
|
|
50
57
|
side?: TimelineSide;
|
|
51
58
|
theme?: string | undefined;
|
|
59
|
+
dotColor?: string | undefined;
|
|
60
|
+
iconColor?: string | undefined;
|
|
52
61
|
lineColor?: string | undefined;
|
|
62
|
+
hideOpposite?: boolean | undefined;
|
|
53
63
|
truncateLine?: TimelineTruncateLine;
|
|
54
64
|
} & {
|
|
55
65
|
$children?: vue.VNodeChild | {
|
|
@@ -62,10 +72,13 @@ declare const VTimeline: {
|
|
|
62
72
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63
73
|
}, {
|
|
64
74
|
style: vue.StyleValue;
|
|
75
|
+
size: string | number;
|
|
65
76
|
tag: string;
|
|
66
77
|
justify: string;
|
|
67
78
|
density: Density;
|
|
68
|
-
|
|
79
|
+
fillDot: boolean;
|
|
80
|
+
hideOpposite: boolean;
|
|
81
|
+
lineInset: NonNullable<string | number>;
|
|
69
82
|
lineThickness: string | number;
|
|
70
83
|
}, true, {}, vue.SlotsType<Partial<{
|
|
71
84
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -80,10 +93,12 @@ declare const VTimeline: {
|
|
|
80
93
|
Defaults: {};
|
|
81
94
|
}, {
|
|
82
95
|
style: vue.StyleValue;
|
|
96
|
+
size: string | number;
|
|
83
97
|
tag: string;
|
|
84
98
|
justify: string;
|
|
85
99
|
density: Density;
|
|
86
|
-
|
|
100
|
+
fillDot: boolean;
|
|
101
|
+
lineInset: NonNullable<string | number>;
|
|
87
102
|
lineThickness: string | number;
|
|
88
103
|
} & {
|
|
89
104
|
direction?: TimelineDirection | undefined;
|
|
@@ -91,7 +106,10 @@ declare const VTimeline: {
|
|
|
91
106
|
align?: TimelineAlign | undefined;
|
|
92
107
|
side?: TimelineSide;
|
|
93
108
|
theme?: string | undefined;
|
|
109
|
+
dotColor?: string | undefined;
|
|
110
|
+
iconColor?: string | undefined;
|
|
94
111
|
lineColor?: string | undefined;
|
|
112
|
+
hideOpposite?: boolean | undefined;
|
|
95
113
|
truncateLine?: TimelineTruncateLine;
|
|
96
114
|
} & {
|
|
97
115
|
$children?: vue.VNodeChild | {
|
|
@@ -104,10 +122,13 @@ declare const VTimeline: {
|
|
|
104
122
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
105
123
|
}, {}, {}, {}, {}, {
|
|
106
124
|
style: vue.StyleValue;
|
|
125
|
+
size: string | number;
|
|
107
126
|
tag: string;
|
|
108
127
|
justify: string;
|
|
109
128
|
density: Density;
|
|
110
|
-
|
|
129
|
+
fillDot: boolean;
|
|
130
|
+
hideOpposite: boolean;
|
|
131
|
+
lineInset: NonNullable<string | number>;
|
|
111
132
|
lineThickness: string | number;
|
|
112
133
|
}>;
|
|
113
134
|
__isFragment?: undefined;
|
|
@@ -115,10 +136,12 @@ declare const VTimeline: {
|
|
|
115
136
|
__isSuspense?: undefined;
|
|
116
137
|
} & vue.ComponentOptionsBase<{
|
|
117
138
|
style: vue.StyleValue;
|
|
139
|
+
size: string | number;
|
|
118
140
|
tag: string;
|
|
119
141
|
justify: string;
|
|
120
142
|
density: Density;
|
|
121
|
-
|
|
143
|
+
fillDot: boolean;
|
|
144
|
+
lineInset: NonNullable<string | number>;
|
|
122
145
|
lineThickness: string | number;
|
|
123
146
|
} & {
|
|
124
147
|
direction?: TimelineDirection | undefined;
|
|
@@ -126,7 +149,10 @@ declare const VTimeline: {
|
|
|
126
149
|
align?: TimelineAlign | undefined;
|
|
127
150
|
side?: TimelineSide;
|
|
128
151
|
theme?: string | undefined;
|
|
152
|
+
dotColor?: string | undefined;
|
|
153
|
+
iconColor?: string | undefined;
|
|
129
154
|
lineColor?: string | undefined;
|
|
155
|
+
hideOpposite?: boolean | undefined;
|
|
130
156
|
truncateLine?: TimelineTruncateLine;
|
|
131
157
|
} & {
|
|
132
158
|
$children?: vue.VNodeChild | {
|
|
@@ -139,10 +165,13 @@ declare const VTimeline: {
|
|
|
139
165
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
140
166
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
141
167
|
style: vue.StyleValue;
|
|
168
|
+
size: string | number;
|
|
142
169
|
tag: string;
|
|
143
170
|
justify: string;
|
|
144
171
|
density: Density;
|
|
145
|
-
|
|
172
|
+
fillDot: boolean;
|
|
173
|
+
hideOpposite: boolean;
|
|
174
|
+
lineInset: NonNullable<string | number>;
|
|
146
175
|
lineThickness: string | number;
|
|
147
176
|
}, {}, string, vue.SlotsType<Partial<{
|
|
148
177
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -164,6 +193,21 @@ declare const VTimeline: {
|
|
|
164
193
|
type: vue.PropType<vue.StyleValue>;
|
|
165
194
|
default: null;
|
|
166
195
|
};
|
|
196
|
+
size: {
|
|
197
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
198
|
+
default: string;
|
|
199
|
+
};
|
|
200
|
+
dotColor: StringConstructor;
|
|
201
|
+
fillDot: BooleanConstructor;
|
|
202
|
+
iconColor: StringConstructor;
|
|
203
|
+
hideOpposite: {
|
|
204
|
+
type: BooleanConstructor;
|
|
205
|
+
default: undefined;
|
|
206
|
+
};
|
|
207
|
+
lineInset: {
|
|
208
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
209
|
+
default: NonNullable<string | number>;
|
|
210
|
+
};
|
|
167
211
|
align: Prop<TimelineAlign>;
|
|
168
212
|
direction: Prop<TimelineDirection>;
|
|
169
213
|
justify: {
|
|
@@ -172,10 +216,6 @@ declare const VTimeline: {
|
|
|
172
216
|
validator: (v: any) => boolean;
|
|
173
217
|
};
|
|
174
218
|
side: Prop<TimelineSide>;
|
|
175
|
-
lineInset: {
|
|
176
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
177
|
-
default: number;
|
|
178
|
-
};
|
|
179
219
|
lineThickness: {
|
|
180
220
|
type: (StringConstructor | NumberConstructor)[];
|
|
181
221
|
default: number;
|
|
@@ -198,6 +238,21 @@ declare const VTimeline: {
|
|
|
198
238
|
type: vue.PropType<vue.StyleValue>;
|
|
199
239
|
default: null;
|
|
200
240
|
};
|
|
241
|
+
size: {
|
|
242
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
243
|
+
default: string;
|
|
244
|
+
};
|
|
245
|
+
dotColor: StringConstructor;
|
|
246
|
+
fillDot: BooleanConstructor;
|
|
247
|
+
iconColor: StringConstructor;
|
|
248
|
+
hideOpposite: {
|
|
249
|
+
type: BooleanConstructor;
|
|
250
|
+
default: undefined;
|
|
251
|
+
};
|
|
252
|
+
lineInset: {
|
|
253
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
254
|
+
default: NonNullable<string | number>;
|
|
255
|
+
};
|
|
201
256
|
align: Prop<TimelineAlign>;
|
|
202
257
|
direction: Prop<TimelineDirection>;
|
|
203
258
|
justify: {
|
|
@@ -206,10 +261,6 @@ declare const VTimeline: {
|
|
|
206
261
|
validator: (v: any) => boolean;
|
|
207
262
|
};
|
|
208
263
|
side: Prop<TimelineSide>;
|
|
209
|
-
lineInset: {
|
|
210
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
211
|
-
default: number;
|
|
212
|
-
};
|
|
213
264
|
lineThickness: {
|
|
214
265
|
type: (StringConstructor | NumberConstructor)[];
|
|
215
266
|
default: number;
|
|
@@ -242,10 +293,10 @@ declare const VTimelineItem: {
|
|
|
242
293
|
elevation?: string | number | undefined;
|
|
243
294
|
rounded?: string | number | boolean | undefined;
|
|
244
295
|
density?: "default" | "compact" | undefined;
|
|
245
|
-
lineInset?: string | number | undefined;
|
|
246
296
|
dotColor?: string | undefined;
|
|
247
297
|
iconColor?: string | undefined;
|
|
248
298
|
hideOpposite?: boolean | undefined;
|
|
299
|
+
lineInset?: string | number | undefined;
|
|
249
300
|
} & {
|
|
250
301
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
251
302
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -280,10 +331,10 @@ declare const VTimelineItem: {
|
|
|
280
331
|
elevation?: string | number | undefined;
|
|
281
332
|
rounded?: string | number | boolean | undefined;
|
|
282
333
|
density?: "default" | "compact" | undefined;
|
|
283
|
-
lineInset?: string | number | undefined;
|
|
284
334
|
dotColor?: string | undefined;
|
|
285
335
|
iconColor?: string | undefined;
|
|
286
336
|
hideOpposite?: boolean | undefined;
|
|
337
|
+
lineInset?: string | number | undefined;
|
|
287
338
|
} & {
|
|
288
339
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
289
340
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -344,10 +395,10 @@ declare const VTimelineItem: {
|
|
|
344
395
|
elevation?: string | number | undefined;
|
|
345
396
|
rounded?: string | number | boolean | undefined;
|
|
346
397
|
density?: "default" | "compact" | undefined;
|
|
347
|
-
lineInset?: string | number | undefined;
|
|
348
398
|
dotColor?: string | undefined;
|
|
349
399
|
iconColor?: string | undefined;
|
|
350
400
|
hideOpposite?: boolean | undefined;
|
|
401
|
+
lineInset?: string | number | undefined;
|
|
351
402
|
} & {
|
|
352
403
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
353
404
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -395,10 +446,10 @@ declare const VTimelineItem: {
|
|
|
395
446
|
elevation?: string | number | undefined;
|
|
396
447
|
rounded?: string | number | boolean | undefined;
|
|
397
448
|
density?: "default" | "compact" | undefined;
|
|
398
|
-
lineInset?: string | number | undefined;
|
|
399
449
|
dotColor?: string | undefined;
|
|
400
450
|
iconColor?: string | undefined;
|
|
401
451
|
hideOpposite?: boolean | undefined;
|
|
452
|
+
lineInset?: string | number | undefined;
|
|
402
453
|
} & {
|
|
403
454
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
404
455
|
default?: (() => vue.VNodeChild) | undefined;
|