@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
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -27678,6 +27678,7 @@ type VDatePickerSlots = Omit<VPickerSlots, 'header'> & {
|
|
|
27678
27678
|
};
|
|
27679
27679
|
declare const VDatePicker: {
|
|
27680
27680
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
27681
|
+
transition: string;
|
|
27681
27682
|
header: string;
|
|
27682
27683
|
style: vue.StyleValue;
|
|
27683
27684
|
title: string;
|
|
@@ -27687,6 +27688,7 @@ declare const VDatePicker: {
|
|
|
27687
27688
|
tile: boolean;
|
|
27688
27689
|
nextIcon: string;
|
|
27689
27690
|
prevIcon: string;
|
|
27691
|
+
reverseTransition: string;
|
|
27690
27692
|
modeIcon: string;
|
|
27691
27693
|
viewMode: "month" | "year" | "months";
|
|
27692
27694
|
showAdjacentMonths: boolean;
|
|
@@ -27728,6 +27730,7 @@ declare const VDatePicker: {
|
|
|
27728
27730
|
'update:year': (date: any) => true;
|
|
27729
27731
|
'update:viewMode': (date: any) => true;
|
|
27730
27732
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
27733
|
+
transition: string;
|
|
27731
27734
|
header: string;
|
|
27732
27735
|
style: vue.StyleValue;
|
|
27733
27736
|
title: string;
|
|
@@ -27737,6 +27740,7 @@ declare const VDatePicker: {
|
|
|
27737
27740
|
tile: boolean;
|
|
27738
27741
|
nextIcon: string;
|
|
27739
27742
|
prevIcon: string;
|
|
27743
|
+
reverseTransition: string;
|
|
27740
27744
|
modeIcon: string;
|
|
27741
27745
|
viewMode: "month" | "year" | "months";
|
|
27742
27746
|
showAdjacentMonths: boolean;
|
|
@@ -27774,6 +27778,7 @@ declare const VDatePicker: {
|
|
|
27774
27778
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27775
27779
|
}, {
|
|
27776
27780
|
active: string | string[];
|
|
27781
|
+
transition: string;
|
|
27777
27782
|
header: string;
|
|
27778
27783
|
style: vue.StyleValue;
|
|
27779
27784
|
title: string;
|
|
@@ -27784,6 +27789,7 @@ declare const VDatePicker: {
|
|
|
27784
27789
|
tile: boolean;
|
|
27785
27790
|
nextIcon: string;
|
|
27786
27791
|
prevIcon: string;
|
|
27792
|
+
reverseTransition: string;
|
|
27787
27793
|
modeIcon: string;
|
|
27788
27794
|
viewMode: "month" | "year" | "months";
|
|
27789
27795
|
showAdjacentMonths: boolean;
|
|
@@ -27815,6 +27821,7 @@ declare const VDatePicker: {
|
|
|
27815
27821
|
M: {};
|
|
27816
27822
|
Defaults: {};
|
|
27817
27823
|
}, {
|
|
27824
|
+
transition: string;
|
|
27818
27825
|
header: string;
|
|
27819
27826
|
style: vue.StyleValue;
|
|
27820
27827
|
title: string;
|
|
@@ -27824,6 +27831,7 @@ declare const VDatePicker: {
|
|
|
27824
27831
|
tile: boolean;
|
|
27825
27832
|
nextIcon: string;
|
|
27826
27833
|
prevIcon: string;
|
|
27834
|
+
reverseTransition: string;
|
|
27827
27835
|
modeIcon: string;
|
|
27828
27836
|
viewMode: "month" | "year" | "months";
|
|
27829
27837
|
showAdjacentMonths: boolean;
|
|
@@ -27861,6 +27869,7 @@ declare const VDatePicker: {
|
|
|
27861
27869
|
"onUpdate:viewMode"?: ((date: any) => any) | undefined;
|
|
27862
27870
|
}, {}, {}, {}, {}, {
|
|
27863
27871
|
active: string | string[];
|
|
27872
|
+
transition: string;
|
|
27864
27873
|
header: string;
|
|
27865
27874
|
style: vue.StyleValue;
|
|
27866
27875
|
title: string;
|
|
@@ -27871,6 +27880,7 @@ declare const VDatePicker: {
|
|
|
27871
27880
|
tile: boolean;
|
|
27872
27881
|
nextIcon: string;
|
|
27873
27882
|
prevIcon: string;
|
|
27883
|
+
reverseTransition: string;
|
|
27874
27884
|
modeIcon: string;
|
|
27875
27885
|
viewMode: "month" | "year" | "months";
|
|
27876
27886
|
showAdjacentMonths: boolean;
|
|
@@ -27883,6 +27893,7 @@ declare const VDatePicker: {
|
|
|
27883
27893
|
__isTeleport?: undefined;
|
|
27884
27894
|
__isSuspense?: undefined;
|
|
27885
27895
|
} & vue.ComponentOptionsBase<{
|
|
27896
|
+
transition: string;
|
|
27886
27897
|
header: string;
|
|
27887
27898
|
style: vue.StyleValue;
|
|
27888
27899
|
title: string;
|
|
@@ -27892,6 +27903,7 @@ declare const VDatePicker: {
|
|
|
27892
27903
|
tile: boolean;
|
|
27893
27904
|
nextIcon: string;
|
|
27894
27905
|
prevIcon: string;
|
|
27906
|
+
reverseTransition: string;
|
|
27895
27907
|
modeIcon: string;
|
|
27896
27908
|
viewMode: "month" | "year" | "months";
|
|
27897
27909
|
showAdjacentMonths: boolean;
|
|
@@ -27934,6 +27946,7 @@ declare const VDatePicker: {
|
|
|
27934
27946
|
'update:viewMode': (date: any) => true;
|
|
27935
27947
|
}, "multiple" | "$children" | "v-slot:default" | "v-slots" | "modelValue" | "v-slot:title" | "update:modelValue" | "v-slot:header" | "v-slot:actions">, string, {
|
|
27936
27948
|
active: string | string[];
|
|
27949
|
+
transition: string;
|
|
27937
27950
|
header: string;
|
|
27938
27951
|
style: vue.StyleValue;
|
|
27939
27952
|
title: string;
|
|
@@ -27944,6 +27957,7 @@ declare const VDatePicker: {
|
|
|
27944
27957
|
tile: boolean;
|
|
27945
27958
|
nextIcon: string;
|
|
27946
27959
|
prevIcon: string;
|
|
27960
|
+
reverseTransition: string;
|
|
27947
27961
|
modeIcon: string;
|
|
27948
27962
|
viewMode: "month" | "year" | "months";
|
|
27949
27963
|
showAdjacentMonths: boolean;
|
|
@@ -28044,6 +28058,14 @@ declare const VDatePicker: {
|
|
|
28044
28058
|
hideWeekdays: BooleanConstructor;
|
|
28045
28059
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
28046
28060
|
showWeek: BooleanConstructor;
|
|
28061
|
+
transition: {
|
|
28062
|
+
type: StringConstructor;
|
|
28063
|
+
default: string;
|
|
28064
|
+
};
|
|
28065
|
+
reverseTransition: {
|
|
28066
|
+
type: StringConstructor;
|
|
28067
|
+
default: string;
|
|
28068
|
+
};
|
|
28047
28069
|
active: {
|
|
28048
28070
|
type: vue.PropType<string | string[]>;
|
|
28049
28071
|
default: undefined;
|
|
@@ -28138,6 +28160,14 @@ declare const VDatePicker: {
|
|
|
28138
28160
|
hideWeekdays: BooleanConstructor;
|
|
28139
28161
|
multiple: vue.PropType<number | boolean | "range" | (string & {})>;
|
|
28140
28162
|
showWeek: BooleanConstructor;
|
|
28163
|
+
transition: {
|
|
28164
|
+
type: StringConstructor;
|
|
28165
|
+
default: string;
|
|
28166
|
+
};
|
|
28167
|
+
reverseTransition: {
|
|
28168
|
+
type: StringConstructor;
|
|
28169
|
+
default: string;
|
|
28170
|
+
};
|
|
28141
28171
|
active: {
|
|
28142
28172
|
type: vue.PropType<string | string[]>;
|
|
28143
28173
|
default: undefined;
|
|
@@ -28521,7 +28551,9 @@ type VDatePickerHeader = InstanceType<typeof VDatePickerHeader>;
|
|
|
28521
28551
|
|
|
28522
28552
|
declare const VDatePickerMonth: {
|
|
28523
28553
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
28554
|
+
transition: string;
|
|
28524
28555
|
disabled: boolean;
|
|
28556
|
+
reverseTransition: string;
|
|
28525
28557
|
showAdjacentMonths: boolean;
|
|
28526
28558
|
weekdays: number[];
|
|
28527
28559
|
hideWeekdays: boolean;
|
|
@@ -28572,7 +28604,9 @@ declare const VDatePickerMonth: {
|
|
|
28572
28604
|
'update:month': (date: number) => true;
|
|
28573
28605
|
'update:year': (date: number) => true;
|
|
28574
28606
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
28607
|
+
transition: string;
|
|
28575
28608
|
disabled: boolean;
|
|
28609
|
+
reverseTransition: string;
|
|
28576
28610
|
showAdjacentMonths: boolean;
|
|
28577
28611
|
weekdays: number[];
|
|
28578
28612
|
hideWeekdays: boolean;
|
|
@@ -28619,7 +28653,9 @@ declare const VDatePickerMonth: {
|
|
|
28619
28653
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28620
28654
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28621
28655
|
}, {
|
|
28656
|
+
transition: string;
|
|
28622
28657
|
disabled: boolean;
|
|
28658
|
+
reverseTransition: string;
|
|
28623
28659
|
showAdjacentMonths: boolean;
|
|
28624
28660
|
weekdays: number[];
|
|
28625
28661
|
hideWeekdays: boolean;
|
|
@@ -28642,7 +28678,9 @@ declare const VDatePickerMonth: {
|
|
|
28642
28678
|
M: {};
|
|
28643
28679
|
Defaults: {};
|
|
28644
28680
|
}, {
|
|
28681
|
+
transition: string;
|
|
28645
28682
|
disabled: boolean;
|
|
28683
|
+
reverseTransition: string;
|
|
28646
28684
|
showAdjacentMonths: boolean;
|
|
28647
28685
|
weekdays: number[];
|
|
28648
28686
|
hideWeekdays: boolean;
|
|
@@ -28689,7 +28727,9 @@ declare const VDatePickerMonth: {
|
|
|
28689
28727
|
"onUpdate:month"?: ((date: number) => any) | undefined;
|
|
28690
28728
|
"onUpdate:year"?: ((date: number) => any) | undefined;
|
|
28691
28729
|
}, () => JSX.Element, {}, {}, {}, {
|
|
28730
|
+
transition: string;
|
|
28692
28731
|
disabled: boolean;
|
|
28732
|
+
reverseTransition: string;
|
|
28693
28733
|
showAdjacentMonths: boolean;
|
|
28694
28734
|
weekdays: number[];
|
|
28695
28735
|
hideWeekdays: boolean;
|
|
@@ -28699,7 +28739,9 @@ declare const VDatePickerMonth: {
|
|
|
28699
28739
|
__isTeleport?: undefined;
|
|
28700
28740
|
__isSuspense?: undefined;
|
|
28701
28741
|
} & vue.ComponentOptionsBase<{
|
|
28742
|
+
transition: string;
|
|
28702
28743
|
disabled: boolean;
|
|
28744
|
+
reverseTransition: string;
|
|
28703
28745
|
showAdjacentMonths: boolean;
|
|
28704
28746
|
weekdays: number[];
|
|
28705
28747
|
hideWeekdays: boolean;
|
|
@@ -28750,7 +28792,9 @@ declare const VDatePickerMonth: {
|
|
|
28750
28792
|
'update:month': (date: number) => true;
|
|
28751
28793
|
'update:year': (date: number) => true;
|
|
28752
28794
|
}, string, {
|
|
28795
|
+
transition: string;
|
|
28753
28796
|
disabled: boolean;
|
|
28797
|
+
reverseTransition: string;
|
|
28754
28798
|
showAdjacentMonths: boolean;
|
|
28755
28799
|
weekdays: number[];
|
|
28756
28800
|
hideWeekdays: boolean;
|
|
@@ -28796,6 +28840,14 @@ declare const VDatePickerMonth: {
|
|
|
28796
28840
|
hideWeekdays: BooleanConstructor;
|
|
28797
28841
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28798
28842
|
showWeek: BooleanConstructor;
|
|
28843
|
+
transition: {
|
|
28844
|
+
type: StringConstructor;
|
|
28845
|
+
default: string;
|
|
28846
|
+
};
|
|
28847
|
+
reverseTransition: {
|
|
28848
|
+
type: StringConstructor;
|
|
28849
|
+
default: string;
|
|
28850
|
+
};
|
|
28799
28851
|
}, vue.ExtractPropTypes<{
|
|
28800
28852
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
28801
28853
|
disabled: BooleanConstructor;
|
|
@@ -28827,6 +28879,14 @@ declare const VDatePickerMonth: {
|
|
|
28827
28879
|
hideWeekdays: BooleanConstructor;
|
|
28828
28880
|
multiple: PropType<number | boolean | "range" | (string & {})>;
|
|
28829
28881
|
showWeek: BooleanConstructor;
|
|
28882
|
+
transition: {
|
|
28883
|
+
type: StringConstructor;
|
|
28884
|
+
default: string;
|
|
28885
|
+
};
|
|
28886
|
+
reverseTransition: {
|
|
28887
|
+
type: StringConstructor;
|
|
28888
|
+
default: string;
|
|
28889
|
+
};
|
|
28830
28890
|
}>>;
|
|
28831
28891
|
type VDatePickerMonth = InstanceType<typeof VDatePickerMonth>;
|
|
28832
28892
|
|
|
@@ -63453,10 +63513,12 @@ type TimelineTruncateLine = 'start' | 'end' | 'both' | undefined;
|
|
|
63453
63513
|
declare const VTimeline: {
|
|
63454
63514
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
63455
63515
|
style: vue.StyleValue;
|
|
63516
|
+
size: string | number;
|
|
63456
63517
|
tag: string;
|
|
63457
63518
|
justify: string;
|
|
63458
63519
|
density: Density;
|
|
63459
|
-
|
|
63520
|
+
fillDot: boolean;
|
|
63521
|
+
lineInset: NonNullable<string | number>;
|
|
63460
63522
|
lineThickness: string | number;
|
|
63461
63523
|
} & {
|
|
63462
63524
|
direction?: TimelineDirection | undefined;
|
|
@@ -63464,7 +63526,10 @@ declare const VTimeline: {
|
|
|
63464
63526
|
align?: TimelineAlign | undefined;
|
|
63465
63527
|
side?: TimelineSide;
|
|
63466
63528
|
theme?: string | undefined;
|
|
63529
|
+
dotColor?: string | undefined;
|
|
63530
|
+
iconColor?: string | undefined;
|
|
63467
63531
|
lineColor?: string | undefined;
|
|
63532
|
+
hideOpposite?: boolean | undefined;
|
|
63468
63533
|
truncateLine?: TimelineTruncateLine;
|
|
63469
63534
|
} & {
|
|
63470
63535
|
$children?: vue.VNodeChild | {
|
|
@@ -63477,10 +63542,12 @@ declare const VTimeline: {
|
|
|
63477
63542
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63478
63543
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
63479
63544
|
style: vue.StyleValue;
|
|
63545
|
+
size: string | number;
|
|
63480
63546
|
tag: string;
|
|
63481
63547
|
justify: string;
|
|
63482
63548
|
density: Density;
|
|
63483
|
-
|
|
63549
|
+
fillDot: boolean;
|
|
63550
|
+
lineInset: NonNullable<string | number>;
|
|
63484
63551
|
lineThickness: string | number;
|
|
63485
63552
|
} & {
|
|
63486
63553
|
direction?: TimelineDirection | undefined;
|
|
@@ -63488,7 +63555,10 @@ declare const VTimeline: {
|
|
|
63488
63555
|
align?: TimelineAlign | undefined;
|
|
63489
63556
|
side?: TimelineSide;
|
|
63490
63557
|
theme?: string | undefined;
|
|
63558
|
+
dotColor?: string | undefined;
|
|
63559
|
+
iconColor?: string | undefined;
|
|
63491
63560
|
lineColor?: string | undefined;
|
|
63561
|
+
hideOpposite?: boolean | undefined;
|
|
63492
63562
|
truncateLine?: TimelineTruncateLine;
|
|
63493
63563
|
} & {
|
|
63494
63564
|
$children?: vue.VNodeChild | {
|
|
@@ -63501,10 +63571,13 @@ declare const VTimeline: {
|
|
|
63501
63571
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63502
63572
|
}, {
|
|
63503
63573
|
style: vue.StyleValue;
|
|
63574
|
+
size: string | number;
|
|
63504
63575
|
tag: string;
|
|
63505
63576
|
justify: string;
|
|
63506
63577
|
density: Density;
|
|
63507
|
-
|
|
63578
|
+
fillDot: boolean;
|
|
63579
|
+
hideOpposite: boolean;
|
|
63580
|
+
lineInset: NonNullable<string | number>;
|
|
63508
63581
|
lineThickness: string | number;
|
|
63509
63582
|
}, true, {}, vue.SlotsType<Partial<{
|
|
63510
63583
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -63519,10 +63592,12 @@ declare const VTimeline: {
|
|
|
63519
63592
|
Defaults: {};
|
|
63520
63593
|
}, {
|
|
63521
63594
|
style: vue.StyleValue;
|
|
63595
|
+
size: string | number;
|
|
63522
63596
|
tag: string;
|
|
63523
63597
|
justify: string;
|
|
63524
63598
|
density: Density;
|
|
63525
|
-
|
|
63599
|
+
fillDot: boolean;
|
|
63600
|
+
lineInset: NonNullable<string | number>;
|
|
63526
63601
|
lineThickness: string | number;
|
|
63527
63602
|
} & {
|
|
63528
63603
|
direction?: TimelineDirection | undefined;
|
|
@@ -63530,7 +63605,10 @@ declare const VTimeline: {
|
|
|
63530
63605
|
align?: TimelineAlign | undefined;
|
|
63531
63606
|
side?: TimelineSide;
|
|
63532
63607
|
theme?: string | undefined;
|
|
63608
|
+
dotColor?: string | undefined;
|
|
63609
|
+
iconColor?: string | undefined;
|
|
63533
63610
|
lineColor?: string | undefined;
|
|
63611
|
+
hideOpposite?: boolean | undefined;
|
|
63534
63612
|
truncateLine?: TimelineTruncateLine;
|
|
63535
63613
|
} & {
|
|
63536
63614
|
$children?: vue.VNodeChild | {
|
|
@@ -63543,10 +63621,13 @@ declare const VTimeline: {
|
|
|
63543
63621
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63544
63622
|
}, {}, {}, {}, {}, {
|
|
63545
63623
|
style: vue.StyleValue;
|
|
63624
|
+
size: string | number;
|
|
63546
63625
|
tag: string;
|
|
63547
63626
|
justify: string;
|
|
63548
63627
|
density: Density;
|
|
63549
|
-
|
|
63628
|
+
fillDot: boolean;
|
|
63629
|
+
hideOpposite: boolean;
|
|
63630
|
+
lineInset: NonNullable<string | number>;
|
|
63550
63631
|
lineThickness: string | number;
|
|
63551
63632
|
}>;
|
|
63552
63633
|
__isFragment?: undefined;
|
|
@@ -63554,10 +63635,12 @@ declare const VTimeline: {
|
|
|
63554
63635
|
__isSuspense?: undefined;
|
|
63555
63636
|
} & vue.ComponentOptionsBase<{
|
|
63556
63637
|
style: vue.StyleValue;
|
|
63638
|
+
size: string | number;
|
|
63557
63639
|
tag: string;
|
|
63558
63640
|
justify: string;
|
|
63559
63641
|
density: Density;
|
|
63560
|
-
|
|
63642
|
+
fillDot: boolean;
|
|
63643
|
+
lineInset: NonNullable<string | number>;
|
|
63561
63644
|
lineThickness: string | number;
|
|
63562
63645
|
} & {
|
|
63563
63646
|
direction?: TimelineDirection | undefined;
|
|
@@ -63565,7 +63648,10 @@ declare const VTimeline: {
|
|
|
63565
63648
|
align?: TimelineAlign | undefined;
|
|
63566
63649
|
side?: TimelineSide;
|
|
63567
63650
|
theme?: string | undefined;
|
|
63651
|
+
dotColor?: string | undefined;
|
|
63652
|
+
iconColor?: string | undefined;
|
|
63568
63653
|
lineColor?: string | undefined;
|
|
63654
|
+
hideOpposite?: boolean | undefined;
|
|
63569
63655
|
truncateLine?: TimelineTruncateLine;
|
|
63570
63656
|
} & {
|
|
63571
63657
|
$children?: vue.VNodeChild | {
|
|
@@ -63578,10 +63664,13 @@ declare const VTimeline: {
|
|
|
63578
63664
|
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
63579
63665
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
63580
63666
|
style: vue.StyleValue;
|
|
63667
|
+
size: string | number;
|
|
63581
63668
|
tag: string;
|
|
63582
63669
|
justify: string;
|
|
63583
63670
|
density: Density;
|
|
63584
|
-
|
|
63671
|
+
fillDot: boolean;
|
|
63672
|
+
hideOpposite: boolean;
|
|
63673
|
+
lineInset: NonNullable<string | number>;
|
|
63585
63674
|
lineThickness: string | number;
|
|
63586
63675
|
}, {}, string, vue.SlotsType<Partial<{
|
|
63587
63676
|
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -63603,6 +63692,21 @@ declare const VTimeline: {
|
|
|
63603
63692
|
type: vue.PropType<vue.StyleValue>;
|
|
63604
63693
|
default: null;
|
|
63605
63694
|
};
|
|
63695
|
+
size: {
|
|
63696
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63697
|
+
default: string;
|
|
63698
|
+
};
|
|
63699
|
+
dotColor: StringConstructor;
|
|
63700
|
+
fillDot: BooleanConstructor;
|
|
63701
|
+
iconColor: StringConstructor;
|
|
63702
|
+
hideOpposite: {
|
|
63703
|
+
type: BooleanConstructor;
|
|
63704
|
+
default: undefined;
|
|
63705
|
+
};
|
|
63706
|
+
lineInset: {
|
|
63707
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63708
|
+
default: NonNullable<string | number>;
|
|
63709
|
+
};
|
|
63606
63710
|
align: Prop<TimelineAlign>;
|
|
63607
63711
|
direction: Prop<TimelineDirection>;
|
|
63608
63712
|
justify: {
|
|
@@ -63611,10 +63715,6 @@ declare const VTimeline: {
|
|
|
63611
63715
|
validator: (v: any) => boolean;
|
|
63612
63716
|
};
|
|
63613
63717
|
side: Prop<TimelineSide>;
|
|
63614
|
-
lineInset: {
|
|
63615
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
63616
|
-
default: number;
|
|
63617
|
-
};
|
|
63618
63718
|
lineThickness: {
|
|
63619
63719
|
type: (StringConstructor | NumberConstructor)[];
|
|
63620
63720
|
default: number;
|
|
@@ -63637,6 +63737,21 @@ declare const VTimeline: {
|
|
|
63637
63737
|
type: vue.PropType<vue.StyleValue>;
|
|
63638
63738
|
default: null;
|
|
63639
63739
|
};
|
|
63740
|
+
size: {
|
|
63741
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
63742
|
+
default: string;
|
|
63743
|
+
};
|
|
63744
|
+
dotColor: StringConstructor;
|
|
63745
|
+
fillDot: BooleanConstructor;
|
|
63746
|
+
iconColor: StringConstructor;
|
|
63747
|
+
hideOpposite: {
|
|
63748
|
+
type: BooleanConstructor;
|
|
63749
|
+
default: undefined;
|
|
63750
|
+
};
|
|
63751
|
+
lineInset: {
|
|
63752
|
+
type: vue.PropType<NonNullable<string | number>>;
|
|
63753
|
+
default: NonNullable<string | number>;
|
|
63754
|
+
};
|
|
63640
63755
|
align: Prop<TimelineAlign>;
|
|
63641
63756
|
direction: Prop<TimelineDirection>;
|
|
63642
63757
|
justify: {
|
|
@@ -63645,10 +63760,6 @@ declare const VTimeline: {
|
|
|
63645
63760
|
validator: (v: any) => boolean;
|
|
63646
63761
|
};
|
|
63647
63762
|
side: Prop<TimelineSide>;
|
|
63648
|
-
lineInset: {
|
|
63649
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
63650
|
-
default: number;
|
|
63651
|
-
};
|
|
63652
63763
|
lineThickness: {
|
|
63653
63764
|
type: (StringConstructor | NumberConstructor)[];
|
|
63654
63765
|
default: number;
|
|
@@ -63678,10 +63789,10 @@ declare const VTimelineItem: {
|
|
|
63678
63789
|
elevation?: string | number | undefined;
|
|
63679
63790
|
rounded?: string | number | boolean | undefined;
|
|
63680
63791
|
density?: "default" | "compact" | undefined;
|
|
63681
|
-
lineInset?: string | number | undefined;
|
|
63682
63792
|
dotColor?: string | undefined;
|
|
63683
63793
|
iconColor?: string | undefined;
|
|
63684
63794
|
hideOpposite?: boolean | undefined;
|
|
63795
|
+
lineInset?: string | number | undefined;
|
|
63685
63796
|
} & {
|
|
63686
63797
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63687
63798
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63716,10 +63827,10 @@ declare const VTimelineItem: {
|
|
|
63716
63827
|
elevation?: string | number | undefined;
|
|
63717
63828
|
rounded?: string | number | boolean | undefined;
|
|
63718
63829
|
density?: "default" | "compact" | undefined;
|
|
63719
|
-
lineInset?: string | number | undefined;
|
|
63720
63830
|
dotColor?: string | undefined;
|
|
63721
63831
|
iconColor?: string | undefined;
|
|
63722
63832
|
hideOpposite?: boolean | undefined;
|
|
63833
|
+
lineInset?: string | number | undefined;
|
|
63723
63834
|
} & {
|
|
63724
63835
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63725
63836
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63780,10 +63891,10 @@ declare const VTimelineItem: {
|
|
|
63780
63891
|
elevation?: string | number | undefined;
|
|
63781
63892
|
rounded?: string | number | boolean | undefined;
|
|
63782
63893
|
density?: "default" | "compact" | undefined;
|
|
63783
|
-
lineInset?: string | number | undefined;
|
|
63784
63894
|
dotColor?: string | undefined;
|
|
63785
63895
|
iconColor?: string | undefined;
|
|
63786
63896
|
hideOpposite?: boolean | undefined;
|
|
63897
|
+
lineInset?: string | number | undefined;
|
|
63787
63898
|
} & {
|
|
63788
63899
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63789
63900
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -63831,10 +63942,10 @@ declare const VTimelineItem: {
|
|
|
63831
63942
|
elevation?: string | number | undefined;
|
|
63832
63943
|
rounded?: string | number | boolean | undefined;
|
|
63833
63944
|
density?: "default" | "compact" | undefined;
|
|
63834
|
-
lineInset?: string | number | undefined;
|
|
63835
63945
|
dotColor?: string | undefined;
|
|
63836
63946
|
iconColor?: string | undefined;
|
|
63837
63947
|
hideOpposite?: boolean | undefined;
|
|
63948
|
+
lineInset?: string | number | undefined;
|
|
63838
63949
|
} & {
|
|
63839
63950
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
63840
63951
|
default?: (() => vue.VNodeChild) | undefined;
|