@bigbinary/neeto-commons-frontend 2.0.22 → 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 +5 -4
- package/initializers.js +5 -4
- package/package.json +4 -2
- package/react-utils.cjs.js +3258 -5900
- package/react-utils.d.ts +5 -0
- package/react-utils.js +3229 -5872
- 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: {
|
|
@@ -1153,7 +1153,8 @@ var neetoCommons = {
|
|
|
1153
1153
|
contactUs: {
|
|
1154
1154
|
main: "<button></button> if you need any help.",
|
|
1155
1155
|
buttonLabel: "Contact us"
|
|
1156
|
-
}
|
|
1156
|
+
},
|
|
1157
|
+
unknownBrowserMsg: "an unknown browser"
|
|
1157
1158
|
}
|
|
1158
1159
|
};
|
|
1159
1160
|
var en = {
|
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: {
|
|
@@ -1141,7 +1141,8 @@ var neetoCommons = {
|
|
|
1141
1141
|
contactUs: {
|
|
1142
1142
|
main: "<button></button> if you need any help.",
|
|
1143
1143
|
buttonLabel: "Contact us"
|
|
1144
|
-
}
|
|
1144
|
+
},
|
|
1145
|
+
unknownBrowserMsg: "an unknown browser"
|
|
1145
1146
|
}
|
|
1146
1147
|
};
|
|
1147
1148
|
var en = {
|
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": {
|
|
@@ -115,6 +116,7 @@
|
|
|
115
116
|
"mixpanel-browser": "^2.45.0",
|
|
116
117
|
"ramda": "^0.28.0",
|
|
117
118
|
"react": "^17.0.2",
|
|
119
|
+
"react-helmet": "^6.1.0",
|
|
118
120
|
"react-i18next": "11.16.8",
|
|
119
121
|
"react-query": "^3.39.2",
|
|
120
122
|
"react-router-dom": "^5.2.0",
|