@cleen/ui 0.1.12 → 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
@@ -2056,6 +2056,8 @@ type MenuProps = ComponentProps<'div'> & {
2056
2056
  items?: IMenuItem[];
2057
2057
  position?: Position;
2058
2058
  keepOpenOnClick?: boolean;
2059
+ triggerRef?: RefObject<HTMLDivElement | null>;
2060
+ menuRef?: RefObject<HTMLDivElement | null>;
2059
2061
  classNames?: {
2060
2062
  container?: string;
2061
2063
  trigger?: string;
@@ -2371,6 +2373,7 @@ interface RadioButtonGroupProps {
2371
2373
  value?: string | number;
2372
2374
  onChange?: (value: string | number) => void;
2373
2375
  radioPosition?: 'left' | 'right';
2376
+ direction?: 'vertical' | 'horizontal';
2374
2377
  classNames?: {
2375
2378
  container?: string;
2376
2379
  label?: string;
@@ -2412,7 +2415,7 @@ interface RadioButtonGroupProps {
2412
2415
  * - Flip radio indicator position with `radioPosition` (`left` | `right`).
2413
2416
  * - Accepts `classNames` and `styles` for keys: `container`, `label`, `radios`, `radioContainer`, `radioActive`, `radioOuterCheckBox`, `radioLabelsContainer`, `radioTitle`, `radiotPostTitle`, `radioSubTitle`, `infoLabels`.
2414
2417
  */
2415
- 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;
2416
2419
 
2417
2420
  interface RangeSliderProps {
2418
2421
  key?: string | number;