chore(docs): regenerate docs and DB metadata

Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
hainenber
2026-08-31 15:29:48 +07:00
parent fee0f9e160
commit 75e4014ac1
5 changed files with 6128 additions and 8041 deletions
+6 -8
View File
@@ -34,7 +34,6 @@ A versatile select component supporting single and multi-select modes, search fi
component="Select"
props={{
mode: "single",
placeholder: "Select ...",
showSearch: true,
allowNewOptions: false,
allowClear: false,
@@ -101,12 +100,6 @@ A versatile select component supporting single and multi-select modes, search fi
],
description: "Whether to allow selection of a single option or multiple."
},
{
name: "placeholder",
label: "Placeholder",
type: "text",
description: "Placeholder text when no option is selected."
},
{
name: "showSearch",
label: "Show Search",
@@ -154,6 +147,12 @@ A versatile select component supporting single and multi-select modes, search fi
label: "Max Tag Count",
type: "number",
description: "Maximum number of tags to display in multiple mode before showing an overflow count."
},
{
name: "placeholder",
label: "Placeholder",
type: "text",
description: "Placeholder text when no option is selected."
}
]}
/>
@@ -283,7 +282,6 @@ function OneLineDemo() {
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `mode` | `string` | `"single"` | Whether to allow selection of a single option or multiple. |
| `placeholder` | `string` | `"Select ..."` | Placeholder text when no option is selected. |
| `showSearch` | `boolean` | `true` | Whether to show a search input for filtering. |
| `allowNewOptions` | `boolean` | `false` | Whether users can create new options by typing a value not in the list. |
| `allowClear` | `boolean` | `false` | Whether to show a clear button to reset the selection. |