Skip to content

Commit

Permalink
feat: add missing types in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
driss-chelouati committed Feb 21, 2024
1 parent 68bbfe6 commit d352461
Showing 1 changed file with 23 additions and 5 deletions.
28 changes: 23 additions & 5 deletions nuxt.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ export default defineNuxtSchema({
* @type {'dot' | 'chevron' | 'plus'}
*/
action: 'dot',
/**
* The color of the accordion.
*
* @type {'default' | 'default-contrast' | 'muted' | 'muted-contrast'}
*/
color: 'default',
/**
* Default color for the accordion dot
*
* @type {'default' | 'primary' | 'success' | 'info' | 'warning' | 'danger' | 'dark' | 'black'}
*/
dotColor: 'primary',
},
BaseAutocomplete: {
/**
Expand Down Expand Up @@ -56,6 +68,12 @@ export default defineNuxtSchema({
* @type {'none' | 'sm' | 'md' | 'lg' | 'full'}
*/
rounded: 'full',
/**
* Default color for the avatar
*
* @type {'white' | 'muted' | 'primary' | 'success' | 'info' | 'warning' | 'danger' | 'pink' | 'yellow' | 'indigo' | 'violet'}
*/
color: 'muted',
},
BaseAvatarGroup: {
/**
Expand Down Expand Up @@ -161,9 +179,9 @@ export default defineNuxtSchema({
/**
* Default color for the BaseCard component
*
* @type {'white'| 'white-contrast'| 'muted'| 'muted-contrast'| 'primary'| 'info'| 'success'| 'warning'| 'danger'| 'none'}
* @type {'default'| 'default-contrast'| 'muted'| 'muted-contrast'| 'primary'| 'info'| 'success'| 'warning'| 'danger'| 'none'}
*/
color: 'white',
color: 'default',
},
BaseCheckbox: {
/**
Expand Down Expand Up @@ -197,15 +215,15 @@ export default defineNuxtSchema({
/**
* The color of the dropdown button.
*
* @type {'default' | 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'light' | 'muted' | 'none'}
* @type {'default' | 'default-contrast' | 'muted' | 'muted-contrast' | 'light' | 'dark' | 'black' | 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'none'}
*/
buttonColor: 'default',
/**
* The color of the dropdown.
*
* @type {'white' | 'white-contrast' | 'muted' | 'muted-contrast' | 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'none'}
* @type {'default' | 'default-contrast' | 'muted' | 'muted-contrast' | 'primary' | 'info' | 'success' | 'warning' | 'danger' | 'none'}
*/
color: 'white',
color: 'default',
/**
* Default rounded for the BaseDropdown component
*
Expand Down

0 comments on commit d352461

Please sign in to comment.