@pronto-tools-and-more/components 12.6.0 → 12.8.0
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/main.js
CHANGED
@@ -1003,6 +1003,24 @@ var HighlightedEPaper = ({ ePaperId }) => {
|
|
1003
1003
|
return /* @__PURE__ */ React.createElement("div", { className: "HighlightedEPaper" }, /* @__PURE__ */ React.createElement(JsonComponent, { json }));
|
1004
1004
|
};
|
1005
1005
|
|
1006
|
+
// src/parts/Language/Language.ts
|
1007
|
+
var Language = {
|
1008
|
+
De: "de",
|
1009
|
+
En: "en",
|
1010
|
+
Fr: "fr",
|
1011
|
+
Es: "es",
|
1012
|
+
It: "it"
|
1013
|
+
};
|
1014
|
+
|
1015
|
+
// src/parts/LanguageMapping/LanguageMapping.ts
|
1016
|
+
var LanguageMapping = {
|
1017
|
+
de: "de-de",
|
1018
|
+
en: "en-gb",
|
1019
|
+
fr: "fr-fr",
|
1020
|
+
es: "es-es",
|
1021
|
+
it: "it-it"
|
1022
|
+
};
|
1023
|
+
|
1006
1024
|
// src/parts/LanguageRegistry/LanguageRegistry.ts
|
1007
1025
|
var createLanguageRegistry = () => {
|
1008
1026
|
const languages = /* @__PURE__ */ Object.create(null);
|
@@ -1677,6 +1695,8 @@ export {
|
|
1677
1695
|
Heading,
|
1678
1696
|
HighlightedEPaper,
|
1679
1697
|
JsonComponent,
|
1698
|
+
Language,
|
1699
|
+
LanguageMapping,
|
1680
1700
|
Link,
|
1681
1701
|
Login,
|
1682
1702
|
MaskIcon,
|
@@ -43,6 +43,8 @@ export * from "../ISearchResultComponent/ISearchResultComponent.tsx";
|
|
43
43
|
export * from "../ISocialLink/ISocialLink.ts";
|
44
44
|
export * from "../ITagItem/ITagItem.ts";
|
45
45
|
export * from "../JsonComponent/JsonComponent.tsx";
|
46
|
+
export * from "../Language/Language.ts";
|
47
|
+
export * from "../LanguageMapping/LanguageMapping.ts";
|
46
48
|
export * from "../LanguageRegistry/LanguageRegistry.ts";
|
47
49
|
export * from "../Link/Link.tsx";
|
48
50
|
export * from "../Login/Login.tsx";
|