@bigbinary/neeto-team-members-frontend 2.13.4 → 2.13.6

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.13.4",
3
+ "version": "2.13.6",
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",
@@ -48,14 +48,14 @@
48
48
  "@babel/preset-typescript": "7.23.2",
49
49
  "@babel/runtime": "7.23.2",
50
50
  "@bigbinary/babel-preset-neeto": "1.0.6",
51
- "@bigbinary/eslint-plugin-neeto": "1.2.0",
51
+ "@bigbinary/eslint-plugin-neeto": "1.5.0",
52
52
  "@bigbinary/neeto-audit-frontend": "2.0.9",
53
53
  "@bigbinary/neeto-cist": "1.0.8",
54
- "@bigbinary/neeto-commons-frontend": "3.1.18",
54
+ "@bigbinary/neeto-commons-frontend": "3.1.20",
55
55
  "@bigbinary/neeto-filters-frontend": "3.1.3",
56
- "@bigbinary/neeto-icons": "1.17.11",
57
- "@bigbinary/neeto-molecules": "1.6.3",
58
- "@bigbinary/neetoui": "6.2.3",
56
+ "@bigbinary/neeto-icons": "1.17.14",
57
+ "@bigbinary/neeto-molecules": "1.13.6",
58
+ "@bigbinary/neetoui": "6.3.3",
59
59
  "@emotion/is-prop-valid": "1.2.0",
60
60
  "@faker-js/faker": "8.2.0",
61
61
  "@honeybadger-io/js": "6.5.3",
@@ -155,12 +155,12 @@
155
155
  },
156
156
  "peerDependencies": {
157
157
  "@bigbinary/neeto-cist": "latest",
158
- "@bigbinary/neeto-commons-frontend": "3.1.18",
158
+ "@bigbinary/neeto-commons-frontend": "3.1.20",
159
159
  "@bigbinary/neeto-editor": "^1.26.3",
160
160
  "@bigbinary/neeto-filters-frontend": "3.1.3",
161
- "@bigbinary/neeto-icons": "1.17.11",
162
- "@bigbinary/neeto-molecules": "1.6.3",
163
- "@bigbinary/neetoui": "6.2.3",
161
+ "@bigbinary/neeto-icons": "1.17.14",
162
+ "@bigbinary/neeto-molecules": "1.13.6",
163
+ "@bigbinary/neetoui": "6.3.3",
164
164
  "@honeybadger-io/js": "^6.5.3",
165
165
  "@honeybadger-io/react": "^6.1.9",
166
166
  "axios": "^1.6.0",
package/types.d.ts CHANGED
@@ -42,6 +42,11 @@ type CreateMember = { onSuccess: onSuccess };
42
42
 
43
43
  type UpdateMember = { onSuccess: onSuccess };
44
44
 
45
+ type AdditionalFieldsConfig = {
46
+ component: JSX.Element;
47
+ initialValues: object;
48
+ };
49
+
45
50
  type BulkUpdateMembers = { onSuccess: onSuccess };
46
51
 
47
52
  type Header = { breadcrumbs: Breadcrumb[] };
@@ -107,6 +112,7 @@ type FilterColumns = {
107
112
  };
108
113
 
109
114
  type TeamMembersConfig = {
115
+ additionalFields?: AdditionalFieldsConfig;
110
116
  alert?: Alert;
111
117
  bulkUpdateMembers?: BulkUpdateMembers;
112
118
  createMember?: CreateMember;