@bigbinary/neeto-molecules 1.0.19 → 1.0.21
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/CustomDomain.cjs.js +1215 -208
- package/dist/CustomDomain.cjs.js.map +1 -1
- package/dist/CustomDomain.js +1203 -196
- package/dist/CustomDomain.js.map +1 -1
- package/dist/IpRestriction.cjs.js +311 -68
- package/dist/IpRestriction.cjs.js.map +1 -1
- package/dist/IpRestriction.js +315 -72
- package/dist/IpRestriction.js.map +1 -1
- package/dist/NeetoWidget.cjs.js +9117 -92707
- package/dist/NeetoWidget.cjs.js.map +1 -1
- package/dist/NeetoWidget.js +9122 -92712
- package/dist/NeetoWidget.js.map +1 -1
- package/package.json +2 -2
- package/src/translations/en.json +6 -2
- package/types/MenuBar.d.ts +1 -1
- package/types/ShareViaEmail.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-molecules",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
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>",
|
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
"postcss-preset-env": "7.8.2",
|
|
120
120
|
"prettier": "2.6.2",
|
|
121
121
|
"prettier-plugin-tailwindcss": "0.1.10",
|
|
122
|
+
"prismjs": "^1.29.0",
|
|
122
123
|
"qrcode.react": "^3.1.0",
|
|
123
124
|
"qs": "^6.11.0",
|
|
124
125
|
"ramda": "^0.28.0",
|
|
@@ -130,7 +131,6 @@
|
|
|
130
131
|
"react-i18next": "11.16.8",
|
|
131
132
|
"react-query": "^3.39.2",
|
|
132
133
|
"react-router-dom": "^5.2.0",
|
|
133
|
-
"react-syntax-highlighter": "^15.5.0",
|
|
134
134
|
"react-toastify": "^9.0.8",
|
|
135
135
|
"react-transition-group": "^4.4.5",
|
|
136
136
|
"rollup": "^2.76.0",
|
package/src/translations/en.json
CHANGED
|
@@ -103,7 +103,9 @@
|
|
|
103
103
|
"placement": "Place the embed code in your HTML file. This will embed <fontBold>{{selectedWidgets}}</fontBold> in your website.",
|
|
104
104
|
"userIdentity": "Specify user identity information. This information is used to classify neetoChat conversations and neetoReplay sessions.",
|
|
105
105
|
"sessionContext": "Save contextual data for the neetoReplay sessions. Sessions can be filtered by this data."
|
|
106
|
-
}
|
|
106
|
+
},
|
|
107
|
+
"enabled": "{{productName}} widget enabled successfully",
|
|
108
|
+
"disabled": "{{productName}} widget disabled successfully"
|
|
107
109
|
},
|
|
108
110
|
"email": {
|
|
109
111
|
"title": "Widget installation instructions",
|
|
@@ -249,7 +251,9 @@
|
|
|
249
251
|
"validations": {
|
|
250
252
|
"invalidIp": "Invalid IP address format",
|
|
251
253
|
"ipEndGreaterThanIpStart": "IP end should be greater than or equal to IP start",
|
|
252
|
-
"eitherIpv4OrIpv6": "IPs should be in either IPv6 or IPv4"
|
|
254
|
+
"eitherIpv4OrIpv6": "IPs should be in either IPv6 or IPv4",
|
|
255
|
+
"ipStartRequired": "IP start is required",
|
|
256
|
+
"ipEndRequired": "IP end is required"
|
|
253
257
|
},
|
|
254
258
|
"currentIpTitle": "Your current IP is",
|
|
255
259
|
"currentIpDescription": "Your current IP will be added to the allowed IP range by default. You will not be able to save the IP settings without your current IP address on the list"
|
package/types/MenuBar.d.ts
CHANGED
|
@@ -90,7 +90,7 @@ type AddNewProps = {
|
|
|
90
90
|
* Subtitle
|
|
91
91
|
* </Typography>
|
|
92
92
|
* </MenuBar.SubTitle>
|
|
93
|
-
* <MenuBar.Search
|
|
93
|
+
* <MenuBar.Search isCollapsed={isSearchCollapsed} onCollapse={() => {}} />
|
|
94
94
|
* <MenuBar.AddNew label="Add new button" />
|
|
95
95
|
* <MenuBar.Item
|
|
96
96
|
* description="An Item which can have a subheading and heading"
|
package/types/ShareViaEmail.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ import React from "react";
|
|
|
11
11
|
*
|
|
12
12
|
* import React from "react";
|
|
13
13
|
* import ShareViaEmail from "@bigbinary/neeto-molecules/ShareViaEmail";
|
|
14
|
-
* import
|
|
14
|
+
* import Scrollable from "@bigbinary/neeto-molecules/Scrollable";
|
|
15
15
|
*
|
|
16
16
|
* const ShareViaEmail = () => {
|
|
17
17
|
* const handleSubmit = () => {
|
|
@@ -36,7 +36,7 @@ import React from "react";
|
|
|
36
36
|
*
|
|
37
37
|
* import React, {useState} from "react";
|
|
38
38
|
* import ShareViaEmail from "@bigbinary/neeto-molecules/ShareViaEmail";
|
|
39
|
-
* import
|
|
39
|
+
* import Scrollable from "@bigbinary/neeto-molecules/Scrollable";
|
|
40
40
|
*
|
|
41
41
|
* const ShareViaEmail = () => {
|
|
42
42
|
* const [startButtonText, setStartButtonText] = useState("")
|