Skip to content

Commit 9c11ee2

Browse files
Update props
1 parent 5c75151 commit 9c11ee2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/types/index.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export interface SharedProps {
8181
error?: boolean;
8282
falseValue?: boolean | string | undefined;
8383
fieldOnly?: boolean;
84+
hideCancelIcon?: boolean;
8485
hideDetails?: boolean;
8586
hideSaveIcon?: boolean;
8687
iconFalse?: string | undefined;
@@ -116,6 +117,21 @@ export interface SharedProps {
116117
}
117118

118119
// Component Props //
120+
export interface VInlineAutocompleteProps extends Omit<SharedProps,
121+
'falseValue' | 'iconFalse' | 'iconFalseColor' | 'iconFalseTitle' | 'iconTrue' | 'iconTrueColor' | 'iconTrueTitle' | 'icons' | 'trueValue' | 'truncateLength' | 'truncateSuffix'
122+
> {
123+
clearIcon?: string | undefined;
124+
clearable?: VSelect['$props']['clearable'];
125+
density?: VSelect['$props']['density'];
126+
hideSelected?: VSelect['$props']['hideSelected'];
127+
itemTitle?: VSelect['$props']['itemTitle'];
128+
itemValue?: VSelect['$props']['itemValue'];
129+
items?: VSelect['$props']['items'];
130+
menu?: VSelect['$props']['menu'];
131+
rules?: VSelect['$props']['rules'];
132+
variant?: VSelect['$props']['variant'];
133+
}
134+
119135
export interface VInlineCheckboxProps extends Omit<SharedProps,
120136
'autofocus' | 'truncateLength' | 'truncateSuffix'
121137
> {
@@ -221,6 +237,7 @@ export interface SaveFieldButtons extends
221237
'cancelIconColor' |
222238
'error' |
223239
'fieldOnly' |
240+
'hideCancelIcon' |
224241
'hideSaveIcon' |
225242
'loadingIconColor' |
226243
'saveButtonColor' |

0 commit comments

Comments
 (0)