Skip to content

Commit 83d2a42

Browse files
Updating types
1 parent 562a97e commit 83d2a42

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

src/types/index.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export interface SharedProps {
8080

8181
// Component Props //
8282
export 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 //

0 commit comments

Comments
 (0)