@bigbinary/neeto-molecules 1.0.78-beta → 1.0.79

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-molecules",
3
- "version": "1.0.78-beta",
3
+ "version": "1.0.79",
4
4
  "description": "A package of reusable molecular components for neeto products.",
5
5
  "repository": "git@github.com:bigbinary/neeto-molecules.git",
6
6
  "author": "Amaljith K <amaljith.k@bigbinary.com>",
@@ -51,9 +51,9 @@
51
51
  "@bigbinary/neeto-commons-frontend": "2.0.106",
52
52
  "@bigbinary/neeto-editor": "1.27.0-beta.1",
53
53
  "@bigbinary/neeto-filters-frontend": "^2.11.15",
54
- "@bigbinary/neeto-icons": "^1.14.0",
54
+ "@bigbinary/neeto-icons": "^1.12.3",
55
55
  "@bigbinary/neeto-molecules": "^1.0.5",
56
- "@bigbinary/neetoui": "^5.0.9",
56
+ "@bigbinary/neetoui": "^5.1.5",
57
57
  "@faker-js/faker": "7.6.0",
58
58
  "@honeybadger-io/react": "2.0.1",
59
59
  "@rails/activestorage": "^7.0.5",
@@ -67,16 +67,12 @@
67
67
  "logout": "Log out",
68
68
  "help": "Help",
69
69
  "productSwitcher": "Product switcher",
70
- "neetoProducts": "neeto products",
71
70
  "helpLinks": {
72
71
  "liveChat": "Live chat",
73
72
  "helpCenter": "Help center",
74
73
  "whatsNew": "What's new",
75
- "keyboardShortcuts": "Keyboard shortcuts",
76
- "helpArticles": "Help articles"
77
- },
78
- "showMenu": "Show menu",
79
- "hideMenu": "Hide menu"
74
+ "keyboardShortcuts": "Keyboard shortcuts"
75
+ }
80
76
  },
81
77
  "appSwitcher": {
82
78
  "noApps": "No apps found",
@@ -168,8 +164,9 @@
168
164
  "cnameAdded": "I’ve added CNAME records",
169
165
  "cnameCheck": "Validate CNAME record"
170
166
  },
171
- "desc": "Please add following {{record}} record in your domain’s DNS dashboard.",
172
- "record": "{{record}} record {{type}}"
167
+ "desc": "Please add following {{record}} record in your domain’s DNS dashboard. {{proxyMessage}}",
168
+ "record": "{{record}} record {{type}}",
169
+ "proxyMessage": "Kindly avoid enabling proxy for the record."
173
170
  },
174
171
  "status": {
175
172
  "domain": {
@@ -178,13 +175,13 @@
178
175
  "pendingDomainValidation": "Domain validation pending"
179
176
  },
180
177
  "cname": {
181
- "active": "CNAME validated",
182
- "pendingCnameValidation": "CNAME validation pending"
178
+ "active": "CNAME added",
179
+ "pendingCnameValidation": "Add CNAME record"
183
180
  },
184
181
  "failed": "Failed"
185
182
  },
186
183
  "messageBlock": {
187
- "dnsStatus": "<p>Typically, it will take 2 hours to 24 hours for the new custom domain to start working.</p><br><p> An email will be sent when the custom domain starts working.</p><br>If, after 24 hours, your custom domain is still not working, then please send an email to ",
184
+ "dnsStatus": "Typically, it will take 2 hours to 24 hours for the new custom domain to start working. Please refer our <a>help document</a> if you face any issue.",
188
185
  "cnameAddedTime": " You added CNAME records {{time}}"
189
186
  },
190
187
  "alertMessage": "You are permanently deleting the custom domain <strong>{{hostname}}</strong> and will no longer point to your default domain. This can't be undone.",
@@ -57,5 +57,6 @@ const EmailForm: React.FC<{
57
57
  isLoading?: boolean;
58
58
  replyToOptions?: FieldOptions[];
59
59
  isUpdating?: boolean;
60
+ showFields?: boolean;
60
61
  }>;
61
62
  export default EmailForm;
@@ -1,4 +1,8 @@
1
1
  import React from "react";
2
+ import * as yup from 'yup';
3
+ type ValidationMap = {
4
+ [key: string]: yup.AnySchema;
5
+ };
2
6
  /**
3
7
  *
4
8
  * This is a container component for EmailForm that maintains the context values
@@ -36,6 +40,6 @@ declare const EmailFormProvider: <T extends {}>(props: {
36
40
  formikProps: {
37
41
  [key: string]: any;
38
42
  };
39
- validationSchema: yup.Schema<T>;
43
+ validationSchema?: ValidationMap;
40
44
  }) => JSX.Element;
41
45
  export default EmailFormProvider;
@@ -24,7 +24,7 @@ interface ProfileInfo {
24
24
  interface HelpLinks {
25
25
  liveChatProps?: LinkType;
26
26
  helpCenterProps?: LinkType;
27
- changelogProps?: ChangeLogPropsType;
27
+ changelogProps?: LinkType;
28
28
  keyboardShortcutProps?: LinkType;
29
29
  }
30
30
  /**