Skip to content

Commit 5f9020c

Browse files
Adding types
1 parent f705273 commit 5f9020c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/types/index.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export interface SharedProps {
5858
loading?: boolean;
5959
loadingIcon?: string | undefined;
6060
loadingIconColor?: string;
61-
method?: string;
61+
loadingWait?: boolean;
6262
name?: string;
6363
required?: boolean;
6464
saveButtonColor?: VBtn['$props']['color'];
@@ -83,8 +83,8 @@ export interface VInlineCheckboxProps extends Omit<SharedProps,
8383
'autofocus' | 'hideSaveIcon' | 'loadingIcon' | 'loadingIconColor' | 'saveButtonColor' | 'saveButtonSize' | 'saveIcon' | 'saveIconColor' | 'saveButtonTitle' | 'saveButtonVariant' | 'truncateLength' | 'truncateSuffix'
8484
> {
8585
density?: VCheckbox['$props']['density'];
86-
falseIcon?: VCheckbox['$props']['falseIcon'];
87-
trueIcon?: VCheckbox['$props']['trueIcon'];
86+
falseIcon?: string | undefined;
87+
trueIcon?: string | undefined;
8888
}
8989

9090
export interface VInlineSelectProps extends Omit<SharedProps,
@@ -171,6 +171,8 @@ export interface UseInlineFieldsContainerClass {
171171
disabled?: Ref<boolean> | boolean;
172172
field?: Ref<string> | string;
173173
iconSet?: string;
174+
loading?: Ref<boolean> | boolean;
175+
loadingWait?: Ref<SharedProps['loadingWait']> | SharedProps['loadingWait'];
174176
tableField?: SharedProps['tableField'];
175177
},
176178
): object;

0 commit comments

Comments
 (0)