@ukpc-lib/react 0.14.5 → 0.14.6-sandbox.saas-9898.patch-1
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/components/index.cjs +1 -1
- package/dist/components/index.js +2 -2
- package/dist/{index.esm2017-DNrIADxm.cjs → index.esm2017-CeP7Er0c.cjs} +73 -73
- package/dist/{index.esm2017-DLjiPHbA.js → index.esm2017-N8BJl2eP.js} +1807 -1795
- package/dist/share/index.cjs +1 -1
- package/dist/share/index.js +1 -1
- package/dist/share/interceptor/index.d.ts +1 -1
- package/package.json +1 -1
- package/web-components-bundle/favorite-menu/index.js +1 -1
- package/web-components-bundle/global-menu/index.js +1 -1
- package/web-components-bundle/global-topbar/index.js +1 -1
- package/web-components-bundle/has-permission/index.js +1 -1
- package/web-components-bundle/{index-Byn-TU-z.js → index-CIU_EzEr.js} +607 -595
package/dist/share/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../index.esm2017-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../index.esm2017-CeP7Er0c.cjs"),m=require("axios"),u=require("react"),i=require("react/jsx-runtime");require("@r2wc/react-to-web-component");const l=require("react-router-dom");require("@mui/material");const c=s=>{const[t,o]=u.useState([]);return u.useEffect(()=>{m.get(`${s}/user-management/api/v1/users/my-account/permissions`,{withCredentials:!0}).then(r=>o(r.data)).catch(r=>{console.error("Getting user permission error:",r)})},[s]),t},a=s=>(t,o)=>{const r=c(s);return o?t.every(n=>r==null?void 0:r.includes(n)):t.some(n=>r==null?void 0:r.includes(n))},h=({baseUrl:s,accessWith:t,requireAll:o,children:r})=>a(s)(t,o)?i.jsx(i.Fragment,{children:r}):null,P=({accessWith:s,requireAll:t,baseUrl:o,unAuthorizedPath:r,children:n})=>a(o)(s,t)?i.jsx(i.Fragment,{children:n}):i.jsx(l.Navigate,{to:r,replace:!0});exports.AuthContext=e.AuthContext;exports.AuthProvider=e.AuthProvider;exports.ERROR_MESSAGE=e.ERROR_MESSAGE;exports.SaasThemeProvider=e.SaasThemeProvider;exports.TranslationProvider=e.TranslationProvider;exports.axiosInstance=e.axiosInstance;exports.color=e.color;exports.createCustomTheme=e.createCustomTheme;exports.handleErrorAxios=e.handleErrorAxios;exports.login=e.login;exports.logout=e.logout;exports.responseInterceptor=e.responseInterceptor;exports.search=e.search;exports.setFavicon=e.setFavicon;exports.translate=e.translate;exports.translationConfig=e.translationConfig;exports.useAuth=e.useAuth;exports.useCustomTranslation=e.useCustomTranslation;exports.useTheme=e.useTheme;exports.useTranslation=e.useTranslation$1;exports.HasPermission=h;exports.PermissionRoute=P;exports.getUseHasPermission=a;exports.useGetPermission=c;
|
package/dist/share/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { T as R, V as S, W as G, a5 as j, a2 as y, a as F, c as H, a3 as I, Z as $, X as w, Y as M, $ as N, x as O, a4 as V, t as X, a0 as Y, e as Z, u as _, j as k, a1 as q } from "../index.esm2017-
|
|
1
|
+
import { T as R, V as S, W as G, a5 as j, a2 as y, a as F, c as H, a3 as I, Z as $, X as w, Y as M, $ as N, x as O, a4 as V, t as X, a0 as Y, e as Z, u as _, j as k, a1 as q } from "../index.esm2017-N8BJl2eP.js";
|
|
2
2
|
import u from "axios";
|
|
3
3
|
import { useState as m, useEffect as c } from "react";
|
|
4
4
|
import { jsx as o, Fragment as n } from "react/jsx-runtime";
|
|
@@ -10,6 +10,6 @@ export type HandleErrorOptions = {
|
|
|
10
10
|
handleOtherError?: (error: any) => any;
|
|
11
11
|
disabledPushNotify?: boolean;
|
|
12
12
|
};
|
|
13
|
-
export declare function handleErrorAxios(error: any, options?: HandleErrorOptions): void |
|
|
13
|
+
export declare function handleErrorAxios(error: any, options?: HandleErrorOptions): Promise<void | import('axios').AxiosResponse<any, any>>;
|
|
14
14
|
declare const responseInterceptor: number;
|
|
15
15
|
export { axiosInstance, responseInterceptor };
|
package/package.json
CHANGED