File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ export interface SharedProps {
8080
8181// Component Props //
8282export interface VInlineCheckboxProps extends Omit < SharedProps ,
83- 'autofocus' | 'hideSaveIcon' | 'loadingIcon' | 'loadingIconColor' | 'saveButtonColor' | 'saveButtonSize' | 'saveIcon' | 'saveIconColor' | 'saveButtonTitle' | 'saveButtonVariant' | ' truncateLength' | 'truncateSuffix'
83+ 'autofocus' | 'truncateLength' | 'truncateSuffix'
8484> {
8585 density ?: VCheckbox [ '$props' ] [ 'density' ] ;
8686 falseIcon ?: string | undefined ;
@@ -161,6 +161,15 @@ export interface SaveFieldButtons extends
161161 > { loading : boolean ; } ;
162162
163163
164+ export interface UseCancelButtonClass {
165+ (
166+ options : {
167+ cancelButtonVariant ?: SharedProps [ 'cancelButtonVariant' ] ;
168+ } ,
169+ ) : object ;
170+ }
171+
172+
164173// -------------------------------------------------- Composables //
165174
166175// ------------------------ Main Container //
You can’t perform that action at this time.
0 commit comments