@bigbinary/neeto-message-templates-frontend 0.7.0 → 0.7.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": "0.7.0",
3
+ "version": "0.7.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.1",
52
- "@bigbinary/neeto-audit-frontend": "2.0.9",
52
+ "@bigbinary/neeto-audit-frontend": "2.0.11",
53
53
  "@bigbinary/neeto-cist": "1.0.9",
54
- "@bigbinary/neeto-commons-frontend": "3.4.0",
54
+ "@bigbinary/neeto-commons-frontend": "3.4.15",
55
55
  "@bigbinary/neeto-editor": "^1.28.26",
56
- "@bigbinary/neeto-filters-frontend": "3.3.1",
57
- "@bigbinary/neeto-icons": "1.18.4",
58
- "@bigbinary/neeto-molecules": "1.15.15",
56
+ "@bigbinary/neeto-filters-frontend": "3.3.4",
57
+ "@bigbinary/neeto-icons": "1.18.8",
58
+ "@bigbinary/neeto-molecules": "1.16.3",
59
59
  "@bigbinary/neeto-team-members-frontend": "2.9.2",
60
- "@bigbinary/neetoui": "6.5.10",
60
+ "@bigbinary/neetoui": "6.5.13",
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",
@@ -155,12 +155,12 @@
155
155
  },
156
156
  "peerDependencies": {
157
157
  "@bigbinary/neeto-cist": "latest",
158
- "@bigbinary/neeto-commons-frontend": "3.4.0",
158
+ "@bigbinary/neeto-commons-frontend": "3.4.15",
159
159
  "@bigbinary/neeto-editor": "^1.26.3",
160
- "@bigbinary/neeto-filters-frontend": "3.3.1",
161
- "@bigbinary/neeto-icons": "1.18.4",
162
- "@bigbinary/neeto-molecules": "1.15.15",
163
- "@bigbinary/neetoui": "6.5.10",
160
+ "@bigbinary/neeto-filters-frontend": "3.3.4",
161
+ "@bigbinary/neeto-icons": "1.18.8",
162
+ "@bigbinary/neeto-molecules": "1.16.3",
163
+ "@bigbinary/neetoui": "6.5.13",
164
164
  "@honeybadger-io/js": "^6.5.3",
165
165
  "@honeybadger-io/react": "^6.1.9",
166
166
  "axios": "^1.6.0",
@@ -189,6 +189,7 @@
189
189
  "yarn": ">=1.22"
190
190
  },
191
191
  "dependencies": {
192
+ "babel-plugin-transform-imports": "^2.0.0",
192
193
  "react-router-nav-prompt": "0.4.1",
193
194
  "source-map-loader": "^4.0.1",
194
195
  "zustand": "4.3.2"
package/types.d.ts CHANGED
@@ -33,6 +33,7 @@ interface SendMessagePaneProps {
33
33
  templateVariables?: TemplateVariables[];
34
34
  ownerId?: string;
35
35
  helpDocUrl?: string;
36
+ addNewTemplateRoute: string;
36
37
  }
37
38
 
38
39
  interface ApiTemplatesProps {
@@ -47,6 +48,7 @@ interface SendToApiPaneProps {
47
48
  isOpen?: boolean;
48
49
  onSubmit?: (values: { [key: string]: any }) => void;
49
50
  isSubmitting?: boolean;
51
+ addNewTemplateRoute: string;
50
52
  }
51
53
 
52
54
  export const MessageTemplates = React.FC<MessageTemplatesProps>;