@mindly/ui-components 6.9.0 → 6.10.0

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.
@@ -4,7 +4,7 @@ export type SelectionListItem = {
4
4
  };
5
5
  export type SelectionListFeatureProps = {
6
6
  items: SelectionListItem[];
7
- selected?: string;
7
+ selected?: string[];
8
8
  searchValue: string;
9
9
  searchPlaceholder?: string;
10
10
  onItemSelectionChange: (items: string[]) => void;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { IconProps } from '../../types';
3
+ declare const IconPerson: React.FC<IconProps>;
4
+ export default IconPerson;
@@ -141,3 +141,4 @@ export * from './IconAlignHorizontalTextCenter';
141
141
  export * from './IconAlignHorizontalTextLeft';
142
142
  export * from './IconAlignHorizontalTextRight';
143
143
  export * from './IconSort';
144
+ export * from './IconPerson';
package/dist/index.d.ts CHANGED
@@ -3816,7 +3816,7 @@ type SelectionListItem = {
3816
3816
  };
3817
3817
  type SelectionListFeatureProps = {
3818
3818
  items: SelectionListItem[];
3819
- selected?: string;
3819
+ selected?: string[];
3820
3820
  searchValue: string;
3821
3821
  searchPlaceholder?: string;
3822
3822
  onItemSelectionChange: (items: string[]) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "6.9.0",
3
+ "version": "6.10.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "clean": "rimraf dist",