@vuetify/nightly 3.7.12-master.2025-02-13 → 3.7.12-master.2025-02-15
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 +15 -4
- package/dist/json/attributes.json +2629 -2633
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +0 -1
- package/dist/json/web-types.json +4953 -4963
- package/dist/vuetify-labs.css +3069 -3069
- package/dist/vuetify-labs.d.ts +0 -15
- package/dist/vuetify-labs.esm.js +20 -10
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +20 -10
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4803 -4803
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +19 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/nested/nested.mjs +16 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/lib/labs/VTreeview/VTreeview.mjs +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +2 -8
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +0 -15
- package/lib/labs/components.d.mts +0 -15
- package/package.json +1 -1
@@ -200,7 +200,6 @@ declare const VTreeview: {
|
|
200
200
|
itemValue: SelectItemKey;
|
201
201
|
itemChildren: SelectItemKey;
|
202
202
|
itemProps: SelectItemKey;
|
203
|
-
itemType: string;
|
204
203
|
loadingIcon: string;
|
205
204
|
openAll: boolean;
|
206
205
|
} & {
|
@@ -299,7 +298,6 @@ declare const VTreeview: {
|
|
299
298
|
itemValue: SelectItemKey;
|
300
299
|
itemChildren: SelectItemKey;
|
301
300
|
itemProps: SelectItemKey;
|
302
|
-
itemType: string;
|
303
301
|
loadingIcon: string;
|
304
302
|
openAll: boolean;
|
305
303
|
} & {
|
@@ -384,7 +382,6 @@ declare const VTreeview: {
|
|
384
382
|
itemValue: SelectItemKey;
|
385
383
|
itemChildren: SelectItemKey;
|
386
384
|
itemProps: SelectItemKey;
|
387
|
-
itemType: string;
|
388
385
|
openOnClick: boolean;
|
389
386
|
loadingIcon: string;
|
390
387
|
openAll: boolean;
|
@@ -446,7 +443,6 @@ declare const VTreeview: {
|
|
446
443
|
itemValue: SelectItemKey;
|
447
444
|
itemChildren: SelectItemKey;
|
448
445
|
itemProps: SelectItemKey;
|
449
|
-
itemType: string;
|
450
446
|
loadingIcon: string;
|
451
447
|
openAll: boolean;
|
452
448
|
} & {
|
@@ -531,7 +527,6 @@ declare const VTreeview: {
|
|
531
527
|
itemValue: SelectItemKey;
|
532
528
|
itemChildren: SelectItemKey;
|
533
529
|
itemProps: SelectItemKey;
|
534
|
-
itemType: string;
|
535
530
|
openOnClick: boolean;
|
536
531
|
loadingIcon: string;
|
537
532
|
openAll: boolean;
|
@@ -564,7 +559,6 @@ declare const VTreeview: {
|
|
564
559
|
itemValue: SelectItemKey;
|
565
560
|
itemChildren: SelectItemKey;
|
566
561
|
itemProps: SelectItemKey;
|
567
|
-
itemType: string;
|
568
562
|
loadingIcon: string;
|
569
563
|
openAll: boolean;
|
570
564
|
} & {
|
@@ -664,7 +658,6 @@ declare const VTreeview: {
|
|
664
658
|
itemValue: SelectItemKey;
|
665
659
|
itemChildren: SelectItemKey;
|
666
660
|
itemProps: SelectItemKey;
|
667
|
-
itemType: string;
|
668
661
|
openOnClick: boolean;
|
669
662
|
loadingIcon: string;
|
670
663
|
openAll: boolean;
|
@@ -806,10 +799,6 @@ declare const VTreeview: {
|
|
806
799
|
value: boolean;
|
807
800
|
path: unknown[];
|
808
801
|
}) => void>;
|
809
|
-
itemType: {
|
810
|
-
type: StringConstructor;
|
811
|
-
default: string;
|
812
|
-
};
|
813
802
|
loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
|
814
803
|
loadingIcon: {
|
815
804
|
type: StringConstructor;
|
@@ -949,10 +938,6 @@ declare const VTreeview: {
|
|
949
938
|
value: boolean;
|
950
939
|
path: unknown[];
|
951
940
|
}) => void>;
|
952
|
-
itemType: {
|
953
|
-
type: StringConstructor;
|
954
|
-
default: string;
|
955
|
-
};
|
956
941
|
loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
|
957
942
|
loadingIcon: {
|
958
943
|
type: StringConstructor;
|
@@ -16884,7 +16884,6 @@ declare const VTreeview: {
|
|
16884
16884
|
itemValue: SelectItemKey;
|
16885
16885
|
itemChildren: SelectItemKey;
|
16886
16886
|
itemProps: SelectItemKey;
|
16887
|
-
itemType: string;
|
16888
16887
|
loadingIcon: string;
|
16889
16888
|
openAll: boolean;
|
16890
16889
|
} & {
|
@@ -16983,7 +16982,6 @@ declare const VTreeview: {
|
|
16983
16982
|
itemValue: SelectItemKey;
|
16984
16983
|
itemChildren: SelectItemKey;
|
16985
16984
|
itemProps: SelectItemKey;
|
16986
|
-
itemType: string;
|
16987
16985
|
loadingIcon: string;
|
16988
16986
|
openAll: boolean;
|
16989
16987
|
} & {
|
@@ -17068,7 +17066,6 @@ declare const VTreeview: {
|
|
17068
17066
|
itemValue: SelectItemKey;
|
17069
17067
|
itemChildren: SelectItemKey;
|
17070
17068
|
itemProps: SelectItemKey;
|
17071
|
-
itemType: string;
|
17072
17069
|
openOnClick: boolean;
|
17073
17070
|
loadingIcon: string;
|
17074
17071
|
openAll: boolean;
|
@@ -17130,7 +17127,6 @@ declare const VTreeview: {
|
|
17130
17127
|
itemValue: SelectItemKey;
|
17131
17128
|
itemChildren: SelectItemKey;
|
17132
17129
|
itemProps: SelectItemKey;
|
17133
|
-
itemType: string;
|
17134
17130
|
loadingIcon: string;
|
17135
17131
|
openAll: boolean;
|
17136
17132
|
} & {
|
@@ -17215,7 +17211,6 @@ declare const VTreeview: {
|
|
17215
17211
|
itemValue: SelectItemKey;
|
17216
17212
|
itemChildren: SelectItemKey;
|
17217
17213
|
itemProps: SelectItemKey;
|
17218
|
-
itemType: string;
|
17219
17214
|
openOnClick: boolean;
|
17220
17215
|
loadingIcon: string;
|
17221
17216
|
openAll: boolean;
|
@@ -17248,7 +17243,6 @@ declare const VTreeview: {
|
|
17248
17243
|
itemValue: SelectItemKey;
|
17249
17244
|
itemChildren: SelectItemKey;
|
17250
17245
|
itemProps: SelectItemKey;
|
17251
|
-
itemType: string;
|
17252
17246
|
loadingIcon: string;
|
17253
17247
|
openAll: boolean;
|
17254
17248
|
} & {
|
@@ -17348,7 +17342,6 @@ declare const VTreeview: {
|
|
17348
17342
|
itemValue: SelectItemKey;
|
17349
17343
|
itemChildren: SelectItemKey;
|
17350
17344
|
itemProps: SelectItemKey;
|
17351
|
-
itemType: string;
|
17352
17345
|
openOnClick: boolean;
|
17353
17346
|
loadingIcon: string;
|
17354
17347
|
openAll: boolean;
|
@@ -17490,10 +17483,6 @@ declare const VTreeview: {
|
|
17490
17483
|
value: boolean;
|
17491
17484
|
path: unknown[];
|
17492
17485
|
}) => void>;
|
17493
|
-
itemType: {
|
17494
|
-
type: StringConstructor;
|
17495
|
-
default: string;
|
17496
|
-
};
|
17497
17486
|
loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
|
17498
17487
|
loadingIcon: {
|
17499
17488
|
type: StringConstructor;
|
@@ -17633,10 +17622,6 @@ declare const VTreeview: {
|
|
17633
17622
|
value: boolean;
|
17634
17623
|
path: unknown[];
|
17635
17624
|
}) => void>;
|
17636
|
-
itemType: {
|
17637
|
-
type: StringConstructor;
|
17638
|
-
default: string;
|
17639
|
-
};
|
17640
17625
|
loadChildren: vue.PropType<(item: unknown) => Promise<void>>;
|
17641
17626
|
loadingIcon: {
|
17642
17627
|
type: StringConstructor;
|
package/package.json
CHANGED