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
|
@@ -13739,7 +13739,7 @@ declare const VSelectionControlGroup: {
|
|
|
13739
13739
|
inline?: boolean | undefined;
|
|
13740
13740
|
error?: boolean | undefined;
|
|
13741
13741
|
style?: vue.StyleValue | undefined;
|
|
13742
|
-
disabled?: boolean | undefined;
|
|
13742
|
+
disabled?: boolean | null | undefined;
|
|
13743
13743
|
multiple?: boolean | null | undefined;
|
|
13744
13744
|
readonly?: boolean | undefined;
|
|
13745
13745
|
density?: Density | undefined;
|
|
@@ -13825,7 +13825,7 @@ declare const VSelectionControlGroup: {
|
|
|
13825
13825
|
inline: boolean;
|
|
13826
13826
|
error: boolean;
|
|
13827
13827
|
style: vue.StyleValue;
|
|
13828
|
-
disabled: boolean;
|
|
13828
|
+
disabled: boolean | null;
|
|
13829
13829
|
multiple: boolean | null;
|
|
13830
13830
|
readonly: boolean;
|
|
13831
13831
|
density: Density;
|
|
@@ -13859,7 +13859,7 @@ declare const VSelectionControlGroup: {
|
|
|
13859
13859
|
inline: boolean;
|
|
13860
13860
|
error: boolean;
|
|
13861
13861
|
style: vue.StyleValue;
|
|
13862
|
-
disabled: boolean;
|
|
13862
|
+
disabled: boolean | null;
|
|
13863
13863
|
multiple: boolean | null;
|
|
13864
13864
|
readonly: boolean;
|
|
13865
13865
|
density: Density;
|
|
@@ -13894,7 +13894,7 @@ declare const VSelectionControlGroup: {
|
|
|
13894
13894
|
inline: boolean;
|
|
13895
13895
|
error: boolean;
|
|
13896
13896
|
style: vue.StyleValue;
|
|
13897
|
-
disabled: boolean;
|
|
13897
|
+
disabled: boolean | null;
|
|
13898
13898
|
multiple: boolean | null;
|
|
13899
13899
|
readonly: boolean;
|
|
13900
13900
|
density: Density;
|
|
@@ -13930,7 +13930,7 @@ declare const VSelectionControlGroup: {
|
|
|
13930
13930
|
inline: boolean;
|
|
13931
13931
|
error: boolean;
|
|
13932
13932
|
style: vue.StyleValue;
|
|
13933
|
-
disabled: boolean;
|
|
13933
|
+
disabled: boolean | null;
|
|
13934
13934
|
multiple: boolean | null;
|
|
13935
13935
|
readonly: boolean;
|
|
13936
13936
|
density: Density;
|
|
@@ -13964,7 +13964,7 @@ declare const VSelectionControlGroup: {
|
|
|
13964
13964
|
inline: boolean;
|
|
13965
13965
|
error: boolean;
|
|
13966
13966
|
style: vue.StyleValue;
|
|
13967
|
-
disabled: boolean;
|
|
13967
|
+
disabled: boolean | null;
|
|
13968
13968
|
multiple: boolean | null;
|
|
13969
13969
|
readonly: boolean;
|
|
13970
13970
|
density: Density;
|
|
@@ -13988,7 +13988,10 @@ declare const VSelectionControlGroup: {
|
|
|
13988
13988
|
default: null;
|
|
13989
13989
|
};
|
|
13990
13990
|
color: StringConstructor;
|
|
13991
|
-
disabled:
|
|
13991
|
+
disabled: {
|
|
13992
|
+
type: PropType<boolean | null>;
|
|
13993
|
+
default: null;
|
|
13994
|
+
};
|
|
13992
13995
|
defaultsTarget: {
|
|
13993
13996
|
type: PropType<string>;
|
|
13994
13997
|
default: string;
|
|
@@ -14027,7 +14030,10 @@ declare const VSelectionControlGroup: {
|
|
|
14027
14030
|
default: null;
|
|
14028
14031
|
};
|
|
14029
14032
|
color: StringConstructor;
|
|
14030
|
-
disabled:
|
|
14033
|
+
disabled: {
|
|
14034
|
+
type: PropType<boolean | null>;
|
|
14035
|
+
default: null;
|
|
14036
|
+
};
|
|
14031
14037
|
defaultsTarget: {
|
|
14032
14038
|
type: PropType<string>;
|
|
14033
14039
|
default: string;
|
|
@@ -14082,7 +14088,7 @@ declare const VSelectionControl: {
|
|
|
14082
14088
|
inline?: boolean | undefined;
|
|
14083
14089
|
error?: boolean | undefined;
|
|
14084
14090
|
style?: vue.StyleValue | undefined;
|
|
14085
|
-
disabled?: boolean | undefined;
|
|
14091
|
+
disabled?: boolean | null | undefined;
|
|
14086
14092
|
multiple?: boolean | null | undefined;
|
|
14087
14093
|
readonly?: boolean | undefined;
|
|
14088
14094
|
density?: Density | undefined;
|
|
@@ -14173,7 +14179,7 @@ declare const VSelectionControl: {
|
|
|
14173
14179
|
inline: boolean;
|
|
14174
14180
|
error: boolean;
|
|
14175
14181
|
style: vue.StyleValue;
|
|
14176
|
-
disabled: boolean;
|
|
14182
|
+
disabled: boolean | null;
|
|
14177
14183
|
multiple: boolean | null;
|
|
14178
14184
|
readonly: boolean;
|
|
14179
14185
|
density: Density;
|
|
@@ -14204,7 +14210,7 @@ declare const VSelectionControl: {
|
|
|
14204
14210
|
inline: boolean;
|
|
14205
14211
|
error: boolean;
|
|
14206
14212
|
style: vue.StyleValue;
|
|
14207
|
-
disabled: boolean;
|
|
14213
|
+
disabled: boolean | null;
|
|
14208
14214
|
multiple: boolean | null;
|
|
14209
14215
|
readonly: boolean;
|
|
14210
14216
|
density: Density;
|
|
@@ -14247,7 +14253,7 @@ declare const VSelectionControl: {
|
|
|
14247
14253
|
inline: boolean;
|
|
14248
14254
|
error: boolean;
|
|
14249
14255
|
style: vue.StyleValue;
|
|
14250
|
-
disabled: boolean;
|
|
14256
|
+
disabled: boolean | null;
|
|
14251
14257
|
multiple: boolean | null;
|
|
14252
14258
|
readonly: boolean;
|
|
14253
14259
|
density: Density;
|
|
@@ -14280,7 +14286,7 @@ declare const VSelectionControl: {
|
|
|
14280
14286
|
inline: boolean;
|
|
14281
14287
|
error: boolean;
|
|
14282
14288
|
style: vue.StyleValue;
|
|
14283
|
-
disabled: boolean;
|
|
14289
|
+
disabled: boolean | null;
|
|
14284
14290
|
multiple: boolean | null;
|
|
14285
14291
|
readonly: boolean;
|
|
14286
14292
|
density: Density;
|
|
@@ -14311,7 +14317,7 @@ declare const VSelectionControl: {
|
|
|
14311
14317
|
inline: boolean;
|
|
14312
14318
|
error: boolean;
|
|
14313
14319
|
style: vue.StyleValue;
|
|
14314
|
-
disabled: boolean;
|
|
14320
|
+
disabled: boolean | null;
|
|
14315
14321
|
multiple: boolean | null;
|
|
14316
14322
|
readonly: boolean;
|
|
14317
14323
|
density: Density;
|
|
@@ -14349,7 +14355,10 @@ declare const VSelectionControl: {
|
|
|
14349
14355
|
default: null;
|
|
14350
14356
|
};
|
|
14351
14357
|
color: StringConstructor;
|
|
14352
|
-
disabled:
|
|
14358
|
+
disabled: {
|
|
14359
|
+
type: vue.PropType<boolean | null>;
|
|
14360
|
+
default: null;
|
|
14361
|
+
};
|
|
14353
14362
|
defaultsTarget: StringConstructor;
|
|
14354
14363
|
error: BooleanConstructor;
|
|
14355
14364
|
id: StringConstructor;
|
|
@@ -14389,7 +14398,10 @@ declare const VSelectionControl: {
|
|
|
14389
14398
|
default: null;
|
|
14390
14399
|
};
|
|
14391
14400
|
color: StringConstructor;
|
|
14392
|
-
disabled:
|
|
14401
|
+
disabled: {
|
|
14402
|
+
type: vue.PropType<boolean | null>;
|
|
14403
|
+
default: null;
|
|
14404
|
+
};
|
|
14393
14405
|
defaultsTarget: StringConstructor;
|
|
14394
14406
|
error: BooleanConstructor;
|
|
14395
14407
|
id: StringConstructor;
|
|
@@ -14427,7 +14439,7 @@ declare const VCheckbox: {
|
|
|
14427
14439
|
error?: boolean | undefined;
|
|
14428
14440
|
direction?: "horizontal" | "vertical" | undefined;
|
|
14429
14441
|
style?: vue.StyleValue | undefined;
|
|
14430
|
-
disabled?: boolean | undefined;
|
|
14442
|
+
disabled?: boolean | null | undefined;
|
|
14431
14443
|
multiple?: boolean | null | undefined;
|
|
14432
14444
|
readonly?: boolean | undefined;
|
|
14433
14445
|
indeterminate?: boolean | undefined;
|
|
@@ -14583,7 +14595,7 @@ declare const VCheckbox: {
|
|
|
14583
14595
|
error: boolean;
|
|
14584
14596
|
direction: "horizontal" | "vertical";
|
|
14585
14597
|
style: vue.StyleValue;
|
|
14586
|
-
disabled: boolean;
|
|
14598
|
+
disabled: boolean | null;
|
|
14587
14599
|
multiple: boolean | null;
|
|
14588
14600
|
readonly: boolean;
|
|
14589
14601
|
indeterminate: boolean;
|
|
@@ -14668,7 +14680,7 @@ declare const VCheckbox: {
|
|
|
14668
14680
|
error: boolean;
|
|
14669
14681
|
direction: "horizontal" | "vertical";
|
|
14670
14682
|
style: vue.StyleValue;
|
|
14671
|
-
disabled: boolean;
|
|
14683
|
+
disabled: boolean | null;
|
|
14672
14684
|
multiple: boolean | null;
|
|
14673
14685
|
readonly: boolean;
|
|
14674
14686
|
indeterminate: boolean;
|
|
@@ -14734,7 +14746,7 @@ declare const VCheckbox: {
|
|
|
14734
14746
|
error: boolean;
|
|
14735
14747
|
direction: "horizontal" | "vertical";
|
|
14736
14748
|
style: vue.StyleValue;
|
|
14737
|
-
disabled: boolean;
|
|
14749
|
+
disabled: boolean | null;
|
|
14738
14750
|
multiple: boolean | null;
|
|
14739
14751
|
readonly: boolean;
|
|
14740
14752
|
indeterminate: boolean;
|
|
@@ -14820,7 +14832,7 @@ declare const VCheckbox: {
|
|
|
14820
14832
|
error: boolean;
|
|
14821
14833
|
direction: "horizontal" | "vertical";
|
|
14822
14834
|
style: vue.StyleValue;
|
|
14823
|
-
disabled: boolean;
|
|
14835
|
+
disabled: boolean | null;
|
|
14824
14836
|
multiple: boolean | null;
|
|
14825
14837
|
readonly: boolean;
|
|
14826
14838
|
indeterminate: boolean;
|
|
@@ -14905,7 +14917,7 @@ declare const VCheckbox: {
|
|
|
14905
14917
|
error: boolean;
|
|
14906
14918
|
direction: "horizontal" | "vertical";
|
|
14907
14919
|
style: vue.StyleValue;
|
|
14908
|
-
disabled: boolean;
|
|
14920
|
+
disabled: boolean | null;
|
|
14909
14921
|
multiple: boolean | null;
|
|
14910
14922
|
readonly: boolean;
|
|
14911
14923
|
indeterminate: boolean;
|
|
@@ -14959,7 +14971,10 @@ declare const VCheckbox: {
|
|
|
14959
14971
|
type: vue.PropType<vue.StyleValue>;
|
|
14960
14972
|
default: null;
|
|
14961
14973
|
};
|
|
14962
|
-
disabled:
|
|
14974
|
+
disabled: {
|
|
14975
|
+
type: vue.PropType<boolean | null>;
|
|
14976
|
+
default: null;
|
|
14977
|
+
};
|
|
14963
14978
|
multiple: {
|
|
14964
14979
|
type: vue.PropType<boolean | null>;
|
|
14965
14980
|
default: null;
|
|
@@ -15045,7 +15060,10 @@ declare const VCheckbox: {
|
|
|
15045
15060
|
type: vue.PropType<vue.StyleValue>;
|
|
15046
15061
|
default: null;
|
|
15047
15062
|
};
|
|
15048
|
-
disabled:
|
|
15063
|
+
disabled: {
|
|
15064
|
+
type: vue.PropType<boolean | null>;
|
|
15065
|
+
default: null;
|
|
15066
|
+
};
|
|
15049
15067
|
multiple: {
|
|
15050
15068
|
type: vue.PropType<boolean | null>;
|
|
15051
15069
|
default: null;
|
|
@@ -15130,7 +15148,7 @@ declare const VCheckboxBtn: {
|
|
|
15130
15148
|
inline?: boolean | undefined;
|
|
15131
15149
|
error?: boolean | undefined;
|
|
15132
15150
|
style?: vue.StyleValue | undefined;
|
|
15133
|
-
disabled?: boolean | undefined;
|
|
15151
|
+
disabled?: boolean | null | undefined;
|
|
15134
15152
|
multiple?: boolean | null | undefined;
|
|
15135
15153
|
readonly?: boolean | undefined;
|
|
15136
15154
|
indeterminate?: boolean | undefined;
|
|
@@ -15247,7 +15265,7 @@ declare const VCheckboxBtn: {
|
|
|
15247
15265
|
inline: boolean;
|
|
15248
15266
|
error: boolean;
|
|
15249
15267
|
style: vue.StyleValue;
|
|
15250
|
-
disabled: boolean;
|
|
15268
|
+
disabled: boolean | null;
|
|
15251
15269
|
multiple: boolean | null;
|
|
15252
15270
|
readonly: boolean;
|
|
15253
15271
|
indeterminate: boolean;
|
|
@@ -15304,7 +15322,7 @@ declare const VCheckboxBtn: {
|
|
|
15304
15322
|
inline: boolean;
|
|
15305
15323
|
error: boolean;
|
|
15306
15324
|
style: vue.StyleValue;
|
|
15307
|
-
disabled: boolean;
|
|
15325
|
+
disabled: boolean | null;
|
|
15308
15326
|
multiple: boolean | null;
|
|
15309
15327
|
readonly: boolean;
|
|
15310
15328
|
indeterminate: boolean;
|
|
@@ -15351,7 +15369,7 @@ declare const VCheckboxBtn: {
|
|
|
15351
15369
|
inline: boolean;
|
|
15352
15370
|
error: boolean;
|
|
15353
15371
|
style: vue.StyleValue;
|
|
15354
|
-
disabled: boolean;
|
|
15372
|
+
disabled: boolean | null;
|
|
15355
15373
|
multiple: boolean | null;
|
|
15356
15374
|
readonly: boolean;
|
|
15357
15375
|
indeterminate: boolean;
|
|
@@ -15409,7 +15427,7 @@ declare const VCheckboxBtn: {
|
|
|
15409
15427
|
inline: boolean;
|
|
15410
15428
|
error: boolean;
|
|
15411
15429
|
style: vue.StyleValue;
|
|
15412
|
-
disabled: boolean;
|
|
15430
|
+
disabled: boolean | null;
|
|
15413
15431
|
multiple: boolean | null;
|
|
15414
15432
|
readonly: boolean;
|
|
15415
15433
|
indeterminate: boolean;
|
|
@@ -15466,7 +15484,7 @@ declare const VCheckboxBtn: {
|
|
|
15466
15484
|
inline: boolean;
|
|
15467
15485
|
error: boolean;
|
|
15468
15486
|
style: vue.StyleValue;
|
|
15469
|
-
disabled: boolean;
|
|
15487
|
+
disabled: boolean | null;
|
|
15470
15488
|
multiple: boolean | null;
|
|
15471
15489
|
readonly: boolean;
|
|
15472
15490
|
indeterminate: boolean;
|
|
@@ -15502,7 +15520,10 @@ declare const VCheckboxBtn: {
|
|
|
15502
15520
|
default: null;
|
|
15503
15521
|
};
|
|
15504
15522
|
color: StringConstructor;
|
|
15505
|
-
disabled:
|
|
15523
|
+
disabled: {
|
|
15524
|
+
type: vue.PropType<boolean | null>;
|
|
15525
|
+
default: null;
|
|
15526
|
+
};
|
|
15506
15527
|
defaultsTarget: StringConstructor;
|
|
15507
15528
|
error: BooleanConstructor;
|
|
15508
15529
|
id: StringConstructor;
|
|
@@ -15553,7 +15574,10 @@ declare const VCheckboxBtn: {
|
|
|
15553
15574
|
default: null;
|
|
15554
15575
|
};
|
|
15555
15576
|
color: StringConstructor;
|
|
15556
|
-
disabled:
|
|
15577
|
+
disabled: {
|
|
15578
|
+
type: vue.PropType<boolean | null>;
|
|
15579
|
+
default: null;
|
|
15580
|
+
};
|
|
15557
15581
|
defaultsTarget: StringConstructor;
|
|
15558
15582
|
error: BooleanConstructor;
|
|
15559
15583
|
id: StringConstructor;
|
|
@@ -37327,7 +37351,7 @@ declare const VRadio: {
|
|
|
37327
37351
|
inline?: boolean | undefined;
|
|
37328
37352
|
error?: boolean | undefined;
|
|
37329
37353
|
style?: vue.StyleValue | undefined;
|
|
37330
|
-
disabled?: boolean | undefined;
|
|
37354
|
+
disabled?: boolean | null | undefined;
|
|
37331
37355
|
multiple?: boolean | null | undefined;
|
|
37332
37356
|
readonly?: boolean | undefined;
|
|
37333
37357
|
density?: Density | undefined;
|
|
@@ -37440,7 +37464,7 @@ declare const VRadio: {
|
|
|
37440
37464
|
inline: boolean;
|
|
37441
37465
|
error: boolean;
|
|
37442
37466
|
style: vue.StyleValue;
|
|
37443
|
-
disabled: boolean;
|
|
37467
|
+
disabled: boolean | null;
|
|
37444
37468
|
multiple: boolean | null;
|
|
37445
37469
|
readonly: boolean;
|
|
37446
37470
|
density: Density;
|
|
@@ -37489,7 +37513,7 @@ declare const VRadio: {
|
|
|
37489
37513
|
inline: boolean;
|
|
37490
37514
|
error: boolean;
|
|
37491
37515
|
style: vue.StyleValue;
|
|
37492
|
-
disabled: boolean;
|
|
37516
|
+
disabled: boolean | null;
|
|
37493
37517
|
multiple: boolean | null;
|
|
37494
37518
|
readonly: boolean;
|
|
37495
37519
|
density: Density;
|
|
@@ -37534,7 +37558,7 @@ declare const VRadio: {
|
|
|
37534
37558
|
inline: boolean;
|
|
37535
37559
|
error: boolean;
|
|
37536
37560
|
style: vue.StyleValue;
|
|
37537
|
-
disabled: boolean;
|
|
37561
|
+
disabled: boolean | null;
|
|
37538
37562
|
multiple: boolean | null;
|
|
37539
37563
|
readonly: boolean;
|
|
37540
37564
|
density: Density;
|
|
@@ -37587,7 +37611,7 @@ declare const VRadio: {
|
|
|
37587
37611
|
inline: boolean;
|
|
37588
37612
|
error: boolean;
|
|
37589
37613
|
style: vue.StyleValue;
|
|
37590
|
-
disabled: boolean;
|
|
37614
|
+
disabled: boolean | null;
|
|
37591
37615
|
multiple: boolean | null;
|
|
37592
37616
|
readonly: boolean;
|
|
37593
37617
|
density: Density;
|
|
@@ -37636,7 +37660,7 @@ declare const VRadio: {
|
|
|
37636
37660
|
inline: boolean;
|
|
37637
37661
|
error: boolean;
|
|
37638
37662
|
style: vue.StyleValue;
|
|
37639
|
-
disabled: boolean;
|
|
37663
|
+
disabled: boolean | null;
|
|
37640
37664
|
multiple: boolean | null;
|
|
37641
37665
|
readonly: boolean;
|
|
37642
37666
|
density: Density;
|
|
@@ -37670,7 +37694,10 @@ declare const VRadio: {
|
|
|
37670
37694
|
default: null;
|
|
37671
37695
|
};
|
|
37672
37696
|
color: StringConstructor;
|
|
37673
|
-
disabled:
|
|
37697
|
+
disabled: {
|
|
37698
|
+
type: vue.PropType<boolean | null>;
|
|
37699
|
+
default: null;
|
|
37700
|
+
};
|
|
37674
37701
|
defaultsTarget: StringConstructor;
|
|
37675
37702
|
error: BooleanConstructor;
|
|
37676
37703
|
id: StringConstructor;
|
|
@@ -37716,7 +37743,10 @@ declare const VRadio: {
|
|
|
37716
37743
|
default: null;
|
|
37717
37744
|
};
|
|
37718
37745
|
color: StringConstructor;
|
|
37719
|
-
disabled:
|
|
37746
|
+
disabled: {
|
|
37747
|
+
type: vue.PropType<boolean | null>;
|
|
37748
|
+
default: null;
|
|
37749
|
+
};
|
|
37720
37750
|
defaultsTarget: StringConstructor;
|
|
37721
37751
|
error: BooleanConstructor;
|
|
37722
37752
|
id: StringConstructor;
|
|
@@ -37763,7 +37793,7 @@ declare const VRadioGroup: {
|
|
|
37763
37793
|
height?: string | number | undefined;
|
|
37764
37794
|
direction?: "horizontal" | "vertical" | undefined;
|
|
37765
37795
|
style?: vue.StyleValue | undefined;
|
|
37766
|
-
disabled?: boolean | undefined;
|
|
37796
|
+
disabled?: boolean | null | undefined;
|
|
37767
37797
|
readonly?: boolean | undefined;
|
|
37768
37798
|
messages?: string | readonly string[] | undefined;
|
|
37769
37799
|
density?: Density | undefined;
|
|
@@ -37915,7 +37945,7 @@ declare const VRadioGroup: {
|
|
|
37915
37945
|
height: string | number;
|
|
37916
37946
|
direction: "horizontal" | "vertical";
|
|
37917
37947
|
style: vue.StyleValue;
|
|
37918
|
-
disabled: boolean;
|
|
37948
|
+
disabled: boolean | null;
|
|
37919
37949
|
readonly: boolean;
|
|
37920
37950
|
messages: string | readonly string[];
|
|
37921
37951
|
density: Density;
|
|
@@ -37994,7 +38024,7 @@ declare const VRadioGroup: {
|
|
|
37994
38024
|
height: string | number;
|
|
37995
38025
|
direction: "horizontal" | "vertical";
|
|
37996
38026
|
style: vue.StyleValue;
|
|
37997
|
-
disabled: boolean;
|
|
38027
|
+
disabled: boolean | null;
|
|
37998
38028
|
readonly: boolean;
|
|
37999
38029
|
messages: string | readonly string[];
|
|
38000
38030
|
density: Density;
|
|
@@ -38060,7 +38090,7 @@ declare const VRadioGroup: {
|
|
|
38060
38090
|
height: string | number;
|
|
38061
38091
|
direction: "horizontal" | "vertical";
|
|
38062
38092
|
style: vue.StyleValue;
|
|
38063
|
-
disabled: boolean;
|
|
38093
|
+
disabled: boolean | null;
|
|
38064
38094
|
readonly: boolean;
|
|
38065
38095
|
messages: string | readonly string[];
|
|
38066
38096
|
density: Density;
|
|
@@ -38141,7 +38171,7 @@ declare const VRadioGroup: {
|
|
|
38141
38171
|
height: string | number;
|
|
38142
38172
|
direction: "horizontal" | "vertical";
|
|
38143
38173
|
style: vue.StyleValue;
|
|
38144
|
-
disabled: boolean;
|
|
38174
|
+
disabled: boolean | null;
|
|
38145
38175
|
readonly: boolean;
|
|
38146
38176
|
messages: string | readonly string[];
|
|
38147
38177
|
density: Density;
|
|
@@ -38220,7 +38250,7 @@ declare const VRadioGroup: {
|
|
|
38220
38250
|
height: string | number;
|
|
38221
38251
|
direction: "horizontal" | "vertical";
|
|
38222
38252
|
style: vue.StyleValue;
|
|
38223
|
-
disabled: boolean;
|
|
38253
|
+
disabled: boolean | null;
|
|
38224
38254
|
readonly: boolean;
|
|
38225
38255
|
messages: string | readonly string[];
|
|
38226
38256
|
density: Density;
|
|
@@ -38281,7 +38311,10 @@ declare const VRadioGroup: {
|
|
|
38281
38311
|
type: vue.PropType<vue.StyleValue>;
|
|
38282
38312
|
default: null;
|
|
38283
38313
|
};
|
|
38284
|
-
disabled:
|
|
38314
|
+
disabled: {
|
|
38315
|
+
type: vue.PropType<boolean | null>;
|
|
38316
|
+
default: null;
|
|
38317
|
+
};
|
|
38285
38318
|
readonly: BooleanConstructor;
|
|
38286
38319
|
class: vue.PropType<any>;
|
|
38287
38320
|
theme: StringConstructor;
|
|
@@ -38363,7 +38396,10 @@ declare const VRadioGroup: {
|
|
|
38363
38396
|
type: vue.PropType<vue.StyleValue>;
|
|
38364
38397
|
default: null;
|
|
38365
38398
|
};
|
|
38366
|
-
disabled:
|
|
38399
|
+
disabled: {
|
|
38400
|
+
type: vue.PropType<boolean | null>;
|
|
38401
|
+
default: null;
|
|
38402
|
+
};
|
|
38367
38403
|
readonly: BooleanConstructor;
|
|
38368
38404
|
class: vue.PropType<any>;
|
|
38369
38405
|
theme: StringConstructor;
|
|
@@ -45093,7 +45129,7 @@ declare const VSwitch: {
|
|
|
45093
45129
|
inset?: boolean | undefined;
|
|
45094
45130
|
loading?: string | boolean | undefined;
|
|
45095
45131
|
style?: vue.StyleValue | undefined;
|
|
45096
|
-
disabled?: boolean | undefined;
|
|
45132
|
+
disabled?: boolean | null | undefined;
|
|
45097
45133
|
multiple?: boolean | null | undefined;
|
|
45098
45134
|
readonly?: boolean | undefined;
|
|
45099
45135
|
indeterminate?: boolean | undefined;
|
|
@@ -45259,7 +45295,7 @@ declare const VSwitch: {
|
|
|
45259
45295
|
inset: boolean;
|
|
45260
45296
|
loading: string | boolean;
|
|
45261
45297
|
style: vue.StyleValue;
|
|
45262
|
-
disabled: boolean;
|
|
45298
|
+
disabled: boolean | null;
|
|
45263
45299
|
multiple: boolean | null;
|
|
45264
45300
|
readonly: boolean;
|
|
45265
45301
|
indeterminate: boolean;
|
|
@@ -45352,7 +45388,7 @@ declare const VSwitch: {
|
|
|
45352
45388
|
inset: boolean;
|
|
45353
45389
|
loading: string | boolean;
|
|
45354
45390
|
style: vue.StyleValue;
|
|
45355
|
-
disabled: boolean;
|
|
45391
|
+
disabled: boolean | null;
|
|
45356
45392
|
multiple: boolean | null;
|
|
45357
45393
|
readonly: boolean;
|
|
45358
45394
|
indeterminate: boolean;
|
|
@@ -45422,7 +45458,7 @@ declare const VSwitch: {
|
|
|
45422
45458
|
inset: boolean;
|
|
45423
45459
|
loading: string | boolean;
|
|
45424
45460
|
style: vue.StyleValue;
|
|
45425
|
-
disabled: boolean;
|
|
45461
|
+
disabled: boolean | null;
|
|
45426
45462
|
multiple: boolean | null;
|
|
45427
45463
|
readonly: boolean;
|
|
45428
45464
|
indeterminate: boolean;
|
|
@@ -45515,7 +45551,7 @@ declare const VSwitch: {
|
|
|
45515
45551
|
inset: boolean;
|
|
45516
45552
|
loading: string | boolean;
|
|
45517
45553
|
style: vue.StyleValue;
|
|
45518
|
-
disabled: boolean;
|
|
45554
|
+
disabled: boolean | null;
|
|
45519
45555
|
multiple: boolean | null;
|
|
45520
45556
|
readonly: boolean;
|
|
45521
45557
|
indeterminate: boolean;
|
|
@@ -45608,7 +45644,7 @@ declare const VSwitch: {
|
|
|
45608
45644
|
inset: boolean;
|
|
45609
45645
|
loading: string | boolean;
|
|
45610
45646
|
style: vue.StyleValue;
|
|
45611
|
-
disabled: boolean;
|
|
45647
|
+
disabled: boolean | null;
|
|
45612
45648
|
multiple: boolean | null;
|
|
45613
45649
|
readonly: boolean;
|
|
45614
45650
|
indeterminate: boolean;
|
|
@@ -45663,7 +45699,10 @@ declare const VSwitch: {
|
|
|
45663
45699
|
default: null;
|
|
45664
45700
|
};
|
|
45665
45701
|
color: StringConstructor;
|
|
45666
|
-
disabled:
|
|
45702
|
+
disabled: {
|
|
45703
|
+
type: vue.PropType<boolean | null>;
|
|
45704
|
+
default: null;
|
|
45705
|
+
};
|
|
45667
45706
|
defaultsTarget: StringConstructor;
|
|
45668
45707
|
error: BooleanConstructor;
|
|
45669
45708
|
id: StringConstructor;
|
|
@@ -45746,7 +45785,10 @@ declare const VSwitch: {
|
|
|
45746
45785
|
default: null;
|
|
45747
45786
|
};
|
|
45748
45787
|
color: StringConstructor;
|
|
45749
|
-
disabled:
|
|
45788
|
+
disabled: {
|
|
45789
|
+
type: vue.PropType<boolean | null>;
|
|
45790
|
+
default: null;
|
|
45791
|
+
};
|
|
45750
45792
|
defaultsTarget: StringConstructor;
|
|
45751
45793
|
error: BooleanConstructor;
|
|
45752
45794
|
id: StringConstructor;
|
|
@@ -55166,6 +55208,7 @@ declare const VVirtualScroll: {
|
|
|
55166
55208
|
$data: {};
|
|
55167
55209
|
$props: {
|
|
55168
55210
|
style?: vue.StyleValue | undefined;
|
|
55211
|
+
itemHeight?: string | number | undefined;
|
|
55169
55212
|
key?: string | number | symbol | undefined;
|
|
55170
55213
|
height?: string | number | undefined;
|
|
55171
55214
|
width?: string | number | undefined;
|
|
@@ -55215,7 +55258,6 @@ declare const VVirtualScroll: {
|
|
|
55215
55258
|
}>) => void) | ((vnode: vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55216
55259
|
[key: string]: any;
|
|
55217
55260
|
}>) => void)[] | undefined;
|
|
55218
|
-
itemHeight?: string | number | undefined;
|
|
55219
55261
|
};
|
|
55220
55262
|
$attrs: {
|
|
55221
55263
|
[x: string]: unknown;
|
|
@@ -55224,7 +55266,9 @@ declare const VVirtualScroll: {
|
|
|
55224
55266
|
[x: string]: unknown;
|
|
55225
55267
|
};
|
|
55226
55268
|
$slots: Readonly<{
|
|
55227
|
-
default?: ((arg: VVirtualScrollSlot<unknown>
|
|
55269
|
+
default?: ((arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
|
|
55270
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55271
|
+
})) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55228
55272
|
[key: string]: any;
|
|
55229
55273
|
}>[]) | undefined;
|
|
55230
55274
|
}>;
|
|
@@ -55234,6 +55278,7 @@ declare const VVirtualScroll: {
|
|
|
55234
55278
|
$el: any;
|
|
55235
55279
|
$options: vue.ComponentOptionsBase<{
|
|
55236
55280
|
style: vue.StyleValue;
|
|
55281
|
+
itemHeight: string | number;
|
|
55237
55282
|
} & {
|
|
55238
55283
|
height?: string | number | undefined;
|
|
55239
55284
|
width?: string | number | undefined;
|
|
@@ -55242,13 +55287,15 @@ declare const VVirtualScroll: {
|
|
|
55242
55287
|
minHeight?: string | number | undefined;
|
|
55243
55288
|
minWidth?: string | number | undefined;
|
|
55244
55289
|
class?: any;
|
|
55245
|
-
itemHeight?: string | number | undefined;
|
|
55246
55290
|
}, {
|
|
55247
55291
|
scrollToIndex: (index: number) => void;
|
|
55248
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots">, string, {
|
|
55292
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "renderless">, string, {
|
|
55249
55293
|
style: vue.StyleValue;
|
|
55294
|
+
itemHeight: string | number;
|
|
55250
55295
|
}, {}, string, vue.SlotsType<Partial<{
|
|
55251
|
-
default: (arg: VVirtualScrollSlot<unknown>
|
|
55296
|
+
default: (arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
|
|
55297
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55298
|
+
})) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55252
55299
|
[key: string]: any;
|
|
55253
55300
|
}>[];
|
|
55254
55301
|
}>>> & {
|
|
@@ -55273,6 +55320,7 @@ declare const VVirtualScroll: {
|
|
|
55273
55320
|
$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;
|
|
55274
55321
|
} & {
|
|
55275
55322
|
style: vue.StyleValue;
|
|
55323
|
+
itemHeight: string | number;
|
|
55276
55324
|
} & {
|
|
55277
55325
|
height?: string | number | undefined;
|
|
55278
55326
|
width?: string | number | undefined;
|
|
@@ -55281,7 +55329,6 @@ declare const VVirtualScroll: {
|
|
|
55281
55329
|
minHeight?: string | number | undefined;
|
|
55282
55330
|
minWidth?: string | number | undefined;
|
|
55283
55331
|
class?: any;
|
|
55284
|
-
itemHeight?: string | number | undefined;
|
|
55285
55332
|
} & vue.ShallowUnwrapRef<{
|
|
55286
55333
|
scrollToIndex: (index: number) => void;
|
|
55287
55334
|
}> & {} & vue.ComponentCustomProperties & {};
|
|
@@ -55290,6 +55337,7 @@ declare const VVirtualScroll: {
|
|
|
55290
55337
|
__isSuspense?: undefined;
|
|
55291
55338
|
} & vue.ComponentOptionsBase<{
|
|
55292
55339
|
style: vue.StyleValue;
|
|
55340
|
+
itemHeight: string | number;
|
|
55293
55341
|
} & {
|
|
55294
55342
|
height?: string | number | undefined;
|
|
55295
55343
|
width?: string | number | undefined;
|
|
@@ -55298,23 +55346,31 @@ declare const VVirtualScroll: {
|
|
|
55298
55346
|
minHeight?: string | number | undefined;
|
|
55299
55347
|
minWidth?: string | number | undefined;
|
|
55300
55348
|
class?: any;
|
|
55301
|
-
itemHeight?: string | number | undefined;
|
|
55302
55349
|
}, {
|
|
55303
55350
|
scrollToIndex: (index: number) => void;
|
|
55304
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots">, string, {
|
|
55351
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<Record<string, any>, "$children" | "v-slot:default" | "items" | "v-slots" | "renderless">, string, {
|
|
55305
55352
|
style: vue.StyleValue;
|
|
55353
|
+
itemHeight: string | number;
|
|
55306
55354
|
}, {}, string, vue.SlotsType<Partial<{
|
|
55307
|
-
default: (arg: VVirtualScrollSlot<unknown>
|
|
55355
|
+
default: (arg: VVirtualScrollSlot<unknown> | (VVirtualScrollSlot<unknown> & {
|
|
55356
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55357
|
+
})) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
55308
55358
|
[key: string]: any;
|
|
55309
55359
|
}>[];
|
|
55310
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T_1>(props: {
|
|
55360
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T_1, Renderless extends boolean = false>(props: {
|
|
55311
55361
|
items?: readonly T_1[] | undefined;
|
|
55362
|
+
renderless?: Renderless | undefined;
|
|
55312
55363
|
}, slots: {
|
|
55313
|
-
default: VVirtualScrollSlot<T_1
|
|
55364
|
+
default: VVirtualScrollSlot<T_1> & (Renderless extends true ? {
|
|
55365
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55366
|
+
} : {});
|
|
55314
55367
|
}) => GenericProps<{
|
|
55315
55368
|
items?: readonly T_1[] | undefined;
|
|
55369
|
+
renderless?: Renderless | undefined;
|
|
55316
55370
|
}, {
|
|
55317
|
-
default: VVirtualScrollSlot<T_1
|
|
55371
|
+
default: VVirtualScrollSlot<T_1> & (Renderless extends true ? {
|
|
55372
|
+
itemRef: Ref<HTMLElement | undefined>;
|
|
55373
|
+
} : {});
|
|
55318
55374
|
}>) & FilterPropsOptions<{
|
|
55319
55375
|
height: (StringConstructor | NumberConstructor)[];
|
|
55320
55376
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
@@ -55327,11 +55383,15 @@ declare const VVirtualScroll: {
|
|
|
55327
55383
|
type: PropType<vue.StyleValue>;
|
|
55328
55384
|
default: null;
|
|
55329
55385
|
};
|
|
55330
|
-
itemHeight:
|
|
55386
|
+
itemHeight: {
|
|
55387
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
55388
|
+
default: number;
|
|
55389
|
+
};
|
|
55331
55390
|
items: {
|
|
55332
55391
|
type: PropType<readonly unknown[]>;
|
|
55333
55392
|
default: () => never[];
|
|
55334
55393
|
};
|
|
55394
|
+
renderless: BooleanConstructor;
|
|
55335
55395
|
}, vue.ExtractPropTypes<{
|
|
55336
55396
|
height: (StringConstructor | NumberConstructor)[];
|
|
55337
55397
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
@@ -55344,11 +55404,15 @@ declare const VVirtualScroll: {
|
|
|
55344
55404
|
type: PropType<vue.StyleValue>;
|
|
55345
55405
|
default: null;
|
|
55346
55406
|
};
|
|
55347
|
-
itemHeight:
|
|
55407
|
+
itemHeight: {
|
|
55408
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
55409
|
+
default: number;
|
|
55410
|
+
};
|
|
55348
55411
|
items: {
|
|
55349
55412
|
type: PropType<readonly unknown[]>;
|
|
55350
55413
|
default: () => never[];
|
|
55351
55414
|
};
|
|
55415
|
+
renderless: BooleanConstructor;
|
|
55352
55416
|
}>>;
|
|
55353
55417
|
type VVirtualScroll = InstanceType<typeof VVirtualScroll>;
|
|
55354
55418
|
|