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.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
|
|
|
@@ -59988,50 +60052,50 @@ declare module '@vue/runtime-core' {
|
|
|
59988
60052
|
|
|
59989
60053
|
export interface GlobalComponents {
|
|
59990
60054
|
VApp: typeof import('vuetify/components')['VApp']
|
|
60055
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
|
60056
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
59991
60057
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
59992
60058
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
59993
60059
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
59994
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
|
59995
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
59996
60060
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
59997
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
59998
60061
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
60062
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
60063
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
59999
60064
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
60000
60065
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
60001
60066
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
60002
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
60003
60067
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
60004
60068
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
60005
60069
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
60006
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
60007
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
60008
60070
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
60071
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
60072
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
60073
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
60074
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
60009
60075
|
VCard: typeof import('vuetify/components')['VCard']
|
|
60010
60076
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
60011
60077
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
60012
60078
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
60013
60079
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
60014
60080
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
60015
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
60016
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
60017
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
60018
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
60019
60081
|
VChip: typeof import('vuetify/components')['VChip']
|
|
60020
60082
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
60083
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
60084
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
60021
60085
|
VCode: typeof import('vuetify/components')['VCode']
|
|
60022
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
60023
60086
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
60024
|
-
|
|
60087
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
60025
60088
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
60026
|
-
|
|
60089
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
60027
60090
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
60028
60091
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
60029
60092
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
60030
60093
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
60094
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
60031
60095
|
VField: typeof import('vuetify/components')['VField']
|
|
60032
60096
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
60033
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
60034
60097
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
60098
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
60035
60099
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
60036
60100
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
60037
60101
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
@@ -60041,8 +60105,8 @@ declare module '@vue/runtime-core' {
|
|
|
60041
60105
|
VInput: typeof import('vuetify/components')['VInput']
|
|
60042
60106
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
60043
60107
|
VItem: typeof import('vuetify/components')['VItem']
|
|
60044
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
60045
60108
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
60109
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
60046
60110
|
VList: typeof import('vuetify/components')['VList']
|
|
60047
60111
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
60048
60112
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -60060,17 +60124,17 @@ declare module '@vue/runtime-core' {
|
|
|
60060
60124
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
60061
60125
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
60062
60126
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
60063
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
60064
60127
|
VRating: typeof import('vuetify/components')['VRating']
|
|
60128
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
60065
60129
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
60066
60130
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
60067
60131
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
60068
60132
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
60133
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
60069
60134
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
60070
60135
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
60071
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
60072
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
60073
60136
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
60137
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
60074
60138
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
60075
60139
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
60076
60140
|
VTab: typeof import('vuetify/components')['VTab']
|
|
@@ -60085,25 +60149,25 @@ declare module '@vue/runtime-core' {
|
|
|
60085
60149
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
60086
60150
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
60087
60151
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
60088
|
-
|
|
60089
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
60152
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
60090
60153
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
60091
60154
|
VCol: typeof import('vuetify/components')['VCol']
|
|
60092
60155
|
VRow: typeof import('vuetify/components')['VRow']
|
|
60093
60156
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
60094
|
-
|
|
60157
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
60158
|
+
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
60095
60159
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
60096
60160
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
60097
60161
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
60098
60162
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
60099
60163
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
60100
60164
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
60101
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
60102
60165
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
60166
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
60103
60167
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
60104
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
60105
60168
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
60106
60169
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
60170
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
60107
60171
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
60108
60172
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
60109
60173
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|