Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-02-26 11:07:43 -08:00
commit b2d93e55ac
3 changed files with 18 additions and 0 deletions

View file

@ -3041,6 +3041,7 @@ None.
| selected | <code>let</code> | Yes | <code>string</code> | <code>undefined</code> | Set the selected radio button value | | selected | <code>let</code> | Yes | <code>string</code> | <code>undefined</code> | Set the selected radio button value |
| disabled | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the radio buttons | | disabled | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to disable the radio buttons |
| legendText | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text | | legendText | <code>let</code> | No | <code>string</code> | <code>""</code> | Specify the legend text |
| hideLegend | <code>let</code> | No | <code>boolean</code> | <code>false</code> | Set to `true` to visually hide the legend |
| labelPosition | <code>let</code> | No | <code>"right" &#124; "left"</code> | <code>"right"</code> | Specify the label position | | labelPosition | <code>let</code> | No | <code>"right" &#124; "left"</code> | <code>"right"</code> | Specify the label position |
| orientation | <code>let</code> | No | <code>"horizontal" &#124; "vertical"</code> | <code>"horizontal"</code> | Specify the orientation of the radio buttons | | orientation | <code>let</code> | No | <code>"horizontal" &#124; "vertical"</code> | <code>"horizontal"</code> | Specify the orientation of the radio buttons |
| id | <code>let</code> | No | <code>string</code> | <code>undefined</code> | Set an id for the container div element | | id | <code>let</code> | No | <code>string</code> | <code>undefined</code> | Set an id for the container div element |

View file

@ -8793,6 +8793,17 @@
"constant": false, "constant": false,
"reactive": false "reactive": false
}, },
{
"name": "hideLegend",
"kind": "let",
"description": "Set to `true` to visually hide the legend",
"type": "boolean",
"value": "false",
"isFunction": false,
"isFunctionDeclaration": false,
"constant": false,
"reactive": false
},
{ {
"name": "labelPosition", "name": "labelPosition",
"kind": "let", "kind": "let",

View file

@ -21,6 +21,12 @@ export interface RadioButtonGroupProps
*/ */
legendText?: string; legendText?: string;
/**
* Set to `true` to visually hide the legend
* @default false
*/
hideLegend?: boolean;
/** /**
* Specify the label position * Specify the label position
* @default "right" * @default "right"