mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-20 20:33:02 +00:00
Run "yarn build:docs"
This commit is contained in:
parent
52cd7afbf3
commit
b2d93e55ac
3 changed files with 18 additions and 0 deletions
|
@ -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" | "left"</code> | <code>"right"</code> | Specify the label position |
|
| labelPosition | <code>let</code> | No | <code>"right" | "left"</code> | <code>"right"</code> | Specify the label position |
|
||||||
| orientation | <code>let</code> | No | <code>"horizontal" | "vertical"</code> | <code>"horizontal"</code> | Specify the orientation of the radio buttons |
|
| orientation | <code>let</code> | No | <code>"horizontal" | "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 |
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue