@vuetify/nightly 3.8.7-dev.2025-05-27 → 3.8.7-dev.2025-05-30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -3
- package/dist/json/attributes.json +1893 -1885
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +140 -140
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +3286 -3266
- package/dist/vuetify-labs.cjs +36 -15
- package/dist/vuetify-labs.css +5222 -5222
- package/dist/vuetify-labs.d.ts +401 -213
- package/dist/vuetify-labs.esm.js +36 -15
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +36 -15
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +36 -15
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5419 -5419
- package/dist/vuetify.d.ts +345 -189
- package/dist/vuetify.esm.js +36 -15
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +36 -15
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +24 -19
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBarNavIcon.d.ts +20 -10
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +21 -7
- package/lib/components/VAutocomplete/VAutocomplete.js +2 -1
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBtn/VBtn.d.ts +20 -10
- package/lib/components/VCard/VCard.d.ts +20 -10
- package/lib/components/VCheckbox/VCheckbox.d.ts +20 -10
- package/lib/components/VCheckbox/VCheckboxBtn.d.ts +20 -10
- package/lib/components/VChip/VChip.d.ts +20 -10
- package/lib/components/VCombobox/VCombobox.d.ts +21 -7
- package/lib/components/VCombobox/VCombobox.js +2 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanels.d.ts +20 -10
- package/lib/components/VFab/VFab.d.ts +20 -10
- package/lib/components/VList/VList.d.ts +13 -0
- package/lib/components/VList/VList.js +4 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VList/VListItem.d.ts +23 -10
- package/lib/components/VList/VListItem.js +7 -3
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VList/list.d.ts +9 -2
- package/lib/components/VList/list.js +7 -0
- package/lib/components/VList/list.js.map +1 -1
- package/lib/components/VRadio/VRadio.d.ts +20 -10
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +20 -10
- package/lib/components/VSelect/VSelect.d.ts +33 -11
- package/lib/components/VSelectionControl/VSelectionControl.d.ts +20 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.d.ts +28 -14
- package/lib/components/VSlider/VSliderThumb.d.ts +20 -10
- package/lib/components/VStepper/VStepperItem.d.ts +28 -14
- package/lib/components/VSwitch/VSwitch.d.ts +20 -10
- package/lib/components/VTabs/VTab.d.ts +56 -28
- package/lib/directives/ripple/index.d.ts +2 -1
- package/lib/directives/ripple/index.js +12 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +53 -53
- package/lib/framework.js +1 -1
- package/lib/labs/VFileUpload/VFileUploadItem.d.ts +20 -10
- package/lib/labs/VStepperVertical/VStepperVertical.d.ts +20 -10
- package/lib/labs/VStepperVertical/VStepperVerticalItem.d.ts +20 -10
- package/lib/labs/VTreeview/VTreeview.d.ts +13 -0
- package/lib/labs/VTreeview/VTreeviewItem.d.ts +20 -10
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
|
@@ -4153,7 +4153,8 @@ type VAppBar = InstanceType<typeof VAppBar>;
|
|
|
4153
4153
|
|
|
4154
4154
|
interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {
|
|
4155
4155
|
value?: boolean | {
|
|
4156
|
-
class
|
|
4156
|
+
class?: string;
|
|
4157
|
+
keys?: number[];
|
|
4157
4158
|
};
|
|
4158
4159
|
modifiers: {
|
|
4159
4160
|
center?: boolean;
|
|
@@ -4227,7 +4228,8 @@ declare const VAppBarNavIcon: {
|
|
|
4227
4228
|
slim: boolean;
|
|
4228
4229
|
stacked: boolean;
|
|
4229
4230
|
ripple: boolean | {
|
|
4230
|
-
class
|
|
4231
|
+
class?: string;
|
|
4232
|
+
keys?: number[];
|
|
4231
4233
|
} | undefined;
|
|
4232
4234
|
} & {
|
|
4233
4235
|
location?: Anchor | null | undefined;
|
|
@@ -4294,7 +4296,8 @@ declare const VAppBarNavIcon: {
|
|
|
4294
4296
|
slim: boolean;
|
|
4295
4297
|
stacked: boolean;
|
|
4296
4298
|
ripple: boolean | {
|
|
4297
|
-
class
|
|
4299
|
+
class?: string;
|
|
4300
|
+
keys?: number[];
|
|
4298
4301
|
} | undefined;
|
|
4299
4302
|
}, true, {}, vue.SlotsType<Partial<{
|
|
4300
4303
|
default: () => vue.VNode[];
|
|
@@ -4326,7 +4329,8 @@ declare const VAppBarNavIcon: {
|
|
|
4326
4329
|
slim: boolean;
|
|
4327
4330
|
stacked: boolean;
|
|
4328
4331
|
ripple: boolean | {
|
|
4329
|
-
class
|
|
4332
|
+
class?: string;
|
|
4333
|
+
keys?: number[];
|
|
4330
4334
|
} | undefined;
|
|
4331
4335
|
} & {
|
|
4332
4336
|
location?: Anchor | null | undefined;
|
|
@@ -4393,7 +4397,8 @@ declare const VAppBarNavIcon: {
|
|
|
4393
4397
|
slim: boolean;
|
|
4394
4398
|
stacked: boolean;
|
|
4395
4399
|
ripple: boolean | {
|
|
4396
|
-
class
|
|
4400
|
+
class?: string;
|
|
4401
|
+
keys?: number[];
|
|
4397
4402
|
} | undefined;
|
|
4398
4403
|
}>;
|
|
4399
4404
|
__isFragment?: never;
|
|
@@ -4417,7 +4422,8 @@ declare const VAppBarNavIcon: {
|
|
|
4417
4422
|
slim: boolean;
|
|
4418
4423
|
stacked: boolean;
|
|
4419
4424
|
ripple: boolean | {
|
|
4420
|
-
class
|
|
4425
|
+
class?: string;
|
|
4426
|
+
keys?: number[];
|
|
4421
4427
|
} | undefined;
|
|
4422
4428
|
} & {
|
|
4423
4429
|
location?: Anchor | null | undefined;
|
|
@@ -4484,7 +4490,8 @@ declare const VAppBarNavIcon: {
|
|
|
4484
4490
|
slim: boolean;
|
|
4485
4491
|
stacked: boolean;
|
|
4486
4492
|
ripple: boolean | {
|
|
4487
|
-
class
|
|
4493
|
+
class?: string;
|
|
4494
|
+
keys?: number[];
|
|
4488
4495
|
} | undefined;
|
|
4489
4496
|
}, {}, string, vue.SlotsType<Partial<{
|
|
4490
4497
|
default: () => vue.VNode[];
|
|
@@ -6793,7 +6800,8 @@ declare const VListItem: {
|
|
|
6793
6800
|
tile: boolean;
|
|
6794
6801
|
slim: boolean;
|
|
6795
6802
|
ripple: boolean | {
|
|
6796
|
-
class
|
|
6803
|
+
class?: string;
|
|
6804
|
+
keys?: number[];
|
|
6797
6805
|
} | undefined;
|
|
6798
6806
|
} & {
|
|
6799
6807
|
link?: boolean | undefined;
|
|
@@ -6854,6 +6862,7 @@ declare const VListItem: {
|
|
|
6854
6862
|
isGroupActivator: boolean | undefined;
|
|
6855
6863
|
isSelected: vue.ComputedRef<boolean>;
|
|
6856
6864
|
list: {
|
|
6865
|
+
filterable: vue.MaybeRefOrGetter<boolean>;
|
|
6857
6866
|
hasPrepend: vue.Ref<boolean>;
|
|
6858
6867
|
updateHasPrepend: (value: boolean) => void;
|
|
6859
6868
|
} | null;
|
|
@@ -6895,7 +6904,8 @@ declare const VListItem: {
|
|
|
6895
6904
|
tile: boolean;
|
|
6896
6905
|
slim: boolean;
|
|
6897
6906
|
ripple: boolean | {
|
|
6898
|
-
class
|
|
6907
|
+
class?: string;
|
|
6908
|
+
keys?: number[];
|
|
6899
6909
|
} | undefined;
|
|
6900
6910
|
subtitle: string | number | boolean;
|
|
6901
6911
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -6923,7 +6933,8 @@ declare const VListItem: {
|
|
|
6923
6933
|
tile: boolean;
|
|
6924
6934
|
slim: boolean;
|
|
6925
6935
|
ripple: boolean | {
|
|
6926
|
-
class
|
|
6936
|
+
class?: string;
|
|
6937
|
+
keys?: number[];
|
|
6927
6938
|
} | undefined;
|
|
6928
6939
|
} & {
|
|
6929
6940
|
link?: boolean | undefined;
|
|
@@ -6984,6 +6995,7 @@ declare const VListItem: {
|
|
|
6984
6995
|
isGroupActivator: boolean | undefined;
|
|
6985
6996
|
isSelected: vue.ComputedRef<boolean>;
|
|
6986
6997
|
list: {
|
|
6998
|
+
filterable: vue.MaybeRefOrGetter<boolean>;
|
|
6987
6999
|
hasPrepend: vue.Ref<boolean>;
|
|
6988
7000
|
updateHasPrepend: (value: boolean) => void;
|
|
6989
7001
|
} | null;
|
|
@@ -7023,7 +7035,8 @@ declare const VListItem: {
|
|
|
7023
7035
|
tile: boolean;
|
|
7024
7036
|
slim: boolean;
|
|
7025
7037
|
ripple: boolean | {
|
|
7026
|
-
class
|
|
7038
|
+
class?: string;
|
|
7039
|
+
keys?: number[];
|
|
7027
7040
|
} | undefined;
|
|
7028
7041
|
subtitle: string | number | boolean;
|
|
7029
7042
|
}>;
|
|
@@ -7042,7 +7055,8 @@ declare const VListItem: {
|
|
|
7042
7055
|
tile: boolean;
|
|
7043
7056
|
slim: boolean;
|
|
7044
7057
|
ripple: boolean | {
|
|
7045
|
-
class
|
|
7058
|
+
class?: string;
|
|
7059
|
+
keys?: number[];
|
|
7046
7060
|
} | undefined;
|
|
7047
7061
|
} & {
|
|
7048
7062
|
link?: boolean | undefined;
|
|
@@ -7103,6 +7117,7 @@ declare const VListItem: {
|
|
|
7103
7117
|
isGroupActivator: boolean | undefined;
|
|
7104
7118
|
isSelected: vue.ComputedRef<boolean>;
|
|
7105
7119
|
list: {
|
|
7120
|
+
filterable: vue.MaybeRefOrGetter<boolean>;
|
|
7106
7121
|
hasPrepend: vue.Ref<boolean>;
|
|
7107
7122
|
updateHasPrepend: (value: boolean) => void;
|
|
7108
7123
|
} | null;
|
|
@@ -7144,7 +7159,8 @@ declare const VListItem: {
|
|
|
7144
7159
|
tile: boolean;
|
|
7145
7160
|
slim: boolean;
|
|
7146
7161
|
ripple: boolean | {
|
|
7147
|
-
class
|
|
7162
|
+
class?: string;
|
|
7163
|
+
keys?: number[];
|
|
7148
7164
|
} | undefined;
|
|
7149
7165
|
subtitle: string | number | boolean;
|
|
7150
7166
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -7375,6 +7391,7 @@ declare const VList: {
|
|
|
7375
7391
|
density: Density;
|
|
7376
7392
|
tile: boolean;
|
|
7377
7393
|
slim: boolean;
|
|
7394
|
+
filterable: boolean;
|
|
7378
7395
|
activatable: boolean;
|
|
7379
7396
|
selectable: boolean;
|
|
7380
7397
|
openStrategy: OpenStrategyProp;
|
|
@@ -7448,6 +7465,7 @@ declare const VList: {
|
|
|
7448
7465
|
rounded: string | number | boolean;
|
|
7449
7466
|
tile: boolean;
|
|
7450
7467
|
slim: boolean;
|
|
7468
|
+
filterable: boolean;
|
|
7451
7469
|
activatable: boolean;
|
|
7452
7470
|
selectable: boolean;
|
|
7453
7471
|
openStrategy: OpenStrategyProp;
|
|
@@ -7498,6 +7516,7 @@ declare const VList: {
|
|
|
7498
7516
|
density: Density;
|
|
7499
7517
|
tile: boolean;
|
|
7500
7518
|
slim: boolean;
|
|
7519
|
+
filterable: boolean;
|
|
7501
7520
|
activatable: boolean;
|
|
7502
7521
|
selectable: boolean;
|
|
7503
7522
|
openStrategy: OpenStrategyProp;
|
|
@@ -7552,6 +7571,7 @@ declare const VList: {
|
|
|
7552
7571
|
rounded: string | number | boolean;
|
|
7553
7572
|
tile: boolean;
|
|
7554
7573
|
slim: boolean;
|
|
7574
|
+
filterable: boolean;
|
|
7555
7575
|
activatable: boolean;
|
|
7556
7576
|
selectable: boolean;
|
|
7557
7577
|
openStrategy: OpenStrategyProp;
|
|
@@ -7573,6 +7593,7 @@ declare const VList: {
|
|
|
7573
7593
|
density: Density;
|
|
7574
7594
|
tile: boolean;
|
|
7575
7595
|
slim: boolean;
|
|
7596
|
+
filterable: boolean;
|
|
7576
7597
|
activatable: boolean;
|
|
7577
7598
|
selectable: boolean;
|
|
7578
7599
|
openStrategy: OpenStrategyProp;
|
|
@@ -7646,6 +7667,7 @@ declare const VList: {
|
|
|
7646
7667
|
rounded: string | number | boolean;
|
|
7647
7668
|
tile: boolean;
|
|
7648
7669
|
slim: boolean;
|
|
7670
|
+
filterable: boolean;
|
|
7649
7671
|
activatable: boolean;
|
|
7650
7672
|
selectable: boolean;
|
|
7651
7673
|
openStrategy: OpenStrategyProp;
|
|
@@ -7783,6 +7805,7 @@ declare const VList: {
|
|
|
7783
7805
|
activeClass: StringConstructor;
|
|
7784
7806
|
bgColor: StringConstructor;
|
|
7785
7807
|
disabled: BooleanConstructor;
|
|
7808
|
+
filterable: BooleanConstructor;
|
|
7786
7809
|
expandIcon: PropType<IconValue>;
|
|
7787
7810
|
collapseIcon: PropType<IconValue>;
|
|
7788
7811
|
lines: {
|
|
@@ -7889,6 +7912,7 @@ declare const VList: {
|
|
|
7889
7912
|
activeClass: StringConstructor;
|
|
7890
7913
|
bgColor: StringConstructor;
|
|
7891
7914
|
disabled: BooleanConstructor;
|
|
7915
|
+
filterable: BooleanConstructor;
|
|
7892
7916
|
expandIcon: PropType<IconValue>;
|
|
7893
7917
|
collapseIcon: PropType<IconValue>;
|
|
7894
7918
|
lines: {
|
|
@@ -11153,6 +11177,7 @@ declare const VAutocomplete: {
|
|
|
11153
11177
|
rounded: string | number | boolean;
|
|
11154
11178
|
tile: boolean;
|
|
11155
11179
|
slim: boolean;
|
|
11180
|
+
filterable: boolean;
|
|
11156
11181
|
activatable: boolean;
|
|
11157
11182
|
selectable: boolean;
|
|
11158
11183
|
openStrategy: OpenStrategyProp;
|
|
@@ -11170,6 +11195,7 @@ declare const VAutocomplete: {
|
|
|
11170
11195
|
density: Density;
|
|
11171
11196
|
tile: boolean;
|
|
11172
11197
|
slim: boolean;
|
|
11198
|
+
filterable: boolean;
|
|
11173
11199
|
activatable: boolean;
|
|
11174
11200
|
selectable: boolean;
|
|
11175
11201
|
openStrategy: OpenStrategyProp;
|
|
@@ -11201,7 +11227,7 @@ declare const VAutocomplete: {
|
|
|
11201
11227
|
value: boolean;
|
|
11202
11228
|
path: unknown[];
|
|
11203
11229
|
}) => any) | undefined;
|
|
11204
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
11230
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
11205
11231
|
items?: readonly any[] | undefined;
|
|
11206
11232
|
itemTitle?: SelectItemKey<any>;
|
|
11207
11233
|
itemValue?: SelectItemKey<any>;
|
|
@@ -13679,6 +13705,7 @@ declare const VAutocomplete: {
|
|
|
13679
13705
|
rounded: string | number | boolean;
|
|
13680
13706
|
tile: boolean;
|
|
13681
13707
|
slim: boolean;
|
|
13708
|
+
filterable: boolean;
|
|
13682
13709
|
activatable: boolean;
|
|
13683
13710
|
selectable: boolean;
|
|
13684
13711
|
openStrategy: OpenStrategyProp;
|
|
@@ -13696,6 +13723,7 @@ declare const VAutocomplete: {
|
|
|
13696
13723
|
density: Density;
|
|
13697
13724
|
tile: boolean;
|
|
13698
13725
|
slim: boolean;
|
|
13726
|
+
filterable: boolean;
|
|
13699
13727
|
activatable: boolean;
|
|
13700
13728
|
selectable: boolean;
|
|
13701
13729
|
openStrategy: OpenStrategyProp;
|
|
@@ -13727,7 +13755,7 @@ declare const VAutocomplete: {
|
|
|
13727
13755
|
value: boolean;
|
|
13728
13756
|
path: unknown[];
|
|
13729
13757
|
}) => any) | undefined;
|
|
13730
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
13758
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
13731
13759
|
items?: readonly any[] | undefined;
|
|
13732
13760
|
itemTitle?: SelectItemKey<any>;
|
|
13733
13761
|
itemValue?: SelectItemKey<any>;
|
|
@@ -16157,6 +16185,7 @@ declare const VAutocomplete: {
|
|
|
16157
16185
|
rounded: string | number | boolean;
|
|
16158
16186
|
tile: boolean;
|
|
16159
16187
|
slim: boolean;
|
|
16188
|
+
filterable: boolean;
|
|
16160
16189
|
activatable: boolean;
|
|
16161
16190
|
selectable: boolean;
|
|
16162
16191
|
openStrategy: OpenStrategyProp;
|
|
@@ -16174,6 +16203,7 @@ declare const VAutocomplete: {
|
|
|
16174
16203
|
density: Density;
|
|
16175
16204
|
tile: boolean;
|
|
16176
16205
|
slim: boolean;
|
|
16206
|
+
filterable: boolean;
|
|
16177
16207
|
activatable: boolean;
|
|
16178
16208
|
selectable: boolean;
|
|
16179
16209
|
openStrategy: OpenStrategyProp;
|
|
@@ -16205,7 +16235,7 @@ declare const VAutocomplete: {
|
|
|
16205
16235
|
value: boolean;
|
|
16206
16236
|
path: unknown[];
|
|
16207
16237
|
}) => any) | undefined;
|
|
16208
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
16238
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
16209
16239
|
items?: readonly any[] | undefined;
|
|
16210
16240
|
itemTitle?: SelectItemKey<any>;
|
|
16211
16241
|
itemValue?: SelectItemKey<any>;
|
|
@@ -22066,7 +22096,8 @@ declare const VBtn: {
|
|
|
22066
22096
|
slim: boolean;
|
|
22067
22097
|
stacked: boolean;
|
|
22068
22098
|
ripple: boolean | {
|
|
22069
|
-
class
|
|
22099
|
+
class?: string;
|
|
22100
|
+
keys?: number[];
|
|
22070
22101
|
} | undefined;
|
|
22071
22102
|
} & {
|
|
22072
22103
|
location?: Anchor | null | undefined;
|
|
@@ -22143,7 +22174,8 @@ declare const VBtn: {
|
|
|
22143
22174
|
slim: boolean;
|
|
22144
22175
|
stacked: boolean;
|
|
22145
22176
|
ripple: boolean | {
|
|
22146
|
-
class
|
|
22177
|
+
class?: string;
|
|
22178
|
+
keys?: number[];
|
|
22147
22179
|
} | undefined;
|
|
22148
22180
|
}, true, {}, vue.SlotsType<Partial<{
|
|
22149
22181
|
default: () => vue.VNode[];
|
|
@@ -22174,7 +22206,8 @@ declare const VBtn: {
|
|
|
22174
22206
|
slim: boolean;
|
|
22175
22207
|
stacked: boolean;
|
|
22176
22208
|
ripple: boolean | {
|
|
22177
|
-
class
|
|
22209
|
+
class?: string;
|
|
22210
|
+
keys?: number[];
|
|
22178
22211
|
} | undefined;
|
|
22179
22212
|
} & {
|
|
22180
22213
|
location?: Anchor | null | undefined;
|
|
@@ -22247,7 +22280,8 @@ declare const VBtn: {
|
|
|
22247
22280
|
slim: boolean;
|
|
22248
22281
|
stacked: boolean;
|
|
22249
22282
|
ripple: boolean | {
|
|
22250
|
-
class
|
|
22283
|
+
class?: string;
|
|
22284
|
+
keys?: number[];
|
|
22251
22285
|
} | undefined;
|
|
22252
22286
|
}>;
|
|
22253
22287
|
__isFragment?: never;
|
|
@@ -22270,7 +22304,8 @@ declare const VBtn: {
|
|
|
22270
22304
|
slim: boolean;
|
|
22271
22305
|
stacked: boolean;
|
|
22272
22306
|
ripple: boolean | {
|
|
22273
|
-
class
|
|
22307
|
+
class?: string;
|
|
22308
|
+
keys?: number[];
|
|
22274
22309
|
} | undefined;
|
|
22275
22310
|
} & {
|
|
22276
22311
|
location?: Anchor | null | undefined;
|
|
@@ -22347,7 +22382,8 @@ declare const VBtn: {
|
|
|
22347
22382
|
slim: boolean;
|
|
22348
22383
|
stacked: boolean;
|
|
22349
22384
|
ripple: boolean | {
|
|
22350
|
-
class
|
|
22385
|
+
class?: string;
|
|
22386
|
+
keys?: number[];
|
|
22351
22387
|
} | undefined;
|
|
22352
22388
|
}, {}, string, vue.SlotsType<Partial<{
|
|
22353
22389
|
default: () => vue.VNode[];
|
|
@@ -23158,7 +23194,8 @@ declare const VCard: {
|
|
|
23158
23194
|
density: Density;
|
|
23159
23195
|
tile: boolean;
|
|
23160
23196
|
ripple: boolean | {
|
|
23161
|
-
class
|
|
23197
|
+
class?: string;
|
|
23198
|
+
keys?: number[];
|
|
23162
23199
|
} | undefined;
|
|
23163
23200
|
hover: boolean;
|
|
23164
23201
|
} & {
|
|
@@ -23239,7 +23276,8 @@ declare const VCard: {
|
|
|
23239
23276
|
rounded: string | number | boolean;
|
|
23240
23277
|
tile: boolean;
|
|
23241
23278
|
ripple: boolean | {
|
|
23242
|
-
class
|
|
23279
|
+
class?: string;
|
|
23280
|
+
keys?: number[];
|
|
23243
23281
|
} | undefined;
|
|
23244
23282
|
subtitle: string | number | boolean;
|
|
23245
23283
|
hover: boolean;
|
|
@@ -23272,7 +23310,8 @@ declare const VCard: {
|
|
|
23272
23310
|
density: Density;
|
|
23273
23311
|
tile: boolean;
|
|
23274
23312
|
ripple: boolean | {
|
|
23275
|
-
class
|
|
23313
|
+
class?: string;
|
|
23314
|
+
keys?: number[];
|
|
23276
23315
|
} | undefined;
|
|
23277
23316
|
hover: boolean;
|
|
23278
23317
|
} & {
|
|
@@ -23353,7 +23392,8 @@ declare const VCard: {
|
|
|
23353
23392
|
rounded: string | number | boolean;
|
|
23354
23393
|
tile: boolean;
|
|
23355
23394
|
ripple: boolean | {
|
|
23356
|
-
class
|
|
23395
|
+
class?: string;
|
|
23396
|
+
keys?: number[];
|
|
23357
23397
|
} | undefined;
|
|
23358
23398
|
subtitle: string | number | boolean;
|
|
23359
23399
|
hover: boolean;
|
|
@@ -23372,7 +23412,8 @@ declare const VCard: {
|
|
|
23372
23412
|
density: Density;
|
|
23373
23413
|
tile: boolean;
|
|
23374
23414
|
ripple: boolean | {
|
|
23375
|
-
class
|
|
23415
|
+
class?: string;
|
|
23416
|
+
keys?: number[];
|
|
23376
23417
|
} | undefined;
|
|
23377
23418
|
hover: boolean;
|
|
23378
23419
|
} & {
|
|
@@ -23453,7 +23494,8 @@ declare const VCard: {
|
|
|
23453
23494
|
rounded: string | number | boolean;
|
|
23454
23495
|
tile: boolean;
|
|
23455
23496
|
ripple: boolean | {
|
|
23456
|
-
class
|
|
23497
|
+
class?: string;
|
|
23498
|
+
keys?: number[];
|
|
23457
23499
|
} | undefined;
|
|
23458
23500
|
subtitle: string | number | boolean;
|
|
23459
23501
|
hover: boolean;
|
|
@@ -25354,7 +25396,8 @@ declare const VSelectionControlGroup: {
|
|
|
25354
25396
|
valueComparator: typeof deepEqual;
|
|
25355
25397
|
density: Density;
|
|
25356
25398
|
ripple: boolean | {
|
|
25357
|
-
class
|
|
25399
|
+
class?: string;
|
|
25400
|
+
keys?: number[];
|
|
25358
25401
|
} | undefined;
|
|
25359
25402
|
defaultsTarget: string;
|
|
25360
25403
|
} & {
|
|
@@ -25378,7 +25421,8 @@ declare const VSelectionControlGroup: {
|
|
|
25378
25421
|
valueComparator: typeof deepEqual;
|
|
25379
25422
|
density: Density;
|
|
25380
25423
|
ripple: boolean | {
|
|
25381
|
-
class
|
|
25424
|
+
class?: string;
|
|
25425
|
+
keys?: number[];
|
|
25382
25426
|
} | undefined;
|
|
25383
25427
|
defaultsTarget: string;
|
|
25384
25428
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -25400,7 +25444,8 @@ declare const VSelectionControlGroup: {
|
|
|
25400
25444
|
valueComparator: typeof deepEqual;
|
|
25401
25445
|
density: Density;
|
|
25402
25446
|
ripple: boolean | {
|
|
25403
|
-
class
|
|
25447
|
+
class?: string;
|
|
25448
|
+
keys?: number[];
|
|
25404
25449
|
} | undefined;
|
|
25405
25450
|
defaultsTarget: string;
|
|
25406
25451
|
} & {
|
|
@@ -25422,7 +25467,8 @@ declare const VSelectionControlGroup: {
|
|
|
25422
25467
|
valueComparator: typeof deepEqual;
|
|
25423
25468
|
density: Density;
|
|
25424
25469
|
ripple: boolean | {
|
|
25425
|
-
class
|
|
25470
|
+
class?: string;
|
|
25471
|
+
keys?: number[];
|
|
25426
25472
|
} | undefined;
|
|
25427
25473
|
defaultsTarget: string;
|
|
25428
25474
|
}>;
|
|
@@ -25439,7 +25485,8 @@ declare const VSelectionControlGroup: {
|
|
|
25439
25485
|
valueComparator: typeof deepEqual;
|
|
25440
25486
|
density: Density;
|
|
25441
25487
|
ripple: boolean | {
|
|
25442
|
-
class
|
|
25488
|
+
class?: string;
|
|
25489
|
+
keys?: number[];
|
|
25443
25490
|
} | undefined;
|
|
25444
25491
|
defaultsTarget: string;
|
|
25445
25492
|
} & {
|
|
@@ -25463,7 +25510,8 @@ declare const VSelectionControlGroup: {
|
|
|
25463
25510
|
valueComparator: typeof deepEqual;
|
|
25464
25511
|
density: Density;
|
|
25465
25512
|
ripple: boolean | {
|
|
25466
|
-
class
|
|
25513
|
+
class?: string;
|
|
25514
|
+
keys?: number[];
|
|
25467
25515
|
} | undefined;
|
|
25468
25516
|
defaultsTarget: string;
|
|
25469
25517
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -25602,7 +25650,8 @@ declare const VSelectionControl: {
|
|
|
25602
25650
|
valueComparator: typeof deepEqual;
|
|
25603
25651
|
density: Density;
|
|
25604
25652
|
ripple: boolean | {
|
|
25605
|
-
class
|
|
25653
|
+
class?: string;
|
|
25654
|
+
keys?: number[];
|
|
25606
25655
|
} | undefined;
|
|
25607
25656
|
} & {
|
|
25608
25657
|
name?: string | undefined;
|
|
@@ -25634,7 +25683,8 @@ declare const VSelectionControl: {
|
|
|
25634
25683
|
valueComparator: typeof deepEqual;
|
|
25635
25684
|
density: Density;
|
|
25636
25685
|
ripple: boolean | {
|
|
25637
|
-
class
|
|
25686
|
+
class?: string;
|
|
25687
|
+
keys?: number[];
|
|
25638
25688
|
} | undefined;
|
|
25639
25689
|
}, true, {}, vue.SlotsType<Partial<{
|
|
25640
25690
|
default: (arg: {
|
|
@@ -25663,7 +25713,8 @@ declare const VSelectionControl: {
|
|
|
25663
25713
|
valueComparator: typeof deepEqual;
|
|
25664
25714
|
density: Density;
|
|
25665
25715
|
ripple: boolean | {
|
|
25666
|
-
class
|
|
25716
|
+
class?: string;
|
|
25717
|
+
keys?: number[];
|
|
25667
25718
|
} | undefined;
|
|
25668
25719
|
} & {
|
|
25669
25720
|
name?: string | undefined;
|
|
@@ -25693,7 +25744,8 @@ declare const VSelectionControl: {
|
|
|
25693
25744
|
valueComparator: typeof deepEqual;
|
|
25694
25745
|
density: Density;
|
|
25695
25746
|
ripple: boolean | {
|
|
25696
|
-
class
|
|
25747
|
+
class?: string;
|
|
25748
|
+
keys?: number[];
|
|
25697
25749
|
} | undefined;
|
|
25698
25750
|
}>;
|
|
25699
25751
|
__isFragment?: never;
|
|
@@ -25709,7 +25761,8 @@ declare const VSelectionControl: {
|
|
|
25709
25761
|
valueComparator: typeof deepEqual;
|
|
25710
25762
|
density: Density;
|
|
25711
25763
|
ripple: boolean | {
|
|
25712
|
-
class
|
|
25764
|
+
class?: string;
|
|
25765
|
+
keys?: number[];
|
|
25713
25766
|
} | undefined;
|
|
25714
25767
|
} & {
|
|
25715
25768
|
name?: string | undefined;
|
|
@@ -25741,7 +25794,8 @@ declare const VSelectionControl: {
|
|
|
25741
25794
|
valueComparator: typeof deepEqual;
|
|
25742
25795
|
density: Density;
|
|
25743
25796
|
ripple: boolean | {
|
|
25744
|
-
class
|
|
25797
|
+
class?: string;
|
|
25798
|
+
keys?: number[];
|
|
25745
25799
|
} | undefined;
|
|
25746
25800
|
}, {}, string, vue.SlotsType<Partial<{
|
|
25747
25801
|
default: (arg: {
|
|
@@ -25871,7 +25925,8 @@ declare const VCheckbox: {
|
|
|
25871
25925
|
valueComparator: typeof deepEqual;
|
|
25872
25926
|
density: Density;
|
|
25873
25927
|
ripple: boolean | {
|
|
25874
|
-
class
|
|
25928
|
+
class?: string;
|
|
25929
|
+
keys?: number[];
|
|
25875
25930
|
} | undefined;
|
|
25876
25931
|
falseIcon: IconValue;
|
|
25877
25932
|
trueIcon: IconValue;
|
|
@@ -25927,7 +25982,8 @@ declare const VCheckbox: {
|
|
|
25927
25982
|
valueComparator: typeof deepEqual;
|
|
25928
25983
|
density: Density;
|
|
25929
25984
|
ripple: boolean | {
|
|
25930
|
-
class
|
|
25985
|
+
class?: string;
|
|
25986
|
+
keys?: number[];
|
|
25931
25987
|
} | undefined;
|
|
25932
25988
|
falseIcon: IconValue;
|
|
25933
25989
|
trueIcon: IconValue;
|
|
@@ -25973,7 +26029,8 @@ declare const VCheckbox: {
|
|
|
25973
26029
|
valueComparator: typeof deepEqual;
|
|
25974
26030
|
density: Density;
|
|
25975
26031
|
ripple: boolean | {
|
|
25976
|
-
class
|
|
26032
|
+
class?: string;
|
|
26033
|
+
keys?: number[];
|
|
25977
26034
|
} | undefined;
|
|
25978
26035
|
falseIcon: IconValue;
|
|
25979
26036
|
trueIcon: IconValue;
|
|
@@ -26026,7 +26083,8 @@ declare const VCheckbox: {
|
|
|
26026
26083
|
valueComparator: typeof deepEqual;
|
|
26027
26084
|
density: Density;
|
|
26028
26085
|
ripple: boolean | {
|
|
26029
|
-
class
|
|
26086
|
+
class?: string;
|
|
26087
|
+
keys?: number[];
|
|
26030
26088
|
} | undefined;
|
|
26031
26089
|
falseIcon: IconValue;
|
|
26032
26090
|
trueIcon: IconValue;
|
|
@@ -26055,7 +26113,8 @@ declare const VCheckbox: {
|
|
|
26055
26113
|
valueComparator: typeof deepEqual;
|
|
26056
26114
|
density: Density;
|
|
26057
26115
|
ripple: boolean | {
|
|
26058
|
-
class
|
|
26116
|
+
class?: string;
|
|
26117
|
+
keys?: number[];
|
|
26059
26118
|
} | undefined;
|
|
26060
26119
|
falseIcon: IconValue;
|
|
26061
26120
|
trueIcon: IconValue;
|
|
@@ -26111,7 +26170,8 @@ declare const VCheckbox: {
|
|
|
26111
26170
|
valueComparator: typeof deepEqual;
|
|
26112
26171
|
density: Density;
|
|
26113
26172
|
ripple: boolean | {
|
|
26114
|
-
class
|
|
26173
|
+
class?: string;
|
|
26174
|
+
keys?: number[];
|
|
26115
26175
|
} | undefined;
|
|
26116
26176
|
falseIcon: IconValue;
|
|
26117
26177
|
trueIcon: IconValue;
|
|
@@ -26350,7 +26410,8 @@ declare const VCheckboxBtn: {
|
|
|
26350
26410
|
valueComparator: typeof deepEqual;
|
|
26351
26411
|
density: Density;
|
|
26352
26412
|
ripple: boolean | {
|
|
26353
|
-
class
|
|
26413
|
+
class?: string;
|
|
26414
|
+
keys?: number[];
|
|
26354
26415
|
} | undefined;
|
|
26355
26416
|
falseIcon: IconValue;
|
|
26356
26417
|
trueIcon: IconValue;
|
|
@@ -26384,7 +26445,8 @@ declare const VCheckboxBtn: {
|
|
|
26384
26445
|
valueComparator: typeof deepEqual;
|
|
26385
26446
|
density: Density;
|
|
26386
26447
|
ripple: boolean | {
|
|
26387
|
-
class
|
|
26448
|
+
class?: string;
|
|
26449
|
+
keys?: number[];
|
|
26388
26450
|
} | undefined;
|
|
26389
26451
|
falseIcon: IconValue;
|
|
26390
26452
|
trueIcon: IconValue;
|
|
@@ -26417,7 +26479,8 @@ declare const VCheckboxBtn: {
|
|
|
26417
26479
|
valueComparator: typeof deepEqual;
|
|
26418
26480
|
density: Density;
|
|
26419
26481
|
ripple: boolean | {
|
|
26420
|
-
class
|
|
26482
|
+
class?: string;
|
|
26483
|
+
keys?: number[];
|
|
26421
26484
|
} | undefined;
|
|
26422
26485
|
falseIcon: IconValue;
|
|
26423
26486
|
trueIcon: IconValue;
|
|
@@ -26448,7 +26511,8 @@ declare const VCheckboxBtn: {
|
|
|
26448
26511
|
valueComparator: typeof deepEqual;
|
|
26449
26512
|
density: Density;
|
|
26450
26513
|
ripple: boolean | {
|
|
26451
|
-
class
|
|
26514
|
+
class?: string;
|
|
26515
|
+
keys?: number[];
|
|
26452
26516
|
} | undefined;
|
|
26453
26517
|
falseIcon: IconValue;
|
|
26454
26518
|
trueIcon: IconValue;
|
|
@@ -26468,7 +26532,8 @@ declare const VCheckboxBtn: {
|
|
|
26468
26532
|
valueComparator: typeof deepEqual;
|
|
26469
26533
|
density: Density;
|
|
26470
26534
|
ripple: boolean | {
|
|
26471
|
-
class
|
|
26535
|
+
class?: string;
|
|
26536
|
+
keys?: number[];
|
|
26472
26537
|
} | undefined;
|
|
26473
26538
|
falseIcon: IconValue;
|
|
26474
26539
|
trueIcon: IconValue;
|
|
@@ -26502,7 +26567,8 @@ declare const VCheckboxBtn: {
|
|
|
26502
26567
|
valueComparator: typeof deepEqual;
|
|
26503
26568
|
density: Density;
|
|
26504
26569
|
ripple: boolean | {
|
|
26505
|
-
class
|
|
26570
|
+
class?: string;
|
|
26571
|
+
keys?: number[];
|
|
26506
26572
|
} | undefined;
|
|
26507
26573
|
falseIcon: IconValue;
|
|
26508
26574
|
trueIcon: IconValue;
|
|
@@ -26655,7 +26721,8 @@ declare const VChip: {
|
|
|
26655
26721
|
density: Density;
|
|
26656
26722
|
tile: boolean;
|
|
26657
26723
|
ripple: boolean | {
|
|
26658
|
-
class
|
|
26724
|
+
class?: string;
|
|
26725
|
+
keys?: number[];
|
|
26659
26726
|
} | undefined;
|
|
26660
26727
|
closable: boolean;
|
|
26661
26728
|
closeIcon: IconValue;
|
|
@@ -26767,7 +26834,8 @@ declare const VChip: {
|
|
|
26767
26834
|
rounded: string | number | boolean;
|
|
26768
26835
|
tile: boolean;
|
|
26769
26836
|
ripple: boolean | {
|
|
26770
|
-
class
|
|
26837
|
+
class?: string;
|
|
26838
|
+
keys?: number[];
|
|
26771
26839
|
} | undefined;
|
|
26772
26840
|
closable: boolean;
|
|
26773
26841
|
closeIcon: IconValue;
|
|
@@ -26810,7 +26878,8 @@ declare const VChip: {
|
|
|
26810
26878
|
density: Density;
|
|
26811
26879
|
tile: boolean;
|
|
26812
26880
|
ripple: boolean | {
|
|
26813
|
-
class
|
|
26881
|
+
class?: string;
|
|
26882
|
+
keys?: number[];
|
|
26814
26883
|
} | undefined;
|
|
26815
26884
|
closable: boolean;
|
|
26816
26885
|
closeIcon: IconValue;
|
|
@@ -26915,7 +26984,8 @@ declare const VChip: {
|
|
|
26915
26984
|
rounded: string | number | boolean;
|
|
26916
26985
|
tile: boolean;
|
|
26917
26986
|
ripple: boolean | {
|
|
26918
|
-
class
|
|
26987
|
+
class?: string;
|
|
26988
|
+
keys?: number[];
|
|
26919
26989
|
} | undefined;
|
|
26920
26990
|
closable: boolean;
|
|
26921
26991
|
closeIcon: IconValue;
|
|
@@ -26941,7 +27011,8 @@ declare const VChip: {
|
|
|
26941
27011
|
density: Density;
|
|
26942
27012
|
tile: boolean;
|
|
26943
27013
|
ripple: boolean | {
|
|
26944
|
-
class
|
|
27014
|
+
class?: string;
|
|
27015
|
+
keys?: number[];
|
|
26945
27016
|
} | undefined;
|
|
26946
27017
|
closable: boolean;
|
|
26947
27018
|
closeIcon: IconValue;
|
|
@@ -27053,7 +27124,8 @@ declare const VChip: {
|
|
|
27053
27124
|
rounded: string | number | boolean;
|
|
27054
27125
|
tile: boolean;
|
|
27055
27126
|
ripple: boolean | {
|
|
27056
|
-
class
|
|
27127
|
+
class?: string;
|
|
27128
|
+
keys?: number[];
|
|
27057
27129
|
} | undefined;
|
|
27058
27130
|
closable: boolean;
|
|
27059
27131
|
closeIcon: IconValue;
|
|
@@ -28260,6 +28332,7 @@ declare const VCombobox: {
|
|
|
28260
28332
|
rounded: string | number | boolean;
|
|
28261
28333
|
tile: boolean;
|
|
28262
28334
|
slim: boolean;
|
|
28335
|
+
filterable: boolean;
|
|
28263
28336
|
activatable: boolean;
|
|
28264
28337
|
selectable: boolean;
|
|
28265
28338
|
openStrategy: OpenStrategyProp;
|
|
@@ -28277,6 +28350,7 @@ declare const VCombobox: {
|
|
|
28277
28350
|
density: Density;
|
|
28278
28351
|
tile: boolean;
|
|
28279
28352
|
slim: boolean;
|
|
28353
|
+
filterable: boolean;
|
|
28280
28354
|
activatable: boolean;
|
|
28281
28355
|
selectable: boolean;
|
|
28282
28356
|
openStrategy: OpenStrategyProp;
|
|
@@ -28308,7 +28382,7 @@ declare const VCombobox: {
|
|
|
28308
28382
|
value: boolean;
|
|
28309
28383
|
path: unknown[];
|
|
28310
28384
|
}) => any) | undefined;
|
|
28311
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
28385
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
28312
28386
|
items?: readonly any[] | undefined;
|
|
28313
28387
|
itemTitle?: SelectItemKey<any>;
|
|
28314
28388
|
itemValue?: SelectItemKey<any>;
|
|
@@ -30784,6 +30858,7 @@ declare const VCombobox: {
|
|
|
30784
30858
|
rounded: string | number | boolean;
|
|
30785
30859
|
tile: boolean;
|
|
30786
30860
|
slim: boolean;
|
|
30861
|
+
filterable: boolean;
|
|
30787
30862
|
activatable: boolean;
|
|
30788
30863
|
selectable: boolean;
|
|
30789
30864
|
openStrategy: OpenStrategyProp;
|
|
@@ -30801,6 +30876,7 @@ declare const VCombobox: {
|
|
|
30801
30876
|
density: Density;
|
|
30802
30877
|
tile: boolean;
|
|
30803
30878
|
slim: boolean;
|
|
30879
|
+
filterable: boolean;
|
|
30804
30880
|
activatable: boolean;
|
|
30805
30881
|
selectable: boolean;
|
|
30806
30882
|
openStrategy: OpenStrategyProp;
|
|
@@ -30832,7 +30908,7 @@ declare const VCombobox: {
|
|
|
30832
30908
|
value: boolean;
|
|
30833
30909
|
path: unknown[];
|
|
30834
30910
|
}) => any) | undefined;
|
|
30835
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
30911
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
30836
30912
|
items?: readonly any[] | undefined;
|
|
30837
30913
|
itemTitle?: SelectItemKey<any>;
|
|
30838
30914
|
itemValue?: SelectItemKey<any>;
|
|
@@ -33260,6 +33336,7 @@ declare const VCombobox: {
|
|
|
33260
33336
|
rounded: string | number | boolean;
|
|
33261
33337
|
tile: boolean;
|
|
33262
33338
|
slim: boolean;
|
|
33339
|
+
filterable: boolean;
|
|
33263
33340
|
activatable: boolean;
|
|
33264
33341
|
selectable: boolean;
|
|
33265
33342
|
openStrategy: OpenStrategyProp;
|
|
@@ -33277,6 +33354,7 @@ declare const VCombobox: {
|
|
|
33277
33354
|
density: Density;
|
|
33278
33355
|
tile: boolean;
|
|
33279
33356
|
slim: boolean;
|
|
33357
|
+
filterable: boolean;
|
|
33280
33358
|
activatable: boolean;
|
|
33281
33359
|
selectable: boolean;
|
|
33282
33360
|
openStrategy: OpenStrategyProp;
|
|
@@ -33308,7 +33386,7 @@ declare const VCombobox: {
|
|
|
33308
33386
|
value: boolean;
|
|
33309
33387
|
path: unknown[];
|
|
33310
33388
|
}) => any) | undefined;
|
|
33311
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
33389
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
33312
33390
|
items?: readonly any[] | undefined;
|
|
33313
33391
|
itemTitle?: SelectItemKey<any>;
|
|
33314
33392
|
itemValue?: SelectItemKey<any>;
|
|
@@ -44449,7 +44527,8 @@ declare const VExpansionPanels: {
|
|
|
44449
44527
|
focusable: boolean;
|
|
44450
44528
|
tile: boolean;
|
|
44451
44529
|
ripple: boolean | {
|
|
44452
|
-
class
|
|
44530
|
+
class?: string;
|
|
44531
|
+
keys?: number[];
|
|
44453
44532
|
} | undefined;
|
|
44454
44533
|
collapseIcon: IconValue;
|
|
44455
44534
|
expandIcon: IconValue;
|
|
@@ -44496,7 +44575,8 @@ declare const VExpansionPanels: {
|
|
|
44496
44575
|
rounded: string | number | boolean;
|
|
44497
44576
|
tile: boolean;
|
|
44498
44577
|
ripple: boolean | {
|
|
44499
|
-
class
|
|
44578
|
+
class?: string;
|
|
44579
|
+
keys?: number[];
|
|
44500
44580
|
} | undefined;
|
|
44501
44581
|
collapseIcon: IconValue;
|
|
44502
44582
|
expandIcon: IconValue;
|
|
@@ -44523,7 +44603,8 @@ declare const VExpansionPanels: {
|
|
|
44523
44603
|
focusable: boolean;
|
|
44524
44604
|
tile: boolean;
|
|
44525
44605
|
ripple: boolean | {
|
|
44526
|
-
class
|
|
44606
|
+
class?: string;
|
|
44607
|
+
keys?: number[];
|
|
44527
44608
|
} | undefined;
|
|
44528
44609
|
collapseIcon: IconValue;
|
|
44529
44610
|
expandIcon: IconValue;
|
|
@@ -44568,7 +44649,8 @@ declare const VExpansionPanels: {
|
|
|
44568
44649
|
rounded: string | number | boolean;
|
|
44569
44650
|
tile: boolean;
|
|
44570
44651
|
ripple: boolean | {
|
|
44571
|
-
class
|
|
44652
|
+
class?: string;
|
|
44653
|
+
keys?: number[];
|
|
44572
44654
|
} | undefined;
|
|
44573
44655
|
collapseIcon: IconValue;
|
|
44574
44656
|
expandIcon: IconValue;
|
|
@@ -44590,7 +44672,8 @@ declare const VExpansionPanels: {
|
|
|
44590
44672
|
focusable: boolean;
|
|
44591
44673
|
tile: boolean;
|
|
44592
44674
|
ripple: boolean | {
|
|
44593
|
-
class
|
|
44675
|
+
class?: string;
|
|
44676
|
+
keys?: number[];
|
|
44594
44677
|
} | undefined;
|
|
44595
44678
|
collapseIcon: IconValue;
|
|
44596
44679
|
expandIcon: IconValue;
|
|
@@ -44637,7 +44720,8 @@ declare const VExpansionPanels: {
|
|
|
44637
44720
|
rounded: string | number | boolean;
|
|
44638
44721
|
tile: boolean;
|
|
44639
44722
|
ripple: boolean | {
|
|
44640
|
-
class
|
|
44723
|
+
class?: string;
|
|
44724
|
+
keys?: number[];
|
|
44641
44725
|
} | undefined;
|
|
44642
44726
|
collapseIcon: IconValue;
|
|
44643
44727
|
expandIcon: IconValue;
|
|
@@ -44766,7 +44850,8 @@ declare const VExpansionPanel: {
|
|
|
44766
44850
|
focusable: boolean;
|
|
44767
44851
|
tile: boolean;
|
|
44768
44852
|
ripple: boolean | {
|
|
44769
|
-
class
|
|
44853
|
+
class?: string;
|
|
44854
|
+
keys?: number[];
|
|
44770
44855
|
} | undefined;
|
|
44771
44856
|
collapseIcon: IconValue;
|
|
44772
44857
|
expandIcon: IconValue;
|
|
@@ -44823,7 +44908,8 @@ declare const VExpansionPanel: {
|
|
|
44823
44908
|
rounded: string | number | boolean;
|
|
44824
44909
|
tile: boolean;
|
|
44825
44910
|
ripple: boolean | {
|
|
44826
|
-
class
|
|
44911
|
+
class?: string;
|
|
44912
|
+
keys?: number[];
|
|
44827
44913
|
} | undefined;
|
|
44828
44914
|
collapseIcon: IconValue;
|
|
44829
44915
|
expandIcon: IconValue;
|
|
@@ -44849,7 +44935,8 @@ declare const VExpansionPanel: {
|
|
|
44849
44935
|
focusable: boolean;
|
|
44850
44936
|
tile: boolean;
|
|
44851
44937
|
ripple: boolean | {
|
|
44852
|
-
class
|
|
44938
|
+
class?: string;
|
|
44939
|
+
keys?: number[];
|
|
44853
44940
|
} | undefined;
|
|
44854
44941
|
collapseIcon: IconValue;
|
|
44855
44942
|
expandIcon: IconValue;
|
|
@@ -44902,7 +44989,8 @@ declare const VExpansionPanel: {
|
|
|
44902
44989
|
rounded: string | number | boolean;
|
|
44903
44990
|
tile: boolean;
|
|
44904
44991
|
ripple: boolean | {
|
|
44905
|
-
class
|
|
44992
|
+
class?: string;
|
|
44993
|
+
keys?: number[];
|
|
44906
44994
|
} | undefined;
|
|
44907
44995
|
collapseIcon: IconValue;
|
|
44908
44996
|
expandIcon: IconValue;
|
|
@@ -44921,7 +45009,8 @@ declare const VExpansionPanel: {
|
|
|
44921
45009
|
focusable: boolean;
|
|
44922
45010
|
tile: boolean;
|
|
44923
45011
|
ripple: boolean | {
|
|
44924
|
-
class
|
|
45012
|
+
class?: string;
|
|
45013
|
+
keys?: number[];
|
|
44925
45014
|
} | undefined;
|
|
44926
45015
|
collapseIcon: IconValue;
|
|
44927
45016
|
expandIcon: IconValue;
|
|
@@ -44978,7 +45067,8 @@ declare const VExpansionPanel: {
|
|
|
44978
45067
|
rounded: string | number | boolean;
|
|
44979
45068
|
tile: boolean;
|
|
44980
45069
|
ripple: boolean | {
|
|
44981
|
-
class
|
|
45070
|
+
class?: string;
|
|
45071
|
+
keys?: number[];
|
|
44982
45072
|
} | undefined;
|
|
44983
45073
|
collapseIcon: IconValue;
|
|
44984
45074
|
expandIcon: IconValue;
|
|
@@ -45186,7 +45276,8 @@ declare const VExpansionPanelTitle: {
|
|
|
45186
45276
|
static: boolean;
|
|
45187
45277
|
focusable: boolean;
|
|
45188
45278
|
ripple: boolean | {
|
|
45189
|
-
class
|
|
45279
|
+
class?: string;
|
|
45280
|
+
keys?: number[];
|
|
45190
45281
|
} | undefined;
|
|
45191
45282
|
collapseIcon: IconValue;
|
|
45192
45283
|
expandIcon: IconValue;
|
|
@@ -45218,7 +45309,8 @@ declare const VExpansionPanelTitle: {
|
|
|
45218
45309
|
static: boolean;
|
|
45219
45310
|
focusable: boolean;
|
|
45220
45311
|
ripple: boolean | {
|
|
45221
|
-
class
|
|
45312
|
+
class?: string;
|
|
45313
|
+
keys?: number[];
|
|
45222
45314
|
} | undefined;
|
|
45223
45315
|
collapseIcon: IconValue;
|
|
45224
45316
|
expandIcon: IconValue;
|
|
@@ -45239,7 +45331,8 @@ declare const VExpansionPanelTitle: {
|
|
|
45239
45331
|
static: boolean;
|
|
45240
45332
|
focusable: boolean;
|
|
45241
45333
|
ripple: boolean | {
|
|
45242
|
-
class
|
|
45334
|
+
class?: string;
|
|
45335
|
+
keys?: number[];
|
|
45243
45336
|
} | undefined;
|
|
45244
45337
|
collapseIcon: IconValue;
|
|
45245
45338
|
expandIcon: IconValue;
|
|
@@ -45271,7 +45364,8 @@ declare const VExpansionPanelTitle: {
|
|
|
45271
45364
|
static: boolean;
|
|
45272
45365
|
focusable: boolean;
|
|
45273
45366
|
ripple: boolean | {
|
|
45274
|
-
class
|
|
45367
|
+
class?: string;
|
|
45368
|
+
keys?: number[];
|
|
45275
45369
|
} | undefined;
|
|
45276
45370
|
collapseIcon: IconValue;
|
|
45277
45371
|
expandIcon: IconValue;
|
|
@@ -45286,7 +45380,8 @@ declare const VExpansionPanelTitle: {
|
|
|
45286
45380
|
static: boolean;
|
|
45287
45381
|
focusable: boolean;
|
|
45288
45382
|
ripple: boolean | {
|
|
45289
|
-
class
|
|
45383
|
+
class?: string;
|
|
45384
|
+
keys?: number[];
|
|
45290
45385
|
} | undefined;
|
|
45291
45386
|
collapseIcon: IconValue;
|
|
45292
45387
|
expandIcon: IconValue;
|
|
@@ -45318,7 +45413,8 @@ declare const VExpansionPanelTitle: {
|
|
|
45318
45413
|
static: boolean;
|
|
45319
45414
|
focusable: boolean;
|
|
45320
45415
|
ripple: boolean | {
|
|
45321
|
-
class
|
|
45416
|
+
class?: string;
|
|
45417
|
+
keys?: number[];
|
|
45322
45418
|
} | undefined;
|
|
45323
45419
|
collapseIcon: IconValue;
|
|
45324
45420
|
expandIcon: IconValue;
|
|
@@ -45416,7 +45512,8 @@ declare const VFab: {
|
|
|
45416
45512
|
slim: boolean;
|
|
45417
45513
|
stacked: boolean;
|
|
45418
45514
|
ripple: boolean | {
|
|
45419
|
-
class
|
|
45515
|
+
class?: string;
|
|
45516
|
+
keys?: number[];
|
|
45420
45517
|
} | undefined;
|
|
45421
45518
|
extended: boolean;
|
|
45422
45519
|
} & {
|
|
@@ -45489,7 +45586,8 @@ declare const VFab: {
|
|
|
45489
45586
|
slim: boolean;
|
|
45490
45587
|
stacked: boolean;
|
|
45491
45588
|
ripple: boolean | {
|
|
45492
|
-
class
|
|
45589
|
+
class?: string;
|
|
45590
|
+
keys?: number[];
|
|
45493
45591
|
} | undefined;
|
|
45494
45592
|
extended: boolean;
|
|
45495
45593
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -45529,7 +45627,8 @@ declare const VFab: {
|
|
|
45529
45627
|
slim: boolean;
|
|
45530
45628
|
stacked: boolean;
|
|
45531
45629
|
ripple: boolean | {
|
|
45532
|
-
class
|
|
45630
|
+
class?: string;
|
|
45631
|
+
keys?: number[];
|
|
45533
45632
|
} | undefined;
|
|
45534
45633
|
extended: boolean;
|
|
45535
45634
|
} & {
|
|
@@ -45600,7 +45699,8 @@ declare const VFab: {
|
|
|
45600
45699
|
slim: boolean;
|
|
45601
45700
|
stacked: boolean;
|
|
45602
45701
|
ripple: boolean | {
|
|
45603
|
-
class
|
|
45702
|
+
class?: string;
|
|
45703
|
+
keys?: number[];
|
|
45604
45704
|
} | undefined;
|
|
45605
45705
|
extended: boolean;
|
|
45606
45706
|
}>;
|
|
@@ -45635,7 +45735,8 @@ declare const VFab: {
|
|
|
45635
45735
|
slim: boolean;
|
|
45636
45736
|
stacked: boolean;
|
|
45637
45737
|
ripple: boolean | {
|
|
45638
|
-
class
|
|
45738
|
+
class?: string;
|
|
45739
|
+
keys?: number[];
|
|
45639
45740
|
} | undefined;
|
|
45640
45741
|
extended: boolean;
|
|
45641
45742
|
} & {
|
|
@@ -45708,7 +45809,8 @@ declare const VFab: {
|
|
|
45708
45809
|
slim: boolean;
|
|
45709
45810
|
stacked: boolean;
|
|
45710
45811
|
ripple: boolean | {
|
|
45711
|
-
class
|
|
45812
|
+
class?: string;
|
|
45813
|
+
keys?: number[];
|
|
45712
45814
|
} | undefined;
|
|
45713
45815
|
extended: boolean;
|
|
45714
45816
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -60415,7 +60517,8 @@ declare const VRadio: {
|
|
|
60415
60517
|
valueComparator: typeof deepEqual;
|
|
60416
60518
|
density: Density;
|
|
60417
60519
|
ripple: boolean | {
|
|
60418
|
-
class
|
|
60520
|
+
class?: string;
|
|
60521
|
+
keys?: number[];
|
|
60419
60522
|
} | undefined;
|
|
60420
60523
|
falseIcon: IconValue;
|
|
60421
60524
|
trueIcon: IconValue;
|
|
@@ -60479,7 +60582,8 @@ declare const VRadio: {
|
|
|
60479
60582
|
valueComparator: typeof deepEqual;
|
|
60480
60583
|
density: Density;
|
|
60481
60584
|
ripple: boolean | {
|
|
60482
|
-
class
|
|
60585
|
+
class?: string;
|
|
60586
|
+
keys?: number[];
|
|
60483
60587
|
} | undefined;
|
|
60484
60588
|
falseIcon: IconValue;
|
|
60485
60589
|
trueIcon: IconValue;
|
|
@@ -60510,7 +60614,8 @@ declare const VRadio: {
|
|
|
60510
60614
|
valueComparator: typeof deepEqual;
|
|
60511
60615
|
density: Density;
|
|
60512
60616
|
ripple: boolean | {
|
|
60513
|
-
class
|
|
60617
|
+
class?: string;
|
|
60618
|
+
keys?: number[];
|
|
60514
60619
|
} | undefined;
|
|
60515
60620
|
falseIcon: IconValue;
|
|
60516
60621
|
trueIcon: IconValue;
|
|
@@ -60574,7 +60679,8 @@ declare const VRadio: {
|
|
|
60574
60679
|
valueComparator: typeof deepEqual;
|
|
60575
60680
|
density: Density;
|
|
60576
60681
|
ripple: boolean | {
|
|
60577
|
-
class
|
|
60682
|
+
class?: string;
|
|
60683
|
+
keys?: number[];
|
|
60578
60684
|
} | undefined;
|
|
60579
60685
|
falseIcon: IconValue;
|
|
60580
60686
|
trueIcon: IconValue;
|
|
@@ -60592,7 +60698,8 @@ declare const VRadio: {
|
|
|
60592
60698
|
valueComparator: typeof deepEqual;
|
|
60593
60699
|
density: Density;
|
|
60594
60700
|
ripple: boolean | {
|
|
60595
|
-
class
|
|
60701
|
+
class?: string;
|
|
60702
|
+
keys?: number[];
|
|
60596
60703
|
} | undefined;
|
|
60597
60704
|
falseIcon: IconValue;
|
|
60598
60705
|
trueIcon: IconValue;
|
|
@@ -60656,7 +60763,8 @@ declare const VRadio: {
|
|
|
60656
60763
|
valueComparator: typeof deepEqual;
|
|
60657
60764
|
density: Density;
|
|
60658
60765
|
ripple: boolean | {
|
|
60659
|
-
class
|
|
60766
|
+
class?: string;
|
|
60767
|
+
keys?: number[];
|
|
60660
60768
|
} | undefined;
|
|
60661
60769
|
falseIcon: IconValue;
|
|
60662
60770
|
trueIcon: IconValue;
|
|
@@ -60804,7 +60912,8 @@ declare const VRadioGroup: {
|
|
|
60804
60912
|
valueComparator: typeof deepEqual;
|
|
60805
60913
|
density: Density;
|
|
60806
60914
|
ripple: boolean | {
|
|
60807
|
-
class
|
|
60915
|
+
class?: string;
|
|
60916
|
+
keys?: number[];
|
|
60808
60917
|
} | undefined;
|
|
60809
60918
|
falseIcon: IconValue;
|
|
60810
60919
|
trueIcon: IconValue;
|
|
@@ -60853,7 +60962,8 @@ declare const VRadioGroup: {
|
|
|
60853
60962
|
valueComparator: typeof deepEqual;
|
|
60854
60963
|
density: Density;
|
|
60855
60964
|
ripple: boolean | {
|
|
60856
|
-
class
|
|
60965
|
+
class?: string;
|
|
60966
|
+
keys?: number[];
|
|
60857
60967
|
} | undefined;
|
|
60858
60968
|
falseIcon: IconValue;
|
|
60859
60969
|
trueIcon: IconValue;
|
|
@@ -60895,7 +61005,8 @@ declare const VRadioGroup: {
|
|
|
60895
61005
|
valueComparator: typeof deepEqual;
|
|
60896
61006
|
density: Density;
|
|
60897
61007
|
ripple: boolean | {
|
|
60898
|
-
class
|
|
61008
|
+
class?: string;
|
|
61009
|
+
keys?: number[];
|
|
60899
61010
|
} | undefined;
|
|
60900
61011
|
falseIcon: IconValue;
|
|
60901
61012
|
trueIcon: IconValue;
|
|
@@ -60942,7 +61053,8 @@ declare const VRadioGroup: {
|
|
|
60942
61053
|
valueComparator: typeof deepEqual;
|
|
60943
61054
|
density: Density;
|
|
60944
61055
|
ripple: boolean | {
|
|
60945
|
-
class
|
|
61056
|
+
class?: string;
|
|
61057
|
+
keys?: number[];
|
|
60946
61058
|
} | undefined;
|
|
60947
61059
|
falseIcon: IconValue;
|
|
60948
61060
|
trueIcon: IconValue;
|
|
@@ -60971,7 +61083,8 @@ declare const VRadioGroup: {
|
|
|
60971
61083
|
valueComparator: typeof deepEqual;
|
|
60972
61084
|
density: Density;
|
|
60973
61085
|
ripple: boolean | {
|
|
60974
|
-
class
|
|
61086
|
+
class?: string;
|
|
61087
|
+
keys?: number[];
|
|
60975
61088
|
} | undefined;
|
|
60976
61089
|
falseIcon: IconValue;
|
|
60977
61090
|
trueIcon: IconValue;
|
|
@@ -61020,7 +61133,8 @@ declare const VRadioGroup: {
|
|
|
61020
61133
|
valueComparator: typeof deepEqual;
|
|
61021
61134
|
density: Density;
|
|
61022
61135
|
ripple: boolean | {
|
|
61023
|
-
class
|
|
61136
|
+
class?: string;
|
|
61137
|
+
keys?: number[];
|
|
61024
61138
|
} | undefined;
|
|
61025
61139
|
falseIcon: IconValue;
|
|
61026
61140
|
trueIcon: IconValue;
|
|
@@ -62515,6 +62629,7 @@ declare const VSelect: {
|
|
|
62515
62629
|
rounded: string | number | boolean;
|
|
62516
62630
|
tile: boolean;
|
|
62517
62631
|
slim: boolean;
|
|
62632
|
+
filterable: boolean;
|
|
62518
62633
|
activatable: boolean;
|
|
62519
62634
|
selectable: boolean;
|
|
62520
62635
|
openStrategy: OpenStrategyProp;
|
|
@@ -62532,6 +62647,7 @@ declare const VSelect: {
|
|
|
62532
62647
|
density: Density;
|
|
62533
62648
|
tile: boolean;
|
|
62534
62649
|
slim: boolean;
|
|
62650
|
+
filterable: boolean;
|
|
62535
62651
|
activatable: boolean;
|
|
62536
62652
|
selectable: boolean;
|
|
62537
62653
|
openStrategy: OpenStrategyProp;
|
|
@@ -62563,7 +62679,7 @@ declare const VSelect: {
|
|
|
62563
62679
|
value: boolean;
|
|
62564
62680
|
path: unknown[];
|
|
62565
62681
|
}) => any) | undefined;
|
|
62566
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
62682
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
62567
62683
|
items?: readonly any[] | undefined;
|
|
62568
62684
|
itemTitle?: SelectItemKey<any>;
|
|
62569
62685
|
itemValue?: SelectItemKey<any>;
|
|
@@ -65021,6 +65137,7 @@ declare const VSelect: {
|
|
|
65021
65137
|
rounded: string | number | boolean;
|
|
65022
65138
|
tile: boolean;
|
|
65023
65139
|
slim: boolean;
|
|
65140
|
+
filterable: boolean;
|
|
65024
65141
|
activatable: boolean;
|
|
65025
65142
|
selectable: boolean;
|
|
65026
65143
|
openStrategy: OpenStrategyProp;
|
|
@@ -65038,6 +65155,7 @@ declare const VSelect: {
|
|
|
65038
65155
|
density: Density;
|
|
65039
65156
|
tile: boolean;
|
|
65040
65157
|
slim: boolean;
|
|
65158
|
+
filterable: boolean;
|
|
65041
65159
|
activatable: boolean;
|
|
65042
65160
|
selectable: boolean;
|
|
65043
65161
|
openStrategy: OpenStrategyProp;
|
|
@@ -65069,7 +65187,7 @@ declare const VSelect: {
|
|
|
65069
65187
|
value: boolean;
|
|
65070
65188
|
path: unknown[];
|
|
65071
65189
|
}) => any) | undefined;
|
|
65072
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
65190
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
65073
65191
|
items?: readonly any[] | undefined;
|
|
65074
65192
|
itemTitle?: SelectItemKey<any>;
|
|
65075
65193
|
itemValue?: SelectItemKey<any>;
|
|
@@ -67480,6 +67598,7 @@ declare const VSelect: {
|
|
|
67480
67598
|
rounded: string | number | boolean;
|
|
67481
67599
|
tile: boolean;
|
|
67482
67600
|
slim: boolean;
|
|
67601
|
+
filterable: boolean;
|
|
67483
67602
|
activatable: boolean;
|
|
67484
67603
|
selectable: boolean;
|
|
67485
67604
|
openStrategy: OpenStrategyProp;
|
|
@@ -67497,6 +67616,7 @@ declare const VSelect: {
|
|
|
67497
67616
|
density: Density;
|
|
67498
67617
|
tile: boolean;
|
|
67499
67618
|
slim: boolean;
|
|
67619
|
+
filterable: boolean;
|
|
67500
67620
|
activatable: boolean;
|
|
67501
67621
|
selectable: boolean;
|
|
67502
67622
|
openStrategy: OpenStrategyProp;
|
|
@@ -67528,7 +67648,7 @@ declare const VSelect: {
|
|
|
67528
67648
|
value: boolean;
|
|
67529
67649
|
path: unknown[];
|
|
67530
67650
|
}) => any) | undefined;
|
|
67531
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
67651
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
|
67532
67652
|
items?: readonly any[] | undefined;
|
|
67533
67653
|
itemTitle?: SelectItemKey<any>;
|
|
67534
67654
|
itemValue?: SelectItemKey<any>;
|
|
@@ -73529,7 +73649,8 @@ declare const VStepperItem: {
|
|
|
73529
73649
|
disabled: boolean;
|
|
73530
73650
|
rules: readonly ValidationRule[];
|
|
73531
73651
|
ripple: boolean | {
|
|
73532
|
-
class
|
|
73652
|
+
class?: string;
|
|
73653
|
+
keys?: number[];
|
|
73533
73654
|
} | undefined;
|
|
73534
73655
|
completeIcon: IconValue;
|
|
73535
73656
|
editable: boolean;
|
|
@@ -73574,7 +73695,8 @@ declare const VStepperItem: {
|
|
|
73574
73695
|
disabled: boolean;
|
|
73575
73696
|
rules: readonly ValidationRule[];
|
|
73576
73697
|
ripple: boolean | {
|
|
73577
|
-
class
|
|
73698
|
+
class?: string;
|
|
73699
|
+
keys?: number[];
|
|
73578
73700
|
} | undefined;
|
|
73579
73701
|
completeIcon: IconValue;
|
|
73580
73702
|
editable: boolean;
|
|
@@ -73598,7 +73720,8 @@ declare const VStepperItem: {
|
|
|
73598
73720
|
disabled: boolean;
|
|
73599
73721
|
rules: readonly ValidationRule[];
|
|
73600
73722
|
ripple: boolean | {
|
|
73601
|
-
class
|
|
73723
|
+
class?: string;
|
|
73724
|
+
keys?: number[];
|
|
73602
73725
|
} | undefined;
|
|
73603
73726
|
completeIcon: IconValue;
|
|
73604
73727
|
editable: boolean;
|
|
@@ -73639,7 +73762,8 @@ declare const VStepperItem: {
|
|
|
73639
73762
|
disabled: boolean;
|
|
73640
73763
|
rules: readonly ValidationRule[];
|
|
73641
73764
|
ripple: boolean | {
|
|
73642
|
-
class
|
|
73765
|
+
class?: string;
|
|
73766
|
+
keys?: number[];
|
|
73643
73767
|
} | undefined;
|
|
73644
73768
|
completeIcon: IconValue;
|
|
73645
73769
|
editable: boolean;
|
|
@@ -73655,7 +73779,8 @@ declare const VStepperItem: {
|
|
|
73655
73779
|
disabled: boolean;
|
|
73656
73780
|
rules: readonly ValidationRule[];
|
|
73657
73781
|
ripple: boolean | {
|
|
73658
|
-
class
|
|
73782
|
+
class?: string;
|
|
73783
|
+
keys?: number[];
|
|
73659
73784
|
} | undefined;
|
|
73660
73785
|
completeIcon: IconValue;
|
|
73661
73786
|
editable: boolean;
|
|
@@ -73700,7 +73825,8 @@ declare const VStepperItem: {
|
|
|
73700
73825
|
disabled: boolean;
|
|
73701
73826
|
rules: readonly ValidationRule[];
|
|
73702
73827
|
ripple: boolean | {
|
|
73703
|
-
class
|
|
73828
|
+
class?: string;
|
|
73829
|
+
keys?: number[];
|
|
73704
73830
|
} | undefined;
|
|
73705
73831
|
completeIcon: IconValue;
|
|
73706
73832
|
editable: boolean;
|
|
@@ -74947,7 +75073,8 @@ declare const VSwitch: {
|
|
|
74947
75073
|
valueComparator: typeof deepEqual;
|
|
74948
75074
|
density: Density;
|
|
74949
75075
|
ripple: boolean | {
|
|
74950
|
-
class
|
|
75076
|
+
class?: string;
|
|
75077
|
+
keys?: number[];
|
|
74951
75078
|
} | undefined;
|
|
74952
75079
|
centerAffix: boolean;
|
|
74953
75080
|
glow: boolean;
|
|
@@ -75008,7 +75135,8 @@ declare const VSwitch: {
|
|
|
75008
75135
|
valueComparator: typeof deepEqual;
|
|
75009
75136
|
density: Density;
|
|
75010
75137
|
ripple: boolean | {
|
|
75011
|
-
class
|
|
75138
|
+
class?: string;
|
|
75139
|
+
keys?: number[];
|
|
75012
75140
|
} | undefined;
|
|
75013
75141
|
centerAffix: boolean;
|
|
75014
75142
|
glow: boolean;
|
|
@@ -75061,7 +75189,8 @@ declare const VSwitch: {
|
|
|
75061
75189
|
valueComparator: typeof deepEqual;
|
|
75062
75190
|
density: Density;
|
|
75063
75191
|
ripple: boolean | {
|
|
75064
|
-
class
|
|
75192
|
+
class?: string;
|
|
75193
|
+
keys?: number[];
|
|
75065
75194
|
} | undefined;
|
|
75066
75195
|
centerAffix: boolean;
|
|
75067
75196
|
glow: boolean;
|
|
@@ -75118,7 +75247,8 @@ declare const VSwitch: {
|
|
|
75118
75247
|
valueComparator: typeof deepEqual;
|
|
75119
75248
|
density: Density;
|
|
75120
75249
|
ripple: boolean | {
|
|
75121
|
-
class
|
|
75250
|
+
class?: string;
|
|
75251
|
+
keys?: number[];
|
|
75122
75252
|
} | undefined;
|
|
75123
75253
|
centerAffix: boolean;
|
|
75124
75254
|
glow: boolean;
|
|
@@ -75148,7 +75278,8 @@ declare const VSwitch: {
|
|
|
75148
75278
|
valueComparator: typeof deepEqual;
|
|
75149
75279
|
density: Density;
|
|
75150
75280
|
ripple: boolean | {
|
|
75151
|
-
class
|
|
75281
|
+
class?: string;
|
|
75282
|
+
keys?: number[];
|
|
75152
75283
|
} | undefined;
|
|
75153
75284
|
centerAffix: boolean;
|
|
75154
75285
|
glow: boolean;
|
|
@@ -75209,7 +75340,8 @@ declare const VSwitch: {
|
|
|
75209
75340
|
valueComparator: typeof deepEqual;
|
|
75210
75341
|
density: Density;
|
|
75211
75342
|
ripple: boolean | {
|
|
75212
|
-
class
|
|
75343
|
+
class?: string;
|
|
75344
|
+
keys?: number[];
|
|
75213
75345
|
} | undefined;
|
|
75214
75346
|
centerAffix: boolean;
|
|
75215
75347
|
glow: boolean;
|
|
@@ -75628,7 +75760,8 @@ declare const VTab: {
|
|
|
75628
75760
|
slim: boolean;
|
|
75629
75761
|
stacked: boolean;
|
|
75630
75762
|
ripple: boolean | {
|
|
75631
|
-
class
|
|
75763
|
+
class?: string;
|
|
75764
|
+
keys?: number[];
|
|
75632
75765
|
} | undefined;
|
|
75633
75766
|
hideSlider: boolean;
|
|
75634
75767
|
} & {
|
|
@@ -75696,7 +75829,8 @@ declare const VTab: {
|
|
|
75696
75829
|
slim: boolean;
|
|
75697
75830
|
stacked: boolean;
|
|
75698
75831
|
ripple: boolean | {
|
|
75699
|
-
class
|
|
75832
|
+
class?: string;
|
|
75833
|
+
keys?: number[];
|
|
75700
75834
|
} | undefined;
|
|
75701
75835
|
}> & Omit<{
|
|
75702
75836
|
symbol: any;
|
|
@@ -75715,7 +75849,8 @@ declare const VTab: {
|
|
|
75715
75849
|
slim: boolean;
|
|
75716
75850
|
stacked: boolean;
|
|
75717
75851
|
ripple: boolean | {
|
|
75718
|
-
class
|
|
75852
|
+
class?: string;
|
|
75853
|
+
keys?: number[];
|
|
75719
75854
|
} | undefined;
|
|
75720
75855
|
location?: Anchor | null | undefined;
|
|
75721
75856
|
height?: string | number | undefined;
|
|
@@ -75799,7 +75934,8 @@ declare const VTab: {
|
|
|
75799
75934
|
slim: boolean;
|
|
75800
75935
|
stacked: boolean;
|
|
75801
75936
|
ripple: boolean | {
|
|
75802
|
-
class
|
|
75937
|
+
class?: string;
|
|
75938
|
+
keys?: number[];
|
|
75803
75939
|
} | undefined;
|
|
75804
75940
|
} & {
|
|
75805
75941
|
location?: Anchor | null | undefined;
|
|
@@ -75876,7 +76012,8 @@ declare const VTab: {
|
|
|
75876
76012
|
slim: boolean;
|
|
75877
76013
|
stacked: boolean;
|
|
75878
76014
|
ripple: boolean | {
|
|
75879
|
-
class
|
|
76015
|
+
class?: string;
|
|
76016
|
+
keys?: number[];
|
|
75880
76017
|
} | undefined;
|
|
75881
76018
|
}, {}, string, vue.SlotsType<Partial<{
|
|
75882
76019
|
default: () => vue.VNode[];
|
|
@@ -75923,7 +76060,8 @@ declare const VTab: {
|
|
|
75923
76060
|
slim: boolean;
|
|
75924
76061
|
stacked: boolean;
|
|
75925
76062
|
ripple: boolean | {
|
|
75926
|
-
class
|
|
76063
|
+
class?: string;
|
|
76064
|
+
keys?: number[];
|
|
75927
76065
|
} | undefined;
|
|
75928
76066
|
}> & Omit<{
|
|
75929
76067
|
symbol: any;
|
|
@@ -75942,7 +76080,8 @@ declare const VTab: {
|
|
|
75942
76080
|
slim: boolean;
|
|
75943
76081
|
stacked: boolean;
|
|
75944
76082
|
ripple: boolean | {
|
|
75945
|
-
class
|
|
76083
|
+
class?: string;
|
|
76084
|
+
keys?: number[];
|
|
75946
76085
|
} | undefined;
|
|
75947
76086
|
} & {
|
|
75948
76087
|
location?: Anchor | null | undefined;
|
|
@@ -76018,7 +76157,8 @@ declare const VTab: {
|
|
|
76018
76157
|
slim: boolean;
|
|
76019
76158
|
stacked: boolean;
|
|
76020
76159
|
ripple: boolean | {
|
|
76021
|
-
class
|
|
76160
|
+
class?: string;
|
|
76161
|
+
keys?: number[];
|
|
76022
76162
|
} | undefined;
|
|
76023
76163
|
hideSlider: boolean;
|
|
76024
76164
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -76050,7 +76190,8 @@ declare const VTab: {
|
|
|
76050
76190
|
slim: boolean;
|
|
76051
76191
|
stacked: boolean;
|
|
76052
76192
|
ripple: boolean | {
|
|
76053
|
-
class
|
|
76193
|
+
class?: string;
|
|
76194
|
+
keys?: number[];
|
|
76054
76195
|
} | undefined;
|
|
76055
76196
|
hideSlider: boolean;
|
|
76056
76197
|
} & {
|
|
@@ -76118,7 +76259,8 @@ declare const VTab: {
|
|
|
76118
76259
|
slim: boolean;
|
|
76119
76260
|
stacked: boolean;
|
|
76120
76261
|
ripple: boolean | {
|
|
76121
|
-
class
|
|
76262
|
+
class?: string;
|
|
76263
|
+
keys?: number[];
|
|
76122
76264
|
} | undefined;
|
|
76123
76265
|
}> & Omit<{
|
|
76124
76266
|
symbol: any;
|
|
@@ -76137,7 +76279,8 @@ declare const VTab: {
|
|
|
76137
76279
|
slim: boolean;
|
|
76138
76280
|
stacked: boolean;
|
|
76139
76281
|
ripple: boolean | {
|
|
76140
|
-
class
|
|
76282
|
+
class?: string;
|
|
76283
|
+
keys?: number[];
|
|
76141
76284
|
} | undefined;
|
|
76142
76285
|
location?: Anchor | null | undefined;
|
|
76143
76286
|
height?: string | number | undefined;
|
|
@@ -76221,7 +76364,8 @@ declare const VTab: {
|
|
|
76221
76364
|
slim: boolean;
|
|
76222
76365
|
stacked: boolean;
|
|
76223
76366
|
ripple: boolean | {
|
|
76224
|
-
class
|
|
76367
|
+
class?: string;
|
|
76368
|
+
keys?: number[];
|
|
76225
76369
|
} | undefined;
|
|
76226
76370
|
} & {
|
|
76227
76371
|
location?: Anchor | null | undefined;
|
|
@@ -76298,7 +76442,8 @@ declare const VTab: {
|
|
|
76298
76442
|
slim: boolean;
|
|
76299
76443
|
stacked: boolean;
|
|
76300
76444
|
ripple: boolean | {
|
|
76301
|
-
class
|
|
76445
|
+
class?: string;
|
|
76446
|
+
keys?: number[];
|
|
76302
76447
|
} | undefined;
|
|
76303
76448
|
}, {}, string, vue.SlotsType<Partial<{
|
|
76304
76449
|
default: () => vue.VNode[];
|
|
@@ -76345,7 +76490,8 @@ declare const VTab: {
|
|
|
76345
76490
|
slim: boolean;
|
|
76346
76491
|
stacked: boolean;
|
|
76347
76492
|
ripple: boolean | {
|
|
76348
|
-
class
|
|
76493
|
+
class?: string;
|
|
76494
|
+
keys?: number[];
|
|
76349
76495
|
} | undefined;
|
|
76350
76496
|
}> & Omit<{
|
|
76351
76497
|
symbol: any;
|
|
@@ -76364,7 +76510,8 @@ declare const VTab: {
|
|
|
76364
76510
|
slim: boolean;
|
|
76365
76511
|
stacked: boolean;
|
|
76366
76512
|
ripple: boolean | {
|
|
76367
|
-
class
|
|
76513
|
+
class?: string;
|
|
76514
|
+
keys?: number[];
|
|
76368
76515
|
} | undefined;
|
|
76369
76516
|
} & {
|
|
76370
76517
|
location?: Anchor | null | undefined;
|
|
@@ -76440,7 +76587,8 @@ declare const VTab: {
|
|
|
76440
76587
|
slim: boolean;
|
|
76441
76588
|
stacked: boolean;
|
|
76442
76589
|
ripple: boolean | {
|
|
76443
|
-
class
|
|
76590
|
+
class?: string;
|
|
76591
|
+
keys?: number[];
|
|
76444
76592
|
} | undefined;
|
|
76445
76593
|
hideSlider: boolean;
|
|
76446
76594
|
}>;
|
|
@@ -76464,7 +76612,8 @@ declare const VTab: {
|
|
|
76464
76612
|
slim: boolean;
|
|
76465
76613
|
stacked: boolean;
|
|
76466
76614
|
ripple: boolean | {
|
|
76467
|
-
class
|
|
76615
|
+
class?: string;
|
|
76616
|
+
keys?: number[];
|
|
76468
76617
|
} | undefined;
|
|
76469
76618
|
hideSlider: boolean;
|
|
76470
76619
|
} & {
|
|
@@ -76532,7 +76681,8 @@ declare const VTab: {
|
|
|
76532
76681
|
slim: boolean;
|
|
76533
76682
|
stacked: boolean;
|
|
76534
76683
|
ripple: boolean | {
|
|
76535
|
-
class
|
|
76684
|
+
class?: string;
|
|
76685
|
+
keys?: number[];
|
|
76536
76686
|
} | undefined;
|
|
76537
76687
|
}> & Omit<{
|
|
76538
76688
|
symbol: any;
|
|
@@ -76551,7 +76701,8 @@ declare const VTab: {
|
|
|
76551
76701
|
slim: boolean;
|
|
76552
76702
|
stacked: boolean;
|
|
76553
76703
|
ripple: boolean | {
|
|
76554
|
-
class
|
|
76704
|
+
class?: string;
|
|
76705
|
+
keys?: number[];
|
|
76555
76706
|
} | undefined;
|
|
76556
76707
|
location?: Anchor | null | undefined;
|
|
76557
76708
|
height?: string | number | undefined;
|
|
@@ -76635,7 +76786,8 @@ declare const VTab: {
|
|
|
76635
76786
|
slim: boolean;
|
|
76636
76787
|
stacked: boolean;
|
|
76637
76788
|
ripple: boolean | {
|
|
76638
|
-
class
|
|
76789
|
+
class?: string;
|
|
76790
|
+
keys?: number[];
|
|
76639
76791
|
} | undefined;
|
|
76640
76792
|
} & {
|
|
76641
76793
|
location?: Anchor | null | undefined;
|
|
@@ -76712,7 +76864,8 @@ declare const VTab: {
|
|
|
76712
76864
|
slim: boolean;
|
|
76713
76865
|
stacked: boolean;
|
|
76714
76866
|
ripple: boolean | {
|
|
76715
|
-
class
|
|
76867
|
+
class?: string;
|
|
76868
|
+
keys?: number[];
|
|
76716
76869
|
} | undefined;
|
|
76717
76870
|
}, {}, string, vue.SlotsType<Partial<{
|
|
76718
76871
|
default: () => vue.VNode[];
|
|
@@ -76759,7 +76912,8 @@ declare const VTab: {
|
|
|
76759
76912
|
slim: boolean;
|
|
76760
76913
|
stacked: boolean;
|
|
76761
76914
|
ripple: boolean | {
|
|
76762
|
-
class
|
|
76915
|
+
class?: string;
|
|
76916
|
+
keys?: number[];
|
|
76763
76917
|
} | undefined;
|
|
76764
76918
|
}> & Omit<{
|
|
76765
76919
|
symbol: any;
|
|
@@ -76778,7 +76932,8 @@ declare const VTab: {
|
|
|
76778
76932
|
slim: boolean;
|
|
76779
76933
|
stacked: boolean;
|
|
76780
76934
|
ripple: boolean | {
|
|
76781
|
-
class
|
|
76935
|
+
class?: string;
|
|
76936
|
+
keys?: number[];
|
|
76782
76937
|
} | undefined;
|
|
76783
76938
|
} & {
|
|
76784
76939
|
location?: Anchor | null | undefined;
|
|
@@ -76854,7 +77009,8 @@ declare const VTab: {
|
|
|
76854
77009
|
slim: boolean;
|
|
76855
77010
|
stacked: boolean;
|
|
76856
77011
|
ripple: boolean | {
|
|
76857
|
-
class
|
|
77012
|
+
class?: string;
|
|
77013
|
+
keys?: number[];
|
|
76858
77014
|
} | undefined;
|
|
76859
77015
|
hideSlider: boolean;
|
|
76860
77016
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -97433,7 +97589,8 @@ declare const VFileUploadItem: {
|
|
|
97433
97589
|
tile: boolean;
|
|
97434
97590
|
slim: boolean;
|
|
97435
97591
|
ripple: boolean | {
|
|
97436
|
-
class
|
|
97592
|
+
class?: string;
|
|
97593
|
+
keys?: number[];
|
|
97437
97594
|
} | undefined;
|
|
97438
97595
|
clearable: boolean;
|
|
97439
97596
|
showSize: boolean;
|
|
@@ -97526,7 +97683,8 @@ declare const VFileUploadItem: {
|
|
|
97526
97683
|
tile: boolean;
|
|
97527
97684
|
slim: boolean;
|
|
97528
97685
|
ripple: boolean | {
|
|
97529
|
-
class
|
|
97686
|
+
class?: string;
|
|
97687
|
+
keys?: number[];
|
|
97530
97688
|
} | undefined;
|
|
97531
97689
|
subtitle: string | number | boolean;
|
|
97532
97690
|
clearable: boolean;
|
|
@@ -97566,7 +97724,8 @@ declare const VFileUploadItem: {
|
|
|
97566
97724
|
tile: boolean;
|
|
97567
97725
|
slim: boolean;
|
|
97568
97726
|
ripple: boolean | {
|
|
97569
|
-
class
|
|
97727
|
+
class?: string;
|
|
97728
|
+
keys?: number[];
|
|
97570
97729
|
} | undefined;
|
|
97571
97730
|
clearable: boolean;
|
|
97572
97731
|
showSize: boolean;
|
|
@@ -97656,7 +97815,8 @@ declare const VFileUploadItem: {
|
|
|
97656
97815
|
tile: boolean;
|
|
97657
97816
|
slim: boolean;
|
|
97658
97817
|
ripple: boolean | {
|
|
97659
|
-
class
|
|
97818
|
+
class?: string;
|
|
97819
|
+
keys?: number[];
|
|
97660
97820
|
} | undefined;
|
|
97661
97821
|
subtitle: string | number | boolean;
|
|
97662
97822
|
clearable: boolean;
|
|
@@ -97682,7 +97842,8 @@ declare const VFileUploadItem: {
|
|
|
97682
97842
|
tile: boolean;
|
|
97683
97843
|
slim: boolean;
|
|
97684
97844
|
ripple: boolean | {
|
|
97685
|
-
class
|
|
97845
|
+
class?: string;
|
|
97846
|
+
keys?: number[];
|
|
97686
97847
|
} | undefined;
|
|
97687
97848
|
clearable: boolean;
|
|
97688
97849
|
showSize: boolean;
|
|
@@ -97775,7 +97936,8 @@ declare const VFileUploadItem: {
|
|
|
97775
97936
|
tile: boolean;
|
|
97776
97937
|
slim: boolean;
|
|
97777
97938
|
ripple: boolean | {
|
|
97778
|
-
class
|
|
97939
|
+
class?: string;
|
|
97940
|
+
keys?: number[];
|
|
97779
97941
|
} | undefined;
|
|
97780
97942
|
subtitle: string | number | boolean;
|
|
97781
97943
|
clearable: boolean;
|
|
@@ -98105,7 +98267,8 @@ declare const VStepperVerticalItem: {
|
|
|
98105
98267
|
rules: readonly ValidationRule[];
|
|
98106
98268
|
tile: boolean;
|
|
98107
98269
|
ripple: boolean | {
|
|
98108
|
-
class
|
|
98270
|
+
class?: string;
|
|
98271
|
+
keys?: number[];
|
|
98109
98272
|
} | undefined;
|
|
98110
98273
|
collapseIcon: IconValue;
|
|
98111
98274
|
expandIcon: IconValue;
|
|
@@ -98184,7 +98347,8 @@ declare const VStepperVerticalItem: {
|
|
|
98184
98347
|
rounded: string | number | boolean;
|
|
98185
98348
|
tile: boolean;
|
|
98186
98349
|
ripple: boolean | {
|
|
98187
|
-
class
|
|
98350
|
+
class?: string;
|
|
98351
|
+
keys?: number[];
|
|
98188
98352
|
} | undefined;
|
|
98189
98353
|
collapseIcon: IconValue;
|
|
98190
98354
|
expandIcon: IconValue;
|
|
@@ -98222,7 +98386,8 @@ declare const VStepperVerticalItem: {
|
|
|
98222
98386
|
rules: readonly ValidationRule[];
|
|
98223
98387
|
tile: boolean;
|
|
98224
98388
|
ripple: boolean | {
|
|
98225
|
-
class
|
|
98389
|
+
class?: string;
|
|
98390
|
+
keys?: number[];
|
|
98226
98391
|
} | undefined;
|
|
98227
98392
|
collapseIcon: IconValue;
|
|
98228
98393
|
expandIcon: IconValue;
|
|
@@ -98297,7 +98462,8 @@ declare const VStepperVerticalItem: {
|
|
|
98297
98462
|
rounded: string | number | boolean;
|
|
98298
98463
|
tile: boolean;
|
|
98299
98464
|
ripple: boolean | {
|
|
98300
|
-
class
|
|
98465
|
+
class?: string;
|
|
98466
|
+
keys?: number[];
|
|
98301
98467
|
} | undefined;
|
|
98302
98468
|
collapseIcon: IconValue;
|
|
98303
98469
|
expandIcon: IconValue;
|
|
@@ -98323,7 +98489,8 @@ declare const VStepperVerticalItem: {
|
|
|
98323
98489
|
rules: readonly ValidationRule[];
|
|
98324
98490
|
tile: boolean;
|
|
98325
98491
|
ripple: boolean | {
|
|
98326
|
-
class
|
|
98492
|
+
class?: string;
|
|
98493
|
+
keys?: number[];
|
|
98327
98494
|
} | undefined;
|
|
98328
98495
|
collapseIcon: IconValue;
|
|
98329
98496
|
expandIcon: IconValue;
|
|
@@ -98402,7 +98569,8 @@ declare const VStepperVerticalItem: {
|
|
|
98402
98569
|
rounded: string | number | boolean;
|
|
98403
98570
|
tile: boolean;
|
|
98404
98571
|
ripple: boolean | {
|
|
98405
|
-
class
|
|
98572
|
+
class?: string;
|
|
98573
|
+
keys?: number[];
|
|
98406
98574
|
} | undefined;
|
|
98407
98575
|
collapseIcon: IconValue;
|
|
98408
98576
|
expandIcon: IconValue;
|
|
@@ -98606,7 +98774,8 @@ declare const VStepperVertical: {
|
|
|
98606
98774
|
itemValue: string;
|
|
98607
98775
|
tile: boolean;
|
|
98608
98776
|
ripple: boolean | {
|
|
98609
|
-
class
|
|
98777
|
+
class?: string;
|
|
98778
|
+
keys?: number[];
|
|
98610
98779
|
} | undefined;
|
|
98611
98780
|
collapseIcon: IconValue;
|
|
98612
98781
|
expandIcon: IconValue;
|
|
@@ -98649,7 +98818,8 @@ declare const VStepperVertical: {
|
|
|
98649
98818
|
rounded: string | number | boolean;
|
|
98650
98819
|
tile: boolean;
|
|
98651
98820
|
ripple: boolean | {
|
|
98652
|
-
class
|
|
98821
|
+
class?: string;
|
|
98822
|
+
keys?: number[];
|
|
98653
98823
|
} | undefined;
|
|
98654
98824
|
collapseIcon: IconValue;
|
|
98655
98825
|
expandIcon: IconValue;
|
|
@@ -98695,7 +98865,8 @@ declare const VStepperVertical: {
|
|
|
98695
98865
|
itemValue: string;
|
|
98696
98866
|
tile: boolean;
|
|
98697
98867
|
ripple: boolean | {
|
|
98698
|
-
class
|
|
98868
|
+
class?: string;
|
|
98869
|
+
keys?: number[];
|
|
98699
98870
|
} | undefined;
|
|
98700
98871
|
collapseIcon: IconValue;
|
|
98701
98872
|
expandIcon: IconValue;
|
|
@@ -98736,7 +98907,8 @@ declare const VStepperVertical: {
|
|
|
98736
98907
|
rounded: string | number | boolean;
|
|
98737
98908
|
tile: boolean;
|
|
98738
98909
|
ripple: boolean | {
|
|
98739
|
-
class
|
|
98910
|
+
class?: string;
|
|
98911
|
+
keys?: number[];
|
|
98740
98912
|
} | undefined;
|
|
98741
98913
|
collapseIcon: IconValue;
|
|
98742
98914
|
expandIcon: IconValue;
|
|
@@ -98767,7 +98939,8 @@ declare const VStepperVertical: {
|
|
|
98767
98939
|
itemValue: string;
|
|
98768
98940
|
tile: boolean;
|
|
98769
98941
|
ripple: boolean | {
|
|
98770
|
-
class
|
|
98942
|
+
class?: string;
|
|
98943
|
+
keys?: number[];
|
|
98771
98944
|
} | undefined;
|
|
98772
98945
|
collapseIcon: IconValue;
|
|
98773
98946
|
expandIcon: IconValue;
|
|
@@ -98810,7 +98983,8 @@ declare const VStepperVertical: {
|
|
|
98810
98983
|
rounded: string | number | boolean;
|
|
98811
98984
|
tile: boolean;
|
|
98812
98985
|
ripple: boolean | {
|
|
98813
|
-
class
|
|
98986
|
+
class?: string;
|
|
98987
|
+
keys?: number[];
|
|
98814
98988
|
} | undefined;
|
|
98815
98989
|
collapseIcon: IconValue;
|
|
98816
98990
|
expandIcon: IconValue;
|
|
@@ -100141,6 +100315,7 @@ declare const VTreeview: {
|
|
|
100141
100315
|
tile: boolean;
|
|
100142
100316
|
slim: boolean;
|
|
100143
100317
|
indeterminateIcon: IconValue;
|
|
100318
|
+
filterable: boolean;
|
|
100144
100319
|
activatable: boolean;
|
|
100145
100320
|
selectable: boolean;
|
|
100146
100321
|
collapseIcon: IconValue;
|
|
@@ -100242,6 +100417,7 @@ declare const VTreeview: {
|
|
|
100242
100417
|
slim: boolean;
|
|
100243
100418
|
openOnClick: boolean;
|
|
100244
100419
|
indeterminateIcon: IconValue;
|
|
100420
|
+
filterable: boolean;
|
|
100245
100421
|
activatable: boolean;
|
|
100246
100422
|
selectable: boolean;
|
|
100247
100423
|
collapseIcon: IconValue;
|
|
@@ -100303,6 +100479,7 @@ declare const VTreeview: {
|
|
|
100303
100479
|
tile: boolean;
|
|
100304
100480
|
slim: boolean;
|
|
100305
100481
|
indeterminateIcon: IconValue;
|
|
100482
|
+
filterable: boolean;
|
|
100306
100483
|
activatable: boolean;
|
|
100307
100484
|
selectable: boolean;
|
|
100308
100485
|
collapseIcon: IconValue;
|
|
@@ -100389,6 +100566,7 @@ declare const VTreeview: {
|
|
|
100389
100566
|
slim: boolean;
|
|
100390
100567
|
openOnClick: boolean;
|
|
100391
100568
|
indeterminateIcon: IconValue;
|
|
100569
|
+
filterable: boolean;
|
|
100392
100570
|
activatable: boolean;
|
|
100393
100571
|
selectable: boolean;
|
|
100394
100572
|
collapseIcon: IconValue;
|
|
@@ -100421,6 +100599,7 @@ declare const VTreeview: {
|
|
|
100421
100599
|
tile: boolean;
|
|
100422
100600
|
slim: boolean;
|
|
100423
100601
|
indeterminateIcon: IconValue;
|
|
100602
|
+
filterable: boolean;
|
|
100424
100603
|
activatable: boolean;
|
|
100425
100604
|
selectable: boolean;
|
|
100426
100605
|
collapseIcon: IconValue;
|
|
@@ -100522,6 +100701,7 @@ declare const VTreeview: {
|
|
|
100522
100701
|
slim: boolean;
|
|
100523
100702
|
openOnClick: boolean;
|
|
100524
100703
|
indeterminateIcon: IconValue;
|
|
100704
|
+
filterable: boolean;
|
|
100525
100705
|
activatable: boolean;
|
|
100526
100706
|
selectable: boolean;
|
|
100527
100707
|
collapseIcon: IconValue;
|
|
@@ -100636,6 +100816,7 @@ declare const VTreeview: {
|
|
|
100636
100816
|
default: boolean;
|
|
100637
100817
|
};
|
|
100638
100818
|
activeClass: StringConstructor;
|
|
100819
|
+
filterable: BooleanConstructor;
|
|
100639
100820
|
activatable: BooleanConstructor;
|
|
100640
100821
|
selectable: BooleanConstructor;
|
|
100641
100822
|
activeStrategy: vue.PropType<ActiveStrategyProp>;
|
|
@@ -100776,6 +100957,7 @@ declare const VTreeview: {
|
|
|
100776
100957
|
default: boolean;
|
|
100777
100958
|
};
|
|
100778
100959
|
activeClass: StringConstructor;
|
|
100960
|
+
filterable: BooleanConstructor;
|
|
100779
100961
|
activatable: BooleanConstructor;
|
|
100780
100962
|
selectable: BooleanConstructor;
|
|
100781
100963
|
activeStrategy: vue.PropType<ActiveStrategyProp>;
|
|
@@ -100857,7 +101039,8 @@ declare const VTreeviewItem: {
|
|
|
100857
101039
|
tile: boolean;
|
|
100858
101040
|
slim: boolean;
|
|
100859
101041
|
ripple: boolean | {
|
|
100860
|
-
class
|
|
101042
|
+
class?: string;
|
|
101043
|
+
keys?: number[];
|
|
100861
101044
|
} | undefined;
|
|
100862
101045
|
} & {
|
|
100863
101046
|
link?: boolean | undefined;
|
|
@@ -100932,7 +101115,8 @@ declare const VTreeviewItem: {
|
|
|
100932
101115
|
tile: boolean;
|
|
100933
101116
|
slim: boolean;
|
|
100934
101117
|
ripple: boolean | {
|
|
100935
|
-
class
|
|
101118
|
+
class?: string;
|
|
101119
|
+
keys?: number[];
|
|
100936
101120
|
} | undefined;
|
|
100937
101121
|
subtitle: string | number | boolean;
|
|
100938
101122
|
}, true, {}, vue.SlotsType<Partial<{
|
|
@@ -100961,7 +101145,8 @@ declare const VTreeviewItem: {
|
|
|
100961
101145
|
tile: boolean;
|
|
100962
101146
|
slim: boolean;
|
|
100963
101147
|
ripple: boolean | {
|
|
100964
|
-
class
|
|
101148
|
+
class?: string;
|
|
101149
|
+
keys?: number[];
|
|
100965
101150
|
} | undefined;
|
|
100966
101151
|
} & {
|
|
100967
101152
|
link?: boolean | undefined;
|
|
@@ -101034,7 +101219,8 @@ declare const VTreeviewItem: {
|
|
|
101034
101219
|
tile: boolean;
|
|
101035
101220
|
slim: boolean;
|
|
101036
101221
|
ripple: boolean | {
|
|
101037
|
-
class
|
|
101222
|
+
class?: string;
|
|
101223
|
+
keys?: number[];
|
|
101038
101224
|
} | undefined;
|
|
101039
101225
|
subtitle: string | number | boolean;
|
|
101040
101226
|
}>;
|
|
@@ -101054,7 +101240,8 @@ declare const VTreeviewItem: {
|
|
|
101054
101240
|
tile: boolean;
|
|
101055
101241
|
slim: boolean;
|
|
101056
101242
|
ripple: boolean | {
|
|
101057
|
-
class
|
|
101243
|
+
class?: string;
|
|
101244
|
+
keys?: number[];
|
|
101058
101245
|
} | undefined;
|
|
101059
101246
|
} & {
|
|
101060
101247
|
link?: boolean | undefined;
|
|
@@ -101129,7 +101316,8 @@ declare const VTreeviewItem: {
|
|
|
101129
101316
|
tile: boolean;
|
|
101130
101317
|
slim: boolean;
|
|
101131
101318
|
ripple: boolean | {
|
|
101132
|
-
class
|
|
101319
|
+
class?: string;
|
|
101320
|
+
keys?: number[];
|
|
101133
101321
|
} | undefined;
|
|
101134
101322
|
subtitle: string | number | boolean;
|
|
101135
101323
|
}, {}, string, vue.SlotsType<Partial<{
|
|
@@ -101979,34 +102167,38 @@ declare module 'vue' {
|
|
|
101979
102167
|
}
|
|
101980
102168
|
export interface GlobalComponents {
|
|
101981
102169
|
VApp: VApp
|
|
101982
|
-
|
|
101983
|
-
|
|
101984
|
-
VAppBarTitle: VAppBarTitle
|
|
102170
|
+
VAutocomplete: VAutocomplete
|
|
102171
|
+
VAvatar: VAvatar
|
|
101985
102172
|
VAlert: VAlert
|
|
101986
102173
|
VAlertTitle: VAlertTitle
|
|
101987
102174
|
VBadge: VBadge
|
|
101988
|
-
VAutocomplete: VAutocomplete
|
|
101989
102175
|
VBanner: VBanner
|
|
101990
102176
|
VBannerActions: VBannerActions
|
|
101991
102177
|
VBannerText: VBannerText
|
|
101992
|
-
VBottomNavigation: VBottomNavigation
|
|
101993
102178
|
VBottomSheet: VBottomSheet
|
|
101994
|
-
|
|
102179
|
+
VBottomNavigation: VBottomNavigation
|
|
101995
102180
|
VBtnGroup: VBtnGroup
|
|
102181
|
+
VCarousel: VCarousel
|
|
102182
|
+
VCarouselItem: VCarouselItem
|
|
102183
|
+
VBreadcrumbs: VBreadcrumbs
|
|
102184
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
102185
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
101996
102186
|
VBtnToggle: VBtnToggle
|
|
101997
|
-
|
|
102187
|
+
VBtn: VBtn
|
|
102188
|
+
VChip: VChip
|
|
101998
102189
|
VCard: VCard
|
|
101999
102190
|
VCardActions: VCardActions
|
|
102000
102191
|
VCardItem: VCardItem
|
|
102001
102192
|
VCardSubtitle: VCardSubtitle
|
|
102002
102193
|
VCardText: VCardText
|
|
102003
102194
|
VCardTitle: VCardTitle
|
|
102195
|
+
VCode: VCode
|
|
102004
102196
|
VCheckbox: VCheckbox
|
|
102005
102197
|
VCheckboxBtn: VCheckboxBtn
|
|
102006
|
-
VCarousel: VCarousel
|
|
102007
|
-
VCarouselItem: VCarouselItem
|
|
102008
102198
|
VColorPicker: VColorPicker
|
|
102009
102199
|
VChipGroup: VChipGroup
|
|
102200
|
+
VCombobox: VCombobox
|
|
102201
|
+
VCounter: VCounter
|
|
102010
102202
|
VDataTable: VDataTable
|
|
102011
102203
|
VDataTableHeaders: VDataTableHeaders
|
|
102012
102204
|
VDataTableFooter: VDataTableFooter
|
|
@@ -102014,43 +102206,36 @@ declare module 'vue' {
|
|
|
102014
102206
|
VDataTableRow: VDataTableRow
|
|
102015
102207
|
VDataTableVirtual: VDataTableVirtual
|
|
102016
102208
|
VDataTableServer: VDataTableServer
|
|
102017
|
-
VCode: VCode
|
|
102018
|
-
VBreadcrumbs: VBreadcrumbs
|
|
102019
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
|
102020
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
102021
|
-
VCounter: VCounter
|
|
102022
|
-
VCombobox: VCombobox
|
|
102023
|
-
VDialog: VDialog
|
|
102024
102209
|
VDatePicker: VDatePicker
|
|
102025
102210
|
VDatePickerControls: VDatePickerControls
|
|
102026
102211
|
VDatePickerHeader: VDatePickerHeader
|
|
102027
102212
|
VDatePickerMonth: VDatePickerMonth
|
|
102028
102213
|
VDatePickerMonths: VDatePickerMonths
|
|
102029
102214
|
VDatePickerYears: VDatePickerYears
|
|
102030
|
-
|
|
102215
|
+
VDialog: VDialog
|
|
102031
102216
|
VDivider: VDivider
|
|
102217
|
+
VField: VField
|
|
102218
|
+
VFieldLabel: VFieldLabel
|
|
102219
|
+
VEmptyState: VEmptyState
|
|
102220
|
+
VFab: VFab
|
|
102032
102221
|
VExpansionPanels: VExpansionPanels
|
|
102033
102222
|
VExpansionPanel: VExpansionPanel
|
|
102034
102223
|
VExpansionPanelText: VExpansionPanelText
|
|
102035
102224
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
102036
102225
|
VFileInput: VFileInput
|
|
102037
|
-
VFab: VFab
|
|
102038
|
-
VFooter: VFooter
|
|
102039
|
-
VField: VField
|
|
102040
|
-
VFieldLabel: VFieldLabel
|
|
102041
|
-
VChip: VChip
|
|
102042
102226
|
VIcon: VIcon
|
|
102043
102227
|
VComponentIcon: VComponentIcon
|
|
102044
102228
|
VSvgIcon: VSvgIcon
|
|
102045
102229
|
VLigatureIcon: VLigatureIcon
|
|
102046
102230
|
VClassIcon: VClassIcon
|
|
102231
|
+
VFooter: VFooter
|
|
102047
102232
|
VInfiniteScroll: VInfiniteScroll
|
|
102048
|
-
VItemGroup: VItemGroup
|
|
102049
|
-
VItem: VItem
|
|
102050
102233
|
VInput: VInput
|
|
102051
102234
|
VImg: VImg
|
|
102052
|
-
|
|
102235
|
+
VItemGroup: VItemGroup
|
|
102236
|
+
VItem: VItem
|
|
102053
102237
|
VLabel: VLabel
|
|
102238
|
+
VKbd: VKbd
|
|
102054
102239
|
VList: VList
|
|
102055
102240
|
VListGroup: VListGroup
|
|
102056
102241
|
VListImg: VListImg
|
|
@@ -102060,62 +102245,64 @@ declare module 'vue' {
|
|
|
102060
102245
|
VListItemSubtitle: VListItemSubtitle
|
|
102061
102246
|
VListItemTitle: VListItemTitle
|
|
102062
102247
|
VListSubheader: VListSubheader
|
|
102063
|
-
VMain: VMain
|
|
102064
102248
|
VMenu: VMenu
|
|
102065
102249
|
VMessages: VMessages
|
|
102066
|
-
|
|
102250
|
+
VMain: VMain
|
|
102067
102251
|
VNumberInput: VNumberInput
|
|
102068
|
-
VPagination: VPagination
|
|
102069
|
-
VOtpInput: VOtpInput
|
|
102070
|
-
VProgressCircular: VProgressCircular
|
|
102071
102252
|
VNavigationDrawer: VNavigationDrawer
|
|
102253
|
+
VOtpInput: VOtpInput
|
|
102254
|
+
VPagination: VPagination
|
|
102255
|
+
VOverlay: VOverlay
|
|
102256
|
+
VRadioGroup: VRadioGroup
|
|
102072
102257
|
VProgressLinear: VProgressLinear
|
|
102258
|
+
VProgressCircular: VProgressCircular
|
|
102073
102259
|
VRating: VRating
|
|
102074
102260
|
VSelect: VSelect
|
|
102075
102261
|
VSelectionControl: VSelectionControl
|
|
102076
|
-
|
|
102262
|
+
VSelectionControlGroup: VSelectionControlGroup
|
|
102077
102263
|
VSkeletonLoader: VSkeletonLoader
|
|
102078
102264
|
VSheet: VSheet
|
|
102079
|
-
|
|
102265
|
+
VSnackbar: VSnackbar
|
|
102080
102266
|
VSlideGroup: VSlideGroup
|
|
102081
102267
|
VSlideGroupItem: VSlideGroupItem
|
|
102082
|
-
|
|
102083
|
-
|
|
102268
|
+
VSlider: VSlider
|
|
102269
|
+
VSwitch: VSwitch
|
|
102270
|
+
VSystemBar: VSystemBar
|
|
102084
102271
|
VStepper: VStepper
|
|
102085
102272
|
VStepperActions: VStepperActions
|
|
102086
102273
|
VStepperHeader: VStepperHeader
|
|
102087
102274
|
VStepperItem: VStepperItem
|
|
102088
102275
|
VStepperWindow: VStepperWindow
|
|
102089
102276
|
VStepperWindowItem: VStepperWindowItem
|
|
102090
|
-
VSwitch: VSwitch
|
|
102091
|
-
VSystemBar: VSystemBar
|
|
102092
102277
|
VTab: VTab
|
|
102093
102278
|
VTabs: VTabs
|
|
102094
102279
|
VTabsWindow: VTabsWindow
|
|
102095
102280
|
VTabsWindowItem: VTabsWindowItem
|
|
102281
|
+
VTextField: VTextField
|
|
102096
102282
|
VTextarea: VTextarea
|
|
102097
|
-
|
|
102283
|
+
VAppBar: VAppBar
|
|
102284
|
+
VAppBarNavIcon: VAppBarNavIcon
|
|
102285
|
+
VAppBarTitle: VAppBarTitle
|
|
102098
102286
|
VTimeline: VTimeline
|
|
102099
102287
|
VTimelineItem: VTimelineItem
|
|
102100
|
-
|
|
102288
|
+
VTooltip: VTooltip
|
|
102101
102289
|
VToolbar: VToolbar
|
|
102102
102290
|
VToolbarTitle: VToolbarTitle
|
|
102103
102291
|
VToolbarItems: VToolbarItems
|
|
102104
|
-
VTooltip: VTooltip
|
|
102105
102292
|
VWindow: VWindow
|
|
102106
102293
|
VWindowItem: VWindowItem
|
|
102107
102294
|
VDataIterator: VDataIterator
|
|
102108
102295
|
VConfirmEdit: VConfirmEdit
|
|
102109
102296
|
VDefaultsProvider: VDefaultsProvider
|
|
102297
|
+
VContainer: VContainer
|
|
102298
|
+
VCol: VCol
|
|
102299
|
+
VRow: VRow
|
|
102300
|
+
VSpacer: VSpacer
|
|
102110
102301
|
VForm: VForm
|
|
102111
102302
|
VHover: VHover
|
|
102112
102303
|
VLayout: VLayout
|
|
102113
102304
|
VLayoutItem: VLayoutItem
|
|
102114
102305
|
VLazy: VLazy
|
|
102115
|
-
VContainer: VContainer
|
|
102116
|
-
VCol: VCol
|
|
102117
|
-
VRow: VRow
|
|
102118
|
-
VSpacer: VSpacer
|
|
102119
102306
|
VLocaleProvider: VLocaleProvider
|
|
102120
102307
|
VNoSsr: VNoSsr
|
|
102121
102308
|
VParallax: VParallax
|
|
@@ -102123,6 +102310,7 @@ declare module 'vue' {
|
|
|
102123
102310
|
VRangeSlider: VRangeSlider
|
|
102124
102311
|
VResponsive: VResponsive
|
|
102125
102312
|
VSparkline: VSparkline
|
|
102313
|
+
VTable: VTable
|
|
102126
102314
|
VSnackbarQueue: VSnackbarQueue
|
|
102127
102315
|
VSpeedDial: VSpeedDial
|
|
102128
102316
|
VThemeProvider: VThemeProvider
|
|
@@ -102144,27 +102332,27 @@ declare module 'vue' {
|
|
|
102144
102332
|
VExpandTransition: VExpandTransition
|
|
102145
102333
|
VExpandXTransition: VExpandXTransition
|
|
102146
102334
|
VDialogTransition: VDialogTransition
|
|
102335
|
+
VColorInput: VColorInput
|
|
102336
|
+
VFileUpload: VFileUpload
|
|
102337
|
+
VFileUploadItem: VFileUploadItem
|
|
102338
|
+
VStepperVertical: VStepperVertical
|
|
102339
|
+
VStepperVerticalItem: VStepperVerticalItem
|
|
102340
|
+
VStepperVerticalActions: VStepperVerticalActions
|
|
102147
102341
|
VCalendar: VCalendar
|
|
102148
102342
|
VCalendarDay: VCalendarDay
|
|
102149
102343
|
VCalendarHeader: VCalendarHeader
|
|
102150
102344
|
VCalendarInterval: VCalendarInterval
|
|
102151
102345
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
|
102152
102346
|
VCalendarMonthDay: VCalendarMonthDay
|
|
102153
|
-
VFileUpload: VFileUpload
|
|
102154
|
-
VFileUploadItem: VFileUploadItem
|
|
102155
102347
|
VPicker: VPicker
|
|
102156
102348
|
VPickerTitle: VPickerTitle
|
|
102157
|
-
VColorInput: VColorInput
|
|
102158
|
-
VIconBtn: VIconBtn
|
|
102159
|
-
VTimePicker: VTimePicker
|
|
102160
|
-
VTimePickerClock: VTimePickerClock
|
|
102161
|
-
VTimePickerControls: VTimePickerControls
|
|
102162
102349
|
VTreeview: VTreeview
|
|
102163
102350
|
VTreeviewItem: VTreeviewItem
|
|
102164
102351
|
VTreeviewGroup: VTreeviewGroup
|
|
102165
|
-
|
|
102166
|
-
|
|
102167
|
-
|
|
102352
|
+
VTimePicker: VTimePicker
|
|
102353
|
+
VTimePickerClock: VTimePickerClock
|
|
102354
|
+
VTimePickerControls: VTimePickerControls
|
|
102355
|
+
VIconBtn: VIconBtn
|
|
102168
102356
|
VDateInput: VDateInput
|
|
102169
102357
|
VPullToRefresh: VPullToRefresh
|
|
102170
102358
|
}
|