@vuetify/nightly 3.10.5-dev.2025-10-07 → 3.10.5-dev.2025-10-10
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 +21 -3
- package/dist/json/attributes.json +2024 -2040
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +180 -180
- package/dist/json/tags.json +5 -9
- package/dist/json/web-types.json +3964 -3985
- package/dist/vuetify-labs.cjs +233 -169
- package/dist/vuetify-labs.css +4520 -4520
- package/dist/vuetify-labs.d.ts +1444 -1390
- package/dist/vuetify-labs.esm.js +233 -169
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +233 -169
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +156 -92
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3385 -3385
- package/dist/vuetify.d.ts +2289 -2200
- package/dist/vuetify.esm.js +156 -92
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +156 -92
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +959 -955
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +0 -61
- package/lib/components/VAutocomplete/VAutocomplete.js +13 -11
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +6 -67
- package/lib/components/VCombobox/VCombobox.js +22 -23
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +7 -7
- package/lib/components/VDataTable/VDataTableFooter.d.ts +16 -3
- package/lib/components/VDataTable/VDataTableFooter.js +4 -2
- package/lib/components/VDataTable/VDataTableFooter.js.map +1 -1
- package/lib/components/VDataTable/VDataTableHeaders.js +10 -7
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRow.d.ts +10 -0
- package/lib/components/VDataTable/VDataTableRow.js +3 -0
- package/lib/components/VDataTable/VDataTableRow.js.map +1 -1
- package/lib/components/VDataTable/VDataTableRows.d.ts +10 -0
- package/lib/components/VDataTable/VDataTableRows.js +2 -0
- package/lib/components/VDataTable/VDataTableRows.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +7 -7
- package/lib/components/VNumberInput/VNumberInput.js +23 -8
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.d.ts +1 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VTabs/VTabs.d.ts +16 -2
- package/lib/components/VTabs/VTabs.js +4 -2
- package/lib/components/VTabs/VTabs.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.css +2 -2
- package/lib/components/VTextarea/VTextarea.js +20 -1
- package/lib/components/VTextarea/VTextarea.js.map +1 -1
- package/lib/components/VTextarea/VTextarea.sass +4 -2
- package/lib/components/VTreeview/VTreeview.d.ts +192 -5
- package/lib/components/VTreeview/VTreeview.js +16 -3
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/composables/icons.d.ts +0 -2
- package/lib/composables/icons.js +3 -36
- package/lib/composables/icons.js.map +1 -1
- package/lib/composables/virtual.js +2 -2
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +65 -65
- package/lib/framework.js +3 -2
- package/lib/framework.js.map +1 -1
- package/lib/icons.d.ts +3 -0
- package/lib/icons.js +34 -0
- package/lib/icons.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +0 -40
- package/lib/labs/VColorInput/VColorInput.js +2 -2
- package/lib/labs/VColorInput/VColorInput.js.map +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +0 -30
- package/lib/labs/VDateInput/VDateInput.js +2 -2
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VMaskInput/VMaskInput.js +1 -1
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -7770,9 +7770,6 @@ declare const VAutocomplete: {
|
|
|
7770
7770
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
7771
7771
|
density: Density;
|
|
7772
7772
|
tile: boolean;
|
|
7773
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
7774
|
-
component?: vue.Component | undefined;
|
|
7775
|
-
}) | null;
|
|
7776
7773
|
hideSpinButtons: boolean;
|
|
7777
7774
|
persistentHint: boolean;
|
|
7778
7775
|
messages: string | readonly string[];
|
|
@@ -10489,9 +10486,6 @@ declare const VAutocomplete: {
|
|
|
10489
10486
|
density: Density;
|
|
10490
10487
|
rounded: string | number | boolean;
|
|
10491
10488
|
tile: boolean;
|
|
10492
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
10493
|
-
component?: vue.Component | undefined;
|
|
10494
|
-
}) | null;
|
|
10495
10489
|
hideSpinButtons: boolean;
|
|
10496
10490
|
persistentHint: boolean;
|
|
10497
10491
|
messages: string | readonly string[];
|
|
@@ -10622,9 +10616,6 @@ declare const VAutocomplete: {
|
|
|
10622
10616
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
10623
10617
|
density: Density;
|
|
10624
10618
|
tile: boolean;
|
|
10625
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
10626
|
-
component?: vue.Component | undefined;
|
|
10627
|
-
}) | null;
|
|
10628
10619
|
hideSpinButtons: boolean;
|
|
10629
10620
|
persistentHint: boolean;
|
|
10630
10621
|
messages: string | readonly string[];
|
|
@@ -13336,9 +13327,6 @@ declare const VAutocomplete: {
|
|
|
13336
13327
|
density: Density;
|
|
13337
13328
|
rounded: string | number | boolean;
|
|
13338
13329
|
tile: boolean;
|
|
13339
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
13340
|
-
component?: vue.Component | undefined;
|
|
13341
|
-
}) | null;
|
|
13342
13330
|
hideSpinButtons: boolean;
|
|
13343
13331
|
persistentHint: boolean;
|
|
13344
13332
|
messages: string | readonly string[];
|
|
@@ -13392,9 +13380,6 @@ declare const VAutocomplete: {
|
|
|
13392
13380
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
13393
13381
|
density: Density;
|
|
13394
13382
|
tile: boolean;
|
|
13395
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
13396
|
-
component?: vue.Component | undefined;
|
|
13397
|
-
}) | null;
|
|
13398
13383
|
hideSpinButtons: boolean;
|
|
13399
13384
|
persistentHint: boolean;
|
|
13400
13385
|
messages: string | readonly string[];
|
|
@@ -16111,9 +16096,6 @@ declare const VAutocomplete: {
|
|
|
16111
16096
|
density: Density;
|
|
16112
16097
|
rounded: string | number | boolean;
|
|
16113
16098
|
tile: boolean;
|
|
16114
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
16115
|
-
component?: vue.Component | undefined;
|
|
16116
|
-
}) | null;
|
|
16117
16099
|
hideSpinButtons: boolean;
|
|
16118
16100
|
persistentHint: boolean;
|
|
16119
16101
|
messages: string | readonly string[];
|
|
@@ -16351,14 +16333,6 @@ declare const VAutocomplete: {
|
|
|
16351
16333
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
16352
16334
|
width: (NumberConstructor | StringConstructor)[];
|
|
16353
16335
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
16354
|
-
transition: {
|
|
16355
|
-
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
16356
|
-
component?: vue.Component | undefined;
|
|
16357
|
-
}) | null>;
|
|
16358
|
-
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
16359
|
-
component?: vue.Component | undefined;
|
|
16360
|
-
}) | null>;
|
|
16361
|
-
};
|
|
16362
16336
|
id: StringConstructor;
|
|
16363
16337
|
appendIcon: PropType<IconValue>;
|
|
16364
16338
|
prependIcon: PropType<IconValue>;
|
|
@@ -17002,14 +16976,6 @@ declare const VAutocomplete: {
|
|
|
17002
16976
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
17003
16977
|
width: (NumberConstructor | StringConstructor)[];
|
|
17004
16978
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
17005
|
-
transition: {
|
|
17006
|
-
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
17007
|
-
component?: vue.Component | undefined;
|
|
17008
|
-
}) | null>;
|
|
17009
|
-
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
17010
|
-
component?: vue.Component | undefined;
|
|
17011
|
-
}) | null>;
|
|
17012
|
-
};
|
|
17013
16979
|
id: StringConstructor;
|
|
17014
16980
|
appendIcon: PropType<IconValue>;
|
|
17015
16981
|
prependIcon: PropType<IconValue>;
|
|
@@ -28419,9 +28385,6 @@ declare const VCombobox: {
|
|
|
28419
28385
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
28420
28386
|
density: Density;
|
|
28421
28387
|
tile: boolean;
|
|
28422
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
28423
|
-
component?: vue.Component | undefined;
|
|
28424
|
-
}) | null;
|
|
28425
28388
|
hideSpinButtons: boolean;
|
|
28426
28389
|
persistentHint: boolean;
|
|
28427
28390
|
messages: string | readonly string[];
|
|
@@ -28963,7 +28926,7 @@ declare const VCombobox: {
|
|
|
28963
28926
|
search: vue.WritableComputedRef<string, string>;
|
|
28964
28927
|
selectionIndex: vue.ShallowRef<number, number>;
|
|
28965
28928
|
filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
28966
|
-
select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
|
|
28929
|
+
select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
|
|
28967
28930
|
} & Omit<Omit<{
|
|
28968
28931
|
$: vue.ComponentInternalInstance;
|
|
28969
28932
|
$data: {};
|
|
@@ -30602,7 +30565,7 @@ declare const VCombobox: {
|
|
|
30602
30565
|
search: vue.WritableComputedRef<string, string>;
|
|
30603
30566
|
selectionIndex: vue.ShallowRef<number, number>;
|
|
30604
30567
|
filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
30605
|
-
select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
|
|
30568
|
+
select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
|
|
30606
30569
|
} | (HTMLInputElement & Omit<Omit<{
|
|
30607
30570
|
$: vue.ComponentInternalInstance;
|
|
30608
30571
|
$data: {};
|
|
@@ -31137,9 +31100,6 @@ declare const VCombobox: {
|
|
|
31137
31100
|
density: Density;
|
|
31138
31101
|
rounded: string | number | boolean;
|
|
31139
31102
|
tile: boolean;
|
|
31140
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
31141
|
-
component?: vue.Component | undefined;
|
|
31142
|
-
}) | null;
|
|
31143
31103
|
hideSpinButtons: boolean;
|
|
31144
31104
|
persistentHint: boolean;
|
|
31145
31105
|
messages: string | readonly string[];
|
|
@@ -31271,9 +31231,6 @@ declare const VCombobox: {
|
|
|
31271
31231
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
31272
31232
|
density: Density;
|
|
31273
31233
|
tile: boolean;
|
|
31274
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
31275
|
-
component?: vue.Component | undefined;
|
|
31276
|
-
}) | null;
|
|
31277
31234
|
hideSpinButtons: boolean;
|
|
31278
31235
|
persistentHint: boolean;
|
|
31279
31236
|
messages: string | readonly string[];
|
|
@@ -31815,7 +31772,7 @@ declare const VCombobox: {
|
|
|
31815
31772
|
search: vue.WritableComputedRef<string, string>;
|
|
31816
31773
|
selectionIndex: vue.ShallowRef<number, number>;
|
|
31817
31774
|
filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
31818
|
-
select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
|
|
31775
|
+
select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
|
|
31819
31776
|
} & Omit<Omit<{
|
|
31820
31777
|
$: vue.ComponentInternalInstance;
|
|
31821
31778
|
$data: {};
|
|
@@ -33454,7 +33411,7 @@ declare const VCombobox: {
|
|
|
33454
33411
|
search: vue.WritableComputedRef<string, string>;
|
|
33455
33412
|
selectionIndex: vue.ShallowRef<number, number>;
|
|
33456
33413
|
filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
33457
|
-
select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
|
|
33414
|
+
select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
|
|
33458
33415
|
} | (HTMLInputElement & Omit<Omit<{
|
|
33459
33416
|
$: vue.ComponentInternalInstance;
|
|
33460
33417
|
$data: {};
|
|
@@ -33984,9 +33941,6 @@ declare const VCombobox: {
|
|
|
33984
33941
|
density: Density;
|
|
33985
33942
|
rounded: string | number | boolean;
|
|
33986
33943
|
tile: boolean;
|
|
33987
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
33988
|
-
component?: vue.Component | undefined;
|
|
33989
|
-
}) | null;
|
|
33990
33944
|
hideSpinButtons: boolean;
|
|
33991
33945
|
persistentHint: boolean;
|
|
33992
33946
|
messages: string | readonly string[];
|
|
@@ -34041,9 +33995,6 @@ declare const VCombobox: {
|
|
|
34041
33995
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
34042
33996
|
density: Density;
|
|
34043
33997
|
tile: boolean;
|
|
34044
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
34045
|
-
component?: vue.Component | undefined;
|
|
34046
|
-
}) | null;
|
|
34047
33998
|
hideSpinButtons: boolean;
|
|
34048
33999
|
persistentHint: boolean;
|
|
34049
34000
|
messages: string | readonly string[];
|
|
@@ -34585,7 +34536,7 @@ declare const VCombobox: {
|
|
|
34585
34536
|
search: vue.WritableComputedRef<string, string>;
|
|
34586
34537
|
selectionIndex: vue.ShallowRef<number, number>;
|
|
34587
34538
|
filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
34588
|
-
select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
|
|
34539
|
+
select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
|
|
34589
34540
|
} & Omit<Omit<{
|
|
34590
34541
|
$: vue.ComponentInternalInstance;
|
|
34591
34542
|
$data: {};
|
|
@@ -36224,7 +36175,7 @@ declare const VCombobox: {
|
|
|
36224
36175
|
search: vue.WritableComputedRef<string, string>;
|
|
36225
36176
|
selectionIndex: vue.ShallowRef<number, number>;
|
|
36226
36177
|
filteredItems: vue.ShallowRef<ListItem<any>[], ListItem<any>[]>;
|
|
36227
|
-
select: (item: ListItem<any> | undefined, set?: boolean | null) => void;
|
|
36178
|
+
select: (item: ListItem<any> | undefined, set?: boolean | null, keepMenu?: boolean) => void;
|
|
36228
36179
|
} | (HTMLInputElement & Omit<Omit<{
|
|
36229
36180
|
$: vue.ComponentInternalInstance;
|
|
36230
36181
|
$data: {};
|
|
@@ -36759,9 +36710,6 @@ declare const VCombobox: {
|
|
|
36759
36710
|
density: Density;
|
|
36760
36711
|
rounded: string | number | boolean;
|
|
36761
36712
|
tile: boolean;
|
|
36762
|
-
transition: string | boolean | (vue.TransitionProps & {
|
|
36763
|
-
component?: vue.Component | undefined;
|
|
36764
|
-
}) | null;
|
|
36765
36713
|
hideSpinButtons: boolean;
|
|
36766
36714
|
persistentHint: boolean;
|
|
36767
36715
|
messages: string | readonly string[];
|
|
@@ -37000,14 +36948,6 @@ declare const VCombobox: {
|
|
|
37000
36948
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
37001
36949
|
width: (NumberConstructor | StringConstructor)[];
|
|
37002
36950
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
37003
|
-
transition: {
|
|
37004
|
-
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
37005
|
-
component?: vue.Component | undefined;
|
|
37006
|
-
}) | null>;
|
|
37007
|
-
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
37008
|
-
component?: vue.Component | undefined;
|
|
37009
|
-
}) | null>;
|
|
37010
|
-
};
|
|
37011
36951
|
id: StringConstructor;
|
|
37012
36952
|
appendIcon: PropType<IconValue>;
|
|
37013
36953
|
prependIcon: PropType<IconValue>;
|
|
@@ -37661,14 +37601,6 @@ declare const VCombobox: {
|
|
|
37661
37601
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
37662
37602
|
width: (NumberConstructor | StringConstructor)[];
|
|
37663
37603
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
37664
|
-
transition: {
|
|
37665
|
-
type: PropType<string | boolean | (vue.TransitionProps & {
|
|
37666
|
-
component?: vue.Component | undefined;
|
|
37667
|
-
}) | null>;
|
|
37668
|
-
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
|
37669
|
-
component?: vue.Component | undefined;
|
|
37670
|
-
}) | null>;
|
|
37671
|
-
};
|
|
37672
37604
|
id: StringConstructor;
|
|
37673
37605
|
appendIcon: PropType<IconValue>;
|
|
37674
37606
|
prependIcon: PropType<IconValue>;
|
|
@@ -39242,6 +39174,7 @@ declare const VDataTableRow: {
|
|
|
39242
39174
|
expandIcon: IconValue;
|
|
39243
39175
|
} & {
|
|
39244
39176
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
39177
|
+
color?: string | undefined;
|
|
39245
39178
|
index?: number | undefined;
|
|
39246
39179
|
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
39247
39180
|
onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -39284,6 +39217,7 @@ declare const VDataTableRow: {
|
|
|
39284
39217
|
expandIcon: IconValue;
|
|
39285
39218
|
} & {
|
|
39286
39219
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
39220
|
+
color?: string | undefined;
|
|
39287
39221
|
index?: number | undefined;
|
|
39288
39222
|
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
39289
39223
|
onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -39304,6 +39238,7 @@ declare const VDataTableRow: {
|
|
|
39304
39238
|
expandIcon: IconValue;
|
|
39305
39239
|
} & {
|
|
39306
39240
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
39241
|
+
color?: string | undefined;
|
|
39307
39242
|
index?: number | undefined;
|
|
39308
39243
|
onClick?: ((args_0: MouseEvent) => void) | undefined;
|
|
39309
39244
|
onContextmenu?: ((args_0: MouseEvent) => void) | undefined;
|
|
@@ -39349,6 +39284,7 @@ declare const VDataTableRow: {
|
|
|
39349
39284
|
default: string;
|
|
39350
39285
|
validator: (v: any) => boolean;
|
|
39351
39286
|
};
|
|
39287
|
+
color: StringConstructor;
|
|
39352
39288
|
index: NumberConstructor;
|
|
39353
39289
|
item: PropType<DataTableItem<any>>;
|
|
39354
39290
|
cellProps: PropType<CellProps<any>>;
|
|
@@ -39374,6 +39310,7 @@ declare const VDataTableRow: {
|
|
|
39374
39310
|
default: string;
|
|
39375
39311
|
validator: (v: any) => boolean;
|
|
39376
39312
|
};
|
|
39313
|
+
color: StringConstructor;
|
|
39377
39314
|
index: NumberConstructor;
|
|
39378
39315
|
item: PropType<DataTableItem<any>>;
|
|
39379
39316
|
cellProps: PropType<CellProps<any>>;
|
|
@@ -39637,6 +39574,7 @@ declare const VDataTableRows: {
|
|
|
39637
39574
|
noDataText: string;
|
|
39638
39575
|
} & {
|
|
39639
39576
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
39577
|
+
color?: string | undefined;
|
|
39640
39578
|
loading?: string | boolean | undefined;
|
|
39641
39579
|
rowProps?: RowProps<any> | undefined;
|
|
39642
39580
|
cellProps?: CellProps<any> | undefined;
|
|
@@ -39730,6 +39668,7 @@ declare const VDataTableRows: {
|
|
|
39730
39668
|
noDataText: string;
|
|
39731
39669
|
} & {
|
|
39732
39670
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
39671
|
+
color?: string | undefined;
|
|
39733
39672
|
loading?: string | boolean | undefined;
|
|
39734
39673
|
rowProps?: RowProps<any> | undefined;
|
|
39735
39674
|
cellProps?: CellProps<any> | undefined;
|
|
@@ -39759,6 +39698,7 @@ declare const VDataTableRows: {
|
|
|
39759
39698
|
noDataText: string;
|
|
39760
39699
|
} & {
|
|
39761
39700
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
39701
|
+
color?: string | undefined;
|
|
39762
39702
|
loading?: string | boolean | undefined;
|
|
39763
39703
|
rowProps?: RowProps<any> | undefined;
|
|
39764
39704
|
cellProps?: CellProps<any> | undefined;
|
|
@@ -39864,6 +39804,7 @@ declare const VDataTableRows: {
|
|
|
39864
39804
|
type: PropType<IconValue>;
|
|
39865
39805
|
default: string;
|
|
39866
39806
|
};
|
|
39807
|
+
color: StringConstructor;
|
|
39867
39808
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
39868
39809
|
loadingText: {
|
|
39869
39810
|
type: StringConstructor;
|
|
@@ -39907,6 +39848,7 @@ declare const VDataTableRows: {
|
|
|
39907
39848
|
type: PropType<IconValue>;
|
|
39908
39849
|
default: string;
|
|
39909
39850
|
};
|
|
39851
|
+
color: StringConstructor;
|
|
39910
39852
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
39911
39853
|
loadingText: {
|
|
39912
39854
|
type: StringConstructor;
|
|
@@ -40736,246 +40678,7 @@ declare const VDataTable: {
|
|
|
40736
40678
|
type: (NumberConstructor | StringConstructor)[];
|
|
40737
40679
|
default: number;
|
|
40738
40680
|
};
|
|
40739
|
-
prevIcon: {
|
|
40740
|
-
type: vue.PropType<IconValue>;
|
|
40741
|
-
default: string;
|
|
40742
|
-
};
|
|
40743
|
-
nextIcon: {
|
|
40744
|
-
type: vue.PropType<IconValue>;
|
|
40745
|
-
default: string;
|
|
40746
|
-
};
|
|
40747
|
-
firstIcon: {
|
|
40748
|
-
type: vue.PropType<IconValue>;
|
|
40749
|
-
default: string;
|
|
40750
|
-
};
|
|
40751
|
-
lastIcon: {
|
|
40752
|
-
type: vue.PropType<IconValue>;
|
|
40753
|
-
default: string;
|
|
40754
|
-
};
|
|
40755
|
-
itemsPerPageText: {
|
|
40756
|
-
type: StringConstructor;
|
|
40757
|
-
default: string;
|
|
40758
|
-
};
|
|
40759
|
-
pageText: {
|
|
40760
|
-
type: StringConstructor;
|
|
40761
|
-
default: string;
|
|
40762
|
-
};
|
|
40763
|
-
firstPageLabel: {
|
|
40764
|
-
type: StringConstructor;
|
|
40765
|
-
default: string;
|
|
40766
|
-
};
|
|
40767
|
-
prevPageLabel: {
|
|
40768
|
-
type: StringConstructor;
|
|
40769
|
-
default: string;
|
|
40770
|
-
};
|
|
40771
|
-
nextPageLabel: {
|
|
40772
|
-
type: StringConstructor;
|
|
40773
|
-
default: string;
|
|
40774
|
-
};
|
|
40775
|
-
lastPageLabel: {
|
|
40776
|
-
type: StringConstructor;
|
|
40777
|
-
default: string;
|
|
40778
|
-
};
|
|
40779
|
-
itemsPerPageOptions: {
|
|
40780
|
-
type: vue.PropType<readonly (number | {
|
|
40781
|
-
title: string;
|
|
40782
|
-
value: number;
|
|
40783
|
-
})[]>;
|
|
40784
|
-
default: () => {
|
|
40785
|
-
value: number;
|
|
40786
|
-
title: string;
|
|
40787
|
-
}[];
|
|
40788
|
-
};
|
|
40789
|
-
showCurrentPage: BooleanConstructor;
|
|
40790
|
-
headers: vue.PropType<readonly {
|
|
40791
|
-
readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
|
|
40792
|
-
readonly value?: SelectItemKey<Record<string, any>>;
|
|
40793
|
-
readonly title?: string | undefined;
|
|
40794
|
-
readonly fixed?: "end" | "start" | boolean | undefined;
|
|
40795
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
40796
|
-
readonly width?: string | number | undefined;
|
|
40797
|
-
readonly minWidth?: string | number | undefined;
|
|
40798
|
-
readonly maxWidth?: string | number | undefined;
|
|
40799
|
-
readonly nowrap?: boolean | undefined;
|
|
40800
|
-
readonly intent?: number | undefined;
|
|
40801
|
-
readonly headerProps?: {
|
|
40802
|
-
readonly [x: string]: any;
|
|
40803
|
-
} | undefined;
|
|
40804
|
-
readonly cellProps?: HeaderCellPropsFunction | {
|
|
40805
|
-
readonly [x: string]: any;
|
|
40806
|
-
} | undefined;
|
|
40807
|
-
readonly sortable?: boolean | undefined;
|
|
40808
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
40809
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
40810
|
-
readonly filter?: FilterFunction | undefined;
|
|
40811
|
-
readonly children?: readonly {
|
|
40812
|
-
readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
|
|
40813
|
-
readonly value?: SelectItemKey<Record<string, any>>;
|
|
40814
|
-
readonly title?: string | undefined;
|
|
40815
|
-
readonly fixed?: "end" | "start" | boolean | undefined;
|
|
40816
|
-
readonly align?: "center" | "end" | "start" | undefined;
|
|
40817
|
-
readonly width?: string | number | undefined;
|
|
40818
|
-
readonly minWidth?: string | number | undefined;
|
|
40819
|
-
readonly maxWidth?: string | number | undefined;
|
|
40820
|
-
readonly nowrap?: boolean | undefined;
|
|
40821
|
-
readonly intent?: number | undefined;
|
|
40822
|
-
readonly headerProps?: {
|
|
40823
|
-
readonly [x: string]: any;
|
|
40824
|
-
} | undefined;
|
|
40825
|
-
readonly cellProps?: HeaderCellPropsFunction | {
|
|
40826
|
-
readonly [x: string]: any;
|
|
40827
|
-
} | undefined;
|
|
40828
|
-
readonly sortable?: boolean | undefined;
|
|
40829
|
-
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
40830
|
-
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
40831
|
-
readonly filter?: FilterFunction | undefined;
|
|
40832
|
-
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
40833
|
-
}[] | undefined;
|
|
40834
|
-
}[]>;
|
|
40835
40681
|
color: StringConstructor;
|
|
40836
|
-
disableSort: BooleanConstructor;
|
|
40837
|
-
sortAscIcon: {
|
|
40838
|
-
type: vue.PropType<IconValue>;
|
|
40839
|
-
default: string;
|
|
40840
|
-
};
|
|
40841
|
-
sortDescIcon: {
|
|
40842
|
-
type: vue.PropType<IconValue>;
|
|
40843
|
-
default: string;
|
|
40844
|
-
};
|
|
40845
|
-
headerProps: {
|
|
40846
|
-
type: vue.PropType<Record<string, any>>;
|
|
40847
|
-
};
|
|
40848
|
-
sticky: BooleanConstructor;
|
|
40849
|
-
groupCollapseIcon: {
|
|
40850
|
-
type: vue.PropType<IconValue>;
|
|
40851
|
-
default: string;
|
|
40852
|
-
};
|
|
40853
|
-
groupExpandIcon: {
|
|
40854
|
-
type: vue.PropType<IconValue>;
|
|
40855
|
-
default: string;
|
|
40856
|
-
};
|
|
40857
|
-
collapseIcon: {
|
|
40858
|
-
type: vue.PropType<IconValue>;
|
|
40859
|
-
default: string;
|
|
40860
|
-
};
|
|
40861
|
-
expandIcon: {
|
|
40862
|
-
type: vue.PropType<IconValue>;
|
|
40863
|
-
default: string;
|
|
40864
|
-
};
|
|
40865
|
-
loadingText: {
|
|
40866
|
-
type: StringConstructor;
|
|
40867
|
-
default: string;
|
|
40868
|
-
};
|
|
40869
|
-
hideNoData: BooleanConstructor;
|
|
40870
|
-
noDataText: {
|
|
40871
|
-
type: StringConstructor;
|
|
40872
|
-
default: string;
|
|
40873
|
-
};
|
|
40874
|
-
fixedHeader: BooleanConstructor;
|
|
40875
|
-
fixedFooter: BooleanConstructor;
|
|
40876
|
-
height: (NumberConstructor | StringConstructor)[];
|
|
40877
|
-
hover: BooleanConstructor;
|
|
40878
|
-
striped: {
|
|
40879
|
-
type: vue.PropType<Striped>;
|
|
40880
|
-
default: null;
|
|
40881
|
-
validator: (v: any) => boolean;
|
|
40882
|
-
};
|
|
40883
|
-
hideDefaultBody: BooleanConstructor;
|
|
40884
|
-
hideDefaultFooter: BooleanConstructor;
|
|
40885
|
-
hideDefaultHeader: BooleanConstructor;
|
|
40886
|
-
width: (NumberConstructor | StringConstructor)[];
|
|
40887
|
-
search: StringConstructor;
|
|
40888
|
-
}, vue.ExtractPropTypes<{
|
|
40889
|
-
theme: StringConstructor;
|
|
40890
|
-
class: vue.PropType<any>;
|
|
40891
|
-
style: {
|
|
40892
|
-
type: vue.PropType<vue.StyleValue>;
|
|
40893
|
-
default: null;
|
|
40894
|
-
};
|
|
40895
|
-
mobile: {
|
|
40896
|
-
type: vue.PropType<boolean | null>;
|
|
40897
|
-
default: boolean;
|
|
40898
|
-
};
|
|
40899
|
-
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
40900
|
-
customFilter: vue.PropType<FilterFunction>;
|
|
40901
|
-
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
40902
|
-
filterKeys: vue.PropType<FilterKeys>;
|
|
40903
|
-
filterMode: {
|
|
40904
|
-
type: vue.PropType<FilterMode>;
|
|
40905
|
-
default: string;
|
|
40906
|
-
};
|
|
40907
|
-
noFilter: BooleanConstructor;
|
|
40908
|
-
expandOnClick: BooleanConstructor;
|
|
40909
|
-
showExpand: BooleanConstructor;
|
|
40910
|
-
expanded: {
|
|
40911
|
-
type: vue.PropType<readonly string[]>;
|
|
40912
|
-
default: () => never[];
|
|
40913
|
-
};
|
|
40914
|
-
initialSortOrder: {
|
|
40915
|
-
type: vue.PropType<"asc" | "desc">;
|
|
40916
|
-
default: string;
|
|
40917
|
-
validator: (v: any) => boolean;
|
|
40918
|
-
};
|
|
40919
|
-
sortBy: {
|
|
40920
|
-
type: vue.PropType<readonly SortItem[]>;
|
|
40921
|
-
default: () => never[];
|
|
40922
|
-
};
|
|
40923
|
-
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
40924
|
-
multiSort: {
|
|
40925
|
-
type: vue.PropType<boolean | MultiSortProps>;
|
|
40926
|
-
default: boolean;
|
|
40927
|
-
};
|
|
40928
|
-
mustSort: BooleanConstructor;
|
|
40929
|
-
groupBy: {
|
|
40930
|
-
type: vue.PropType<readonly SortItem[]>;
|
|
40931
|
-
default: () => never[];
|
|
40932
|
-
};
|
|
40933
|
-
items: {
|
|
40934
|
-
type: vue.PropType<any[]>;
|
|
40935
|
-
default: () => never[];
|
|
40936
|
-
};
|
|
40937
|
-
itemValue: {
|
|
40938
|
-
type: vue.PropType<SelectItemKey>;
|
|
40939
|
-
default: string;
|
|
40940
|
-
};
|
|
40941
|
-
itemSelectable: {
|
|
40942
|
-
type: vue.PropType<SelectItemKey>;
|
|
40943
|
-
default: null;
|
|
40944
|
-
};
|
|
40945
|
-
rowProps: vue.PropType<RowProps<any>>;
|
|
40946
|
-
cellProps: vue.PropType<CellProps<any>>;
|
|
40947
|
-
returnObject: BooleanConstructor;
|
|
40948
|
-
showSelect: BooleanConstructor;
|
|
40949
|
-
selectStrategy: {
|
|
40950
|
-
type: vue.PropType<"all" | "page" | "single">;
|
|
40951
|
-
default: string;
|
|
40952
|
-
};
|
|
40953
|
-
modelValue: {
|
|
40954
|
-
type: vue.PropType<readonly any[]>;
|
|
40955
|
-
default: () => never[];
|
|
40956
|
-
};
|
|
40957
|
-
valueComparator: {
|
|
40958
|
-
type: vue.PropType<typeof deepEqual>;
|
|
40959
|
-
default: typeof deepEqual;
|
|
40960
|
-
};
|
|
40961
|
-
density: {
|
|
40962
|
-
type: vue.PropType<Density>;
|
|
40963
|
-
default: string;
|
|
40964
|
-
validator: (v: any) => boolean;
|
|
40965
|
-
};
|
|
40966
|
-
tag: {
|
|
40967
|
-
type: vue.PropType<string | JSXComponent>;
|
|
40968
|
-
default: string;
|
|
40969
|
-
};
|
|
40970
|
-
loading: (BooleanConstructor | StringConstructor)[];
|
|
40971
|
-
page: {
|
|
40972
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
40973
|
-
default: number;
|
|
40974
|
-
};
|
|
40975
|
-
itemsPerPage: {
|
|
40976
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
40977
|
-
default: number;
|
|
40978
|
-
};
|
|
40979
40682
|
prevIcon: {
|
|
40980
40683
|
type: vue.PropType<IconValue>;
|
|
40981
40684
|
default: string;
|
|
@@ -41069,10 +40772,249 @@ declare const VDataTable: {
|
|
|
41069
40772
|
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
41070
40773
|
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
41071
40774
|
readonly filter?: FilterFunction | undefined;
|
|
41072
|
-
readonly children?: readonly any[] | undefined;
|
|
40775
|
+
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
41073
40776
|
}[] | undefined;
|
|
41074
40777
|
}[]>;
|
|
40778
|
+
disableSort: BooleanConstructor;
|
|
40779
|
+
sortAscIcon: {
|
|
40780
|
+
type: vue.PropType<IconValue>;
|
|
40781
|
+
default: string;
|
|
40782
|
+
};
|
|
40783
|
+
sortDescIcon: {
|
|
40784
|
+
type: vue.PropType<IconValue>;
|
|
40785
|
+
default: string;
|
|
40786
|
+
};
|
|
40787
|
+
headerProps: {
|
|
40788
|
+
type: vue.PropType<Record<string, any>>;
|
|
40789
|
+
};
|
|
40790
|
+
sticky: BooleanConstructor;
|
|
40791
|
+
groupCollapseIcon: {
|
|
40792
|
+
type: vue.PropType<IconValue>;
|
|
40793
|
+
default: string;
|
|
40794
|
+
};
|
|
40795
|
+
groupExpandIcon: {
|
|
40796
|
+
type: vue.PropType<IconValue>;
|
|
40797
|
+
default: string;
|
|
40798
|
+
};
|
|
40799
|
+
collapseIcon: {
|
|
40800
|
+
type: vue.PropType<IconValue>;
|
|
40801
|
+
default: string;
|
|
40802
|
+
};
|
|
40803
|
+
expandIcon: {
|
|
40804
|
+
type: vue.PropType<IconValue>;
|
|
40805
|
+
default: string;
|
|
40806
|
+
};
|
|
40807
|
+
loadingText: {
|
|
40808
|
+
type: StringConstructor;
|
|
40809
|
+
default: string;
|
|
40810
|
+
};
|
|
40811
|
+
hideNoData: BooleanConstructor;
|
|
40812
|
+
noDataText: {
|
|
40813
|
+
type: StringConstructor;
|
|
40814
|
+
default: string;
|
|
40815
|
+
};
|
|
40816
|
+
fixedHeader: BooleanConstructor;
|
|
40817
|
+
fixedFooter: BooleanConstructor;
|
|
40818
|
+
height: (NumberConstructor | StringConstructor)[];
|
|
40819
|
+
hover: BooleanConstructor;
|
|
40820
|
+
striped: {
|
|
40821
|
+
type: vue.PropType<Striped>;
|
|
40822
|
+
default: null;
|
|
40823
|
+
validator: (v: any) => boolean;
|
|
40824
|
+
};
|
|
40825
|
+
hideDefaultBody: BooleanConstructor;
|
|
40826
|
+
hideDefaultFooter: BooleanConstructor;
|
|
40827
|
+
hideDefaultHeader: BooleanConstructor;
|
|
40828
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
40829
|
+
search: StringConstructor;
|
|
40830
|
+
}, vue.ExtractPropTypes<{
|
|
40831
|
+
theme: StringConstructor;
|
|
40832
|
+
class: vue.PropType<any>;
|
|
40833
|
+
style: {
|
|
40834
|
+
type: vue.PropType<vue.StyleValue>;
|
|
40835
|
+
default: null;
|
|
40836
|
+
};
|
|
40837
|
+
mobile: {
|
|
40838
|
+
type: vue.PropType<boolean | null>;
|
|
40839
|
+
default: boolean;
|
|
40840
|
+
};
|
|
40841
|
+
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
|
40842
|
+
customFilter: vue.PropType<FilterFunction>;
|
|
40843
|
+
customKeyFilter: vue.PropType<FilterKeyFunctions>;
|
|
40844
|
+
filterKeys: vue.PropType<FilterKeys>;
|
|
40845
|
+
filterMode: {
|
|
40846
|
+
type: vue.PropType<FilterMode>;
|
|
40847
|
+
default: string;
|
|
40848
|
+
};
|
|
40849
|
+
noFilter: BooleanConstructor;
|
|
40850
|
+
expandOnClick: BooleanConstructor;
|
|
40851
|
+
showExpand: BooleanConstructor;
|
|
40852
|
+
expanded: {
|
|
40853
|
+
type: vue.PropType<readonly string[]>;
|
|
40854
|
+
default: () => never[];
|
|
40855
|
+
};
|
|
40856
|
+
initialSortOrder: {
|
|
40857
|
+
type: vue.PropType<"asc" | "desc">;
|
|
40858
|
+
default: string;
|
|
40859
|
+
validator: (v: any) => boolean;
|
|
40860
|
+
};
|
|
40861
|
+
sortBy: {
|
|
40862
|
+
type: vue.PropType<readonly SortItem[]>;
|
|
40863
|
+
default: () => never[];
|
|
40864
|
+
};
|
|
40865
|
+
customKeySort: vue.PropType<Record<string, DataTableCompareFunction>>;
|
|
40866
|
+
multiSort: {
|
|
40867
|
+
type: vue.PropType<boolean | MultiSortProps>;
|
|
40868
|
+
default: boolean;
|
|
40869
|
+
};
|
|
40870
|
+
mustSort: BooleanConstructor;
|
|
40871
|
+
groupBy: {
|
|
40872
|
+
type: vue.PropType<readonly SortItem[]>;
|
|
40873
|
+
default: () => never[];
|
|
40874
|
+
};
|
|
40875
|
+
items: {
|
|
40876
|
+
type: vue.PropType<any[]>;
|
|
40877
|
+
default: () => never[];
|
|
40878
|
+
};
|
|
40879
|
+
itemValue: {
|
|
40880
|
+
type: vue.PropType<SelectItemKey>;
|
|
40881
|
+
default: string;
|
|
40882
|
+
};
|
|
40883
|
+
itemSelectable: {
|
|
40884
|
+
type: vue.PropType<SelectItemKey>;
|
|
40885
|
+
default: null;
|
|
40886
|
+
};
|
|
40887
|
+
rowProps: vue.PropType<RowProps<any>>;
|
|
40888
|
+
cellProps: vue.PropType<CellProps<any>>;
|
|
40889
|
+
returnObject: BooleanConstructor;
|
|
40890
|
+
showSelect: BooleanConstructor;
|
|
40891
|
+
selectStrategy: {
|
|
40892
|
+
type: vue.PropType<"all" | "page" | "single">;
|
|
40893
|
+
default: string;
|
|
40894
|
+
};
|
|
40895
|
+
modelValue: {
|
|
40896
|
+
type: vue.PropType<readonly any[]>;
|
|
40897
|
+
default: () => never[];
|
|
40898
|
+
};
|
|
40899
|
+
valueComparator: {
|
|
40900
|
+
type: vue.PropType<typeof deepEqual>;
|
|
40901
|
+
default: typeof deepEqual;
|
|
40902
|
+
};
|
|
40903
|
+
density: {
|
|
40904
|
+
type: vue.PropType<Density>;
|
|
40905
|
+
default: string;
|
|
40906
|
+
validator: (v: any) => boolean;
|
|
40907
|
+
};
|
|
40908
|
+
tag: {
|
|
40909
|
+
type: vue.PropType<string | JSXComponent>;
|
|
40910
|
+
default: string;
|
|
40911
|
+
};
|
|
40912
|
+
loading: (BooleanConstructor | StringConstructor)[];
|
|
40913
|
+
page: {
|
|
40914
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
40915
|
+
default: number;
|
|
40916
|
+
};
|
|
40917
|
+
itemsPerPage: {
|
|
40918
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
40919
|
+
default: number;
|
|
40920
|
+
};
|
|
41075
40921
|
color: StringConstructor;
|
|
40922
|
+
prevIcon: {
|
|
40923
|
+
type: vue.PropType<IconValue>;
|
|
40924
|
+
default: string;
|
|
40925
|
+
};
|
|
40926
|
+
nextIcon: {
|
|
40927
|
+
type: vue.PropType<IconValue>;
|
|
40928
|
+
default: string;
|
|
40929
|
+
};
|
|
40930
|
+
firstIcon: {
|
|
40931
|
+
type: vue.PropType<IconValue>;
|
|
40932
|
+
default: string;
|
|
40933
|
+
};
|
|
40934
|
+
lastIcon: {
|
|
40935
|
+
type: vue.PropType<IconValue>;
|
|
40936
|
+
default: string;
|
|
40937
|
+
};
|
|
40938
|
+
itemsPerPageText: {
|
|
40939
|
+
type: StringConstructor;
|
|
40940
|
+
default: string;
|
|
40941
|
+
};
|
|
40942
|
+
pageText: {
|
|
40943
|
+
type: StringConstructor;
|
|
40944
|
+
default: string;
|
|
40945
|
+
};
|
|
40946
|
+
firstPageLabel: {
|
|
40947
|
+
type: StringConstructor;
|
|
40948
|
+
default: string;
|
|
40949
|
+
};
|
|
40950
|
+
prevPageLabel: {
|
|
40951
|
+
type: StringConstructor;
|
|
40952
|
+
default: string;
|
|
40953
|
+
};
|
|
40954
|
+
nextPageLabel: {
|
|
40955
|
+
type: StringConstructor;
|
|
40956
|
+
default: string;
|
|
40957
|
+
};
|
|
40958
|
+
lastPageLabel: {
|
|
40959
|
+
type: StringConstructor;
|
|
40960
|
+
default: string;
|
|
40961
|
+
};
|
|
40962
|
+
itemsPerPageOptions: {
|
|
40963
|
+
type: vue.PropType<readonly (number | {
|
|
40964
|
+
title: string;
|
|
40965
|
+
value: number;
|
|
40966
|
+
})[]>;
|
|
40967
|
+
default: () => {
|
|
40968
|
+
value: number;
|
|
40969
|
+
title: string;
|
|
40970
|
+
}[];
|
|
40971
|
+
};
|
|
40972
|
+
showCurrentPage: BooleanConstructor;
|
|
40973
|
+
headers: vue.PropType<readonly {
|
|
40974
|
+
readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
|
|
40975
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
40976
|
+
readonly title?: string | undefined;
|
|
40977
|
+
readonly fixed?: "end" | "start" | boolean | undefined;
|
|
40978
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
40979
|
+
readonly width?: string | number | undefined;
|
|
40980
|
+
readonly minWidth?: string | number | undefined;
|
|
40981
|
+
readonly maxWidth?: string | number | undefined;
|
|
40982
|
+
readonly nowrap?: boolean | undefined;
|
|
40983
|
+
readonly intent?: number | undefined;
|
|
40984
|
+
readonly headerProps?: {
|
|
40985
|
+
readonly [x: string]: any;
|
|
40986
|
+
} | undefined;
|
|
40987
|
+
readonly cellProps?: HeaderCellPropsFunction | {
|
|
40988
|
+
readonly [x: string]: any;
|
|
40989
|
+
} | undefined;
|
|
40990
|
+
readonly sortable?: boolean | undefined;
|
|
40991
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
40992
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
40993
|
+
readonly filter?: FilterFunction | undefined;
|
|
40994
|
+
readonly children?: readonly {
|
|
40995
|
+
readonly key?: "data-table-expand" | "data-table-group" | "data-table-select" | (string & {}) | undefined;
|
|
40996
|
+
readonly value?: SelectItemKey<Record<string, any>>;
|
|
40997
|
+
readonly title?: string | undefined;
|
|
40998
|
+
readonly fixed?: "end" | "start" | boolean | undefined;
|
|
40999
|
+
readonly align?: "center" | "end" | "start" | undefined;
|
|
41000
|
+
readonly width?: string | number | undefined;
|
|
41001
|
+
readonly minWidth?: string | number | undefined;
|
|
41002
|
+
readonly maxWidth?: string | number | undefined;
|
|
41003
|
+
readonly nowrap?: boolean | undefined;
|
|
41004
|
+
readonly intent?: number | undefined;
|
|
41005
|
+
readonly headerProps?: {
|
|
41006
|
+
readonly [x: string]: any;
|
|
41007
|
+
} | undefined;
|
|
41008
|
+
readonly cellProps?: HeaderCellPropsFunction | {
|
|
41009
|
+
readonly [x: string]: any;
|
|
41010
|
+
} | undefined;
|
|
41011
|
+
readonly sortable?: boolean | undefined;
|
|
41012
|
+
readonly sort?: DataTableCompareFunction<any> | undefined;
|
|
41013
|
+
readonly sortRaw?: DataTableCompareFunction<any> | undefined;
|
|
41014
|
+
readonly filter?: FilterFunction | undefined;
|
|
41015
|
+
readonly children?: readonly any[] | undefined;
|
|
41016
|
+
}[] | undefined;
|
|
41017
|
+
}[]>;
|
|
41076
41018
|
disableSort: BooleanConstructor;
|
|
41077
41019
|
sortAscIcon: {
|
|
41078
41020
|
type: vue.PropType<IconValue>;
|
|
@@ -41145,7 +41087,9 @@ declare const VDataTableFooter: {
|
|
|
41145
41087
|
value: number;
|
|
41146
41088
|
})[];
|
|
41147
41089
|
showCurrentPage: boolean;
|
|
41148
|
-
} & {
|
|
41090
|
+
} & {
|
|
41091
|
+
color?: string | undefined;
|
|
41092
|
+
} & {
|
|
41149
41093
|
$children?: {
|
|
41150
41094
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
41151
41095
|
} | {
|
|
@@ -41199,7 +41143,9 @@ declare const VDataTableFooter: {
|
|
|
41199
41143
|
value: number;
|
|
41200
41144
|
})[];
|
|
41201
41145
|
showCurrentPage: boolean;
|
|
41202
|
-
} & {
|
|
41146
|
+
} & {
|
|
41147
|
+
color?: string | undefined;
|
|
41148
|
+
} & {
|
|
41203
41149
|
$children?: {
|
|
41204
41150
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
41205
41151
|
} | {
|
|
@@ -41246,7 +41192,9 @@ declare const VDataTableFooter: {
|
|
|
41246
41192
|
value: number;
|
|
41247
41193
|
})[];
|
|
41248
41194
|
showCurrentPage: boolean;
|
|
41249
|
-
} & {
|
|
41195
|
+
} & {
|
|
41196
|
+
color?: string | undefined;
|
|
41197
|
+
} & {
|
|
41250
41198
|
$children?: {
|
|
41251
41199
|
prepend?: (() => vue.VNodeChild) | undefined;
|
|
41252
41200
|
} | {
|
|
@@ -41278,6 +41226,7 @@ declare const VDataTableFooter: {
|
|
|
41278
41226
|
[key: string]: any;
|
|
41279
41227
|
}>[];
|
|
41280
41228
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
41229
|
+
color: StringConstructor;
|
|
41281
41230
|
prevIcon: {
|
|
41282
41231
|
type: PropType<IconValue>;
|
|
41283
41232
|
default: string;
|
|
@@ -41330,6 +41279,7 @@ declare const VDataTableFooter: {
|
|
|
41330
41279
|
};
|
|
41331
41280
|
showCurrentPage: BooleanConstructor;
|
|
41332
41281
|
}, vue.ExtractPropTypes<{
|
|
41282
|
+
color: StringConstructor;
|
|
41333
41283
|
prevIcon: {
|
|
41334
41284
|
type: PropType<IconValue>;
|
|
41335
41285
|
default: string;
|
|
@@ -43088,6 +43038,7 @@ declare const VDataTableServer: {
|
|
|
43088
43038
|
type: (NumberConstructor | StringConstructor)[];
|
|
43089
43039
|
default: number;
|
|
43090
43040
|
};
|
|
43041
|
+
color: StringConstructor;
|
|
43091
43042
|
prevIcon: {
|
|
43092
43043
|
type: vue.PropType<IconValue>;
|
|
43093
43044
|
default: string;
|
|
@@ -43184,7 +43135,6 @@ declare const VDataTableServer: {
|
|
|
43184
43135
|
readonly children?: readonly /*elided*/ any[] | undefined;
|
|
43185
43136
|
}[] | undefined;
|
|
43186
43137
|
}[]>;
|
|
43187
|
-
color: StringConstructor;
|
|
43188
43138
|
disableSort: BooleanConstructor;
|
|
43189
43139
|
sortAscIcon: {
|
|
43190
43140
|
type: vue.PropType<IconValue>;
|
|
@@ -43324,6 +43274,7 @@ declare const VDataTableServer: {
|
|
|
43324
43274
|
type: (NumberConstructor | StringConstructor)[];
|
|
43325
43275
|
default: number;
|
|
43326
43276
|
};
|
|
43277
|
+
color: StringConstructor;
|
|
43327
43278
|
prevIcon: {
|
|
43328
43279
|
type: vue.PropType<IconValue>;
|
|
43329
43280
|
default: string;
|
|
@@ -43420,7 +43371,6 @@ declare const VDataTableServer: {
|
|
|
43420
43371
|
readonly children?: readonly any[] | undefined;
|
|
43421
43372
|
}[] | undefined;
|
|
43422
43373
|
}[]>;
|
|
43423
|
-
color: StringConstructor;
|
|
43424
43374
|
disableSort: BooleanConstructor;
|
|
43425
43375
|
sortAscIcon: {
|
|
43426
43376
|
type: vue.PropType<IconValue>;
|
|
@@ -92386,6 +92336,8 @@ type VTabsSlots<T> = {
|
|
|
92386
92336
|
tab: VTabsSlot<T>;
|
|
92387
92337
|
item: VTabsSlot<T>;
|
|
92388
92338
|
window: never;
|
|
92339
|
+
prev: never;
|
|
92340
|
+
next: never;
|
|
92389
92341
|
} & {
|
|
92390
92342
|
[key: `tab.${string}`]: VTabsSlot<T>;
|
|
92391
92343
|
[key: `item.${string}`]: VTabsSlot<T>;
|
|
@@ -92426,7 +92378,7 @@ declare const VTabs: {
|
|
|
92426
92378
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
92427
92379
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
92428
92380
|
"update:modelValue": (v: unknown) => true;
|
|
92429
|
-
}, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
92381
|
+
}, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:next" | "v-slot:prev" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
92430
92382
|
style: vue.StyleValue;
|
|
92431
92383
|
mobile: boolean | null;
|
|
92432
92384
|
density: Density;
|
|
@@ -92466,6 +92418,12 @@ declare const VTabs: {
|
|
|
92466
92418
|
window: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
92467
92419
|
[key: string]: any;
|
|
92468
92420
|
}>[];
|
|
92421
|
+
prev: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
92422
|
+
[key: string]: any;
|
|
92423
|
+
}>[];
|
|
92424
|
+
next: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
92425
|
+
[key: string]: any;
|
|
92426
|
+
}>[];
|
|
92469
92427
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
92470
92428
|
P: {};
|
|
92471
92429
|
B: {};
|
|
@@ -92566,7 +92524,7 @@ declare const VTabs: {
|
|
|
92566
92524
|
"onUpdate:modelValue"?: ((v: unknown) => any) | undefined;
|
|
92567
92525
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
92568
92526
|
"update:modelValue": (v: unknown) => true;
|
|
92569
|
-
}, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, string, {
|
|
92527
|
+
}, "$children" | "items" | "v-slot:default" | "v-slot:item" | "v-slot:next" | "v-slot:prev" | "v-slot:tab" | "v-slot:window" | "v-slots" | `v-slot:item.${string}` | `v-slot:tab.${string}`>, string, {
|
|
92570
92528
|
style: vue.StyleValue;
|
|
92571
92529
|
mobile: boolean | null;
|
|
92572
92530
|
density: Density;
|
|
@@ -92606,6 +92564,12 @@ declare const VTabs: {
|
|
|
92606
92564
|
window: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
92607
92565
|
[key: string]: any;
|
|
92608
92566
|
}>[];
|
|
92567
|
+
prev: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
92568
|
+
[key: string]: any;
|
|
92569
|
+
}>[];
|
|
92570
|
+
next: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
92571
|
+
[key: string]: any;
|
|
92572
|
+
}>[];
|
|
92609
92573
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T = TabItem>(props: {
|
|
92610
92574
|
items?: T[] | undefined;
|
|
92611
92575
|
}, slots: VTabsSlots<T>) => GenericProps<{
|
|
@@ -100517,19 +100481,1065 @@ declare const VTooltip: {
|
|
|
100517
100481
|
}>>;
|
|
100518
100482
|
type VTooltip = InstanceType<typeof VTooltip>;
|
|
100519
100483
|
|
|
100520
|
-
|
|
100521
|
-
|
|
100522
|
-
|
|
100523
|
-
|
|
100524
|
-
|
|
100484
|
+
declare const VTreeview: {
|
|
100485
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
100486
|
+
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
100487
|
+
filterKeys: FilterKeys;
|
|
100488
|
+
filterMode: FilterMode;
|
|
100489
|
+
noFilter: boolean;
|
|
100490
|
+
density: Density;
|
|
100491
|
+
tile: boolean;
|
|
100492
|
+
tag: string | JSXComponent;
|
|
100493
|
+
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
100494
|
+
activatable: boolean;
|
|
100495
|
+
selectable: boolean;
|
|
100496
|
+
selectStrategy: SelectStrategyProp;
|
|
100497
|
+
mandatory: boolean;
|
|
100498
|
+
itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100499
|
+
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100500
|
+
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100501
|
+
itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100502
|
+
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100503
|
+
returnObject: boolean;
|
|
100504
|
+
disabled: boolean;
|
|
100505
|
+
filterable: boolean;
|
|
100506
|
+
expandIcon: IconValue;
|
|
100507
|
+
collapseIcon: IconValue;
|
|
100508
|
+
lines: "one" | "three" | "two" | false;
|
|
100509
|
+
slim: boolean;
|
|
100510
|
+
hideActions: boolean;
|
|
100511
|
+
fluid: boolean;
|
|
100512
|
+
loadingIcon: string;
|
|
100513
|
+
indeterminateIcon: IconValue;
|
|
100514
|
+
separateRoots: boolean;
|
|
100515
|
+
openAll: boolean;
|
|
100516
|
+
hideNoData: boolean;
|
|
100517
|
+
noDataText: string;
|
|
100518
|
+
} & {
|
|
100519
|
+
theme?: string | undefined;
|
|
100520
|
+
class?: any;
|
|
100521
|
+
customFilter?: FilterFunction | undefined;
|
|
100522
|
+
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
100523
|
+
border?: string | number | boolean | undefined;
|
|
100524
|
+
elevation?: string | number | undefined;
|
|
100525
|
+
rounded?: string | number | boolean | undefined;
|
|
100526
|
+
color?: string | undefined;
|
|
100527
|
+
height?: string | number | undefined;
|
|
100528
|
+
maxHeight?: string | number | undefined;
|
|
100529
|
+
maxWidth?: string | number | undefined;
|
|
100530
|
+
minHeight?: string | number | undefined;
|
|
100531
|
+
minWidth?: string | number | undefined;
|
|
100532
|
+
width?: string | number | undefined;
|
|
100533
|
+
activeStrategy?: ActiveStrategyProp | undefined;
|
|
100534
|
+
opened?: any;
|
|
100535
|
+
activated?: any;
|
|
100536
|
+
selected?: any;
|
|
100537
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
100538
|
+
baseColor?: string | undefined;
|
|
100539
|
+
activeColor?: string | undefined;
|
|
100540
|
+
activeClass?: string | undefined;
|
|
100541
|
+
bgColor?: string | undefined;
|
|
100542
|
+
"onClick:open"?: ((args_0: {
|
|
100543
|
+
id: unknown;
|
|
100544
|
+
value: boolean;
|
|
100545
|
+
path: unknown[];
|
|
100546
|
+
}) => void) | undefined;
|
|
100547
|
+
"onClick:select"?: ((args_0: {
|
|
100548
|
+
id: unknown;
|
|
100549
|
+
value: boolean;
|
|
100550
|
+
path: unknown[];
|
|
100551
|
+
}) => void) | undefined;
|
|
100552
|
+
"onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
|
|
100553
|
+
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
|
100554
|
+
openOnClick?: boolean | undefined;
|
|
100555
|
+
falseIcon?: IconValue | undefined;
|
|
100556
|
+
trueIcon?: IconValue | undefined;
|
|
100557
|
+
selectedColor?: string | undefined;
|
|
100558
|
+
indentLines?: boolean | IndentLinesVariant | undefined;
|
|
100559
|
+
search?: string | undefined;
|
|
100560
|
+
modelValue?: unknown[] | undefined;
|
|
100561
|
+
} & {
|
|
100562
|
+
"onClick:open"?: ((value: {
|
|
100563
|
+
id: unknown;
|
|
100564
|
+
value: boolean;
|
|
100565
|
+
path: unknown[];
|
|
100566
|
+
}) => any) | undefined;
|
|
100567
|
+
"onClick:select"?: ((value: {
|
|
100568
|
+
id: unknown;
|
|
100569
|
+
value: boolean;
|
|
100570
|
+
path: unknown[];
|
|
100571
|
+
}) => any) | undefined;
|
|
100572
|
+
"onUpdate:activated"?: ((val: unknown) => any) | undefined;
|
|
100573
|
+
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
100574
|
+
"onUpdate:opened"?: ((val: unknown) => any) | undefined;
|
|
100575
|
+
"onUpdate:selected"?: ((val: unknown) => any) | undefined;
|
|
100576
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
100577
|
+
"update:opened": (val: unknown) => true;
|
|
100578
|
+
"update:activated": (val: unknown) => true;
|
|
100579
|
+
"update:selected": (val: unknown) => true;
|
|
100580
|
+
"update:modelValue": (val: unknown) => true;
|
|
100581
|
+
"click:open": (value: {
|
|
100582
|
+
id: unknown;
|
|
100583
|
+
value: boolean;
|
|
100584
|
+
path: unknown[];
|
|
100585
|
+
}) => true;
|
|
100586
|
+
"click:select": (value: {
|
|
100587
|
+
id: unknown;
|
|
100588
|
+
value: boolean;
|
|
100589
|
+
path: unknown[];
|
|
100590
|
+
}) => true;
|
|
100591
|
+
}, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:no-data" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
100592
|
+
style: vue.StyleValue;
|
|
100593
|
+
filterKeys: FilterKeys;
|
|
100594
|
+
filterMode: FilterMode;
|
|
100595
|
+
noFilter: boolean;
|
|
100596
|
+
density: Density;
|
|
100597
|
+
rounded: string | number | boolean;
|
|
100598
|
+
tile: boolean;
|
|
100599
|
+
tag: string | JSXComponent;
|
|
100600
|
+
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
100601
|
+
activatable: boolean;
|
|
100602
|
+
selectable: boolean;
|
|
100603
|
+
selectStrategy: SelectStrategyProp;
|
|
100604
|
+
mandatory: boolean;
|
|
100605
|
+
itemTitle: SelectItemKey;
|
|
100606
|
+
itemValue: SelectItemKey;
|
|
100607
|
+
itemChildren: SelectItemKey;
|
|
100608
|
+
itemProps: SelectItemKey;
|
|
100609
|
+
itemType: SelectItemKey;
|
|
100610
|
+
returnObject: boolean;
|
|
100611
|
+
disabled: boolean;
|
|
100612
|
+
filterable: boolean;
|
|
100613
|
+
expandIcon: IconValue;
|
|
100614
|
+
collapseIcon: IconValue;
|
|
100615
|
+
lines: "one" | "three" | "two" | false;
|
|
100616
|
+
slim: boolean;
|
|
100617
|
+
hideActions: boolean;
|
|
100618
|
+
fluid: boolean;
|
|
100619
|
+
loadingIcon: string;
|
|
100620
|
+
openOnClick: boolean;
|
|
100621
|
+
indeterminateIcon: IconValue;
|
|
100622
|
+
separateRoots: boolean;
|
|
100623
|
+
openAll: boolean;
|
|
100624
|
+
hideNoData: boolean;
|
|
100625
|
+
noDataText: string;
|
|
100626
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
100627
|
+
prepend: (arg: ListItemSlot & {
|
|
100628
|
+
item: unknown;
|
|
100629
|
+
internalItem: InternalListItem<unknown>;
|
|
100630
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100631
|
+
[key: string]: any;
|
|
100632
|
+
}>[];
|
|
100633
|
+
append: (arg: ListItemSlot & {
|
|
100634
|
+
item: unknown;
|
|
100635
|
+
internalItem: InternalListItem<unknown>;
|
|
100636
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100637
|
+
[key: string]: any;
|
|
100638
|
+
}>[];
|
|
100639
|
+
title: (arg: ListItemTitleSlot & {
|
|
100640
|
+
item: unknown;
|
|
100641
|
+
internalItem: InternalListItem<unknown>;
|
|
100642
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100643
|
+
[key: string]: any;
|
|
100644
|
+
}>[];
|
|
100645
|
+
subtitle: (arg: ListItemSubtitleSlot & {
|
|
100646
|
+
item: unknown;
|
|
100647
|
+
internalItem: InternalListItem<unknown>;
|
|
100648
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100649
|
+
[key: string]: any;
|
|
100650
|
+
}>[];
|
|
100651
|
+
toggle: (arg: ListItemSlot & {
|
|
100652
|
+
props: {
|
|
100653
|
+
onClick: (e: PointerEvent) => void;
|
|
100654
|
+
};
|
|
100655
|
+
} & {
|
|
100656
|
+
loading: boolean;
|
|
100657
|
+
} & {
|
|
100658
|
+
item: unknown;
|
|
100659
|
+
internalItem: InternalListItem<unknown>;
|
|
100660
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100661
|
+
[key: string]: any;
|
|
100662
|
+
}>[];
|
|
100663
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100664
|
+
[key: string]: any;
|
|
100665
|
+
}>[];
|
|
100666
|
+
item: (arg: {
|
|
100667
|
+
props: {
|
|
100668
|
+
[key: string]: any;
|
|
100669
|
+
title: string;
|
|
100670
|
+
value: any;
|
|
100671
|
+
};
|
|
100672
|
+
item: unknown;
|
|
100673
|
+
internalItem: InternalListItem<unknown>;
|
|
100674
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100675
|
+
[key: string]: any;
|
|
100676
|
+
}>[];
|
|
100677
|
+
header: (arg: {
|
|
100678
|
+
props: {
|
|
100679
|
+
[key: string]: any;
|
|
100680
|
+
title: string;
|
|
100681
|
+
value: any;
|
|
100682
|
+
};
|
|
100683
|
+
item: unknown;
|
|
100684
|
+
internalItem: InternalListItem<unknown>;
|
|
100685
|
+
loading: boolean;
|
|
100686
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100687
|
+
[key: string]: any;
|
|
100688
|
+
}>[];
|
|
100689
|
+
footer: (arg: {
|
|
100690
|
+
props: {
|
|
100691
|
+
indentLines?: IndentLineType[] | undefined;
|
|
100692
|
+
};
|
|
100693
|
+
item: unknown;
|
|
100694
|
+
internalItem: InternalListItem<unknown>;
|
|
100695
|
+
loading: boolean;
|
|
100696
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100697
|
+
[key: string]: any;
|
|
100698
|
+
}>[];
|
|
100699
|
+
divider: (arg: {
|
|
100700
|
+
props: {
|
|
100701
|
+
[key: string]: any;
|
|
100702
|
+
title: string;
|
|
100703
|
+
value: any;
|
|
100704
|
+
};
|
|
100705
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100706
|
+
[key: string]: any;
|
|
100707
|
+
}>[];
|
|
100708
|
+
subheader: (arg: {
|
|
100709
|
+
props: {
|
|
100710
|
+
[key: string]: any;
|
|
100711
|
+
title: string;
|
|
100712
|
+
value: any;
|
|
100713
|
+
};
|
|
100714
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100715
|
+
[key: string]: any;
|
|
100716
|
+
}>[];
|
|
100717
|
+
"no-data": () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
100718
|
+
[key: string]: any;
|
|
100719
|
+
}>[];
|
|
100720
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
100721
|
+
P: {};
|
|
100722
|
+
B: {};
|
|
100723
|
+
D: {};
|
|
100724
|
+
C: {};
|
|
100725
|
+
M: {};
|
|
100726
|
+
Defaults: {};
|
|
100727
|
+
}, {
|
|
100728
|
+
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
100729
|
+
filterKeys: FilterKeys;
|
|
100730
|
+
filterMode: FilterMode;
|
|
100731
|
+
noFilter: boolean;
|
|
100732
|
+
density: Density;
|
|
100733
|
+
tile: boolean;
|
|
100734
|
+
tag: string | JSXComponent;
|
|
100735
|
+
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
100736
|
+
activatable: boolean;
|
|
100737
|
+
selectable: boolean;
|
|
100738
|
+
selectStrategy: SelectStrategyProp;
|
|
100739
|
+
mandatory: boolean;
|
|
100740
|
+
itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100741
|
+
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100742
|
+
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100743
|
+
itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100744
|
+
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100745
|
+
returnObject: boolean;
|
|
100746
|
+
disabled: boolean;
|
|
100747
|
+
filterable: boolean;
|
|
100748
|
+
expandIcon: IconValue;
|
|
100749
|
+
collapseIcon: IconValue;
|
|
100750
|
+
lines: "one" | "three" | "two" | false;
|
|
100751
|
+
slim: boolean;
|
|
100752
|
+
hideActions: boolean;
|
|
100753
|
+
fluid: boolean;
|
|
100754
|
+
loadingIcon: string;
|
|
100755
|
+
indeterminateIcon: IconValue;
|
|
100756
|
+
separateRoots: boolean;
|
|
100757
|
+
openAll: boolean;
|
|
100758
|
+
hideNoData: boolean;
|
|
100759
|
+
noDataText: string;
|
|
100760
|
+
} & {
|
|
100761
|
+
theme?: string | undefined;
|
|
100762
|
+
class?: any;
|
|
100763
|
+
customFilter?: FilterFunction | undefined;
|
|
100764
|
+
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
100765
|
+
border?: string | number | boolean | undefined;
|
|
100766
|
+
elevation?: string | number | undefined;
|
|
100767
|
+
rounded?: string | number | boolean | undefined;
|
|
100768
|
+
color?: string | undefined;
|
|
100769
|
+
height?: string | number | undefined;
|
|
100770
|
+
maxHeight?: string | number | undefined;
|
|
100771
|
+
maxWidth?: string | number | undefined;
|
|
100772
|
+
minHeight?: string | number | undefined;
|
|
100773
|
+
minWidth?: string | number | undefined;
|
|
100774
|
+
width?: string | number | undefined;
|
|
100775
|
+
activeStrategy?: ActiveStrategyProp | undefined;
|
|
100776
|
+
opened?: any;
|
|
100777
|
+
activated?: any;
|
|
100778
|
+
selected?: any;
|
|
100779
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
100780
|
+
baseColor?: string | undefined;
|
|
100781
|
+
activeColor?: string | undefined;
|
|
100782
|
+
activeClass?: string | undefined;
|
|
100783
|
+
bgColor?: string | undefined;
|
|
100784
|
+
"onClick:open"?: ((args_0: {
|
|
100785
|
+
id: unknown;
|
|
100786
|
+
value: boolean;
|
|
100787
|
+
path: unknown[];
|
|
100788
|
+
}) => void) | undefined;
|
|
100789
|
+
"onClick:select"?: ((args_0: {
|
|
100790
|
+
id: unknown;
|
|
100791
|
+
value: boolean;
|
|
100792
|
+
path: unknown[];
|
|
100793
|
+
}) => void) | undefined;
|
|
100794
|
+
"onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
|
|
100795
|
+
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
|
100796
|
+
openOnClick?: boolean | undefined;
|
|
100797
|
+
falseIcon?: IconValue | undefined;
|
|
100798
|
+
trueIcon?: IconValue | undefined;
|
|
100799
|
+
selectedColor?: string | undefined;
|
|
100800
|
+
indentLines?: boolean | IndentLinesVariant | undefined;
|
|
100801
|
+
search?: string | undefined;
|
|
100802
|
+
modelValue?: unknown[] | undefined;
|
|
100803
|
+
} & {
|
|
100804
|
+
"onClick:open"?: ((value: {
|
|
100805
|
+
id: unknown;
|
|
100806
|
+
value: boolean;
|
|
100807
|
+
path: unknown[];
|
|
100808
|
+
}) => any) | undefined;
|
|
100809
|
+
"onClick:select"?: ((value: {
|
|
100810
|
+
id: unknown;
|
|
100811
|
+
value: boolean;
|
|
100812
|
+
path: unknown[];
|
|
100813
|
+
}) => any) | undefined;
|
|
100814
|
+
"onUpdate:activated"?: ((val: unknown) => any) | undefined;
|
|
100815
|
+
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
100816
|
+
"onUpdate:opened"?: ((val: unknown) => any) | undefined;
|
|
100817
|
+
"onUpdate:selected"?: ((val: unknown) => any) | undefined;
|
|
100818
|
+
}, {}, {}, {}, {}, {
|
|
100819
|
+
style: vue.StyleValue;
|
|
100820
|
+
filterKeys: FilterKeys;
|
|
100821
|
+
filterMode: FilterMode;
|
|
100822
|
+
noFilter: boolean;
|
|
100823
|
+
density: Density;
|
|
100824
|
+
rounded: string | number | boolean;
|
|
100825
|
+
tile: boolean;
|
|
100826
|
+
tag: string | JSXComponent;
|
|
100827
|
+
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
100828
|
+
activatable: boolean;
|
|
100829
|
+
selectable: boolean;
|
|
100830
|
+
selectStrategy: SelectStrategyProp;
|
|
100831
|
+
mandatory: boolean;
|
|
100832
|
+
itemTitle: SelectItemKey;
|
|
100833
|
+
itemValue: SelectItemKey;
|
|
100834
|
+
itemChildren: SelectItemKey;
|
|
100835
|
+
itemProps: SelectItemKey;
|
|
100836
|
+
itemType: SelectItemKey;
|
|
100837
|
+
returnObject: boolean;
|
|
100838
|
+
disabled: boolean;
|
|
100839
|
+
filterable: boolean;
|
|
100840
|
+
expandIcon: IconValue;
|
|
100841
|
+
collapseIcon: IconValue;
|
|
100842
|
+
lines: "one" | "three" | "two" | false;
|
|
100843
|
+
slim: boolean;
|
|
100844
|
+
hideActions: boolean;
|
|
100845
|
+
fluid: boolean;
|
|
100846
|
+
loadingIcon: string;
|
|
100847
|
+
openOnClick: boolean;
|
|
100848
|
+
indeterminateIcon: IconValue;
|
|
100849
|
+
separateRoots: boolean;
|
|
100850
|
+
openAll: boolean;
|
|
100851
|
+
hideNoData: boolean;
|
|
100852
|
+
noDataText: string;
|
|
100853
|
+
}>;
|
|
100854
|
+
__isFragment?: undefined;
|
|
100855
|
+
__isTeleport?: undefined;
|
|
100856
|
+
__isSuspense?: undefined;
|
|
100857
|
+
} & vue.ComponentOptionsBase<{
|
|
100858
|
+
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
100859
|
+
filterKeys: FilterKeys;
|
|
100860
|
+
filterMode: FilterMode;
|
|
100861
|
+
noFilter: boolean;
|
|
100862
|
+
density: Density;
|
|
100863
|
+
tile: boolean;
|
|
100864
|
+
tag: string | JSXComponent;
|
|
100865
|
+
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
100866
|
+
activatable: boolean;
|
|
100867
|
+
selectable: boolean;
|
|
100868
|
+
selectStrategy: SelectStrategyProp;
|
|
100869
|
+
mandatory: boolean;
|
|
100870
|
+
itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100871
|
+
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100872
|
+
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100873
|
+
itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100874
|
+
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
100875
|
+
returnObject: boolean;
|
|
100876
|
+
disabled: boolean;
|
|
100877
|
+
filterable: boolean;
|
|
100878
|
+
expandIcon: IconValue;
|
|
100879
|
+
collapseIcon: IconValue;
|
|
100880
|
+
lines: "one" | "three" | "two" | false;
|
|
100881
|
+
slim: boolean;
|
|
100882
|
+
hideActions: boolean;
|
|
100883
|
+
fluid: boolean;
|
|
100884
|
+
loadingIcon: string;
|
|
100885
|
+
indeterminateIcon: IconValue;
|
|
100886
|
+
separateRoots: boolean;
|
|
100887
|
+
openAll: boolean;
|
|
100888
|
+
hideNoData: boolean;
|
|
100889
|
+
noDataText: string;
|
|
100890
|
+
} & {
|
|
100891
|
+
theme?: string | undefined;
|
|
100892
|
+
class?: any;
|
|
100893
|
+
customFilter?: FilterFunction | undefined;
|
|
100894
|
+
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
100895
|
+
border?: string | number | boolean | undefined;
|
|
100896
|
+
elevation?: string | number | undefined;
|
|
100897
|
+
rounded?: string | number | boolean | undefined;
|
|
100898
|
+
color?: string | undefined;
|
|
100899
|
+
height?: string | number | undefined;
|
|
100900
|
+
maxHeight?: string | number | undefined;
|
|
100901
|
+
maxWidth?: string | number | undefined;
|
|
100902
|
+
minHeight?: string | number | undefined;
|
|
100903
|
+
minWidth?: string | number | undefined;
|
|
100904
|
+
width?: string | number | undefined;
|
|
100905
|
+
activeStrategy?: ActiveStrategyProp | undefined;
|
|
100906
|
+
opened?: any;
|
|
100907
|
+
activated?: any;
|
|
100908
|
+
selected?: any;
|
|
100909
|
+
valueComparator?: typeof deepEqual | undefined;
|
|
100910
|
+
baseColor?: string | undefined;
|
|
100911
|
+
activeColor?: string | undefined;
|
|
100912
|
+
activeClass?: string | undefined;
|
|
100913
|
+
bgColor?: string | undefined;
|
|
100914
|
+
"onClick:open"?: ((args_0: {
|
|
100915
|
+
id: unknown;
|
|
100916
|
+
value: boolean;
|
|
100917
|
+
path: unknown[];
|
|
100918
|
+
}) => void) | undefined;
|
|
100919
|
+
"onClick:select"?: ((args_0: {
|
|
100920
|
+
id: unknown;
|
|
100921
|
+
value: boolean;
|
|
100922
|
+
path: unknown[];
|
|
100923
|
+
}) => void) | undefined;
|
|
100924
|
+
"onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
|
|
100925
|
+
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
|
100926
|
+
openOnClick?: boolean | undefined;
|
|
100927
|
+
falseIcon?: IconValue | undefined;
|
|
100928
|
+
trueIcon?: IconValue | undefined;
|
|
100929
|
+
selectedColor?: string | undefined;
|
|
100930
|
+
indentLines?: boolean | IndentLinesVariant | undefined;
|
|
100931
|
+
search?: string | undefined;
|
|
100932
|
+
modelValue?: unknown[] | undefined;
|
|
100933
|
+
} & {
|
|
100934
|
+
"onClick:open"?: ((value: {
|
|
100935
|
+
id: unknown;
|
|
100936
|
+
value: boolean;
|
|
100937
|
+
path: unknown[];
|
|
100938
|
+
}) => any) | undefined;
|
|
100939
|
+
"onClick:select"?: ((value: {
|
|
100940
|
+
id: unknown;
|
|
100941
|
+
value: boolean;
|
|
100942
|
+
path: unknown[];
|
|
100943
|
+
}) => any) | undefined;
|
|
100944
|
+
"onUpdate:activated"?: ((val: unknown) => any) | undefined;
|
|
100945
|
+
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
100946
|
+
"onUpdate:opened"?: ((val: unknown) => any) | undefined;
|
|
100947
|
+
"onUpdate:selected"?: ((val: unknown) => any) | undefined;
|
|
100948
|
+
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
100949
|
+
"update:opened": (val: unknown) => true;
|
|
100950
|
+
"update:activated": (val: unknown) => true;
|
|
100951
|
+
"update:selected": (val: unknown) => true;
|
|
100952
|
+
"update:modelValue": (val: unknown) => true;
|
|
100953
|
+
"click:open": (value: {
|
|
100954
|
+
id: unknown;
|
|
100955
|
+
value: boolean;
|
|
100956
|
+
path: unknown[];
|
|
100957
|
+
}) => true;
|
|
100958
|
+
"click:select": (value: {
|
|
100959
|
+
id: unknown;
|
|
100960
|
+
value: boolean;
|
|
100961
|
+
path: unknown[];
|
|
100962
|
+
}) => true;
|
|
100963
|
+
}, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:no-data" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, string, {
|
|
100964
|
+
style: vue.StyleValue;
|
|
100965
|
+
filterKeys: FilterKeys;
|
|
100966
|
+
filterMode: FilterMode;
|
|
100967
|
+
noFilter: boolean;
|
|
100968
|
+
density: Density;
|
|
100969
|
+
rounded: string | number | boolean;
|
|
100970
|
+
tile: boolean;
|
|
100971
|
+
tag: string | JSXComponent;
|
|
100972
|
+
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
100973
|
+
activatable: boolean;
|
|
100974
|
+
selectable: boolean;
|
|
100975
|
+
selectStrategy: SelectStrategyProp;
|
|
100976
|
+
mandatory: boolean;
|
|
100977
|
+
itemTitle: SelectItemKey;
|
|
100978
|
+
itemValue: SelectItemKey;
|
|
100979
|
+
itemChildren: SelectItemKey;
|
|
100980
|
+
itemProps: SelectItemKey;
|
|
100981
|
+
itemType: SelectItemKey;
|
|
100982
|
+
returnObject: boolean;
|
|
100983
|
+
disabled: boolean;
|
|
100984
|
+
filterable: boolean;
|
|
100985
|
+
expandIcon: IconValue;
|
|
100986
|
+
collapseIcon: IconValue;
|
|
100987
|
+
lines: "one" | "three" | "two" | false;
|
|
100988
|
+
slim: boolean;
|
|
100989
|
+
hideActions: boolean;
|
|
100990
|
+
fluid: boolean;
|
|
100991
|
+
loadingIcon: string;
|
|
100992
|
+
openOnClick: boolean;
|
|
100993
|
+
indeterminateIcon: IconValue;
|
|
100994
|
+
separateRoots: boolean;
|
|
100995
|
+
openAll: boolean;
|
|
100996
|
+
hideNoData: boolean;
|
|
100997
|
+
noDataText: string;
|
|
100998
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
100999
|
+
prepend: (arg: ListItemSlot & {
|
|
101000
|
+
item: unknown;
|
|
101001
|
+
internalItem: InternalListItem<unknown>;
|
|
101002
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101003
|
+
[key: string]: any;
|
|
101004
|
+
}>[];
|
|
101005
|
+
append: (arg: ListItemSlot & {
|
|
101006
|
+
item: unknown;
|
|
101007
|
+
internalItem: InternalListItem<unknown>;
|
|
101008
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101009
|
+
[key: string]: any;
|
|
101010
|
+
}>[];
|
|
101011
|
+
title: (arg: ListItemTitleSlot & {
|
|
101012
|
+
item: unknown;
|
|
101013
|
+
internalItem: InternalListItem<unknown>;
|
|
101014
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101015
|
+
[key: string]: any;
|
|
101016
|
+
}>[];
|
|
101017
|
+
subtitle: (arg: ListItemSubtitleSlot & {
|
|
101018
|
+
item: unknown;
|
|
101019
|
+
internalItem: InternalListItem<unknown>;
|
|
101020
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101021
|
+
[key: string]: any;
|
|
101022
|
+
}>[];
|
|
101023
|
+
toggle: (arg: ListItemSlot & {
|
|
101024
|
+
props: {
|
|
101025
|
+
onClick: (e: PointerEvent) => void;
|
|
101026
|
+
};
|
|
101027
|
+
} & {
|
|
101028
|
+
loading: boolean;
|
|
101029
|
+
} & {
|
|
101030
|
+
item: unknown;
|
|
101031
|
+
internalItem: InternalListItem<unknown>;
|
|
101032
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101033
|
+
[key: string]: any;
|
|
101034
|
+
}>[];
|
|
101035
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101036
|
+
[key: string]: any;
|
|
101037
|
+
}>[];
|
|
101038
|
+
item: (arg: {
|
|
101039
|
+
props: {
|
|
101040
|
+
[key: string]: any;
|
|
101041
|
+
title: string;
|
|
101042
|
+
value: any;
|
|
101043
|
+
};
|
|
101044
|
+
item: unknown;
|
|
101045
|
+
internalItem: InternalListItem<unknown>;
|
|
101046
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101047
|
+
[key: string]: any;
|
|
101048
|
+
}>[];
|
|
101049
|
+
header: (arg: {
|
|
101050
|
+
props: {
|
|
101051
|
+
[key: string]: any;
|
|
101052
|
+
title: string;
|
|
101053
|
+
value: any;
|
|
101054
|
+
};
|
|
101055
|
+
item: unknown;
|
|
101056
|
+
internalItem: InternalListItem<unknown>;
|
|
101057
|
+
loading: boolean;
|
|
101058
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101059
|
+
[key: string]: any;
|
|
101060
|
+
}>[];
|
|
101061
|
+
footer: (arg: {
|
|
101062
|
+
props: {
|
|
101063
|
+
indentLines?: IndentLineType[] | undefined;
|
|
101064
|
+
};
|
|
101065
|
+
item: unknown;
|
|
101066
|
+
internalItem: InternalListItem<unknown>;
|
|
101067
|
+
loading: boolean;
|
|
101068
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101069
|
+
[key: string]: any;
|
|
101070
|
+
}>[];
|
|
101071
|
+
divider: (arg: {
|
|
101072
|
+
props: {
|
|
101073
|
+
[key: string]: any;
|
|
101074
|
+
title: string;
|
|
101075
|
+
value: any;
|
|
101076
|
+
};
|
|
101077
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101078
|
+
[key: string]: any;
|
|
101079
|
+
}>[];
|
|
101080
|
+
subheader: (arg: {
|
|
101081
|
+
props: {
|
|
101082
|
+
[key: string]: any;
|
|
101083
|
+
title: string;
|
|
101084
|
+
value: any;
|
|
101085
|
+
};
|
|
101086
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101087
|
+
[key: string]: any;
|
|
101088
|
+
}>[];
|
|
101089
|
+
"no-data": () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
101090
|
+
[key: string]: any;
|
|
101091
|
+
}>[];
|
|
101092
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
101093
|
+
items?: T[] | undefined;
|
|
101094
|
+
}, slots: {
|
|
101095
|
+
prepend: ListItemSlot & {
|
|
101096
|
+
item: T;
|
|
101097
|
+
internalItem: InternalListItem<T>;
|
|
100525
101098
|
};
|
|
100526
|
-
|
|
100527
|
-
|
|
100528
|
-
|
|
100529
|
-
|
|
101099
|
+
append: ListItemSlot & {
|
|
101100
|
+
item: T;
|
|
101101
|
+
internalItem: InternalListItem<T>;
|
|
101102
|
+
};
|
|
101103
|
+
title: ListItemTitleSlot & {
|
|
101104
|
+
item: T;
|
|
101105
|
+
internalItem: InternalListItem<T>;
|
|
101106
|
+
};
|
|
101107
|
+
subtitle: ListItemSubtitleSlot & {
|
|
101108
|
+
item: T;
|
|
101109
|
+
internalItem: InternalListItem<T>;
|
|
101110
|
+
};
|
|
101111
|
+
toggle: ListItemSlot & {
|
|
101112
|
+
props: {
|
|
101113
|
+
onClick: (e: PointerEvent) => void;
|
|
101114
|
+
};
|
|
101115
|
+
} & {
|
|
100530
101116
|
loading: boolean;
|
|
101117
|
+
} & {
|
|
101118
|
+
item: T;
|
|
101119
|
+
internalItem: InternalListItem<T>;
|
|
100531
101120
|
};
|
|
100532
|
-
}
|
|
101121
|
+
} & {
|
|
101122
|
+
default: never;
|
|
101123
|
+
item: {
|
|
101124
|
+
props: {
|
|
101125
|
+
[key: string]: any;
|
|
101126
|
+
title: string;
|
|
101127
|
+
value: any;
|
|
101128
|
+
};
|
|
101129
|
+
item: T;
|
|
101130
|
+
internalItem: InternalListItem<T>;
|
|
101131
|
+
};
|
|
101132
|
+
header: {
|
|
101133
|
+
props: {
|
|
101134
|
+
[key: string]: any;
|
|
101135
|
+
title: string;
|
|
101136
|
+
value: any;
|
|
101137
|
+
};
|
|
101138
|
+
item: T;
|
|
101139
|
+
internalItem: InternalListItem<T>;
|
|
101140
|
+
loading: boolean;
|
|
101141
|
+
};
|
|
101142
|
+
footer: {
|
|
101143
|
+
props: {
|
|
101144
|
+
indentLines?: IndentLineType[] | undefined;
|
|
101145
|
+
};
|
|
101146
|
+
item: T;
|
|
101147
|
+
internalItem: InternalListItem<T>;
|
|
101148
|
+
loading: boolean;
|
|
101149
|
+
};
|
|
101150
|
+
divider: {
|
|
101151
|
+
props: {
|
|
101152
|
+
[key: string]: any;
|
|
101153
|
+
title: string;
|
|
101154
|
+
value: any;
|
|
101155
|
+
};
|
|
101156
|
+
};
|
|
101157
|
+
subheader: {
|
|
101158
|
+
props: {
|
|
101159
|
+
[key: string]: any;
|
|
101160
|
+
title: string;
|
|
101161
|
+
value: any;
|
|
101162
|
+
};
|
|
101163
|
+
};
|
|
101164
|
+
} & {
|
|
101165
|
+
"no-data": never;
|
|
101166
|
+
}) => GenericProps<{
|
|
101167
|
+
items?: T[] | undefined;
|
|
101168
|
+
}, {
|
|
101169
|
+
prepend: ListItemSlot & {
|
|
101170
|
+
item: T;
|
|
101171
|
+
internalItem: InternalListItem<T>;
|
|
101172
|
+
};
|
|
101173
|
+
append: ListItemSlot & {
|
|
101174
|
+
item: T;
|
|
101175
|
+
internalItem: InternalListItem<T>;
|
|
101176
|
+
};
|
|
101177
|
+
title: ListItemTitleSlot & {
|
|
101178
|
+
item: T;
|
|
101179
|
+
internalItem: InternalListItem<T>;
|
|
101180
|
+
};
|
|
101181
|
+
subtitle: ListItemSubtitleSlot & {
|
|
101182
|
+
item: T;
|
|
101183
|
+
internalItem: InternalListItem<T>;
|
|
101184
|
+
};
|
|
101185
|
+
toggle: ListItemSlot & {
|
|
101186
|
+
props: {
|
|
101187
|
+
onClick: (e: PointerEvent) => void;
|
|
101188
|
+
};
|
|
101189
|
+
} & {
|
|
101190
|
+
loading: boolean;
|
|
101191
|
+
} & {
|
|
101192
|
+
item: T;
|
|
101193
|
+
internalItem: InternalListItem<T>;
|
|
101194
|
+
};
|
|
101195
|
+
} & {
|
|
101196
|
+
default: never;
|
|
101197
|
+
item: {
|
|
101198
|
+
props: {
|
|
101199
|
+
[key: string]: any;
|
|
101200
|
+
title: string;
|
|
101201
|
+
value: any;
|
|
101202
|
+
};
|
|
101203
|
+
item: T;
|
|
101204
|
+
internalItem: InternalListItem<T>;
|
|
101205
|
+
};
|
|
101206
|
+
header: {
|
|
101207
|
+
props: {
|
|
101208
|
+
[key: string]: any;
|
|
101209
|
+
title: string;
|
|
101210
|
+
value: any;
|
|
101211
|
+
};
|
|
101212
|
+
item: T;
|
|
101213
|
+
internalItem: InternalListItem<T>;
|
|
101214
|
+
loading: boolean;
|
|
101215
|
+
};
|
|
101216
|
+
footer: {
|
|
101217
|
+
props: {
|
|
101218
|
+
indentLines?: IndentLineType[] | undefined;
|
|
101219
|
+
};
|
|
101220
|
+
item: T;
|
|
101221
|
+
internalItem: InternalListItem<T>;
|
|
101222
|
+
loading: boolean;
|
|
101223
|
+
};
|
|
101224
|
+
divider: {
|
|
101225
|
+
props: {
|
|
101226
|
+
[key: string]: any;
|
|
101227
|
+
title: string;
|
|
101228
|
+
value: any;
|
|
101229
|
+
};
|
|
101230
|
+
};
|
|
101231
|
+
subheader: {
|
|
101232
|
+
props: {
|
|
101233
|
+
[key: string]: any;
|
|
101234
|
+
title: string;
|
|
101235
|
+
value: any;
|
|
101236
|
+
};
|
|
101237
|
+
};
|
|
101238
|
+
} & {
|
|
101239
|
+
"no-data": never;
|
|
101240
|
+
}>) & FilterPropsOptions<{
|
|
101241
|
+
theme: StringConstructor;
|
|
101242
|
+
class: PropType<any>;
|
|
101243
|
+
style: {
|
|
101244
|
+
type: PropType<vue.StyleValue>;
|
|
101245
|
+
default: null;
|
|
101246
|
+
};
|
|
101247
|
+
customFilter: PropType<FilterFunction>;
|
|
101248
|
+
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
101249
|
+
filterKeys: {
|
|
101250
|
+
type: PropType<FilterKeys>;
|
|
101251
|
+
default: NonNullable<FilterKeys>;
|
|
101252
|
+
};
|
|
101253
|
+
filterMode: {
|
|
101254
|
+
type: PropType<FilterMode>;
|
|
101255
|
+
default: string;
|
|
101256
|
+
};
|
|
101257
|
+
noFilter: BooleanConstructor;
|
|
101258
|
+
border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
101259
|
+
density: {
|
|
101260
|
+
type: PropType<Density>;
|
|
101261
|
+
default: string;
|
|
101262
|
+
validator: (v: any) => boolean;
|
|
101263
|
+
};
|
|
101264
|
+
elevation: {
|
|
101265
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
101266
|
+
validator(v: any): boolean;
|
|
101267
|
+
};
|
|
101268
|
+
rounded: {
|
|
101269
|
+
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
101270
|
+
default: undefined;
|
|
101271
|
+
};
|
|
101272
|
+
tile: BooleanConstructor;
|
|
101273
|
+
tag: {
|
|
101274
|
+
type: PropType<string | JSXComponent>;
|
|
101275
|
+
default: string;
|
|
101276
|
+
};
|
|
101277
|
+
color: StringConstructor;
|
|
101278
|
+
variant: Omit<{
|
|
101279
|
+
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
101280
|
+
default: string;
|
|
101281
|
+
validator: (v: any) => boolean;
|
|
101282
|
+
}, "default" | "type"> & {
|
|
101283
|
+
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
101284
|
+
default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
101285
|
+
};
|
|
101286
|
+
height: (NumberConstructor | StringConstructor)[];
|
|
101287
|
+
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
101288
|
+
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
101289
|
+
minHeight: (NumberConstructor | StringConstructor)[];
|
|
101290
|
+
minWidth: (NumberConstructor | StringConstructor)[];
|
|
101291
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
101292
|
+
activatable: BooleanConstructor;
|
|
101293
|
+
selectable: BooleanConstructor;
|
|
101294
|
+
activeStrategy: PropType<ActiveStrategyProp>;
|
|
101295
|
+
selectStrategy: {
|
|
101296
|
+
type: PropType<SelectStrategyProp>;
|
|
101297
|
+
default: NonNullable<SelectStrategyProp>;
|
|
101298
|
+
};
|
|
101299
|
+
opened: null;
|
|
101300
|
+
activated: null;
|
|
101301
|
+
selected: null;
|
|
101302
|
+
mandatory: BooleanConstructor;
|
|
101303
|
+
items: {
|
|
101304
|
+
type: PropType<any[]>;
|
|
101305
|
+
default: () => never[];
|
|
101306
|
+
};
|
|
101307
|
+
itemTitle: {
|
|
101308
|
+
type: PropType<SelectItemKey>;
|
|
101309
|
+
default: string;
|
|
101310
|
+
};
|
|
101311
|
+
itemValue: {
|
|
101312
|
+
type: PropType<SelectItemKey>;
|
|
101313
|
+
default: string;
|
|
101314
|
+
};
|
|
101315
|
+
itemChildren: {
|
|
101316
|
+
type: PropType<SelectItemKey>;
|
|
101317
|
+
default: string;
|
|
101318
|
+
};
|
|
101319
|
+
itemProps: {
|
|
101320
|
+
type: PropType<SelectItemKey>;
|
|
101321
|
+
default: string;
|
|
101322
|
+
};
|
|
101323
|
+
itemType: {
|
|
101324
|
+
type: PropType<SelectItemKey>;
|
|
101325
|
+
default: string;
|
|
101326
|
+
};
|
|
101327
|
+
returnObject: BooleanConstructor;
|
|
101328
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
101329
|
+
baseColor: StringConstructor;
|
|
101330
|
+
activeColor: StringConstructor;
|
|
101331
|
+
activeClass: StringConstructor;
|
|
101332
|
+
bgColor: StringConstructor;
|
|
101333
|
+
disabled: BooleanConstructor;
|
|
101334
|
+
filterable: BooleanConstructor;
|
|
101335
|
+
expandIcon: {
|
|
101336
|
+
type: PropType<IconValue>;
|
|
101337
|
+
default: NonNullable<IconValue>;
|
|
101338
|
+
};
|
|
101339
|
+
collapseIcon: {
|
|
101340
|
+
type: PropType<IconValue>;
|
|
101341
|
+
default: NonNullable<IconValue>;
|
|
101342
|
+
};
|
|
101343
|
+
lines: {
|
|
101344
|
+
type: PropType<"one" | "three" | "two" | false>;
|
|
101345
|
+
default: string;
|
|
101346
|
+
};
|
|
101347
|
+
slim: {
|
|
101348
|
+
type: PropType<boolean>;
|
|
101349
|
+
default: boolean;
|
|
101350
|
+
};
|
|
101351
|
+
"onClick:open": PropType<(args_0: {
|
|
101352
|
+
id: unknown;
|
|
101353
|
+
value: boolean;
|
|
101354
|
+
path: unknown[];
|
|
101355
|
+
}) => void>;
|
|
101356
|
+
"onClick:select": PropType<(args_0: {
|
|
101357
|
+
id: unknown;
|
|
101358
|
+
value: boolean;
|
|
101359
|
+
path: unknown[];
|
|
101360
|
+
}) => void>;
|
|
101361
|
+
"onUpdate:opened": PropType<(args_0: unknown) => void>;
|
|
101362
|
+
hideActions: BooleanConstructor;
|
|
101363
|
+
fluid: BooleanConstructor;
|
|
101364
|
+
loadChildren: PropType<(item: unknown) => Promise<void>>;
|
|
101365
|
+
loadingIcon: {
|
|
101366
|
+
type: StringConstructor;
|
|
101367
|
+
default: string;
|
|
101368
|
+
};
|
|
101369
|
+
openOnClick: {
|
|
101370
|
+
type: BooleanConstructor;
|
|
101371
|
+
default: undefined;
|
|
101372
|
+
};
|
|
101373
|
+
indeterminateIcon: {
|
|
101374
|
+
type: PropType<IconValue>;
|
|
101375
|
+
default: string;
|
|
101376
|
+
};
|
|
101377
|
+
falseIcon: PropType<IconValue>;
|
|
101378
|
+
trueIcon: PropType<IconValue>;
|
|
101379
|
+
selectedColor: StringConstructor;
|
|
101380
|
+
separateRoots: BooleanConstructor;
|
|
101381
|
+
openAll: BooleanConstructor;
|
|
101382
|
+
indentLines: PropType<boolean | IndentLinesVariant>;
|
|
101383
|
+
search: StringConstructor;
|
|
101384
|
+
hideNoData: BooleanConstructor;
|
|
101385
|
+
noDataText: {
|
|
101386
|
+
type: StringConstructor;
|
|
101387
|
+
default: string;
|
|
101388
|
+
};
|
|
101389
|
+
modelValue: ArrayConstructor;
|
|
101390
|
+
}, vue.ExtractPropTypes<{
|
|
101391
|
+
theme: StringConstructor;
|
|
101392
|
+
class: PropType<any>;
|
|
101393
|
+
style: {
|
|
101394
|
+
type: PropType<vue.StyleValue>;
|
|
101395
|
+
default: null;
|
|
101396
|
+
};
|
|
101397
|
+
customFilter: PropType<FilterFunction>;
|
|
101398
|
+
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
101399
|
+
filterKeys: {
|
|
101400
|
+
type: PropType<FilterKeys>;
|
|
101401
|
+
default: NonNullable<FilterKeys>;
|
|
101402
|
+
};
|
|
101403
|
+
filterMode: {
|
|
101404
|
+
type: PropType<FilterMode>;
|
|
101405
|
+
default: string;
|
|
101406
|
+
};
|
|
101407
|
+
noFilter: BooleanConstructor;
|
|
101408
|
+
border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
101409
|
+
density: {
|
|
101410
|
+
type: PropType<Density>;
|
|
101411
|
+
default: string;
|
|
101412
|
+
validator: (v: any) => boolean;
|
|
101413
|
+
};
|
|
101414
|
+
elevation: {
|
|
101415
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
101416
|
+
validator(v: any): boolean;
|
|
101417
|
+
};
|
|
101418
|
+
rounded: {
|
|
101419
|
+
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
101420
|
+
default: undefined;
|
|
101421
|
+
};
|
|
101422
|
+
tile: BooleanConstructor;
|
|
101423
|
+
tag: {
|
|
101424
|
+
type: PropType<string | JSXComponent>;
|
|
101425
|
+
default: string;
|
|
101426
|
+
};
|
|
101427
|
+
color: StringConstructor;
|
|
101428
|
+
variant: Omit<{
|
|
101429
|
+
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
101430
|
+
default: string;
|
|
101431
|
+
validator: (v: any) => boolean;
|
|
101432
|
+
}, "default" | "type"> & {
|
|
101433
|
+
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
101434
|
+
default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
101435
|
+
};
|
|
101436
|
+
height: (NumberConstructor | StringConstructor)[];
|
|
101437
|
+
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
101438
|
+
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
101439
|
+
minHeight: (NumberConstructor | StringConstructor)[];
|
|
101440
|
+
minWidth: (NumberConstructor | StringConstructor)[];
|
|
101441
|
+
width: (NumberConstructor | StringConstructor)[];
|
|
101442
|
+
activatable: BooleanConstructor;
|
|
101443
|
+
selectable: BooleanConstructor;
|
|
101444
|
+
activeStrategy: PropType<ActiveStrategyProp>;
|
|
101445
|
+
selectStrategy: {
|
|
101446
|
+
type: PropType<SelectStrategyProp>;
|
|
101447
|
+
default: NonNullable<SelectStrategyProp>;
|
|
101448
|
+
};
|
|
101449
|
+
opened: null;
|
|
101450
|
+
activated: null;
|
|
101451
|
+
selected: null;
|
|
101452
|
+
mandatory: BooleanConstructor;
|
|
101453
|
+
items: {
|
|
101454
|
+
type: PropType<any[]>;
|
|
101455
|
+
default: () => never[];
|
|
101456
|
+
};
|
|
101457
|
+
itemTitle: {
|
|
101458
|
+
type: PropType<SelectItemKey>;
|
|
101459
|
+
default: string;
|
|
101460
|
+
};
|
|
101461
|
+
itemValue: {
|
|
101462
|
+
type: PropType<SelectItemKey>;
|
|
101463
|
+
default: string;
|
|
101464
|
+
};
|
|
101465
|
+
itemChildren: {
|
|
101466
|
+
type: PropType<SelectItemKey>;
|
|
101467
|
+
default: string;
|
|
101468
|
+
};
|
|
101469
|
+
itemProps: {
|
|
101470
|
+
type: PropType<SelectItemKey>;
|
|
101471
|
+
default: string;
|
|
101472
|
+
};
|
|
101473
|
+
itemType: {
|
|
101474
|
+
type: PropType<SelectItemKey>;
|
|
101475
|
+
default: string;
|
|
101476
|
+
};
|
|
101477
|
+
returnObject: BooleanConstructor;
|
|
101478
|
+
valueComparator: PropType<typeof deepEqual>;
|
|
101479
|
+
baseColor: StringConstructor;
|
|
101480
|
+
activeColor: StringConstructor;
|
|
101481
|
+
activeClass: StringConstructor;
|
|
101482
|
+
bgColor: StringConstructor;
|
|
101483
|
+
disabled: BooleanConstructor;
|
|
101484
|
+
filterable: BooleanConstructor;
|
|
101485
|
+
expandIcon: {
|
|
101486
|
+
type: PropType<IconValue>;
|
|
101487
|
+
default: NonNullable<IconValue>;
|
|
101488
|
+
};
|
|
101489
|
+
collapseIcon: {
|
|
101490
|
+
type: PropType<IconValue>;
|
|
101491
|
+
default: NonNullable<IconValue>;
|
|
101492
|
+
};
|
|
101493
|
+
lines: {
|
|
101494
|
+
type: PropType<"one" | "three" | "two" | false>;
|
|
101495
|
+
default: string;
|
|
101496
|
+
};
|
|
101497
|
+
slim: {
|
|
101498
|
+
type: PropType<boolean>;
|
|
101499
|
+
default: boolean;
|
|
101500
|
+
};
|
|
101501
|
+
"onClick:open": PropType<(args_0: {
|
|
101502
|
+
id: unknown;
|
|
101503
|
+
value: boolean;
|
|
101504
|
+
path: unknown[];
|
|
101505
|
+
}) => void>;
|
|
101506
|
+
"onClick:select": PropType<(args_0: {
|
|
101507
|
+
id: unknown;
|
|
101508
|
+
value: boolean;
|
|
101509
|
+
path: unknown[];
|
|
101510
|
+
}) => void>;
|
|
101511
|
+
"onUpdate:opened": PropType<(args_0: unknown) => void>;
|
|
101512
|
+
hideActions: BooleanConstructor;
|
|
101513
|
+
fluid: BooleanConstructor;
|
|
101514
|
+
loadChildren: PropType<(item: unknown) => Promise<void>>;
|
|
101515
|
+
loadingIcon: {
|
|
101516
|
+
type: StringConstructor;
|
|
101517
|
+
default: string;
|
|
101518
|
+
};
|
|
101519
|
+
openOnClick: {
|
|
101520
|
+
type: BooleanConstructor;
|
|
101521
|
+
default: undefined;
|
|
101522
|
+
};
|
|
101523
|
+
indeterminateIcon: {
|
|
101524
|
+
type: PropType<IconValue>;
|
|
101525
|
+
default: string;
|
|
101526
|
+
};
|
|
101527
|
+
falseIcon: PropType<IconValue>;
|
|
101528
|
+
trueIcon: PropType<IconValue>;
|
|
101529
|
+
selectedColor: StringConstructor;
|
|
101530
|
+
separateRoots: BooleanConstructor;
|
|
101531
|
+
openAll: BooleanConstructor;
|
|
101532
|
+
indentLines: PropType<boolean | IndentLinesVariant>;
|
|
101533
|
+
search: StringConstructor;
|
|
101534
|
+
hideNoData: BooleanConstructor;
|
|
101535
|
+
noDataText: {
|
|
101536
|
+
type: StringConstructor;
|
|
101537
|
+
default: string;
|
|
101538
|
+
};
|
|
101539
|
+
modelValue: ArrayConstructor;
|
|
101540
|
+
}>>;
|
|
101541
|
+
type VTreeview = InstanceType<typeof VTreeview>;
|
|
101542
|
+
|
|
100533
101543
|
declare const VTreeviewItem: {
|
|
100534
101544
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
100535
101545
|
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
@@ -102374,978 +103384,57 @@ declare const VTreeviewItem: {
|
|
|
102374
103384
|
minHeight: (NumberConstructor | StringConstructor)[];
|
|
102375
103385
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
102376
103386
|
width: (NumberConstructor | StringConstructor)[];
|
|
102377
|
-
href: StringConstructor;
|
|
102378
|
-
replace: BooleanConstructor;
|
|
102379
|
-
to: PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
|
|
102380
|
-
exact: BooleanConstructor;
|
|
102381
|
-
active: {
|
|
102382
|
-
type: BooleanConstructor;
|
|
102383
|
-
default: undefined;
|
|
102384
|
-
};
|
|
102385
|
-
activeClass: StringConstructor;
|
|
102386
|
-
activeColor: StringConstructor;
|
|
102387
|
-
appendAvatar: StringConstructor;
|
|
102388
|
-
appendIcon: PropType<IconValue>;
|
|
102389
|
-
baseColor: StringConstructor;
|
|
102390
|
-
disabled: BooleanConstructor;
|
|
102391
|
-
lines: PropType<"one" | "three" | "two" | false>;
|
|
102392
|
-
link: {
|
|
102393
|
-
type: BooleanConstructor;
|
|
102394
|
-
default: undefined;
|
|
102395
|
-
};
|
|
102396
|
-
nav: BooleanConstructor;
|
|
102397
|
-
prependAvatar: StringConstructor;
|
|
102398
|
-
prependIcon: PropType<IconValue>;
|
|
102399
|
-
ripple: {
|
|
102400
|
-
type: PropType<boolean | {
|
|
102401
|
-
class?: string | undefined;
|
|
102402
|
-
keys?: string[] | undefined;
|
|
102403
|
-
} | undefined>;
|
|
102404
|
-
default: boolean;
|
|
102405
|
-
};
|
|
102406
|
-
slim: {
|
|
102407
|
-
type: PropType<boolean>;
|
|
102408
|
-
default: boolean;
|
|
102409
|
-
};
|
|
102410
|
-
subtitle: {
|
|
102411
|
-
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
102412
|
-
default: undefined;
|
|
102413
|
-
};
|
|
102414
|
-
title: {
|
|
102415
|
-
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
102416
|
-
default: undefined;
|
|
102417
|
-
};
|
|
102418
|
-
value: null;
|
|
102419
|
-
onClick: PropType<(args_0: KeyboardEvent | MouseEvent) => void>;
|
|
102420
|
-
onClickOnce: PropType<(args_0: MouseEvent) => void>;
|
|
102421
|
-
loading: BooleanConstructor;
|
|
102422
|
-
hideActions: BooleanConstructor;
|
|
102423
|
-
hasCustomPrepend: BooleanConstructor;
|
|
102424
|
-
indentLines: PropType<IndentLineType[]>;
|
|
102425
|
-
toggleIcon: PropType<IconValue>;
|
|
102426
|
-
}>>;
|
|
102427
|
-
type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
|
|
102428
|
-
|
|
102429
|
-
type VTreeviewChildrenSlots<T> = {
|
|
102430
|
-
[K in keyof Omit<VTreeviewItemSlots, 'default'>]: VTreeviewItemSlots[K] & {
|
|
102431
|
-
item: T;
|
|
102432
|
-
internalItem: InternalListItem<T>;
|
|
102433
|
-
};
|
|
102434
|
-
} & {
|
|
102435
|
-
default: never;
|
|
102436
|
-
item: {
|
|
102437
|
-
props: InternalListItem['props'];
|
|
102438
|
-
item: T;
|
|
102439
|
-
internalItem: InternalListItem<T>;
|
|
102440
|
-
};
|
|
102441
|
-
header: {
|
|
102442
|
-
props: InternalListItem['props'];
|
|
102443
|
-
item: T;
|
|
102444
|
-
internalItem: InternalListItem<T>;
|
|
102445
|
-
loading: boolean;
|
|
102446
|
-
};
|
|
102447
|
-
footer: {
|
|
102448
|
-
props: {
|
|
102449
|
-
indentLines?: IndentLineType[];
|
|
102450
|
-
};
|
|
102451
|
-
item: T;
|
|
102452
|
-
internalItem: InternalListItem<T>;
|
|
102453
|
-
loading: boolean;
|
|
102454
|
-
};
|
|
102455
|
-
divider: {
|
|
102456
|
-
props: InternalListItem['props'];
|
|
102457
|
-
};
|
|
102458
|
-
subheader: {
|
|
102459
|
-
props: InternalListItem['props'];
|
|
102460
|
-
};
|
|
102461
|
-
};
|
|
102462
|
-
|
|
102463
|
-
declare const VTreeview: {
|
|
102464
|
-
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
102465
|
-
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
102466
|
-
filterKeys: FilterKeys;
|
|
102467
|
-
filterMode: FilterMode;
|
|
102468
|
-
noFilter: boolean;
|
|
102469
|
-
density: Density;
|
|
102470
|
-
tile: boolean;
|
|
102471
|
-
tag: string | JSXComponent;
|
|
102472
|
-
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
102473
|
-
activatable: boolean;
|
|
102474
|
-
selectable: boolean;
|
|
102475
|
-
selectStrategy: SelectStrategyProp;
|
|
102476
|
-
mandatory: boolean;
|
|
102477
|
-
itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102478
|
-
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102479
|
-
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102480
|
-
itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102481
|
-
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102482
|
-
returnObject: boolean;
|
|
102483
|
-
disabled: boolean;
|
|
102484
|
-
filterable: boolean;
|
|
102485
|
-
expandIcon: IconValue;
|
|
102486
|
-
collapseIcon: IconValue;
|
|
102487
|
-
lines: "one" | "three" | "two" | false;
|
|
102488
|
-
slim: boolean;
|
|
102489
|
-
hideActions: boolean;
|
|
102490
|
-
fluid: boolean;
|
|
102491
|
-
loadingIcon: string;
|
|
102492
|
-
indeterminateIcon: IconValue;
|
|
102493
|
-
separateRoots: boolean;
|
|
102494
|
-
openAll: boolean;
|
|
102495
|
-
} & {
|
|
102496
|
-
theme?: string | undefined;
|
|
102497
|
-
class?: any;
|
|
102498
|
-
customFilter?: FilterFunction | undefined;
|
|
102499
|
-
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
102500
|
-
border?: string | number | boolean | undefined;
|
|
102501
|
-
elevation?: string | number | undefined;
|
|
102502
|
-
rounded?: string | number | boolean | undefined;
|
|
102503
|
-
color?: string | undefined;
|
|
102504
|
-
height?: string | number | undefined;
|
|
102505
|
-
maxHeight?: string | number | undefined;
|
|
102506
|
-
maxWidth?: string | number | undefined;
|
|
102507
|
-
minHeight?: string | number | undefined;
|
|
102508
|
-
minWidth?: string | number | undefined;
|
|
102509
|
-
width?: string | number | undefined;
|
|
102510
|
-
activeStrategy?: ActiveStrategyProp | undefined;
|
|
102511
|
-
opened?: any;
|
|
102512
|
-
activated?: any;
|
|
102513
|
-
selected?: any;
|
|
102514
|
-
valueComparator?: typeof deepEqual | undefined;
|
|
102515
|
-
baseColor?: string | undefined;
|
|
102516
|
-
activeColor?: string | undefined;
|
|
102517
|
-
activeClass?: string | undefined;
|
|
102518
|
-
bgColor?: string | undefined;
|
|
102519
|
-
"onClick:open"?: ((args_0: {
|
|
102520
|
-
id: unknown;
|
|
102521
|
-
value: boolean;
|
|
102522
|
-
path: unknown[];
|
|
102523
|
-
}) => void) | undefined;
|
|
102524
|
-
"onClick:select"?: ((args_0: {
|
|
102525
|
-
id: unknown;
|
|
102526
|
-
value: boolean;
|
|
102527
|
-
path: unknown[];
|
|
102528
|
-
}) => void) | undefined;
|
|
102529
|
-
"onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
|
|
102530
|
-
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
|
102531
|
-
openOnClick?: boolean | undefined;
|
|
102532
|
-
falseIcon?: IconValue | undefined;
|
|
102533
|
-
trueIcon?: IconValue | undefined;
|
|
102534
|
-
selectedColor?: string | undefined;
|
|
102535
|
-
indentLines?: boolean | IndentLinesVariant | undefined;
|
|
102536
|
-
search?: string | undefined;
|
|
102537
|
-
modelValue?: unknown[] | undefined;
|
|
102538
|
-
} & {
|
|
102539
|
-
"onClick:open"?: ((value: {
|
|
102540
|
-
id: unknown;
|
|
102541
|
-
value: boolean;
|
|
102542
|
-
path: unknown[];
|
|
102543
|
-
}) => any) | undefined;
|
|
102544
|
-
"onClick:select"?: ((value: {
|
|
102545
|
-
id: unknown;
|
|
102546
|
-
value: boolean;
|
|
102547
|
-
path: unknown[];
|
|
102548
|
-
}) => any) | undefined;
|
|
102549
|
-
"onUpdate:activated"?: ((val: unknown) => any) | undefined;
|
|
102550
|
-
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
102551
|
-
"onUpdate:opened"?: ((val: unknown) => any) | undefined;
|
|
102552
|
-
"onUpdate:selected"?: ((val: unknown) => any) | undefined;
|
|
102553
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
102554
|
-
"update:opened": (val: unknown) => true;
|
|
102555
|
-
"update:activated": (val: unknown) => true;
|
|
102556
|
-
"update:selected": (val: unknown) => true;
|
|
102557
|
-
"update:modelValue": (val: unknown) => true;
|
|
102558
|
-
"click:open": (value: {
|
|
102559
|
-
id: unknown;
|
|
102560
|
-
value: boolean;
|
|
102561
|
-
path: unknown[];
|
|
102562
|
-
}) => true;
|
|
102563
|
-
"click:select": (value: {
|
|
102564
|
-
id: unknown;
|
|
102565
|
-
value: boolean;
|
|
102566
|
-
path: unknown[];
|
|
102567
|
-
}) => true;
|
|
102568
|
-
}, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
102569
|
-
style: vue.StyleValue;
|
|
102570
|
-
filterKeys: FilterKeys;
|
|
102571
|
-
filterMode: FilterMode;
|
|
102572
|
-
noFilter: boolean;
|
|
102573
|
-
density: Density;
|
|
102574
|
-
rounded: string | number | boolean;
|
|
102575
|
-
tile: boolean;
|
|
102576
|
-
tag: string | JSXComponent;
|
|
102577
|
-
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
102578
|
-
activatable: boolean;
|
|
102579
|
-
selectable: boolean;
|
|
102580
|
-
selectStrategy: SelectStrategyProp;
|
|
102581
|
-
mandatory: boolean;
|
|
102582
|
-
itemTitle: SelectItemKey;
|
|
102583
|
-
itemValue: SelectItemKey;
|
|
102584
|
-
itemChildren: SelectItemKey;
|
|
102585
|
-
itemProps: SelectItemKey;
|
|
102586
|
-
itemType: SelectItemKey;
|
|
102587
|
-
returnObject: boolean;
|
|
102588
|
-
disabled: boolean;
|
|
102589
|
-
filterable: boolean;
|
|
102590
|
-
expandIcon: IconValue;
|
|
102591
|
-
collapseIcon: IconValue;
|
|
102592
|
-
lines: "one" | "three" | "two" | false;
|
|
102593
|
-
slim: boolean;
|
|
102594
|
-
hideActions: boolean;
|
|
102595
|
-
fluid: boolean;
|
|
102596
|
-
loadingIcon: string;
|
|
102597
|
-
openOnClick: boolean;
|
|
102598
|
-
indeterminateIcon: IconValue;
|
|
102599
|
-
separateRoots: boolean;
|
|
102600
|
-
openAll: boolean;
|
|
102601
|
-
}, true, {}, vue.SlotsType<Partial<{
|
|
102602
|
-
prepend: (arg: ListItemSlot & {
|
|
102603
|
-
item: unknown;
|
|
102604
|
-
internalItem: InternalListItem<unknown>;
|
|
102605
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102606
|
-
[key: string]: any;
|
|
102607
|
-
}>[];
|
|
102608
|
-
append: (arg: ListItemSlot & {
|
|
102609
|
-
item: unknown;
|
|
102610
|
-
internalItem: InternalListItem<unknown>;
|
|
102611
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102612
|
-
[key: string]: any;
|
|
102613
|
-
}>[];
|
|
102614
|
-
title: (arg: ListItemTitleSlot & {
|
|
102615
|
-
item: unknown;
|
|
102616
|
-
internalItem: InternalListItem<unknown>;
|
|
102617
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102618
|
-
[key: string]: any;
|
|
102619
|
-
}>[];
|
|
102620
|
-
subtitle: (arg: ListItemSubtitleSlot & {
|
|
102621
|
-
item: unknown;
|
|
102622
|
-
internalItem: InternalListItem<unknown>;
|
|
102623
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102624
|
-
[key: string]: any;
|
|
102625
|
-
}>[];
|
|
102626
|
-
toggle: (arg: ListItemSlot & {
|
|
102627
|
-
props: {
|
|
102628
|
-
onClick: (e: PointerEvent) => void;
|
|
102629
|
-
};
|
|
102630
|
-
} & {
|
|
102631
|
-
loading: boolean;
|
|
102632
|
-
} & {
|
|
102633
|
-
item: unknown;
|
|
102634
|
-
internalItem: InternalListItem<unknown>;
|
|
102635
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102636
|
-
[key: string]: any;
|
|
102637
|
-
}>[];
|
|
102638
|
-
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102639
|
-
[key: string]: any;
|
|
102640
|
-
}>[];
|
|
102641
|
-
item: (arg: {
|
|
102642
|
-
props: {
|
|
102643
|
-
[key: string]: any;
|
|
102644
|
-
title: string;
|
|
102645
|
-
value: any;
|
|
102646
|
-
};
|
|
102647
|
-
item: unknown;
|
|
102648
|
-
internalItem: InternalListItem<unknown>;
|
|
102649
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102650
|
-
[key: string]: any;
|
|
102651
|
-
}>[];
|
|
102652
|
-
header: (arg: {
|
|
102653
|
-
props: {
|
|
102654
|
-
[key: string]: any;
|
|
102655
|
-
title: string;
|
|
102656
|
-
value: any;
|
|
102657
|
-
};
|
|
102658
|
-
item: unknown;
|
|
102659
|
-
internalItem: InternalListItem<unknown>;
|
|
102660
|
-
loading: boolean;
|
|
102661
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102662
|
-
[key: string]: any;
|
|
102663
|
-
}>[];
|
|
102664
|
-
footer: (arg: {
|
|
102665
|
-
props: {
|
|
102666
|
-
indentLines?: IndentLineType[] | undefined;
|
|
102667
|
-
};
|
|
102668
|
-
item: unknown;
|
|
102669
|
-
internalItem: InternalListItem<unknown>;
|
|
102670
|
-
loading: boolean;
|
|
102671
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102672
|
-
[key: string]: any;
|
|
102673
|
-
}>[];
|
|
102674
|
-
divider: (arg: {
|
|
102675
|
-
props: {
|
|
102676
|
-
[key: string]: any;
|
|
102677
|
-
title: string;
|
|
102678
|
-
value: any;
|
|
102679
|
-
};
|
|
102680
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102681
|
-
[key: string]: any;
|
|
102682
|
-
}>[];
|
|
102683
|
-
subheader: (arg: {
|
|
102684
|
-
props: {
|
|
102685
|
-
[key: string]: any;
|
|
102686
|
-
title: string;
|
|
102687
|
-
value: any;
|
|
102688
|
-
};
|
|
102689
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102690
|
-
[key: string]: any;
|
|
102691
|
-
}>[];
|
|
102692
|
-
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
|
102693
|
-
P: {};
|
|
102694
|
-
B: {};
|
|
102695
|
-
D: {};
|
|
102696
|
-
C: {};
|
|
102697
|
-
M: {};
|
|
102698
|
-
Defaults: {};
|
|
102699
|
-
}, {
|
|
102700
|
-
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
102701
|
-
filterKeys: FilterKeys;
|
|
102702
|
-
filterMode: FilterMode;
|
|
102703
|
-
noFilter: boolean;
|
|
102704
|
-
density: Density;
|
|
102705
|
-
tile: boolean;
|
|
102706
|
-
tag: string | JSXComponent;
|
|
102707
|
-
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
102708
|
-
activatable: boolean;
|
|
102709
|
-
selectable: boolean;
|
|
102710
|
-
selectStrategy: SelectStrategyProp;
|
|
102711
|
-
mandatory: boolean;
|
|
102712
|
-
itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102713
|
-
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102714
|
-
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102715
|
-
itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102716
|
-
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102717
|
-
returnObject: boolean;
|
|
102718
|
-
disabled: boolean;
|
|
102719
|
-
filterable: boolean;
|
|
102720
|
-
expandIcon: IconValue;
|
|
102721
|
-
collapseIcon: IconValue;
|
|
102722
|
-
lines: "one" | "three" | "two" | false;
|
|
102723
|
-
slim: boolean;
|
|
102724
|
-
hideActions: boolean;
|
|
102725
|
-
fluid: boolean;
|
|
102726
|
-
loadingIcon: string;
|
|
102727
|
-
indeterminateIcon: IconValue;
|
|
102728
|
-
separateRoots: boolean;
|
|
102729
|
-
openAll: boolean;
|
|
102730
|
-
} & {
|
|
102731
|
-
theme?: string | undefined;
|
|
102732
|
-
class?: any;
|
|
102733
|
-
customFilter?: FilterFunction | undefined;
|
|
102734
|
-
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
102735
|
-
border?: string | number | boolean | undefined;
|
|
102736
|
-
elevation?: string | number | undefined;
|
|
102737
|
-
rounded?: string | number | boolean | undefined;
|
|
102738
|
-
color?: string | undefined;
|
|
102739
|
-
height?: string | number | undefined;
|
|
102740
|
-
maxHeight?: string | number | undefined;
|
|
102741
|
-
maxWidth?: string | number | undefined;
|
|
102742
|
-
minHeight?: string | number | undefined;
|
|
102743
|
-
minWidth?: string | number | undefined;
|
|
102744
|
-
width?: string | number | undefined;
|
|
102745
|
-
activeStrategy?: ActiveStrategyProp | undefined;
|
|
102746
|
-
opened?: any;
|
|
102747
|
-
activated?: any;
|
|
102748
|
-
selected?: any;
|
|
102749
|
-
valueComparator?: typeof deepEqual | undefined;
|
|
102750
|
-
baseColor?: string | undefined;
|
|
102751
|
-
activeColor?: string | undefined;
|
|
102752
|
-
activeClass?: string | undefined;
|
|
102753
|
-
bgColor?: string | undefined;
|
|
102754
|
-
"onClick:open"?: ((args_0: {
|
|
102755
|
-
id: unknown;
|
|
102756
|
-
value: boolean;
|
|
102757
|
-
path: unknown[];
|
|
102758
|
-
}) => void) | undefined;
|
|
102759
|
-
"onClick:select"?: ((args_0: {
|
|
102760
|
-
id: unknown;
|
|
102761
|
-
value: boolean;
|
|
102762
|
-
path: unknown[];
|
|
102763
|
-
}) => void) | undefined;
|
|
102764
|
-
"onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
|
|
102765
|
-
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
|
102766
|
-
openOnClick?: boolean | undefined;
|
|
102767
|
-
falseIcon?: IconValue | undefined;
|
|
102768
|
-
trueIcon?: IconValue | undefined;
|
|
102769
|
-
selectedColor?: string | undefined;
|
|
102770
|
-
indentLines?: boolean | IndentLinesVariant | undefined;
|
|
102771
|
-
search?: string | undefined;
|
|
102772
|
-
modelValue?: unknown[] | undefined;
|
|
102773
|
-
} & {
|
|
102774
|
-
"onClick:open"?: ((value: {
|
|
102775
|
-
id: unknown;
|
|
102776
|
-
value: boolean;
|
|
102777
|
-
path: unknown[];
|
|
102778
|
-
}) => any) | undefined;
|
|
102779
|
-
"onClick:select"?: ((value: {
|
|
102780
|
-
id: unknown;
|
|
102781
|
-
value: boolean;
|
|
102782
|
-
path: unknown[];
|
|
102783
|
-
}) => any) | undefined;
|
|
102784
|
-
"onUpdate:activated"?: ((val: unknown) => any) | undefined;
|
|
102785
|
-
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
102786
|
-
"onUpdate:opened"?: ((val: unknown) => any) | undefined;
|
|
102787
|
-
"onUpdate:selected"?: ((val: unknown) => any) | undefined;
|
|
102788
|
-
}, {}, {}, {}, {}, {
|
|
102789
|
-
style: vue.StyleValue;
|
|
102790
|
-
filterKeys: FilterKeys;
|
|
102791
|
-
filterMode: FilterMode;
|
|
102792
|
-
noFilter: boolean;
|
|
102793
|
-
density: Density;
|
|
102794
|
-
rounded: string | number | boolean;
|
|
102795
|
-
tile: boolean;
|
|
102796
|
-
tag: string | JSXComponent;
|
|
102797
|
-
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
102798
|
-
activatable: boolean;
|
|
102799
|
-
selectable: boolean;
|
|
102800
|
-
selectStrategy: SelectStrategyProp;
|
|
102801
|
-
mandatory: boolean;
|
|
102802
|
-
itemTitle: SelectItemKey;
|
|
102803
|
-
itemValue: SelectItemKey;
|
|
102804
|
-
itemChildren: SelectItemKey;
|
|
102805
|
-
itemProps: SelectItemKey;
|
|
102806
|
-
itemType: SelectItemKey;
|
|
102807
|
-
returnObject: boolean;
|
|
102808
|
-
disabled: boolean;
|
|
102809
|
-
filterable: boolean;
|
|
102810
|
-
expandIcon: IconValue;
|
|
102811
|
-
collapseIcon: IconValue;
|
|
102812
|
-
lines: "one" | "three" | "two" | false;
|
|
102813
|
-
slim: boolean;
|
|
102814
|
-
hideActions: boolean;
|
|
102815
|
-
fluid: boolean;
|
|
102816
|
-
loadingIcon: string;
|
|
102817
|
-
openOnClick: boolean;
|
|
102818
|
-
indeterminateIcon: IconValue;
|
|
102819
|
-
separateRoots: boolean;
|
|
102820
|
-
openAll: boolean;
|
|
102821
|
-
}>;
|
|
102822
|
-
__isFragment?: undefined;
|
|
102823
|
-
__isTeleport?: undefined;
|
|
102824
|
-
__isSuspense?: undefined;
|
|
102825
|
-
} & vue.ComponentOptionsBase<{
|
|
102826
|
-
style: string | false | vue.StyleValue[] | vue.CSSProperties | null;
|
|
102827
|
-
filterKeys: FilterKeys;
|
|
102828
|
-
filterMode: FilterMode;
|
|
102829
|
-
noFilter: boolean;
|
|
102830
|
-
density: Density;
|
|
102831
|
-
tile: boolean;
|
|
102832
|
-
tag: string | JSXComponent;
|
|
102833
|
-
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
102834
|
-
activatable: boolean;
|
|
102835
|
-
selectable: boolean;
|
|
102836
|
-
selectStrategy: SelectStrategyProp;
|
|
102837
|
-
mandatory: boolean;
|
|
102838
|
-
itemTitle: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102839
|
-
itemValue: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102840
|
-
itemChildren: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102841
|
-
itemProps: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102842
|
-
itemType: string | boolean | readonly (string | number)[] | ((item: Record<string, any>, fallback?: any) => any) | null;
|
|
102843
|
-
returnObject: boolean;
|
|
102844
|
-
disabled: boolean;
|
|
102845
|
-
filterable: boolean;
|
|
102846
|
-
expandIcon: IconValue;
|
|
102847
|
-
collapseIcon: IconValue;
|
|
102848
|
-
lines: "one" | "three" | "two" | false;
|
|
102849
|
-
slim: boolean;
|
|
102850
|
-
hideActions: boolean;
|
|
102851
|
-
fluid: boolean;
|
|
102852
|
-
loadingIcon: string;
|
|
102853
|
-
indeterminateIcon: IconValue;
|
|
102854
|
-
separateRoots: boolean;
|
|
102855
|
-
openAll: boolean;
|
|
102856
|
-
} & {
|
|
102857
|
-
theme?: string | undefined;
|
|
102858
|
-
class?: any;
|
|
102859
|
-
customFilter?: FilterFunction | undefined;
|
|
102860
|
-
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
102861
|
-
border?: string | number | boolean | undefined;
|
|
102862
|
-
elevation?: string | number | undefined;
|
|
102863
|
-
rounded?: string | number | boolean | undefined;
|
|
102864
|
-
color?: string | undefined;
|
|
102865
|
-
height?: string | number | undefined;
|
|
102866
|
-
maxHeight?: string | number | undefined;
|
|
102867
|
-
maxWidth?: string | number | undefined;
|
|
102868
|
-
minHeight?: string | number | undefined;
|
|
102869
|
-
minWidth?: string | number | undefined;
|
|
102870
|
-
width?: string | number | undefined;
|
|
102871
|
-
activeStrategy?: ActiveStrategyProp | undefined;
|
|
102872
|
-
opened?: any;
|
|
102873
|
-
activated?: any;
|
|
102874
|
-
selected?: any;
|
|
102875
|
-
valueComparator?: typeof deepEqual | undefined;
|
|
102876
|
-
baseColor?: string | undefined;
|
|
102877
|
-
activeColor?: string | undefined;
|
|
102878
|
-
activeClass?: string | undefined;
|
|
102879
|
-
bgColor?: string | undefined;
|
|
102880
|
-
"onClick:open"?: ((args_0: {
|
|
102881
|
-
id: unknown;
|
|
102882
|
-
value: boolean;
|
|
102883
|
-
path: unknown[];
|
|
102884
|
-
}) => void) | undefined;
|
|
102885
|
-
"onClick:select"?: ((args_0: {
|
|
102886
|
-
id: unknown;
|
|
102887
|
-
value: boolean;
|
|
102888
|
-
path: unknown[];
|
|
102889
|
-
}) => void) | undefined;
|
|
102890
|
-
"onUpdate:opened"?: ((args_0: unknown) => void) | undefined;
|
|
102891
|
-
loadChildren?: ((item: unknown) => Promise<void>) | undefined;
|
|
102892
|
-
openOnClick?: boolean | undefined;
|
|
102893
|
-
falseIcon?: IconValue | undefined;
|
|
102894
|
-
trueIcon?: IconValue | undefined;
|
|
102895
|
-
selectedColor?: string | undefined;
|
|
102896
|
-
indentLines?: boolean | IndentLinesVariant | undefined;
|
|
102897
|
-
search?: string | undefined;
|
|
102898
|
-
modelValue?: unknown[] | undefined;
|
|
102899
|
-
} & {
|
|
102900
|
-
"onClick:open"?: ((value: {
|
|
102901
|
-
id: unknown;
|
|
102902
|
-
value: boolean;
|
|
102903
|
-
path: unknown[];
|
|
102904
|
-
}) => any) | undefined;
|
|
102905
|
-
"onClick:select"?: ((value: {
|
|
102906
|
-
id: unknown;
|
|
102907
|
-
value: boolean;
|
|
102908
|
-
path: unknown[];
|
|
102909
|
-
}) => any) | undefined;
|
|
102910
|
-
"onUpdate:activated"?: ((val: unknown) => any) | undefined;
|
|
102911
|
-
"onUpdate:modelValue"?: ((val: unknown) => any) | undefined;
|
|
102912
|
-
"onUpdate:opened"?: ((val: unknown) => any) | undefined;
|
|
102913
|
-
"onUpdate:selected"?: ((val: unknown) => any) | undefined;
|
|
102914
|
-
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
102915
|
-
"update:opened": (val: unknown) => true;
|
|
102916
|
-
"update:activated": (val: unknown) => true;
|
|
102917
|
-
"update:selected": (val: unknown) => true;
|
|
102918
|
-
"update:modelValue": (val: unknown) => true;
|
|
102919
|
-
"click:open": (value: {
|
|
102920
|
-
id: unknown;
|
|
102921
|
-
value: boolean;
|
|
102922
|
-
path: unknown[];
|
|
102923
|
-
}) => true;
|
|
102924
|
-
"click:select": (value: {
|
|
102925
|
-
id: unknown;
|
|
102926
|
-
value: boolean;
|
|
102927
|
-
path: unknown[];
|
|
102928
|
-
}) => true;
|
|
102929
|
-
}, "$children" | "items" | "v-slot:append" | "v-slot:default" | "v-slot:divider" | "v-slot:footer" | "v-slot:header" | "v-slot:item" | "v-slot:prepend" | "v-slot:subheader" | "v-slot:subtitle" | "v-slot:title" | "v-slot:toggle" | "v-slots">, string, {
|
|
102930
|
-
style: vue.StyleValue;
|
|
102931
|
-
filterKeys: FilterKeys;
|
|
102932
|
-
filterMode: FilterMode;
|
|
102933
|
-
noFilter: boolean;
|
|
102934
|
-
density: Density;
|
|
102935
|
-
rounded: string | number | boolean;
|
|
102936
|
-
tile: boolean;
|
|
102937
|
-
tag: string | JSXComponent;
|
|
102938
|
-
variant: "elevated" | "flat" | "outlined" | "plain" | "text" | "tonal";
|
|
102939
|
-
activatable: boolean;
|
|
102940
|
-
selectable: boolean;
|
|
102941
|
-
selectStrategy: SelectStrategyProp;
|
|
102942
|
-
mandatory: boolean;
|
|
102943
|
-
itemTitle: SelectItemKey;
|
|
102944
|
-
itemValue: SelectItemKey;
|
|
102945
|
-
itemChildren: SelectItemKey;
|
|
102946
|
-
itemProps: SelectItemKey;
|
|
102947
|
-
itemType: SelectItemKey;
|
|
102948
|
-
returnObject: boolean;
|
|
102949
|
-
disabled: boolean;
|
|
102950
|
-
filterable: boolean;
|
|
102951
|
-
expandIcon: IconValue;
|
|
102952
|
-
collapseIcon: IconValue;
|
|
102953
|
-
lines: "one" | "three" | "two" | false;
|
|
102954
|
-
slim: boolean;
|
|
102955
|
-
hideActions: boolean;
|
|
102956
|
-
fluid: boolean;
|
|
102957
|
-
loadingIcon: string;
|
|
102958
|
-
openOnClick: boolean;
|
|
102959
|
-
indeterminateIcon: IconValue;
|
|
102960
|
-
separateRoots: boolean;
|
|
102961
|
-
openAll: boolean;
|
|
102962
|
-
}, {}, string, vue.SlotsType<Partial<{
|
|
102963
|
-
prepend: (arg: ListItemSlot & {
|
|
102964
|
-
item: unknown;
|
|
102965
|
-
internalItem: InternalListItem<unknown>;
|
|
102966
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102967
|
-
[key: string]: any;
|
|
102968
|
-
}>[];
|
|
102969
|
-
append: (arg: ListItemSlot & {
|
|
102970
|
-
item: unknown;
|
|
102971
|
-
internalItem: InternalListItem<unknown>;
|
|
102972
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102973
|
-
[key: string]: any;
|
|
102974
|
-
}>[];
|
|
102975
|
-
title: (arg: ListItemTitleSlot & {
|
|
102976
|
-
item: unknown;
|
|
102977
|
-
internalItem: InternalListItem<unknown>;
|
|
102978
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102979
|
-
[key: string]: any;
|
|
102980
|
-
}>[];
|
|
102981
|
-
subtitle: (arg: ListItemSubtitleSlot & {
|
|
102982
|
-
item: unknown;
|
|
102983
|
-
internalItem: InternalListItem<unknown>;
|
|
102984
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102985
|
-
[key: string]: any;
|
|
102986
|
-
}>[];
|
|
102987
|
-
toggle: (arg: ListItemSlot & {
|
|
102988
|
-
props: {
|
|
102989
|
-
onClick: (e: PointerEvent) => void;
|
|
102990
|
-
};
|
|
102991
|
-
} & {
|
|
102992
|
-
loading: boolean;
|
|
102993
|
-
} & {
|
|
102994
|
-
item: unknown;
|
|
102995
|
-
internalItem: InternalListItem<unknown>;
|
|
102996
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
102997
|
-
[key: string]: any;
|
|
102998
|
-
}>[];
|
|
102999
|
-
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
103000
|
-
[key: string]: any;
|
|
103001
|
-
}>[];
|
|
103002
|
-
item: (arg: {
|
|
103003
|
-
props: {
|
|
103004
|
-
[key: string]: any;
|
|
103005
|
-
title: string;
|
|
103006
|
-
value: any;
|
|
103007
|
-
};
|
|
103008
|
-
item: unknown;
|
|
103009
|
-
internalItem: InternalListItem<unknown>;
|
|
103010
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
103011
|
-
[key: string]: any;
|
|
103012
|
-
}>[];
|
|
103013
|
-
header: (arg: {
|
|
103014
|
-
props: {
|
|
103015
|
-
[key: string]: any;
|
|
103016
|
-
title: string;
|
|
103017
|
-
value: any;
|
|
103018
|
-
};
|
|
103019
|
-
item: unknown;
|
|
103020
|
-
internalItem: InternalListItem<unknown>;
|
|
103021
|
-
loading: boolean;
|
|
103022
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
103023
|
-
[key: string]: any;
|
|
103024
|
-
}>[];
|
|
103025
|
-
footer: (arg: {
|
|
103026
|
-
props: {
|
|
103027
|
-
indentLines?: IndentLineType[] | undefined;
|
|
103028
|
-
};
|
|
103029
|
-
item: unknown;
|
|
103030
|
-
internalItem: InternalListItem<unknown>;
|
|
103031
|
-
loading: boolean;
|
|
103032
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
103033
|
-
[key: string]: any;
|
|
103034
|
-
}>[];
|
|
103035
|
-
divider: (arg: {
|
|
103036
|
-
props: {
|
|
103037
|
-
[key: string]: any;
|
|
103038
|
-
title: string;
|
|
103039
|
-
value: any;
|
|
103040
|
-
};
|
|
103041
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
103042
|
-
[key: string]: any;
|
|
103043
|
-
}>[];
|
|
103044
|
-
subheader: (arg: {
|
|
103045
|
-
props: {
|
|
103046
|
-
[key: string]: any;
|
|
103047
|
-
title: string;
|
|
103048
|
-
value: any;
|
|
103049
|
-
};
|
|
103050
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
103051
|
-
[key: string]: any;
|
|
103052
|
-
}>[];
|
|
103053
|
-
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
103054
|
-
items?: T[] | undefined;
|
|
103055
|
-
}, slots: VTreeviewChildrenSlots<T>) => GenericProps<{
|
|
103056
|
-
items?: T[] | undefined;
|
|
103057
|
-
}, VTreeviewChildrenSlots<T>>) & FilterPropsOptions<{
|
|
103058
|
-
theme: StringConstructor;
|
|
103059
|
-
class: PropType<any>;
|
|
103060
|
-
style: {
|
|
103061
|
-
type: PropType<vue.StyleValue>;
|
|
103062
|
-
default: null;
|
|
103063
|
-
};
|
|
103064
|
-
customFilter: PropType<FilterFunction>;
|
|
103065
|
-
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
103066
|
-
filterKeys: {
|
|
103067
|
-
type: PropType<FilterKeys>;
|
|
103068
|
-
default: NonNullable<FilterKeys>;
|
|
103069
|
-
};
|
|
103070
|
-
filterMode: {
|
|
103071
|
-
type: PropType<FilterMode>;
|
|
103072
|
-
default: string;
|
|
103073
|
-
};
|
|
103074
|
-
noFilter: BooleanConstructor;
|
|
103075
|
-
border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
103076
|
-
density: {
|
|
103077
|
-
type: PropType<Density>;
|
|
103078
|
-
default: string;
|
|
103079
|
-
validator: (v: any) => boolean;
|
|
103080
|
-
};
|
|
103081
|
-
elevation: {
|
|
103082
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
103083
|
-
validator(v: any): boolean;
|
|
103084
|
-
};
|
|
103085
|
-
rounded: {
|
|
103086
|
-
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
103087
|
-
default: undefined;
|
|
103088
|
-
};
|
|
103089
|
-
tile: BooleanConstructor;
|
|
103090
|
-
tag: {
|
|
103091
|
-
type: PropType<string | JSXComponent>;
|
|
103092
|
-
default: string;
|
|
103093
|
-
};
|
|
103094
|
-
color: StringConstructor;
|
|
103095
|
-
variant: Omit<{
|
|
103096
|
-
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
103097
|
-
default: string;
|
|
103098
|
-
validator: (v: any) => boolean;
|
|
103099
|
-
}, "default" | "type"> & {
|
|
103100
|
-
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
103101
|
-
default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
103102
|
-
};
|
|
103103
|
-
height: (NumberConstructor | StringConstructor)[];
|
|
103104
|
-
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
103105
|
-
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
103106
|
-
minHeight: (NumberConstructor | StringConstructor)[];
|
|
103107
|
-
minWidth: (NumberConstructor | StringConstructor)[];
|
|
103108
|
-
width: (NumberConstructor | StringConstructor)[];
|
|
103109
|
-
activatable: BooleanConstructor;
|
|
103110
|
-
selectable: BooleanConstructor;
|
|
103111
|
-
activeStrategy: PropType<ActiveStrategyProp>;
|
|
103112
|
-
selectStrategy: {
|
|
103113
|
-
type: PropType<SelectStrategyProp>;
|
|
103114
|
-
default: NonNullable<SelectStrategyProp>;
|
|
103115
|
-
};
|
|
103116
|
-
opened: null;
|
|
103117
|
-
activated: null;
|
|
103118
|
-
selected: null;
|
|
103119
|
-
mandatory: BooleanConstructor;
|
|
103120
|
-
items: {
|
|
103121
|
-
type: PropType<any[]>;
|
|
103122
|
-
default: () => never[];
|
|
103123
|
-
};
|
|
103124
|
-
itemTitle: {
|
|
103125
|
-
type: PropType<SelectItemKey>;
|
|
103126
|
-
default: string;
|
|
103127
|
-
};
|
|
103128
|
-
itemValue: {
|
|
103129
|
-
type: PropType<SelectItemKey>;
|
|
103130
|
-
default: string;
|
|
103131
|
-
};
|
|
103132
|
-
itemChildren: {
|
|
103133
|
-
type: PropType<SelectItemKey>;
|
|
103134
|
-
default: string;
|
|
103135
|
-
};
|
|
103136
|
-
itemProps: {
|
|
103137
|
-
type: PropType<SelectItemKey>;
|
|
103138
|
-
default: string;
|
|
103139
|
-
};
|
|
103140
|
-
itemType: {
|
|
103141
|
-
type: PropType<SelectItemKey>;
|
|
103142
|
-
default: string;
|
|
103143
|
-
};
|
|
103144
|
-
returnObject: BooleanConstructor;
|
|
103145
|
-
valueComparator: PropType<typeof deepEqual>;
|
|
103146
|
-
baseColor: StringConstructor;
|
|
103147
|
-
activeColor: StringConstructor;
|
|
103148
|
-
activeClass: StringConstructor;
|
|
103149
|
-
bgColor: StringConstructor;
|
|
103150
|
-
disabled: BooleanConstructor;
|
|
103151
|
-
filterable: BooleanConstructor;
|
|
103152
|
-
expandIcon: {
|
|
103153
|
-
type: PropType<IconValue>;
|
|
103154
|
-
default: NonNullable<IconValue>;
|
|
103155
|
-
};
|
|
103156
|
-
collapseIcon: {
|
|
103157
|
-
type: PropType<IconValue>;
|
|
103158
|
-
default: NonNullable<IconValue>;
|
|
103159
|
-
};
|
|
103160
|
-
lines: {
|
|
103161
|
-
type: PropType<"one" | "three" | "two" | false>;
|
|
103162
|
-
default: string;
|
|
103163
|
-
};
|
|
103164
|
-
slim: {
|
|
103165
|
-
type: PropType<boolean>;
|
|
103166
|
-
default: boolean;
|
|
103167
|
-
};
|
|
103168
|
-
"onClick:open": PropType<(args_0: {
|
|
103169
|
-
id: unknown;
|
|
103170
|
-
value: boolean;
|
|
103171
|
-
path: unknown[];
|
|
103172
|
-
}) => void>;
|
|
103173
|
-
"onClick:select": PropType<(args_0: {
|
|
103174
|
-
id: unknown;
|
|
103175
|
-
value: boolean;
|
|
103176
|
-
path: unknown[];
|
|
103177
|
-
}) => void>;
|
|
103178
|
-
"onUpdate:opened": PropType<(args_0: unknown) => void>;
|
|
103179
|
-
hideActions: BooleanConstructor;
|
|
103180
|
-
fluid: BooleanConstructor;
|
|
103181
|
-
loadChildren: PropType<(item: unknown) => Promise<void>>;
|
|
103182
|
-
loadingIcon: {
|
|
103183
|
-
type: StringConstructor;
|
|
103184
|
-
default: string;
|
|
103185
|
-
};
|
|
103186
|
-
openOnClick: {
|
|
103187
|
-
type: BooleanConstructor;
|
|
103188
|
-
default: undefined;
|
|
103189
|
-
};
|
|
103190
|
-
indeterminateIcon: {
|
|
103191
|
-
type: PropType<IconValue>;
|
|
103192
|
-
default: string;
|
|
103193
|
-
};
|
|
103194
|
-
falseIcon: PropType<IconValue>;
|
|
103195
|
-
trueIcon: PropType<IconValue>;
|
|
103196
|
-
selectedColor: StringConstructor;
|
|
103197
|
-
separateRoots: BooleanConstructor;
|
|
103198
|
-
openAll: BooleanConstructor;
|
|
103199
|
-
indentLines: PropType<boolean | IndentLinesVariant>;
|
|
103200
|
-
search: StringConstructor;
|
|
103201
|
-
modelValue: ArrayConstructor;
|
|
103202
|
-
}, vue.ExtractPropTypes<{
|
|
103203
|
-
theme: StringConstructor;
|
|
103204
|
-
class: PropType<any>;
|
|
103205
|
-
style: {
|
|
103206
|
-
type: PropType<vue.StyleValue>;
|
|
103207
|
-
default: null;
|
|
103208
|
-
};
|
|
103209
|
-
customFilter: PropType<FilterFunction>;
|
|
103210
|
-
customKeyFilter: PropType<FilterKeyFunctions>;
|
|
103211
|
-
filterKeys: {
|
|
103212
|
-
type: PropType<FilterKeys>;
|
|
103213
|
-
default: NonNullable<FilterKeys>;
|
|
103214
|
-
};
|
|
103215
|
-
filterMode: {
|
|
103216
|
-
type: PropType<FilterMode>;
|
|
103217
|
-
default: string;
|
|
103218
|
-
};
|
|
103219
|
-
noFilter: BooleanConstructor;
|
|
103220
|
-
border: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
103221
|
-
density: {
|
|
103222
|
-
type: PropType<Density>;
|
|
103223
|
-
default: string;
|
|
103224
|
-
validator: (v: any) => boolean;
|
|
103225
|
-
};
|
|
103226
|
-
elevation: {
|
|
103227
|
-
type: (NumberConstructor | StringConstructor)[];
|
|
103228
|
-
validator(v: any): boolean;
|
|
103229
|
-
};
|
|
103230
|
-
rounded: {
|
|
103231
|
-
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
103232
|
-
default: undefined;
|
|
103233
|
-
};
|
|
103234
|
-
tile: BooleanConstructor;
|
|
103235
|
-
tag: {
|
|
103236
|
-
type: PropType<string | JSXComponent>;
|
|
103237
|
-
default: string;
|
|
103238
|
-
};
|
|
103239
|
-
color: StringConstructor;
|
|
103240
|
-
variant: Omit<{
|
|
103241
|
-
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
103242
|
-
default: string;
|
|
103243
|
-
validator: (v: any) => boolean;
|
|
103244
|
-
}, "default" | "type"> & {
|
|
103245
|
-
type: PropType<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
103246
|
-
default: NonNullable<"elevated" | "flat" | "outlined" | "plain" | "text" | "tonal">;
|
|
103247
|
-
};
|
|
103248
|
-
height: (NumberConstructor | StringConstructor)[];
|
|
103249
|
-
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
103250
|
-
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
103251
|
-
minHeight: (NumberConstructor | StringConstructor)[];
|
|
103252
|
-
minWidth: (NumberConstructor | StringConstructor)[];
|
|
103253
|
-
width: (NumberConstructor | StringConstructor)[];
|
|
103254
|
-
activatable: BooleanConstructor;
|
|
103255
|
-
selectable: BooleanConstructor;
|
|
103256
|
-
activeStrategy: PropType<ActiveStrategyProp>;
|
|
103257
|
-
selectStrategy: {
|
|
103258
|
-
type: PropType<SelectStrategyProp>;
|
|
103259
|
-
default: NonNullable<SelectStrategyProp>;
|
|
103260
|
-
};
|
|
103261
|
-
opened: null;
|
|
103262
|
-
activated: null;
|
|
103263
|
-
selected: null;
|
|
103264
|
-
mandatory: BooleanConstructor;
|
|
103265
|
-
items: {
|
|
103266
|
-
type: PropType<any[]>;
|
|
103267
|
-
default: () => never[];
|
|
103268
|
-
};
|
|
103269
|
-
itemTitle: {
|
|
103270
|
-
type: PropType<SelectItemKey>;
|
|
103271
|
-
default: string;
|
|
103272
|
-
};
|
|
103273
|
-
itemValue: {
|
|
103274
|
-
type: PropType<SelectItemKey>;
|
|
103275
|
-
default: string;
|
|
103276
|
-
};
|
|
103277
|
-
itemChildren: {
|
|
103278
|
-
type: PropType<SelectItemKey>;
|
|
103279
|
-
default: string;
|
|
103280
|
-
};
|
|
103281
|
-
itemProps: {
|
|
103282
|
-
type: PropType<SelectItemKey>;
|
|
103283
|
-
default: string;
|
|
103284
|
-
};
|
|
103285
|
-
itemType: {
|
|
103286
|
-
type: PropType<SelectItemKey>;
|
|
103287
|
-
default: string;
|
|
103387
|
+
href: StringConstructor;
|
|
103388
|
+
replace: BooleanConstructor;
|
|
103389
|
+
to: PropType<string | vue_router.RouteLocationAsPathGeneric | vue_router.RouteLocationAsRelativeGeneric>;
|
|
103390
|
+
exact: BooleanConstructor;
|
|
103391
|
+
active: {
|
|
103392
|
+
type: BooleanConstructor;
|
|
103393
|
+
default: undefined;
|
|
103288
103394
|
};
|
|
103289
|
-
returnObject: BooleanConstructor;
|
|
103290
|
-
valueComparator: PropType<typeof deepEqual>;
|
|
103291
|
-
baseColor: StringConstructor;
|
|
103292
|
-
activeColor: StringConstructor;
|
|
103293
103395
|
activeClass: StringConstructor;
|
|
103294
|
-
|
|
103396
|
+
activeColor: StringConstructor;
|
|
103397
|
+
appendAvatar: StringConstructor;
|
|
103398
|
+
appendIcon: PropType<IconValue>;
|
|
103399
|
+
baseColor: StringConstructor;
|
|
103295
103400
|
disabled: BooleanConstructor;
|
|
103296
|
-
|
|
103297
|
-
|
|
103298
|
-
type:
|
|
103299
|
-
default:
|
|
103300
|
-
};
|
|
103301
|
-
collapseIcon: {
|
|
103302
|
-
type: PropType<IconValue>;
|
|
103303
|
-
default: NonNullable<IconValue>;
|
|
103401
|
+
lines: PropType<"one" | "three" | "two" | false>;
|
|
103402
|
+
link: {
|
|
103403
|
+
type: BooleanConstructor;
|
|
103404
|
+
default: undefined;
|
|
103304
103405
|
};
|
|
103305
|
-
|
|
103306
|
-
|
|
103307
|
-
|
|
103406
|
+
nav: BooleanConstructor;
|
|
103407
|
+
prependAvatar: StringConstructor;
|
|
103408
|
+
prependIcon: PropType<IconValue>;
|
|
103409
|
+
ripple: {
|
|
103410
|
+
type: PropType<boolean | {
|
|
103411
|
+
class?: string | undefined;
|
|
103412
|
+
keys?: string[] | undefined;
|
|
103413
|
+
} | undefined>;
|
|
103414
|
+
default: boolean;
|
|
103308
103415
|
};
|
|
103309
103416
|
slim: {
|
|
103310
103417
|
type: PropType<boolean>;
|
|
103311
103418
|
default: boolean;
|
|
103312
103419
|
};
|
|
103313
|
-
|
|
103314
|
-
|
|
103315
|
-
value: boolean;
|
|
103316
|
-
path: unknown[];
|
|
103317
|
-
}) => void>;
|
|
103318
|
-
"onClick:select": PropType<(args_0: {
|
|
103319
|
-
id: unknown;
|
|
103320
|
-
value: boolean;
|
|
103321
|
-
path: unknown[];
|
|
103322
|
-
}) => void>;
|
|
103323
|
-
"onUpdate:opened": PropType<(args_0: unknown) => void>;
|
|
103324
|
-
hideActions: BooleanConstructor;
|
|
103325
|
-
fluid: BooleanConstructor;
|
|
103326
|
-
loadChildren: PropType<(item: unknown) => Promise<void>>;
|
|
103327
|
-
loadingIcon: {
|
|
103328
|
-
type: StringConstructor;
|
|
103329
|
-
default: string;
|
|
103330
|
-
};
|
|
103331
|
-
openOnClick: {
|
|
103332
|
-
type: BooleanConstructor;
|
|
103420
|
+
subtitle: {
|
|
103421
|
+
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
103333
103422
|
default: undefined;
|
|
103334
103423
|
};
|
|
103335
|
-
|
|
103336
|
-
type:
|
|
103337
|
-
default:
|
|
103424
|
+
title: {
|
|
103425
|
+
type: (BooleanConstructor | NumberConstructor | StringConstructor)[];
|
|
103426
|
+
default: undefined;
|
|
103338
103427
|
};
|
|
103339
|
-
|
|
103340
|
-
|
|
103341
|
-
|
|
103342
|
-
|
|
103343
|
-
|
|
103344
|
-
|
|
103345
|
-
|
|
103346
|
-
|
|
103428
|
+
value: null;
|
|
103429
|
+
onClick: PropType<(args_0: KeyboardEvent | MouseEvent) => void>;
|
|
103430
|
+
onClickOnce: PropType<(args_0: MouseEvent) => void>;
|
|
103431
|
+
loading: BooleanConstructor;
|
|
103432
|
+
hideActions: BooleanConstructor;
|
|
103433
|
+
hasCustomPrepend: BooleanConstructor;
|
|
103434
|
+
indentLines: PropType<IndentLineType[]>;
|
|
103435
|
+
toggleIcon: PropType<IconValue>;
|
|
103347
103436
|
}>>;
|
|
103348
|
-
type
|
|
103437
|
+
type VTreeviewItem = InstanceType<typeof VTreeviewItem>;
|
|
103349
103438
|
|
|
103350
103439
|
declare const VTreeviewGroup: {
|
|
103351
103440
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
|
@@ -113033,13 +113122,9 @@ declare const VColorInput: {
|
|
|
113033
113122
|
border?: string | number | boolean | undefined;
|
|
113034
113123
|
elevation?: string | number | undefined;
|
|
113035
113124
|
rounded?: string | number | boolean | undefined;
|
|
113036
|
-
height?: string | number | undefined;
|
|
113037
|
-
maxHeight?: string | number | undefined;
|
|
113038
113125
|
maxWidth?: string | number | undefined;
|
|
113039
|
-
minHeight?: string | number | undefined;
|
|
113040
113126
|
minWidth?: string | number | undefined;
|
|
113041
113127
|
width?: string | number | undefined;
|
|
113042
|
-
location?: Anchor | null | undefined;
|
|
113043
113128
|
loading?: string | boolean | undefined;
|
|
113044
113129
|
position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
|
|
113045
113130
|
id?: string | undefined;
|
|
@@ -113318,13 +113403,9 @@ declare const VColorInput: {
|
|
|
113318
113403
|
border?: string | number | boolean | undefined;
|
|
113319
113404
|
elevation?: string | number | undefined;
|
|
113320
113405
|
rounded?: string | number | boolean | undefined;
|
|
113321
|
-
height?: string | number | undefined;
|
|
113322
|
-
maxHeight?: string | number | undefined;
|
|
113323
113406
|
maxWidth?: string | number | undefined;
|
|
113324
|
-
minHeight?: string | number | undefined;
|
|
113325
113407
|
minWidth?: string | number | undefined;
|
|
113326
113408
|
width?: string | number | undefined;
|
|
113327
|
-
location?: Anchor | null | undefined;
|
|
113328
113409
|
loading?: string | boolean | undefined;
|
|
113329
113410
|
position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
|
|
113330
113411
|
id?: string | undefined;
|
|
@@ -113556,13 +113637,9 @@ declare const VColorInput: {
|
|
|
113556
113637
|
border?: string | number | boolean | undefined;
|
|
113557
113638
|
elevation?: string | number | undefined;
|
|
113558
113639
|
rounded?: string | number | boolean | undefined;
|
|
113559
|
-
height?: string | number | undefined;
|
|
113560
|
-
maxHeight?: string | number | undefined;
|
|
113561
113640
|
maxWidth?: string | number | undefined;
|
|
113562
|
-
minHeight?: string | number | undefined;
|
|
113563
113641
|
minWidth?: string | number | undefined;
|
|
113564
113642
|
width?: string | number | undefined;
|
|
113565
|
-
location?: Anchor | null | undefined;
|
|
113566
113643
|
loading?: string | boolean | undefined;
|
|
113567
113644
|
position?: "absolute" | "fixed" | "relative" | "static" | "sticky" | undefined;
|
|
113568
113645
|
id?: string | undefined;
|
|
@@ -113817,13 +113894,9 @@ declare const VColorInput: {
|
|
|
113817
113894
|
type: PropType<string | JSXComponent>;
|
|
113818
113895
|
default: string;
|
|
113819
113896
|
};
|
|
113820
|
-
height: (NumberConstructor | StringConstructor)[];
|
|
113821
|
-
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
113822
113897
|
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
113823
|
-
minHeight: (NumberConstructor | StringConstructor)[];
|
|
113824
113898
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
113825
113899
|
width: (NumberConstructor | StringConstructor)[];
|
|
113826
|
-
location: PropType<Anchor | null>;
|
|
113827
113900
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
113828
113901
|
position: {
|
|
113829
113902
|
type: PropType<"absolute" | "fixed" | "relative" | "static" | "sticky">;
|
|
@@ -114025,13 +114098,9 @@ declare const VColorInput: {
|
|
|
114025
114098
|
type: PropType<string | JSXComponent>;
|
|
114026
114099
|
default: string;
|
|
114027
114100
|
};
|
|
114028
|
-
height: (NumberConstructor | StringConstructor)[];
|
|
114029
|
-
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
114030
114101
|
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
114031
|
-
minHeight: (NumberConstructor | StringConstructor)[];
|
|
114032
114102
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
114033
114103
|
width: (NumberConstructor | StringConstructor)[];
|
|
114034
|
-
location: PropType<Anchor | null>;
|
|
114035
114104
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
114036
114105
|
position: {
|
|
114037
114106
|
type: PropType<"absolute" | "fixed" | "relative" | "static" | "sticky">;
|
|
@@ -114267,10 +114336,7 @@ declare const VDateInput: {
|
|
|
114267
114336
|
border?: string | number | boolean | undefined;
|
|
114268
114337
|
elevation?: string | number | undefined;
|
|
114269
114338
|
rounded?: string | number | boolean | undefined;
|
|
114270
|
-
height?: string | number | undefined;
|
|
114271
|
-
maxHeight?: string | number | undefined;
|
|
114272
114339
|
maxWidth?: string | number | undefined;
|
|
114273
|
-
minHeight?: string | number | undefined;
|
|
114274
114340
|
minWidth?: string | number | undefined;
|
|
114275
114341
|
width?: string | number | undefined;
|
|
114276
114342
|
loading?: string | boolean | undefined;
|
|
@@ -116696,10 +116762,7 @@ declare const VDateInput: {
|
|
|
116696
116762
|
border?: string | number | boolean | undefined;
|
|
116697
116763
|
elevation?: string | number | undefined;
|
|
116698
116764
|
rounded?: string | number | boolean | undefined;
|
|
116699
|
-
height?: string | number | undefined;
|
|
116700
|
-
maxHeight?: string | number | undefined;
|
|
116701
116765
|
maxWidth?: string | number | undefined;
|
|
116702
|
-
minHeight?: string | number | undefined;
|
|
116703
116766
|
minWidth?: string | number | undefined;
|
|
116704
116767
|
width?: string | number | undefined;
|
|
116705
116768
|
loading?: string | boolean | undefined;
|
|
@@ -119027,10 +119090,7 @@ declare const VDateInput: {
|
|
|
119027
119090
|
border?: string | number | boolean | undefined;
|
|
119028
119091
|
elevation?: string | number | undefined;
|
|
119029
119092
|
rounded?: string | number | boolean | undefined;
|
|
119030
|
-
height?: string | number | undefined;
|
|
119031
|
-
maxHeight?: string | number | undefined;
|
|
119032
119093
|
maxWidth?: string | number | undefined;
|
|
119033
|
-
minHeight?: string | number | undefined;
|
|
119034
119094
|
minWidth?: string | number | undefined;
|
|
119035
119095
|
width?: string | number | undefined;
|
|
119036
119096
|
loading?: string | boolean | undefined;
|
|
@@ -121447,10 +121507,7 @@ declare const VDateInput: {
|
|
|
121447
121507
|
type: PropType<string | JSXComponent>;
|
|
121448
121508
|
default: string;
|
|
121449
121509
|
};
|
|
121450
|
-
height: (NumberConstructor | StringConstructor)[];
|
|
121451
|
-
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
121452
121510
|
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
121453
|
-
minHeight: (NumberConstructor | StringConstructor)[];
|
|
121454
121511
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
121455
121512
|
width: (NumberConstructor | StringConstructor)[];
|
|
121456
121513
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
@@ -121692,10 +121749,7 @@ declare const VDateInput: {
|
|
|
121692
121749
|
type: PropType<string | JSXComponent>;
|
|
121693
121750
|
default: string;
|
|
121694
121751
|
};
|
|
121695
|
-
height: (NumberConstructor | StringConstructor)[];
|
|
121696
|
-
maxHeight: (NumberConstructor | StringConstructor)[];
|
|
121697
121752
|
maxWidth: (NumberConstructor | StringConstructor)[];
|
|
121698
|
-
minHeight: (NumberConstructor | StringConstructor)[];
|
|
121699
121753
|
minWidth: (NumberConstructor | StringConstructor)[];
|
|
121700
121754
|
width: (NumberConstructor | StringConstructor)[];
|
|
121701
121755
|
loading: (BooleanConstructor | StringConstructor)[];
|
|
@@ -142839,47 +142893,41 @@ declare module 'vue' {
|
|
|
142839
142893
|
}
|
|
142840
142894
|
export interface GlobalComponents {
|
|
142841
142895
|
VApp: VApp
|
|
142896
|
+
VAutocomplete: VAutocomplete
|
|
142842
142897
|
VAppBar: VAppBar
|
|
142843
142898
|
VAppBarNavIcon: VAppBarNavIcon
|
|
142844
142899
|
VAppBarTitle: VAppBarTitle
|
|
142845
|
-
|
|
142900
|
+
VAvatar: VAvatar
|
|
142846
142901
|
VAlert: VAlert
|
|
142847
142902
|
VAlertTitle: VAlertTitle
|
|
142848
|
-
VAutocomplete: VAutocomplete
|
|
142849
142903
|
VBanner: VBanner
|
|
142850
142904
|
VBannerActions: VBannerActions
|
|
142851
142905
|
VBannerText: VBannerText
|
|
142852
|
-
|
|
142853
|
-
|
|
142854
|
-
|
|
142855
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
142856
|
-
VAvatar: VAvatar
|
|
142906
|
+
VBadge: VBadge
|
|
142907
|
+
VBottomSheet: VBottomSheet
|
|
142908
|
+
VBtn: VBtn
|
|
142857
142909
|
VCard: VCard
|
|
142858
142910
|
VCardActions: VCardActions
|
|
142859
142911
|
VCardItem: VCardItem
|
|
142860
142912
|
VCardSubtitle: VCardSubtitle
|
|
142861
142913
|
VCardText: VCardText
|
|
142862
142914
|
VCardTitle: VCardTitle
|
|
142863
|
-
|
|
142864
|
-
|
|
142865
|
-
|
|
142866
|
-
|
|
142867
|
-
VCarouselItem: VCarouselItem
|
|
142868
|
-
VBottomSheet: VBottomSheet
|
|
142915
|
+
VBottomNavigation: VBottomNavigation
|
|
142916
|
+
VBreadcrumbs: VBreadcrumbs
|
|
142917
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
142918
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
142869
142919
|
VBtnGroup: VBtnGroup
|
|
142870
|
-
VChip: VChip
|
|
142871
142920
|
VBtnToggle: VBtnToggle
|
|
142921
|
+
VCheckbox: VCheckbox
|
|
142922
|
+
VCheckboxBtn: VCheckboxBtn
|
|
142872
142923
|
VChipGroup: VChipGroup
|
|
142873
|
-
|
|
142924
|
+
VChip: VChip
|
|
142874
142925
|
VColorPicker: VColorPicker
|
|
142875
|
-
|
|
142926
|
+
VCarousel: VCarousel
|
|
142927
|
+
VCarouselItem: VCarouselItem
|
|
142876
142928
|
VCounter: VCounter
|
|
142877
|
-
|
|
142878
|
-
|
|
142879
|
-
VDatePickerHeader: VDatePickerHeader
|
|
142880
|
-
VDatePickerMonth: VDatePickerMonth
|
|
142881
|
-
VDatePickerMonths: VDatePickerMonths
|
|
142882
|
-
VDatePickerYears: VDatePickerYears
|
|
142929
|
+
VCombobox: VCombobox
|
|
142930
|
+
VCode: VCode
|
|
142883
142931
|
VDataTable: VDataTable
|
|
142884
142932
|
VDataTableHeaders: VDataTableHeaders
|
|
142885
142933
|
VDataTableFooter: VDataTableFooter
|
|
@@ -142887,30 +142935,31 @@ declare module 'vue' {
|
|
|
142887
142935
|
VDataTableRow: VDataTableRow
|
|
142888
142936
|
VDataTableVirtual: VDataTableVirtual
|
|
142889
142937
|
VDataTableServer: VDataTableServer
|
|
142938
|
+
VDatePicker: VDatePicker
|
|
142939
|
+
VDatePickerControls: VDatePickerControls
|
|
142940
|
+
VDatePickerHeader: VDatePickerHeader
|
|
142941
|
+
VDatePickerMonth: VDatePickerMonth
|
|
142942
|
+
VDatePickerMonths: VDatePickerMonths
|
|
142943
|
+
VDatePickerYears: VDatePickerYears
|
|
142890
142944
|
VEmptyState: VEmptyState
|
|
142891
|
-
VDialog: VDialog
|
|
142892
|
-
VField: VField
|
|
142893
|
-
VFieldLabel: VFieldLabel
|
|
142894
|
-
VDivider: VDivider
|
|
142895
142945
|
VFileInput: VFileInput
|
|
142896
142946
|
VExpansionPanels: VExpansionPanels
|
|
142897
142947
|
VExpansionPanel: VExpansionPanel
|
|
142898
142948
|
VExpansionPanelText: VExpansionPanelText
|
|
142899
142949
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
142900
|
-
|
|
142950
|
+
VDialog: VDialog
|
|
142901
142951
|
VFab: VFab
|
|
142952
|
+
VDivider: VDivider
|
|
142953
|
+
VFooter: VFooter
|
|
142902
142954
|
VImg: VImg
|
|
142903
|
-
|
|
142955
|
+
VField: VField
|
|
142956
|
+
VFieldLabel: VFieldLabel
|
|
142957
|
+
VInfiniteScroll: VInfiniteScroll
|
|
142904
142958
|
VIcon: VIcon
|
|
142905
142959
|
VComponentIcon: VComponentIcon
|
|
142906
142960
|
VSvgIcon: VSvgIcon
|
|
142907
142961
|
VLigatureIcon: VLigatureIcon
|
|
142908
142962
|
VClassIcon: VClassIcon
|
|
142909
|
-
VInfiniteScroll: VInfiniteScroll
|
|
142910
|
-
VInput: VInput
|
|
142911
|
-
VItemGroup: VItemGroup
|
|
142912
|
-
VItem: VItem
|
|
142913
|
-
VKbd: VKbd
|
|
142914
142963
|
VList: VList
|
|
142915
142964
|
VListGroup: VListGroup
|
|
142916
142965
|
VListImg: VListImg
|
|
@@ -142920,79 +142969,84 @@ declare module 'vue' {
|
|
|
142920
142969
|
VListItemSubtitle: VListItemSubtitle
|
|
142921
142970
|
VListItemTitle: VListItemTitle
|
|
142922
142971
|
VListSubheader: VListSubheader
|
|
142972
|
+
VInput: VInput
|
|
142973
|
+
VKbd: VKbd
|
|
142974
|
+
VItemGroup: VItemGroup
|
|
142975
|
+
VItem: VItem
|
|
142976
|
+
VLabel: VLabel
|
|
142923
142977
|
VNavigationDrawer: VNavigationDrawer
|
|
142978
|
+
VOtpInput: VOtpInput
|
|
142924
142979
|
VMenu: VMenu
|
|
142925
142980
|
VMessages: VMessages
|
|
142926
|
-
VOverlay: VOverlay
|
|
142927
|
-
VPagination: VPagination
|
|
142928
142981
|
VMain: VMain
|
|
142929
|
-
|
|
142930
|
-
VProgressCircular: VProgressCircular
|
|
142982
|
+
VPagination: VPagination
|
|
142931
142983
|
VNumberInput: VNumberInput
|
|
142984
|
+
VOverlay: VOverlay
|
|
142932
142985
|
VRadioGroup: VRadioGroup
|
|
142986
|
+
VProgressCircular: VProgressCircular
|
|
142933
142987
|
VProgressLinear: VProgressLinear
|
|
142934
|
-
|
|
142988
|
+
VSelect: VSelect
|
|
142935
142989
|
VSkeletonLoader: VSkeletonLoader
|
|
142936
142990
|
VSelectionControlGroup: VSelectionControlGroup
|
|
142937
|
-
|
|
142991
|
+
VRating: VRating
|
|
142992
|
+
VSelectionControl: VSelectionControl
|
|
142993
|
+
VSlider: VSlider
|
|
142938
142994
|
VSlideGroup: VSlideGroup
|
|
142939
142995
|
VSlideGroupItem: VSlideGroupItem
|
|
142940
|
-
VSelectionControl: VSelectionControl
|
|
142941
142996
|
VSheet: VSheet
|
|
142942
|
-
VSlider: VSlider
|
|
142943
142997
|
VStepper: VStepper
|
|
142944
142998
|
VStepperActions: VStepperActions
|
|
142945
142999
|
VStepperHeader: VStepperHeader
|
|
142946
143000
|
VStepperItem: VStepperItem
|
|
142947
143001
|
VStepperWindow: VStepperWindow
|
|
142948
143002
|
VStepperWindowItem: VStepperWindowItem
|
|
142949
|
-
VSwitch: VSwitch
|
|
142950
|
-
VSystemBar: VSystemBar
|
|
142951
143003
|
VSnackbar: VSnackbar
|
|
143004
|
+
VSystemBar: VSystemBar
|
|
142952
143005
|
VTab: VTab
|
|
142953
143006
|
VTabs: VTabs
|
|
142954
143007
|
VTabsWindow: VTabsWindow
|
|
142955
143008
|
VTabsWindowItem: VTabsWindowItem
|
|
142956
|
-
VTextField: VTextField
|
|
142957
|
-
VTextarea: VTextarea
|
|
142958
143009
|
VTable: VTable
|
|
143010
|
+
VTextarea: VTextarea
|
|
143011
|
+
VSwitch: VSwitch
|
|
143012
|
+
VTextField: VTextField
|
|
143013
|
+
VTimeline: VTimeline
|
|
143014
|
+
VTimelineItem: VTimelineItem
|
|
142959
143015
|
VTimePicker: VTimePicker
|
|
142960
143016
|
VTimePickerClock: VTimePickerClock
|
|
142961
143017
|
VTimePickerControls: VTimePickerControls
|
|
142962
|
-
|
|
142963
|
-
|
|
142964
|
-
|
|
142965
|
-
VTimeline: VTimeline
|
|
142966
|
-
VTimelineItem: VTimelineItem
|
|
143018
|
+
VWindow: VWindow
|
|
143019
|
+
VWindowItem: VWindowItem
|
|
143020
|
+
VTooltip: VTooltip
|
|
142967
143021
|
VTreeview: VTreeview
|
|
142968
143022
|
VTreeviewItem: VTreeviewItem
|
|
142969
143023
|
VTreeviewGroup: VTreeviewGroup
|
|
142970
|
-
|
|
142971
|
-
|
|
142972
|
-
|
|
142973
|
-
VConfirmEdit: VConfirmEdit
|
|
143024
|
+
VToolbar: VToolbar
|
|
143025
|
+
VToolbarTitle: VToolbarTitle
|
|
143026
|
+
VToolbarItems: VToolbarItems
|
|
142974
143027
|
VDataIterator: VDataIterator
|
|
143028
|
+
VConfirmEdit: VConfirmEdit
|
|
143029
|
+
VHover: VHover
|
|
142975
143030
|
VDefaultsProvider: VDefaultsProvider
|
|
142976
143031
|
VForm: VForm
|
|
142977
143032
|
VContainer: VContainer
|
|
142978
143033
|
VCol: VCol
|
|
142979
143034
|
VRow: VRow
|
|
142980
143035
|
VSpacer: VSpacer
|
|
142981
|
-
VHover: VHover
|
|
142982
|
-
VLazy: VLazy
|
|
142983
|
-
VLocaleProvider: VLocaleProvider
|
|
142984
143036
|
VLayout: VLayout
|
|
142985
143037
|
VLayoutItem: VLayoutItem
|
|
143038
|
+
VLazy: VLazy
|
|
143039
|
+
VLocaleProvider: VLocaleProvider
|
|
142986
143040
|
VNoSsr: VNoSsr
|
|
142987
143041
|
VParallax: VParallax
|
|
143042
|
+
VRadio: VRadio
|
|
143043
|
+
VRangeSlider: VRangeSlider
|
|
142988
143044
|
VResponsive: VResponsive
|
|
142989
143045
|
VSnackbarQueue: VSnackbarQueue
|
|
142990
|
-
VRangeSlider: VRangeSlider
|
|
142991
143046
|
VSparkline: VSparkline
|
|
142992
|
-
VThemeProvider: VThemeProvider
|
|
142993
143047
|
VSpeedDial: VSpeedDial
|
|
143048
|
+
VThemeProvider: VThemeProvider
|
|
142994
143049
|
VValidation: VValidation
|
|
142995
|
-
VVirtualScroll: VVirtualScroll
|
|
142996
143050
|
VFabTransition: VFabTransition
|
|
142997
143051
|
VDialogBottomTransition: VDialogBottomTransition
|
|
142998
143052
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -143009,26 +143063,26 @@ declare module 'vue' {
|
|
|
143009
143063
|
VExpandTransition: VExpandTransition
|
|
143010
143064
|
VExpandXTransition: VExpandXTransition
|
|
143011
143065
|
VDialogTransition: VDialogTransition
|
|
143012
|
-
|
|
143066
|
+
VVirtualScroll: VVirtualScroll
|
|
143013
143067
|
VColorInput: VColorInput
|
|
143014
143068
|
VFileUpload: VFileUpload
|
|
143015
143069
|
VFileUploadItem: VFileUploadItem
|
|
143016
|
-
|
|
143070
|
+
VCalendar: VCalendar
|
|
143017
143071
|
VPie: VPie
|
|
143018
143072
|
VPieSegment: VPieSegment
|
|
143019
143073
|
VPieTooltip: VPieTooltip
|
|
143074
|
+
VIconBtn: VIconBtn
|
|
143020
143075
|
VPicker: VPicker
|
|
143021
143076
|
VPickerTitle: VPickerTitle
|
|
143022
|
-
VHotkey: VHotkey
|
|
143023
143077
|
VStepperVertical: VStepperVertical
|
|
143024
143078
|
VStepperVerticalItem: VStepperVerticalItem
|
|
143025
143079
|
VStepperVerticalActions: VStepperVerticalActions
|
|
143080
|
+
VHotkey: VHotkey
|
|
143026
143081
|
VVideo: VVideo
|
|
143027
143082
|
VVideoControls: VVideoControls
|
|
143028
143083
|
VVideoVolume: VVideoVolume
|
|
143029
|
-
VCalendar: VCalendar
|
|
143030
|
-
VMaskInput: VMaskInput
|
|
143031
143084
|
VDateInput: VDateInput
|
|
143085
|
+
VMaskInput: VMaskInput
|
|
143032
143086
|
VPullToRefresh: VPullToRefresh
|
|
143033
143087
|
}
|
|
143034
143088
|
export interface GlobalDirectives {
|