@vuetify/nightly 3.8.8-master.2025-06-10 → 3.8.9-dev.2025-06-11
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 +39 -19
- package/dist/json/attributes.json +1662 -1538
- package/dist/json/importMap-labs.json +36 -36
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +32 -1
- package/dist/json/web-types.json +3166 -2780
- package/dist/vuetify-labs.cjs +389 -146
- package/dist/vuetify-labs.css +3499 -3465
- package/dist/vuetify-labs.d.ts +2602 -2062
- package/dist/vuetify-labs.esm.js +390 -147
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +389 -146
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +383 -135
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5561 -5527
- package/dist/vuetify.d.ts +1598 -1098
- package/dist/vuetify.esm.js +384 -136
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +383 -135
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1219 -1203
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +15 -10
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VAppBar/VAppBarNavIcon.d.ts +20 -10
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +154 -103
- package/lib/components/VAutocomplete/VAutocomplete.js +21 -3
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/components/VBtn/VBtn.d.ts +20 -10
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCard/VCard.d.ts +20 -10
- package/lib/components/VCheckbox/VCheckbox.d.ts +23 -13
- package/lib/components/VCheckbox/VCheckboxBtn.d.ts +20 -10
- package/lib/components/VChip/VChip.d.ts +20 -10
- package/lib/components/VChipGroup/VChipGroup.d.ts +10 -0
- package/lib/components/VCombobox/VCombobox.d.ts +154 -103
- package/lib/components/VCombobox/VCombobox.js +22 -3
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +60 -0
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +13 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +4 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +42 -0
- package/lib/components/VDatePicker/VDatePicker.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.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/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInfiniteScroll/VInfiniteScroll.d.ts +9 -3
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +29 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/components/VInput/VInput.d.ts +4 -4
- 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/VListChildren.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/VNumberInput/VNumberInput.d.ts +103 -89
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +2 -1
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadio/VRadio.d.ts +20 -10
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +23 -13
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +171 -107
- package/lib/components/VSelect/VSelect.js +21 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.d.ts +20 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.d.ts +28 -14
- package/lib/components/VSlideGroup/VSlideGroup.d.ts +10 -0
- package/lib/components/VSlideGroup/VSlideGroup.js +2 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- 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 +23 -13
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VTabs/VTab.d.ts +56 -28
- package/lib/components/VTabs/VTabs.d.ts +10 -0
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/calendar.d.ts +6 -0
- package/lib/composables/calendar.js +2 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +3 -3
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +4 -4
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +3 -3
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- 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.d.ts +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +84 -69
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +10 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +97 -87
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- package/lib/labs/VFileUpload/VFileUploadItem.d.ts +20 -10
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- 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/lib/labs/entry-bundler.d.ts +3 -3
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +3 -1
@@ -34,6 +34,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
34
34
|
noDataText?: unknown;
|
35
35
|
openOnClear?: unknown;
|
36
36
|
itemColor?: unknown;
|
37
|
+
noAutoScroll?: unknown;
|
37
38
|
} = {}>(defaults?: Defaults | undefined) => {
|
38
39
|
items: unknown extends Defaults["items"] ? {
|
39
40
|
type: PropType<import("../../composables/list-items.js").ItemProps["items"]>;
|
@@ -158,6 +159,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
158
159
|
rounded: string | number | boolean;
|
159
160
|
tile: boolean;
|
160
161
|
slim: boolean;
|
162
|
+
filterable: boolean;
|
161
163
|
activatable: boolean;
|
162
164
|
selectable: boolean;
|
163
165
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -175,6 +177,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
175
177
|
density: import("../../composables/density.js").Density;
|
176
178
|
tile: boolean;
|
177
179
|
slim: boolean;
|
180
|
+
filterable: boolean;
|
178
181
|
activatable: boolean;
|
179
182
|
selectable: boolean;
|
180
183
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -206,7 +209,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
206
209
|
value: boolean;
|
207
210
|
path: unknown[];
|
208
211
|
}) => any) | undefined;
|
209
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
212
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
210
213
|
items?: readonly any[] | undefined;
|
211
214
|
itemTitle?: SelectItemKey<any>;
|
212
215
|
itemValue?: SelectItemKey<any>;
|
@@ -321,6 +324,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
321
324
|
rounded: string | number | boolean;
|
322
325
|
tile: boolean;
|
323
326
|
slim: boolean;
|
327
|
+
filterable: boolean;
|
324
328
|
activatable: boolean;
|
325
329
|
selectable: boolean;
|
326
330
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -338,6 +342,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
338
342
|
density: import("../../composables/density.js").Density;
|
339
343
|
tile: boolean;
|
340
344
|
slim: boolean;
|
345
|
+
filterable: boolean;
|
341
346
|
activatable: boolean;
|
342
347
|
selectable: boolean;
|
343
348
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -369,7 +374,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
369
374
|
value: boolean;
|
370
375
|
path: unknown[];
|
371
376
|
}) => any) | undefined;
|
372
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
377
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
373
378
|
items?: readonly any[] | undefined;
|
374
379
|
itemTitle?: SelectItemKey<any>;
|
375
380
|
itemValue?: SelectItemKey<any>;
|
@@ -485,6 +490,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
485
490
|
rounded: string | number | boolean;
|
486
491
|
tile: boolean;
|
487
492
|
slim: boolean;
|
493
|
+
filterable: boolean;
|
488
494
|
activatable: boolean;
|
489
495
|
selectable: boolean;
|
490
496
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -502,6 +508,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
502
508
|
density: import("../../composables/density.js").Density;
|
503
509
|
tile: boolean;
|
504
510
|
slim: boolean;
|
511
|
+
filterable: boolean;
|
505
512
|
activatable: boolean;
|
506
513
|
selectable: boolean;
|
507
514
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -533,7 +540,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
533
540
|
value: boolean;
|
534
541
|
path: unknown[];
|
535
542
|
}) => any) | undefined;
|
536
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
543
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
537
544
|
items?: readonly any[] | undefined;
|
538
545
|
itemTitle?: SelectItemKey<any>;
|
539
546
|
itemValue?: SelectItemKey<any>;
|
@@ -648,6 +655,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
648
655
|
rounded: string | number | boolean;
|
649
656
|
tile: boolean;
|
650
657
|
slim: boolean;
|
658
|
+
filterable: boolean;
|
651
659
|
activatable: boolean;
|
652
660
|
selectable: boolean;
|
653
661
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -665,6 +673,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
665
673
|
density: import("../../composables/density.js").Density;
|
666
674
|
tile: boolean;
|
667
675
|
slim: boolean;
|
676
|
+
filterable: boolean;
|
668
677
|
activatable: boolean;
|
669
678
|
selectable: boolean;
|
670
679
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -696,7 +705,7 @@ export declare const makeSelectProps: <Defaults extends {
|
|
696
705
|
value: boolean;
|
697
706
|
path: unknown[];
|
698
707
|
}) => any) | undefined;
|
699
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
708
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
700
709
|
items?: readonly any[] | undefined;
|
701
710
|
itemTitle?: SelectItemKey<any>;
|
702
711
|
itemValue?: SelectItemKey<any>;
|
@@ -1679,6 +1688,10 @@ export declare const makeSelectProps: <Defaults extends {
|
|
1679
1688
|
type: PropType<unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"]>;
|
1680
1689
|
default: unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"];
|
1681
1690
|
};
|
1691
|
+
noAutoScroll: unknown extends Defaults["noAutoScroll"] ? BooleanConstructor : {
|
1692
|
+
type: PropType<unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"]>;
|
1693
|
+
default: unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"];
|
1694
|
+
};
|
1682
1695
|
};
|
1683
1696
|
export declare const makeVSelectProps: <Defaults extends {
|
1684
1697
|
transition?: unknown;
|
@@ -1722,6 +1735,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
1722
1735
|
bgColor?: unknown;
|
1723
1736
|
prependIcon?: unknown;
|
1724
1737
|
appendIcon?: unknown;
|
1738
|
+
iconColor?: unknown;
|
1725
1739
|
clearIcon?: unknown;
|
1726
1740
|
prependInnerIcon?: unknown;
|
1727
1741
|
'onClick:clear'?: unknown;
|
@@ -1731,7 +1745,6 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
1731
1745
|
'onClick:prependInner'?: unknown;
|
1732
1746
|
centerAffix?: unknown;
|
1733
1747
|
glow?: unknown;
|
1734
|
-
iconColor?: unknown;
|
1735
1748
|
hideSpinButtons?: unknown;
|
1736
1749
|
hint?: unknown;
|
1737
1750
|
persistentHint?: unknown;
|
@@ -1766,6 +1779,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
1766
1779
|
noDataText?: unknown;
|
1767
1780
|
openOnClear?: unknown;
|
1768
1781
|
itemColor?: unknown;
|
1782
|
+
noAutoScroll?: unknown;
|
1769
1783
|
} = {}>(defaults?: Defaults | undefined) => {
|
1770
1784
|
transition: unknown extends Defaults["transition"] ? {
|
1771
1785
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
@@ -2059,6 +2073,10 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2059
2073
|
type: PropType<unknown extends Defaults["appendIcon"] ? IconValue : IconValue | Defaults["appendIcon"]>;
|
2060
2074
|
default: unknown extends Defaults["appendIcon"] ? IconValue : NonNullable<IconValue> | Defaults["appendIcon"];
|
2061
2075
|
};
|
2076
|
+
iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
|
2077
|
+
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
2078
|
+
default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
|
2079
|
+
};
|
2062
2080
|
clearIcon: unknown extends Defaults["clearIcon"] ? {
|
2063
2081
|
type: PropType<IconValue>;
|
2064
2082
|
default: string;
|
@@ -2107,10 +2125,6 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2107
2125
|
type: PropType<unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"]>;
|
2108
2126
|
default: unknown extends Defaults["glow"] ? boolean : boolean | Defaults["glow"];
|
2109
2127
|
};
|
2110
|
-
iconColor: unknown extends Defaults["iconColor"] ? (StringConstructor | BooleanConstructor)[] : {
|
2111
|
-
type: PropType<unknown extends Defaults["iconColor"] ? string | boolean : string | boolean | Defaults["iconColor"]>;
|
2112
|
-
default: unknown extends Defaults["iconColor"] ? string | boolean : NonNullable<string | boolean> | Defaults["iconColor"];
|
2113
|
-
};
|
2114
2128
|
hideSpinButtons: unknown extends Defaults["hideSpinButtons"] ? BooleanConstructor : {
|
2115
2129
|
type: PropType<unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"]>;
|
2116
2130
|
default: unknown extends Defaults["hideSpinButtons"] ? boolean : boolean | Defaults["hideSpinButtons"];
|
@@ -2282,6 +2296,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2282
2296
|
rounded: string | number | boolean;
|
2283
2297
|
tile: boolean;
|
2284
2298
|
slim: boolean;
|
2299
|
+
filterable: boolean;
|
2285
2300
|
activatable: boolean;
|
2286
2301
|
selectable: boolean;
|
2287
2302
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2299,6 +2314,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2299
2314
|
density: import("../../composables/density.js").Density;
|
2300
2315
|
tile: boolean;
|
2301
2316
|
slim: boolean;
|
2317
|
+
filterable: boolean;
|
2302
2318
|
activatable: boolean;
|
2303
2319
|
selectable: boolean;
|
2304
2320
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2330,7 +2346,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2330
2346
|
value: boolean;
|
2331
2347
|
path: unknown[];
|
2332
2348
|
}) => any) | undefined;
|
2333
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2349
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2334
2350
|
items?: readonly any[] | undefined;
|
2335
2351
|
itemTitle?: SelectItemKey<any>;
|
2336
2352
|
itemValue?: SelectItemKey<any>;
|
@@ -2445,6 +2461,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2445
2461
|
rounded: string | number | boolean;
|
2446
2462
|
tile: boolean;
|
2447
2463
|
slim: boolean;
|
2464
|
+
filterable: boolean;
|
2448
2465
|
activatable: boolean;
|
2449
2466
|
selectable: boolean;
|
2450
2467
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2462,6 +2479,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2462
2479
|
density: import("../../composables/density.js").Density;
|
2463
2480
|
tile: boolean;
|
2464
2481
|
slim: boolean;
|
2482
|
+
filterable: boolean;
|
2465
2483
|
activatable: boolean;
|
2466
2484
|
selectable: boolean;
|
2467
2485
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2493,7 +2511,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2493
2511
|
value: boolean;
|
2494
2512
|
path: unknown[];
|
2495
2513
|
}) => any) | undefined;
|
2496
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2514
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2497
2515
|
items?: readonly any[] | undefined;
|
2498
2516
|
itemTitle?: SelectItemKey<any>;
|
2499
2517
|
itemValue?: SelectItemKey<any>;
|
@@ -2609,6 +2627,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2609
2627
|
rounded: string | number | boolean;
|
2610
2628
|
tile: boolean;
|
2611
2629
|
slim: boolean;
|
2630
|
+
filterable: boolean;
|
2612
2631
|
activatable: boolean;
|
2613
2632
|
selectable: boolean;
|
2614
2633
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2626,6 +2645,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2626
2645
|
density: import("../../composables/density.js").Density;
|
2627
2646
|
tile: boolean;
|
2628
2647
|
slim: boolean;
|
2648
|
+
filterable: boolean;
|
2629
2649
|
activatable: boolean;
|
2630
2650
|
selectable: boolean;
|
2631
2651
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2657,7 +2677,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2657
2677
|
value: boolean;
|
2658
2678
|
path: unknown[];
|
2659
2679
|
}) => any) | undefined;
|
2660
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2680
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2661
2681
|
items?: readonly any[] | undefined;
|
2662
2682
|
itemTitle?: SelectItemKey<any>;
|
2663
2683
|
itemValue?: SelectItemKey<any>;
|
@@ -2772,6 +2792,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2772
2792
|
rounded: string | number | boolean;
|
2773
2793
|
tile: boolean;
|
2774
2794
|
slim: boolean;
|
2795
|
+
filterable: boolean;
|
2775
2796
|
activatable: boolean;
|
2776
2797
|
selectable: boolean;
|
2777
2798
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2789,6 +2810,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2789
2810
|
density: import("../../composables/density.js").Density;
|
2790
2811
|
tile: boolean;
|
2791
2812
|
slim: boolean;
|
2813
|
+
filterable: boolean;
|
2792
2814
|
activatable: boolean;
|
2793
2815
|
selectable: boolean;
|
2794
2816
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -2820,7 +2842,7 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
2820
2842
|
value: boolean;
|
2821
2843
|
path: unknown[];
|
2822
2844
|
}) => any) | undefined;
|
2823
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2845
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
2824
2846
|
items?: readonly any[] | undefined;
|
2825
2847
|
itemTitle?: SelectItemKey<any>;
|
2826
2848
|
itemValue?: SelectItemKey<any>;
|
@@ -3803,6 +3825,10 @@ export declare const makeVSelectProps: <Defaults extends {
|
|
3803
3825
|
type: PropType<unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"]>;
|
3804
3826
|
default: unknown extends Defaults["itemColor"] ? string : string | Defaults["itemColor"];
|
3805
3827
|
};
|
3828
|
+
noAutoScroll: unknown extends Defaults["noAutoScroll"] ? BooleanConstructor : {
|
3829
|
+
type: PropType<unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"]>;
|
3830
|
+
default: unknown extends Defaults["noAutoScroll"] ? boolean : boolean | Defaults["noAutoScroll"];
|
3831
|
+
};
|
3806
3832
|
};
|
3807
3833
|
type ItemType<T> = T extends readonly (infer U)[] ? U : never;
|
3808
3834
|
export declare const VSelect: {
|
@@ -3852,6 +3878,7 @@ export declare const VSelect: {
|
|
3852
3878
|
hideSelected: boolean;
|
3853
3879
|
menuIcon: IconValue;
|
3854
3880
|
openOnClear: boolean;
|
3881
|
+
noAutoScroll: boolean;
|
3855
3882
|
} & {
|
3856
3883
|
name?: string | undefined;
|
3857
3884
|
id?: string | undefined;
|
@@ -3874,6 +3901,7 @@ export declare const VSelect: {
|
|
3874
3901
|
bgColor?: string | undefined;
|
3875
3902
|
prependIcon?: IconValue | undefined;
|
3876
3903
|
appendIcon?: IconValue | undefined;
|
3904
|
+
iconColor?: string | boolean | undefined;
|
3877
3905
|
prependInnerIcon?: IconValue | undefined;
|
3878
3906
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3879
3907
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3881,7 +3909,6 @@ export declare const VSelect: {
|
|
3881
3909
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3882
3910
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3883
3911
|
centerAffix?: boolean | undefined;
|
3884
|
-
iconColor?: string | boolean | undefined;
|
3885
3912
|
hint?: string | undefined;
|
3886
3913
|
hideDetails?: boolean | "auto" | undefined;
|
3887
3914
|
suffix?: string | undefined;
|
@@ -3901,6 +3928,7 @@ export declare const VSelect: {
|
|
3901
3928
|
rounded: string | number | boolean;
|
3902
3929
|
tile: boolean;
|
3903
3930
|
slim: boolean;
|
3931
|
+
filterable: boolean;
|
3904
3932
|
activatable: boolean;
|
3905
3933
|
selectable: boolean;
|
3906
3934
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -3918,6 +3946,7 @@ export declare const VSelect: {
|
|
3918
3946
|
density: import("../../composables/density.js").Density;
|
3919
3947
|
tile: boolean;
|
3920
3948
|
slim: boolean;
|
3949
|
+
filterable: boolean;
|
3921
3950
|
activatable: boolean;
|
3922
3951
|
selectable: boolean;
|
3923
3952
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -3949,7 +3978,7 @@ export declare const VSelect: {
|
|
3949
3978
|
value: boolean;
|
3950
3979
|
path: unknown[];
|
3951
3980
|
}) => any) | undefined;
|
3952
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
3981
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
3953
3982
|
items?: readonly any[] | undefined;
|
3954
3983
|
itemTitle?: SelectItemKey<any>;
|
3955
3984
|
itemValue?: SelectItemKey<any>;
|
@@ -4355,6 +4384,7 @@ export declare const VSelect: {
|
|
4355
4384
|
bgColor?: string | undefined;
|
4356
4385
|
prependIcon?: IconValue | undefined;
|
4357
4386
|
appendIcon?: IconValue | undefined;
|
4387
|
+
iconColor?: string | boolean | undefined;
|
4358
4388
|
appendInnerIcon?: IconValue | undefined;
|
4359
4389
|
prependInnerIcon?: IconValue | undefined;
|
4360
4390
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4363,7 +4393,6 @@ export declare const VSelect: {
|
|
4363
4393
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4364
4394
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4365
4395
|
centerAffix?: boolean | undefined;
|
4366
|
-
iconColor?: string | boolean | undefined;
|
4367
4396
|
hint?: string | undefined;
|
4368
4397
|
hideDetails?: boolean | "auto" | undefined;
|
4369
4398
|
suffix?: string | undefined;
|
@@ -4507,6 +4536,7 @@ export declare const VSelect: {
|
|
4507
4536
|
bgColor?: string | undefined;
|
4508
4537
|
prependIcon?: IconValue | undefined;
|
4509
4538
|
appendIcon?: IconValue | undefined;
|
4539
|
+
iconColor?: string | boolean | undefined;
|
4510
4540
|
appendInnerIcon?: IconValue | undefined;
|
4511
4541
|
prependInnerIcon?: IconValue | undefined;
|
4512
4542
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4515,7 +4545,6 @@ export declare const VSelect: {
|
|
4515
4545
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4516
4546
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4517
4547
|
centerAffix?: boolean | undefined;
|
4518
|
-
iconColor?: string | boolean | undefined;
|
4519
4548
|
hint?: string | undefined;
|
4520
4549
|
hideDetails?: boolean | "auto" | undefined;
|
4521
4550
|
suffix?: string | undefined;
|
@@ -4630,9 +4659,9 @@ export declare const VSelect: {
|
|
4630
4659
|
baseColor?: string | undefined;
|
4631
4660
|
prependIcon?: IconValue | undefined;
|
4632
4661
|
appendIcon?: IconValue | undefined;
|
4662
|
+
iconColor?: string | boolean | undefined;
|
4633
4663
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4634
4664
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4635
|
-
iconColor?: string | boolean | undefined;
|
4636
4665
|
hint?: string | undefined;
|
4637
4666
|
hideDetails?: boolean | "auto" | undefined;
|
4638
4667
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4686,9 +4715,9 @@ export declare const VSelect: {
|
|
4686
4715
|
baseColor?: string | undefined;
|
4687
4716
|
prependIcon?: IconValue | undefined;
|
4688
4717
|
appendIcon?: IconValue | undefined;
|
4718
|
+
iconColor?: string | boolean | undefined;
|
4689
4719
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4690
4720
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4691
|
-
iconColor?: string | boolean | undefined;
|
4692
4721
|
hint?: string | undefined;
|
4693
4722
|
hideDetails?: boolean | "auto" | undefined;
|
4694
4723
|
} & {}, {
|
@@ -4789,9 +4818,9 @@ export declare const VSelect: {
|
|
4789
4818
|
baseColor?: string | undefined;
|
4790
4819
|
prependIcon?: IconValue | undefined;
|
4791
4820
|
appendIcon?: IconValue | undefined;
|
4821
|
+
iconColor?: string | boolean | undefined;
|
4792
4822
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4793
4823
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4794
|
-
iconColor?: string | boolean | undefined;
|
4795
4824
|
hint?: string | undefined;
|
4796
4825
|
hideDetails?: boolean | "auto" | undefined;
|
4797
4826
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4803,7 +4832,7 @@ export declare const VSelect: {
|
|
4803
4832
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
4804
4833
|
modelValue?: unknown;
|
4805
4834
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4806
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
4835
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
4807
4836
|
$: import("vue").ComponentInternalInstance;
|
4808
4837
|
$data: {};
|
4809
4838
|
$props: Partial<{
|
@@ -4850,13 +4879,13 @@ export declare const VSelect: {
|
|
4850
4879
|
rounded?: string | number | boolean | undefined;
|
4851
4880
|
baseColor?: string | undefined;
|
4852
4881
|
bgColor?: string | undefined;
|
4882
|
+
iconColor?: string | boolean | undefined;
|
4853
4883
|
appendInnerIcon?: IconValue | undefined;
|
4854
4884
|
prependInnerIcon?: IconValue | undefined;
|
4855
4885
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4856
4886
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4857
4887
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4858
4888
|
centerAffix?: boolean | undefined;
|
4859
|
-
iconColor?: string | boolean | undefined;
|
4860
4889
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
4861
4890
|
$attrs: {
|
4862
4891
|
[x: string]: unknown;
|
@@ -4909,13 +4938,13 @@ export declare const VSelect: {
|
|
4909
4938
|
rounded?: string | number | boolean | undefined;
|
4910
4939
|
baseColor?: string | undefined;
|
4911
4940
|
bgColor?: string | undefined;
|
4941
|
+
iconColor?: string | boolean | undefined;
|
4912
4942
|
appendInnerIcon?: IconValue | undefined;
|
4913
4943
|
prependInnerIcon?: IconValue | undefined;
|
4914
4944
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4915
4945
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4916
4946
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4917
4947
|
centerAffix?: boolean | undefined;
|
4918
|
-
iconColor?: string | boolean | undefined;
|
4919
4948
|
} & {
|
4920
4949
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4921
4950
|
}, {
|
@@ -5019,13 +5048,13 @@ export declare const VSelect: {
|
|
5019
5048
|
rounded?: string | number | boolean | undefined;
|
5020
5049
|
baseColor?: string | undefined;
|
5021
5050
|
bgColor?: string | undefined;
|
5051
|
+
iconColor?: string | boolean | undefined;
|
5022
5052
|
appendInnerIcon?: IconValue | undefined;
|
5023
5053
|
prependInnerIcon?: IconValue | undefined;
|
5024
5054
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5025
5055
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5026
5056
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5027
5057
|
centerAffix?: boolean | undefined;
|
5028
|
-
iconColor?: string | boolean | undefined;
|
5029
5058
|
} & {
|
5030
5059
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5031
5060
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5034,7 +5063,7 @@ export declare const VSelect: {
|
|
5034
5063
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5035
5064
|
modelValue?: unknown;
|
5036
5065
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5037
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
5066
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
5038
5067
|
_allExposed: {
|
5039
5068
|
reset: () => Promise<void>;
|
5040
5069
|
resetValidation: () => Promise<void>;
|
@@ -5202,6 +5231,7 @@ export declare const VSelect: {
|
|
5202
5231
|
bgColor?: string | undefined;
|
5203
5232
|
prependIcon?: IconValue | undefined;
|
5204
5233
|
appendIcon?: IconValue | undefined;
|
5234
|
+
iconColor?: string | boolean | undefined;
|
5205
5235
|
appendInnerIcon?: IconValue | undefined;
|
5206
5236
|
prependInnerIcon?: IconValue | undefined;
|
5207
5237
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5210,7 +5240,6 @@ export declare const VSelect: {
|
|
5210
5240
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5211
5241
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5212
5242
|
centerAffix?: boolean | undefined;
|
5213
|
-
iconColor?: string | boolean | undefined;
|
5214
5243
|
hint?: string | undefined;
|
5215
5244
|
hideDetails?: boolean | "auto" | undefined;
|
5216
5245
|
suffix?: string | undefined;
|
@@ -5325,9 +5354,9 @@ export declare const VSelect: {
|
|
5325
5354
|
baseColor?: string | undefined;
|
5326
5355
|
prependIcon?: IconValue | undefined;
|
5327
5356
|
appendIcon?: IconValue | undefined;
|
5357
|
+
iconColor?: string | boolean | undefined;
|
5328
5358
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5329
5359
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5330
|
-
iconColor?: string | boolean | undefined;
|
5331
5360
|
hint?: string | undefined;
|
5332
5361
|
hideDetails?: boolean | "auto" | undefined;
|
5333
5362
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5381,9 +5410,9 @@ export declare const VSelect: {
|
|
5381
5410
|
baseColor?: string | undefined;
|
5382
5411
|
prependIcon?: IconValue | undefined;
|
5383
5412
|
appendIcon?: IconValue | undefined;
|
5413
|
+
iconColor?: string | boolean | undefined;
|
5384
5414
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5385
5415
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5386
|
-
iconColor?: string | boolean | undefined;
|
5387
5416
|
hint?: string | undefined;
|
5388
5417
|
hideDetails?: boolean | "auto" | undefined;
|
5389
5418
|
} & {}, {
|
@@ -5484,9 +5513,9 @@ export declare const VSelect: {
|
|
5484
5513
|
baseColor?: string | undefined;
|
5485
5514
|
prependIcon?: IconValue | undefined;
|
5486
5515
|
appendIcon?: IconValue | undefined;
|
5516
|
+
iconColor?: string | boolean | undefined;
|
5487
5517
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5488
5518
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5489
|
-
iconColor?: string | boolean | undefined;
|
5490
5519
|
hint?: string | undefined;
|
5491
5520
|
hideDetails?: boolean | "auto" | undefined;
|
5492
5521
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5498,7 +5527,7 @@ export declare const VSelect: {
|
|
5498
5527
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5499
5528
|
modelValue?: unknown;
|
5500
5529
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5501
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
5530
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
5502
5531
|
$: import("vue").ComponentInternalInstance;
|
5503
5532
|
$data: {};
|
5504
5533
|
$props: Partial<{
|
@@ -5545,13 +5574,13 @@ export declare const VSelect: {
|
|
5545
5574
|
rounded?: string | number | boolean | undefined;
|
5546
5575
|
baseColor?: string | undefined;
|
5547
5576
|
bgColor?: string | undefined;
|
5577
|
+
iconColor?: string | boolean | undefined;
|
5548
5578
|
appendInnerIcon?: IconValue | undefined;
|
5549
5579
|
prependInnerIcon?: IconValue | undefined;
|
5550
5580
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5551
5581
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5552
5582
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5553
5583
|
centerAffix?: boolean | undefined;
|
5554
|
-
iconColor?: string | boolean | undefined;
|
5555
5584
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
5556
5585
|
$attrs: {
|
5557
5586
|
[x: string]: unknown;
|
@@ -5604,13 +5633,13 @@ export declare const VSelect: {
|
|
5604
5633
|
rounded?: string | number | boolean | undefined;
|
5605
5634
|
baseColor?: string | undefined;
|
5606
5635
|
bgColor?: string | undefined;
|
5636
|
+
iconColor?: string | boolean | undefined;
|
5607
5637
|
appendInnerIcon?: IconValue | undefined;
|
5608
5638
|
prependInnerIcon?: IconValue | undefined;
|
5609
5639
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5610
5640
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5611
5641
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5612
5642
|
centerAffix?: boolean | undefined;
|
5613
|
-
iconColor?: string | boolean | undefined;
|
5614
5643
|
} & {
|
5615
5644
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5616
5645
|
}, {
|
@@ -5714,13 +5743,13 @@ export declare const VSelect: {
|
|
5714
5743
|
rounded?: string | number | boolean | undefined;
|
5715
5744
|
baseColor?: string | undefined;
|
5716
5745
|
bgColor?: string | undefined;
|
5746
|
+
iconColor?: string | boolean | undefined;
|
5717
5747
|
appendInnerIcon?: IconValue | undefined;
|
5718
5748
|
prependInnerIcon?: IconValue | undefined;
|
5719
5749
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5720
5750
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5721
5751
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5722
5752
|
centerAffix?: boolean | undefined;
|
5723
|
-
iconColor?: string | boolean | undefined;
|
5724
5753
|
} & {
|
5725
5754
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5726
5755
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5729,7 +5758,7 @@ export declare const VSelect: {
|
|
5729
5758
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5730
5759
|
modelValue?: unknown;
|
5731
5760
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5732
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
5761
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
5733
5762
|
_allExposed: {
|
5734
5763
|
reset: () => Promise<void>;
|
5735
5764
|
resetValidation: () => Promise<void>;
|
@@ -5740,7 +5769,7 @@ export declare const VSelect: {
|
|
5740
5769
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
5741
5770
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
5742
5771
|
} | {};
|
5743
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
5772
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
5744
5773
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
5745
5774
|
$: import("vue").ComponentInternalInstance;
|
5746
5775
|
$data: {};
|
@@ -5791,9 +5820,9 @@ export declare const VSelect: {
|
|
5791
5820
|
baseColor?: string | undefined;
|
5792
5821
|
prependIcon?: IconValue | undefined;
|
5793
5822
|
appendIcon?: IconValue | undefined;
|
5823
|
+
iconColor?: string | boolean | undefined;
|
5794
5824
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5795
5825
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5796
|
-
iconColor?: string | boolean | undefined;
|
5797
5826
|
hint?: string | undefined;
|
5798
5827
|
hideDetails?: boolean | "auto" | undefined;
|
5799
5828
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5847,9 +5876,9 @@ export declare const VSelect: {
|
|
5847
5876
|
baseColor?: string | undefined;
|
5848
5877
|
prependIcon?: IconValue | undefined;
|
5849
5878
|
appendIcon?: IconValue | undefined;
|
5879
|
+
iconColor?: string | boolean | undefined;
|
5850
5880
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5851
5881
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5852
|
-
iconColor?: string | boolean | undefined;
|
5853
5882
|
hint?: string | undefined;
|
5854
5883
|
hideDetails?: boolean | "auto" | undefined;
|
5855
5884
|
} & {}, {
|
@@ -5950,9 +5979,9 @@ export declare const VSelect: {
|
|
5950
5979
|
baseColor?: string | undefined;
|
5951
5980
|
prependIcon?: IconValue | undefined;
|
5952
5981
|
appendIcon?: IconValue | undefined;
|
5982
|
+
iconColor?: string | boolean | undefined;
|
5953
5983
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5954
5984
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5955
|
-
iconColor?: string | boolean | undefined;
|
5956
5985
|
hint?: string | undefined;
|
5957
5986
|
hideDetails?: boolean | "auto" | undefined;
|
5958
5987
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5964,7 +5993,7 @@ export declare const VSelect: {
|
|
5964
5993
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
5965
5994
|
modelValue?: unknown;
|
5966
5995
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5967
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
5996
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
5968
5997
|
$: import("vue").ComponentInternalInstance;
|
5969
5998
|
$data: {};
|
5970
5999
|
$props: Partial<{
|
@@ -6011,13 +6040,13 @@ export declare const VSelect: {
|
|
6011
6040
|
rounded?: string | number | boolean | undefined;
|
6012
6041
|
baseColor?: string | undefined;
|
6013
6042
|
bgColor?: string | undefined;
|
6043
|
+
iconColor?: string | boolean | undefined;
|
6014
6044
|
appendInnerIcon?: IconValue | undefined;
|
6015
6045
|
prependInnerIcon?: IconValue | undefined;
|
6016
6046
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6017
6047
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6018
6048
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6019
6049
|
centerAffix?: boolean | undefined;
|
6020
|
-
iconColor?: string | boolean | undefined;
|
6021
6050
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
6022
6051
|
$attrs: {
|
6023
6052
|
[x: string]: unknown;
|
@@ -6070,13 +6099,13 @@ export declare const VSelect: {
|
|
6070
6099
|
rounded?: string | number | boolean | undefined;
|
6071
6100
|
baseColor?: string | undefined;
|
6072
6101
|
bgColor?: string | undefined;
|
6102
|
+
iconColor?: string | boolean | undefined;
|
6073
6103
|
appendInnerIcon?: IconValue | undefined;
|
6074
6104
|
prependInnerIcon?: IconValue | undefined;
|
6075
6105
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6076
6106
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6077
6107
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6078
6108
|
centerAffix?: boolean | undefined;
|
6079
|
-
iconColor?: string | boolean | undefined;
|
6080
6109
|
} & {
|
6081
6110
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6082
6111
|
}, {
|
@@ -6180,13 +6209,13 @@ export declare const VSelect: {
|
|
6180
6209
|
rounded?: string | number | boolean | undefined;
|
6181
6210
|
baseColor?: string | undefined;
|
6182
6211
|
bgColor?: string | undefined;
|
6212
|
+
iconColor?: string | boolean | undefined;
|
6183
6213
|
appendInnerIcon?: IconValue | undefined;
|
6184
6214
|
prependInnerIcon?: IconValue | undefined;
|
6185
6215
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6186
6216
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6187
6217
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6188
6218
|
centerAffix?: boolean | undefined;
|
6189
|
-
iconColor?: string | boolean | undefined;
|
6190
6219
|
} & {
|
6191
6220
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6192
6221
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6195,7 +6224,7 @@ export declare const VSelect: {
|
|
6195
6224
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
6196
6225
|
modelValue?: unknown;
|
6197
6226
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6198
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
6227
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
6199
6228
|
_allExposed: {
|
6200
6229
|
reset: () => Promise<void>;
|
6201
6230
|
resetValidation: () => Promise<void>;
|
@@ -6215,7 +6244,7 @@ export declare const VSelect: {
|
|
6215
6244
|
'update:focused': (focused: boolean) => true;
|
6216
6245
|
'update:modelValue': (value: any) => true;
|
6217
6246
|
'update:menu': (ue: boolean) => true;
|
6218
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
6247
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
6219
6248
|
flat: boolean;
|
6220
6249
|
reverse: boolean;
|
6221
6250
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -6263,6 +6292,7 @@ export declare const VSelect: {
|
|
6263
6292
|
hideSelected: boolean;
|
6264
6293
|
menuIcon: IconValue;
|
6265
6294
|
openOnClear: boolean;
|
6295
|
+
noAutoScroll: boolean;
|
6266
6296
|
}, true, {}, import("vue").SlotsType<Partial<{
|
6267
6297
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
6268
6298
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
@@ -6292,6 +6322,14 @@ export declare const VSelect: {
|
|
6292
6322
|
item: ListItem<unknown>;
|
6293
6323
|
index: number;
|
6294
6324
|
}) => import("vue").VNode[];
|
6325
|
+
subheader: (arg: {
|
6326
|
+
props: Record<string, unknown>;
|
6327
|
+
index: number;
|
6328
|
+
}) => import("vue").VNode[];
|
6329
|
+
divider: (arg: {
|
6330
|
+
props: Record<string, unknown>;
|
6331
|
+
index: number;
|
6332
|
+
}) => import("vue").VNode[];
|
6295
6333
|
'prepend-item': () => import("vue").VNode[];
|
6296
6334
|
'append-item': () => import("vue").VNode[];
|
6297
6335
|
'no-data': () => import("vue").VNode[];
|
@@ -6348,6 +6386,7 @@ export declare const VSelect: {
|
|
6348
6386
|
hideSelected: boolean;
|
6349
6387
|
menuIcon: IconValue;
|
6350
6388
|
openOnClear: boolean;
|
6389
|
+
noAutoScroll: boolean;
|
6351
6390
|
} & {
|
6352
6391
|
name?: string | undefined;
|
6353
6392
|
id?: string | undefined;
|
@@ -6370,6 +6409,7 @@ export declare const VSelect: {
|
|
6370
6409
|
bgColor?: string | undefined;
|
6371
6410
|
prependIcon?: IconValue | undefined;
|
6372
6411
|
appendIcon?: IconValue | undefined;
|
6412
|
+
iconColor?: string | boolean | undefined;
|
6373
6413
|
prependInnerIcon?: IconValue | undefined;
|
6374
6414
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6375
6415
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6377,7 +6417,6 @@ export declare const VSelect: {
|
|
6377
6417
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6378
6418
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6379
6419
|
centerAffix?: boolean | undefined;
|
6380
|
-
iconColor?: string | boolean | undefined;
|
6381
6420
|
hint?: string | undefined;
|
6382
6421
|
hideDetails?: boolean | "auto" | undefined;
|
6383
6422
|
suffix?: string | undefined;
|
@@ -6397,6 +6436,7 @@ export declare const VSelect: {
|
|
6397
6436
|
rounded: string | number | boolean;
|
6398
6437
|
tile: boolean;
|
6399
6438
|
slim: boolean;
|
6439
|
+
filterable: boolean;
|
6400
6440
|
activatable: boolean;
|
6401
6441
|
selectable: boolean;
|
6402
6442
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -6414,6 +6454,7 @@ export declare const VSelect: {
|
|
6414
6454
|
density: import("../../composables/density.js").Density;
|
6415
6455
|
tile: boolean;
|
6416
6456
|
slim: boolean;
|
6457
|
+
filterable: boolean;
|
6417
6458
|
activatable: boolean;
|
6418
6459
|
selectable: boolean;
|
6419
6460
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -6445,7 +6486,7 @@ export declare const VSelect: {
|
|
6445
6486
|
value: boolean;
|
6446
6487
|
path: unknown[];
|
6447
6488
|
}) => any) | undefined;
|
6448
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
6489
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
6449
6490
|
items?: readonly any[] | undefined;
|
6450
6491
|
itemTitle?: SelectItemKey<any>;
|
6451
6492
|
itemValue?: SelectItemKey<any>;
|
@@ -6851,6 +6892,7 @@ export declare const VSelect: {
|
|
6851
6892
|
bgColor?: string | undefined;
|
6852
6893
|
prependIcon?: IconValue | undefined;
|
6853
6894
|
appendIcon?: IconValue | undefined;
|
6895
|
+
iconColor?: string | boolean | undefined;
|
6854
6896
|
appendInnerIcon?: IconValue | undefined;
|
6855
6897
|
prependInnerIcon?: IconValue | undefined;
|
6856
6898
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6859,7 +6901,6 @@ export declare const VSelect: {
|
|
6859
6901
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6860
6902
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6861
6903
|
centerAffix?: boolean | undefined;
|
6862
|
-
iconColor?: string | boolean | undefined;
|
6863
6904
|
hint?: string | undefined;
|
6864
6905
|
hideDetails?: boolean | "auto" | undefined;
|
6865
6906
|
suffix?: string | undefined;
|
@@ -7003,6 +7044,7 @@ export declare const VSelect: {
|
|
7003
7044
|
bgColor?: string | undefined;
|
7004
7045
|
prependIcon?: IconValue | undefined;
|
7005
7046
|
appendIcon?: IconValue | undefined;
|
7047
|
+
iconColor?: string | boolean | undefined;
|
7006
7048
|
appendInnerIcon?: IconValue | undefined;
|
7007
7049
|
prependInnerIcon?: IconValue | undefined;
|
7008
7050
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7011,7 +7053,6 @@ export declare const VSelect: {
|
|
7011
7053
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7012
7054
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7013
7055
|
centerAffix?: boolean | undefined;
|
7014
|
-
iconColor?: string | boolean | undefined;
|
7015
7056
|
hint?: string | undefined;
|
7016
7057
|
hideDetails?: boolean | "auto" | undefined;
|
7017
7058
|
suffix?: string | undefined;
|
@@ -7126,9 +7167,9 @@ export declare const VSelect: {
|
|
7126
7167
|
baseColor?: string | undefined;
|
7127
7168
|
prependIcon?: IconValue | undefined;
|
7128
7169
|
appendIcon?: IconValue | undefined;
|
7170
|
+
iconColor?: string | boolean | undefined;
|
7129
7171
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7130
7172
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7131
|
-
iconColor?: string | boolean | undefined;
|
7132
7173
|
hint?: string | undefined;
|
7133
7174
|
hideDetails?: boolean | "auto" | undefined;
|
7134
7175
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -7182,9 +7223,9 @@ export declare const VSelect: {
|
|
7182
7223
|
baseColor?: string | undefined;
|
7183
7224
|
prependIcon?: IconValue | undefined;
|
7184
7225
|
appendIcon?: IconValue | undefined;
|
7226
|
+
iconColor?: string | boolean | undefined;
|
7185
7227
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7186
7228
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7187
|
-
iconColor?: string | boolean | undefined;
|
7188
7229
|
hint?: string | undefined;
|
7189
7230
|
hideDetails?: boolean | "auto" | undefined;
|
7190
7231
|
} & {}, {
|
@@ -7285,9 +7326,9 @@ export declare const VSelect: {
|
|
7285
7326
|
baseColor?: string | undefined;
|
7286
7327
|
prependIcon?: IconValue | undefined;
|
7287
7328
|
appendIcon?: IconValue | undefined;
|
7329
|
+
iconColor?: string | boolean | undefined;
|
7288
7330
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7289
7331
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7290
|
-
iconColor?: string | boolean | undefined;
|
7291
7332
|
hint?: string | undefined;
|
7292
7333
|
hideDetails?: boolean | "auto" | undefined;
|
7293
7334
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7299,7 +7340,7 @@ export declare const VSelect: {
|
|
7299
7340
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7300
7341
|
modelValue?: unknown;
|
7301
7342
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7302
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
7343
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
7303
7344
|
$: import("vue").ComponentInternalInstance;
|
7304
7345
|
$data: {};
|
7305
7346
|
$props: Partial<{
|
@@ -7346,13 +7387,13 @@ export declare const VSelect: {
|
|
7346
7387
|
rounded?: string | number | boolean | undefined;
|
7347
7388
|
baseColor?: string | undefined;
|
7348
7389
|
bgColor?: string | undefined;
|
7390
|
+
iconColor?: string | boolean | undefined;
|
7349
7391
|
appendInnerIcon?: IconValue | undefined;
|
7350
7392
|
prependInnerIcon?: IconValue | undefined;
|
7351
7393
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7352
7394
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7353
7395
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7354
7396
|
centerAffix?: boolean | undefined;
|
7355
|
-
iconColor?: string | boolean | undefined;
|
7356
7397
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
7357
7398
|
$attrs: {
|
7358
7399
|
[x: string]: unknown;
|
@@ -7405,13 +7446,13 @@ export declare const VSelect: {
|
|
7405
7446
|
rounded?: string | number | boolean | undefined;
|
7406
7447
|
baseColor?: string | undefined;
|
7407
7448
|
bgColor?: string | undefined;
|
7449
|
+
iconColor?: string | boolean | undefined;
|
7408
7450
|
appendInnerIcon?: IconValue | undefined;
|
7409
7451
|
prependInnerIcon?: IconValue | undefined;
|
7410
7452
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7411
7453
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7412
7454
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7413
7455
|
centerAffix?: boolean | undefined;
|
7414
|
-
iconColor?: string | boolean | undefined;
|
7415
7456
|
} & {
|
7416
7457
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7417
7458
|
}, {
|
@@ -7515,13 +7556,13 @@ export declare const VSelect: {
|
|
7515
7556
|
rounded?: string | number | boolean | undefined;
|
7516
7557
|
baseColor?: string | undefined;
|
7517
7558
|
bgColor?: string | undefined;
|
7559
|
+
iconColor?: string | boolean | undefined;
|
7518
7560
|
appendInnerIcon?: IconValue | undefined;
|
7519
7561
|
prependInnerIcon?: IconValue | undefined;
|
7520
7562
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7521
7563
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7522
7564
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7523
7565
|
centerAffix?: boolean | undefined;
|
7524
|
-
iconColor?: string | boolean | undefined;
|
7525
7566
|
} & {
|
7526
7567
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7527
7568
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7530,7 +7571,7 @@ export declare const VSelect: {
|
|
7530
7571
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7531
7572
|
modelValue?: unknown;
|
7532
7573
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7533
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
7574
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
7534
7575
|
_allExposed: {
|
7535
7576
|
reset: () => Promise<void>;
|
7536
7577
|
resetValidation: () => Promise<void>;
|
@@ -7698,6 +7739,7 @@ export declare const VSelect: {
|
|
7698
7739
|
bgColor?: string | undefined;
|
7699
7740
|
prependIcon?: IconValue | undefined;
|
7700
7741
|
appendIcon?: IconValue | undefined;
|
7742
|
+
iconColor?: string | boolean | undefined;
|
7701
7743
|
appendInnerIcon?: IconValue | undefined;
|
7702
7744
|
prependInnerIcon?: IconValue | undefined;
|
7703
7745
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -7706,7 +7748,6 @@ export declare const VSelect: {
|
|
7706
7748
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7707
7749
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7708
7750
|
centerAffix?: boolean | undefined;
|
7709
|
-
iconColor?: string | boolean | undefined;
|
7710
7751
|
hint?: string | undefined;
|
7711
7752
|
hideDetails?: boolean | "auto" | undefined;
|
7712
7753
|
suffix?: string | undefined;
|
@@ -7821,9 +7862,9 @@ export declare const VSelect: {
|
|
7821
7862
|
baseColor?: string | undefined;
|
7822
7863
|
prependIcon?: IconValue | undefined;
|
7823
7864
|
appendIcon?: IconValue | undefined;
|
7865
|
+
iconColor?: string | boolean | undefined;
|
7824
7866
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7825
7867
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7826
|
-
iconColor?: string | boolean | undefined;
|
7827
7868
|
hint?: string | undefined;
|
7828
7869
|
hideDetails?: boolean | "auto" | undefined;
|
7829
7870
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -7877,9 +7918,9 @@ export declare const VSelect: {
|
|
7877
7918
|
baseColor?: string | undefined;
|
7878
7919
|
prependIcon?: IconValue | undefined;
|
7879
7920
|
appendIcon?: IconValue | undefined;
|
7921
|
+
iconColor?: string | boolean | undefined;
|
7880
7922
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7881
7923
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7882
|
-
iconColor?: string | boolean | undefined;
|
7883
7924
|
hint?: string | undefined;
|
7884
7925
|
hideDetails?: boolean | "auto" | undefined;
|
7885
7926
|
} & {}, {
|
@@ -7980,9 +8021,9 @@ export declare const VSelect: {
|
|
7980
8021
|
baseColor?: string | undefined;
|
7981
8022
|
prependIcon?: IconValue | undefined;
|
7982
8023
|
appendIcon?: IconValue | undefined;
|
8024
|
+
iconColor?: string | boolean | undefined;
|
7983
8025
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7984
8026
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7985
|
-
iconColor?: string | boolean | undefined;
|
7986
8027
|
hint?: string | undefined;
|
7987
8028
|
hideDetails?: boolean | "auto" | undefined;
|
7988
8029
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7994,7 +8035,7 @@ export declare const VSelect: {
|
|
7994
8035
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
7995
8036
|
modelValue?: unknown;
|
7996
8037
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7997
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
8038
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
7998
8039
|
$: import("vue").ComponentInternalInstance;
|
7999
8040
|
$data: {};
|
8000
8041
|
$props: Partial<{
|
@@ -8041,13 +8082,13 @@ export declare const VSelect: {
|
|
8041
8082
|
rounded?: string | number | boolean | undefined;
|
8042
8083
|
baseColor?: string | undefined;
|
8043
8084
|
bgColor?: string | undefined;
|
8085
|
+
iconColor?: string | boolean | undefined;
|
8044
8086
|
appendInnerIcon?: IconValue | undefined;
|
8045
8087
|
prependInnerIcon?: IconValue | undefined;
|
8046
8088
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8047
8089
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8048
8090
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8049
8091
|
centerAffix?: boolean | undefined;
|
8050
|
-
iconColor?: string | boolean | undefined;
|
8051
8092
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
8052
8093
|
$attrs: {
|
8053
8094
|
[x: string]: unknown;
|
@@ -8100,13 +8141,13 @@ export declare const VSelect: {
|
|
8100
8141
|
rounded?: string | number | boolean | undefined;
|
8101
8142
|
baseColor?: string | undefined;
|
8102
8143
|
bgColor?: string | undefined;
|
8144
|
+
iconColor?: string | boolean | undefined;
|
8103
8145
|
appendInnerIcon?: IconValue | undefined;
|
8104
8146
|
prependInnerIcon?: IconValue | undefined;
|
8105
8147
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8106
8148
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8107
8149
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8108
8150
|
centerAffix?: boolean | undefined;
|
8109
|
-
iconColor?: string | boolean | undefined;
|
8110
8151
|
} & {
|
8111
8152
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8112
8153
|
}, {
|
@@ -8210,13 +8251,13 @@ export declare const VSelect: {
|
|
8210
8251
|
rounded?: string | number | boolean | undefined;
|
8211
8252
|
baseColor?: string | undefined;
|
8212
8253
|
bgColor?: string | undefined;
|
8254
|
+
iconColor?: string | boolean | undefined;
|
8213
8255
|
appendInnerIcon?: IconValue | undefined;
|
8214
8256
|
prependInnerIcon?: IconValue | undefined;
|
8215
8257
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8216
8258
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8217
8259
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8218
8260
|
centerAffix?: boolean | undefined;
|
8219
|
-
iconColor?: string | boolean | undefined;
|
8220
8261
|
} & {
|
8221
8262
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8222
8263
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8225,7 +8266,7 @@ export declare const VSelect: {
|
|
8225
8266
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8226
8267
|
modelValue?: unknown;
|
8227
8268
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8228
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
8269
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
8229
8270
|
_allExposed: {
|
8230
8271
|
reset: () => Promise<void>;
|
8231
8272
|
resetValidation: () => Promise<void>;
|
@@ -8236,7 +8277,7 @@ export declare const VSelect: {
|
|
8236
8277
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
8237
8278
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
8238
8279
|
} | {};
|
8239
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
8280
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
8240
8281
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
8241
8282
|
$: import("vue").ComponentInternalInstance;
|
8242
8283
|
$data: {};
|
@@ -8287,9 +8328,9 @@ export declare const VSelect: {
|
|
8287
8328
|
baseColor?: string | undefined;
|
8288
8329
|
prependIcon?: IconValue | undefined;
|
8289
8330
|
appendIcon?: IconValue | undefined;
|
8331
|
+
iconColor?: string | boolean | undefined;
|
8290
8332
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8291
8333
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8292
|
-
iconColor?: string | boolean | undefined;
|
8293
8334
|
hint?: string | undefined;
|
8294
8335
|
hideDetails?: boolean | "auto" | undefined;
|
8295
8336
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -8343,9 +8384,9 @@ export declare const VSelect: {
|
|
8343
8384
|
baseColor?: string | undefined;
|
8344
8385
|
prependIcon?: IconValue | undefined;
|
8345
8386
|
appendIcon?: IconValue | undefined;
|
8387
|
+
iconColor?: string | boolean | undefined;
|
8346
8388
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8347
8389
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8348
|
-
iconColor?: string | boolean | undefined;
|
8349
8390
|
hint?: string | undefined;
|
8350
8391
|
hideDetails?: boolean | "auto" | undefined;
|
8351
8392
|
} & {}, {
|
@@ -8446,9 +8487,9 @@ export declare const VSelect: {
|
|
8446
8487
|
baseColor?: string | undefined;
|
8447
8488
|
prependIcon?: IconValue | undefined;
|
8448
8489
|
appendIcon?: IconValue | undefined;
|
8490
|
+
iconColor?: string | boolean | undefined;
|
8449
8491
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
8450
8492
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
8451
|
-
iconColor?: string | boolean | undefined;
|
8452
8493
|
hint?: string | undefined;
|
8453
8494
|
hideDetails?: boolean | "auto" | undefined;
|
8454
8495
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -8460,7 +8501,7 @@ export declare const VSelect: {
|
|
8460
8501
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8461
8502
|
modelValue?: unknown;
|
8462
8503
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8463
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
8504
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
8464
8505
|
$: import("vue").ComponentInternalInstance;
|
8465
8506
|
$data: {};
|
8466
8507
|
$props: Partial<{
|
@@ -8507,13 +8548,13 @@ export declare const VSelect: {
|
|
8507
8548
|
rounded?: string | number | boolean | undefined;
|
8508
8549
|
baseColor?: string | undefined;
|
8509
8550
|
bgColor?: string | undefined;
|
8551
|
+
iconColor?: string | boolean | undefined;
|
8510
8552
|
appendInnerIcon?: IconValue | undefined;
|
8511
8553
|
prependInnerIcon?: IconValue | undefined;
|
8512
8554
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8513
8555
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8514
8556
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8515
8557
|
centerAffix?: boolean | undefined;
|
8516
|
-
iconColor?: string | boolean | undefined;
|
8517
8558
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
8518
8559
|
$attrs: {
|
8519
8560
|
[x: string]: unknown;
|
@@ -8566,13 +8607,13 @@ export declare const VSelect: {
|
|
8566
8607
|
rounded?: string | number | boolean | undefined;
|
8567
8608
|
baseColor?: string | undefined;
|
8568
8609
|
bgColor?: string | undefined;
|
8610
|
+
iconColor?: string | boolean | undefined;
|
8569
8611
|
appendInnerIcon?: IconValue | undefined;
|
8570
8612
|
prependInnerIcon?: IconValue | undefined;
|
8571
8613
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8572
8614
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8573
8615
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8574
8616
|
centerAffix?: boolean | undefined;
|
8575
|
-
iconColor?: string | boolean | undefined;
|
8576
8617
|
} & {
|
8577
8618
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8578
8619
|
}, {
|
@@ -8676,13 +8717,13 @@ export declare const VSelect: {
|
|
8676
8717
|
rounded?: string | number | boolean | undefined;
|
8677
8718
|
baseColor?: string | undefined;
|
8678
8719
|
bgColor?: string | undefined;
|
8720
|
+
iconColor?: string | boolean | undefined;
|
8679
8721
|
appendInnerIcon?: IconValue | undefined;
|
8680
8722
|
prependInnerIcon?: IconValue | undefined;
|
8681
8723
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8682
8724
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8683
8725
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8684
8726
|
centerAffix?: boolean | undefined;
|
8685
|
-
iconColor?: string | boolean | undefined;
|
8686
8727
|
} & {
|
8687
8728
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
8688
8729
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -8691,7 +8732,7 @@ export declare const VSelect: {
|
|
8691
8732
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
8692
8733
|
modelValue?: unknown;
|
8693
8734
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
8694
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
8735
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
8695
8736
|
_allExposed: {
|
8696
8737
|
reset: () => Promise<void>;
|
8697
8738
|
resetValidation: () => Promise<void>;
|
@@ -8755,6 +8796,7 @@ export declare const VSelect: {
|
|
8755
8796
|
hideSelected: boolean;
|
8756
8797
|
menuIcon: IconValue;
|
8757
8798
|
openOnClear: boolean;
|
8799
|
+
noAutoScroll: boolean;
|
8758
8800
|
}>;
|
8759
8801
|
__isFragment?: never;
|
8760
8802
|
__isTeleport?: never;
|
@@ -8805,6 +8847,7 @@ export declare const VSelect: {
|
|
8805
8847
|
hideSelected: boolean;
|
8806
8848
|
menuIcon: IconValue;
|
8807
8849
|
openOnClear: boolean;
|
8850
|
+
noAutoScroll: boolean;
|
8808
8851
|
} & {
|
8809
8852
|
name?: string | undefined;
|
8810
8853
|
id?: string | undefined;
|
@@ -8827,6 +8870,7 @@ export declare const VSelect: {
|
|
8827
8870
|
bgColor?: string | undefined;
|
8828
8871
|
prependIcon?: IconValue | undefined;
|
8829
8872
|
appendIcon?: IconValue | undefined;
|
8873
|
+
iconColor?: string | boolean | undefined;
|
8830
8874
|
prependInnerIcon?: IconValue | undefined;
|
8831
8875
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
8832
8876
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -8834,7 +8878,6 @@ export declare const VSelect: {
|
|
8834
8878
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8835
8879
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
8836
8880
|
centerAffix?: boolean | undefined;
|
8837
|
-
iconColor?: string | boolean | undefined;
|
8838
8881
|
hint?: string | undefined;
|
8839
8882
|
hideDetails?: boolean | "auto" | undefined;
|
8840
8883
|
suffix?: string | undefined;
|
@@ -8854,6 +8897,7 @@ export declare const VSelect: {
|
|
8854
8897
|
rounded: string | number | boolean;
|
8855
8898
|
tile: boolean;
|
8856
8899
|
slim: boolean;
|
8900
|
+
filterable: boolean;
|
8857
8901
|
activatable: boolean;
|
8858
8902
|
selectable: boolean;
|
8859
8903
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -8871,6 +8915,7 @@ export declare const VSelect: {
|
|
8871
8915
|
density: import("../../composables/density.js").Density;
|
8872
8916
|
tile: boolean;
|
8873
8917
|
slim: boolean;
|
8918
|
+
filterable: boolean;
|
8874
8919
|
activatable: boolean;
|
8875
8920
|
selectable: boolean;
|
8876
8921
|
openStrategy: import("../../composables/nested/nested.js").OpenStrategyProp;
|
@@ -8902,7 +8947,7 @@ export declare const VSelect: {
|
|
8902
8947
|
value: boolean;
|
8903
8948
|
path: unknown[];
|
8904
8949
|
}) => any) | undefined;
|
8905
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
8950
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "variant" | "nav" | "style" | "disabled" | "tag" | "lines" | "mandatory" | "returnObject" | "selectStrategy" | "density" | "rounded" | "tile" | "slim" | "filterable" | "activatable" | "selectable" | "openStrategy" | "itemType"> & {
|
8906
8951
|
items?: readonly any[] | undefined;
|
8907
8952
|
itemTitle?: SelectItemKey<any>;
|
8908
8953
|
itemValue?: SelectItemKey<any>;
|
@@ -9308,6 +9353,7 @@ export declare const VSelect: {
|
|
9308
9353
|
bgColor?: string | undefined;
|
9309
9354
|
prependIcon?: IconValue | undefined;
|
9310
9355
|
appendIcon?: IconValue | undefined;
|
9356
|
+
iconColor?: string | boolean | undefined;
|
9311
9357
|
appendInnerIcon?: IconValue | undefined;
|
9312
9358
|
prependInnerIcon?: IconValue | undefined;
|
9313
9359
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -9316,7 +9362,6 @@ export declare const VSelect: {
|
|
9316
9362
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9317
9363
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9318
9364
|
centerAffix?: boolean | undefined;
|
9319
|
-
iconColor?: string | boolean | undefined;
|
9320
9365
|
hint?: string | undefined;
|
9321
9366
|
hideDetails?: boolean | "auto" | undefined;
|
9322
9367
|
suffix?: string | undefined;
|
@@ -9460,6 +9505,7 @@ export declare const VSelect: {
|
|
9460
9505
|
bgColor?: string | undefined;
|
9461
9506
|
prependIcon?: IconValue | undefined;
|
9462
9507
|
appendIcon?: IconValue | undefined;
|
9508
|
+
iconColor?: string | boolean | undefined;
|
9463
9509
|
appendInnerIcon?: IconValue | undefined;
|
9464
9510
|
prependInnerIcon?: IconValue | undefined;
|
9465
9511
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -9468,7 +9514,6 @@ export declare const VSelect: {
|
|
9468
9514
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9469
9515
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9470
9516
|
centerAffix?: boolean | undefined;
|
9471
|
-
iconColor?: string | boolean | undefined;
|
9472
9517
|
hint?: string | undefined;
|
9473
9518
|
hideDetails?: boolean | "auto" | undefined;
|
9474
9519
|
suffix?: string | undefined;
|
@@ -9583,9 +9628,9 @@ export declare const VSelect: {
|
|
9583
9628
|
baseColor?: string | undefined;
|
9584
9629
|
prependIcon?: IconValue | undefined;
|
9585
9630
|
appendIcon?: IconValue | undefined;
|
9631
|
+
iconColor?: string | boolean | undefined;
|
9586
9632
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9587
9633
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9588
|
-
iconColor?: string | boolean | undefined;
|
9589
9634
|
hint?: string | undefined;
|
9590
9635
|
hideDetails?: boolean | "auto" | undefined;
|
9591
9636
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -9639,9 +9684,9 @@ export declare const VSelect: {
|
|
9639
9684
|
baseColor?: string | undefined;
|
9640
9685
|
prependIcon?: IconValue | undefined;
|
9641
9686
|
appendIcon?: IconValue | undefined;
|
9687
|
+
iconColor?: string | boolean | undefined;
|
9642
9688
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9643
9689
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9644
|
-
iconColor?: string | boolean | undefined;
|
9645
9690
|
hint?: string | undefined;
|
9646
9691
|
hideDetails?: boolean | "auto" | undefined;
|
9647
9692
|
} & {}, {
|
@@ -9742,9 +9787,9 @@ export declare const VSelect: {
|
|
9742
9787
|
baseColor?: string | undefined;
|
9743
9788
|
prependIcon?: IconValue | undefined;
|
9744
9789
|
appendIcon?: IconValue | undefined;
|
9790
|
+
iconColor?: string | boolean | undefined;
|
9745
9791
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
9746
9792
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
9747
|
-
iconColor?: string | boolean | undefined;
|
9748
9793
|
hint?: string | undefined;
|
9749
9794
|
hideDetails?: boolean | "auto" | undefined;
|
9750
9795
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -9756,7 +9801,7 @@ export declare const VSelect: {
|
|
9756
9801
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9757
9802
|
modelValue?: unknown;
|
9758
9803
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9759
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
9804
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
9760
9805
|
$: import("vue").ComponentInternalInstance;
|
9761
9806
|
$data: {};
|
9762
9807
|
$props: Partial<{
|
@@ -9803,13 +9848,13 @@ export declare const VSelect: {
|
|
9803
9848
|
rounded?: string | number | boolean | undefined;
|
9804
9849
|
baseColor?: string | undefined;
|
9805
9850
|
bgColor?: string | undefined;
|
9851
|
+
iconColor?: string | boolean | undefined;
|
9806
9852
|
appendInnerIcon?: IconValue | undefined;
|
9807
9853
|
prependInnerIcon?: IconValue | undefined;
|
9808
9854
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9809
9855
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9810
9856
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9811
9857
|
centerAffix?: boolean | undefined;
|
9812
|
-
iconColor?: string | boolean | undefined;
|
9813
9858
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
9814
9859
|
$attrs: {
|
9815
9860
|
[x: string]: unknown;
|
@@ -9862,13 +9907,13 @@ export declare const VSelect: {
|
|
9862
9907
|
rounded?: string | number | boolean | undefined;
|
9863
9908
|
baseColor?: string | undefined;
|
9864
9909
|
bgColor?: string | undefined;
|
9910
|
+
iconColor?: string | boolean | undefined;
|
9865
9911
|
appendInnerIcon?: IconValue | undefined;
|
9866
9912
|
prependInnerIcon?: IconValue | undefined;
|
9867
9913
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9868
9914
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9869
9915
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9870
9916
|
centerAffix?: boolean | undefined;
|
9871
|
-
iconColor?: string | boolean | undefined;
|
9872
9917
|
} & {
|
9873
9918
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9874
9919
|
}, {
|
@@ -9972,13 +10017,13 @@ export declare const VSelect: {
|
|
9972
10017
|
rounded?: string | number | boolean | undefined;
|
9973
10018
|
baseColor?: string | undefined;
|
9974
10019
|
bgColor?: string | undefined;
|
10020
|
+
iconColor?: string | boolean | undefined;
|
9975
10021
|
appendInnerIcon?: IconValue | undefined;
|
9976
10022
|
prependInnerIcon?: IconValue | undefined;
|
9977
10023
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
9978
10024
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9979
10025
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
9980
10026
|
centerAffix?: boolean | undefined;
|
9981
|
-
iconColor?: string | boolean | undefined;
|
9982
10027
|
} & {
|
9983
10028
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
9984
10029
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -9987,7 +10032,7 @@ export declare const VSelect: {
|
|
9987
10032
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
9988
10033
|
modelValue?: unknown;
|
9989
10034
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
9990
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
10035
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
9991
10036
|
_allExposed: {
|
9992
10037
|
reset: () => Promise<void>;
|
9993
10038
|
resetValidation: () => Promise<void>;
|
@@ -10155,6 +10200,7 @@ export declare const VSelect: {
|
|
10155
10200
|
bgColor?: string | undefined;
|
10156
10201
|
prependIcon?: IconValue | undefined;
|
10157
10202
|
appendIcon?: IconValue | undefined;
|
10203
|
+
iconColor?: string | boolean | undefined;
|
10158
10204
|
appendInnerIcon?: IconValue | undefined;
|
10159
10205
|
prependInnerIcon?: IconValue | undefined;
|
10160
10206
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -10163,7 +10209,6 @@ export declare const VSelect: {
|
|
10163
10209
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10164
10210
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10165
10211
|
centerAffix?: boolean | undefined;
|
10166
|
-
iconColor?: string | boolean | undefined;
|
10167
10212
|
hint?: string | undefined;
|
10168
10213
|
hideDetails?: boolean | "auto" | undefined;
|
10169
10214
|
suffix?: string | undefined;
|
@@ -10278,9 +10323,9 @@ export declare const VSelect: {
|
|
10278
10323
|
baseColor?: string | undefined;
|
10279
10324
|
prependIcon?: IconValue | undefined;
|
10280
10325
|
appendIcon?: IconValue | undefined;
|
10326
|
+
iconColor?: string | boolean | undefined;
|
10281
10327
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10282
10328
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10283
|
-
iconColor?: string | boolean | undefined;
|
10284
10329
|
hint?: string | undefined;
|
10285
10330
|
hideDetails?: boolean | "auto" | undefined;
|
10286
10331
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -10334,9 +10379,9 @@ export declare const VSelect: {
|
|
10334
10379
|
baseColor?: string | undefined;
|
10335
10380
|
prependIcon?: IconValue | undefined;
|
10336
10381
|
appendIcon?: IconValue | undefined;
|
10382
|
+
iconColor?: string | boolean | undefined;
|
10337
10383
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10338
10384
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10339
|
-
iconColor?: string | boolean | undefined;
|
10340
10385
|
hint?: string | undefined;
|
10341
10386
|
hideDetails?: boolean | "auto" | undefined;
|
10342
10387
|
} & {}, {
|
@@ -10437,9 +10482,9 @@ export declare const VSelect: {
|
|
10437
10482
|
baseColor?: string | undefined;
|
10438
10483
|
prependIcon?: IconValue | undefined;
|
10439
10484
|
appendIcon?: IconValue | undefined;
|
10485
|
+
iconColor?: string | boolean | undefined;
|
10440
10486
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10441
10487
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10442
|
-
iconColor?: string | boolean | undefined;
|
10443
10488
|
hint?: string | undefined;
|
10444
10489
|
hideDetails?: boolean | "auto" | undefined;
|
10445
10490
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -10451,7 +10496,7 @@ export declare const VSelect: {
|
|
10451
10496
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
10452
10497
|
modelValue?: unknown;
|
10453
10498
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
10454
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
10499
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
10455
10500
|
$: import("vue").ComponentInternalInstance;
|
10456
10501
|
$data: {};
|
10457
10502
|
$props: Partial<{
|
@@ -10498,13 +10543,13 @@ export declare const VSelect: {
|
|
10498
10543
|
rounded?: string | number | boolean | undefined;
|
10499
10544
|
baseColor?: string | undefined;
|
10500
10545
|
bgColor?: string | undefined;
|
10546
|
+
iconColor?: string | boolean | undefined;
|
10501
10547
|
appendInnerIcon?: IconValue | undefined;
|
10502
10548
|
prependInnerIcon?: IconValue | undefined;
|
10503
10549
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10504
10550
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10505
10551
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10506
10552
|
centerAffix?: boolean | undefined;
|
10507
|
-
iconColor?: string | boolean | undefined;
|
10508
10553
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
10509
10554
|
$attrs: {
|
10510
10555
|
[x: string]: unknown;
|
@@ -10557,13 +10602,13 @@ export declare const VSelect: {
|
|
10557
10602
|
rounded?: string | number | boolean | undefined;
|
10558
10603
|
baseColor?: string | undefined;
|
10559
10604
|
bgColor?: string | undefined;
|
10605
|
+
iconColor?: string | boolean | undefined;
|
10560
10606
|
appendInnerIcon?: IconValue | undefined;
|
10561
10607
|
prependInnerIcon?: IconValue | undefined;
|
10562
10608
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10563
10609
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10564
10610
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10565
10611
|
centerAffix?: boolean | undefined;
|
10566
|
-
iconColor?: string | boolean | undefined;
|
10567
10612
|
} & {
|
10568
10613
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
10569
10614
|
}, {
|
@@ -10667,13 +10712,13 @@ export declare const VSelect: {
|
|
10667
10712
|
rounded?: string | number | boolean | undefined;
|
10668
10713
|
baseColor?: string | undefined;
|
10669
10714
|
bgColor?: string | undefined;
|
10715
|
+
iconColor?: string | boolean | undefined;
|
10670
10716
|
appendInnerIcon?: IconValue | undefined;
|
10671
10717
|
prependInnerIcon?: IconValue | undefined;
|
10672
10718
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10673
10719
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10674
10720
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10675
10721
|
centerAffix?: boolean | undefined;
|
10676
|
-
iconColor?: string | boolean | undefined;
|
10677
10722
|
} & {
|
10678
10723
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
10679
10724
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -10682,7 +10727,7 @@ export declare const VSelect: {
|
|
10682
10727
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
10683
10728
|
modelValue?: unknown;
|
10684
10729
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
10685
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
10730
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
10686
10731
|
_allExposed: {
|
10687
10732
|
reset: () => Promise<void>;
|
10688
10733
|
resetValidation: () => Promise<void>;
|
@@ -10693,7 +10738,7 @@ export declare const VSelect: {
|
|
10693
10738
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
10694
10739
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
10695
10740
|
} | {};
|
10696
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
10741
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
10697
10742
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
10698
10743
|
$: import("vue").ComponentInternalInstance;
|
10699
10744
|
$data: {};
|
@@ -10744,9 +10789,9 @@ export declare const VSelect: {
|
|
10744
10789
|
baseColor?: string | undefined;
|
10745
10790
|
prependIcon?: IconValue | undefined;
|
10746
10791
|
appendIcon?: IconValue | undefined;
|
10792
|
+
iconColor?: string | boolean | undefined;
|
10747
10793
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10748
10794
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10749
|
-
iconColor?: string | boolean | undefined;
|
10750
10795
|
hint?: string | undefined;
|
10751
10796
|
hideDetails?: boolean | "auto" | undefined;
|
10752
10797
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -10800,9 +10845,9 @@ export declare const VSelect: {
|
|
10800
10845
|
baseColor?: string | undefined;
|
10801
10846
|
prependIcon?: IconValue | undefined;
|
10802
10847
|
appendIcon?: IconValue | undefined;
|
10848
|
+
iconColor?: string | boolean | undefined;
|
10803
10849
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10804
10850
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10805
|
-
iconColor?: string | boolean | undefined;
|
10806
10851
|
hint?: string | undefined;
|
10807
10852
|
hideDetails?: boolean | "auto" | undefined;
|
10808
10853
|
} & {}, {
|
@@ -10903,9 +10948,9 @@ export declare const VSelect: {
|
|
10903
10948
|
baseColor?: string | undefined;
|
10904
10949
|
prependIcon?: IconValue | undefined;
|
10905
10950
|
appendIcon?: IconValue | undefined;
|
10951
|
+
iconColor?: string | boolean | undefined;
|
10906
10952
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
10907
10953
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
10908
|
-
iconColor?: string | boolean | undefined;
|
10909
10954
|
hint?: string | undefined;
|
10910
10955
|
hideDetails?: boolean | "auto" | undefined;
|
10911
10956
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -10917,7 +10962,7 @@ export declare const VSelect: {
|
|
10917
10962
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
10918
10963
|
modelValue?: unknown;
|
10919
10964
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
10920
|
-
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
10965
|
+
}, VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
10921
10966
|
$: import("vue").ComponentInternalInstance;
|
10922
10967
|
$data: {};
|
10923
10968
|
$props: Partial<{
|
@@ -10964,13 +11009,13 @@ export declare const VSelect: {
|
|
10964
11009
|
rounded?: string | number | boolean | undefined;
|
10965
11010
|
baseColor?: string | undefined;
|
10966
11011
|
bgColor?: string | undefined;
|
11012
|
+
iconColor?: string | boolean | undefined;
|
10967
11013
|
appendInnerIcon?: IconValue | undefined;
|
10968
11014
|
prependInnerIcon?: IconValue | undefined;
|
10969
11015
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
10970
11016
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10971
11017
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
10972
11018
|
centerAffix?: boolean | undefined;
|
10973
|
-
iconColor?: string | boolean | undefined;
|
10974
11019
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
10975
11020
|
$attrs: {
|
10976
11021
|
[x: string]: unknown;
|
@@ -11023,13 +11068,13 @@ export declare const VSelect: {
|
|
11023
11068
|
rounded?: string | number | boolean | undefined;
|
11024
11069
|
baseColor?: string | undefined;
|
11025
11070
|
bgColor?: string | undefined;
|
11071
|
+
iconColor?: string | boolean | undefined;
|
11026
11072
|
appendInnerIcon?: IconValue | undefined;
|
11027
11073
|
prependInnerIcon?: IconValue | undefined;
|
11028
11074
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
11029
11075
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11030
11076
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11031
11077
|
centerAffix?: boolean | undefined;
|
11032
|
-
iconColor?: string | boolean | undefined;
|
11033
11078
|
} & {
|
11034
11079
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
11035
11080
|
}, {
|
@@ -11133,13 +11178,13 @@ export declare const VSelect: {
|
|
11133
11178
|
rounded?: string | number | boolean | undefined;
|
11134
11179
|
baseColor?: string | undefined;
|
11135
11180
|
bgColor?: string | undefined;
|
11181
|
+
iconColor?: string | boolean | undefined;
|
11136
11182
|
appendInnerIcon?: IconValue | undefined;
|
11137
11183
|
prependInnerIcon?: IconValue | undefined;
|
11138
11184
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
11139
11185
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11140
11186
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
11141
11187
|
centerAffix?: boolean | undefined;
|
11142
|
-
iconColor?: string | boolean | undefined;
|
11143
11188
|
} & {
|
11144
11189
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
11145
11190
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -11148,7 +11193,7 @@ export declare const VSelect: {
|
|
11148
11193
|
}> & {} & import("vue").ComponentCustomProperties & {} & GenericProps<{
|
11149
11194
|
modelValue?: unknown;
|
11150
11195
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
11151
|
-
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
11196
|
+
}, VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
11152
11197
|
_allExposed: {
|
11153
11198
|
reset: () => Promise<void>;
|
11154
11199
|
resetValidation: () => Promise<void>;
|
@@ -11168,7 +11213,7 @@ export declare const VSelect: {
|
|
11168
11213
|
'update:focused': (focused: boolean) => true;
|
11169
11214
|
'update:modelValue': (value: any) => true;
|
11170
11215
|
'update:menu': (ue: boolean) => true;
|
11171
|
-
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
11216
|
+
}, "multiple" | "$children" | "v-slots" | "modelValue" | "items" | "itemValue" | "returnObject" | "update:modelValue" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "v-slot:message" | "v-slot:details" | "v-slot:item" | "v-slot:divider" | "v-slot:subheader" | "itemTitle" | "itemProps" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "v-slot:chip" | "v-slot:selection" | "v-slot:prepend-item" | "v-slot:append-item" | "v-slot:no-data">, string, {
|
11172
11217
|
flat: boolean;
|
11173
11218
|
reverse: boolean;
|
11174
11219
|
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
@@ -11216,6 +11261,7 @@ export declare const VSelect: {
|
|
11216
11261
|
hideSelected: boolean;
|
11217
11262
|
menuIcon: IconValue;
|
11218
11263
|
openOnClear: boolean;
|
11264
|
+
noAutoScroll: boolean;
|
11219
11265
|
}, {}, string, import("vue").SlotsType<Partial<{
|
11220
11266
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
11221
11267
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
@@ -11245,6 +11291,14 @@ export declare const VSelect: {
|
|
11245
11291
|
item: ListItem<unknown>;
|
11246
11292
|
index: number;
|
11247
11293
|
}) => import("vue").VNode[];
|
11294
|
+
subheader: (arg: {
|
11295
|
+
props: Record<string, unknown>;
|
11296
|
+
index: number;
|
11297
|
+
}) => import("vue").VNode[];
|
11298
|
+
divider: (arg: {
|
11299
|
+
props: Record<string, unknown>;
|
11300
|
+
index: number;
|
11301
|
+
}) => import("vue").VNode[];
|
11248
11302
|
'prepend-item': () => import("vue").VNode[];
|
11249
11303
|
'append-item': () => import("vue").VNode[];
|
11250
11304
|
'no-data': () => import("vue").VNode[];
|
@@ -11272,6 +11326,14 @@ export declare const VSelect: {
|
|
11272
11326
|
item: ListItem<Item>;
|
11273
11327
|
index: number;
|
11274
11328
|
};
|
11329
|
+
subheader: {
|
11330
|
+
props: Record<string, unknown>;
|
11331
|
+
index: number;
|
11332
|
+
};
|
11333
|
+
divider: {
|
11334
|
+
props: Record<string, unknown>;
|
11335
|
+
index: number;
|
11336
|
+
};
|
11275
11337
|
"prepend-item": never;
|
11276
11338
|
"append-item": never;
|
11277
11339
|
"no-data": never;
|
@@ -11373,6 +11435,7 @@ export declare const VSelect: {
|
|
11373
11435
|
bgColor: StringConstructor;
|
11374
11436
|
prependIcon: PropType<IconValue>;
|
11375
11437
|
appendIcon: PropType<IconValue>;
|
11438
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
11376
11439
|
clearIcon: {
|
11377
11440
|
type: PropType<IconValue>;
|
11378
11441
|
default: string;
|
@@ -11388,7 +11451,6 @@ export declare const VSelect: {
|
|
11388
11451
|
default: undefined;
|
11389
11452
|
};
|
11390
11453
|
glow: BooleanConstructor;
|
11391
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
11392
11454
|
hideSpinButtons: BooleanConstructor;
|
11393
11455
|
hint: StringConstructor;
|
11394
11456
|
persistentHint: BooleanConstructor;
|
@@ -11457,6 +11519,7 @@ export declare const VSelect: {
|
|
11457
11519
|
};
|
11458
11520
|
openOnClear: BooleanConstructor;
|
11459
11521
|
itemColor: StringConstructor;
|
11522
|
+
noAutoScroll: BooleanConstructor;
|
11460
11523
|
}, import("vue").ExtractPropTypes<{
|
11461
11524
|
transition: {
|
11462
11525
|
type: PropType<string | boolean | (import("vue").TransitionProps & {
|
@@ -11555,6 +11618,7 @@ export declare const VSelect: {
|
|
11555
11618
|
bgColor: StringConstructor;
|
11556
11619
|
prependIcon: PropType<IconValue>;
|
11557
11620
|
appendIcon: PropType<IconValue>;
|
11621
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
11558
11622
|
clearIcon: {
|
11559
11623
|
type: PropType<IconValue>;
|
11560
11624
|
default: string;
|
@@ -11570,7 +11634,6 @@ export declare const VSelect: {
|
|
11570
11634
|
default: undefined;
|
11571
11635
|
};
|
11572
11636
|
glow: BooleanConstructor;
|
11573
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
11574
11637
|
hideSpinButtons: BooleanConstructor;
|
11575
11638
|
hint: StringConstructor;
|
11576
11639
|
persistentHint: BooleanConstructor;
|
@@ -11639,6 +11702,7 @@ export declare const VSelect: {
|
|
11639
11702
|
};
|
11640
11703
|
openOnClear: BooleanConstructor;
|
11641
11704
|
itemColor: StringConstructor;
|
11705
|
+
noAutoScroll: BooleanConstructor;
|
11642
11706
|
}>>;
|
11643
11707
|
export type VSelect = InstanceType<typeof VSelect>;
|
11644
11708
|
|