@vuetify/nightly 3.6.6-master.2024-05-21 → 3.6.7-master.2024-05-22
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 +2 -15
- package/dist/json/attributes.json +42 -2
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +11 -1
- package/dist/json/web-types.json +101 -4
- package/dist/vuetify-labs.css +2143 -2138
- package/dist/vuetify-labs.d.ts +93 -12
- package/dist/vuetify-labs.esm.js +52 -29
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +52 -29
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +873 -868
- package/dist/vuetify.d.ts +132 -51
- package/dist/vuetify.esm.js +50 -27
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +50 -27
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +103 -102
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +3 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +4 -3
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.css +4 -0
- package/lib/components/VDataTable/VDataTable.mjs +2 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTable.sass +4 -0
- package/lib/components/VDataTable/VDataTableHeaders.mjs +4 -3
- package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs +1 -1
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +1 -1
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +63 -0
- package/lib/components/VDatePicker/VDatePicker.mjs +2 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonths.mjs +10 -1
- package/lib/components/VDatePicker/VDatePickerMonths.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +24 -6
- package/lib/components/VDivider/VDivider.css +1 -1
- package/lib/components/VDivider/VDivider.sass +1 -1
- package/lib/components/VList/VListChildren.mjs +2 -1
- package/lib/components/VList/VListChildren.mjs.map +1 -1
- package/lib/components/index.d.mts +87 -6
- package/lib/composables/defaults.mjs +1 -1
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/dimensions.mjs +16 -8
- package/lib/composables/dimensions.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +45 -45
- package/lib/labs/VCalendar/VCalendar.mjs +2 -2
- package/lib/labs/VCalendar/VCalendar.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +6 -6
- package/lib/labs/components.d.mts +6 -6
- package/lib/locale/fa.mjs +10 -10
- package/lib/locale/fa.mjs.map +1 -1
- package/package.json +1 -1
@@ -23499,6 +23499,7 @@ declare const VDataTableHeaders: {
|
|
23499
23499
|
mobile: boolean | null;
|
23500
23500
|
sticky: boolean;
|
23501
23501
|
multiSort: boolean;
|
23502
|
+
disableSort: boolean;
|
23502
23503
|
sortAscIcon: IconValue;
|
23503
23504
|
sortDescIcon: IconValue;
|
23504
23505
|
} & {
|
@@ -23531,6 +23532,7 @@ declare const VDataTableHeaders: {
|
|
23531
23532
|
mobile: boolean | null;
|
23532
23533
|
sticky: boolean;
|
23533
23534
|
multiSort: boolean;
|
23535
|
+
disableSort: boolean;
|
23534
23536
|
sortAscIcon: IconValue;
|
23535
23537
|
sortDescIcon: IconValue;
|
23536
23538
|
} & {
|
@@ -23563,6 +23565,7 @@ declare const VDataTableHeaders: {
|
|
23563
23565
|
mobile: boolean | null;
|
23564
23566
|
sticky: boolean;
|
23565
23567
|
multiSort: boolean;
|
23568
|
+
disableSort: boolean;
|
23566
23569
|
sortAscIcon: IconValue;
|
23567
23570
|
sortDescIcon: IconValue;
|
23568
23571
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -23592,6 +23595,7 @@ declare const VDataTableHeaders: {
|
|
23592
23595
|
mobile: boolean | null;
|
23593
23596
|
sticky: boolean;
|
23594
23597
|
multiSort: boolean;
|
23598
|
+
disableSort: boolean;
|
23595
23599
|
sortAscIcon: IconValue;
|
23596
23600
|
sortDescIcon: IconValue;
|
23597
23601
|
} & {
|
@@ -23624,6 +23628,7 @@ declare const VDataTableHeaders: {
|
|
23624
23628
|
mobile: boolean | null;
|
23625
23629
|
sticky: boolean;
|
23626
23630
|
multiSort: boolean;
|
23631
|
+
disableSort: boolean;
|
23627
23632
|
sortAscIcon: IconValue;
|
23628
23633
|
sortDescIcon: IconValue;
|
23629
23634
|
}>;
|
@@ -23634,6 +23639,7 @@ declare const VDataTableHeaders: {
|
|
23634
23639
|
mobile: boolean | null;
|
23635
23640
|
sticky: boolean;
|
23636
23641
|
multiSort: boolean;
|
23642
|
+
disableSort: boolean;
|
23637
23643
|
sortAscIcon: IconValue;
|
23638
23644
|
sortDescIcon: IconValue;
|
23639
23645
|
} & {
|
@@ -23666,6 +23672,7 @@ declare const VDataTableHeaders: {
|
|
23666
23672
|
mobile: boolean | null;
|
23667
23673
|
sticky: boolean;
|
23668
23674
|
multiSort: boolean;
|
23675
|
+
disableSort: boolean;
|
23669
23676
|
sortAscIcon: IconValue;
|
23670
23677
|
sortDescIcon: IconValue;
|
23671
23678
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -23693,6 +23700,7 @@ declare const VDataTableHeaders: {
|
|
23693
23700
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
23694
23701
|
color: StringConstructor;
|
23695
23702
|
sticky: BooleanConstructor;
|
23703
|
+
disableSort: BooleanConstructor;
|
23696
23704
|
multiSort: BooleanConstructor;
|
23697
23705
|
sortAscIcon: {
|
23698
23706
|
type: PropType<IconValue>;
|
@@ -23714,6 +23722,7 @@ declare const VDataTableHeaders: {
|
|
23714
23722
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
23715
23723
|
color: StringConstructor;
|
23716
23724
|
sticky: BooleanConstructor;
|
23725
|
+
disableSort: BooleanConstructor;
|
23717
23726
|
multiSort: BooleanConstructor;
|
23718
23727
|
sortAscIcon: {
|
23719
23728
|
type: PropType<IconValue>;
|
@@ -24191,10 +24200,12 @@ declare const VDataTable: {
|
|
24191
24200
|
value: number;
|
24192
24201
|
})[];
|
24193
24202
|
showCurrentPage: boolean;
|
24203
|
+
disableSort: boolean;
|
24194
24204
|
sortAscIcon: IconValue;
|
24195
24205
|
sortDescIcon: IconValue;
|
24196
24206
|
fixedHeader: boolean;
|
24197
24207
|
fixedFooter: boolean;
|
24208
|
+
hideDefaultBody: boolean;
|
24198
24209
|
hideDefaultFooter: boolean;
|
24199
24210
|
hideDefaultHeader: boolean;
|
24200
24211
|
} & {
|
@@ -24268,10 +24279,12 @@ declare const VDataTable: {
|
|
24268
24279
|
value: number;
|
24269
24280
|
})[];
|
24270
24281
|
showCurrentPage: boolean;
|
24282
|
+
disableSort: boolean;
|
24271
24283
|
sortAscIcon: IconValue;
|
24272
24284
|
sortDescIcon: IconValue;
|
24273
24285
|
fixedHeader: boolean;
|
24274
24286
|
fixedFooter: boolean;
|
24287
|
+
hideDefaultBody: boolean;
|
24275
24288
|
hideDefaultFooter: boolean;
|
24276
24289
|
hideDefaultHeader: boolean;
|
24277
24290
|
} & {
|
@@ -24336,10 +24349,12 @@ declare const VDataTable: {
|
|
24336
24349
|
value: number;
|
24337
24350
|
})[];
|
24338
24351
|
showCurrentPage: boolean;
|
24352
|
+
disableSort: boolean;
|
24339
24353
|
sortAscIcon: IconValue;
|
24340
24354
|
sortDescIcon: IconValue;
|
24341
24355
|
fixedHeader: boolean;
|
24342
24356
|
fixedFooter: boolean;
|
24357
|
+
hideDefaultBody: boolean;
|
24343
24358
|
hideDefaultFooter: boolean;
|
24344
24359
|
hideDefaultHeader: boolean;
|
24345
24360
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -24486,10 +24501,12 @@ declare const VDataTable: {
|
|
24486
24501
|
value: number;
|
24487
24502
|
})[];
|
24488
24503
|
showCurrentPage: boolean;
|
24504
|
+
disableSort: boolean;
|
24489
24505
|
sortAscIcon: IconValue;
|
24490
24506
|
sortDescIcon: IconValue;
|
24491
24507
|
fixedHeader: boolean;
|
24492
24508
|
fixedFooter: boolean;
|
24509
|
+
hideDefaultBody: boolean;
|
24493
24510
|
hideDefaultFooter: boolean;
|
24494
24511
|
hideDefaultHeader: boolean;
|
24495
24512
|
} & {
|
@@ -24554,10 +24571,12 @@ declare const VDataTable: {
|
|
24554
24571
|
value: number;
|
24555
24572
|
})[];
|
24556
24573
|
showCurrentPage: boolean;
|
24574
|
+
disableSort: boolean;
|
24557
24575
|
sortAscIcon: IconValue;
|
24558
24576
|
sortDescIcon: IconValue;
|
24559
24577
|
fixedHeader: boolean;
|
24560
24578
|
fixedFooter: boolean;
|
24579
|
+
hideDefaultBody: boolean;
|
24561
24580
|
hideDefaultFooter: boolean;
|
24562
24581
|
hideDefaultHeader: boolean;
|
24563
24582
|
}>;
|
@@ -24604,10 +24623,12 @@ declare const VDataTable: {
|
|
24604
24623
|
value: number;
|
24605
24624
|
})[];
|
24606
24625
|
showCurrentPage: boolean;
|
24626
|
+
disableSort: boolean;
|
24607
24627
|
sortAscIcon: IconValue;
|
24608
24628
|
sortDescIcon: IconValue;
|
24609
24629
|
fixedHeader: boolean;
|
24610
24630
|
fixedFooter: boolean;
|
24631
|
+
hideDefaultBody: boolean;
|
24611
24632
|
hideDefaultFooter: boolean;
|
24612
24633
|
hideDefaultHeader: boolean;
|
24613
24634
|
} & {
|
@@ -24681,10 +24702,12 @@ declare const VDataTable: {
|
|
24681
24702
|
value: number;
|
24682
24703
|
})[];
|
24683
24704
|
showCurrentPage: boolean;
|
24705
|
+
disableSort: boolean;
|
24684
24706
|
sortAscIcon: IconValue;
|
24685
24707
|
sortDescIcon: IconValue;
|
24686
24708
|
fixedHeader: boolean;
|
24687
24709
|
fixedFooter: boolean;
|
24710
|
+
hideDefaultBody: boolean;
|
24688
24711
|
hideDefaultFooter: boolean;
|
24689
24712
|
hideDefaultHeader: boolean;
|
24690
24713
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -24933,6 +24956,7 @@ declare const VDataTable: {
|
|
24933
24956
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
24934
24957
|
color: StringConstructor;
|
24935
24958
|
sticky: BooleanConstructor;
|
24959
|
+
disableSort: BooleanConstructor;
|
24936
24960
|
multiSort: BooleanConstructor;
|
24937
24961
|
sortAscIcon: {
|
24938
24962
|
type: vue.PropType<IconValue>;
|
@@ -25034,6 +25058,7 @@ declare const VDataTable: {
|
|
25034
25058
|
type: vue.PropType<readonly string[]>;
|
25035
25059
|
default: () => never[];
|
25036
25060
|
};
|
25061
|
+
hideDefaultBody: BooleanConstructor;
|
25037
25062
|
hideDefaultFooter: BooleanConstructor;
|
25038
25063
|
hideDefaultHeader: BooleanConstructor;
|
25039
25064
|
width: (StringConstructor | NumberConstructor)[];
|
@@ -25142,6 +25167,7 @@ declare const VDataTable: {
|
|
25142
25167
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
25143
25168
|
color: StringConstructor;
|
25144
25169
|
sticky: BooleanConstructor;
|
25170
|
+
disableSort: BooleanConstructor;
|
25145
25171
|
multiSort: BooleanConstructor;
|
25146
25172
|
sortAscIcon: {
|
25147
25173
|
type: vue.PropType<IconValue>;
|
@@ -25243,6 +25269,7 @@ declare const VDataTable: {
|
|
25243
25269
|
type: vue.PropType<readonly string[]>;
|
25244
25270
|
default: () => never[];
|
25245
25271
|
};
|
25272
|
+
hideDefaultBody: BooleanConstructor;
|
25246
25273
|
hideDefaultFooter: BooleanConstructor;
|
25247
25274
|
hideDefaultHeader: BooleanConstructor;
|
25248
25275
|
width: (StringConstructor | NumberConstructor)[];
|
@@ -25579,10 +25606,12 @@ declare const VDataTableVirtual: {
|
|
25579
25606
|
showSelect: boolean;
|
25580
25607
|
expandOnClick: boolean;
|
25581
25608
|
showExpand: boolean;
|
25609
|
+
disableSort: boolean;
|
25582
25610
|
sortAscIcon: IconValue;
|
25583
25611
|
sortDescIcon: IconValue;
|
25584
25612
|
fixedHeader: boolean;
|
25585
25613
|
fixedFooter: boolean;
|
25614
|
+
hideDefaultBody: boolean;
|
25586
25615
|
hideDefaultFooter: boolean;
|
25587
25616
|
hideDefaultHeader: boolean;
|
25588
25617
|
} & {
|
@@ -25679,10 +25708,12 @@ declare const VDataTableVirtual: {
|
|
25679
25708
|
showSelect: boolean;
|
25680
25709
|
expandOnClick: boolean;
|
25681
25710
|
showExpand: boolean;
|
25711
|
+
disableSort: boolean;
|
25682
25712
|
sortAscIcon: IconValue;
|
25683
25713
|
sortDescIcon: IconValue;
|
25684
25714
|
fixedHeader: boolean;
|
25685
25715
|
fixedFooter: boolean;
|
25716
|
+
hideDefaultBody: boolean;
|
25686
25717
|
hideDefaultFooter: boolean;
|
25687
25718
|
hideDefaultHeader: boolean;
|
25688
25719
|
} & {
|
@@ -25773,10 +25804,12 @@ declare const VDataTableVirtual: {
|
|
25773
25804
|
showSelect: boolean;
|
25774
25805
|
expandOnClick: boolean;
|
25775
25806
|
showExpand: boolean;
|
25807
|
+
disableSort: boolean;
|
25776
25808
|
sortAscIcon: IconValue;
|
25777
25809
|
sortDescIcon: IconValue;
|
25778
25810
|
fixedHeader: boolean;
|
25779
25811
|
fixedFooter: boolean;
|
25812
|
+
hideDefaultBody: boolean;
|
25780
25813
|
hideDefaultFooter: boolean;
|
25781
25814
|
hideDefaultHeader: boolean;
|
25782
25815
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -25891,10 +25924,12 @@ declare const VDataTableVirtual: {
|
|
25891
25924
|
showSelect: boolean;
|
25892
25925
|
expandOnClick: boolean;
|
25893
25926
|
showExpand: boolean;
|
25927
|
+
disableSort: boolean;
|
25894
25928
|
sortAscIcon: IconValue;
|
25895
25929
|
sortDescIcon: IconValue;
|
25896
25930
|
fixedHeader: boolean;
|
25897
25931
|
fixedFooter: boolean;
|
25932
|
+
hideDefaultBody: boolean;
|
25898
25933
|
hideDefaultFooter: boolean;
|
25899
25934
|
hideDefaultHeader: boolean;
|
25900
25935
|
} & {
|
@@ -25985,10 +26020,12 @@ declare const VDataTableVirtual: {
|
|
25985
26020
|
showSelect: boolean;
|
25986
26021
|
expandOnClick: boolean;
|
25987
26022
|
showExpand: boolean;
|
26023
|
+
disableSort: boolean;
|
25988
26024
|
sortAscIcon: IconValue;
|
25989
26025
|
sortDescIcon: IconValue;
|
25990
26026
|
fixedHeader: boolean;
|
25991
26027
|
fixedFooter: boolean;
|
26028
|
+
hideDefaultBody: boolean;
|
25992
26029
|
hideDefaultFooter: boolean;
|
25993
26030
|
hideDefaultHeader: boolean;
|
25994
26031
|
}>;
|
@@ -26019,10 +26056,12 @@ declare const VDataTableVirtual: {
|
|
26019
26056
|
showSelect: boolean;
|
26020
26057
|
expandOnClick: boolean;
|
26021
26058
|
showExpand: boolean;
|
26059
|
+
disableSort: boolean;
|
26022
26060
|
sortAscIcon: IconValue;
|
26023
26061
|
sortDescIcon: IconValue;
|
26024
26062
|
fixedHeader: boolean;
|
26025
26063
|
fixedFooter: boolean;
|
26064
|
+
hideDefaultBody: boolean;
|
26026
26065
|
hideDefaultFooter: boolean;
|
26027
26066
|
hideDefaultHeader: boolean;
|
26028
26067
|
} & {
|
@@ -26119,10 +26158,12 @@ declare const VDataTableVirtual: {
|
|
26119
26158
|
showSelect: boolean;
|
26120
26159
|
expandOnClick: boolean;
|
26121
26160
|
showExpand: boolean;
|
26161
|
+
disableSort: boolean;
|
26122
26162
|
sortAscIcon: IconValue;
|
26123
26163
|
sortDescIcon: IconValue;
|
26124
26164
|
fixedHeader: boolean;
|
26125
26165
|
fixedFooter: boolean;
|
26166
|
+
hideDefaultBody: boolean;
|
26126
26167
|
hideDefaultFooter: boolean;
|
26127
26168
|
hideDefaultHeader: boolean;
|
26128
26169
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -26266,6 +26307,7 @@ declare const VDataTableVirtual: {
|
|
26266
26307
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
26267
26308
|
color: StringConstructor;
|
26268
26309
|
sticky: BooleanConstructor;
|
26310
|
+
disableSort: BooleanConstructor;
|
26269
26311
|
multiSort: BooleanConstructor;
|
26270
26312
|
sortAscIcon: {
|
26271
26313
|
type: vue.PropType<IconValue>;
|
@@ -26363,6 +26405,7 @@ declare const VDataTableVirtual: {
|
|
26363
26405
|
type: vue.PropType<readonly string[]>;
|
26364
26406
|
default: () => never[];
|
26365
26407
|
};
|
26408
|
+
hideDefaultBody: BooleanConstructor;
|
26366
26409
|
hideDefaultFooter: BooleanConstructor;
|
26367
26410
|
hideDefaultHeader: BooleanConstructor;
|
26368
26411
|
width: (StringConstructor | NumberConstructor)[];
|
@@ -26420,6 +26463,7 @@ declare const VDataTableVirtual: {
|
|
26420
26463
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
26421
26464
|
color: StringConstructor;
|
26422
26465
|
sticky: BooleanConstructor;
|
26466
|
+
disableSort: BooleanConstructor;
|
26423
26467
|
multiSort: BooleanConstructor;
|
26424
26468
|
sortAscIcon: {
|
26425
26469
|
type: vue.PropType<IconValue>;
|
@@ -26517,6 +26561,7 @@ declare const VDataTableVirtual: {
|
|
26517
26561
|
type: vue.PropType<readonly string[]>;
|
26518
26562
|
default: () => never[];
|
26519
26563
|
};
|
26564
|
+
hideDefaultBody: BooleanConstructor;
|
26520
26565
|
hideDefaultFooter: BooleanConstructor;
|
26521
26566
|
hideDefaultHeader: BooleanConstructor;
|
26522
26567
|
width: (StringConstructor | NumberConstructor)[];
|
@@ -26574,10 +26619,12 @@ declare const VDataTableServer: {
|
|
26574
26619
|
value: number;
|
26575
26620
|
})[];
|
26576
26621
|
showCurrentPage: boolean;
|
26622
|
+
disableSort: boolean;
|
26577
26623
|
sortAscIcon: IconValue;
|
26578
26624
|
sortDescIcon: IconValue;
|
26579
26625
|
fixedHeader: boolean;
|
26580
26626
|
fixedFooter: boolean;
|
26627
|
+
hideDefaultBody: boolean;
|
26581
26628
|
hideDefaultFooter: boolean;
|
26582
26629
|
hideDefaultHeader: boolean;
|
26583
26630
|
} & {
|
@@ -26690,10 +26737,12 @@ declare const VDataTableServer: {
|
|
26690
26737
|
value: number;
|
26691
26738
|
})[];
|
26692
26739
|
showCurrentPage: boolean;
|
26740
|
+
disableSort: boolean;
|
26693
26741
|
sortAscIcon: IconValue;
|
26694
26742
|
sortDescIcon: IconValue;
|
26695
26743
|
fixedHeader: boolean;
|
26696
26744
|
fixedFooter: boolean;
|
26745
|
+
hideDefaultBody: boolean;
|
26697
26746
|
hideDefaultFooter: boolean;
|
26698
26747
|
hideDefaultHeader: boolean;
|
26699
26748
|
} & {
|
@@ -26797,10 +26846,12 @@ declare const VDataTableServer: {
|
|
26797
26846
|
value: number;
|
26798
26847
|
})[];
|
26799
26848
|
showCurrentPage: boolean;
|
26849
|
+
disableSort: boolean;
|
26800
26850
|
sortAscIcon: IconValue;
|
26801
26851
|
sortDescIcon: IconValue;
|
26802
26852
|
fixedHeader: boolean;
|
26803
26853
|
fixedFooter: boolean;
|
26854
|
+
hideDefaultBody: boolean;
|
26804
26855
|
hideDefaultFooter: boolean;
|
26805
26856
|
hideDefaultHeader: boolean;
|
26806
26857
|
}, true, {}, vue.SlotsType<Partial<{
|
@@ -26946,10 +26997,12 @@ declare const VDataTableServer: {
|
|
26946
26997
|
value: number;
|
26947
26998
|
})[];
|
26948
26999
|
showCurrentPage: boolean;
|
27000
|
+
disableSort: boolean;
|
26949
27001
|
sortAscIcon: IconValue;
|
26950
27002
|
sortDescIcon: IconValue;
|
26951
27003
|
fixedHeader: boolean;
|
26952
27004
|
fixedFooter: boolean;
|
27005
|
+
hideDefaultBody: boolean;
|
26953
27006
|
hideDefaultFooter: boolean;
|
26954
27007
|
hideDefaultHeader: boolean;
|
26955
27008
|
} & {
|
@@ -27053,10 +27106,12 @@ declare const VDataTableServer: {
|
|
27053
27106
|
value: number;
|
27054
27107
|
})[];
|
27055
27108
|
showCurrentPage: boolean;
|
27109
|
+
disableSort: boolean;
|
27056
27110
|
sortAscIcon: IconValue;
|
27057
27111
|
sortDescIcon: IconValue;
|
27058
27112
|
fixedHeader: boolean;
|
27059
27113
|
fixedFooter: boolean;
|
27114
|
+
hideDefaultBody: boolean;
|
27060
27115
|
hideDefaultFooter: boolean;
|
27061
27116
|
hideDefaultHeader: boolean;
|
27062
27117
|
}>;
|
@@ -27102,10 +27157,12 @@ declare const VDataTableServer: {
|
|
27102
27157
|
value: number;
|
27103
27158
|
})[];
|
27104
27159
|
showCurrentPage: boolean;
|
27160
|
+
disableSort: boolean;
|
27105
27161
|
sortAscIcon: IconValue;
|
27106
27162
|
sortDescIcon: IconValue;
|
27107
27163
|
fixedHeader: boolean;
|
27108
27164
|
fixedFooter: boolean;
|
27165
|
+
hideDefaultBody: boolean;
|
27109
27166
|
hideDefaultFooter: boolean;
|
27110
27167
|
hideDefaultHeader: boolean;
|
27111
27168
|
} & {
|
@@ -27217,10 +27274,12 @@ declare const VDataTableServer: {
|
|
27217
27274
|
value: number;
|
27218
27275
|
})[];
|
27219
27276
|
showCurrentPage: boolean;
|
27277
|
+
disableSort: boolean;
|
27220
27278
|
sortAscIcon: IconValue;
|
27221
27279
|
sortDescIcon: IconValue;
|
27222
27280
|
fixedHeader: boolean;
|
27223
27281
|
fixedFooter: boolean;
|
27282
|
+
hideDefaultBody: boolean;
|
27224
27283
|
hideDefaultFooter: boolean;
|
27225
27284
|
hideDefaultHeader: boolean;
|
27226
27285
|
}, {}, string, vue.SlotsType<Partial<{
|
@@ -27415,6 +27474,7 @@ declare const VDataTableServer: {
|
|
27415
27474
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
27416
27475
|
color: StringConstructor;
|
27417
27476
|
sticky: BooleanConstructor;
|
27477
|
+
disableSort: BooleanConstructor;
|
27418
27478
|
multiSort: BooleanConstructor;
|
27419
27479
|
sortAscIcon: {
|
27420
27480
|
type: vue.PropType<IconValue>;
|
@@ -27516,6 +27576,7 @@ declare const VDataTableServer: {
|
|
27516
27576
|
type: vue.PropType<readonly string[]>;
|
27517
27577
|
default: () => never[];
|
27518
27578
|
};
|
27579
|
+
hideDefaultBody: BooleanConstructor;
|
27519
27580
|
hideDefaultFooter: BooleanConstructor;
|
27520
27581
|
hideDefaultHeader: BooleanConstructor;
|
27521
27582
|
width: (StringConstructor | NumberConstructor)[];
|
@@ -27620,6 +27681,7 @@ declare const VDataTableServer: {
|
|
27620
27681
|
mobileBreakpoint: vue.PropType<number | DisplayBreakpoint>;
|
27621
27682
|
color: StringConstructor;
|
27622
27683
|
sticky: BooleanConstructor;
|
27684
|
+
disableSort: BooleanConstructor;
|
27623
27685
|
multiSort: BooleanConstructor;
|
27624
27686
|
sortAscIcon: {
|
27625
27687
|
type: vue.PropType<IconValue>;
|
@@ -27721,6 +27783,7 @@ declare const VDataTableServer: {
|
|
27721
27783
|
type: vue.PropType<readonly string[]>;
|
27722
27784
|
default: () => never[];
|
27723
27785
|
};
|
27786
|
+
hideDefaultBody: BooleanConstructor;
|
27724
27787
|
hideDefaultFooter: BooleanConstructor;
|
27725
27788
|
hideDefaultHeader: BooleanConstructor;
|
27726
27789
|
width: (StringConstructor | NumberConstructor)[];
|
@@ -27792,7 +27855,7 @@ declare const VDatePicker: {
|
|
27792
27855
|
theme?: string | undefined;
|
27793
27856
|
color?: string | undefined;
|
27794
27857
|
month?: string | number | undefined;
|
27795
|
-
year?:
|
27858
|
+
year?: number | undefined;
|
27796
27859
|
border?: string | number | boolean | undefined;
|
27797
27860
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
27798
27861
|
rounded?: string | number | boolean | undefined;
|
@@ -27845,7 +27908,7 @@ declare const VDatePicker: {
|
|
27845
27908
|
theme?: string | undefined;
|
27846
27909
|
color?: string | undefined;
|
27847
27910
|
month?: string | number | undefined;
|
27848
|
-
year?:
|
27911
|
+
year?: number | undefined;
|
27849
27912
|
border?: string | number | boolean | undefined;
|
27850
27913
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
27851
27914
|
rounded?: string | number | boolean | undefined;
|
@@ -27938,7 +28001,7 @@ declare const VDatePicker: {
|
|
27938
28001
|
theme?: string | undefined;
|
27939
28002
|
color?: string | undefined;
|
27940
28003
|
month?: string | number | undefined;
|
27941
|
-
year?:
|
28004
|
+
year?: number | undefined;
|
27942
28005
|
border?: string | number | boolean | undefined;
|
27943
28006
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
27944
28007
|
rounded?: string | number | boolean | undefined;
|
@@ -28012,7 +28075,7 @@ declare const VDatePicker: {
|
|
28012
28075
|
theme?: string | undefined;
|
28013
28076
|
color?: string | undefined;
|
28014
28077
|
month?: string | number | undefined;
|
28015
|
-
year?:
|
28078
|
+
year?: number | undefined;
|
28016
28079
|
border?: string | number | boolean | undefined;
|
28017
28080
|
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
28018
28081
|
rounded?: string | number | boolean | undefined;
|
@@ -28125,12 +28188,12 @@ declare const VDatePicker: {
|
|
28125
28188
|
hideHeader: BooleanConstructor;
|
28126
28189
|
max: vue.PropType<unknown>;
|
28127
28190
|
min: vue.PropType<unknown>;
|
28191
|
+
year: NumberConstructor;
|
28128
28192
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28129
28193
|
disabled: BooleanConstructor;
|
28130
28194
|
displayValue: vue.PropType<unknown>;
|
28131
28195
|
month: (StringConstructor | NumberConstructor)[];
|
28132
28196
|
showAdjacentMonths: BooleanConstructor;
|
28133
|
-
year: (StringConstructor | NumberConstructor)[];
|
28134
28197
|
weekdays: {
|
28135
28198
|
type: {
|
28136
28199
|
(arrayLength: number): number[];
|
@@ -28234,12 +28297,12 @@ declare const VDatePicker: {
|
|
28234
28297
|
hideHeader: BooleanConstructor;
|
28235
28298
|
max: vue.PropType<unknown>;
|
28236
28299
|
min: vue.PropType<unknown>;
|
28300
|
+
year: NumberConstructor;
|
28237
28301
|
allowedDates: vue.PropType<unknown[] | ((date: unknown) => boolean)>;
|
28238
28302
|
disabled: BooleanConstructor;
|
28239
28303
|
displayValue: vue.PropType<unknown>;
|
28240
28304
|
month: (StringConstructor | NumberConstructor)[];
|
28241
28305
|
showAdjacentMonths: BooleanConstructor;
|
28242
|
-
year: (StringConstructor | NumberConstructor)[];
|
28243
28306
|
weekdays: {
|
28244
28307
|
type: {
|
28245
28308
|
(arrayLength: number): number[];
|
@@ -29016,7 +29079,10 @@ declare const VDatePickerMonths: {
|
|
29016
29079
|
new (...args: any[]): vue.CreateComponentPublicInstance<{} & {
|
29017
29080
|
height?: string | number | undefined;
|
29018
29081
|
color?: string | undefined;
|
29082
|
+
year?: number | undefined;
|
29019
29083
|
modelValue?: number | undefined;
|
29084
|
+
max?: unknown;
|
29085
|
+
min?: unknown;
|
29020
29086
|
} & {
|
29021
29087
|
$children?: {} | vue.VNodeChild | {
|
29022
29088
|
month?: ((arg: {
|
@@ -29060,7 +29126,10 @@ declare const VDatePickerMonths: {
|
|
29060
29126
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {} & {
|
29061
29127
|
height?: string | number | undefined;
|
29062
29128
|
color?: string | undefined;
|
29129
|
+
year?: number | undefined;
|
29063
29130
|
modelValue?: number | undefined;
|
29131
|
+
max?: unknown;
|
29132
|
+
min?: unknown;
|
29064
29133
|
} & {
|
29065
29134
|
$children?: {} | vue.VNodeChild | {
|
29066
29135
|
month?: ((arg: {
|
@@ -29122,7 +29191,10 @@ declare const VDatePickerMonths: {
|
|
29122
29191
|
}, {} & {
|
29123
29192
|
height?: string | number | undefined;
|
29124
29193
|
color?: string | undefined;
|
29194
|
+
year?: number | undefined;
|
29125
29195
|
modelValue?: number | undefined;
|
29196
|
+
max?: unknown;
|
29197
|
+
min?: unknown;
|
29126
29198
|
} & {
|
29127
29199
|
$children?: {} | vue.VNodeChild | {
|
29128
29200
|
month?: ((arg: {
|
@@ -29168,7 +29240,10 @@ declare const VDatePickerMonths: {
|
|
29168
29240
|
} & vue.ComponentOptionsBase<{} & {
|
29169
29241
|
height?: string | number | undefined;
|
29170
29242
|
color?: string | undefined;
|
29243
|
+
year?: number | undefined;
|
29171
29244
|
modelValue?: number | undefined;
|
29245
|
+
max?: unknown;
|
29246
|
+
min?: unknown;
|
29172
29247
|
} & {
|
29173
29248
|
$children?: {} | vue.VNodeChild | {
|
29174
29249
|
month?: ((arg: {
|
@@ -29225,11 +29300,17 @@ declare const VDatePickerMonths: {
|
|
29225
29300
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
29226
29301
|
color: StringConstructor;
|
29227
29302
|
height: (StringConstructor | NumberConstructor)[];
|
29303
|
+
min: PropType<unknown>;
|
29304
|
+
max: PropType<unknown>;
|
29228
29305
|
modelValue: NumberConstructor;
|
29306
|
+
year: NumberConstructor;
|
29229
29307
|
}, vue.ExtractPropTypes<{
|
29230
29308
|
color: StringConstructor;
|
29231
29309
|
height: (StringConstructor | NumberConstructor)[];
|
29310
|
+
min: PropType<unknown>;
|
29311
|
+
max: PropType<unknown>;
|
29232
29312
|
modelValue: NumberConstructor;
|
29313
|
+
year: NumberConstructor;
|
29233
29314
|
}>>;
|
29234
29315
|
type VDatePickerMonths = InstanceType<typeof VDatePickerMonths>;
|
29235
29316
|
|
@@ -63,7 +63,7 @@ export function internalUseDefaults() {
|
|
63
63
|
if (prop === 'class' || prop === 'style') {
|
64
64
|
return [componentDefaults.value?.[prop], propValue].filter(v => v != null);
|
65
65
|
} else if (typeof prop === 'string' && !propIsDefined(vm.vnode, prop)) {
|
66
|
-
return componentDefaults.value?.[prop]
|
66
|
+
return componentDefaults.value?.[prop] !== undefined ? componentDefaults.value?.[prop] : defaults.value?.global?.[prop] !== undefined ? defaults.value?.global?.[prop] : propValue;
|
67
67
|
}
|
68
68
|
return propValue;
|
69
69
|
}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"defaults.mjs","names":["computed","inject","provide","ref","shallowRef","unref","watchEffect","getCurrentInstance","injectSelf","mergeDeep","toKebabCase","DefaultsSymbol","Symbol","for","createDefaults","options","injectDefaults","defaults","Error","provideDefaults","injectedDefaults","providedDefaults","newDefaults","disabled","value","scoped","reset","root","properties","prev","len","Number","Infinity","i","propIsDefined","vnode","prop","props","internalUseDefaults","arguments","length","undefined","name","vm","type","__name","componentDefaults","_as","_props","Proxy","get","target","propValue","Reflect","filter","v","global","_subcomponentDefaults","subComponents","Object","entries","_ref","key","startsWith","toUpperCase","fromEntries","provideSubDefaults","injected","useDefaults"],"sources":["../../src/composables/defaults.ts"],"sourcesContent":["// Utilities\nimport { computed, inject, provide, ref, shallowRef, unref, watchEffect } from 'vue'\nimport { getCurrentInstance, injectSelf, mergeDeep, toKebabCase } from '@/util'\n\n// Types\nimport type { ComputedRef, InjectionKey, Ref, VNode } from 'vue'\nimport type { MaybeRef } from '@/util'\n\nexport type DefaultsInstance = undefined | {\n [key: string]: undefined | Record<string, unknown>\n global?: Record<string, unknown>\n}\n\nexport type DefaultsOptions = Partial<DefaultsInstance>\n\nexport const DefaultsSymbol: InjectionKey<Ref<DefaultsInstance>> = Symbol.for('vuetify:defaults')\n\nexport function createDefaults (options?: DefaultsInstance): Ref<DefaultsInstance> {\n return ref(options)\n}\n\nexport function injectDefaults () {\n const defaults = inject(DefaultsSymbol)\n\n if (!defaults) throw new Error('[Vuetify] Could not find defaults instance')\n\n return defaults\n}\n\nexport function provideDefaults (\n defaults?: MaybeRef<DefaultsInstance | undefined>,\n options?: {\n disabled?: MaybeRef<boolean | undefined>\n reset?: MaybeRef<number | string | undefined>\n root?: MaybeRef<boolean | string | undefined>\n scoped?: MaybeRef<boolean | undefined>\n }\n) {\n const injectedDefaults = injectDefaults()\n const providedDefaults = ref(defaults)\n\n const newDefaults = computed(() => {\n const disabled = unref(options?.disabled)\n\n if (disabled) return injectedDefaults.value\n\n const scoped = unref(options?.scoped)\n const reset = unref(options?.reset)\n const root = unref(options?.root)\n\n if (providedDefaults.value == null && !(scoped || reset || root)) return injectedDefaults.value\n\n let properties = mergeDeep(providedDefaults.value, { prev: injectedDefaults.value })\n\n if (scoped) return properties\n\n if (reset || root) {\n const len = Number(reset || Infinity)\n\n for (let i = 0; i <= len; i++) {\n if (!properties || !('prev' in properties)) {\n break\n }\n\n properties = properties.prev\n }\n\n if (properties && typeof root === 'string' && root in properties) {\n properties = mergeDeep(mergeDeep(properties, { prev: properties }), properties[root])\n }\n\n return properties\n }\n\n return properties.prev\n ? mergeDeep(properties.prev, properties)\n : properties\n }) as ComputedRef<DefaultsInstance>\n\n provide(DefaultsSymbol, newDefaults)\n\n return newDefaults\n}\n\nfunction propIsDefined (vnode: VNode, prop: string) {\n return typeof vnode.props?.[prop] !== 'undefined' ||\n typeof vnode.props?.[toKebabCase(prop)] !== 'undefined'\n}\n\nexport function internalUseDefaults (\n props: Record<string, any> = {},\n name?: string,\n defaults = injectDefaults()\n) {\n const vm = getCurrentInstance('useDefaults')\n\n name = name ?? vm.type.name ?? vm.type.__name\n if (!name) {\n throw new Error('[Vuetify] Could not determine component name')\n }\n\n const componentDefaults = computed(() => defaults.value?.[props._as ?? name])\n const _props = new Proxy(props, {\n get (target, prop) {\n const propValue = Reflect.get(target, prop)\n if (prop === 'class' || prop === 'style') {\n return [componentDefaults.value?.[prop], propValue].filter(v => v != null)\n } else if (typeof prop === 'string' && !propIsDefined(vm.vnode, prop)) {\n return componentDefaults.value?.[prop] ?? defaults.value?.global?.[prop] ?? propValue\n }\n return propValue\n },\n })\n\n const _subcomponentDefaults = shallowRef()\n watchEffect(() => {\n if (componentDefaults.value) {\n const subComponents = Object.entries(componentDefaults.value).filter(([key]) => key.startsWith(key[0].toUpperCase()))\n _subcomponentDefaults.value = subComponents.length ? Object.fromEntries(subComponents) : undefined\n } else {\n _subcomponentDefaults.value = undefined\n }\n })\n\n function provideSubDefaults () {\n const injected = injectSelf(DefaultsSymbol, vm)\n provide(DefaultsSymbol, computed(() => {\n return _subcomponentDefaults.value ? mergeDeep(\n injected?.value ?? {},\n _subcomponentDefaults.value\n ) : injected?.value\n }))\n }\n\n return { props: _props, provideSubDefaults }\n}\n\nexport function useDefaults<T extends Record<string, any>> (props: T, name?: string): T\nexport function useDefaults (props?: undefined, name?: string): Record<string, any>\nexport function useDefaults (\n props: Record<string, any> = {},\n name?: string,\n) {\n const { props: _props, provideSubDefaults } = internalUseDefaults(props, name)\n provideSubDefaults()\n return _props\n}\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"defaults.mjs","names":["computed","inject","provide","ref","shallowRef","unref","watchEffect","getCurrentInstance","injectSelf","mergeDeep","toKebabCase","DefaultsSymbol","Symbol","for","createDefaults","options","injectDefaults","defaults","Error","provideDefaults","injectedDefaults","providedDefaults","newDefaults","disabled","value","scoped","reset","root","properties","prev","len","Number","Infinity","i","propIsDefined","vnode","prop","props","internalUseDefaults","arguments","length","undefined","name","vm","type","__name","componentDefaults","_as","_props","Proxy","get","target","propValue","Reflect","filter","v","global","_subcomponentDefaults","subComponents","Object","entries","_ref","key","startsWith","toUpperCase","fromEntries","provideSubDefaults","injected","useDefaults"],"sources":["../../src/composables/defaults.ts"],"sourcesContent":["// Utilities\nimport { computed, inject, provide, ref, shallowRef, unref, watchEffect } from 'vue'\nimport { getCurrentInstance, injectSelf, mergeDeep, toKebabCase } from '@/util'\n\n// Types\nimport type { ComputedRef, InjectionKey, Ref, VNode } from 'vue'\nimport type { MaybeRef } from '@/util'\n\nexport type DefaultsInstance = undefined | {\n [key: string]: undefined | Record<string, unknown>\n global?: Record<string, unknown>\n}\n\nexport type DefaultsOptions = Partial<DefaultsInstance>\n\nexport const DefaultsSymbol: InjectionKey<Ref<DefaultsInstance>> = Symbol.for('vuetify:defaults')\n\nexport function createDefaults (options?: DefaultsInstance): Ref<DefaultsInstance> {\n return ref(options)\n}\n\nexport function injectDefaults () {\n const defaults = inject(DefaultsSymbol)\n\n if (!defaults) throw new Error('[Vuetify] Could not find defaults instance')\n\n return defaults\n}\n\nexport function provideDefaults (\n defaults?: MaybeRef<DefaultsInstance | undefined>,\n options?: {\n disabled?: MaybeRef<boolean | undefined>\n reset?: MaybeRef<number | string | undefined>\n root?: MaybeRef<boolean | string | undefined>\n scoped?: MaybeRef<boolean | undefined>\n }\n) {\n const injectedDefaults = injectDefaults()\n const providedDefaults = ref(defaults)\n\n const newDefaults = computed(() => {\n const disabled = unref(options?.disabled)\n\n if (disabled) return injectedDefaults.value\n\n const scoped = unref(options?.scoped)\n const reset = unref(options?.reset)\n const root = unref(options?.root)\n\n if (providedDefaults.value == null && !(scoped || reset || root)) return injectedDefaults.value\n\n let properties = mergeDeep(providedDefaults.value, { prev: injectedDefaults.value })\n\n if (scoped) return properties\n\n if (reset || root) {\n const len = Number(reset || Infinity)\n\n for (let i = 0; i <= len; i++) {\n if (!properties || !('prev' in properties)) {\n break\n }\n\n properties = properties.prev\n }\n\n if (properties && typeof root === 'string' && root in properties) {\n properties = mergeDeep(mergeDeep(properties, { prev: properties }), properties[root])\n }\n\n return properties\n }\n\n return properties.prev\n ? mergeDeep(properties.prev, properties)\n : properties\n }) as ComputedRef<DefaultsInstance>\n\n provide(DefaultsSymbol, newDefaults)\n\n return newDefaults\n}\n\nfunction propIsDefined (vnode: VNode, prop: string) {\n return typeof vnode.props?.[prop] !== 'undefined' ||\n typeof vnode.props?.[toKebabCase(prop)] !== 'undefined'\n}\n\nexport function internalUseDefaults (\n props: Record<string, any> = {},\n name?: string,\n defaults = injectDefaults()\n) {\n const vm = getCurrentInstance('useDefaults')\n\n name = name ?? vm.type.name ?? vm.type.__name\n if (!name) {\n throw new Error('[Vuetify] Could not determine component name')\n }\n\n const componentDefaults = computed(() => defaults.value?.[props._as ?? name])\n const _props = new Proxy(props, {\n get (target, prop) {\n const propValue = Reflect.get(target, prop)\n if (prop === 'class' || prop === 'style') {\n return [componentDefaults.value?.[prop], propValue].filter(v => v != null)\n } else if (typeof prop === 'string' && !propIsDefined(vm.vnode, prop)) {\n return componentDefaults.value?.[prop] !== undefined ? componentDefaults.value?.[prop]\n : defaults.value?.global?.[prop] !== undefined ? defaults.value?.global?.[prop]\n : propValue\n }\n return propValue\n },\n })\n\n const _subcomponentDefaults = shallowRef()\n watchEffect(() => {\n if (componentDefaults.value) {\n const subComponents = Object.entries(componentDefaults.value).filter(([key]) => key.startsWith(key[0].toUpperCase()))\n _subcomponentDefaults.value = subComponents.length ? Object.fromEntries(subComponents) : undefined\n } else {\n _subcomponentDefaults.value = undefined\n }\n })\n\n function provideSubDefaults () {\n const injected = injectSelf(DefaultsSymbol, vm)\n provide(DefaultsSymbol, computed(() => {\n return _subcomponentDefaults.value ? mergeDeep(\n injected?.value ?? {},\n _subcomponentDefaults.value\n ) : injected?.value\n }))\n }\n\n return { props: _props, provideSubDefaults }\n}\n\nexport function useDefaults<T extends Record<string, any>> (props: T, name?: string): T\nexport function useDefaults (props?: undefined, name?: string): Record<string, any>\nexport function useDefaults (\n props: Record<string, any> = {},\n name?: string,\n) {\n const { props: _props, provideSubDefaults } = internalUseDefaults(props, name)\n provideSubDefaults()\n return _props\n}\n"],"mappings":"AAAA;AACA,SAASA,QAAQ,EAAEC,MAAM,EAAEC,OAAO,EAAEC,GAAG,EAAEC,UAAU,EAAEC,KAAK,EAAEC,WAAW,QAAQ,KAAK;AAAA,SAC3EC,kBAAkB,EAAEC,UAAU,EAAEC,SAAS,EAAEC,WAAW,6BAE/D;AAWA,OAAO,MAAMC,cAAmD,GAAGC,MAAM,CAACC,GAAG,CAAC,kBAAkB,CAAC;AAEjG,OAAO,SAASC,cAAcA,CAAEC,OAA0B,EAAyB;EACjF,OAAOZ,GAAG,CAACY,OAAO,CAAC;AACrB;AAEA,OAAO,SAASC,cAAcA,CAAA,EAAI;EAChC,MAAMC,QAAQ,GAAGhB,MAAM,CAACU,cAAc,CAAC;EAEvC,IAAI,CAACM,QAAQ,EAAE,MAAM,IAAIC,KAAK,CAAC,4CAA4C,CAAC;EAE5E,OAAOD,QAAQ;AACjB;AAEA,OAAO,SAASE,eAAeA,CAC7BF,QAAiD,EACjDF,OAKC,EACD;EACA,MAAMK,gBAAgB,GAAGJ,cAAc,CAAC,CAAC;EACzC,MAAMK,gBAAgB,GAAGlB,GAAG,CAACc,QAAQ,CAAC;EAEtC,MAAMK,WAAW,GAAGtB,QAAQ,CAAC,MAAM;IACjC,MAAMuB,QAAQ,GAAGlB,KAAK,CAACU,OAAO,EAAEQ,QAAQ,CAAC;IAEzC,IAAIA,QAAQ,EAAE,OAAOH,gBAAgB,CAACI,KAAK;IAE3C,MAAMC,MAAM,GAAGpB,KAAK,CAACU,OAAO,EAAEU,MAAM,CAAC;IACrC,MAAMC,KAAK,GAAGrB,KAAK,CAACU,OAAO,EAAEW,KAAK,CAAC;IACnC,MAAMC,IAAI,GAAGtB,KAAK,CAACU,OAAO,EAAEY,IAAI,CAAC;IAEjC,IAAIN,gBAAgB,CAACG,KAAK,IAAI,IAAI,IAAI,EAAEC,MAAM,IAAIC,KAAK,IAAIC,IAAI,CAAC,EAAE,OAAOP,gBAAgB,CAACI,KAAK;IAE/F,IAAII,UAAU,GAAGnB,SAAS,CAACY,gBAAgB,CAACG,KAAK,EAAE;MAAEK,IAAI,EAAET,gBAAgB,CAACI;IAAM,CAAC,CAAC;IAEpF,IAAIC,MAAM,EAAE,OAAOG,UAAU;IAE7B,IAAIF,KAAK,IAAIC,IAAI,EAAE;MACjB,MAAMG,GAAG,GAAGC,MAAM,CAACL,KAAK,IAAIM,QAAQ,CAAC;MAErC,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,IAAIH,GAAG,EAAEG,CAAC,EAAE,EAAE;QAC7B,IAAI,CAACL,UAAU,IAAI,EAAE,MAAM,IAAIA,UAAU,CAAC,EAAE;UAC1C;QACF;QAEAA,UAAU,GAAGA,UAAU,CAACC,IAAI;MAC9B;MAEA,IAAID,UAAU,IAAI,OAAOD,IAAI,KAAK,QAAQ,IAAIA,IAAI,IAAIC,UAAU,EAAE;QAChEA,UAAU,GAAGnB,SAAS,CAACA,SAAS,CAACmB,UAAU,EAAE;UAAEC,IAAI,EAAED;QAAW,CAAC,CAAC,EAAEA,UAAU,CAACD,IAAI,CAAC,CAAC;MACvF;MAEA,OAAOC,UAAU;IACnB;IAEA,OAAOA,UAAU,CAACC,IAAI,GAClBpB,SAAS,CAACmB,UAAU,CAACC,IAAI,EAAED,UAAU,CAAC,GACtCA,UAAU;EAChB,CAAC,CAAkC;EAEnC1B,OAAO,CAACS,cAAc,EAAEW,WAAW,CAAC;EAEpC,OAAOA,WAAW;AACpB;AAEA,SAASY,aAAaA,CAAEC,KAAY,EAAEC,IAAY,EAAE;EAClD,OAAO,OAAOD,KAAK,CAACE,KAAK,GAAGD,IAAI,CAAC,KAAK,WAAW,IAC/C,OAAOD,KAAK,CAACE,KAAK,GAAG3B,WAAW,CAAC0B,IAAI,CAAC,CAAC,KAAK,WAAW;AAC3D;AAEA,OAAO,SAASE,mBAAmBA,CAAA,EAIjC;EAAA,IAHAD,KAA0B,GAAAE,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EAAA,IAC/BG,IAAa,GAAAH,SAAA,CAAAC,MAAA,OAAAD,SAAA,MAAAE,SAAA;EAAA,IACbxB,QAAQ,GAAAsB,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAGvB,cAAc,CAAC,CAAC;EAE3B,MAAM2B,EAAE,GAAGpC,kBAAkB,CAAC,aAAa,CAAC;EAE5CmC,IAAI,GAAGA,IAAI,IAAIC,EAAE,CAACC,IAAI,CAACF,IAAI,IAAIC,EAAE,CAACC,IAAI,CAACC,MAAM;EAC7C,IAAI,CAACH,IAAI,EAAE;IACT,MAAM,IAAIxB,KAAK,CAAC,8CAA8C,CAAC;EACjE;EAEA,MAAM4B,iBAAiB,GAAG9C,QAAQ,CAAC,MAAMiB,QAAQ,CAACO,KAAK,GAAGa,KAAK,CAACU,GAAG,IAAIL,IAAI,CAAC,CAAC;EAC7E,MAAMM,MAAM,GAAG,IAAIC,KAAK,CAACZ,KAAK,EAAE;IAC9Ba,GAAGA,CAAEC,MAAM,EAAEf,IAAI,EAAE;MACjB,MAAMgB,SAAS,GAAGC,OAAO,CAACH,GAAG,CAACC,MAAM,EAAEf,IAAI,CAAC;MAC3C,IAAIA,IAAI,KAAK,OAAO,IAAIA,IAAI,KAAK,OAAO,EAAE;QACxC,OAAO,CAACU,iBAAiB,CAACtB,KAAK,GAAGY,IAAI,CAAC,EAAEgB,SAAS,CAAC,CAACE,MAAM,CAACC,CAAC,IAAIA,CAAC,IAAI,IAAI,CAAC;MAC5E,CAAC,MAAM,IAAI,OAAOnB,IAAI,KAAK,QAAQ,IAAI,CAACF,aAAa,CAACS,EAAE,CAACR,KAAK,EAAEC,IAAI,CAAC,EAAE;QACrE,OAAOU,iBAAiB,CAACtB,KAAK,GAAGY,IAAI,CAAC,KAAKK,SAAS,GAAGK,iBAAiB,CAACtB,KAAK,GAAGY,IAAI,CAAC,GAClFnB,QAAQ,CAACO,KAAK,EAAEgC,MAAM,GAAGpB,IAAI,CAAC,KAAKK,SAAS,GAAGxB,QAAQ,CAACO,KAAK,EAAEgC,MAAM,GAAGpB,IAAI,CAAC,GAC7EgB,SAAS;MACf;MACA,OAAOA,SAAS;IAClB;EACF,CAAC,CAAC;EAEF,MAAMK,qBAAqB,GAAGrD,UAAU,CAAC,CAAC;EAC1CE,WAAW,CAAC,MAAM;IAChB,IAAIwC,iBAAiB,CAACtB,KAAK,EAAE;MAC3B,MAAMkC,aAAa,GAAGC,MAAM,CAACC,OAAO,CAACd,iBAAiB,CAACtB,KAAK,CAAC,CAAC8B,MAAM,CAACO,IAAA;QAAA,IAAC,CAACC,GAAG,CAAC,GAAAD,IAAA;QAAA,OAAKC,GAAG,CAACC,UAAU,CAACD,GAAG,CAAC,CAAC,CAAC,CAACE,WAAW,CAAC,CAAC,CAAC;MAAA,EAAC;MACrHP,qBAAqB,CAACjC,KAAK,GAAGkC,aAAa,CAAClB,MAAM,GAAGmB,MAAM,CAACM,WAAW,CAACP,aAAa,CAAC,GAAGjB,SAAS;IACpG,CAAC,MAAM;MACLgB,qBAAqB,CAACjC,KAAK,GAAGiB,SAAS;IACzC;EACF,CAAC,CAAC;EAEF,SAASyB,kBAAkBA,CAAA,EAAI;IAC7B,MAAMC,QAAQ,GAAG3D,UAAU,CAACG,cAAc,EAAEgC,EAAE,CAAC;IAC/CzC,OAAO,CAACS,cAAc,EAAEX,QAAQ,CAAC,MAAM;MACrC,OAAOyD,qBAAqB,CAACjC,KAAK,GAAGf,SAAS,CAC5C0D,QAAQ,EAAE3C,KAAK,IAAI,CAAC,CAAC,EACrBiC,qBAAqB,CAACjC,KACxB,CAAC,GAAG2C,QAAQ,EAAE3C,KAAK;IACrB,CAAC,CAAC,CAAC;EACL;EAEA,OAAO;IAAEa,KAAK,EAAEW,MAAM;IAAEkB;EAAmB,CAAC;AAC9C;AAIA,OAAO,SAASE,WAAWA,CAAA,EAGzB;EAAA,IAFA/B,KAA0B,GAAAE,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EAAA,IAC/BG,IAAa,GAAAH,SAAA,CAAAC,MAAA,OAAAD,SAAA,MAAAE,SAAA;EAEb,MAAM;IAAEJ,KAAK,EAAEW,MAAM;IAAEkB;EAAmB,CAAC,GAAG5B,mBAAmB,CAACD,KAAK,EAAEK,IAAI,CAAC;EAC9EwB,kBAAkB,CAAC,CAAC;EACpB,OAAOlB,MAAM;AACf","ignoreList":[]}
|
@@ -11,14 +11,22 @@ export const makeDimensionProps = propsFactory({
|
|
11
11
|
width: [Number, String]
|
12
12
|
}, 'dimension');
|
13
13
|
export function useDimension(props) {
|
14
|
-
const dimensionStyles = computed(() =>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
14
|
+
const dimensionStyles = computed(() => {
|
15
|
+
const styles = {};
|
16
|
+
const height = convertToUnit(props.height);
|
17
|
+
const maxHeight = convertToUnit(props.maxHeight);
|
18
|
+
const maxWidth = convertToUnit(props.maxWidth);
|
19
|
+
const minHeight = convertToUnit(props.minHeight);
|
20
|
+
const minWidth = convertToUnit(props.minWidth);
|
21
|
+
const width = convertToUnit(props.width);
|
22
|
+
if (height != null) styles.height = height;
|
23
|
+
if (maxHeight != null) styles.maxHeight = maxHeight;
|
24
|
+
if (maxWidth != null) styles.maxWidth = maxWidth;
|
25
|
+
if (minHeight != null) styles.minHeight = minHeight;
|
26
|
+
if (minWidth != null) styles.minWidth = minWidth;
|
27
|
+
if (width != null) styles.width = width;
|
28
|
+
return styles;
|
29
|
+
});
|
22
30
|
return {
|
23
31
|
dimensionStyles
|
24
32
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"dimensions.mjs","names":["computed","convertToUnit","propsFactory","makeDimensionProps","height","Number","String","maxHeight","maxWidth","minHeight","minWidth","width","useDimension","props","dimensionStyles"],"sources":["../../src/composables/dimensions.ts"],"sourcesContent":["// Utilities\nimport { computed } from 'vue'\nimport { convertToUnit, propsFactory } from '@/util'\n\n// Types\nexport interface DimensionProps {\n height?: number | string\n maxHeight?: number | string\n maxWidth?: number | string\n minHeight?: number | string\n minWidth?: number | string\n width?: number | string\n}\n\n// Composables\nexport const makeDimensionProps = propsFactory({\n height: [Number, String],\n maxHeight: [Number, String],\n maxWidth: [Number, String],\n minHeight: [Number, String],\n minWidth: [Number, String],\n width: [Number, String],\n}, 'dimension')\n\nexport function useDimension (props: DimensionProps) {\n const dimensionStyles = computed(() =>
|
1
|
+
{"version":3,"file":"dimensions.mjs","names":["computed","convertToUnit","propsFactory","makeDimensionProps","height","Number","String","maxHeight","maxWidth","minHeight","minWidth","width","useDimension","props","dimensionStyles","styles"],"sources":["../../src/composables/dimensions.ts"],"sourcesContent":["// Utilities\nimport { computed } from 'vue'\nimport { convertToUnit, propsFactory } from '@/util'\n\n// Types\nexport interface DimensionProps {\n height?: number | string\n maxHeight?: number | string\n maxWidth?: number | string\n minHeight?: number | string\n minWidth?: number | string\n width?: number | string\n}\n\n// Composables\nexport const makeDimensionProps = propsFactory({\n height: [Number, String],\n maxHeight: [Number, String],\n maxWidth: [Number, String],\n minHeight: [Number, String],\n minWidth: [Number, String],\n width: [Number, String],\n}, 'dimension')\n\nexport function useDimension (props: DimensionProps) {\n const dimensionStyles = computed(() => {\n const styles: Record<string, any> = {}\n\n const height = convertToUnit(props.height)\n const maxHeight = convertToUnit(props.maxHeight)\n const maxWidth = convertToUnit(props.maxWidth)\n const minHeight = convertToUnit(props.minHeight)\n const minWidth = convertToUnit(props.minWidth)\n const width = convertToUnit(props.width)\n\n if (height != null) styles.height = height\n if (maxHeight != null) styles.maxHeight = maxHeight\n if (maxWidth != null) styles.maxWidth = maxWidth\n if (minHeight != null) styles.minHeight = minHeight\n if (minWidth != null) styles.minWidth = minWidth\n if (width != null) styles.width = width\n\n return styles\n })\n\n return { dimensionStyles }\n}\n"],"mappings":"AAAA;AACA,SAASA,QAAQ,QAAQ,KAAK;AAAA,SACrBC,aAAa,EAAEC,YAAY,6BAEpC;AAUA;AACA,OAAO,MAAMC,kBAAkB,GAAGD,YAAY,CAAC;EAC7CE,MAAM,EAAE,CAACC,MAAM,EAAEC,MAAM,CAAC;EACxBC,SAAS,EAAE,CAACF,MAAM,EAAEC,MAAM,CAAC;EAC3BE,QAAQ,EAAE,CAACH,MAAM,EAAEC,MAAM,CAAC;EAC1BG,SAAS,EAAE,CAACJ,MAAM,EAAEC,MAAM,CAAC;EAC3BI,QAAQ,EAAE,CAACL,MAAM,EAAEC,MAAM,CAAC;EAC1BK,KAAK,EAAE,CAACN,MAAM,EAAEC,MAAM;AACxB,CAAC,EAAE,WAAW,CAAC;AAEf,OAAO,SAASM,YAAYA,CAAEC,KAAqB,EAAE;EACnD,MAAMC,eAAe,GAAGd,QAAQ,CAAC,MAAM;IACrC,MAAMe,MAA2B,GAAG,CAAC,CAAC;IAEtC,MAAMX,MAAM,GAAGH,aAAa,CAACY,KAAK,CAACT,MAAM,CAAC;IAC1C,MAAMG,SAAS,GAAGN,aAAa,CAACY,KAAK,CAACN,SAAS,CAAC;IAChD,MAAMC,QAAQ,GAAGP,aAAa,CAACY,KAAK,CAACL,QAAQ,CAAC;IAC9C,MAAMC,SAAS,GAAGR,aAAa,CAACY,KAAK,CAACJ,SAAS,CAAC;IAChD,MAAMC,QAAQ,GAAGT,aAAa,CAACY,KAAK,CAACH,QAAQ,CAAC;IAC9C,MAAMC,KAAK,GAAGV,aAAa,CAACY,KAAK,CAACF,KAAK,CAAC;IAExC,IAAIP,MAAM,IAAI,IAAI,EAAEW,MAAM,CAACX,MAAM,GAAGA,MAAM;IAC1C,IAAIG,SAAS,IAAI,IAAI,EAAEQ,MAAM,CAACR,SAAS,GAAGA,SAAS;IACnD,IAAIC,QAAQ,IAAI,IAAI,EAAEO,MAAM,CAACP,QAAQ,GAAGA,QAAQ;IAChD,IAAIC,SAAS,IAAI,IAAI,EAAEM,MAAM,CAACN,SAAS,GAAGA,SAAS;IACnD,IAAIC,QAAQ,IAAI,IAAI,EAAEK,MAAM,CAACL,QAAQ,GAAGA,QAAQ;IAChD,IAAIC,KAAK,IAAI,IAAI,EAAEI,MAAM,CAACJ,KAAK,GAAGA,KAAK;IAEvC,OAAOI,MAAM;EACf,CAAC,CAAC;EAEF,OAAO;IAAED;EAAgB,CAAC;AAC5B","ignoreList":[]}
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.6.
|
19
|
+
export const version = "3.6.7-master.2024-05-22";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED