@ukpc-lib/react 0.2.22 → 0.2.23
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/application.d.ts +1 -0
- package/dist/components/MultiProvider.d.ts +6 -0
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.js +2 -2
- package/dist/components/main.d.ts +5 -4
- package/dist/{index.module-eaf7a821.cjs → index.module-3c7dfdd1.cjs} +75 -75
- package/dist/{index.module-a18bd948.js → index.module-97c322f5.js} +4701 -4698
- package/dist/main.d.ts +1 -0
- package/dist/share/index.cjs +1 -1
- package/dist/share/index.js +2 -2
- package/dist/theme/Colors.d.ts +33 -0
- package/dist/theme/SaasThemeProvider.d.ts +2 -0
- package/dist/theme/Theme.d.ts +21 -0
- package/dist/theme/index.cjs +1 -1
- package/dist/theme/index.d.ts +3 -0
- package/dist/theme/index.js +7 -6
- package/dist/translations/config.d.ts +10 -0
- package/dist/translations/de/translation.json.d.ts +230 -0
- package/dist/translations/en/translation.json.d.ts +230 -0
- package/dist/web-components/global-menu.d.ts +1 -0
- package/dist/web-components/global-topbar.d.ts +1 -0
- package/dist/web-components/has-permission.d.ts +1 -0
- package/dist/web-components/index.d.ts +2 -0
- package/package.json +1 -1
- package/web-components-bundle/global-topbar/index.cjs +1 -1
- package/web-components-bundle/global-topbar/index.js +1 -1
- package/web-components-bundle/has-permission/index.cjs +1 -1
- package/web-components-bundle/has-permission/index.js +1 -1
- package/web-components-bundle/{index-2c1ba689.cjs → index-a1eabc81.cjs} +68 -68
- package/web-components-bundle/{index-8d8b181c.js → index-f74899a8.js} +5833 -5836
package/dist/main.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/share/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../index.module-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("../index.module-3c7dfdd1.cjs"),d=require("axios"),i=require("react/jsx-runtime"),g=require("react");require("moment");require("@r2wc/react-to-web-component");const f=require("react-router-dom");require("react-dom");require("@mui/material");function q({config:t,pushError:n=o.pushError}){const r=d.create(t);r.interceptors.request.use(async e=>(e.headers={Accept:"application/json","Content-Type":"application/json"},e),e=>Promise.reject(e)),r.interceptors.response.use(e=>e,async e=>s(e));async function s(e){var l,P,p,h;console.error("Error 🚨:",e);const a=e.config,u=(P=(l=e.response)==null?void 0:l.data)==null?void 0:P.errorMessage,m=u===o.ERROR_MESSAGE.TOKEN_EXPIRED;return((p=e.response)==null?void 0:p.status)===401?m&&!a._retry?(a._retry=!0,r.post("/authentication/api/v1/auth/refresh-token").then(()=>r(a)).catch(()=>o.login(t.baseURL))):((!u||!m)&&o.login(t.baseURL),Promise.reject("Unauthorized! Please login again.")):(((h=e.response)==null?void 0:h.status)===403?n(o.t("errorMessage.403")):n(o.t(`${u}`)||"Something went wrong!"),Promise.reject(e.response.data))}return r}const R=t=>{const[n,r]=g.useState([]);return g.useEffect(()=>{d.get(`${t}/user-management/api/v1/users/my-account/permissions`,{withCredentials:!0}).then(s=>r(s.data)).catch(s=>{console.error("Getting user permission error:",s)})},[t]),n},c=t=>(n,r)=>{const s=R(t);return r?n.every(e=>s==null?void 0:s.includes(e)):n.some(e=>s==null?void 0:s.includes(e))},j=({baseUrl:t,accessWith:n,requireAll:r,children:s})=>c(t)(n,r)?i.jsx(i.Fragment,{children:s}):null,v=({accessWith:t,requireAll:n,baseUrl:r,unAuthorizedPath:s,children:e})=>c(r)(t,n)?i.jsx(i.Fragment,{children:e}):i.jsx(f.Navigate,{to:s,replace:!0});exports.AuthProvider=o.AuthProvider;exports.TranslationProvider=o.TranslationProvider;exports.search=o.search;exports.useAuth=o.useAuth;exports.useCustomTranslation=o.useCustomTranslation;exports.HasPermission=j;exports.PermissionRoute=v;exports.getAxiosInstance=q;exports.getUseHasPermission=c;exports.useGetPermission=R;
|
package/dist/share/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { z as f, t as l, p as E, E as R } from "../index.module-
|
|
2
|
-
import { A as H, T as L, m as N, F as O, u as b } from "../index.module-
|
|
1
|
+
import { z as f, t as l, p as E, E as R } from "../index.module-97c322f5.js";
|
|
2
|
+
import { A as H, T as L, m as N, F as O, u as b } from "../index.module-97c322f5.js";
|
|
3
3
|
import P from "axios";
|
|
4
4
|
import { jsx as a, Fragment as g } from "react/jsx-runtime";
|
|
5
5
|
import { useState as y, useEffect as v } from "react";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export type ColorsType = {
|
|
2
|
+
primary100?: string;
|
|
3
|
+
primary200?: string;
|
|
4
|
+
primary300?: string;
|
|
5
|
+
primary400?: string;
|
|
6
|
+
primary500?: string;
|
|
7
|
+
secondary?: string;
|
|
8
|
+
secondaryDark?: string;
|
|
9
|
+
textPrimary?: string;
|
|
10
|
+
white?: string;
|
|
11
|
+
grey100?: string;
|
|
12
|
+
grey200?: string;
|
|
13
|
+
grey300?: string;
|
|
14
|
+
grey400?: string;
|
|
15
|
+
grey500?: string;
|
|
16
|
+
grey600?: string;
|
|
17
|
+
success?: string;
|
|
18
|
+
successLight?: string;
|
|
19
|
+
warning?: string;
|
|
20
|
+
warningLight?: string;
|
|
21
|
+
danger?: string;
|
|
22
|
+
dangerLight?: string;
|
|
23
|
+
dangerDark?: string;
|
|
24
|
+
linkPrimary?: string;
|
|
25
|
+
linkLight?: string;
|
|
26
|
+
appBarColor?: string;
|
|
27
|
+
appBarBgColor?: string;
|
|
28
|
+
headerTextColor?: string;
|
|
29
|
+
headerBgColor?: string;
|
|
30
|
+
buttonText?: string;
|
|
31
|
+
buttonHover?: string;
|
|
32
|
+
};
|
|
33
|
+
export declare const color: ColorsType;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ColorsType } from './Colors';
|
|
2
|
+
declare module '@mui/material/Button' {
|
|
3
|
+
interface ButtonPropsVariantOverrides {
|
|
4
|
+
errorContained: true;
|
|
5
|
+
orangeContained: true;
|
|
6
|
+
errorOutlined: true;
|
|
7
|
+
cancelSmall: true;
|
|
8
|
+
outlinedGreen: true;
|
|
9
|
+
cancelOutlined: true;
|
|
10
|
+
primary: true;
|
|
11
|
+
confirm: true;
|
|
12
|
+
cancel: true;
|
|
13
|
+
outlinedPrimary: true;
|
|
14
|
+
outLinedDanger: true;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
type ThemeProps = {
|
|
18
|
+
colors?: ColorsType;
|
|
19
|
+
};
|
|
20
|
+
export declare const createCustomTheme: ({ colors }: ThemeProps) => import("@mui/material").Theme;
|
|
21
|
+
export {};
|
package/dist/theme/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("../Colors-51ce6654.cjs"),v=require("react/jsx-runtime"),m=require("@mui/material"),a=require("react");var h={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},g=a.createContext&&a.createContext(h),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("../Colors-51ce6654.cjs"),v=require("react/jsx-runtime"),m=require("@mui/material"),a=require("react"),O=e=>{const r=y({});return v.jsx(m.ThemeProvider,{theme:r,children:e.children})};var h={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},g=a.createContext&&a.createContext(h),M=["attr","size","title"];function P(e,r){if(e==null)return{};var t=C(e,r),i,o;if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(o=0;o<n.length;o++)i=n[o],!(r.indexOf(i)>=0)&&Object.prototype.propertyIsEnumerable.call(e,i)&&(t[i]=e[i])}return t}function C(e,r){if(e==null)return{};var t={},i=Object.keys(e),o,n;for(n=0;n<i.length;n++)o=i[n],!(r.indexOf(o)>=0)&&(t[o]=e[o]);return t}function d(){return d=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i])}return e},d.apply(this,arguments)}function s(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);r&&(i=i.filter(function(o){return Object.getOwnPropertyDescriptor(e,o).enumerable})),t.push.apply(t,i)}return t}function l(e){for(var r=1;r<arguments.length;r++){var t=arguments[r]!=null?arguments[r]:{};r%2?s(Object(t),!0).forEach(function(i){S(e,i,t[i])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):s(Object(t)).forEach(function(i){Object.defineProperty(e,i,Object.getOwnPropertyDescriptor(t,i))})}return e}function S(e,r,t){return r=w(r),r in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function w(e){var r=k(e,"string");return typeof r=="symbol"?r:String(r)}function k(e,r){if(typeof e!="object"||e===null)return e;var t=e[Symbol.toPrimitive];if(t!==void 0){var i=t.call(e,r||"default");if(typeof i!="object")return i;throw new TypeError("@@toPrimitive must return a primitive value.")}return(r==="string"?String:Number)(e)}function b(e){return e&&e.map((r,t)=>a.createElement(r.tag,l({key:t},r.attr),b(r.child)))}function f(e){return r=>a.createElement(z,d({attr:l({},e.attr)},r),b(e.child))}function z(e){var r=t=>{var{attr:i,size:o,title:n}=e,x=P(e,M),p=o||t.size||"1em",u;return t.className&&(u=t.className),e.className&&(u=(u?u+" ":"")+e.className),a.createElement("svg",d({stroke:"currentColor",fill:"currentColor",strokeWidth:"0"},t.attr,i,x,{className:u,style:l(l({color:e.color||t.color},t.style),e.style),height:p,width:p,xmlns:"http://www.w3.org/2000/svg"}),n&&a.createElement("title",null,n),e.children)};return g!==void 0?a.createElement(g.Consumer,null,t=>r(t)):r(h)}function j(e){return f({tag:"svg",attr:{viewBox:"0 0 1024 1024"},child:[{tag:"path",attr:{d:"M689 165.1L308.2 493.5c-10.9 9.4-10.9 27.5 0 37L689 858.9c14.2 12.2 35 1.2 35-18.5V183.6c0-19.7-20.8-30.7-35-18.5z"},child:[]}]})(e)}function T(e){return f({tag:"svg",attr:{viewBox:"0 0 1024 1024"},child:[{tag:"path",attr:{d:"M715.8 493.5L335 165.1c-14.2-12.2-35-1.2-35 18.5v656.8c0 19.7 20.8 30.7 35 18.5l380.8-328.4c10.9-9.4 10.9-27.6 0-37z"},child:[]}]})(e)}const y=({colors:e=c.color})=>m.createTheme({palette:{primary:{main:e.primary300},secondary:{main:e.secondary},warning:{main:e.warning},error:{main:e.danger}},typography:{fontFamily:"TT Firs Neue Trl",button:{textTransform:"none",fontSize:"0.875rem",fontWeight:400,boxShadow:"none"},body1:{fontSize:"0.875rem",fontWeight:400},body2:{fontSize:"0.75rem"},h6:{fontSize:"0.875rem",fontWeight:500},h5:{fontSize:"1rem",fontWeight:500},h4:{fontSize:"1.25rem",fontWeight:500},h3:{fontSize:"1.5rem",fontWeight:500},h2:{fontSize:"2rem",fontWeight:500},h1:{fontSize:"2.5rem",fontWeight:500},subtitle1:{fontSize:"0.75rem"},subtitle2:{fontSize:"0.625rem"}},components:{MuiIconButton:{styleOverrides:{root:{},sizeSmall:{}}},MuiButton:{styleOverrides:{root:{boxShadow:"none !important",padding:"8px 32px",borderWidth:1,borderRadius:3,fontWeight:400}},variants:[{props:{variant:"primary"},style:{backgroundColor:e.primary300,color:e.buttonText,"&:hover":{backgroundColor:e.primary500,color:e.white},"&.Mui-disabled":{backgroundColor:e.grey200}}},{props:{variant:"confirm"},style:{backgroundColor:e.danger,color:e.white,"&:hover":{backgroundColor:e.dangerDark},"&.Mui-disabled":{backgroundColor:e.grey200}}},{props:{variant:"cancel"},style:{backgroundColor:e.grey300,color:e.textPrimary,"&:hover":{backgroundColor:e.grey400}}},{props:{variant:"outlined"},style:{color:e.primary500,border:"1px solid",borderColor:e.primary400,"&:hover":{backgroundColor:"inherit"}}},{props:{variant:"outlinedPrimary"},style:{color:e.primary500,border:"1px solid",borderColor:e.primary400,"&:hover":{backgroundColor:"inherit"}}},{props:{variant:"outLinedDanger"},style:{color:e.danger,border:"1px solid",borderColor:e.danger,"&:hover":{backgroundColor:"inherit"}}}]},MuiAppBar:{styleOverrides:{root:{backgroundColor:e.appBarBgColor,color:e.appBarColor}}},MuiSelect:{defaultProps:{MenuProps:{PaperProps:{sx:{boxShadow:"none",border:1,borderStyle:"solid",borderColor:e.grey300,mt:"5px"}},MenuListProps:{sx:{padding:"5px","& .MuiMenuItem-root":{fontWeight:400,minHeight:0,borderRadius:"5px","&:hover":{backgroundColor:e.grey100},"&.Mui-selected":{backgroundColor:e.primary200}}}}}},styleOverrides:{select:{padding:"9.94px 5px 9.94px 15px"}}},MuiPaginationItem:{defaultProps:{components:{previous:j,next:T}},styleOverrides:{root:{"& svg":{width:"10px"},border:"none",fontSize:"14px",lineHeight:"1.5rem",borderRadius:"7px","&.Mui-selected":{backgroundColor:e.primary200},"&.MuiPaginationItem-previousNext":{backgroundColor:e.grey200}}}},MuiChip:{styleOverrides:{root:{borderRadius:"5px",fontSize:"10px",lineHeight:"12px",fontWeight:400,"& .MuiChip-label":{lineHeight:"normal"}},avatar:{width:"10px"},colorSuccess:{color:e.success,backgroundColor:e.successLight},colorWarning:{color:e.warning,backgroundColor:e.warningLight},colorError:{color:e.danger,backgroundColor:e.dangerLight},colorSecondary:{color:e.linkPrimary,backgroundColor:e.linkLight}}},MuiTab:{styleOverrides:{root:{background:e.grey200,borderTopLeftRadius:"8px",borderTopRightRadius:"8px",marginRight:"5px",minWidth:"200px",flexDirection:"row",alignContent:"center",gap:"8px",textTransform:"capitalize","& svg":{mb:"0 !important"},padding:0,height:"32px",minHeight:"auto",fontSize:"12px","& .chart-icon":{fill:e.grey600},"& .detail-icon":{stroke:e.grey600}}}},MuiDrawer:{defaultProps:{},styleOverrides:{root:{"&.MuiDrawer-paper":{overflowY:"unset"},"& .MuiDrawer-paper":{zIndex:9},"&.MuiPaper-root":{border:"none",background:e.grey100,pt:12,zIndex:9}}}},MuiTextField:{defaultProps:{InputProps:{sx:{"& .Mui-disabled":{background:e.grey200}}},InputLabelProps:{shrink:!0}},styleOverrides:{root:{backgroundColor:e.white,"& .MuiOutlinedInput-input":{padding:"0px 16px 0px 12px",fontWeight:400,height:40,fontSize:"14px",border:1,borderRadius:4,"&::placeholder":{color:e.grey600}},"& .MuiFormLabel-root":{color:e.textPrimary},"& .MuiFormLabel-asterisk":{color:e.danger}}}},MuiFormGroup:{styleOverrides:{root:{}}},MuiFormHelperText:{defaultProps:{sx:{fontSize:12}},styleOverrides:{}},MuiAutocomplete:{defaultProps:{sx:{"& .MuiPaper-root":{padding:"5px"}}},styleOverrides:{root:{"& .MuiSvgIcon-root":{width:"20px",height:"20px"},"& .MuiAutocomplete-tag":{margin:0},"& .MuiButtonBase-root":{marginRight:"2px !important",height:"max-content",padding:"2px"},"& .MuiOutlinedInput-root":{padding:"7.45px 55px 7.45px 10px !important"},"& svg":{},"& #checkboxes-tags-demo":{padding:"6px 4px"},"& .MuiAutocomplete-endAdornment":{top:"calc(50% - 12px)"}}}},MuiTableHead:{styleOverrides:{root:{"& th":{fontSize:"14px",padding:"8px 16px"}}}},MuiTableBody:{styleOverrides:{root:{"& th,td":{fontSize:"14px",padding:"8px 16px",height:"45px"},"& .MuiTableCell-root":{borderBottom:`1px solid ${e.grey300}`}}}},MuiRadio:{defaultProps:{sx:{"&.MuiButtonBase-root":{padding:"5px"}}},styleOverrides:{root:{"& .MuiSvgIcon-root":{fontSize:16},color:e.grey600,"&.Mui-checked":{color:e.success},"&.Mui-disabled":{color:e.grey600}}}},MuiTooltip:{defaultProps:{placement:"top",arrow:!0}}}});exports.color=c.color;exports.SaasThemeProvider=O;exports.createCustomTheme=y;
|
package/dist/theme/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
import { c as b } from "../Colors-4ad88021.js";
|
|
2
2
|
import { jsx as y } from "react/jsx-runtime";
|
|
3
|
-
import {
|
|
3
|
+
import { ThemeProvider as x, createTheme as v } from "@mui/material";
|
|
4
4
|
import a from "react";
|
|
5
|
+
const R = (e) => {
|
|
6
|
+
const r = T({});
|
|
7
|
+
return /* @__PURE__ */ y(x, { theme: r, children: e.children });
|
|
8
|
+
};
|
|
5
9
|
var c = {
|
|
6
10
|
color: void 0,
|
|
7
11
|
size: void 0,
|
|
@@ -117,7 +121,7 @@ function z(e) {
|
|
|
117
121
|
function j(e) {
|
|
118
122
|
return f({ tag: "svg", attr: { viewBox: "0 0 1024 1024" }, child: [{ tag: "path", attr: { d: "M715.8 493.5L335 165.1c-14.2-12.2-35-1.2-35 18.5v656.8c0 19.7 20.8 30.7 35 18.5l380.8-328.4c10.9-9.4 10.9-27.6 0-37z" }, child: [] }] })(e);
|
|
119
123
|
}
|
|
120
|
-
const T = ({ colors: e = b }) =>
|
|
124
|
+
const T = ({ colors: e = b }) => v({
|
|
121
125
|
palette: {
|
|
122
126
|
primary: {
|
|
123
127
|
main: e.primary300
|
|
@@ -566,10 +570,7 @@ const T = ({ colors: e = b }) => x({
|
|
|
566
570
|
}
|
|
567
571
|
}
|
|
568
572
|
}
|
|
569
|
-
})
|
|
570
|
-
const r = T({});
|
|
571
|
-
return /* @__PURE__ */ y(v, { theme: r, children: e.children });
|
|
572
|
-
};
|
|
573
|
+
});
|
|
573
574
|
export {
|
|
574
575
|
R as SaasThemeProvider,
|
|
575
576
|
b as color,
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"errorMessage": {
|
|
3
|
+
"400": "Schlechte Anfrage - Die Anfrage kann aufgrund einer schlechten Syntax nicht erfüllt werden.",
|
|
4
|
+
"401": "Die Anfrage erfordert eine Benutzerauthentifizierung.",
|
|
5
|
+
"403": "Der Benutzer hat keine Berechtigung.",
|
|
6
|
+
"404": "Element nicht gefunden",
|
|
7
|
+
"500": "Server hat einen Fehler erhalten, bitte um Hilfe kontaktieren",
|
|
8
|
+
"502": "Server hat ein ungültiges Gateway erhalten, bitte um Hilfe kontaktieren",
|
|
9
|
+
"503": "Server ist nicht verfügbar, bitte um Hilfe kontaktieren",
|
|
10
|
+
"504": "Server-Zeitüberschreitung, bitte um Hilfe kontaktieren"
|
|
11
|
+
},
|
|
12
|
+
"components": {
|
|
13
|
+
"unauthorizedPage": {
|
|
14
|
+
"title": "Zugriff verweigert: Keine Zugriffsberechtigung",
|
|
15
|
+
"description1": "Wir bedauern Ihnen mitteilen zu müssen, dass Sie nicht über die erforderlichen Berechtigungen verfügen, um auf diese Seite zuzugreifen.",
|
|
16
|
+
"description2": "Bitte kontaktieren Sie unseren Administrator für Unterstützung. Vielen Dank für Ihr Verständnis."
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"configurations": {
|
|
20
|
+
"saasAdmin": {
|
|
21
|
+
"servicePackage": {
|
|
22
|
+
"errorMessage": {
|
|
23
|
+
"packageNotFound": "Paket nicht gefunden.",
|
|
24
|
+
"languageInvalid": "Das Feld Sprache ist ungültig.",
|
|
25
|
+
"packageNameExists": "Der Paketname existiert bereits.",
|
|
26
|
+
"serviceNotFound": "Dienst nicht gefunden.",
|
|
27
|
+
"serviceNotBelongToPackage": "Dienst nicht gefunden oder gehört nicht zum richtigen Paket",
|
|
28
|
+
"serviceNotBelongToServiceParent": "Dienst nicht gefunden oder gehört nicht zum richtigen Dienst-Elternteil",
|
|
29
|
+
"canNotGetServiceListPleaseTryAgain": "Dienstliste kann derzeit nicht abgerufen werden, bitte versuchen Sie es erneut"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"tenantManagement": {
|
|
33
|
+
"errorMessage": {
|
|
34
|
+
"tenantNotFound": "Mieter nicht gefunden.",
|
|
35
|
+
"countryInvalid": "Das Feld Land ist ungültig.",
|
|
36
|
+
"createTenantFailed": "Mietererstellung fehlgeschlagen. Bitte versuchen Sie es erneut.",
|
|
37
|
+
"isTenantMailExist": "Die E-Mail existiert bereits."
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"brandManagement": {
|
|
41
|
+
"errorMessage": {
|
|
42
|
+
"firstNameInvalid": "Das Feld Vorname ist ungültig. Muss eine Länge von 3 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
43
|
+
"createdAtInvalid": "Das Feld Erstellt am ist ungültig.",
|
|
44
|
+
"brandNotFound": "Marke nicht gefunden.",
|
|
45
|
+
"lastNameInvalid": "Das Feld Nachname ist ungültig. Muss eine Länge von 3 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
46
|
+
"idInvalid": "Das Feld ID ist ungültig. Muss im UUID-v4-Format sein.",
|
|
47
|
+
"updatedAtInvalid": "Das Feld Erstellt am ist ungültig. Muss im Datumsformat sein.",
|
|
48
|
+
"countryInvalid": "Das Feld Land ist ungültig. Bitte wählen Sie ein von uns unterstütztes Land aus.",
|
|
49
|
+
"termTypeInvalid": "Das Feld TermType ist ungültig. Bitte wählen Sie einen von uns unterstützten TermType aus.",
|
|
50
|
+
"baseCostTypeInvalid": "Das Feld BaseCostType ist ungültig. Bitte wählen Sie einen von uns unterstützten BaseCostType aus.",
|
|
51
|
+
"brandStatusesInvalid": "BrandStatuses ist ungültig. Bitte wählen Sie einen von uns unterstützten BrandStatuses aus.",
|
|
52
|
+
"informationPlanIsRequired": "Informationsplan ist erforderlich.",
|
|
53
|
+
"settingStatusesInvalid": "SettingStatuses ist ungültig. Bitte wählen Sie einen von uns unterstützten BaseCostType aus.",
|
|
54
|
+
"languagesInvalid": "Sprachen ist ungültig. Bitte wählen Sie eine von uns unterstützte Sprache aus.",
|
|
55
|
+
"currencyInvalid": "Währung ist ungültig. Bitte wählen Sie eine von uns unterstützte Währung aus.",
|
|
56
|
+
"distanceMetricInvalid": "Entfernungsmetrik ist ungültig. Bitte wählen Sie eine von uns unterstützte Entfernungsmetrik aus.",
|
|
57
|
+
"settingNotFound": "Einstellung nicht gefunden.",
|
|
58
|
+
"subscriptionNotFound": "Abonnement nicht gefunden.",
|
|
59
|
+
"subscriptionNameExists": "Der Abonnementname existiert bereits.",
|
|
60
|
+
"subscriptionServiceNotFound": "Abonnementdienst nicht gefunden.",
|
|
61
|
+
"subscriptionServiceNotBelongToPackage": "Abonnementdienst nicht gefunden oder gehört nicht zum richtigen Paket",
|
|
62
|
+
"subscriptionServiceNotBelongTosubscriptionServiceParent": "Abonnementdienst nicht gefunden oder gehört nicht zum richtigen Abonnementdienst-Elternteil",
|
|
63
|
+
"canNotGetsubscriptionServiceListPleaseTryAgain": "Abonnementdienstliste kann derzeit nicht abgerufen werden, bitte versuchen Sie es erneut"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"tenantAdmin": {
|
|
68
|
+
"brandManagement": {
|
|
69
|
+
"errorMessage": {
|
|
70
|
+
"firstNameInvalid": "Das Feld Vorname ist ungültig. Muss eine Länge von 3 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
71
|
+
"createdAtInvalid": "Das Feld Erstellt am ist ungültig.",
|
|
72
|
+
"brandNotFound": "Marke nicht gefunden.",
|
|
73
|
+
"lastNameInvalid": "Das Feld Nachname ist ungültig. Muss eine Länge von 3 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
74
|
+
"idInvalid": "Das Feld ID ist ungültig. Muss im UUID-v4-Format sein.",
|
|
75
|
+
"updatedAtInvalid": "Das Feld Erstellt am ist ungültig. Muss im Datumsformat sein.",
|
|
76
|
+
"countryInvalid": "Das Feld Land ist ungültig. Bitte wählen Sie ein von uns unterstütztes Land aus.",
|
|
77
|
+
"termTypeInvalid": "Das Feld TermType ist ungültig. Bitte wählen Sie einen von uns unterstützten TermType aus.",
|
|
78
|
+
"baseCostTypeInvalid": "Das Feld BaseCostType ist ungültig. Bitte wählen Sie einen von uns unterstützten BaseCostType aus.",
|
|
79
|
+
"brandStatusesInvalid": "BrandStatuses ist ungültig. Bitte wählen Sie einen von uns unterstützten BrandStatuses aus.",
|
|
80
|
+
"informationPlanIsRequired": "Informationsplan ist erforderlich.",
|
|
81
|
+
"settingStatusesInvalid": "SettingStatuses ist ungültig. Bitte wählen Sie einen von uns unterstützten BaseCostType aus.",
|
|
82
|
+
"languagesInvalid": "Sprachen ist ungültig. Bitte wählen Sie eine von uns unterstützte Sprache aus.",
|
|
83
|
+
"currencyInvalid": "Währung ist ungültig. Bitte wählen Sie eine von uns unterstützte Währung aus.",
|
|
84
|
+
"distanceMetricInvalid": "Entfernungsmetrik ist ungültig. Bitte wählen Sie eine von uns unterstützte Entfernungsmetrik aus.",
|
|
85
|
+
"settingNotFound": "Einstellung nicht gefunden.",
|
|
86
|
+
"subscriptionNotFound": "Abonnement nicht gefunden.",
|
|
87
|
+
"subscriptionNameExists": "Der Abonnementname existiert bereits.",
|
|
88
|
+
"subscriptionServiceNotFound": "Abonnementdienst nicht gefunden.",
|
|
89
|
+
"subscriptionServiceNotBelongToPackage": "Abonnementdienst nicht gefunden oder gehört nicht zum richtigen Paket",
|
|
90
|
+
"subscriptionServiceNotBelongTosubscriptionServiceParent": "Abonnementdienst nicht gefunden oder gehört nicht zum richtigen Abonnementdienst-Elternteil",
|
|
91
|
+
"canNotGetsubscriptionServiceListPleaseTryAgain": "Abonnementdienstliste kann derzeit nicht abgerufen werden, bitte versuchen Sie es erneut"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"brandAdmin": {
|
|
96
|
+
"errorMessage": {
|
|
97
|
+
"firstNameInvalid": "Das Feld Vorname ist ungültig. Muss eine Länge von 3 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
98
|
+
"createdAtInvalid": "Das Feld Erstellt am ist ungültig.",
|
|
99
|
+
"brandNotFound": "Marke nicht gefunden.",
|
|
100
|
+
"lastNameInvalid": "Das Feld Nachname ist ungültig. Muss eine Länge von 3 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
101
|
+
"idInvalid": "Das Feld ID ist ungültig. Muss im UUID-v4-Format sein.",
|
|
102
|
+
"updatedAtInvalid": "Das Feld Erstellt am ist ungültig. Muss im Datumsformat sein.",
|
|
103
|
+
"countryInvalid": "Das Feld Land ist ungültig. Bitte wählen Sie ein von uns unterstütztes Land aus.",
|
|
104
|
+
"termTypeInvalid": "Das Feld TermType ist ungültig. Bitte wählen Sie einen von uns unterstützten TermType aus.",
|
|
105
|
+
"baseCostTypeInvalid": "Das Feld BaseCostType ist ungültig. Bitte wählen Sie einen von uns unterstützten BaseCostType aus.",
|
|
106
|
+
"brandStatusesInvalid": "BrandStatuses ist ungültig. Bitte wählen Sie einen von uns unterstützten BrandStatuses aus.",
|
|
107
|
+
"informationPlanIsRequired": "Informationsplan ist erforderlich.",
|
|
108
|
+
"settingStatusesInvalid": "SettingStatuses ist ungültig. Bitte wählen Sie einen von uns unterstützten BaseCostType aus.",
|
|
109
|
+
"languagesInvalid": "Sprachen ist ungültig. Bitte wählen Sie eine von uns unterstützte Sprache aus.",
|
|
110
|
+
"currencyInvalid": "Währung ist ungültig. Bitte wählen Sie eine von uns unterstützte Währung aus.",
|
|
111
|
+
"distanceMetricInvalid": "Entfernungsmetrik ist ungültig. Bitte wählen Sie eine von uns unterstützte Entfernungsmetrik aus.",
|
|
112
|
+
"settingNotFound": "Einstellung nicht gefunden.",
|
|
113
|
+
"subscriptionNotFound": "Abonnement nicht gefunden.",
|
|
114
|
+
"subscriptionNameExists": "Der Abonnementname existiert bereits.",
|
|
115
|
+
"subscriptionServiceNotFound": "Abonnementdienst nicht gefunden.",
|
|
116
|
+
"subscriptionServiceNotBelongToPackage": "Abonnementdienst nicht gefunden oder gehört nicht zum richtigen Paket",
|
|
117
|
+
"subscriptionServiceNotBelongTosubscriptionServiceParent": "Abonnementdienst nicht gefunden oder gehört nicht zum richtigen Abonnementdienst-Elternteil",
|
|
118
|
+
"canNotGetsubscriptionServiceListPleaseTryAgain": "Abonnementdienstliste kann derzeit nicht abgerufen werden, bitte versuchen Sie es erneut"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"iam": {
|
|
122
|
+
"usersManagement": {
|
|
123
|
+
"errorMessage": {
|
|
124
|
+
"firstNameInvalid": "Feld Vorname ist ungültig. Muss eine Länge von 1 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
125
|
+
"createdAtInvalid": "Feld Erstellt am ist ungültig.",
|
|
126
|
+
"notFound": "Benutzer nicht gefunden.",
|
|
127
|
+
"lastNameInvalid": "Feld Nachname ist ungültig. Muss eine Länge von 1 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
128
|
+
"updatedAtInvalid": "Feld Erstellt am ist ungültig. Muss im Datumsformat sein.",
|
|
129
|
+
"emailInvalid": "Feld E-Mail ist ungültig. Muss im E-Mail-Format sein.",
|
|
130
|
+
"passwordInvalid": "Feld Passwort ist ungültig. Muss 8 Zeichen lang sein, 1 Großbuchstaben & 1 Kleinbuchstaben enthalten, 1 Zahl und 1 Sonderzeichen.",
|
|
131
|
+
"countryCodeInvalid": "Feld Ländercode ist ungültig.",
|
|
132
|
+
"languageCodeInvalid": "Feld Sprachcode ist ungültig.",
|
|
133
|
+
"deletedAtInvalid": "Feld Gelöscht am ist ungültig. Muss im Datumsformat sein.",
|
|
134
|
+
"isActiveInvalid": "Feld IstAktiv ist ungültig.",
|
|
135
|
+
"isSuspendInvalid": "Feld IstGesperrt ist ungültig.",
|
|
136
|
+
"userExist": "Der Benutzer existiert bereits.",
|
|
137
|
+
"authProviderInvalid": "Feld Authentifizierungsanbieter ist ungültig.",
|
|
138
|
+
"isEnableInvalid": "Feld IstAktiviert ist ungültig.",
|
|
139
|
+
"sendEmailFailed": "E-Mail senden fehlgeschlagen.",
|
|
140
|
+
"emailRequired": "Feld E-Mail ist erforderlich",
|
|
141
|
+
"firstNameRequired": "Feld Vorname ist erforderlich",
|
|
142
|
+
"lastNameRequired": "Feld Nachname ist erforderlich",
|
|
143
|
+
"countryCodeRequired": "Feld Ländercode ist erforderlich",
|
|
144
|
+
"userStatusInvalid": "Feld Status ungültig. Bitte wählen Sie einen von uns unterstützten Status.",
|
|
145
|
+
"loginAtInvalid": "Feld Letzte Anmeldung ist ungültig.",
|
|
146
|
+
"avatarFileInvalid": "Avatar-Dateiformat wird nicht unterstützt. Muss png, jpeg, jpg sein und kleiner als 1 MB.",
|
|
147
|
+
"permissionGroupNotFound": "Berechtigungsgruppe nicht gefunden.",
|
|
148
|
+
"organizeInvalid": "Feld Organisation ist erforderlich. Muss ein Objekt sein.",
|
|
149
|
+
"relatedIdInvalid": "Feld Bezug-ID der Organisation ist ungültig. Muss eine Zahl sein.",
|
|
150
|
+
"userOrganizeNotFound": "Benutzerorganisation nicht gefunden.",
|
|
151
|
+
"isSystemInvalid": "Feld IstSystem ist ungültig.",
|
|
152
|
+
"organizeUserInvalid": "Feld Benutzer ist ungültig. Muss ein Array sein.",
|
|
153
|
+
"organizeUserDuplicate": "Feld Benutzer enthält duplizierte E-Mail-Adressen."
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"permissionGroup": {
|
|
157
|
+
"errorMessage": {
|
|
158
|
+
"actionNotFound": "Aktion nicht gefunden.",
|
|
159
|
+
"permissionGroupNotFound": "Berechtigungsgruppe nicht gefunden.",
|
|
160
|
+
"permissionGroupIsExisted": "Berechtigungsgruppenname existiert bereits",
|
|
161
|
+
"permissionGroupOrganizeNotFound": "Organisation der Berechtigungsgruppe nicht gefunden.",
|
|
162
|
+
"relatedIdInvalid": "Feld Bezug-ID der Organisation ist ungültig. Muss eine Zahl sein.",
|
|
163
|
+
"cannotRemoveFullPermissionGroup": "Sie können diese Berechtigungsgruppe nicht entfernen.",
|
|
164
|
+
"cannotEditFullPermissionGroup": "Sie können diese Berechtigungsgruppe nicht aktualisieren."
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"organize": {
|
|
168
|
+
"errorMessage": {
|
|
169
|
+
"relatedIdInvalid": "Feld Bezug-ID ist ungültig. Muss eine Zahl sein.",
|
|
170
|
+
"nameInvalid": "Feld Name der Daten ist ungültig. Muss eine Länge von 1 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
171
|
+
"dataInvalid": "Feld Daten ist ungültig. Muss ein Objekt sein.",
|
|
172
|
+
"organizeExist": "Die Organisation existiert bereits.",
|
|
173
|
+
"callbackUrlInvalid": "Feld Callback-URL der Daten ist ungültig. Muss eine Zeichenkette sein."
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"notificationAdmin": {
|
|
178
|
+
"notification": {
|
|
179
|
+
"errorMessage": {
|
|
180
|
+
"notificationFilterType": "Feld notificationFilterType ist ungültig. Muss einer der Werte 'gelesen', 'ungelesen' oder 'alle' sein.",
|
|
181
|
+
"userIdInvalid": "Feld userId ist ungültig. Muss eine Zahl sein.",
|
|
182
|
+
"filterInvalid": "Feld filter ist ungültig. Muss ein Objekt sein.",
|
|
183
|
+
"isReadInvalid": "Feld isRead ist ungültig. Muss ein boolescher Wert sein.",
|
|
184
|
+
"notificationIdInvalid": "Feld id ist ungültig. Muss eine Zahl sein.",
|
|
185
|
+
"userDeviceTokenInvalid": "Feld deviceToken ist ungültig. Muss eine Zeichenfolge sein."
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"notificationConfig": {
|
|
189
|
+
"errorMessage": {
|
|
190
|
+
"notificationNotFound": "Benachrichtigungskonfiguration nicht gefunden.",
|
|
191
|
+
"notificationIsExisted": "Benachrichtigungsregel existiert bereits.",
|
|
192
|
+
"actionNotFound": "Aktion nicht gefunden.",
|
|
193
|
+
"userNotFound": "Benutzer nicht gefunden.",
|
|
194
|
+
"firstNameInvalid": "Feld Vorname ist ungültig. Muss eine Länge von 1 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
195
|
+
"createdAtInvalid": "Feld createdAt ist ungültig.",
|
|
196
|
+
"lastNameInvalid": "Feld Nachname ist ungültig. Muss eine Länge von 1 bis 40 Zeichen haben und keine Sonderzeichen enthalten.",
|
|
197
|
+
"updatedAtInvalid": "Feld createdAt ist ungültig. Muss im Datumsformat sein.",
|
|
198
|
+
"emailInvalid": "Feld E-Mail ist ungültig. Muss im E-Mail-Format sein.",
|
|
199
|
+
"passwordInvalid": "Feld Passwort ist ungültig. Muss 8 Zeichen lang sein, einen Großbuchstaben, einen Kleinbuchstaben, eine Zahl und ein Sonderzeichen enthalten.",
|
|
200
|
+
"countryCodeInvalid": "Feld Ländercode ist ungültig.",
|
|
201
|
+
"languageCodeInvalid": "Feld Sprachcode ist ungültig.",
|
|
202
|
+
"deletedAtInvalid": "Feld deletedAt ist ungültig. Muss im Datumsformat sein.",
|
|
203
|
+
"isActiveInvalid": "Feld isActive ist ungültig.",
|
|
204
|
+
"isSuspendInvalid": "Feld isSuspend ist ungültig.",
|
|
205
|
+
"userExist": "Der Benutzer existiert bereits.",
|
|
206
|
+
"authProviderInvalid": "Feld authProvider ist ungültig.",
|
|
207
|
+
"isEnableInvalid": "Feld isEnable ist ungültig.",
|
|
208
|
+
"sendEmailFailed": "E-Mail-Versand fehlgeschlagen.",
|
|
209
|
+
"emailRequired": "Feld E-Mail ist erforderlich",
|
|
210
|
+
"firstNameRequired": "Feld Vorname ist erforderlich",
|
|
211
|
+
"lastNameRequired": "Feld Nachname ist erforderlich",
|
|
212
|
+
"countryCodeRequired": "Feld Ländercode ist erforderlich",
|
|
213
|
+
"userStatusInvalid": "Feld Status ist ungültig. Bitte wählen Sie einen unterstützten Status aus.",
|
|
214
|
+
"loginAtInvalid": "Feld letzter Login ist ungültig.",
|
|
215
|
+
"avatarFileInvalid": "Avatar-Dateiformat wird nicht unterstützt. Muss png, jpeg, jpg sein und kleiner als 1 MB sein.",
|
|
216
|
+
"permissionGroupNotFound": "Berechtigungsgruppe nicht gefunden.",
|
|
217
|
+
"organizeInvalid": "Feld Organisieren ist erforderlich. Muss ein Objekt sein.",
|
|
218
|
+
"relatedIdInvalid": "Feld relatedId von Organisieren. Muss eine Zahl sein.",
|
|
219
|
+
"userOrganizeNotFound": "Benutzerorganisation nicht gefunden.",
|
|
220
|
+
"isSystemInvalid": "Feld isSystem ist ungültig.",
|
|
221
|
+
"organizeUserInvalid": "Feld Benutzer ist ungültig. Muss ein Array sein.",
|
|
222
|
+
"organizeUserDuplicate": "Feld Benutzer enthält doppelte E-Mails."
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
;
|
|
229
|
+
|
|
230
|
+
export default _default;
|