@bigbinary/neeto-message-templates-frontend 1.0.0 → 1.0.2

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-message-templates-frontend",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "To manage message templates across neeto products.",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-message-templates-nano",
@@ -49,15 +49,15 @@
49
49
  "@babel/runtime": "7.23.2",
50
50
  "@bigbinary/babel-preset-neeto": "1.0.6",
51
51
  "@bigbinary/eslint-plugin-neeto": "1.5.2",
52
- "@bigbinary/neeto-audit-frontend": "2.0.11",
52
+ "@bigbinary/neeto-audit-frontend": "2.0.12",
53
53
  "@bigbinary/neeto-cist": "1.0.10",
54
- "@bigbinary/neeto-commons-frontend": "3.6.0",
54
+ "@bigbinary/neeto-commons-frontend": "4.1.0",
55
55
  "@bigbinary/neeto-editor": "^1.28.26",
56
- "@bigbinary/neeto-filters-frontend": "3.3.5",
57
- "@bigbinary/neeto-icons": "1.19.0",
58
- "@bigbinary/neeto-molecules": "2.0.4",
56
+ "@bigbinary/neeto-filters-frontend": "4.0.0",
57
+ "@bigbinary/neeto-icons": "1.19.1",
58
+ "@bigbinary/neeto-molecules": "3.2.1",
59
59
  "@bigbinary/neeto-team-members-frontend": "2.9.2",
60
- "@bigbinary/neetoui": "6.5.13",
60
+ "@bigbinary/neetoui": "7.0.2",
61
61
  "@emotion/is-prop-valid": "1.2.0",
62
62
  "@faker-js/faker": "8.2.0",
63
63
  "@honeybadger-io/js": "6.5.3",
@@ -70,6 +70,7 @@
70
70
  "@rollup/plugin-replace": "5.0.4",
71
71
  "@svgr/rollup": "8.1.0",
72
72
  "@tanstack/react-query": "5.40.0",
73
+ "@tanstack/react-query-devtools": "5.40.0",
73
74
  "antd": "5.10.2",
74
75
  "autoprefixer": "10.4.16",
75
76
  "axios": "1.6.0",
@@ -155,15 +156,16 @@
155
156
  },
156
157
  "peerDependencies": {
157
158
  "@bigbinary/neeto-cist": "latest",
158
- "@bigbinary/neeto-commons-frontend": "3.6.0",
159
+ "@bigbinary/neeto-commons-frontend": "4.1.0",
159
160
  "@bigbinary/neeto-editor": "^1.26.3",
160
- "@bigbinary/neeto-filters-frontend": "3.3.5",
161
- "@bigbinary/neeto-icons": "1.19.0",
162
- "@bigbinary/neeto-molecules": "2.0.4",
163
- "@bigbinary/neetoui": "6.5.13",
161
+ "@bigbinary/neeto-filters-frontend": "4.0.0",
162
+ "@bigbinary/neeto-icons": "1.19.1",
163
+ "@bigbinary/neeto-molecules": "3.2.1",
164
+ "@bigbinary/neetoui": "7.0.2",
164
165
  "@honeybadger-io/js": "^6.5.3",
165
166
  "@honeybadger-io/react": "^6.1.9",
166
167
  "@tanstack/react-query": "5.40.0",
168
+ "@tanstack/react-query-devtools": "5.40.0",
167
169
  "axios": "^1.6.0",
168
170
  "classnames": "^2.3.2",
169
171
  "formik": "^2.4.5",
package/types.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import React, { ReactNode } from "react";
2
2
 
3
+ import { PopoverProps } from "@bigbinary/neetoui";
4
+
3
5
  type Breadcrumb = {
4
6
  text: string;
5
7
  link: string;
@@ -20,7 +22,7 @@ interface MessageTemplatesProps {
20
22
  isTestingTemplateDisabled?: boolean;
21
23
  manageTemplatesPaneCustomFields?: ReactNode;
22
24
  onMutationSuccess?: (...args: any[]) => void;
23
- helpDocUrl?: string;
25
+ helpPopoverProps?: PopoverProps;
24
26
  }
25
27
 
26
28
  interface SendMessagePaneProps {
@@ -41,7 +43,7 @@ interface ApiTemplatesProps {
41
43
  ownerId?: string;
42
44
  breadcrumbs?: Breadcrumb[];
43
45
  onMutationSuccess?: (...args: any[]) => void;
44
- helpDocUrl?: string;
46
+ helpPopoverProps?: PopoverProps;
45
47
  }
46
48
 
47
49
  interface SendToApiPaneProps {