@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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/cjs/lib2/shared/ui/ListBox/types.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/lib2/shared/ui/ListBox/ListBox.d.ts +1 -1
- package/dist/esm/lib2/shared/ui/ListBox/types.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -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;
|
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>;
|