@snmt-react-ui/user-select 2.5.10 → 2.6.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.
- package/dist/UserSelect.d.ts +3 -0
- package/dist/user-select.js +2297 -3794
- package/package.json +4 -4
package/dist/UserSelect.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export type UserSelectProps = (Omit<SingleSelectProps, 'options'> | Omit<MultiSe
|
|
|
5
5
|
fetchParams?: {
|
|
6
6
|
filters?: {
|
|
7
7
|
id?: string[];
|
|
8
|
+
idExclude?: string[];
|
|
8
9
|
managerId?: string[];
|
|
9
10
|
resourceManagerId?: string[];
|
|
10
11
|
employmentStatus?: EMPLOYMENT_STATUS[];
|
|
@@ -36,6 +37,8 @@ export type UserSelectProps = (Omit<SingleSelectProps, 'options'> | Omit<MultiSe
|
|
|
36
37
|
}) => void;
|
|
37
38
|
/** Should contain None option */
|
|
38
39
|
allowEmpty?: boolean;
|
|
40
|
+
/** Whether to show avatar in the select */
|
|
41
|
+
showAvatar?: boolean;
|
|
39
42
|
};
|
|
40
43
|
/**
|
|
41
44
|
* This is UserSelect. It is a customizable and asynchronous select component designed
|