@vuetify/nightly 3.5.9-dev.2024-03-26 → 3.5.9-dev.2024-03-29

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.
@@ -10,7 +10,8 @@ import { useRtl } from "../../composables/locale.mjs";
10
10
  import { makeTagProps } from "../../composables/tag.mjs";
11
11
  import { makeThemeProps, provideTheme } from "../../composables/theme.mjs"; // Utilities
12
12
  import { computed, toRef } from 'vue';
13
- import { convertToUnit, genericComponent, propsFactory, useRender } from "../../util/index.mjs"; // Types
13
+ import { convertToUnit, genericComponent, only, propsFactory, useRender } from "../../util/index.mjs"; // Types
14
+ import { makeVTimelineItemProps } from "./VTimelineItem.mjs";
14
15
  export const makeVTimelineProps = propsFactory({
15
16
  align: {
16
17
  type: String,
@@ -31,10 +32,6 @@ export const makeVTimelineProps = propsFactory({
31
32
  type: String,
32
33
  validator: v => v == null || ['start', 'end'].includes(v)
33
34
  },
34
- lineInset: {
35
- type: [String, Number],
36
- default: 0
37
- },
38
35
  lineThickness: {
39
36
  type: [String, Number],
40
37
  default: 2
@@ -44,6 +41,9 @@ export const makeVTimelineProps = propsFactory({
44
41
  type: String,
45
42
  validator: v => ['start', 'end', 'both'].includes(v)
46
43
  },
44
+ ...only(makeVTimelineItemProps({
45
+ lineInset: 0
46
+ }), ['dotColor', 'fillDot', 'hideOpposite', 'iconColor', 'lineInset', 'size']),
47
47
  ...makeComponentProps(),
48
48
  ...makeDensityProps(),
49
49
  ...makeTagProps(),
@@ -71,7 +71,13 @@ export const VTimeline = genericComponent()({
71
71
  },
72
72
  VTimelineItem: {
73
73
  density: toRef(props, 'density'),
74
- lineInset: toRef(props, 'lineInset')
74
+ dotColor: toRef(props, 'lineColor'),
75
+ fillDot: toRef(props, 'fillDot'),
76
+ hideOpposite: toRef(props, 'hideOpposite'),
77
+ iconColor: toRef(props, 'iconColor'),
78
+ lineColor: toRef(props, 'lineColor'),
79
+ lineInset: toRef(props, 'lineInset'),
80
+ size: toRef(props, 'size')
75
81
  }
76
82
  });
77
83
  const sideClasses = computed(() => {
@@ -1 +1 @@
1
- {"version":3,"file":"VTimeline.mjs","names":["makeComponentProps","provideDefaults","makeDensityProps","useDensity","useRtl","makeTagProps","makeThemeProps","provideTheme","computed","toRef","convertToUnit","genericComponent","propsFactory","useRender","makeVTimelineProps","align","type","String","default","validator","v","includes","direction","justify","side","lineInset","Number","lineThickness","lineColor","truncateLine","VTimeline","name","props","setup","_ref","slots","themeClasses","densityClasses","rtlClasses","VTimelineDivider","VTimelineItem","density","sideClasses","truncateClasses","classes","_createVNode","tag","value","class","style"],"sources":["../../../src/components/VTimeline/VTimeline.tsx"],"sourcesContent":["// Styles\nimport './VTimeline.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { useRtl } from '@/composables/locale'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { computed, toRef } from 'vue'\nimport { convertToUnit, genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { Prop } from 'vue'\n\nexport type TimelineDirection = 'vertical' | 'horizontal'\nexport type TimelineSide = 'start' | 'end' | undefined\nexport type TimelineAlign = 'center' | 'start'\nexport type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined\n\nexport const makeVTimelineProps = propsFactory({\n align: {\n type: String,\n default: 'center',\n validator: (v: any) => ['center', 'start'].includes(v),\n } as Prop<TimelineAlign>,\n direction: {\n type: String,\n default: 'vertical',\n validator: (v: any) => ['vertical', 'horizontal'].includes(v),\n } as Prop<TimelineDirection>,\n justify: {\n type: String,\n default: 'auto',\n validator: (v: any) => ['auto', 'center'].includes(v),\n },\n side: {\n type: String,\n validator: (v: any) => v == null || ['start', 'end'].includes(v),\n } as Prop<TimelineSide>,\n lineInset: {\n type: [String, Number],\n default: 0,\n },\n lineThickness: {\n type: [String, Number],\n default: 2,\n },\n lineColor: String,\n truncateLine: {\n type: String,\n validator: (v: any) => ['start', 'end', 'both'].includes(v),\n } as Prop<TimelineTruncateLine>,\n\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n}, 'VTimeline')\n\nexport const VTimeline = genericComponent()({\n name: 'VTimeline',\n\n props: makeVTimelineProps(),\n\n setup (props, { slots }) {\n const { themeClasses } = provideTheme(props)\n const { densityClasses } = useDensity(props)\n const { rtlClasses } = useRtl()\n\n provideDefaults({\n VTimelineDivider: {\n lineColor: toRef(props, 'lineColor'),\n },\n VTimelineItem: {\n density: toRef(props, 'density'),\n lineInset: toRef(props, 'lineInset'),\n },\n })\n\n const sideClasses = computed(() => {\n const side = props.side ? props.side : props.density !== 'default' ? 'end' : null\n\n return side && `v-timeline--side-${side}`\n })\n\n const truncateClasses = computed(() => {\n const classes = [\n 'v-timeline--truncate-line-start',\n 'v-timeline--truncate-line-end',\n ]\n\n switch (props.truncateLine) {\n case 'both': return classes\n case 'start': return classes[0]\n case 'end': return classes[1]\n default: return null\n }\n })\n\n useRender(() => (\n <props.tag\n class={[\n 'v-timeline',\n `v-timeline--${props.direction}`,\n `v-timeline--align-${props.align}`,\n `v-timeline--justify-${props.justify}`,\n truncateClasses.value,\n {\n 'v-timeline--inset-line': !!props.lineInset,\n },\n themeClasses.value,\n densityClasses.value,\n sideClasses.value,\n rtlClasses.value,\n props.class,\n ]}\n style={[\n {\n '--v-timeline-line-thickness': convertToUnit(props.lineThickness),\n },\n props.style,\n ]}\n v-slots={ slots }\n />\n ))\n\n return {}\n },\n})\n\nexport type VTimeline = InstanceType<typeof VTimeline>\n"],"mappings":"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"}
1
+ {"version":3,"file":"VTimeline.mjs","names":["makeComponentProps","provideDefaults","makeDensityProps","useDensity","useRtl","makeTagProps","makeThemeProps","provideTheme","computed","toRef","convertToUnit","genericComponent","only","propsFactory","useRender","makeVTimelineItemProps","makeVTimelineProps","align","type","String","default","validator","v","includes","direction","justify","side","lineThickness","Number","lineColor","truncateLine","lineInset","VTimeline","name","props","setup","_ref","slots","themeClasses","densityClasses","rtlClasses","VTimelineDivider","VTimelineItem","density","dotColor","fillDot","hideOpposite","iconColor","size","sideClasses","truncateClasses","classes","_createVNode","tag","value","class","style"],"sources":["../../../src/components/VTimeline/VTimeline.tsx"],"sourcesContent":["// Styles\nimport './VTimeline.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { useRtl } from '@/composables/locale'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { computed, toRef } from 'vue'\nimport { convertToUnit, genericComponent, only, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { Prop } from 'vue'\nimport { makeVTimelineItemProps } from './VTimelineItem'\n\nexport type TimelineDirection = 'vertical' | 'horizontal'\nexport type TimelineSide = 'start' | 'end' | undefined\nexport type TimelineAlign = 'center' | 'start'\nexport type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined\n\nexport const makeVTimelineProps = propsFactory({\n align: {\n type: String,\n default: 'center',\n validator: (v: any) => ['center', 'start'].includes(v),\n } as Prop<TimelineAlign>,\n direction: {\n type: String,\n default: 'vertical',\n validator: (v: any) => ['vertical', 'horizontal'].includes(v),\n } as Prop<TimelineDirection>,\n justify: {\n type: String,\n default: 'auto',\n validator: (v: any) => ['auto', 'center'].includes(v),\n },\n side: {\n type: String,\n validator: (v: any) => v == null || ['start', 'end'].includes(v),\n } as Prop<TimelineSide>,\n lineThickness: {\n type: [String, Number],\n default: 2,\n },\n lineColor: String,\n truncateLine: {\n type: String,\n validator: (v: any) => ['start', 'end', 'both'].includes(v),\n } as Prop<TimelineTruncateLine>,\n\n ...only(makeVTimelineItemProps({\n lineInset: 0,\n }), ['dotColor', 'fillDot', 'hideOpposite', 'iconColor', 'lineInset', 'size']),\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n}, 'VTimeline')\n\nexport const VTimeline = genericComponent()({\n name: 'VTimeline',\n\n props: makeVTimelineProps(),\n\n setup (props, { slots }) {\n const { themeClasses } = provideTheme(props)\n const { densityClasses } = useDensity(props)\n const { rtlClasses } = useRtl()\n\n provideDefaults({\n VTimelineDivider: {\n lineColor: toRef(props, 'lineColor'),\n },\n VTimelineItem: {\n density: toRef(props, 'density'),\n dotColor: toRef(props, 'lineColor'),\n fillDot: toRef(props, 'fillDot'),\n hideOpposite: toRef(props, 'hideOpposite'),\n iconColor: toRef(props, 'iconColor'),\n lineColor: toRef(props, 'lineColor'),\n lineInset: toRef(props, 'lineInset'),\n size: toRef(props, 'size'),\n },\n })\n\n const sideClasses = computed(() => {\n const side = props.side ? props.side : props.density !== 'default' ? 'end' : null\n\n return side && `v-timeline--side-${side}`\n })\n\n const truncateClasses = computed(() => {\n const classes = [\n 'v-timeline--truncate-line-start',\n 'v-timeline--truncate-line-end',\n ]\n\n switch (props.truncateLine) {\n case 'both': return classes\n case 'start': return classes[0]\n case 'end': return classes[1]\n default: return null\n }\n })\n\n useRender(() => (\n <props.tag\n class={[\n 'v-timeline',\n `v-timeline--${props.direction}`,\n `v-timeline--align-${props.align}`,\n `v-timeline--justify-${props.justify}`,\n truncateClasses.value,\n {\n 'v-timeline--inset-line': !!props.lineInset,\n },\n themeClasses.value,\n densityClasses.value,\n sideClasses.value,\n rtlClasses.value,\n props.class,\n ]}\n style={[\n {\n '--v-timeline-line-thickness': convertToUnit(props.lineThickness),\n },\n props.style,\n ]}\n v-slots={ slots }\n />\n ))\n\n return {}\n },\n})\n\nexport type VTimeline = InstanceType<typeof VTimeline>\n"],"mappings":"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"}
@@ -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
- lineInset: string | number;
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
- lineInset: string | number;
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
- lineInset: string | number;
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
- lineInset: string | number;
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
- lineInset: string | number;
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
- lineInset: string | number;
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
- lineInset: string | number;
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;
@@ -62803,10 +62803,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
62803
62803
  declare const VTimeline: {
62804
62804
  new (...args: any[]): vue.CreateComponentPublicInstance<{
62805
62805
  style: vue.StyleValue;
62806
+ size: string | number;
62806
62807
  tag: string;
62807
62808
  justify: string;
62808
62809
  density: Density;
62809
- lineInset: string | number;
62810
+ fillDot: boolean;
62811
+ lineInset: NonNullable<string | number>;
62810
62812
  lineThickness: string | number;
62811
62813
  } & {
62812
62814
  direction?: TimelineDirection | undefined;
@@ -62814,7 +62816,10 @@ declare const VTimeline: {
62814
62816
  align?: TimelineAlign | undefined;
62815
62817
  side?: TimelineSide;
62816
62818
  theme?: string | undefined;
62819
+ dotColor?: string | undefined;
62820
+ iconColor?: string | undefined;
62817
62821
  lineColor?: string | undefined;
62822
+ hideOpposite?: boolean | undefined;
62818
62823
  truncateLine?: TimelineTruncateLine;
62819
62824
  } & {
62820
62825
  $children?: vue.VNodeChild | {
@@ -62827,10 +62832,12 @@ declare const VTimeline: {
62827
62832
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62828
62833
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
62829
62834
  style: vue.StyleValue;
62835
+ size: string | number;
62830
62836
  tag: string;
62831
62837
  justify: string;
62832
62838
  density: Density;
62833
- lineInset: string | number;
62839
+ fillDot: boolean;
62840
+ lineInset: NonNullable<string | number>;
62834
62841
  lineThickness: string | number;
62835
62842
  } & {
62836
62843
  direction?: TimelineDirection | undefined;
@@ -62838,7 +62845,10 @@ declare const VTimeline: {
62838
62845
  align?: TimelineAlign | undefined;
62839
62846
  side?: TimelineSide;
62840
62847
  theme?: string | undefined;
62848
+ dotColor?: string | undefined;
62849
+ iconColor?: string | undefined;
62841
62850
  lineColor?: string | undefined;
62851
+ hideOpposite?: boolean | undefined;
62842
62852
  truncateLine?: TimelineTruncateLine;
62843
62853
  } & {
62844
62854
  $children?: vue.VNodeChild | {
@@ -62851,10 +62861,13 @@ declare const VTimeline: {
62851
62861
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62852
62862
  }, {
62853
62863
  style: vue.StyleValue;
62864
+ size: string | number;
62854
62865
  tag: string;
62855
62866
  justify: string;
62856
62867
  density: Density;
62857
- lineInset: string | number;
62868
+ fillDot: boolean;
62869
+ hideOpposite: boolean;
62870
+ lineInset: NonNullable<string | number>;
62858
62871
  lineThickness: string | number;
62859
62872
  }, true, {}, vue.SlotsType<Partial<{
62860
62873
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -62869,10 +62882,12 @@ declare const VTimeline: {
62869
62882
  Defaults: {};
62870
62883
  }, {
62871
62884
  style: vue.StyleValue;
62885
+ size: string | number;
62872
62886
  tag: string;
62873
62887
  justify: string;
62874
62888
  density: Density;
62875
- lineInset: string | number;
62889
+ fillDot: boolean;
62890
+ lineInset: NonNullable<string | number>;
62876
62891
  lineThickness: string | number;
62877
62892
  } & {
62878
62893
  direction?: TimelineDirection | undefined;
@@ -62880,7 +62895,10 @@ declare const VTimeline: {
62880
62895
  align?: TimelineAlign | undefined;
62881
62896
  side?: TimelineSide;
62882
62897
  theme?: string | undefined;
62898
+ dotColor?: string | undefined;
62899
+ iconColor?: string | undefined;
62883
62900
  lineColor?: string | undefined;
62901
+ hideOpposite?: boolean | undefined;
62884
62902
  truncateLine?: TimelineTruncateLine;
62885
62903
  } & {
62886
62904
  $children?: vue.VNodeChild | {
@@ -62893,10 +62911,13 @@ declare const VTimeline: {
62893
62911
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62894
62912
  }, {}, {}, {}, {}, {
62895
62913
  style: vue.StyleValue;
62914
+ size: string | number;
62896
62915
  tag: string;
62897
62916
  justify: string;
62898
62917
  density: Density;
62899
- lineInset: string | number;
62918
+ fillDot: boolean;
62919
+ hideOpposite: boolean;
62920
+ lineInset: NonNullable<string | number>;
62900
62921
  lineThickness: string | number;
62901
62922
  }>;
62902
62923
  __isFragment?: undefined;
@@ -62904,10 +62925,12 @@ declare const VTimeline: {
62904
62925
  __isSuspense?: undefined;
62905
62926
  } & vue.ComponentOptionsBase<{
62906
62927
  style: vue.StyleValue;
62928
+ size: string | number;
62907
62929
  tag: string;
62908
62930
  justify: string;
62909
62931
  density: Density;
62910
- lineInset: string | number;
62932
+ fillDot: boolean;
62933
+ lineInset: NonNullable<string | number>;
62911
62934
  lineThickness: string | number;
62912
62935
  } & {
62913
62936
  direction?: TimelineDirection | undefined;
@@ -62915,7 +62938,10 @@ declare const VTimeline: {
62915
62938
  align?: TimelineAlign | undefined;
62916
62939
  side?: TimelineSide;
62917
62940
  theme?: string | undefined;
62941
+ dotColor?: string | undefined;
62942
+ iconColor?: string | undefined;
62918
62943
  lineColor?: string | undefined;
62944
+ hideOpposite?: boolean | undefined;
62919
62945
  truncateLine?: TimelineTruncateLine;
62920
62946
  } & {
62921
62947
  $children?: vue.VNodeChild | {
@@ -62928,10 +62954,13 @@ declare const VTimeline: {
62928
62954
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
62929
62955
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
62930
62956
  style: vue.StyleValue;
62957
+ size: string | number;
62931
62958
  tag: string;
62932
62959
  justify: string;
62933
62960
  density: Density;
62934
- lineInset: string | number;
62961
+ fillDot: boolean;
62962
+ hideOpposite: boolean;
62963
+ lineInset: NonNullable<string | number>;
62935
62964
  lineThickness: string | number;
62936
62965
  }, {}, string, vue.SlotsType<Partial<{
62937
62966
  default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
@@ -62953,6 +62982,21 @@ declare const VTimeline: {
62953
62982
  type: vue.PropType<vue.StyleValue>;
62954
62983
  default: null;
62955
62984
  };
62985
+ size: {
62986
+ type: (StringConstructor | NumberConstructor)[];
62987
+ default: string;
62988
+ };
62989
+ dotColor: StringConstructor;
62990
+ fillDot: BooleanConstructor;
62991
+ iconColor: StringConstructor;
62992
+ hideOpposite: {
62993
+ type: BooleanConstructor;
62994
+ default: undefined;
62995
+ };
62996
+ lineInset: {
62997
+ type: vue.PropType<NonNullable<string | number>>;
62998
+ default: NonNullable<string | number>;
62999
+ };
62956
63000
  align: Prop<TimelineAlign>;
62957
63001
  direction: Prop<TimelineDirection>;
62958
63002
  justify: {
@@ -62961,10 +63005,6 @@ declare const VTimeline: {
62961
63005
  validator: (v: any) => boolean;
62962
63006
  };
62963
63007
  side: Prop<TimelineSide>;
62964
- lineInset: {
62965
- type: (StringConstructor | NumberConstructor)[];
62966
- default: number;
62967
- };
62968
63008
  lineThickness: {
62969
63009
  type: (StringConstructor | NumberConstructor)[];
62970
63010
  default: number;
@@ -62987,6 +63027,21 @@ declare const VTimeline: {
62987
63027
  type: vue.PropType<vue.StyleValue>;
62988
63028
  default: null;
62989
63029
  };
63030
+ size: {
63031
+ type: (StringConstructor | NumberConstructor)[];
63032
+ default: string;
63033
+ };
63034
+ dotColor: StringConstructor;
63035
+ fillDot: BooleanConstructor;
63036
+ iconColor: StringConstructor;
63037
+ hideOpposite: {
63038
+ type: BooleanConstructor;
63039
+ default: undefined;
63040
+ };
63041
+ lineInset: {
63042
+ type: vue.PropType<NonNullable<string | number>>;
63043
+ default: NonNullable<string | number>;
63044
+ };
62990
63045
  align: Prop<TimelineAlign>;
62991
63046
  direction: Prop<TimelineDirection>;
62992
63047
  justify: {
@@ -62995,10 +63050,6 @@ declare const VTimeline: {
62995
63050
  validator: (v: any) => boolean;
62996
63051
  };
62997
63052
  side: Prop<TimelineSide>;
62998
- lineInset: {
62999
- type: (StringConstructor | NumberConstructor)[];
63000
- default: number;
63001
- };
63002
63053
  lineThickness: {
63003
63054
  type: (StringConstructor | NumberConstructor)[];
63004
63055
  default: number;
@@ -63028,10 +63079,10 @@ declare const VTimelineItem: {
63028
63079
  elevation?: string | number | undefined;
63029
63080
  rounded?: string | number | boolean | undefined;
63030
63081
  density?: "default" | "compact" | undefined;
63031
- lineInset?: string | number | undefined;
63032
63082
  dotColor?: string | undefined;
63033
63083
  iconColor?: string | undefined;
63034
63084
  hideOpposite?: boolean | undefined;
63085
+ lineInset?: string | number | undefined;
63035
63086
  } & {
63036
63087
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63037
63088
  default?: (() => vue.VNodeChild) | undefined;
@@ -63066,10 +63117,10 @@ declare const VTimelineItem: {
63066
63117
  elevation?: string | number | undefined;
63067
63118
  rounded?: string | number | boolean | undefined;
63068
63119
  density?: "default" | "compact" | undefined;
63069
- lineInset?: string | number | undefined;
63070
63120
  dotColor?: string | undefined;
63071
63121
  iconColor?: string | undefined;
63072
63122
  hideOpposite?: boolean | undefined;
63123
+ lineInset?: string | number | undefined;
63073
63124
  } & {
63074
63125
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63075
63126
  default?: (() => vue.VNodeChild) | undefined;
@@ -63130,10 +63181,10 @@ declare const VTimelineItem: {
63130
63181
  elevation?: string | number | undefined;
63131
63182
  rounded?: string | number | boolean | undefined;
63132
63183
  density?: "default" | "compact" | undefined;
63133
- lineInset?: string | number | undefined;
63134
63184
  dotColor?: string | undefined;
63135
63185
  iconColor?: string | undefined;
63136
63186
  hideOpposite?: boolean | undefined;
63187
+ lineInset?: string | number | undefined;
63137
63188
  } & {
63138
63189
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63139
63190
  default?: (() => vue.VNodeChild) | undefined;
@@ -63181,10 +63232,10 @@ declare const VTimelineItem: {
63181
63232
  elevation?: string | number | undefined;
63182
63233
  rounded?: string | number | boolean | undefined;
63183
63234
  density?: "default" | "compact" | undefined;
63184
- lineInset?: string | number | undefined;
63185
63235
  dotColor?: string | undefined;
63186
63236
  iconColor?: string | undefined;
63187
63237
  hideOpposite?: boolean | undefined;
63238
+ lineInset?: string | number | undefined;
63188
63239
  } & {
63189
63240
  $children?: vue.VNodeChild | (() => vue.VNodeChild) | {
63190
63241
  default?: (() => vue.VNodeChild) | undefined;
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.5.9-dev.2024-03-26";
19
+ export const version = "3.5.9-dev.2024-03-29";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.mjs";
package/lib/framework.mjs CHANGED
@@ -97,7 +97,7 @@ export function createVuetify() {
97
97
  goTo
98
98
  };
99
99
  }
100
- export const version = "3.5.9-dev.2024-03-26";
100
+ export const version = "3.5.9-dev.2024-03-29";
101
101
  createVuetify.version = version;
102
102
 
103
103
  // Vue's inject() can only be used in setup