* 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
54 lines
1.3 KiB
JSON
54 lines
1.3 KiB
JSON
{
|
|
"description": "The command component of the command bar. This component is used to display a command, as well as registering the keyboad shortcut.",
|
|
"methods": [],
|
|
"displayName": "CommandBar.Command",
|
|
"props": {
|
|
"action": {
|
|
"required": true,
|
|
"tsType": {
|
|
"name": "signature",
|
|
"type": "function",
|
|
"raw": "() => void | Promise<void>",
|
|
"signature": {
|
|
"arguments": [],
|
|
"return": {
|
|
"name": "union",
|
|
"raw": "void | Promise<void>",
|
|
"elements": [
|
|
{
|
|
"name": "void"
|
|
},
|
|
{
|
|
"name": "Promise",
|
|
"elements": [
|
|
{
|
|
"name": "void"
|
|
}
|
|
],
|
|
"raw": "Promise<void>"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"description": "The function to execute when the command is triggered."
|
|
},
|
|
"label": {
|
|
"required": true,
|
|
"tsType": {
|
|
"name": "string"
|
|
},
|
|
"description": "The command's label."
|
|
},
|
|
"shortcut": {
|
|
"required": true,
|
|
"tsType": {
|
|
"name": "string"
|
|
},
|
|
"description": "The command's shortcut"
|
|
}
|
|
},
|
|
"composes": [
|
|
"Omit"
|
|
]
|
|
} |