Skip to content

Commit

Permalink
feat: refactor form/BaseCheckboxAnimated.vue props
Browse files Browse the repository at this point in the history
  • Loading branch information
driss-chelouati committed Dec 18, 2023
1 parent f33c3bb commit 2f6dfb8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions components/form/BaseCheckboxAnimated.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ const props = withDefaults(
*/
value?: T
/**
* The form input identifier.
*/
id?: string
/**
* The model value of the component.
*/
Expand All @@ -30,6 +25,11 @@ const props = withDefaults(
*/
falseValue?: T
/**
* The form input identifier.
*/
id?: string
/** The color of the checkbox.
*
* @default 'primary'
Expand Down Expand Up @@ -64,11 +64,11 @@ const props = withDefaults(
}
}>(),
{
id: undefined,
value: undefined,
modelValue: undefined,
trueValue: true as any,
falseValue: false as any,
modelValue: undefined,
id: undefined,
color: undefined,
classes: () => ({
wrapper: [],
Expand Down

0 comments on commit 2f6dfb8

Please sign in to comment.