File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export interface SharedProps {
58
58
loading ?: boolean ;
59
59
loadingIcon ?: string | undefined ;
60
60
loadingIconColor ?: string ;
61
- method ?: string ;
61
+ loadingWait ?: boolean ;
62
62
name ?: string ;
63
63
required ?: boolean ;
64
64
saveButtonColor ?: VBtn [ '$props' ] [ 'color' ] ;
@@ -83,8 +83,8 @@ export interface VInlineCheckboxProps extends Omit<SharedProps,
83
83
'autofocus' | 'hideSaveIcon' | 'loadingIcon' | 'loadingIconColor' | 'saveButtonColor' | 'saveButtonSize' | 'saveIcon' | 'saveIconColor' | 'saveButtonTitle' | 'saveButtonVariant' | 'truncateLength' | 'truncateSuffix'
84
84
> {
85
85
density ?: VCheckbox [ '$props' ] [ 'density' ] ;
86
- falseIcon ?: VCheckbox [ '$props' ] [ 'falseIcon' ] ;
87
- trueIcon ?: VCheckbox [ '$props' ] [ 'trueIcon' ] ;
86
+ falseIcon ?: string | undefined ;
87
+ trueIcon ?: string | undefined ;
88
88
}
89
89
90
90
export interface VInlineSelectProps extends Omit < SharedProps ,
@@ -171,6 +171,8 @@ export interface UseInlineFieldsContainerClass {
171
171
disabled ?: Ref < boolean > | boolean ;
172
172
field ?: Ref < string > | string ;
173
173
iconSet ?: string ;
174
+ loading ?: Ref < boolean > | boolean ;
175
+ loadingWait ?: Ref < SharedProps [ 'loadingWait' ] > | SharedProps [ 'loadingWait' ] ;
174
176
tableField ?: SharedProps [ 'tableField' ] ;
175
177
} ,
176
178
) : object ;
You can’t perform that action at this time.
0 commit comments