@mindly/ui-components 5.49.4 → 5.49.5

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.
@@ -1,2 +1,2 @@
1
1
  import { ListBoxProps } from './types';
2
- export default function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, ...props }: ListBoxProps<T>): JSX.Element;
2
+ export default function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, ...props }: ListBoxProps<T>): JSX.Element;
@@ -9,4 +9,5 @@ export type ListBoxProps<T> = AriaListBoxProps<T> & {
9
9
  enableSelection?: boolean;
10
10
  selectedIconProps?: IconProps;
11
11
  selectionPosition?: 'start' | 'end';
12
+ className?: string;
12
13
  };
package/dist/index.d.ts CHANGED
@@ -1726,9 +1726,10 @@ type ListBoxProps<T> = AriaListBoxProps<T> & {
1726
1726
  enableSelection?: boolean;
1727
1727
  selectedIconProps?: IconProps$A;
1728
1728
  selectionPosition?: 'start' | 'end';
1729
+ className?: string;
1729
1730
  };
1730
1731
 
1731
- declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, ...props }: ListBoxProps<T>): JSX.Element;
1732
+ declare function ListBox<T extends Record<string, unknown>>({ selectedIconProps, type, selectionPosition, enableSelection, className, ...props }: ListBoxProps<T>): JSX.Element;
1732
1733
 
1733
1734
  type ListOptionsProps = {
1734
1735
  item: Node<unknown>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "5.49.4",
3
+ "version": "5.49.5",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",