@bigbinary/neeto-molecules 1.1.28 → 1.1.30
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/dist/IpRestriction.js +269 -513
- package/dist/IpRestriction.js.map +1 -1
- package/dist/NeetoWidget.js.map +1 -1
- package/dist/Taxonomy.js +516 -0
- package/dist/Taxonomy.js.map +1 -0
- package/package.json +5 -2
- package/src/translations/en.json +25 -4
- package/types/IpRestriction.d.ts +1 -1
- package/types/Taxonomy.d.ts +10 -0
package/src/translations/en.json
CHANGED
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
"publish": "Publish",
|
|
16
16
|
"draft": "Draft",
|
|
17
17
|
"changeTimezone": "Change timezone",
|
|
18
|
-
"rename": "Rename"
|
|
18
|
+
"rename": "Rename",
|
|
19
|
+
"discard": "Discard",
|
|
20
|
+
"resetToDefaults": "Reset to defaults",
|
|
21
|
+
"proceed": "Proceed"
|
|
19
22
|
},
|
|
20
23
|
"or": "or",
|
|
21
24
|
"name": "name",
|
|
@@ -292,10 +295,10 @@
|
|
|
292
295
|
"eitherIpv4OrIpv6": "IPs should be in either IPv6 or IPv4",
|
|
293
296
|
"ipStartRequired": "IP start is required",
|
|
294
297
|
"ipEndRequired": "IP end is required",
|
|
295
|
-
"addressTypeRequired": "Address type is required"
|
|
298
|
+
"addressTypeRequired": "Address type is required",
|
|
299
|
+
"unsavedChanges": "* You have unsaved changes"
|
|
296
300
|
},
|
|
297
|
-
"
|
|
298
|
-
"currentIpDescription": "and it will be added to the allowed IP range by default.",
|
|
301
|
+
"currentIpMessage": "Your current IP is <strong>{{ip}}</strong> and it should be present in the allowed IP range.",
|
|
299
302
|
"warningMessage": "Please be careful enabling this feature. There have been cases where the IP address assigned to people at home is dynamic. After a few days, the IP changed and those people were unable to access neeto applications.\n\nIf you are using a VPN with a fixed range of IP addresses, you are a good candidate for this feature.\n\nIf you get locked out or if you run into any issue, then you can send an email to <strong>support@neeto.com</strong> with your organization name and subdomain.",
|
|
300
303
|
"enableAlert": {
|
|
301
304
|
"title": "Enable IP restriction?",
|
|
@@ -579,6 +582,24 @@
|
|
|
579
582
|
"viewMore": "View more",
|
|
580
583
|
"viewLess": "View less"
|
|
581
584
|
}
|
|
585
|
+
},
|
|
586
|
+
"taxonomy": {
|
|
587
|
+
"title": "Taxonomy",
|
|
588
|
+
"browserTitle": "Taxonomy | Settings",
|
|
589
|
+
"defaultLabel": "Default label",
|
|
590
|
+
"singularLabel": "Singular label",
|
|
591
|
+
"pluralLabel": "Plural label",
|
|
592
|
+
"resetAlert": {
|
|
593
|
+
"title": "Reset to defaults?",
|
|
594
|
+
"message": "You are resetting taxonomies to their defaults. This can't be undone. Are you sure you want to proceed?"
|
|
595
|
+
},
|
|
596
|
+
"editPane": {
|
|
597
|
+
"title": "Edit labels for {{entity}}",
|
|
598
|
+
"validations": {
|
|
599
|
+
"singularLabelRequired": "Singular label is a required field.",
|
|
600
|
+
"pluralLabelRequired": "Plural label is a required field."
|
|
601
|
+
}
|
|
602
|
+
}
|
|
582
603
|
}
|
|
583
604
|
}
|
|
584
605
|
}
|
package/types/IpRestriction.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import React from "react";
|
|
|
3
3
|
*
|
|
4
4
|
* A common component to restrict IPs in neeto applications.
|
|
5
5
|
*
|
|
6
|
-
* 
|
|
7
7
|
*
|
|
8
8
|
* @example
|
|
9
9
|
*
|