vuetify 3.3.6 → 3.3.7
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/dist/json/attributes.json +14 -10
- package/dist/json/importMap.json +76 -76
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +26 -24
- package/dist/vuetify-labs.css +127 -111
- package/dist/vuetify-labs.d.ts +178 -76
- package/dist/vuetify-labs.esm.js +486 -337
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +485 -336
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +36 -20
- package/dist/vuetify.d.ts +157 -93
- package/dist/vuetify.esm.js +469 -326
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +468 -325
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +688 -669
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +48 -35
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBtn/VBtn.mjs +1 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VCheckbox/index.d.mts +28 -16
- package/lib/components/VCombobox/VCombobox.mjs +48 -35
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.css +17 -6
- package/lib/components/VField/VField.sass +17 -6
- package/lib/components/VField/_variables.scss +2 -2
- package/lib/components/VIcon/VIcon.css +1 -0
- package/lib/components/VIcon/VIcon.sass +1 -0
- package/lib/components/VImg/VImg.css +4 -2
- package/lib/components/VImg/VImg.mjs +4 -2
- package/lib/components/VImg/VImg.mjs.map +1 -1
- package/lib/components/VImg/VImg.sass +3 -4
- package/lib/components/VOverlay/VOverlay.css +2 -0
- package/lib/components/VOverlay/VOverlay.sass +3 -1
- package/lib/components/VOverlay/scrollStrategies.mjs +3 -1
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +14 -8
- package/lib/components/VRadioGroup/index.d.mts +14 -8
- package/lib/components/VResponsive/VResponsive.css +6 -11
- package/lib/components/VResponsive/VResponsive.sass +5 -10
- package/lib/components/VSelect/VSelect.mjs +43 -31
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/useScrolling.mjs +69 -0
- package/lib/components/VSelect/useScrolling.mjs.map +1 -0
- package/lib/components/VSelectionControl/VSelectionControl.mjs +2 -2
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +14 -8
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +4 -1
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
- package/lib/components/VSelectionControlGroup/index.d.mts +14 -8
- package/lib/components/VSwitch/index.d.mts +14 -8
- package/lib/components/VTextField/VTextField.css +5 -0
- package/lib/components/VTextField/VTextField.mjs +6 -2
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextField/VTextField.sass +5 -0
- package/lib/components/VTextField/_variables.scss +1 -0
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs +50 -24
- package/lib/components/VVirtualScroll/VVirtualScroll.mjs.map +1 -1
- package/lib/components/VVirtualScroll/VVirtualScrollItem.mjs +13 -23
- package/lib/components/VVirtualScroll/VVirtualScrollItem.mjs.map +1 -1
- package/lib/components/VVirtualScroll/index.d.mts +37 -15
- package/lib/components/index.d.mts +134 -70
- package/lib/composables/filter.mjs +9 -7
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/resizeObserver.mjs +6 -1
- package/lib/composables/resizeObserver.mjs.map +1 -1
- package/lib/composables/virtual.mjs +17 -17
- package/lib/composables/virtual.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +23 -23
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +12 -10
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/headers.mjs +6 -2
- package/lib/labs/VDataTable/composables/headers.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.mts +44 -6
- package/lib/labs/components.d.mts +44 -6
- package/lib/util/getScrollParent.mjs +7 -1
- package/lib/util/getScrollParent.mjs.map +1 -1
- package/package.json +2 -2
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -13996,7 +13996,7 @@ declare const VSelectionControlGroup: {
|
|
|
13996
13996
|
inline?: boolean | undefined;
|
|
13997
13997
|
error?: boolean | undefined;
|
|
13998
13998
|
style?: vue.StyleValue | undefined;
|
|
13999
|
-
disabled?: boolean | undefined;
|
|
13999
|
+
disabled?: boolean | null | undefined;
|
|
14000
14000
|
multiple?: boolean | null | undefined;
|
|
14001
14001
|
readonly?: boolean | undefined;
|
|
14002
14002
|
density?: Density | undefined;
|
|
@@ -14082,7 +14082,7 @@ declare const VSelectionControlGroup: {
|
|
|
14082
14082
|
inline: boolean;
|
|
14083
14083
|
error: boolean;
|
|
14084
14084
|
style: vue.StyleValue;
|
|
14085
|
-
disabled: boolean;
|
|
14085
|
+
disabled: boolean | null;
|
|
14086
14086
|
multiple: boolean | null;
|
|
14087
14087
|
readonly: boolean;
|
|
14088
14088
|
density: Density;
|
|
@@ -14116,7 +14116,7 @@ declare const VSelectionControlGroup: {
|
|
|
14116
14116
|
inline: boolean;
|
|
14117
14117
|
error: boolean;
|
|
14118
14118
|
style: vue.StyleValue;
|
|
14119
|
-
disabled: boolean;
|
|
14119
|
+
disabled: boolean | null;
|
|
14120
14120
|
multiple: boolean | null;
|
|
14121
14121
|
readonly: boolean;
|
|
14122
14122
|
density: Density;
|
|
@@ -14151,7 +14151,7 @@ declare const VSelectionControlGroup: {
|
|
|
14151
14151
|
inline: boolean;
|
|
14152
14152
|
error: boolean;
|
|
14153
14153
|
style: vue.StyleValue;
|
|
14154
|
-
disabled: boolean;
|
|
14154
|
+
disabled: boolean | null;
|
|
14155
14155
|
multiple: boolean | null;
|
|
14156
14156
|
readonly: boolean;
|
|
14157
14157
|
density: Density;
|
|
@@ -14187,7 +14187,7 @@ declare const VSelectionControlGroup: {
|
|
|
14187
14187
|
inline: boolean;
|
|
14188
14188
|
error: boolean;
|
|
14189
14189
|
style: vue.StyleValue;
|
|
14190
|
-
disabled: boolean;
|
|
14190
|
+
disabled: boolean | null;
|
|
14191
14191
|
multiple: boolean | null;
|
|
14192
14192
|
readonly: boolean;
|
|
14193
14193
|
density: Density;
|
|
@@ -14221,7 +14221,7 @@ declare const VSelectionControlGroup: {
|
|
|
14221
14221
|
inline: boolean;
|
|
14222
14222
|
error: boolean;
|
|
14223
14223
|
style: vue.StyleValue;
|
|
14224
|
-
disabled: boolean;
|
|
14224
|
+
disabled: boolean | null;
|
|
14225
14225
|
multiple: boolean | null;
|
|
14226
14226
|
readonly: boolean;
|
|
14227
14227
|
density: Density;
|
|
@@ -14245,7 +14245,10 @@ declare const VSelectionControlGroup: {
|
|
|
14245
14245
|
default: null;
|
|
14246
14246
|
};
|
|
14247
14247
|
color: StringConstructor;
|
|
14248
|
-
disabled:
|
|
14248
|
+
disabled: {
|
|
14249
|
+
type: PropType<boolean | null>;
|
|
14250
|
+
default: null;
|
|
14251
|
+
};
|
|
14249
14252
|
defaultsTarget: {
|
|
14250
14253
|
type: PropType<string>;
|
|
14251
14254
|
default: string;
|
|
@@ -14284,7 +14287,10 @@ declare const VSelectionControlGroup: {
|
|
|
14284
14287
|
default: null;
|
|
14285
14288
|
};
|
|
14286
14289
|
color: StringConstructor;
|
|
14287
|
-
disabled:
|
|
14290
|
+
disabled: {
|
|
14291
|
+
type: PropType<boolean | null>;
|
|
14292
|
+
default: null;
|
|
14293
|
+
};
|
|
14288
14294
|
defaultsTarget: {
|
|
14289
14295
|
type: PropType<string>;
|
|
14290
14296
|
default: string;
|
|
@@ -14339,7 +14345,7 @@ declare const VSelectionControl: {
|
|
|
14339
14345
|
inline?: boolean | undefined;
|
|
14340
14346
|
error?: boolean | undefined;
|
|
14341
14347
|
style?: vue.StyleValue | undefined;
|
|
14342
|
-
disabled?: boolean | undefined;
|
|
14348
|
+
disabled?: boolean | null | undefined;
|
|
14343
14349
|
multiple?: boolean | null | undefined;
|
|
14344
14350
|
readonly?: boolean | undefined;
|
|
14345
14351
|
density?: Density | undefined;
|
|
@@ -14430,7 +14436,7 @@ declare const VSelectionControl: {
|
|
|
14430
14436
|
inline: boolean;
|
|
14431
14437
|
error: boolean;
|
|
14432
14438
|
style: vue.StyleValue;
|
|
14433
|
-
disabled: boolean;
|
|
14439
|
+
disabled: boolean | null;
|
|
14434
14440
|
multiple: boolean | null;
|
|
14435
14441
|
readonly: boolean;
|
|
14436
14442
|
density: Density;
|
|
@@ -14461,7 +14467,7 @@ declare const VSelectionControl: {
|
|
|
14461
14467
|
inline: boolean;
|
|
14462
14468
|
error: boolean;
|
|
14463
14469
|
style: vue.StyleValue;
|
|
14464
|
-
disabled: boolean;
|
|
14470
|
+
disabled: boolean | null;
|
|
14465
14471
|
multiple: boolean | null;
|
|
14466
14472
|
readonly: boolean;
|
|
14467
14473
|
density: Density;
|
|
@@ -14504,7 +14510,7 @@ declare const VSelectionControl: {
|
|
|
14504
14510
|
inline: boolean;
|
|
14505
14511
|
error: boolean;
|
|
14506
14512
|
style: vue.StyleValue;
|
|
14507
|
-
disabled: boolean;
|
|
14513
|
+
disabled: boolean | null;
|
|
14508
14514
|
multiple: boolean | null;
|
|
14509
14515
|
readonly: boolean;
|
|
14510
14516
|
density: Density;
|
|
@@ -14537,7 +14543,7 @@ declare const VSelectionControl: {
|
|
|
14537
14543
|
inline: boolean;
|
|
14538
14544
|
error: boolean;
|
|
14539
14545
|
style: vue.StyleValue;
|
|
14540
|
-
disabled: boolean;
|
|
14546
|
+
disabled: boolean | null;
|
|
14541
14547
|
multiple: boolean | null;
|
|
14542
14548
|
readonly: boolean;
|
|
14543
14549
|
density: Density;
|
|
@@ -14568,7 +14574,7 @@ declare const VSelectionControl: {
|
|
|
14568
14574
|
inline: boolean;
|
|
14569
14575
|
error: boolean;
|
|
14570
14576
|
style: vue.StyleValue;
|
|
14571
|
-
disabled: boolean;
|
|
14577
|
+
disabled: boolean | null;
|
|
14572
14578
|
multiple: boolean | null;
|
|
14573
14579
|
readonly: boolean;
|
|
14574
14580
|
density: Density;
|
|
@@ -14606,7 +14612,10 @@ declare const VSelectionControl: {
|
|
|
14606
14612
|
default: null;
|
|
14607
14613
|
};
|
|
14608
14614
|
color: StringConstructor;
|
|
14609
|
-
disabled:
|
|
14615
|
+
disabled: {
|
|
14616
|
+
type: vue.PropType<boolean | null>;
|
|
14617
|
+
default: null;
|
|
14618
|
+
};
|
|
14610
14619
|
defaultsTarget: StringConstructor;
|
|
14611
14620
|
error: BooleanConstructor;
|
|
14612
14621
|
id: StringConstructor;
|
|
@@ -14646,7 +14655,10 @@ declare const VSelectionControl: {
|
|
|
14646
14655
|
default: null;
|
|
14647
14656
|
};
|
|
14648
14657
|
color: StringConstructor;
|
|
14649
|
-
disabled:
|
|
14658
|
+
disabled: {
|
|
14659
|
+
type: vue.PropType<boolean | null>;
|
|
14660
|
+
default: null;
|
|
14661
|
+
};
|
|
14650
14662
|
defaultsTarget: StringConstructor;
|
|
14651
14663
|
error: BooleanConstructor;
|
|
14652
14664
|
id: StringConstructor;
|
|
@@ -14684,7 +14696,7 @@ declare const VCheckbox: {
|
|
|
14684
14696
|
error?: boolean | undefined;
|
|
14685
14697
|
direction?: "horizontal" | "vertical" | undefined;
|
|
14686
14698
|
style?: vue.StyleValue | undefined;
|
|
14687
|
-
disabled?: boolean | undefined;
|
|
14699
|
+
disabled?: boolean | null | undefined;
|
|
14688
14700
|
multiple?: boolean | null | undefined;
|
|
14689
14701
|
readonly?: boolean | undefined;
|
|
14690
14702
|
indeterminate?: boolean | undefined;
|
|
@@ -14840,7 +14852,7 @@ declare const VCheckbox: {
|
|
|
14840
14852
|
error: boolean;
|
|
14841
14853
|
direction: "horizontal" | "vertical";
|
|
14842
14854
|
style: vue.StyleValue;
|
|
14843
|
-
disabled: boolean;
|
|
14855
|
+
disabled: boolean | null;
|
|
14844
14856
|
multiple: boolean | null;
|
|
14845
14857
|
readonly: boolean;
|
|
14846
14858
|
indeterminate: boolean;
|
|
@@ -14925,7 +14937,7 @@ declare const VCheckbox: {
|
|
|
14925
14937
|
error: boolean;
|
|
14926
14938
|
direction: "horizontal" | "vertical";
|
|
14927
14939
|
style: vue.StyleValue;
|
|
14928
|
-
disabled: boolean;
|
|
14940
|
+
disabled: boolean | null;
|
|
14929
14941
|
multiple: boolean | null;
|
|
14930
14942
|
readonly: boolean;
|
|
14931
14943
|
indeterminate: boolean;
|
|
@@ -14991,7 +15003,7 @@ declare const VCheckbox: {
|
|
|
14991
15003
|
error: boolean;
|
|
14992
15004
|
direction: "horizontal" | "vertical";
|
|
14993
15005
|
style: vue.StyleValue;
|
|
14994
|
-
disabled: boolean;
|
|
15006
|
+
disabled: boolean | null;
|
|
14995
15007
|
multiple: boolean | null;
|
|
14996
15008
|
readonly: boolean;
|
|
14997
15009
|
indeterminate: boolean;
|
|
@@ -15077,7 +15089,7 @@ declare const VCheckbox: {
|
|
|
15077
15089
|
error: boolean;
|
|
15078
15090
|
direction: "horizontal" | "vertical";
|
|
15079
15091
|
style: vue.StyleValue;
|
|
15080
|
-
disabled: boolean;
|
|
15092
|
+
disabled: boolean | null;
|
|
15081
15093
|
multiple: boolean | null;
|
|
15082
15094
|
readonly: boolean;
|
|
15083
15095
|
indeterminate: boolean;
|
|
@@ -15162,7 +15174,7 @@ declare const VCheckbox: {
|
|
|
15162
15174
|
error: boolean;
|
|
15163
15175
|
direction: "horizontal" | "vertical";
|
|
15164
15176
|
style: vue.StyleValue;
|
|
15165
|
-
disabled: boolean;
|
|
15177
|
+
disabled: boolean | null;
|
|
15166
15178
|
multiple: boolean | null;
|
|
15167
15179
|
readonly: boolean;
|
|
15168
15180
|
indeterminate: boolean;
|
|
@@ -15216,7 +15228,10 @@ declare const VCheckbox: {
|
|
|
15216
15228
|
type: vue.PropType<vue.StyleValue>;
|
|
15217
15229
|
default: null;
|
|
15218
15230
|
};
|
|
15219
|
-
disabled:
|
|
15231
|
+
disabled: {
|
|
15232
|
+
type: vue.PropType<boolean | null>;
|
|
15233
|
+
default: null;
|
|
15234
|
+
};
|
|
15220
15235
|
multiple: {
|
|
15221
15236
|
type: vue.PropType<boolean | null>;
|
|
15222
15237
|
default: null;
|
|
@@ -15302,7 +15317,10 @@ declare const VCheckbox: {
|
|
|
15302
15317
|
type: vue.PropType<vue.StyleValue>;
|
|
15303
15318
|
default: null;
|
|
15304
15319
|
};
|
|
15305
|
-
disabled:
|
|
15320
|
+
disabled: {
|
|
15321
|
+
type: vue.PropType<boolean | null>;
|
|
15322
|
+
default: null;
|
|
15323
|
+
};
|
|
15306
15324
|
multiple: {
|
|
15307
15325
|
type: vue.PropType<boolean | null>;
|
|
15308
15326
|
default: null;
|
|
@@ -15387,7 +15405,7 @@ declare const VCheckboxBtn: {
|
|
|
15387
15405
|
inline?: boolean | undefined;
|
|
15388
15406
|
error?: boolean | undefined;
|
|
15389
15407
|
style?: vue.StyleValue | undefined;
|
|
15390
|
-
disabled?: boolean | undefined;
|
|
15408
|
+
disabled?: boolean | null | undefined;
|
|
15391
15409
|
multiple?: boolean | null | undefined;
|
|
15392
15410
|
readonly?: boolean | undefined;
|
|
15393
15411
|
indeterminate?: boolean | undefined;
|
|
@@ -15504,7 +15522,7 @@ declare const VCheckboxBtn: {
|
|
|
15504
15522
|
inline: boolean;
|
|
15505
15523
|
error: boolean;
|
|
15506
15524
|
style: vue.StyleValue;
|
|
15507
|
-
disabled: boolean;
|
|
15525
|
+
disabled: boolean | null;
|
|
15508
15526
|
multiple: boolean | null;
|
|
15509
15527
|
readonly: boolean;
|
|
15510
15528
|
indeterminate: boolean;
|
|
@@ -15561,7 +15579,7 @@ declare const VCheckboxBtn: {
|
|
|
15561
15579
|
inline: boolean;
|
|
15562
15580
|
error: boolean;
|
|
15563
15581
|
style: vue.StyleValue;
|
|
15564
|
-
disabled: boolean;
|
|
15582
|
+
disabled: boolean | null;
|
|
15565
15583
|
multiple: boolean | null;
|
|
15566
15584
|
readonly: boolean;
|
|
15567
15585
|
indeterminate: boolean;
|
|
@@ -15608,7 +15626,7 @@ declare const VCheckboxBtn: {
|
|
|
15608
15626
|
inline: boolean;
|
|
15609
15627
|
error: boolean;
|
|
15610
15628
|
style: vue.StyleValue;
|
|
15611
|
-
disabled: boolean;
|
|
15629
|
+
disabled: boolean | null;
|
|
15612
15630
|
multiple: boolean | null;
|
|
15613
15631
|
readonly: boolean;
|
|
15614
15632
|
indeterminate: boolean;
|
|
@@ -15666,7 +15684,7 @@ declare const VCheckboxBtn: {
|
|
|
15666
15684
|
inline: boolean;
|
|
15667
15685
|
error: boolean;
|
|
15668
15686
|
style: vue.StyleValue;
|
|
15669
|
-
disabled: boolean;
|
|
15687
|
+
disabled: boolean | null;
|
|
15670
15688
|
multiple: boolean | null;
|
|
15671
15689
|
readonly: boolean;
|
|
15672
15690
|
indeterminate: boolean;
|
|
@@ -15723,7 +15741,7 @@ declare const VCheckboxBtn: {
|
|
|
15723
15741
|
inline: boolean;
|
|
15724
15742
|
error: boolean;
|
|
15725
15743
|
style: vue.StyleValue;
|
|
15726
|
-
disabled: boolean;
|
|
15744
|
+
disabled: boolean | null;
|
|
15727
15745
|
multiple: boolean | null;
|
|
15728
15746
|
readonly: boolean;
|
|
15729
15747
|
indeterminate: boolean;
|
|
@@ -15759,7 +15777,10 @@ declare const VCheckboxBtn: {
|
|
|
15759
15777
|
default: null;
|
|
15760
15778
|
};
|
|
15761
15779
|
color: StringConstructor;
|
|
15762
|
-
disabled:
|
|
15780
|
+
disabled: {
|
|
15781
|
+
type: vue.PropType<boolean | null>;
|
|
15782
|
+
default: null;
|
|
15783
|
+
};
|
|
15763
15784
|
defaultsTarget: StringConstructor;
|
|
15764
15785
|
error: BooleanConstructor;
|
|
15765
15786
|
id: StringConstructor;
|
|
@@ -15810,7 +15831,10 @@ declare const VCheckboxBtn: {
|
|
|
15810
15831
|
default: null;
|
|
15811
15832
|
};
|
|
15812
15833
|
color: StringConstructor;
|
|
15813
|
-
disabled:
|
|
15834
|
+
disabled: {
|
|
15835
|
+
type: vue.PropType<boolean | null>;
|
|
15836
|
+
default: null;
|
|
15837
|
+
};
|
|
15814
15838
|
defaultsTarget: StringConstructor;
|
|
15815
15839
|
error: BooleanConstructor;
|
|
15816
15840
|
id: StringConstructor;
|
|
@@ -37567,7 +37591,7 @@ declare const VRadio: {
|
|
|
37567
37591
|
inline?: boolean | undefined;
|
|
37568
37592
|
error?: boolean | undefined;
|
|
37569
37593
|
style?: vue.StyleValue | undefined;
|
|
37570
|
-
disabled?: boolean | undefined;
|
|
37594
|
+
disabled?: boolean | null | undefined;
|
|
37571
37595
|
multiple?: boolean | null | undefined;
|
|
37572
37596
|
readonly?: boolean | undefined;
|
|
37573
37597
|
density?: Density | undefined;
|
|
@@ -37680,7 +37704,7 @@ declare const VRadio: {
|
|
|
37680
37704
|
inline: boolean;
|
|
37681
37705
|
error: boolean;
|
|
37682
37706
|
style: vue.StyleValue;
|
|
37683
|
-
disabled: boolean;
|
|
37707
|
+
disabled: boolean | null;
|
|
37684
37708
|
multiple: boolean | null;
|
|
37685
37709
|
readonly: boolean;
|
|
37686
37710
|
density: Density;
|
|
@@ -37729,7 +37753,7 @@ declare const VRadio: {
|
|
|
37729
37753
|
inline: boolean;
|
|
37730
37754
|
error: boolean;
|
|
37731
37755
|
style: vue.StyleValue;
|
|
37732
|
-
disabled: boolean;
|
|
37756
|
+
disabled: boolean | null;
|
|
37733
37757
|
multiple: boolean | null;
|
|
37734
37758
|
readonly: boolean;
|
|
37735
37759
|
density: Density;
|
|
@@ -37774,7 +37798,7 @@ declare const VRadio: {
|
|
|
37774
37798
|
inline: boolean;
|
|
37775
37799
|
error: boolean;
|
|
37776
37800
|
style: vue.StyleValue;
|
|
37777
|
-
disabled: boolean;
|
|
37801
|
+
disabled: boolean | null;
|
|
37778
37802
|
multiple: boolean | null;
|
|
37779
37803
|
readonly: boolean;
|
|
37780
37804
|
density: Density;
|
|
@@ -37827,7 +37851,7 @@ declare const VRadio: {
|
|
|
37827
37851
|
inline: boolean;
|
|
37828
37852
|
error: boolean;
|
|
37829
37853
|
style: vue.StyleValue;
|
|
37830
|
-
disabled: boolean;
|
|
37854
|
+
disabled: boolean | null;
|
|
37831
37855
|
multiple: boolean | null;
|
|
37832
37856
|
readonly: boolean;
|
|
37833
37857
|
density: Density;
|
|
@@ -37876,7 +37900,7 @@ declare const VRadio: {
|
|
|
37876
37900
|
inline: boolean;
|
|
37877
37901
|
error: boolean;
|
|
37878
37902
|
style: vue.StyleValue;
|
|
37879
|
-
disabled: boolean;
|
|
37903
|
+
disabled: boolean | null;
|
|
37880
37904
|
multiple: boolean | null;
|
|
37881
37905
|
readonly: boolean;
|
|
37882
37906
|
density: Density;
|
|
@@ -37910,7 +37934,10 @@ declare const VRadio: {
|
|
|
37910
37934
|
default: null;
|
|
37911
37935
|
};
|
|
37912
37936
|
color: StringConstructor;
|
|
37913
|
-
disabled:
|
|
37937
|
+
disabled: {
|
|
37938
|
+
type: vue.PropType<boolean | null>;
|
|
37939
|
+
default: null;
|
|
37940
|
+
};
|
|
37914
37941
|
defaultsTarget: StringConstructor;
|
|
37915
37942
|
error: BooleanConstructor;
|
|
37916
37943
|
id: StringConstructor;
|
|
@@ -37956,7 +37983,10 @@ declare const VRadio: {
|
|
|
37956
37983
|
default: null;
|
|
37957
37984
|
};
|
|
37958
37985
|
color: StringConstructor;
|
|
37959
|
-
disabled:
|
|
37986
|
+
disabled: {
|
|
37987
|
+
type: vue.PropType<boolean | null>;
|
|
37988
|
+
default: null;
|
|
37989
|
+
};
|
|
37960
37990
|
defaultsTarget: StringConstructor;
|
|
37961
37991
|
error: BooleanConstructor;
|
|
37962
37992
|
id: StringConstructor;
|
|
@@ -38003,7 +38033,7 @@ declare const VRadioGroup: {
|
|
|
38003
38033
|
height?: string | number | undefined;
|
|
38004
38034
|
direction?: "horizontal" | "vertical" | undefined;
|
|
38005
38035
|
style?: vue.StyleValue | undefined;
|
|
38006
|
-
disabled?: boolean | undefined;
|
|
38036
|
+
disabled?: boolean | null | undefined;
|
|
38007
38037
|
readonly?: boolean | undefined;
|
|
38008
38038
|
messages?: string | readonly string[] | undefined;
|
|
38009
38039
|
density?: Density | undefined;
|
|
@@ -38155,7 +38185,7 @@ declare const VRadioGroup: {
|
|
|
38155
38185
|
height: string | number;
|
|
38156
38186
|
direction: "horizontal" | "vertical";
|
|
38157
38187
|
style: vue.StyleValue;
|
|
38158
|
-
disabled: boolean;
|
|
38188
|
+
disabled: boolean | null;
|
|
38159
38189
|
readonly: boolean;
|
|
38160
38190
|
messages: string | readonly string[];
|
|
38161
38191
|
density: Density;
|
|
@@ -38234,7 +38264,7 @@ declare const VRadioGroup: {
|
|
|
38234
38264
|
height: string | number;
|
|
38235
38265
|
direction: "horizontal" | "vertical";
|
|
38236
38266
|
style: vue.StyleValue;
|
|
38237
|
-
disabled: boolean;
|
|
38267
|
+
disabled: boolean | null;
|
|
38238
38268
|
readonly: boolean;
|
|
38239
38269
|
messages: string | readonly string[];
|
|
38240
38270
|
density: Density;
|
|
@@ -38300,7 +38330,7 @@ declare const VRadioGroup: {
|
|
|
38300
38330
|
height: string | number;
|
|
38301
38331
|
direction: "horizontal" | "vertical";
|
|
38302
38332
|
style: vue.StyleValue;
|
|
38303
|
-
disabled: boolean;
|
|
38333
|
+
disabled: boolean | null;
|
|
38304
38334
|
readonly: boolean;
|
|
38305
38335
|
messages: string | readonly string[];
|
|
38306
38336
|
density: Density;
|
|
@@ -38381,7 +38411,7 @@ declare const VRadioGroup: {
|
|
|
38381
38411
|
height: string | number;
|
|
38382
38412
|
direction: "horizontal" | "vertical";
|
|
38383
38413
|
style: vue.StyleValue;
|
|
38384
|
-
disabled: boolean;
|
|
38414
|
+
disabled: boolean | null;
|
|
38385
38415
|
readonly: boolean;
|
|
38386
38416
|
messages: string | readonly string[];
|
|
38387
38417
|
density: Density;
|
|
@@ -38460,7 +38490,7 @@ declare const VRadioGroup: {
|
|
|
38460
38490
|
height: string | number;
|
|
38461
38491
|
direction: "horizontal" | "vertical";
|
|
38462
38492
|
style: vue.StyleValue;
|
|
38463
|
-
disabled: boolean;
|
|
38493
|
+
disabled: boolean | null;
|
|
38464
38494
|
readonly: boolean;
|
|
38465
38495
|
messages: string | readonly string[];
|
|
38466
38496
|
density: Density;
|
|
@@ -38521,7 +38551,10 @@ declare const VRadioGroup: {
|
|
|
38521
38551
|
type: vue.PropType<vue.StyleValue>;
|
|
38522
38552
|
default: null;
|
|
38523
38553
|
};
|
|
38524
|
-
disabled:
|
|
38554
|
+
disabled: {
|
|
38555
|
+
type: vue.PropType<boolean | null>;
|
|
38556
|
+
default: null;
|
|
38557
|
+
};
|
|
38525
38558
|
readonly: BooleanConstructor;
|
|
38526
38559
|
class: vue.PropType<any>;
|
|
38527
38560
|
theme: StringConstructor;
|
|
@@ -38603,7 +38636,10 @@ declare const VRadioGroup: {
|
|
|
38603
38636
|
type: vue.PropType<vue.StyleValue>;
|
|
38604
38637
|
default: null;
|
|
38605
38638
|
};
|
|
38606
|
-
disabled:
|
|
38639
|
+
disabled: {
|
|
38640
|
+
type: vue.PropType<boolean | null>;
|
|
38641
|
+
default: null;
|
|
38642
|
+
};
|
|
38607
38643
|
readonly: BooleanConstructor;
|
|
38608
38644
|
class: vue.PropType<any>;
|
|
38609
38645
|
theme: StringConstructor;
|
|
@@ -45333,7 +45369,7 @@ declare const VSwitch: {
|
|
|
45333
45369
|
inset?: boolean | undefined;
|
|
45334
45370
|
loading?: string | boolean | undefined;
|
|
45335
45371
|
style?: vue.StyleValue | undefined;
|
|
45336
|
-
disabled?: boolean | undefined;
|
|
45372
|
+
disabled?: boolean | null | undefined;
|
|
45337
45373
|
multiple?: boolean | null | undefined;
|
|
45338
45374
|
readonly?: boolean | undefined;
|
|
45339
45375
|
indeterminate?: boolean | undefined;
|
|
@@ -45499,7 +45535,7 @@ declare const VSwitch: {
|
|
|
45499
45535
|
inset: boolean;
|
|
45500
45536
|
loading: string | boolean;
|
|
45501
45537
|
style: vue.StyleValue;
|
|
45502
|
-
disabled: boolean;
|
|
45538
|
+
disabled: boolean | null;
|
|
45503
45539
|
multiple: boolean | null;
|
|
45504
45540
|
readonly: boolean;
|
|
45505
45541
|
indeterminate: boolean;
|
|
@@ -45592,7 +45628,7 @@ declare const VSwitch: {
|
|
|
45592
45628
|
inset: boolean;
|
|
45593
45629
|
loading: string | boolean;
|
|
45594
45630
|
style: vue.StyleValue;
|
|
45595
|
-
disabled: boolean;
|
|
45631
|
+
disabled: boolean | null;
|
|
45596
45632
|
multiple: boolean | null;
|
|
45597
45633
|
readonly: boolean;
|
|
45598
45634
|
indeterminate: boolean;
|
|
@@ -45662,7 +45698,7 @@ declare const VSwitch: {
|
|
|
45662
45698
|
inset: boolean;
|
|
45663
45699
|
loading: string | boolean;
|
|
45664
45700
|
style: vue.StyleValue;
|
|
45665
|
-
disabled: boolean;
|
|
45701
|
+
disabled: boolean | null;
|
|
45666
45702
|
multiple: boolean | null;
|
|
45667
45703
|
readonly: boolean;
|
|
45668
45704
|
indeterminate: boolean;
|
|
@@ -45755,7 +45791,7 @@ declare const VSwitch: {
|
|
|
45755
45791
|
inset: boolean;
|
|
45756
45792
|
loading: string | boolean;
|
|
45757
45793
|
style: vue.StyleValue;
|
|
45758
|
-
disabled: boolean;
|
|
45794
|
+
disabled: boolean | null;
|
|
45759
45795
|
multiple: boolean | null;
|
|
45760
45796
|
readonly: boolean;
|
|
45761
45797
|
indeterminate: boolean;
|
|
@@ -45848,7 +45884,7 @@ declare const VSwitch: {
|
|
|
45848
45884
|
inset: boolean;
|
|
45849
45885
|
loading: string | boolean;
|
|
45850
45886
|
style: vue.StyleValue;
|
|
45851
|
-
disabled: boolean;
|
|
45887
|
+
disabled: boolean | null;
|
|
45852
45888
|
multiple: boolean | null;
|
|
45853
45889
|
readonly: boolean;
|
|
45854
45890
|
indeterminate: boolean;
|
|
@@ -45903,7 +45939,10 @@ declare const VSwitch: {
|
|
|
45903
45939
|
default: null;
|
|
45904
45940
|
};
|
|
45905
45941
|
color: StringConstructor;
|
|
45906
|
-
disabled:
|
|
45942
|
+
disabled: {
|
|
45943
|
+
type: vue.PropType<boolean | null>;
|
|
45944
|
+
default: null;
|
|
45945
|
+
};
|
|
45907
45946
|
defaultsTarget: StringConstructor;
|
|
45908
45947
|
error: BooleanConstructor;
|
|
45909
45948
|
id: StringConstructor;
|
|
@@ -45986,7 +46025,10 @@ declare const VSwitch: {
|
|
|
45986
46025
|
default: null;
|
|
45987
46026
|
};
|
|
45988
46027
|
color: StringConstructor;
|
|
45989
|
-
disabled:
|
|
46028
|
+
disabled: {
|
|
46029
|
+
type: vue.PropType<boolean | null>;
|
|
46030
|
+
default: null;
|
|
46031
|
+
};
|
|
45990
46032
|
defaultsTarget: StringConstructor;
|
|
45991
46033
|
error: BooleanConstructor;
|
|
45992
46034
|
id: StringConstructor;
|
|
@@ -55406,6 +55448,7 @@ declare const VVirtualScroll: {
|
|
|
55406
55448
|
$data: {};
|
|
55407
55449
|
$props: {
|
|
55408
55450
|
style?: vue.StyleValue | undefined;
|
|
55451
|
+
itemHeight?: string | number | undefined;
|
|
55409
55452
|
key?: string | number | symbol | undefined;
|
|
55410
55453
|
height?: string | number | undefined;
|
|
55411
55454
|
width?: string | number | undefined;
|
|
@@ -55455,7 +55498,6 @@ declare const VVirtualScroll: {
|
|
|
55455
55498
|
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55456
55499
|
[key: string]: any;
|
|
55457
55500
|
}>) => void)[] | undefined;
|
|
55458
|
-
itemHeight?: string | number | undefined;
|
|
55459
55501
|
};
|
|
55460
55502
|
$attrs: {
|
|
55461
55503
|
[x: string]: unknown;
|
|
@@ -55464,7 +55506,9 @@ declare const VVirtualScroll: {
|
|
|
55464
55506
|
[x: string]: unknown;
|
|
55465
55507
|
};
|
|
55466
55508
|
$slots: Readonly<{
|
|
55467
|
-
default?: ((arg: VVirtualScrollSlot<unknown>
|
|
55509
|
+
default?: ((arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
|
|
55510
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55511
|
+
})) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55468
55512
|
[key: string]: any;
|
|
55469
55513
|
}>[]) | undefined;
|
|
55470
55514
|
}>;
|
|
@@ -55474,6 +55518,7 @@ declare const VVirtualScroll: {
|
|
|
55474
55518
|
$el: any;
|
|
55475
55519
|
$options: vue.ComponentOptionsBase<{
|
|
55476
55520
|
style: vue.StyleValue;
|
|
55521
|
+
itemHeight: string | number;
|
|
55477
55522
|
} & {
|
|
55478
55523
|
height?: string | number | undefined;
|
|
55479
55524
|
width?: string | number | undefined;
|
|
@@ -55482,13 +55527,15 @@ declare const VVirtualScroll: {
|
|
|
55482
55527
|
minHeight?: string | number | undefined;
|
|
55483
55528
|
minWidth?: string | number | undefined;
|
|
55484
55529
|
class?: any;
|
|
55485
|
-
itemHeight?: string | number | undefined;
|
|
55486
55530
|
}, {
|
|
55487
55531
|
scrollToIndex: (index: number) => void;
|
|
55488
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots">, string, {
|
|
55532
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "renderless">, string, {
|
|
55489
55533
|
style: vue.StyleValue;
|
|
55534
|
+
itemHeight: string | number;
|
|
55490
55535
|
}, {}, string, vue.SlotsType<Partial<{
|
|
55491
|
-
default: (arg: VVirtualScrollSlot<unknown>
|
|
55536
|
+
default: (arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
|
|
55537
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55538
|
+
})) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55492
55539
|
[key: string]: any;
|
|
55493
55540
|
}>[];
|
|
55494
55541
|
}>>> & {
|
|
@@ -55513,6 +55560,7 @@ declare const VVirtualScroll: {
|
|
|
55513
55560
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
55514
55561
|
} & {
|
|
55515
55562
|
style: vue.StyleValue;
|
|
55563
|
+
itemHeight: string | number;
|
|
55516
55564
|
} & {
|
|
55517
55565
|
height?: string | number | undefined;
|
|
55518
55566
|
width?: string | number | undefined;
|
|
@@ -55521,7 +55569,6 @@ declare const VVirtualScroll: {
|
|
|
55521
55569
|
minHeight?: string | number | undefined;
|
|
55522
55570
|
minWidth?: string | number | undefined;
|
|
55523
55571
|
class?: any;
|
|
55524
|
-
itemHeight?: string | number | undefined;
|
|
55525
55572
|
} & vue.ShallowUnwrapRef<{
|
|
55526
55573
|
scrollToIndex: (index: number) => void;
|
|
55527
55574
|
}> & {} & vue.ComponentCustomProperties & {};
|
|
@@ -55530,6 +55577,7 @@ declare const VVirtualScroll: {
|
|
|
55530
55577
|
__isSuspense?: undefined;
|
|
55531
55578
|
} & vue.ComponentOptionsBase<{
|
|
55532
55579
|
style: vue.StyleValue;
|
|
55580
|
+
itemHeight: string | number;
|
|
55533
55581
|
} & {
|
|
55534
55582
|
height?: string | number | undefined;
|
|
55535
55583
|
width?: string | number | undefined;
|
|
@@ -55538,23 +55586,31 @@ declare const VVirtualScroll: {
|
|
|
55538
55586
|
minHeight?: string | number | undefined;
|
|
55539
55587
|
minWidth?: string | number | undefined;
|
|
55540
55588
|
class?: any;
|
|
55541
|
-
itemHeight?: string | number | undefined;
|
|
55542
55589
|
}, {
|
|
55543
55590
|
scrollToIndex: (index: number) => void;
|
|
55544
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots">, string, {
|
|
55591
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "renderless">, string, {
|
|
55545
55592
|
style: vue.StyleValue;
|
|
55593
|
+
itemHeight: string | number;
|
|
55546
55594
|
}, {}, string, vue.SlotsType<Partial<{
|
|
55547
|
-
default: (arg: VVirtualScrollSlot<unknown>
|
|
55595
|
+
default: (arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
|
|
55596
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55597
|
+
})) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55548
55598
|
[key: string]: any;
|
|
55549
55599
|
}>[];
|
|
55550
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T_1>(props: {
|
|
55600
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T_1, Renderless extends boolean = false>(props: {
|
|
55551
55601
|
items?: readonly T_1[] | undefined;
|
|
55602
|
+
renderless?: Renderless | undefined;
|
|
55552
55603
|
}, slots: {
|
|
55553
|
-
default: VVirtualScrollSlot<T_1
|
|
55604
|
+
default: VVirtualScrollSlot<T_1> & (Renderless extends true ? {
|
|
55605
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55606
|
+
} : {});
|
|
55554
55607
|
}) => GenericProps<{
|
|
55555
55608
|
items?: readonly T_1[] | undefined;
|
|
55609
|
+
renderless?: Renderless | undefined;
|
|
55556
55610
|
}, {
|
|
55557
|
-
default: VVirtualScrollSlot<T_1
|
|
55611
|
+
default: VVirtualScrollSlot<T_1> & (Renderless extends true ? {
|
|
55612
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55613
|
+
} : {});
|
|
55558
55614
|
}>) & FilterPropsOptions<{
|
|
55559
55615
|
height: (StringConstructor | NumberConstructor)[];
|
|
55560
55616
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
@@ -55567,11 +55623,15 @@ declare const VVirtualScroll: {
|
|
|
55567
55623
|
type: PropType<vue.StyleValue>;
|
|
55568
55624
|
default: null;
|
|
55569
55625
|
};
|
|
55570
|
-
itemHeight:
|
|
55626
|
+
itemHeight: {
|
|
55627
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
55628
|
+
default: number;
|
|
55629
|
+
};
|
|
55571
55630
|
items: {
|
|
55572
55631
|
type: PropType<readonly unknown[]>;
|
|
55573
55632
|
default: () => never[];
|
|
55574
55633
|
};
|
|
55634
|
+
renderless: BooleanConstructor;
|
|
55575
55635
|
}, vue.ExtractPropTypes<{
|
|
55576
55636
|
height: (StringConstructor | NumberConstructor)[];
|
|
55577
55637
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
@@ -55584,11 +55644,15 @@ declare const VVirtualScroll: {
|
|
|
55584
55644
|
type: PropType<vue.StyleValue>;
|
|
55585
55645
|
default: null;
|
|
55586
55646
|
};
|
|
55587
|
-
itemHeight:
|
|
55647
|
+
itemHeight: {
|
|
55648
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
55649
|
+
default: number;
|
|
55650
|
+
};
|
|
55588
55651
|
items: {
|
|
55589
55652
|
type: PropType<readonly unknown[]>;
|
|
55590
55653
|
default: () => never[];
|
|
55591
55654
|
};
|
|
55655
|
+
renderless: BooleanConstructor;
|
|
55592
55656
|
}>>;
|
|
55593
55657
|
type VVirtualScroll = InstanceType<typeof VVirtualScroll>;
|
|
55594
55658
|
|
|
@@ -64578,6 +64642,7 @@ declare const VDataTableVirtual: {
|
|
|
64578
64642
|
selectStrategy?: "all" | "page" | "single" | undefined;
|
|
64579
64643
|
itemValue?: SelectItemKey | undefined;
|
|
64580
64644
|
returnObject?: boolean | undefined;
|
|
64645
|
+
itemHeight?: string | number | undefined;
|
|
64581
64646
|
hideNoData?: boolean | undefined;
|
|
64582
64647
|
filterMode?: FilterMode | undefined;
|
|
64583
64648
|
noFilter?: boolean | undefined;
|
|
@@ -64638,6 +64703,8 @@ declare const VDataTableVirtual: {
|
|
|
64638
64703
|
toggleSelect: (item: SelectableItem) => void;
|
|
64639
64704
|
} & {
|
|
64640
64705
|
props: Record<string, any>;
|
|
64706
|
+
} & {
|
|
64707
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
64641
64708
|
}) => vue.VNodeChild) | undefined;
|
|
64642
64709
|
loading?: (() => vue.VNodeChild) | undefined;
|
|
64643
64710
|
'group-header'?: ((arg: {
|
|
@@ -64746,6 +64813,8 @@ declare const VDataTableVirtual: {
|
|
|
64746
64813
|
toggleSelect: (item: SelectableItem) => void;
|
|
64747
64814
|
} & {
|
|
64748
64815
|
props: Record<string, any>;
|
|
64816
|
+
} & {
|
|
64817
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
64749
64818
|
}) => vue.VNodeChild) | undefined;
|
|
64750
64819
|
loading?: false | (() => vue.VNodeChild) | undefined;
|
|
64751
64820
|
'group-header'?: false | ((arg: {
|
|
@@ -64862,6 +64931,8 @@ declare const VDataTableVirtual: {
|
|
|
64862
64931
|
toggleSelect: (item: SelectableItem) => void;
|
|
64863
64932
|
} & {
|
|
64864
64933
|
props: Record<string, any>;
|
|
64934
|
+
} & {
|
|
64935
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
64865
64936
|
}) => vue.VNodeChild) | undefined;
|
|
64866
64937
|
"v-slot:no-data"?: false | (() => vue.VNodeChild) | undefined;
|
|
64867
64938
|
customFilter?: FilterFunction | undefined;
|
|
@@ -64869,7 +64940,6 @@ declare const VDataTableVirtual: {
|
|
|
64869
64940
|
filterKeys?: FilterKeys | undefined;
|
|
64870
64941
|
"v-slot:top"?: false | ((arg: VDataTableVirtualSlotProps) => vue.VNodeChild) | undefined;
|
|
64871
64942
|
"v-slot:bottom"?: false | ((arg: VDataTableVirtualSlotProps) => vue.VNodeChild) | undefined;
|
|
64872
|
-
itemHeight?: string | number | undefined;
|
|
64873
64943
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
64874
64944
|
"onUpdate:sortBy"?: ((value: any) => any) | undefined;
|
|
64875
64945
|
"onUpdate:groupBy"?: ((value: any) => any) | undefined;
|
|
@@ -64964,6 +65034,8 @@ declare const VDataTableVirtual: {
|
|
|
64964
65034
|
toggleSelect: (item: SelectableItem) => void;
|
|
64965
65035
|
} & {
|
|
64966
65036
|
props: Record<string, any>;
|
|
65037
|
+
} & {
|
|
65038
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
64967
65039
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
64968
65040
|
[key: string]: any;
|
|
64969
65041
|
}>[]) | undefined;
|
|
@@ -65077,6 +65149,7 @@ declare const VDataTableVirtual: {
|
|
|
65077
65149
|
selectStrategy: "all" | "page" | "single";
|
|
65078
65150
|
itemValue: SelectItemKey;
|
|
65079
65151
|
returnObject: boolean;
|
|
65152
|
+
itemHeight: string | number;
|
|
65080
65153
|
hideNoData: boolean;
|
|
65081
65154
|
filterMode: FilterMode;
|
|
65082
65155
|
noFilter: boolean;
|
|
@@ -65103,7 +65176,6 @@ declare const VDataTableVirtual: {
|
|
|
65103
65176
|
customFilter?: FilterFunction | undefined;
|
|
65104
65177
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
65105
65178
|
filterKeys?: FilterKeys | undefined;
|
|
65106
|
-
itemHeight?: string | number | undefined;
|
|
65107
65179
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
65108
65180
|
rowHeight?: number | undefined;
|
|
65109
65181
|
'onClick:row'?: ((e: Event, value: {
|
|
@@ -65148,6 +65220,8 @@ declare const VDataTableVirtual: {
|
|
|
65148
65220
|
toggleSelect: (item: SelectableItem) => void;
|
|
65149
65221
|
} & {
|
|
65150
65222
|
props: Record<string, any>;
|
|
65223
|
+
} & {
|
|
65224
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
65151
65225
|
}) => vue.VNodeChild) | undefined;
|
|
65152
65226
|
loading?: (() => vue.VNodeChild) | undefined;
|
|
65153
65227
|
'group-header'?: ((arg: {
|
|
@@ -65252,6 +65326,8 @@ declare const VDataTableVirtual: {
|
|
|
65252
65326
|
toggleSelect: (item: SelectableItem) => void;
|
|
65253
65327
|
} & {
|
|
65254
65328
|
props: Record<string, any>;
|
|
65329
|
+
} & {
|
|
65330
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
65255
65331
|
}) => vue.VNodeChild) | undefined;
|
|
65256
65332
|
loading?: false | (() => vue.VNodeChild) | undefined;
|
|
65257
65333
|
'group-header'?: false | ((arg: {
|
|
@@ -65356,6 +65432,8 @@ declare const VDataTableVirtual: {
|
|
|
65356
65432
|
toggleSelect: (item: SelectableItem) => void;
|
|
65357
65433
|
} & {
|
|
65358
65434
|
props: Record<string, any>;
|
|
65435
|
+
} & {
|
|
65436
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
65359
65437
|
}) => vue.VNodeChild) | undefined;
|
|
65360
65438
|
"v-slot:loading"?: false | (() => vue.VNodeChild) | undefined;
|
|
65361
65439
|
"v-slot:group-header"?: false | ((arg: {
|
|
@@ -65454,6 +65532,7 @@ declare const VDataTableVirtual: {
|
|
|
65454
65532
|
selectStrategy: "all" | "page" | "single";
|
|
65455
65533
|
itemValue: SelectItemKey;
|
|
65456
65534
|
returnObject: boolean;
|
|
65535
|
+
itemHeight: string | number;
|
|
65457
65536
|
hideNoData: boolean;
|
|
65458
65537
|
filterMode: FilterMode;
|
|
65459
65538
|
noFilter: boolean;
|
|
@@ -65515,6 +65594,8 @@ declare const VDataTableVirtual: {
|
|
|
65515
65594
|
toggleSelect: (item: SelectableItem) => void;
|
|
65516
65595
|
} & {
|
|
65517
65596
|
props: Record<string, any>;
|
|
65597
|
+
} & {
|
|
65598
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
65518
65599
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
65519
65600
|
[key: string]: any;
|
|
65520
65601
|
}>[];
|
|
@@ -65641,6 +65722,7 @@ declare const VDataTableVirtual: {
|
|
|
65641
65722
|
selectStrategy: "all" | "page" | "single";
|
|
65642
65723
|
itemValue: SelectItemKey;
|
|
65643
65724
|
returnObject: boolean;
|
|
65725
|
+
itemHeight: string | number;
|
|
65644
65726
|
hideNoData: boolean;
|
|
65645
65727
|
filterMode: FilterMode;
|
|
65646
65728
|
noFilter: boolean;
|
|
@@ -65667,7 +65749,6 @@ declare const VDataTableVirtual: {
|
|
|
65667
65749
|
customFilter?: FilterFunction | undefined;
|
|
65668
65750
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
65669
65751
|
filterKeys?: FilterKeys | undefined;
|
|
65670
|
-
itemHeight?: string | number | undefined;
|
|
65671
65752
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
65672
65753
|
rowHeight?: number | undefined;
|
|
65673
65754
|
'onClick:row'?: ((e: Event, value: {
|
|
@@ -65712,6 +65793,8 @@ declare const VDataTableVirtual: {
|
|
|
65712
65793
|
toggleSelect: (item: SelectableItem) => void;
|
|
65713
65794
|
} & {
|
|
65714
65795
|
props: Record<string, any>;
|
|
65796
|
+
} & {
|
|
65797
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
65715
65798
|
}) => vue.VNodeChild) | undefined;
|
|
65716
65799
|
loading?: (() => vue.VNodeChild) | undefined;
|
|
65717
65800
|
'group-header'?: ((arg: {
|
|
@@ -65816,6 +65899,8 @@ declare const VDataTableVirtual: {
|
|
|
65816
65899
|
toggleSelect: (item: SelectableItem) => void;
|
|
65817
65900
|
} & {
|
|
65818
65901
|
props: Record<string, any>;
|
|
65902
|
+
} & {
|
|
65903
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
65819
65904
|
}) => vue.VNodeChild) | undefined;
|
|
65820
65905
|
loading?: false | (() => vue.VNodeChild) | undefined;
|
|
65821
65906
|
'group-header'?: false | ((arg: {
|
|
@@ -65920,6 +66005,8 @@ declare const VDataTableVirtual: {
|
|
|
65920
66005
|
toggleSelect: (item: SelectableItem) => void;
|
|
65921
66006
|
} & {
|
|
65922
66007
|
props: Record<string, any>;
|
|
66008
|
+
} & {
|
|
66009
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
65923
66010
|
}) => vue.VNodeChild) | undefined;
|
|
65924
66011
|
"v-slot:loading"?: false | (() => vue.VNodeChild) | undefined;
|
|
65925
66012
|
"v-slot:group-header"?: false | ((arg: {
|
|
@@ -66013,6 +66100,7 @@ declare const VDataTableVirtual: {
|
|
|
66013
66100
|
selectStrategy: "all" | "page" | "single";
|
|
66014
66101
|
itemValue: SelectItemKey;
|
|
66015
66102
|
returnObject: boolean;
|
|
66103
|
+
itemHeight: string | number;
|
|
66016
66104
|
hideNoData: boolean;
|
|
66017
66105
|
filterMode: FilterMode;
|
|
66018
66106
|
noFilter: boolean;
|
|
@@ -66039,7 +66127,6 @@ declare const VDataTableVirtual: {
|
|
|
66039
66127
|
customFilter?: FilterFunction | undefined;
|
|
66040
66128
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
|
66041
66129
|
filterKeys?: FilterKeys | undefined;
|
|
66042
|
-
itemHeight?: string | number | undefined;
|
|
66043
66130
|
customKeySort?: Record<string, DataTableCompareFunction> | undefined;
|
|
66044
66131
|
rowHeight?: number | undefined;
|
|
66045
66132
|
'onClick:row'?: ((e: Event, value: {
|
|
@@ -66084,6 +66171,8 @@ declare const VDataTableVirtual: {
|
|
|
66084
66171
|
toggleSelect: (item: SelectableItem) => void;
|
|
66085
66172
|
} & {
|
|
66086
66173
|
props: Record<string, any>;
|
|
66174
|
+
} & {
|
|
66175
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
66087
66176
|
}) => vue.VNodeChild) | undefined;
|
|
66088
66177
|
loading?: (() => vue.VNodeChild) | undefined;
|
|
66089
66178
|
'group-header'?: ((arg: {
|
|
@@ -66188,6 +66277,8 @@ declare const VDataTableVirtual: {
|
|
|
66188
66277
|
toggleSelect: (item: SelectableItem) => void;
|
|
66189
66278
|
} & {
|
|
66190
66279
|
props: Record<string, any>;
|
|
66280
|
+
} & {
|
|
66281
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
66191
66282
|
}) => vue.VNodeChild) | undefined;
|
|
66192
66283
|
loading?: false | (() => vue.VNodeChild) | undefined;
|
|
66193
66284
|
'group-header'?: false | ((arg: {
|
|
@@ -66292,6 +66383,8 @@ declare const VDataTableVirtual: {
|
|
|
66292
66383
|
toggleSelect: (item: SelectableItem) => void;
|
|
66293
66384
|
} & {
|
|
66294
66385
|
props: Record<string, any>;
|
|
66386
|
+
} & {
|
|
66387
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
66295
66388
|
}) => vue.VNodeChild) | undefined;
|
|
66296
66389
|
"v-slot:loading"?: false | (() => vue.VNodeChild) | undefined;
|
|
66297
66390
|
"v-slot:group-header"?: false | ((arg: {
|
|
@@ -66390,6 +66483,7 @@ declare const VDataTableVirtual: {
|
|
|
66390
66483
|
selectStrategy: "all" | "page" | "single";
|
|
66391
66484
|
itemValue: SelectItemKey;
|
|
66392
66485
|
returnObject: boolean;
|
|
66486
|
+
itemHeight: string | number;
|
|
66393
66487
|
hideNoData: boolean;
|
|
66394
66488
|
filterMode: FilterMode;
|
|
66395
66489
|
noFilter: boolean;
|
|
@@ -66451,6 +66545,8 @@ declare const VDataTableVirtual: {
|
|
|
66451
66545
|
toggleSelect: (item: SelectableItem) => void;
|
|
66452
66546
|
} & {
|
|
66453
66547
|
props: Record<string, any>;
|
|
66548
|
+
} & {
|
|
66549
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
66454
66550
|
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
66455
66551
|
[key: string]: any;
|
|
66456
66552
|
}>[];
|
|
@@ -66551,7 +66647,10 @@ declare const VDataTableVirtual: {
|
|
|
66551
66647
|
default: string;
|
|
66552
66648
|
};
|
|
66553
66649
|
noFilter: BooleanConstructor;
|
|
66554
|
-
itemHeight:
|
|
66650
|
+
itemHeight: {
|
|
66651
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
66652
|
+
default: number;
|
|
66653
|
+
};
|
|
66555
66654
|
groupBy: {
|
|
66556
66655
|
type: vue.PropType<readonly SortItem[]>;
|
|
66557
66656
|
default: () => never[];
|
|
@@ -66649,7 +66748,10 @@ declare const VDataTableVirtual: {
|
|
|
66649
66748
|
default: string;
|
|
66650
66749
|
};
|
|
66651
66750
|
noFilter: BooleanConstructor;
|
|
66652
|
-
itemHeight:
|
|
66751
|
+
itemHeight: {
|
|
66752
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
66753
|
+
default: number;
|
|
66754
|
+
};
|
|
66653
66755
|
groupBy: {
|
|
66654
66756
|
type: vue.PropType<readonly SortItem[]>;
|
|
66655
66757
|
default: () => never[];
|