@bigbinary/neeto-commons-frontend 2.0.23 → 2.0.24
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 +1 -1
- package/initializers.cjs.js +3 -3
- package/initializers.js +3 -3
- package/package.json +3 -2
- package/react-utils.cjs.js +1409 -2883
- package/react-utils.js +1409 -2883
- package/utils.cjs.js +8 -0
- package/utils.js +8 -1
package/README.md
CHANGED
package/initializers.cjs.js
CHANGED
|
@@ -982,8 +982,8 @@ function initializeGlobalProps() {
|
|
|
982
982
|
|
|
983
983
|
var neetoCommons = {
|
|
984
984
|
errorPage: {
|
|
985
|
-
|
|
986
|
-
|
|
985
|
+
cantBeFound: "The page you're looking for <br /> can't be found.",
|
|
986
|
+
backToHome: "Back to home"
|
|
987
987
|
},
|
|
988
988
|
fallbackComponent: {
|
|
989
989
|
somethingWentWrong: "Sorry, something went wrong.",
|
|
@@ -993,7 +993,7 @@ var neetoCommons = {
|
|
|
993
993
|
sidebar: {
|
|
994
994
|
myProfile: "My profile",
|
|
995
995
|
myOrganization: "My organization",
|
|
996
|
-
logout: "
|
|
996
|
+
logout: "Log out",
|
|
997
997
|
help: "Help"
|
|
998
998
|
},
|
|
999
999
|
common: {
|
package/initializers.js
CHANGED
|
@@ -970,8 +970,8 @@ function initializeGlobalProps() {
|
|
|
970
970
|
|
|
971
971
|
var neetoCommons = {
|
|
972
972
|
errorPage: {
|
|
973
|
-
|
|
974
|
-
|
|
973
|
+
cantBeFound: "The page you're looking for <br /> can't be found.",
|
|
974
|
+
backToHome: "Back to home"
|
|
975
975
|
},
|
|
976
976
|
fallbackComponent: {
|
|
977
977
|
somethingWentWrong: "Sorry, something went wrong.",
|
|
@@ -981,7 +981,7 @@ var neetoCommons = {
|
|
|
981
981
|
sidebar: {
|
|
982
982
|
myProfile: "My profile",
|
|
983
983
|
myOrganization: "My organization",
|
|
984
|
-
logout: "
|
|
984
|
+
logout: "Log out",
|
|
985
985
|
help: "Help"
|
|
986
986
|
},
|
|
987
987
|
common: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bigbinary/neeto-commons-frontend",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.24",
|
|
4
4
|
"description": "A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.",
|
|
5
5
|
"repository": "git@github.com:bigbinary/neeto-commons-frontend.git",
|
|
6
6
|
"author": "Amaljith K <amaljith.k@bigbinary.com>",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"js-logger": "^1.6.1",
|
|
83
83
|
"lint-staged": "^12.3.7",
|
|
84
84
|
"mixpanel-browser": "^2.45.0",
|
|
85
|
+
"platform": "1.3.6",
|
|
85
86
|
"prettier": "^2.6.2",
|
|
86
87
|
"qs": "^6.11.0",
|
|
87
88
|
"ramda": "^0.28.0",
|
|
@@ -99,7 +100,7 @@
|
|
|
99
100
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
100
101
|
"yup": "^0.32.11",
|
|
101
102
|
"zustand": "^4.1.2",
|
|
102
|
-
"
|
|
103
|
+
"babel-plugin-transform-react-remove-prop-types": "^0.4.24"
|
|
103
104
|
},
|
|
104
105
|
"dependencies": {},
|
|
105
106
|
"peerDependencies": {
|