chore(components): improve tsdoc

This commit is contained in:
Benjamin Canac
2025-03-04 11:58:31 +01:00
parent 629c54261a
commit 25e503bc83
38 changed files with 274 additions and 1 deletions

View File

@@ -25,13 +25,23 @@ export interface ProgressProps extends Pick<ProgressRootProps, 'getValueLabel' |
status?: boolean
/** Whether the progress is visually inverted. */
inverted?: boolean
/**
* @defaultValue 'md'
*/
size?: ProgressVariants['size']
/**
* @defaultValue 'primary'
*/
color?: ProgressVariants['color']
/**
* The orientation of the progress bar.
* @defaultValue 'horizontal'
*/
orientation?: ProgressVariants['orientation']
/**
* The animation of the progress bar.
* @defaultValue 'carousel'
*/
animation?: ProgressVariants['animation']
class?: any
ui?: Partial<typeof progress.slots>