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 {
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
9090export 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 ;
You can’t perform that action at this time.
0 commit comments