@bigbinary/neeto-webhooks-frontend 1.6.26 → 1.6.28

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-webhooks-frontend",
3
- "version": "1.6.26",
3
+ "version": "1.6.28",
4
4
  "description": "Manage webhooks across neeto products.",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-webhooks-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.5.1",
52
- "@bigbinary/neeto-audit-frontend": "^2.0.9",
53
- "@bigbinary/neeto-cist": "1.0.9",
54
- "@bigbinary/neeto-commons-frontend": "3.4.0",
55
- "@bigbinary/neeto-filters-frontend": "3.3.1",
56
- "@bigbinary/neeto-icons": "1.18.4",
57
- "@bigbinary/neeto-molecules": "1.15.15",
58
- "@bigbinary/neetoui": "6.5.10",
51
+ "@bigbinary/eslint-plugin-neeto": "1.5.2",
52
+ "@bigbinary/neeto-audit-frontend": "2.0.11",
53
+ "@bigbinary/neeto-cist": "1.0.10",
54
+ "@bigbinary/neeto-commons-frontend": "3.5.12",
55
+ "@bigbinary/neeto-filters-frontend": "3.3.5",
56
+ "@bigbinary/neeto-icons": "1.18.10",
57
+ "@bigbinary/neeto-molecules": "2.0.2",
58
+ "@bigbinary/neetoui": "6.5.13",
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",
@@ -152,12 +152,12 @@
152
152
  },
153
153
  "peerDependencies": {
154
154
  "@bigbinary/neeto-cist": "latest",
155
- "@bigbinary/neeto-commons-frontend": "3.4.0",
155
+ "@bigbinary/neeto-commons-frontend": "3.5.12",
156
156
  "@bigbinary/neeto-editor": "^1.26.3",
157
- "@bigbinary/neeto-filters-frontend": "3.3.1",
158
- "@bigbinary/neeto-icons": "1.18.4",
159
- "@bigbinary/neeto-molecules": "1.15.15",
160
- "@bigbinary/neetoui": "6.5.10",
157
+ "@bigbinary/neeto-filters-frontend": "3.3.5",
158
+ "@bigbinary/neeto-icons": "1.18.10",
159
+ "@bigbinary/neeto-molecules": "2.0.2",
160
+ "@bigbinary/neetoui": "6.5.13",
161
161
  "@honeybadger-io/js": "^6.5.3",
162
162
  "@honeybadger-io/react": "^6.1.9",
163
163
  "axios": "^1.6.0",
@@ -186,6 +186,7 @@
186
186
  "yarn": ">=1.22"
187
187
  },
188
188
  "dependencies": {
189
+ "babel-plugin-transform-imports": "^2.0.0",
189
190
  "react-router-nav-prompt": "0.4.1",
190
191
  "source-map-loader": "^4.0.1",
191
192
  "zustand": "4.3.2"
package/types.d.ts CHANGED
@@ -9,6 +9,7 @@ export interface NeetoWebhooksProps {
9
9
  entityType: string;
10
10
  entityId?: string;
11
11
  breadcrumbs?: Breadcrumb[];
12
+ title?: React.ReactNode;
12
13
  }
13
14
 
14
15
  export const NeetoWebhooks: React.FC<NeetoWebhooksProps>;