datastake-daf 0.6.550 → 0.6.552
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/build/favicon.ico +0 -0
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +25 -0
- package/build/robots.txt +3 -0
- package/dist/components/index.js +3 -3
- package/dist/context/index.js +3 -3
- package/dist/hooks/index.js +4655 -16
- package/dist/layouts/index.css +1 -1
- package/dist/layouts/index.js +1 -112
- package/dist/services/index.js +6 -6
- package/package.json +1 -1
- package/public/assets/images/applications/MMT Icon.svg +3 -0
- package/public/assets/images/applications/hatua-logo-big.svg +4 -0
- package/src/@daf/layouts/AppLayout/components/Sidenav/index.js +1 -0
- package/src/@daf/services/helpers/config.js +5 -5
- package/src/@daf/services/helpers/config2.js +99 -0
- package/src/layouts.js +1 -2
- package/src/@daf/layouts/AuthLayout/index.jsx +0 -154
- package/src/@daf/layouts/AuthLayout/index.scss +0 -414
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"short_name": "React App",
|
|
3
|
+
"name": "Create React App Sample",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "favicon.ico",
|
|
7
|
+
"sizes": "64x64 32x32 24x24 16x16",
|
|
8
|
+
"type": "image/x-icon"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"src": "logo192.png",
|
|
12
|
+
"type": "image/png",
|
|
13
|
+
"sizes": "192x192"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"src": "logo512.png",
|
|
17
|
+
"type": "image/png",
|
|
18
|
+
"sizes": "512x512"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"start_url": ".",
|
|
22
|
+
"display": "standalone",
|
|
23
|
+
"theme_color": "#000000",
|
|
24
|
+
"background_color": "#ffffff"
|
|
25
|
+
}
|
package/build/robots.txt
ADDED
package/dist/components/index.js
CHANGED
|
@@ -41063,7 +41063,7 @@ const createErrorHandler = (config = {}) => {
|
|
|
41063
41063
|
};
|
|
41064
41064
|
};
|
|
41065
41065
|
|
|
41066
|
-
|
|
41066
|
+
window.globalConfig = {
|
|
41067
41067
|
application: null,
|
|
41068
41068
|
mainApiUrl: null,
|
|
41069
41069
|
storeUrl: null,
|
|
@@ -41075,9 +41075,9 @@ let globalConfig = {
|
|
|
41075
41075
|
};
|
|
41076
41076
|
const getConfig$1 = () => {
|
|
41077
41077
|
console.log({
|
|
41078
|
-
getConfig: globalConfig
|
|
41078
|
+
getConfig: window.globalConfig
|
|
41079
41079
|
});
|
|
41080
|
-
return globalConfig;
|
|
41080
|
+
return window.globalConfig;
|
|
41081
41081
|
};
|
|
41082
41082
|
|
|
41083
41083
|
class ErrorService {
|
package/dist/context/index.js
CHANGED
|
@@ -841,7 +841,7 @@ const createErrorHandler = (config = {}) => {
|
|
|
841
841
|
};
|
|
842
842
|
};
|
|
843
843
|
|
|
844
|
-
|
|
844
|
+
window.globalConfig = {
|
|
845
845
|
application: null,
|
|
846
846
|
mainApiUrl: null,
|
|
847
847
|
storeUrl: null,
|
|
@@ -853,9 +853,9 @@ let globalConfig = {
|
|
|
853
853
|
};
|
|
854
854
|
const getConfig = () => {
|
|
855
855
|
console.log({
|
|
856
|
-
getConfig: globalConfig
|
|
856
|
+
getConfig: window.globalConfig
|
|
857
857
|
});
|
|
858
|
-
return globalConfig;
|
|
858
|
+
return window.globalConfig;
|
|
859
859
|
};
|
|
860
860
|
|
|
861
861
|
class ErrorService {
|