@epam/ai-dial-ui-kit 0.12.0 → 0.13.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{JsonEditor-DjEsE74s.js → JsonEditor-BF5IAD_i.js} +1 -1
- package/dist/{JsonEditor-ClTI8-LY.cjs → JsonEditor-BfeHaSJz.cjs} +1 -1
- package/dist/{MarkdownEditor-BMApEDVP.cjs → MarkdownEditor-BdB2xKGE.cjs} +1 -1
- package/dist/{MarkdownEditor-DlKjo9LA.js → MarkdownEditor-FV_oqXpW.js} +1 -1
- package/dist/components-manifest.json +15 -2
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +1 -1
- package/dist/{index-bLYIiSd_.js → index-BfEl6ODi.js} +70 -39
- package/dist/{index-Bl2M9QgI.cjs → index-CO1VQAZk.cjs} +2 -2
- package/dist/src/components/RadioButton/RadioButton.d.ts +4 -0
- package/package.json +1 -1
|
@@ -12,6 +12,8 @@ export interface DialRadioButtonProps {
|
|
|
12
12
|
disabled?: boolean;
|
|
13
13
|
onChange?: (value: string) => void;
|
|
14
14
|
descriptionClassName?: string;
|
|
15
|
+
containerClassName?: string;
|
|
16
|
+
oneLineCaption?: boolean;
|
|
15
17
|
}
|
|
16
18
|
/**
|
|
17
19
|
* A stylized, accessible radio input with optional description.
|
|
@@ -45,5 +47,7 @@ export interface DialRadioButtonProps {
|
|
|
45
47
|
* @param [disabled] - Disabled state of the control
|
|
46
48
|
* @param [onChange] - Callback fired with `value` when the radio is changed
|
|
47
49
|
* @param [descriptionClassName] - Additional classes applied to the description block
|
|
50
|
+
* @param [containerClassName] - Additional classes applied to the container div
|
|
51
|
+
* @param [oneLineCaption=false] - When true, the caption is shown on the same line to the right of the label instead of underneath it
|
|
48
52
|
*/
|
|
49
53
|
export declare const DialRadioButton: FC<DialRadioButtonProps>;
|