* docs: create a new UI docs project (#13233) * docs: create a new UI docs project * fix installation errors * docs: migrate UI docs content to new project (#13241) * Fix content * added examples for some components * finish adding examples * lint fix * fix build errors * delete empty files * path fixes + refactor * fix build error
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"description": "The root component of the command bar. This component manages the state of the command bar.",
|
|
"methods": [],
|
|
"displayName": "CommandBar",
|
|
"props": {
|
|
"open": {
|
|
"required": false,
|
|
"tsType": {
|
|
"name": "boolean"
|
|
},
|
|
"description": "Whether to open (show) the command bar.",
|
|
"defaultValue": {
|
|
"value": "false",
|
|
"computed": false
|
|
}
|
|
},
|
|
"onOpenChange": {
|
|
"required": false,
|
|
"tsType": {
|
|
"name": "signature",
|
|
"type": "function",
|
|
"raw": "(open: boolean) => void",
|
|
"signature": {
|
|
"arguments": [
|
|
{
|
|
"type": {
|
|
"name": "boolean"
|
|
},
|
|
"name": "open"
|
|
}
|
|
],
|
|
"return": {
|
|
"name": "void"
|
|
}
|
|
}
|
|
},
|
|
"description": "Specify a function to handle the change of `open`'s value."
|
|
},
|
|
"defaultOpen": {
|
|
"required": false,
|
|
"tsType": {
|
|
"name": "boolean"
|
|
},
|
|
"description": "Whether the command bar is open by default.",
|
|
"defaultValue": {
|
|
"value": "false",
|
|
"computed": false
|
|
}
|
|
},
|
|
"disableAutoFocus": {
|
|
"required": false,
|
|
"tsType": {
|
|
"name": "boolean"
|
|
},
|
|
"description": "Whether to disable focusing automatically on the command bar when it's opened.",
|
|
"defaultValue": {
|
|
"value": "true",
|
|
"computed": false
|
|
}
|
|
}
|
|
}
|
|
} |