@snmt-react-ui/user-select 2.1.3 → 2.2.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.
@@ -25,6 +25,8 @@ export type UserSelectProps = (Omit<SingleSelectProps, 'options'> | Omit<MultiSe
25
25
  isResourceManager?: boolean;
26
26
  isSuperManager?: boolean;
27
27
  isNoRole?: boolean;
28
+ managerId?: string[];
29
+ resourceManagerId?: string[];
28
30
  };
29
31
  };
30
32
  /** Function for handling errors while fetching data */
@@ -36,6 +36,7 @@ const h1 = ({
36
36
  className: `snmt-avatar ${n ? "image" : ""}`,
37
37
  shape: i,
38
38
  size: e,
39
+ style: { minWidth: e, minHeight: e },
39
40
  ...s,
40
41
  children: t
41
42
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@snmt-react-ui/user-select",
3
3
  "private": false,
4
- "version": "2.1.3",
4
+ "version": "2.2.0",
5
5
  "type": "module",
6
6
  "main": "dist/user-select.js",
7
7
  "types": "dist/index.d.ts",
@@ -18,15 +18,15 @@
18
18
  "build": "tsc && vite build"
19
19
  },
20
20
  "dependencies": {
21
- "@snmt-react-ui/async-select": "^1.3.0",
21
+ "@snmt-react-ui/async-select": "^1.3.1",
22
22
  "@snmt-react-ui/core": "^2.0.0",
23
23
  "@snmt-react-ui/loader": "^1.3.0",
24
- "@snmt-react-ui/select": "^1.10.0"
24
+ "@snmt-react-ui/select": "^1.10.1"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "antd": "^5.22.3",
28
28
  "i18next": "^23.11.1",
29
29
  "react-i18next": "^14.1.0"
30
30
  },
31
- "gitHead": "cf9b1526bc4dd03a5679c68cd233d6e8847bf81d"
31
+ "gitHead": "1c41a9057f1fdb09ed4fd7313ac14574087f2778"
32
32
  }