@bigbinary/neeto-molecules 1.0.11 → 1.0.12

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.11",
3
+ "version": "1.0.12",
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>",
@@ -127,6 +127,7 @@
127
127
  "react-router-dom": "^5.2.0",
128
128
  "react-syntax-highlighter": "^15.5.0",
129
129
  "react-toastify": "^9.0.8",
130
+ "react-transition-group": "^4.4.5",
130
131
  "rollup": "^2.76.0",
131
132
  "rollup-plugin-analyzer": "^4.0.0",
132
133
  "rollup-plugin-cleaner": "^1.0.0",
@@ -108,25 +108,27 @@
108
108
  "customDomainWithCount_one": "{{count}} custom domain",
109
109
  "customDomainWithCount_other": "{{count}} custom domains",
110
110
  "placeholder": "Type domain here...",
111
+ "cname": "CNAME",
112
+ "domainValidationCname": "Domain validation CNAME",
111
113
  "label": "Enter custom domain",
112
114
  "validation": {
113
115
  "buttonLabel": {
114
- "txt": "Validate TXT record entries",
116
+ "domain": "Validate domain",
115
117
  "cnameAdded": "I’ve added CNAME records",
116
118
  "cnameCheck": "Validate CNAME record"
117
119
  },
118
- "desc": "Please add following {{record}} record in your domain’s DNS dashboard and then request for {{record}} validation.",
120
+ "desc": "Please add following {{record}} record in your domain’s DNS dashboard.",
119
121
  "record": "{{record}} record {{type}}"
120
122
  },
121
123
  "status": {
122
- "txt": {
123
- "active": "TXT record validated",
124
- "pendingCnameValidation": "TXT record validated",
125
- "pendingTxtValidation": "TXT record validation pending"
124
+ "domain": {
125
+ "active": "Domain validated",
126
+ "pendingCnameValidation": "Domain validated",
127
+ "pendingDomainValidation": "Domain validation pending"
126
128
  },
127
129
  "cname": {
128
- "active": "CNAME record validated",
129
- "pendingCnameValidation": "CNAME record validation pending"
130
+ "active": "CNAME validated",
131
+ "pendingCnameValidation": "CNAME validation pending"
130
132
  },
131
133
  "failed": "Failed"
132
134
  },
@@ -244,7 +246,9 @@
244
246
  "global": {
245
247
  "categoryName": "GLOBAL",
246
248
  "openKeyboardShortcutsPane": "Open the keyboard shortcuts pane",
247
- "close": "Close modals, panes"
249
+ "close": "Close modals, panes",
250
+ "submitForm": "Submit form or text input",
251
+ "addNewLineOrSubmitForm": "Add new line in textarea or submit form"
248
252
  }
249
253
  },
250
254
  "emailPreview": {
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+
3
+ const Container: React.FC<{
4
+ isHeaderFixed?: boolean;
5
+ }>;
6
+
7
+ export default Container;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+
3
+ const Menubar: React.FC<{
4
+ title?: string;
5
+ showMenu?: boolean;
6
+ className?: string;
7
+ }>;
8
+
9
+ export default Menubar;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+
3
+ const PageLoader: React.FC<{
4
+ text?: string;
5
+ }>;
6
+
7
+ export default PageLoader;