Skip to content

Commit

Permalink
Merge pull request #166 from DerrikMilligan/patch-3
Browse files Browse the repository at this point in the history
Update w-drawer types
  • Loading branch information
antoniandre authored Mar 4, 2025
2 parents 9bddf6f + 8027919 commit 7729b39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/components/WDrawer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ export interface WaveDrawerProps {
/**
* ``value` in Vue 2.`
* This prop controls the visibility of the drawer. Any truthy value will show the drawer whereas any falsy value will hide it.
* @property {any} modelValue - Default: true
* @property {boolean} modelValue - Default: true
* @see https://antoniandre.github.io/wave-ui/w-drawer
*/
modelValue?: any
modelValue?: boolean

/**
* Places the drawer at the left of the screen, or at the left of its container when the `absolute` prop is set to true.
Expand Down Expand Up @@ -203,7 +203,7 @@ export interface WaveDrawerEmits {
* TODO: Add Description
* @see https://antoniandre.github.io/wave-ui/w-drawer
*/
'onUpdate:modelValue'?: () => void
'onUpdate:modelValue'?: (boolean) => void

/**
* TODO: Add Description
Expand Down

0 comments on commit 7729b39

Please sign in to comment.