@cleen/ui 0.1.13 → 0.1.14

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/index.d.ts CHANGED
@@ -2373,6 +2373,7 @@ interface RadioButtonGroupProps {
2373
2373
  value?: string | number;
2374
2374
  onChange?: (value: string | number) => void;
2375
2375
  radioPosition?: 'left' | 'right';
2376
+ direction?: 'vertical' | 'horizontal';
2376
2377
  classNames?: {
2377
2378
  container?: string;
2378
2379
  label?: string;
@@ -2414,7 +2415,7 @@ interface RadioButtonGroupProps {
2414
2415
  * - Flip radio indicator position with `radioPosition` (`left` | `right`).
2415
2416
  * - Accepts `classNames` and `styles` for keys: `container`, `label`, `radios`, `radioContainer`, `radioActive`, `radioOuterCheckBox`, `radioLabelsContainer`, `radioTitle`, `radiotPostTitle`, `radioSubTitle`, `infoLabels`.
2416
2417
  */
2417
- declare const RadioButtonGroup: ({ radios, label, className, classNames, style, styles, name, radioPosition, defaultActiveId, value, infoLabels, onChange, }: RadioButtonGroupProps) => react_jsx_runtime.JSX.Element;
2418
+ declare const RadioButtonGroup: ({ radios, label, className, classNames, style, styles, name, direction, radioPosition, defaultActiveId, value, infoLabels, onChange, }: RadioButtonGroupProps) => react_jsx_runtime.JSX.Element;
2418
2419
 
2419
2420
  interface RangeSliderProps {
2420
2421
  key?: string | number;