@bigbinary/neeto-team-members-frontend 2.14.0 → 3.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-team-members-frontend",
3
- "version": "2.14.0",
3
+ "version": "3.0.1",
4
4
  "description": "A repo acts as the source of truth for the new nano's structure, configs, data etc.",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-team-members-nano",
@@ -51,11 +51,12 @@
51
51
  "@bigbinary/eslint-plugin-neeto": "1.5.0",
52
52
  "@bigbinary/neeto-audit-frontend": "2.0.9",
53
53
  "@bigbinary/neeto-cist": "1.0.9",
54
- "@bigbinary/neeto-commons-frontend": "3.2.0",
55
- "@bigbinary/neeto-filters-frontend": "3.2.8",
56
- "@bigbinary/neeto-icons": "1.18.0",
57
- "@bigbinary/neeto-molecules": "1.13.8",
58
- "@bigbinary/neetoui": "6.3.7",
54
+ "@bigbinary/neeto-commons-frontend": "3.2.8",
55
+ "@bigbinary/neeto-filters-frontend": "3.2.9",
56
+ "@bigbinary/neeto-icons": "1.18.2",
57
+ "@bigbinary/neeto-image-uploader-frontend": "1.5.23",
58
+ "@bigbinary/neeto-molecules": "1.14.1",
59
+ "@bigbinary/neetoui": "6.5.0",
59
60
  "@emotion/is-prop-valid": "1.2.0",
60
61
  "@faker-js/faker": "8.2.0",
61
62
  "@honeybadger-io/js": "6.5.3",
@@ -155,12 +156,13 @@
155
156
  },
156
157
  "peerDependencies": {
157
158
  "@bigbinary/neeto-cist": "latest",
158
- "@bigbinary/neeto-commons-frontend": "3.2.0",
159
+ "@bigbinary/neeto-commons-frontend": "3.2.8",
159
160
  "@bigbinary/neeto-editor": "^1.26.3",
160
- "@bigbinary/neeto-filters-frontend": "3.2.8",
161
- "@bigbinary/neeto-icons": "1.18.0",
162
- "@bigbinary/neeto-molecules": "1.13.8",
163
- "@bigbinary/neetoui": "6.3.7",
161
+ "@bigbinary/neeto-filters-frontend": "3.2.9",
162
+ "@bigbinary/neeto-icons": "1.18.2",
163
+ "@bigbinary/neeto-image-uploader-frontend": "1.5.23",
164
+ "@bigbinary/neeto-molecules": "1.14.1",
165
+ "@bigbinary/neetoui": "6.5.0",
164
166
  "@honeybadger-io/js": "^6.5.3",
165
167
  "@honeybadger-io/react": "^6.1.9",
166
168
  "axios": "^1.6.0",
package/types.d.ts CHANGED
@@ -180,6 +180,10 @@ export function useFetchMembers(
180
180
  options?: object
181
181
  ): UseQueryResult<axios.AxiosResponse<any, any>, unknown>;
182
182
 
183
+ export function useFetchMembersCountsPerCategory(
184
+ options?: object
185
+ ): UseQueryResult<axios.AxiosResponse<any, any>, unknown>;
186
+
183
187
  export function ManageMember(props: {
184
188
  config?: TeamMembersConfig;
185
189
  onComplete: () => void;