@pronto-tools-and-more/components 12.38.0 → 12.40.0
Sign up to get free protection for your applications and to get access to all the features.
package/dist/main.js
CHANGED
@@ -565,6 +565,11 @@ var dateHelper = (date, format, language = "de") => {
|
|
565
565
|
return `$functions.dateHelper(${date}).locale('${language}').format('${format}')`;
|
566
566
|
};
|
567
567
|
|
568
|
+
// src/parts/DebugBlock/DebugBlock.tsx
|
569
|
+
var DebugBlock = () => {
|
570
|
+
return /* @__PURE__ */ React.createElement("div", { className: "whatever" }, `$functions.blockData($context)`);
|
571
|
+
};
|
572
|
+
|
568
573
|
// src/parts/DossierList/DossierList.tsx
|
569
574
|
var unrender5 = (element, renderElement) => {
|
570
575
|
const { render, language, ...rest } = element;
|
@@ -1904,6 +1909,7 @@ export {
|
|
1904
1909
|
Container,
|
1905
1910
|
ContentBody,
|
1906
1911
|
ContentTitle,
|
1912
|
+
DebugBlock,
|
1907
1913
|
DossierList,
|
1908
1914
|
DossierSwiper,
|
1909
1915
|
EPaperArchive2,
|
@@ -10,6 +10,7 @@ export * from "../Container/Container.tsx";
|
|
10
10
|
export * from "../ContentBody/ContentBody.tsx";
|
11
11
|
export * from "../ContentTitle/ContentTitle.tsx";
|
12
12
|
export * from "../DateHelper/DateHelper.ts";
|
13
|
+
export * from "../DebugBlock/DebugBlock.tsx";
|
13
14
|
export * from "../DossierList/DossierList.tsx";
|
14
15
|
export * from "../DossierSwiper/DossierSwiper.tsx";
|
15
16
|
export * from "../EPaperArchiveItems/EPaperArchiveItems.tsx";
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const DebugBlock: () => import("react").JSX.Element;
|