@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/README.md +3 -0
- package/dist/Container.cjs.js +7 -0
- package/dist/Container.js +6 -0
- package/dist/CustomDomain.cjs.js +1 -1
- package/dist/CustomDomain.js +2 -2
- package/dist/KeyboardShortcuts.cjs.js +2 -2
- package/dist/KeyboardShortcuts.js +2 -2
- package/dist/MenuBar.cjs.js +64 -0
- package/dist/MenuBar.js +64 -0
- package/dist/NeetoWidget.cjs.js +2 -2
- package/dist/NeetoWidget.js +2 -2
- package/dist/Sidebar.cjs.js +5 -5
- package/dist/Sidebar.js +4 -4
- package/package.json +2 -1
- package/src/translations/en.json +13 -9
- package/types/Container.d.ts +7 -0
- package/types/MenuBar.d.ts +9 -0
- package/types/PageLoader.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-molecules",
|
|
3
|
-
"version": "1.0.
|
|
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",
|
package/src/translations/en.json
CHANGED
|
@@ -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
|
-
"
|
|
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
|
|
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
|
-
"
|
|
123
|
-
"active": "
|
|
124
|
-
"pendingCnameValidation": "
|
|
125
|
-
"
|
|
124
|
+
"domain": {
|
|
125
|
+
"active": "Domain validated",
|
|
126
|
+
"pendingCnameValidation": "Domain validated",
|
|
127
|
+
"pendingDomainValidation": "Domain validation pending"
|
|
126
128
|
},
|
|
127
129
|
"cname": {
|
|
128
|
-
"active": "CNAME
|
|
129
|
-
"pendingCnameValidation": "CNAME
|
|
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": {
|