docs(ComponentCard): show all props for the code (#797)

Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
KeJun
2023-10-15 23:52:20 +08:00
committed by GitHub
parent 9f4d88e0aa
commit 8867936e01
16 changed files with 157 additions and 99 deletions

View File

@@ -27,7 +27,6 @@ Use the `color` and `variant` props to change the visual style of the Select.
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -45,7 +44,6 @@ Besides all the colors from the `ui.colors` object, you can also use the `white`
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -63,7 +61,6 @@ excludedProps:
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -83,7 +80,6 @@ Use the `size` prop to change the size of the Select.
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -100,7 +96,6 @@ Use the `placeholder` prop to set a placeholder text.
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -119,7 +114,6 @@ Use the `trailing-icon` prop to set a different icon or change it globally in `u
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -147,7 +141,6 @@ Use the `disabled` prop to disable the Select.
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -169,7 +162,6 @@ Use the `loading-icon` prop to set a different icon or change it globally in `ui
::component-card
---
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -194,7 +186,6 @@ Use the `#leading` slot to set the content of the leading icon.
slots:
leading: <UAvatar src="https://avatars.githubusercontent.com/u/739984?v=4" size="3xs" />
baseProps:
name: 'select'
options:
- 'United States'
- 'Canada'
@@ -215,7 +206,6 @@ Use the `#trailing` slot to set the content of the trailing icon.
slots:
trailing: <UIcon name="i-heroicons-arrows-up-down-20-solid" />
baseProps:
name: 'input'
placeholder: 'Search...'
---