@bigbinary/neeto-molecules 1.0.23 → 1.0.25
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/DateFormat.cjs.js +93 -52
- package/dist/DateFormat.cjs.js.map +1 -1
- package/dist/DateFormat.js +93 -52
- package/dist/DateFormat.js.map +1 -1
- package/dist/NeetoWidget.cjs.js +991 -812
- package/dist/NeetoWidget.cjs.js.map +1 -1
- package/dist/NeetoWidget.js +974 -795
- package/dist/NeetoWidget.js.map +1 -1
- package/dist/PhoneNumber.cjs.js +285 -141
- package/dist/PhoneNumber.cjs.js.map +1 -1
- package/dist/PhoneNumber.js +286 -142
- package/dist/PhoneNumber.js.map +1 -1
- package/dist/Sidebar.cjs.js +535 -11
- package/dist/Sidebar.cjs.js.map +1 -1
- package/dist/Sidebar.js +536 -12
- package/dist/Sidebar.js.map +1 -1
- package/package.json +1 -1
- package/src/translations/en.json +2 -1
- package/types/DateFormat.d.ts +1 -0
- package/types/NeetoWidget.d.ts +4 -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.25",
|
|
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>",
|
package/src/translations/en.json
CHANGED
|
@@ -136,7 +136,8 @@
|
|
|
136
136
|
"send": "Send",
|
|
137
137
|
"cancel": "Cancel"
|
|
138
138
|
}
|
|
139
|
-
}
|
|
139
|
+
},
|
|
140
|
+
"developmentInfo": "This page can be accessed only in SSO mode. To access the page, run neetoAuth in the background and restart the application in SSO mode."
|
|
140
141
|
},
|
|
141
142
|
"customDomain": {
|
|
142
143
|
"customDomain_one": "Custom domain",
|
package/types/DateFormat.d.ts
CHANGED
package/types/NeetoWidget.d.ts
CHANGED
|
@@ -3,6 +3,10 @@ type EmbedCode = React.FC<{
|
|
|
3
3
|
primaryApp?: string;
|
|
4
4
|
}>;
|
|
5
5
|
/**
|
|
6
|
+
*
|
|
7
|
+
* This component can be accessed only in SSO mode. To access the component, run
|
|
8
|
+
*
|
|
9
|
+
* neetoAuth in the background and restart the application in SSO mode.
|
|
6
10
|
*
|
|
7
11
|
* This object contains the widget names.
|
|
8
12
|
*
|