@vuetify/nightly 3.9.0-beta.1-dev.2025-07-05 → 3.9.0-master.2025-07-08
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 +3 -117
- package/dist/json/attributes.json +3556 -3520
- package/dist/json/importMap-labs.json +32 -32
- package/dist/json/importMap.json +140 -140
- package/dist/json/tags.json +9 -0
- package/dist/json/web-types.json +6422 -6333
- package/dist/vuetify-labs.cjs +124 -32
- package/dist/vuetify-labs.css +5401 -5344
- package/dist/vuetify-labs.d.ts +271 -176
- package/dist/vuetify-labs.esm.js +124 -32
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +124 -32
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +123 -31
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4117 -4060
- package/dist/vuetify.d.ts +271 -176
- package/dist/vuetify.esm.js +123 -31
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +123 -31
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1083 -1079
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +39 -14
- package/lib/components/VAutocomplete/VAutocomplete.js +2 -2
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +39 -14
- package/lib/components/VCombobox/VCombobox.js +2 -2
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataIterator/composables/items.d.ts +2 -1
- package/lib/components/VDataIterator/composables/items.js.map +1 -1
- package/lib/components/VDataTable/types.d.ts +1 -1
- package/lib/components/VDataTable/types.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.js +2 -1
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VList/VList.d.ts +24 -27
- package/lib/components/VList/VList.js +0 -4
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +58 -22
- package/lib/components/VSelect/VSelect.js +2 -2
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.d.ts +229 -167
- package/lib/components/VTreeview/VTreeview.js +7 -3
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewChildren.d.ts +81 -10
- package/lib/components/VTreeview/VTreeviewChildren.js +50 -11
- package/lib/components/VTreeview/VTreeviewChildren.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewItem.css +57 -0
- package/lib/components/VTreeview/VTreeviewItem.d.ts +119 -94
- package/lib/components/VTreeview/VTreeviewItem.js +13 -3
- package/lib/components/VTreeview/VTreeviewItem.js.map +1 -1
- package/lib/components/VTreeview/VTreeviewItem.sass +60 -0
- package/lib/components/VTreeview/_variables.scss +15 -0
- package/lib/composables/filter.d.ts +1 -0
- package/lib/composables/filter.js +1 -1
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/list-items.d.ts +14 -1
- package/lib/composables/list-items.js +9 -3
- package/lib/composables/list-items.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +56 -55
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.js +1 -1
- package/lib/labs/VCalendar/VCalendar.js.map +1 -1
- package/lib/util/helpers.d.ts +3 -0
- package/lib/util/helpers.js +4 -0
- package/lib/util/helpers.js.map +1 -1
- package/lib/util/indentLines.d.ts +17 -0
- package/lib/util/indentLines.js +34 -0
- package/lib/util/indentLines.js.map +1 -0
- package/lib/util/index.d.ts +1 -0
- package/lib/util/index.js +1 -0
- package/lib/util/index.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -260,6 +260,9 @@ type TemplateRef = {
|
|
260
260
|
readonly el: HTMLElement | undefined;
|
261
261
|
};
|
262
262
|
|
263
|
+
type IndentLinesVariant = 'default' | 'simple';
|
264
|
+
type IndentLineType = 'leaf' | 'last-leaf' | 'line' | 'leaf-link' | 'none';
|
265
|
+
|
263
266
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
264
267
|
declare const IconValue: PropType<IconValue>;
|
265
268
|
interface IconAliases {
|
@@ -682,6 +685,7 @@ type FilterMode = 'some' | 'every' | 'union' | 'intersection';
|
|
682
685
|
interface InternalItem<T = any> {
|
683
686
|
value: any;
|
684
687
|
raw: T;
|
688
|
+
type?: string;
|
685
689
|
}
|
686
690
|
|
687
691
|
type ValidationRuleParams = [any, string?];
|
@@ -961,7 +965,7 @@ type InternalDataTableHeader = Omit<DataTableHeader, 'key' | 'value' | 'children
|
|
961
965
|
rowspan?: number;
|
962
966
|
children?: InternalDataTableHeader[];
|
963
967
|
};
|
964
|
-
interface DataTableItem<T = any> extends InternalItem<T>, GroupableItem<T>, SelectableItem {
|
968
|
+
interface DataTableItem<T = any> extends Omit<InternalItem<T>, 'type'>, GroupableItem<T>, SelectableItem {
|
965
969
|
key: any;
|
966
970
|
index: number;
|
967
971
|
columns: {
|
@@ -7076,7 +7080,8 @@ interface ListItem<T = any> extends InternalItem<T> {
|
|
7076
7080
|
title: string;
|
7077
7081
|
value: any;
|
7078
7082
|
};
|
7079
|
-
children
|
7083
|
+
children: ListItem<T>[] | undefined;
|
7084
|
+
type: string;
|
7080
7085
|
}
|
7081
7086
|
interface ItemProps {
|
7082
7087
|
items: any[];
|
@@ -7084,12 +7089,12 @@ interface ItemProps {
|
|
7084
7089
|
itemValue: SelectItemKey;
|
7085
7090
|
itemChildren: SelectItemKey;
|
7086
7091
|
itemProps: SelectItemKey;
|
7092
|
+
itemType: SelectItemKey;
|
7087
7093
|
returnObject: boolean;
|
7088
7094
|
valueComparator: typeof deepEqual | undefined;
|
7089
7095
|
}
|
7090
7096
|
|
7091
7097
|
interface InternalListItem<T = any> extends ListItem<T> {
|
7092
|
-
type?: 'item' | 'subheader' | 'divider';
|
7093
7098
|
}
|
7094
7099
|
type ItemType$6<T> = T extends readonly (infer U)[] ? U : never;
|
7095
7100
|
declare const VList: {
|
@@ -7110,7 +7115,7 @@ declare const VList: {
|
|
7110
7115
|
activatable: boolean;
|
7111
7116
|
selectable: boolean;
|
7112
7117
|
openStrategy: OpenStrategyProp;
|
7113
|
-
itemType:
|
7118
|
+
itemType: SelectItemKey;
|
7114
7119
|
} & {
|
7115
7120
|
height?: string | number | undefined;
|
7116
7121
|
width?: string | number | undefined;
|
@@ -7184,7 +7189,7 @@ declare const VList: {
|
|
7184
7189
|
activatable: boolean;
|
7185
7190
|
selectable: boolean;
|
7186
7191
|
openStrategy: OpenStrategyProp;
|
7187
|
-
itemType:
|
7192
|
+
itemType: SelectItemKey;
|
7188
7193
|
}, true, {}, vue.SlotsType<Partial<{
|
7189
7194
|
title: (arg: ListItemTitleSlot & {
|
7190
7195
|
item: any;
|
@@ -7235,7 +7240,7 @@ declare const VList: {
|
|
7235
7240
|
activatable: boolean;
|
7236
7241
|
selectable: boolean;
|
7237
7242
|
openStrategy: OpenStrategyProp;
|
7238
|
-
itemType:
|
7243
|
+
itemType: SelectItemKey;
|
7239
7244
|
} & {
|
7240
7245
|
height?: string | number | undefined;
|
7241
7246
|
width?: string | number | undefined;
|
@@ -7290,7 +7295,7 @@ declare const VList: {
|
|
7290
7295
|
activatable: boolean;
|
7291
7296
|
selectable: boolean;
|
7292
7297
|
openStrategy: OpenStrategyProp;
|
7293
|
-
itemType:
|
7298
|
+
itemType: SelectItemKey;
|
7294
7299
|
}>;
|
7295
7300
|
__isFragment?: never;
|
7296
7301
|
__isTeleport?: never;
|
@@ -7312,7 +7317,7 @@ declare const VList: {
|
|
7312
7317
|
activatable: boolean;
|
7313
7318
|
selectable: boolean;
|
7314
7319
|
openStrategy: OpenStrategyProp;
|
7315
|
-
itemType:
|
7320
|
+
itemType: SelectItemKey;
|
7316
7321
|
} & {
|
7317
7322
|
height?: string | number | undefined;
|
7318
7323
|
width?: string | number | undefined;
|
@@ -7386,7 +7391,7 @@ declare const VList: {
|
|
7386
7391
|
activatable: boolean;
|
7387
7392
|
selectable: boolean;
|
7388
7393
|
openStrategy: OpenStrategyProp;
|
7389
|
-
itemType:
|
7394
|
+
itemType: SelectItemKey;
|
7390
7395
|
}, {}, string, vue.SlotsType<Partial<{
|
7391
7396
|
title: (arg: ListItemTitleSlot & {
|
7392
7397
|
item: any;
|
@@ -7473,12 +7478,12 @@ declare const VList: {
|
|
7473
7478
|
type: PropType<SelectItemKey>;
|
7474
7479
|
default: string;
|
7475
7480
|
};
|
7476
|
-
returnObject: BooleanConstructor;
|
7477
|
-
valueComparator: PropType<typeof deepEqual>;
|
7478
7481
|
itemType: {
|
7479
|
-
type:
|
7482
|
+
type: PropType<SelectItemKey>;
|
7480
7483
|
default: string;
|
7481
7484
|
};
|
7485
|
+
returnObject: BooleanConstructor;
|
7486
|
+
valueComparator: PropType<typeof deepEqual>;
|
7482
7487
|
elevation: {
|
7483
7488
|
type: (StringConstructor | NumberConstructor)[];
|
7484
7489
|
validator(v: any): boolean;
|
@@ -7580,12 +7585,12 @@ declare const VList: {
|
|
7580
7585
|
type: PropType<SelectItemKey>;
|
7581
7586
|
default: string;
|
7582
7587
|
};
|
7583
|
-
returnObject: BooleanConstructor;
|
7584
|
-
valueComparator: PropType<typeof deepEqual>;
|
7585
7588
|
itemType: {
|
7586
|
-
type:
|
7589
|
+
type: PropType<SelectItemKey>;
|
7587
7590
|
default: string;
|
7588
7591
|
};
|
7592
|
+
returnObject: BooleanConstructor;
|
7593
|
+
valueComparator: PropType<typeof deepEqual>;
|
7589
7594
|
elevation: {
|
7590
7595
|
type: (StringConstructor | NumberConstructor)[];
|
7591
7596
|
validator(v: any): boolean;
|
@@ -10847,6 +10852,7 @@ declare const VAutocomplete: {
|
|
10847
10852
|
hideSpinButtons: boolean;
|
10848
10853
|
persistentHint: boolean;
|
10849
10854
|
itemChildren: SelectItemKey;
|
10855
|
+
itemType: SelectItemKey;
|
10850
10856
|
clearable: boolean;
|
10851
10857
|
persistentClear: boolean;
|
10852
10858
|
singleLine: boolean;
|
@@ -10917,7 +10923,7 @@ declare const VAutocomplete: {
|
|
10917
10923
|
activatable: boolean;
|
10918
10924
|
selectable: boolean;
|
10919
10925
|
openStrategy: OpenStrategyProp;
|
10920
|
-
itemType:
|
10926
|
+
itemType: SelectItemKey;
|
10921
10927
|
}> & Omit<{
|
10922
10928
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
10923
10929
|
nav: boolean;
|
@@ -10935,7 +10941,7 @@ declare const VAutocomplete: {
|
|
10935
10941
|
activatable: boolean;
|
10936
10942
|
selectable: boolean;
|
10937
10943
|
openStrategy: OpenStrategyProp;
|
10938
|
-
itemType:
|
10944
|
+
itemType: SelectItemKey;
|
10939
10945
|
height?: string | number | undefined;
|
10940
10946
|
width?: string | number | undefined;
|
10941
10947
|
border?: string | number | boolean | undefined;
|
@@ -13281,6 +13287,7 @@ declare const VAutocomplete: {
|
|
13281
13287
|
hideSpinButtons: boolean;
|
13282
13288
|
persistentHint: boolean;
|
13283
13289
|
itemChildren: SelectItemKey;
|
13290
|
+
itemType: SelectItemKey;
|
13284
13291
|
clearable: boolean;
|
13285
13292
|
persistentClear: boolean;
|
13286
13293
|
singleLine: boolean;
|
@@ -13377,6 +13384,7 @@ declare const VAutocomplete: {
|
|
13377
13384
|
hideSpinButtons: boolean;
|
13378
13385
|
persistentHint: boolean;
|
13379
13386
|
itemChildren: SelectItemKey;
|
13387
|
+
itemType: SelectItemKey;
|
13380
13388
|
clearable: boolean;
|
13381
13389
|
persistentClear: boolean;
|
13382
13390
|
singleLine: boolean;
|
@@ -13447,7 +13455,7 @@ declare const VAutocomplete: {
|
|
13447
13455
|
activatable: boolean;
|
13448
13456
|
selectable: boolean;
|
13449
13457
|
openStrategy: OpenStrategyProp;
|
13450
|
-
itemType:
|
13458
|
+
itemType: SelectItemKey;
|
13451
13459
|
}> & Omit<{
|
13452
13460
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
13453
13461
|
nav: boolean;
|
@@ -13465,7 +13473,7 @@ declare const VAutocomplete: {
|
|
13465
13473
|
activatable: boolean;
|
13466
13474
|
selectable: boolean;
|
13467
13475
|
openStrategy: OpenStrategyProp;
|
13468
|
-
itemType:
|
13476
|
+
itemType: SelectItemKey;
|
13469
13477
|
height?: string | number | undefined;
|
13470
13478
|
width?: string | number | undefined;
|
13471
13479
|
border?: string | number | boolean | undefined;
|
@@ -15806,6 +15814,7 @@ declare const VAutocomplete: {
|
|
15806
15814
|
hideSpinButtons: boolean;
|
15807
15815
|
persistentHint: boolean;
|
15808
15816
|
itemChildren: SelectItemKey;
|
15817
|
+
itemType: SelectItemKey;
|
15809
15818
|
clearable: boolean;
|
15810
15819
|
persistentClear: boolean;
|
15811
15820
|
singleLine: boolean;
|
@@ -15859,6 +15868,7 @@ declare const VAutocomplete: {
|
|
15859
15868
|
hideSpinButtons: boolean;
|
15860
15869
|
persistentHint: boolean;
|
15861
15870
|
itemChildren: SelectItemKey;
|
15871
|
+
itemType: SelectItemKey;
|
15862
15872
|
clearable: boolean;
|
15863
15873
|
persistentClear: boolean;
|
15864
15874
|
singleLine: boolean;
|
@@ -15929,7 +15939,7 @@ declare const VAutocomplete: {
|
|
15929
15939
|
activatable: boolean;
|
15930
15940
|
selectable: boolean;
|
15931
15941
|
openStrategy: OpenStrategyProp;
|
15932
|
-
itemType:
|
15942
|
+
itemType: SelectItemKey;
|
15933
15943
|
}> & Omit<{
|
15934
15944
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
15935
15945
|
nav: boolean;
|
@@ -15947,7 +15957,7 @@ declare const VAutocomplete: {
|
|
15947
15957
|
activatable: boolean;
|
15948
15958
|
selectable: boolean;
|
15949
15959
|
openStrategy: OpenStrategyProp;
|
15950
|
-
itemType:
|
15960
|
+
itemType: SelectItemKey;
|
15951
15961
|
height?: string | number | undefined;
|
15952
15962
|
width?: string | number | undefined;
|
15953
15963
|
border?: string | number | boolean | undefined;
|
@@ -18293,6 +18303,7 @@ declare const VAutocomplete: {
|
|
18293
18303
|
hideSpinButtons: boolean;
|
18294
18304
|
persistentHint: boolean;
|
18295
18305
|
itemChildren: SelectItemKey;
|
18306
|
+
itemType: SelectItemKey;
|
18296
18307
|
clearable: boolean;
|
18297
18308
|
persistentClear: boolean;
|
18298
18309
|
singleLine: boolean;
|
@@ -18527,6 +18538,10 @@ declare const VAutocomplete: {
|
|
18527
18538
|
type: PropType<SelectItemKey>;
|
18528
18539
|
default: string;
|
18529
18540
|
};
|
18541
|
+
itemType: {
|
18542
|
+
type: PropType<SelectItemKey>;
|
18543
|
+
default: string;
|
18544
|
+
};
|
18530
18545
|
returnObject: BooleanConstructor;
|
18531
18546
|
valueComparator: PropType<typeof deepEqual>;
|
18532
18547
|
chips: BooleanConstructor;
|
@@ -18722,6 +18737,10 @@ declare const VAutocomplete: {
|
|
18722
18737
|
type: PropType<SelectItemKey>;
|
18723
18738
|
default: string;
|
18724
18739
|
};
|
18740
|
+
itemType: {
|
18741
|
+
type: PropType<SelectItemKey>;
|
18742
|
+
default: string;
|
18743
|
+
};
|
18725
18744
|
returnObject: BooleanConstructor;
|
18726
18745
|
valueComparator: PropType<typeof deepEqual>;
|
18727
18746
|
chips: BooleanConstructor;
|
@@ -28741,6 +28760,7 @@ declare const VCombobox: {
|
|
28741
28760
|
hideSpinButtons: boolean;
|
28742
28761
|
persistentHint: boolean;
|
28743
28762
|
itemChildren: SelectItemKey;
|
28763
|
+
itemType: SelectItemKey;
|
28744
28764
|
clearable: boolean;
|
28745
28765
|
persistentClear: boolean;
|
28746
28766
|
singleLine: boolean;
|
@@ -28811,7 +28831,7 @@ declare const VCombobox: {
|
|
28811
28831
|
activatable: boolean;
|
28812
28832
|
selectable: boolean;
|
28813
28833
|
openStrategy: OpenStrategyProp;
|
28814
|
-
itemType:
|
28834
|
+
itemType: SelectItemKey;
|
28815
28835
|
}> & Omit<{
|
28816
28836
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
28817
28837
|
nav: boolean;
|
@@ -28829,7 +28849,7 @@ declare const VCombobox: {
|
|
28829
28849
|
activatable: boolean;
|
28830
28850
|
selectable: boolean;
|
28831
28851
|
openStrategy: OpenStrategyProp;
|
28832
|
-
itemType:
|
28852
|
+
itemType: SelectItemKey;
|
28833
28853
|
height?: string | number | undefined;
|
28834
28854
|
width?: string | number | undefined;
|
28835
28855
|
border?: string | number | boolean | undefined;
|
@@ -31173,6 +31193,7 @@ declare const VCombobox: {
|
|
31173
31193
|
hideSpinButtons: boolean;
|
31174
31194
|
persistentHint: boolean;
|
31175
31195
|
itemChildren: SelectItemKey;
|
31196
|
+
itemType: SelectItemKey;
|
31176
31197
|
clearable: boolean;
|
31177
31198
|
persistentClear: boolean;
|
31178
31199
|
singleLine: boolean;
|
@@ -31269,6 +31290,7 @@ declare const VCombobox: {
|
|
31269
31290
|
hideSpinButtons: boolean;
|
31270
31291
|
persistentHint: boolean;
|
31271
31292
|
itemChildren: SelectItemKey;
|
31293
|
+
itemType: SelectItemKey;
|
31272
31294
|
clearable: boolean;
|
31273
31295
|
persistentClear: boolean;
|
31274
31296
|
singleLine: boolean;
|
@@ -31339,7 +31361,7 @@ declare const VCombobox: {
|
|
31339
31361
|
activatable: boolean;
|
31340
31362
|
selectable: boolean;
|
31341
31363
|
openStrategy: OpenStrategyProp;
|
31342
|
-
itemType:
|
31364
|
+
itemType: SelectItemKey;
|
31343
31365
|
}> & Omit<{
|
31344
31366
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
31345
31367
|
nav: boolean;
|
@@ -31357,7 +31379,7 @@ declare const VCombobox: {
|
|
31357
31379
|
activatable: boolean;
|
31358
31380
|
selectable: boolean;
|
31359
31381
|
openStrategy: OpenStrategyProp;
|
31360
|
-
itemType:
|
31382
|
+
itemType: SelectItemKey;
|
31361
31383
|
height?: string | number | undefined;
|
31362
31384
|
width?: string | number | undefined;
|
31363
31385
|
border?: string | number | boolean | undefined;
|
@@ -33696,6 +33718,7 @@ declare const VCombobox: {
|
|
33696
33718
|
hideSpinButtons: boolean;
|
33697
33719
|
persistentHint: boolean;
|
33698
33720
|
itemChildren: SelectItemKey;
|
33721
|
+
itemType: SelectItemKey;
|
33699
33722
|
clearable: boolean;
|
33700
33723
|
persistentClear: boolean;
|
33701
33724
|
singleLine: boolean;
|
@@ -33749,6 +33772,7 @@ declare const VCombobox: {
|
|
33749
33772
|
hideSpinButtons: boolean;
|
33750
33773
|
persistentHint: boolean;
|
33751
33774
|
itemChildren: SelectItemKey;
|
33775
|
+
itemType: SelectItemKey;
|
33752
33776
|
clearable: boolean;
|
33753
33777
|
persistentClear: boolean;
|
33754
33778
|
singleLine: boolean;
|
@@ -33819,7 +33843,7 @@ declare const VCombobox: {
|
|
33819
33843
|
activatable: boolean;
|
33820
33844
|
selectable: boolean;
|
33821
33845
|
openStrategy: OpenStrategyProp;
|
33822
|
-
itemType:
|
33846
|
+
itemType: SelectItemKey;
|
33823
33847
|
}> & Omit<{
|
33824
33848
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
33825
33849
|
nav: boolean;
|
@@ -33837,7 +33861,7 @@ declare const VCombobox: {
|
|
33837
33861
|
activatable: boolean;
|
33838
33862
|
selectable: boolean;
|
33839
33863
|
openStrategy: OpenStrategyProp;
|
33840
|
-
itemType:
|
33864
|
+
itemType: SelectItemKey;
|
33841
33865
|
height?: string | number | undefined;
|
33842
33866
|
width?: string | number | undefined;
|
33843
33867
|
border?: string | number | boolean | undefined;
|
@@ -36181,6 +36205,7 @@ declare const VCombobox: {
|
|
36181
36205
|
hideSpinButtons: boolean;
|
36182
36206
|
persistentHint: boolean;
|
36183
36207
|
itemChildren: SelectItemKey;
|
36208
|
+
itemType: SelectItemKey;
|
36184
36209
|
clearable: boolean;
|
36185
36210
|
persistentClear: boolean;
|
36186
36211
|
singleLine: boolean;
|
@@ -36415,6 +36440,10 @@ declare const VCombobox: {
|
|
36415
36440
|
type: PropType<SelectItemKey>;
|
36416
36441
|
default: string;
|
36417
36442
|
};
|
36443
|
+
itemType: {
|
36444
|
+
type: PropType<SelectItemKey>;
|
36445
|
+
default: string;
|
36446
|
+
};
|
36418
36447
|
returnObject: {
|
36419
36448
|
type: PropType<boolean>;
|
36420
36449
|
default: boolean;
|
@@ -36619,6 +36648,10 @@ declare const VCombobox: {
|
|
36619
36648
|
type: PropType<SelectItemKey>;
|
36620
36649
|
default: string;
|
36621
36650
|
};
|
36651
|
+
itemType: {
|
36652
|
+
type: PropType<SelectItemKey>;
|
36653
|
+
default: string;
|
36654
|
+
};
|
36622
36655
|
returnObject: {
|
36623
36656
|
type: PropType<boolean>;
|
36624
36657
|
default: boolean;
|
@@ -36825,7 +36858,7 @@ interface DataIteratorItemProps {
|
|
36825
36858
|
itemSelectable: SelectItemKey;
|
36826
36859
|
returnObject: boolean;
|
36827
36860
|
}
|
36828
|
-
interface DataIteratorItem<T = any> extends GroupableItem<T>, SelectableItem {
|
36861
|
+
interface DataIteratorItem<T = any> extends Omit<InternalItem<T>, 'type'>, GroupableItem<T>, SelectableItem {
|
36829
36862
|
value: unknown;
|
36830
36863
|
}
|
36831
36864
|
|
@@ -64583,6 +64616,7 @@ declare const VSelect: {
|
|
64583
64616
|
hideSpinButtons: boolean;
|
64584
64617
|
persistentHint: boolean;
|
64585
64618
|
itemChildren: SelectItemKey;
|
64619
|
+
itemType: SelectItemKey;
|
64586
64620
|
clearable: boolean;
|
64587
64621
|
persistentClear: boolean;
|
64588
64622
|
singleLine: boolean;
|
@@ -64649,7 +64683,7 @@ declare const VSelect: {
|
|
64649
64683
|
activatable: boolean;
|
64650
64684
|
selectable: boolean;
|
64651
64685
|
openStrategy: OpenStrategyProp;
|
64652
|
-
itemType:
|
64686
|
+
itemType: SelectItemKey;
|
64653
64687
|
}> & Omit<{
|
64654
64688
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
64655
64689
|
nav: boolean;
|
@@ -64667,7 +64701,7 @@ declare const VSelect: {
|
|
64667
64701
|
activatable: boolean;
|
64668
64702
|
selectable: boolean;
|
64669
64703
|
openStrategy: OpenStrategyProp;
|
64670
|
-
itemType:
|
64704
|
+
itemType: SelectItemKey;
|
64671
64705
|
height?: string | number | undefined;
|
64672
64706
|
width?: string | number | undefined;
|
64673
64707
|
border?: string | number | boolean | undefined;
|
@@ -66999,6 +67033,7 @@ declare const VSelect: {
|
|
66999
67033
|
hideSpinButtons: boolean;
|
67000
67034
|
persistentHint: boolean;
|
67001
67035
|
itemChildren: SelectItemKey;
|
67036
|
+
itemType: SelectItemKey;
|
67002
67037
|
clearable: boolean;
|
67003
67038
|
persistentClear: boolean;
|
67004
67039
|
singleLine: boolean;
|
@@ -67093,6 +67128,7 @@ declare const VSelect: {
|
|
67093
67128
|
hideSpinButtons: boolean;
|
67094
67129
|
persistentHint: boolean;
|
67095
67130
|
itemChildren: SelectItemKey;
|
67131
|
+
itemType: SelectItemKey;
|
67096
67132
|
clearable: boolean;
|
67097
67133
|
persistentClear: boolean;
|
67098
67134
|
singleLine: boolean;
|
@@ -67159,7 +67195,7 @@ declare const VSelect: {
|
|
67159
67195
|
activatable: boolean;
|
67160
67196
|
selectable: boolean;
|
67161
67197
|
openStrategy: OpenStrategyProp;
|
67162
|
-
itemType:
|
67198
|
+
itemType: SelectItemKey;
|
67163
67199
|
}> & Omit<{
|
67164
67200
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
67165
67201
|
nav: boolean;
|
@@ -67177,7 +67213,7 @@ declare const VSelect: {
|
|
67177
67213
|
activatable: boolean;
|
67178
67214
|
selectable: boolean;
|
67179
67215
|
openStrategy: OpenStrategyProp;
|
67180
|
-
itemType:
|
67216
|
+
itemType: SelectItemKey;
|
67181
67217
|
height?: string | number | undefined;
|
67182
67218
|
width?: string | number | undefined;
|
67183
67219
|
border?: string | number | boolean | undefined;
|
@@ -69505,6 +69541,7 @@ declare const VSelect: {
|
|
69505
69541
|
hideSpinButtons: boolean;
|
69506
69542
|
persistentHint: boolean;
|
69507
69543
|
itemChildren: SelectItemKey;
|
69544
|
+
itemType: SelectItemKey;
|
69508
69545
|
clearable: boolean;
|
69509
69546
|
persistentClear: boolean;
|
69510
69547
|
singleLine: boolean;
|
@@ -69556,6 +69593,7 @@ declare const VSelect: {
|
|
69556
69593
|
hideSpinButtons: boolean;
|
69557
69594
|
persistentHint: boolean;
|
69558
69595
|
itemChildren: SelectItemKey;
|
69596
|
+
itemType: SelectItemKey;
|
69559
69597
|
clearable: boolean;
|
69560
69598
|
persistentClear: boolean;
|
69561
69599
|
singleLine: boolean;
|
@@ -69622,7 +69660,7 @@ declare const VSelect: {
|
|
69622
69660
|
activatable: boolean;
|
69623
69661
|
selectable: boolean;
|
69624
69662
|
openStrategy: OpenStrategyProp;
|
69625
|
-
itemType:
|
69663
|
+
itemType: SelectItemKey;
|
69626
69664
|
}> & Omit<{
|
69627
69665
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
69628
69666
|
nav: boolean;
|
@@ -69640,7 +69678,7 @@ declare const VSelect: {
|
|
69640
69678
|
activatable: boolean;
|
69641
69679
|
selectable: boolean;
|
69642
69680
|
openStrategy: OpenStrategyProp;
|
69643
|
-
itemType:
|
69681
|
+
itemType: SelectItemKey;
|
69644
69682
|
height?: string | number | undefined;
|
69645
69683
|
width?: string | number | undefined;
|
69646
69684
|
border?: string | number | boolean | undefined;
|
@@ -71972,6 +72010,7 @@ declare const VSelect: {
|
|
71972
72010
|
hideSpinButtons: boolean;
|
71973
72011
|
persistentHint: boolean;
|
71974
72012
|
itemChildren: SelectItemKey;
|
72013
|
+
itemType: SelectItemKey;
|
71975
72014
|
clearable: boolean;
|
71976
72015
|
persistentClear: boolean;
|
71977
72016
|
singleLine: boolean;
|
@@ -72209,6 +72248,10 @@ declare const VSelect: {
|
|
72209
72248
|
type: PropType<SelectItemKey>;
|
72210
72249
|
default: string;
|
72211
72250
|
};
|
72251
|
+
itemType: {
|
72252
|
+
type: PropType<SelectItemKey>;
|
72253
|
+
default: string;
|
72254
|
+
};
|
72212
72255
|
returnObject: BooleanConstructor;
|
72213
72256
|
valueComparator: PropType<typeof deepEqual>;
|
72214
72257
|
chips: BooleanConstructor;
|
@@ -72392,6 +72435,10 @@ declare const VSelect: {
|
|
72392
72435
|
type: PropType<SelectItemKey>;
|
72393
72436
|
default: string;
|
72394
72437
|
};
|
72438
|
+
itemType: {
|
72439
|
+
type: PropType<SelectItemKey>;
|
72440
|
+
default: string;
|
72441
|
+
};
|
72395
72442
|
returnObject: BooleanConstructor;
|
72396
72443
|
valueComparator: PropType<typeof deepEqual>;
|
72397
72444
|
chips: BooleanConstructor;
|
@@ -88165,6 +88212,7 @@ declare const VTreeview: {
|
|
88165
88212
|
tag: string | JSXComponent;
|
88166
88213
|
lines: false | "one" | "two" | "three";
|
88167
88214
|
mandatory: boolean;
|
88215
|
+
separateRoots: boolean;
|
88168
88216
|
filterMode: FilterMode;
|
88169
88217
|
noFilter: boolean;
|
88170
88218
|
filterKeys: FilterKeys;
|
@@ -88184,6 +88232,8 @@ declare const VTreeview: {
|
|
88184
88232
|
itemTitle: SelectItemKey;
|
88185
88233
|
itemChildren: SelectItemKey;
|
88186
88234
|
itemProps: SelectItemKey;
|
88235
|
+
itemType: SelectItemKey;
|
88236
|
+
hideActions: boolean;
|
88187
88237
|
loadingIcon: string;
|
88188
88238
|
openAll: boolean;
|
88189
88239
|
} & {
|
@@ -88226,6 +88276,7 @@ declare const VTreeview: {
|
|
88226
88276
|
value: boolean;
|
88227
88277
|
path: unknown[];
|
88228
88278
|
}) => void) | undefined;
|
88279
|
+
indentLines?: boolean | IndentLinesVariant | undefined;
|
88229
88280
|
selectedColor?: string | undefined;
|
88230
88281
|
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
88231
88282
|
} & {
|
@@ -88265,6 +88316,7 @@ declare const VTreeview: {
|
|
88265
88316
|
tag: string | JSXComponent;
|
88266
88317
|
lines: false | "one" | "two" | "three";
|
88267
88318
|
mandatory: boolean;
|
88319
|
+
separateRoots: boolean;
|
88268
88320
|
filterMode: FilterMode;
|
88269
88321
|
noFilter: boolean;
|
88270
88322
|
filterKeys: FilterKeys;
|
@@ -88286,6 +88338,8 @@ declare const VTreeview: {
|
|
88286
88338
|
itemTitle: SelectItemKey;
|
88287
88339
|
itemChildren: SelectItemKey;
|
88288
88340
|
itemProps: SelectItemKey;
|
88341
|
+
itemType: SelectItemKey;
|
88342
|
+
hideActions: boolean;
|
88289
88343
|
loadingIcon: string;
|
88290
88344
|
openAll: boolean;
|
88291
88345
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -88328,6 +88382,7 @@ declare const VTreeview: {
|
|
88328
88382
|
tag: string | JSXComponent;
|
88329
88383
|
lines: false | "one" | "two" | "three";
|
88330
88384
|
mandatory: boolean;
|
88385
|
+
separateRoots: boolean;
|
88331
88386
|
filterMode: FilterMode;
|
88332
88387
|
noFilter: boolean;
|
88333
88388
|
filterKeys: FilterKeys;
|
@@ -88347,6 +88402,8 @@ declare const VTreeview: {
|
|
88347
88402
|
itemTitle: SelectItemKey;
|
88348
88403
|
itemChildren: SelectItemKey;
|
88349
88404
|
itemProps: SelectItemKey;
|
88405
|
+
itemType: SelectItemKey;
|
88406
|
+
hideActions: boolean;
|
88350
88407
|
loadingIcon: string;
|
88351
88408
|
openAll: boolean;
|
88352
88409
|
} & {
|
@@ -88389,6 +88446,7 @@ declare const VTreeview: {
|
|
88389
88446
|
value: boolean;
|
88390
88447
|
path: unknown[];
|
88391
88448
|
}) => void) | undefined;
|
88449
|
+
indentLines?: boolean | IndentLinesVariant | undefined;
|
88392
88450
|
selectedColor?: string | undefined;
|
88393
88451
|
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
88394
88452
|
} & {
|
@@ -88413,6 +88471,7 @@ declare const VTreeview: {
|
|
88413
88471
|
tag: string | JSXComponent;
|
88414
88472
|
lines: false | "one" | "two" | "three";
|
88415
88473
|
mandatory: boolean;
|
88474
|
+
separateRoots: boolean;
|
88416
88475
|
filterMode: FilterMode;
|
88417
88476
|
noFilter: boolean;
|
88418
88477
|
filterKeys: FilterKeys;
|
@@ -88434,6 +88493,8 @@ declare const VTreeview: {
|
|
88434
88493
|
itemTitle: SelectItemKey;
|
88435
88494
|
itemChildren: SelectItemKey;
|
88436
88495
|
itemProps: SelectItemKey;
|
88496
|
+
itemType: SelectItemKey;
|
88497
|
+
hideActions: boolean;
|
88437
88498
|
loadingIcon: string;
|
88438
88499
|
openAll: boolean;
|
88439
88500
|
}>;
|
@@ -88447,6 +88508,7 @@ declare const VTreeview: {
|
|
88447
88508
|
tag: string | JSXComponent;
|
88448
88509
|
lines: false | "one" | "two" | "three";
|
88449
88510
|
mandatory: boolean;
|
88511
|
+
separateRoots: boolean;
|
88450
88512
|
filterMode: FilterMode;
|
88451
88513
|
noFilter: boolean;
|
88452
88514
|
filterKeys: FilterKeys;
|
@@ -88466,6 +88528,8 @@ declare const VTreeview: {
|
|
88466
88528
|
itemTitle: SelectItemKey;
|
88467
88529
|
itemChildren: SelectItemKey;
|
88468
88530
|
itemProps: SelectItemKey;
|
88531
|
+
itemType: SelectItemKey;
|
88532
|
+
hideActions: boolean;
|
88469
88533
|
loadingIcon: string;
|
88470
88534
|
openAll: boolean;
|
88471
88535
|
} & {
|
@@ -88508,6 +88572,7 @@ declare const VTreeview: {
|
|
88508
88572
|
value: boolean;
|
88509
88573
|
path: unknown[];
|
88510
88574
|
}) => void) | undefined;
|
88575
|
+
indentLines?: boolean | IndentLinesVariant | undefined;
|
88511
88576
|
selectedColor?: string | undefined;
|
88512
88577
|
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
88513
88578
|
} & {
|
@@ -88547,6 +88612,7 @@ declare const VTreeview: {
|
|
88547
88612
|
tag: string | JSXComponent;
|
88548
88613
|
lines: false | "one" | "two" | "three";
|
88549
88614
|
mandatory: boolean;
|
88615
|
+
separateRoots: boolean;
|
88550
88616
|
filterMode: FilterMode;
|
88551
88617
|
noFilter: boolean;
|
88552
88618
|
filterKeys: FilterKeys;
|
@@ -88568,6 +88634,8 @@ declare const VTreeview: {
|
|
88568
88634
|
itemTitle: SelectItemKey;
|
88569
88635
|
itemChildren: SelectItemKey;
|
88570
88636
|
itemProps: SelectItemKey;
|
88637
|
+
itemType: SelectItemKey;
|
88638
|
+
hideActions: boolean;
|
88571
88639
|
loadingIcon: string;
|
88572
88640
|
openAll: boolean;
|
88573
88641
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -88601,11 +88669,11 @@ declare const VTreeview: {
|
|
88601
88669
|
}, slots: VListChildrenSlots<T>) => GenericProps<typeof props, typeof slots>) & FilterPropsOptions<{
|
88602
88670
|
modelValue: ArrayConstructor;
|
88603
88671
|
variant: Omit<{
|
88604
|
-
type:
|
88672
|
+
type: PropType<Variant$2>;
|
88605
88673
|
default: string;
|
88606
88674
|
validator: (v: any) => boolean;
|
88607
88675
|
}, "type" | "default"> & {
|
88608
|
-
type:
|
88676
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
88609
88677
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
88610
88678
|
};
|
88611
88679
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -88617,19 +88685,19 @@ declare const VTreeview: {
|
|
88617
88685
|
minHeight: (StringConstructor | NumberConstructor)[];
|
88618
88686
|
minWidth: (StringConstructor | NumberConstructor)[];
|
88619
88687
|
style: {
|
88620
|
-
type:
|
88688
|
+
type: PropType<vue.StyleValue>;
|
88621
88689
|
default: null;
|
88622
88690
|
};
|
88623
88691
|
disabled: BooleanConstructor;
|
88624
88692
|
activated: null;
|
88625
|
-
class:
|
88693
|
+
class: PropType<ClassValue>;
|
88626
88694
|
theme: StringConstructor;
|
88627
88695
|
tag: {
|
88628
|
-
type:
|
88696
|
+
type: PropType<string | JSXComponent>;
|
88629
88697
|
default: string;
|
88630
88698
|
};
|
88631
88699
|
lines: {
|
88632
|
-
type:
|
88700
|
+
type: PropType<"one" | "two" | "three" | false>;
|
88633
88701
|
default: string;
|
88634
88702
|
};
|
88635
88703
|
mandatory: BooleanConstructor;
|
@@ -88640,21 +88708,21 @@ declare const VTreeview: {
|
|
88640
88708
|
};
|
88641
88709
|
opened: null;
|
88642
88710
|
items: {
|
88643
|
-
type:
|
88711
|
+
type: PropType<ItemProps["items"]>;
|
88644
88712
|
default: () => never[];
|
88645
88713
|
};
|
88646
88714
|
itemValue: {
|
88647
|
-
type:
|
88715
|
+
type: PropType<SelectItemKey>;
|
88648
88716
|
default: string;
|
88649
88717
|
};
|
88650
88718
|
returnObject: BooleanConstructor;
|
88651
88719
|
selectStrategy: {
|
88652
|
-
type:
|
88720
|
+
type: PropType<SelectStrategyProp>;
|
88653
88721
|
default: NonNullable<SelectStrategyProp>;
|
88654
88722
|
};
|
88655
|
-
valueComparator:
|
88723
|
+
valueComparator: PropType<typeof deepEqual>;
|
88656
88724
|
density: {
|
88657
|
-
type:
|
88725
|
+
type: PropType<Density>;
|
88658
88726
|
default: string;
|
88659
88727
|
validator: (v: any) => boolean;
|
88660
88728
|
};
|
@@ -88667,83 +88735,90 @@ declare const VTreeview: {
|
|
88667
88735
|
bgColor: StringConstructor;
|
88668
88736
|
activeColor: StringConstructor;
|
88669
88737
|
slim: {
|
88670
|
-
type:
|
88738
|
+
type: PropType<boolean>;
|
88671
88739
|
default: boolean;
|
88672
88740
|
};
|
88673
88741
|
activeClass: StringConstructor;
|
88674
88742
|
filterable: BooleanConstructor;
|
88675
88743
|
activatable: BooleanConstructor;
|
88676
88744
|
selectable: BooleanConstructor;
|
88677
|
-
activeStrategy:
|
88678
|
-
'onUpdate:opened':
|
88745
|
+
activeStrategy: PropType<ActiveStrategyProp>;
|
88746
|
+
'onUpdate:opened': PropType<() => void>;
|
88679
88747
|
collapseIcon: {
|
88680
|
-
type:
|
88748
|
+
type: PropType<IconValue>;
|
88681
88749
|
default: NonNullable<IconValue>;
|
88682
88750
|
};
|
88683
88751
|
expandIcon: {
|
88684
|
-
type:
|
88752
|
+
type: PropType<IconValue>;
|
88685
88753
|
default: NonNullable<IconValue>;
|
88686
88754
|
};
|
88687
88755
|
itemTitle: {
|
88688
|
-
type:
|
88756
|
+
type: PropType<SelectItemKey>;
|
88689
88757
|
default: string;
|
88690
88758
|
};
|
88691
88759
|
itemChildren: {
|
88692
|
-
type:
|
88760
|
+
type: PropType<SelectItemKey>;
|
88693
88761
|
default: string;
|
88694
88762
|
};
|
88695
88763
|
itemProps: {
|
88696
|
-
type:
|
88764
|
+
type: PropType<SelectItemKey>;
|
88697
88765
|
default: string;
|
88698
88766
|
};
|
88699
|
-
|
88767
|
+
itemType: {
|
88768
|
+
type: PropType<SelectItemKey>;
|
88769
|
+
default: string;
|
88770
|
+
};
|
88771
|
+
'onClick:open': PropType<(args_0: {
|
88700
88772
|
id: unknown;
|
88701
88773
|
value: boolean;
|
88702
88774
|
path: unknown[];
|
88703
88775
|
}) => void>;
|
88704
|
-
'onClick:select':
|
88776
|
+
'onClick:select': PropType<(args_0: {
|
88705
88777
|
id: unknown;
|
88706
88778
|
value: boolean;
|
88707
88779
|
path: unknown[];
|
88708
88780
|
}) => void>;
|
88781
|
+
separateRoots: BooleanConstructor;
|
88709
88782
|
openOnClick: {
|
88710
88783
|
type: BooleanConstructor;
|
88711
88784
|
default: undefined;
|
88712
88785
|
};
|
88713
|
-
falseIcon:
|
88714
|
-
trueIcon:
|
88786
|
+
falseIcon: PropType<IconValue>;
|
88787
|
+
trueIcon: PropType<IconValue>;
|
88715
88788
|
indeterminateIcon: {
|
88716
|
-
type:
|
88789
|
+
type: PropType<IconValue>;
|
88717
88790
|
default: string;
|
88718
88791
|
};
|
88792
|
+
hideActions: BooleanConstructor;
|
88719
88793
|
loadingIcon: {
|
88720
88794
|
type: StringConstructor;
|
88721
88795
|
default: string;
|
88722
88796
|
};
|
88723
88797
|
selectedColor: StringConstructor;
|
88724
|
-
loadChildren:
|
88725
|
-
customFilter:
|
88726
|
-
customKeyFilter:
|
88798
|
+
loadChildren: PropType<(item: unknown) => Promise<void>>;
|
88799
|
+
customFilter: PropType<FilterFunction>;
|
88800
|
+
customKeyFilter: PropType<FilterKeyFunctions>;
|
88727
88801
|
filterKeys: {
|
88728
|
-
type:
|
88802
|
+
type: PropType<FilterKeys>;
|
88729
88803
|
default: NonNullable<FilterKeys>;
|
88730
88804
|
};
|
88731
88805
|
filterMode: {
|
88732
|
-
type:
|
88806
|
+
type: PropType<FilterMode>;
|
88733
88807
|
default: string;
|
88734
88808
|
};
|
88735
88809
|
noFilter: BooleanConstructor;
|
88736
88810
|
fluid: BooleanConstructor;
|
88737
88811
|
openAll: BooleanConstructor;
|
88812
|
+
indentLines: PropType<boolean | IndentLinesVariant>;
|
88738
88813
|
search: StringConstructor;
|
88739
88814
|
}, vue.ExtractPropTypes<{
|
88740
88815
|
modelValue: ArrayConstructor;
|
88741
88816
|
variant: Omit<{
|
88742
|
-
type:
|
88817
|
+
type: PropType<Variant$2>;
|
88743
88818
|
default: string;
|
88744
88819
|
validator: (v: any) => boolean;
|
88745
88820
|
}, "type" | "default"> & {
|
88746
|
-
type:
|
88821
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
88747
88822
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
88748
88823
|
};
|
88749
88824
|
height: (StringConstructor | NumberConstructor)[];
|
@@ -88755,19 +88830,19 @@ declare const VTreeview: {
|
|
88755
88830
|
minHeight: (StringConstructor | NumberConstructor)[];
|
88756
88831
|
minWidth: (StringConstructor | NumberConstructor)[];
|
88757
88832
|
style: {
|
88758
|
-
type:
|
88833
|
+
type: PropType<vue.StyleValue>;
|
88759
88834
|
default: null;
|
88760
88835
|
};
|
88761
88836
|
disabled: BooleanConstructor;
|
88762
88837
|
activated: null;
|
88763
|
-
class:
|
88838
|
+
class: PropType<ClassValue>;
|
88764
88839
|
theme: StringConstructor;
|
88765
88840
|
tag: {
|
88766
|
-
type:
|
88841
|
+
type: PropType<string | JSXComponent>;
|
88767
88842
|
default: string;
|
88768
88843
|
};
|
88769
88844
|
lines: {
|
88770
|
-
type:
|
88845
|
+
type: PropType<"one" | "two" | "three" | false>;
|
88771
88846
|
default: string;
|
88772
88847
|
};
|
88773
88848
|
mandatory: BooleanConstructor;
|
@@ -88778,21 +88853,21 @@ declare const VTreeview: {
|
|
88778
88853
|
};
|
88779
88854
|
opened: null;
|
88780
88855
|
items: {
|
88781
|
-
type:
|
88856
|
+
type: PropType<ItemProps["items"]>;
|
88782
88857
|
default: () => never[];
|
88783
88858
|
};
|
88784
88859
|
itemValue: {
|
88785
|
-
type:
|
88860
|
+
type: PropType<SelectItemKey>;
|
88786
88861
|
default: string;
|
88787
88862
|
};
|
88788
88863
|
returnObject: BooleanConstructor;
|
88789
88864
|
selectStrategy: {
|
88790
|
-
type:
|
88865
|
+
type: PropType<SelectStrategyProp>;
|
88791
88866
|
default: NonNullable<SelectStrategyProp>;
|
88792
88867
|
};
|
88793
|
-
valueComparator:
|
88868
|
+
valueComparator: PropType<typeof deepEqual>;
|
88794
88869
|
density: {
|
88795
|
-
type:
|
88870
|
+
type: PropType<Density>;
|
88796
88871
|
default: string;
|
88797
88872
|
validator: (v: any) => boolean;
|
88798
88873
|
};
|
@@ -88805,74 +88880,81 @@ declare const VTreeview: {
|
|
88805
88880
|
bgColor: StringConstructor;
|
88806
88881
|
activeColor: StringConstructor;
|
88807
88882
|
slim: {
|
88808
|
-
type:
|
88883
|
+
type: PropType<boolean>;
|
88809
88884
|
default: boolean;
|
88810
88885
|
};
|
88811
88886
|
activeClass: StringConstructor;
|
88812
88887
|
filterable: BooleanConstructor;
|
88813
88888
|
activatable: BooleanConstructor;
|
88814
88889
|
selectable: BooleanConstructor;
|
88815
|
-
activeStrategy:
|
88816
|
-
'onUpdate:opened':
|
88890
|
+
activeStrategy: PropType<ActiveStrategyProp>;
|
88891
|
+
'onUpdate:opened': PropType<() => void>;
|
88817
88892
|
collapseIcon: {
|
88818
|
-
type:
|
88893
|
+
type: PropType<IconValue>;
|
88819
88894
|
default: NonNullable<IconValue>;
|
88820
88895
|
};
|
88821
88896
|
expandIcon: {
|
88822
|
-
type:
|
88897
|
+
type: PropType<IconValue>;
|
88823
88898
|
default: NonNullable<IconValue>;
|
88824
88899
|
};
|
88825
88900
|
itemTitle: {
|
88826
|
-
type:
|
88901
|
+
type: PropType<SelectItemKey>;
|
88827
88902
|
default: string;
|
88828
88903
|
};
|
88829
88904
|
itemChildren: {
|
88830
|
-
type:
|
88905
|
+
type: PropType<SelectItemKey>;
|
88831
88906
|
default: string;
|
88832
88907
|
};
|
88833
88908
|
itemProps: {
|
88834
|
-
type:
|
88909
|
+
type: PropType<SelectItemKey>;
|
88835
88910
|
default: string;
|
88836
88911
|
};
|
88837
|
-
|
88912
|
+
itemType: {
|
88913
|
+
type: PropType<SelectItemKey>;
|
88914
|
+
default: string;
|
88915
|
+
};
|
88916
|
+
'onClick:open': PropType<(args_0: {
|
88838
88917
|
id: unknown;
|
88839
88918
|
value: boolean;
|
88840
88919
|
path: unknown[];
|
88841
88920
|
}) => void>;
|
88842
|
-
'onClick:select':
|
88921
|
+
'onClick:select': PropType<(args_0: {
|
88843
88922
|
id: unknown;
|
88844
88923
|
value: boolean;
|
88845
88924
|
path: unknown[];
|
88846
88925
|
}) => void>;
|
88926
|
+
separateRoots: BooleanConstructor;
|
88847
88927
|
openOnClick: {
|
88848
88928
|
type: BooleanConstructor;
|
88849
88929
|
default: undefined;
|
88850
88930
|
};
|
88851
|
-
falseIcon:
|
88852
|
-
trueIcon:
|
88931
|
+
falseIcon: PropType<IconValue>;
|
88932
|
+
trueIcon: PropType<IconValue>;
|
88853
88933
|
indeterminateIcon: {
|
88854
|
-
type:
|
88934
|
+
type: PropType<IconValue>;
|
88855
88935
|
default: string;
|
88856
88936
|
};
|
88937
|
+
hideActions: BooleanConstructor;
|
88857
88938
|
loadingIcon: {
|
88858
88939
|
type: StringConstructor;
|
88859
88940
|
default: string;
|
88860
88941
|
};
|
88861
88942
|
selectedColor: StringConstructor;
|
88862
|
-
loadChildren:
|
88863
|
-
customFilter:
|
88864
|
-
customKeyFilter:
|
88943
|
+
loadChildren: PropType<(item: unknown) => Promise<void>>;
|
88944
|
+
customFilter: PropType<FilterFunction>;
|
88945
|
+
customKeyFilter: PropType<FilterKeyFunctions>;
|
88865
88946
|
filterKeys: {
|
88866
|
-
type:
|
88947
|
+
type: PropType<FilterKeys>;
|
88867
88948
|
default: NonNullable<FilterKeys>;
|
88868
88949
|
};
|
88869
88950
|
filterMode: {
|
88870
|
-
type:
|
88951
|
+
type: PropType<FilterMode>;
|
88871
88952
|
default: string;
|
88872
88953
|
};
|
88873
88954
|
noFilter: BooleanConstructor;
|
88874
88955
|
fluid: BooleanConstructor;
|
88875
88956
|
openAll: BooleanConstructor;
|
88957
|
+
indentLines: PropType<boolean | IndentLinesVariant>;
|
88876
88958
|
search: StringConstructor;
|
88877
88959
|
}>>;
|
88878
88960
|
type VTreeview = InstanceType<typeof VTreeview>;
|
@@ -88894,6 +88976,7 @@ declare const VTreeviewItem: {
|
|
88894
88976
|
class?: string;
|
88895
88977
|
keys?: number[];
|
88896
88978
|
} | undefined;
|
88979
|
+
hideActions: boolean;
|
88897
88980
|
} & {
|
88898
88981
|
link?: boolean | undefined;
|
88899
88982
|
height?: string | number | undefined;
|
@@ -88925,6 +89008,7 @@ declare const VTreeviewItem: {
|
|
88925
89008
|
prependAvatar?: string | undefined;
|
88926
89009
|
subtitle?: string | number | boolean | undefined;
|
88927
89010
|
toggleIcon?: IconValue | undefined;
|
89011
|
+
indentLines?: IndentLineType[] | undefined;
|
88928
89012
|
} & {
|
88929
89013
|
$children?: vue.VNodeChild | ((arg: ListItemSlot) => vue.VNodeChild) | {
|
88930
89014
|
prepend?: ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
|
@@ -89375,6 +89459,7 @@ declare const VTreeviewItem: {
|
|
89375
89459
|
keys?: number[];
|
89376
89460
|
} | undefined;
|
89377
89461
|
subtitle: string | number | boolean;
|
89462
|
+
hideActions: boolean;
|
89378
89463
|
}, true, {}, vue.SlotsType<Partial<{
|
89379
89464
|
prepend: (arg: ListItemSlot) => vue.VNode[];
|
89380
89465
|
append: (arg: ListItemSlot) => vue.VNode[];
|
@@ -89404,6 +89489,7 @@ declare const VTreeviewItem: {
|
|
89404
89489
|
class?: string;
|
89405
89490
|
keys?: number[];
|
89406
89491
|
} | undefined;
|
89492
|
+
hideActions: boolean;
|
89407
89493
|
} & {
|
89408
89494
|
link?: boolean | undefined;
|
89409
89495
|
height?: string | number | undefined;
|
@@ -89435,6 +89521,7 @@ declare const VTreeviewItem: {
|
|
89435
89521
|
prependAvatar?: string | undefined;
|
89436
89522
|
subtitle?: string | number | boolean | undefined;
|
89437
89523
|
toggleIcon?: IconValue | undefined;
|
89524
|
+
indentLines?: IndentLineType[] | undefined;
|
89438
89525
|
} & {
|
89439
89526
|
$children?: vue.VNodeChild | ((arg: ListItemSlot) => vue.VNodeChild) | {
|
89440
89527
|
prepend?: ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
|
@@ -89883,6 +89970,7 @@ declare const VTreeviewItem: {
|
|
89883
89970
|
keys?: number[];
|
89884
89971
|
} | undefined;
|
89885
89972
|
subtitle: string | number | boolean;
|
89973
|
+
hideActions: boolean;
|
89886
89974
|
}>;
|
89887
89975
|
__isFragment?: never;
|
89888
89976
|
__isTeleport?: never;
|
@@ -89903,6 +89991,7 @@ declare const VTreeviewItem: {
|
|
89903
89991
|
class?: string;
|
89904
89992
|
keys?: number[];
|
89905
89993
|
} | undefined;
|
89994
|
+
hideActions: boolean;
|
89906
89995
|
} & {
|
89907
89996
|
link?: boolean | undefined;
|
89908
89997
|
height?: string | number | undefined;
|
@@ -89934,6 +90023,7 @@ declare const VTreeviewItem: {
|
|
89934
90023
|
prependAvatar?: string | undefined;
|
89935
90024
|
subtitle?: string | number | boolean | undefined;
|
89936
90025
|
toggleIcon?: IconValue | undefined;
|
90026
|
+
indentLines?: IndentLineType[] | undefined;
|
89937
90027
|
} & {
|
89938
90028
|
$children?: vue.VNodeChild | ((arg: ListItemSlot) => vue.VNodeChild) | {
|
89939
90029
|
prepend?: ((arg: ListItemSlot) => vue.VNodeChild) | undefined;
|
@@ -90384,6 +90474,7 @@ declare const VTreeviewItem: {
|
|
90384
90474
|
keys?: number[];
|
90385
90475
|
} | undefined;
|
90386
90476
|
subtitle: string | number | boolean;
|
90477
|
+
hideActions: boolean;
|
90387
90478
|
}, {}, string, vue.SlotsType<Partial<{
|
90388
90479
|
prepend: (arg: ListItemSlot) => vue.VNode[];
|
90389
90480
|
append: (arg: ListItemSlot) => vue.VNode[];
|
@@ -90393,21 +90484,21 @@ declare const VTreeviewItem: {
|
|
90393
90484
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
90394
90485
|
color: StringConstructor;
|
90395
90486
|
variant: Omit<{
|
90396
|
-
type:
|
90487
|
+
type: PropType<Variant$2>;
|
90397
90488
|
default: string;
|
90398
90489
|
validator: (v: any) => boolean;
|
90399
90490
|
}, "type" | "default"> & {
|
90400
|
-
type:
|
90491
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
90401
90492
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
90402
90493
|
};
|
90403
90494
|
theme: StringConstructor;
|
90404
90495
|
tag: {
|
90405
|
-
type:
|
90496
|
+
type: PropType<string | JSXComponent>;
|
90406
90497
|
default: string;
|
90407
90498
|
};
|
90408
90499
|
href: StringConstructor;
|
90409
90500
|
replace: BooleanConstructor;
|
90410
|
-
to:
|
90501
|
+
to: PropType<vue_router.RouteLocationRaw>;
|
90411
90502
|
exact: BooleanConstructor;
|
90412
90503
|
rounded: {
|
90413
90504
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -90425,13 +90516,13 @@ declare const VTreeviewItem: {
|
|
90425
90516
|
minWidth: (StringConstructor | NumberConstructor)[];
|
90426
90517
|
width: (StringConstructor | NumberConstructor)[];
|
90427
90518
|
density: {
|
90428
|
-
type:
|
90519
|
+
type: PropType<Density>;
|
90429
90520
|
default: string;
|
90430
90521
|
validator: (v: any) => boolean;
|
90431
90522
|
};
|
90432
|
-
class:
|
90523
|
+
class: PropType<ClassValue>;
|
90433
90524
|
style: {
|
90434
|
-
type:
|
90525
|
+
type: PropType<vue.StyleValue>;
|
90435
90526
|
default: null;
|
90436
90527
|
};
|
90437
90528
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -90442,23 +90533,23 @@ declare const VTreeviewItem: {
|
|
90442
90533
|
activeClass: StringConstructor;
|
90443
90534
|
activeColor: StringConstructor;
|
90444
90535
|
appendAvatar: StringConstructor;
|
90445
|
-
appendIcon:
|
90536
|
+
appendIcon: PropType<IconValue>;
|
90446
90537
|
baseColor: StringConstructor;
|
90447
90538
|
disabled: BooleanConstructor;
|
90448
|
-
lines:
|
90539
|
+
lines: PropType<"one" | "two" | "three" | false>;
|
90449
90540
|
link: {
|
90450
90541
|
type: BooleanConstructor;
|
90451
90542
|
default: undefined;
|
90452
90543
|
};
|
90453
90544
|
nav: BooleanConstructor;
|
90454
90545
|
prependAvatar: StringConstructor;
|
90455
|
-
prependIcon:
|
90546
|
+
prependIcon: PropType<IconValue>;
|
90456
90547
|
ripple: {
|
90457
|
-
type:
|
90548
|
+
type: PropType<RippleDirectiveBinding["value"]>;
|
90458
90549
|
default: boolean;
|
90459
90550
|
};
|
90460
90551
|
slim: {
|
90461
|
-
type:
|
90552
|
+
type: PropType<boolean>;
|
90462
90553
|
default: boolean;
|
90463
90554
|
};
|
90464
90555
|
subtitle: {
|
@@ -90470,28 +90561,30 @@ declare const VTreeviewItem: {
|
|
90470
90561
|
default: undefined;
|
90471
90562
|
};
|
90472
90563
|
value: null;
|
90473
|
-
onClick:
|
90474
|
-
onClickOnce:
|
90564
|
+
onClick: PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
|
90565
|
+
onClickOnce: PropType<(args_0: MouseEvent) => void>;
|
90475
90566
|
loading: BooleanConstructor;
|
90476
|
-
|
90567
|
+
hideActions: BooleanConstructor;
|
90568
|
+
indentLines: PropType<IndentLineType[]>;
|
90569
|
+
toggleIcon: PropType<IconValue>;
|
90477
90570
|
}, vue.ExtractPropTypes<{
|
90478
90571
|
color: StringConstructor;
|
90479
90572
|
variant: Omit<{
|
90480
|
-
type:
|
90573
|
+
type: PropType<Variant$2>;
|
90481
90574
|
default: string;
|
90482
90575
|
validator: (v: any) => boolean;
|
90483
90576
|
}, "type" | "default"> & {
|
90484
|
-
type:
|
90577
|
+
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
90485
90578
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
90486
90579
|
};
|
90487
90580
|
theme: StringConstructor;
|
90488
90581
|
tag: {
|
90489
|
-
type:
|
90582
|
+
type: PropType<string | JSXComponent>;
|
90490
90583
|
default: string;
|
90491
90584
|
};
|
90492
90585
|
href: StringConstructor;
|
90493
90586
|
replace: BooleanConstructor;
|
90494
|
-
to:
|
90587
|
+
to: PropType<vue_router.RouteLocationRaw>;
|
90495
90588
|
exact: BooleanConstructor;
|
90496
90589
|
rounded: {
|
90497
90590
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -90509,13 +90602,13 @@ declare const VTreeviewItem: {
|
|
90509
90602
|
minWidth: (StringConstructor | NumberConstructor)[];
|
90510
90603
|
width: (StringConstructor | NumberConstructor)[];
|
90511
90604
|
density: {
|
90512
|
-
type:
|
90605
|
+
type: PropType<Density>;
|
90513
90606
|
default: string;
|
90514
90607
|
validator: (v: any) => boolean;
|
90515
90608
|
};
|
90516
|
-
class:
|
90609
|
+
class: PropType<ClassValue>;
|
90517
90610
|
style: {
|
90518
|
-
type:
|
90611
|
+
type: PropType<vue.StyleValue>;
|
90519
90612
|
default: null;
|
90520
90613
|
};
|
90521
90614
|
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -90526,23 +90619,23 @@ declare const VTreeviewItem: {
|
|
90526
90619
|
activeClass: StringConstructor;
|
90527
90620
|
activeColor: StringConstructor;
|
90528
90621
|
appendAvatar: StringConstructor;
|
90529
|
-
appendIcon:
|
90622
|
+
appendIcon: PropType<IconValue>;
|
90530
90623
|
baseColor: StringConstructor;
|
90531
90624
|
disabled: BooleanConstructor;
|
90532
|
-
lines:
|
90625
|
+
lines: PropType<"one" | "two" | "three" | false>;
|
90533
90626
|
link: {
|
90534
90627
|
type: BooleanConstructor;
|
90535
90628
|
default: undefined;
|
90536
90629
|
};
|
90537
90630
|
nav: BooleanConstructor;
|
90538
90631
|
prependAvatar: StringConstructor;
|
90539
|
-
prependIcon:
|
90632
|
+
prependIcon: PropType<IconValue>;
|
90540
90633
|
ripple: {
|
90541
|
-
type:
|
90634
|
+
type: PropType<RippleDirectiveBinding["value"]>;
|
90542
90635
|
default: boolean;
|
90543
90636
|
};
|
90544
90637
|
slim: {
|
90545
|
-
type:
|
90638
|
+
type: PropType<boolean>;
|
90546
90639
|
default: boolean;
|
90547
90640
|
};
|
90548
90641
|
subtitle: {
|
@@ -90554,10 +90647,12 @@ declare const VTreeviewItem: {
|
|
90554
90647
|
default: undefined;
|
90555
90648
|
};
|
90556
90649
|
value: null;
|
90557
|
-
onClick:
|
90558
|
-
onClickOnce:
|
90650
|
+
onClick: PropType<(args_0: MouseEvent | KeyboardEvent) => void>;
|
90651
|
+
onClickOnce: PropType<(args_0: MouseEvent) => void>;
|
90559
90652
|
loading: BooleanConstructor;
|
90560
|
-
|
90653
|
+
hideActions: BooleanConstructor;
|
90654
|
+
indentLines: PropType<IndentLineType[]>;
|
90655
|
+
toggleIcon: PropType<IconValue>;
|
90561
90656
|
}>>;
|
90562
90657
|
type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
|
90563
90658
|
|
@@ -93478,24 +93573,26 @@ declare module 'vue' {
|
|
93478
93573
|
$children?: VNodeChild
|
93479
93574
|
}
|
93480
93575
|
export interface GlobalComponents {
|
93576
|
+
VApp: VApp
|
93481
93577
|
VAppBar: VAppBar
|
93482
93578
|
VAppBarNavIcon: VAppBarNavIcon
|
93483
93579
|
VAppBarTitle: VAppBarTitle
|
93484
|
-
|
93580
|
+
VAutocomplete: VAutocomplete
|
93485
93581
|
VAlert: VAlert
|
93486
93582
|
VAlertTitle: VAlertTitle
|
93487
|
-
VAutocomplete: VAutocomplete
|
93488
|
-
VAvatar: VAvatar
|
93489
|
-
VBadge: VBadge
|
93490
|
-
VBanner: VBanner
|
93491
|
-
VBannerActions: VBannerActions
|
93492
|
-
VBannerText: VBannerText
|
93493
|
-
VBtnGroup: VBtnGroup
|
93494
93583
|
VBreadcrumbs: VBreadcrumbs
|
93495
93584
|
VBreadcrumbsItem: VBreadcrumbsItem
|
93496
93585
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
93586
|
+
VBadge: VBadge
|
93587
|
+
VAvatar: VAvatar
|
93588
|
+
VBottomNavigation: VBottomNavigation
|
93497
93589
|
VBtn: VBtn
|
93590
|
+
VBtnGroup: VBtnGroup
|
93591
|
+
VBanner: VBanner
|
93592
|
+
VBannerActions: VBannerActions
|
93593
|
+
VBannerText: VBannerText
|
93498
93594
|
VBottomSheet: VBottomSheet
|
93595
|
+
VChip: VChip
|
93499
93596
|
VCard: VCard
|
93500
93597
|
VCardActions: VCardActions
|
93501
93598
|
VCardItem: VCardItem
|
@@ -93503,22 +93600,23 @@ declare module 'vue' {
|
|
93503
93600
|
VCardText: VCardText
|
93504
93601
|
VCardTitle: VCardTitle
|
93505
93602
|
VBtnToggle: VBtnToggle
|
93506
|
-
VChip: VChip
|
93507
|
-
VChipGroup: VChipGroup
|
93508
93603
|
VCarousel: VCarousel
|
93509
93604
|
VCarouselItem: VCarouselItem
|
93605
|
+
VChipGroup: VChipGroup
|
93510
93606
|
VCheckbox: VCheckbox
|
93511
93607
|
VCheckboxBtn: VCheckboxBtn
|
93608
|
+
VColorPicker: VColorPicker
|
93512
93609
|
VCode: VCode
|
93513
93610
|
VCombobox: VCombobox
|
93514
93611
|
VCounter: VCounter
|
93515
|
-
|
93612
|
+
VDialog: VDialog
|
93516
93613
|
VDatePicker: VDatePicker
|
93517
93614
|
VDatePickerControls: VDatePickerControls
|
93518
93615
|
VDatePickerHeader: VDatePickerHeader
|
93519
93616
|
VDatePickerMonth: VDatePickerMonth
|
93520
93617
|
VDatePickerMonths: VDatePickerMonths
|
93521
93618
|
VDatePickerYears: VDatePickerYears
|
93619
|
+
VDivider: VDivider
|
93522
93620
|
VDataTable: VDataTable
|
93523
93621
|
VDataTableHeaders: VDataTableHeaders
|
93524
93622
|
VDataTableFooter: VDataTableFooter
|
@@ -93526,9 +93624,8 @@ declare module 'vue' {
|
|
93526
93624
|
VDataTableRow: VDataTableRow
|
93527
93625
|
VDataTableVirtual: VDataTableVirtual
|
93528
93626
|
VDataTableServer: VDataTableServer
|
93529
|
-
VBottomNavigation: VBottomNavigation
|
93530
|
-
VDialog: VDialog
|
93531
93627
|
VEmptyState: VEmptyState
|
93628
|
+
VFab: VFab
|
93532
93629
|
VExpansionPanels: VExpansionPanels
|
93533
93630
|
VExpansionPanel: VExpansionPanel
|
93534
93631
|
VExpansionPanelText: VExpansionPanelText
|
@@ -93536,20 +93633,16 @@ declare module 'vue' {
|
|
93536
93633
|
VFileInput: VFileInput
|
93537
93634
|
VField: VField
|
93538
93635
|
VFieldLabel: VFieldLabel
|
93539
|
-
|
93540
|
-
|
93541
|
-
VItemGroup: VItemGroup
|
93542
|
-
VItem: VItem
|
93543
|
-
VInfiniteScroll: VInfiniteScroll
|
93636
|
+
VFooter: VFooter
|
93637
|
+
VImg: VImg
|
93544
93638
|
VIcon: VIcon
|
93545
93639
|
VComponentIcon: VComponentIcon
|
93546
93640
|
VSvgIcon: VSvgIcon
|
93547
93641
|
VLigatureIcon: VLigatureIcon
|
93548
93642
|
VClassIcon: VClassIcon
|
93549
|
-
|
93550
|
-
VInput: VInput
|
93551
|
-
VLabel: VLabel
|
93643
|
+
VInfiniteScroll: VInfiniteScroll
|
93552
93644
|
VKbd: VKbd
|
93645
|
+
VInput: VInput
|
93553
93646
|
VList: VList
|
93554
93647
|
VListGroup: VListGroup
|
93555
93648
|
VListImg: VListImg
|
@@ -93559,25 +93652,30 @@ declare module 'vue' {
|
|
93559
93652
|
VListItemSubtitle: VListItemSubtitle
|
93560
93653
|
VListItemTitle: VListItemTitle
|
93561
93654
|
VListSubheader: VListSubheader
|
93562
|
-
|
93655
|
+
VItemGroup: VItemGroup
|
93656
|
+
VItem: VItem
|
93657
|
+
VLabel: VLabel
|
93563
93658
|
VMain: VMain
|
93564
|
-
|
93659
|
+
VNumberInput: VNumberInput
|
93660
|
+
VMenu: VMenu
|
93565
93661
|
VMessages: VMessages
|
93662
|
+
VNavigationDrawer: VNavigationDrawer
|
93663
|
+
VPagination: VPagination
|
93566
93664
|
VOtpInput: VOtpInput
|
93567
|
-
VProgressCircular: VProgressCircular
|
93568
93665
|
VOverlay: VOverlay
|
93569
|
-
VNumberInput: VNumberInput
|
93570
|
-
VSelect: VSelect
|
93571
|
-
VSelectionControlGroup: VSelectionControlGroup
|
93572
|
-
VPagination: VPagination
|
93573
93666
|
VRadioGroup: VRadioGroup
|
93667
|
+
VProgressLinear: VProgressLinear
|
93668
|
+
VProgressCircular: VProgressCircular
|
93574
93669
|
VRating: VRating
|
93575
|
-
|
93670
|
+
VSelect: VSelect
|
93671
|
+
VSheet: VSheet
|
93576
93672
|
VSelectionControl: VSelectionControl
|
93673
|
+
VSkeletonLoader: VSkeletonLoader
|
93674
|
+
VSelectionControlGroup: VSelectionControlGroup
|
93577
93675
|
VSlider: VSlider
|
93578
|
-
VSheet: VSheet
|
93579
93676
|
VSlideGroup: VSlideGroup
|
93580
93677
|
VSlideGroupItem: VSlideGroupItem
|
93678
|
+
VSnackbar: VSnackbar
|
93581
93679
|
VStepper: VStepper
|
93582
93680
|
VStepperActions: VStepperActions
|
93583
93681
|
VStepperHeader: VStepperHeader
|
@@ -93586,23 +93684,22 @@ declare module 'vue' {
|
|
93586
93684
|
VStepperWindowItem: VStepperWindowItem
|
93587
93685
|
VSwitch: VSwitch
|
93588
93686
|
VSystemBar: VSystemBar
|
93589
|
-
VSnackbar: VSnackbar
|
93590
|
-
VTimePicker: VTimePicker
|
93591
|
-
VTimePickerClock: VTimePickerClock
|
93592
|
-
VTimePickerControls: VTimePickerControls
|
93593
|
-
VTextField: VTextField
|
93594
93687
|
VTab: VTab
|
93595
93688
|
VTabs: VTabs
|
93596
93689
|
VTabsWindow: VTabsWindow
|
93597
93690
|
VTabsWindowItem: VTabsWindowItem
|
93598
|
-
|
93691
|
+
VTextField: VTextField
|
93599
93692
|
VTable: VTable
|
93693
|
+
VTimePicker: VTimePicker
|
93694
|
+
VTimePickerClock: VTimePickerClock
|
93695
|
+
VTimePickerControls: VTimePickerControls
|
93600
93696
|
VTimeline: VTimeline
|
93601
93697
|
VTimelineItem: VTimelineItem
|
93698
|
+
VTextarea: VTextarea
|
93699
|
+
VTooltip: VTooltip
|
93602
93700
|
VToolbar: VToolbar
|
93603
93701
|
VToolbarTitle: VToolbarTitle
|
93604
93702
|
VToolbarItems: VToolbarItems
|
93605
|
-
VTooltip: VTooltip
|
93606
93703
|
VTreeview: VTreeview
|
93607
93704
|
VTreeviewItem: VTreeviewItem
|
93608
93705
|
VTreeviewGroup: VTreeviewGroup
|
@@ -93616,20 +93713,20 @@ declare module 'vue' {
|
|
93616
93713
|
VRow: VRow
|
93617
93714
|
VSpacer: VSpacer
|
93618
93715
|
VForm: VForm
|
93716
|
+
VHover: VHover
|
93619
93717
|
VLayout: VLayout
|
93620
93718
|
VLayoutItem: VLayoutItem
|
93621
|
-
VHover: VHover
|
93622
93719
|
VLazy: VLazy
|
93623
93720
|
VLocaleProvider: VLocaleProvider
|
93624
93721
|
VNoSsr: VNoSsr
|
93625
|
-
VRadio: VRadio
|
93626
|
-
VRangeSlider: VRangeSlider
|
93627
93722
|
VParallax: VParallax
|
93628
|
-
|
93723
|
+
VRangeSlider: VRangeSlider
|
93724
|
+
VRadio: VRadio
|
93629
93725
|
VResponsive: VResponsive
|
93630
93726
|
VSnackbarQueue: VSnackbarQueue
|
93631
|
-
|
93727
|
+
VSparkline: VSparkline
|
93632
93728
|
VSpeedDial: VSpeedDial
|
93729
|
+
VThemeProvider: VThemeProvider
|
93633
93730
|
VValidation: VValidation
|
93634
93731
|
VVirtualScroll: VVirtualScroll
|
93635
93732
|
VFabTransition: VFabTransition
|
@@ -93648,27 +93745,25 @@ declare module 'vue' {
|
|
93648
93745
|
VExpandTransition: VExpandTransition
|
93649
93746
|
VExpandXTransition: VExpandXTransition
|
93650
93747
|
VDialogTransition: VDialogTransition
|
93651
|
-
|
93652
|
-
VFooter: VFooter
|
93748
|
+
VColorInput: VColorInput
|
93653
93749
|
VFileUpload: VFileUpload
|
93654
93750
|
VFileUploadItem: VFileUploadItem
|
93655
|
-
|
93656
|
-
VCalendarDay: VCalendarDay
|
93657
|
-
VCalendarHeader: VCalendarHeader
|
93658
|
-
VCalendarInterval: VCalendarInterval
|
93659
|
-
VCalendarIntervalEvent: VCalendarIntervalEvent
|
93660
|
-
VCalendarMonthDay: VCalendarMonthDay
|
93751
|
+
VIconBtn: VIconBtn
|
93661
93752
|
VPicker: VPicker
|
93662
93753
|
VPickerTitle: VPickerTitle
|
93663
93754
|
VStepperVertical: VStepperVertical
|
93664
93755
|
VStepperVerticalItem: VStepperVerticalItem
|
93665
93756
|
VStepperVerticalActions: VStepperVerticalActions
|
93666
|
-
VColorInput: VColorInput
|
93667
|
-
VIconBtn: VIconBtn
|
93668
|
-
VDateInput: VDateInput
|
93669
93757
|
VHotkey: VHotkey
|
93670
|
-
|
93758
|
+
VDateInput: VDateInput
|
93671
93759
|
VMaskInput: VMaskInput
|
93760
|
+
VPullToRefresh: VPullToRefresh
|
93761
|
+
VCalendar: VCalendar
|
93762
|
+
VCalendarDay: VCalendarDay
|
93763
|
+
VCalendarHeader: VCalendarHeader
|
93764
|
+
VCalendarInterval: VCalendarInterval
|
93765
|
+
VCalendarIntervalEvent: VCalendarIntervalEvent
|
93766
|
+
VCalendarMonthDay: VCalendarMonthDay
|
93672
93767
|
}
|
93673
93768
|
export interface GlobalDirectives {
|
93674
93769
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|