@redneckz/wildless-cms-uni-blocks 0.14.542 → 0.14.544
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/bundle/blocks.schema.json +1 -1
- package/bundle/bundle.umd.js +2 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/TariffsTable/EmbeddableCellData.js +1 -1
- package/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
- package/lib/components/TariffsTable/EmbeddableCellData.js +1 -1
- package/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +2 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/TariffsTable/EmbeddableCellData.js +1 -1
- package/mobile/dist/components/TariffsTable/EmbeddableCellData.js.map +1 -1
- package/mobile/lib/components/TariffsTable/EmbeddableCellData.js +1 -1
- package/mobile/lib/components/TariffsTable/EmbeddableCellData.js.map +1 -1
- package/mobile/src/components/ApplicationForm/ApplicationForm.example.json +10 -3
- package/mobile/src/components/TariffsTable/EmbeddableCellData.tsx +1 -0
- package/package.json +1 -1
- package/src/components/ApplicationForm/ApplicationForm.example.json +10 -3
- package/src/components/TariffsTable/EmbeddableCellData.tsx +1 -0
package/bundle/bundle.umd.js
CHANGED
|
@@ -6108,7 +6108,7 @@
|
|
|
6108
6108
|
const renderLabelDescriptionCellData = ({ label, description }) => (jsxs("div", { className: "space-y-2xs", children: [label ? (jsx("div", { children: jsx(Text, { size: "text-h6", children: label }) })) : null, description ? (jsx("div", { className: "lg:text-l font-light text-xs", children: jsx(Text, { color: "text-secondary-text", children: description }) })) : null] }));
|
|
6109
6109
|
const renderImgCellData = ({ image }) => (image?.src ? jsx(Img, { image: image }) : null);
|
|
6110
6110
|
const renderRichTextCellData = ({ __html, isDotted = true }) => (jsx("div", { className: "flex flex-col justify-between items-start text-h6", children: jsx(RichText, { __html: __html, isDotted: isDotted, itemSize: "list-m" }) }));
|
|
6111
|
-
const renderInnerTableCellData = ({ isVisible, displayTable, tableSource, pdfUrl, isOpen, }) => isVisible ? (jsx(TableInnerButton, { isOpen: isOpen, onClick: () => {
|
|
6111
|
+
const renderInnerTableCellData = ({ isVisible, displayTable, tableSource, pdfUrl, isOpen, }) => isVisible ? (jsx(TableInnerButton, { className: "w-fit", isOpen: isOpen, onClick: () => {
|
|
6112
6112
|
displayTable({ tableSource, pdfUrl });
|
|
6113
6113
|
} })) : null;
|
|
6114
6114
|
const EmbeddableCellData = {
|
|
@@ -6513,7 +6513,7 @@
|
|
|
6513
6513
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6514
6514
|
});
|
|
6515
6515
|
|
|
6516
|
-
const packageVersion = "0.14.
|
|
6516
|
+
const packageVersion = "0.14.543";
|
|
6517
6517
|
|
|
6518
6518
|
exports.Blocks = Blocks;
|
|
6519
6519
|
exports.ContentPage = ContentPage;
|