@rudyzeinoun/email-builder 0.0.46 → 0.0.47
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/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -109,13 +109,13 @@ var ColumnsContainerPropsSchema_default = ColumnsContainerPropsSchema;
|
|
|
109
109
|
// src/blocks/ColumnsContainer/ColumnsContainerReader.tsx
|
|
110
110
|
var import_react = __toESM(require("react"));
|
|
111
111
|
var import_block_columns_container2 = require("@rudyzeinoun/block-columns-container");
|
|
112
|
-
function ColumnsContainerReader({ style, props, className, loopStart, loopEnd, responsiveDisplay, conditionStatement }) {
|
|
112
|
+
function ColumnsContainerReader({ style, props, className, loopStart, loopEnd, responsiveDisplay, conditionStatement, stacking }) {
|
|
113
113
|
const _a = props != null ? props : {}, { columns } = _a, restProps = __objRest(_a, ["columns"]);
|
|
114
114
|
let cols = void 0;
|
|
115
115
|
if (columns) {
|
|
116
116
|
cols = columns.map((col) => col.childrenIds.map((childId) => /* @__PURE__ */ import_react.default.createElement(ReaderBlock, { key: childId, id: childId })));
|
|
117
117
|
}
|
|
118
|
-
return /* @__PURE__ */ import_react.default.createElement(import_block_columns_container2.ColumnsContainer, { props: restProps, columns: cols, style, className, loopStart, loopEnd, responsiveDisplay, conditionStatement });
|
|
118
|
+
return /* @__PURE__ */ import_react.default.createElement(import_block_columns_container2.ColumnsContainer, { props: restProps, columns: cols, style, className, loopStart, loopEnd, responsiveDisplay, conditionStatement, stacking });
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
// src/blocks/Container/ContainerPropsSchema.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -76,13 +76,13 @@ var ColumnsContainerPropsSchema_default = ColumnsContainerPropsSchema;
|
|
|
76
76
|
// src/blocks/ColumnsContainer/ColumnsContainerReader.tsx
|
|
77
77
|
import React from "react";
|
|
78
78
|
import { ColumnsContainer as BaseColumnsContainer } from "@rudyzeinoun/block-columns-container";
|
|
79
|
-
function ColumnsContainerReader({ style, props, className, loopStart, loopEnd, responsiveDisplay, conditionStatement }) {
|
|
79
|
+
function ColumnsContainerReader({ style, props, className, loopStart, loopEnd, responsiveDisplay, conditionStatement, stacking }) {
|
|
80
80
|
const _a = props != null ? props : {}, { columns } = _a, restProps = __objRest(_a, ["columns"]);
|
|
81
81
|
let cols = void 0;
|
|
82
82
|
if (columns) {
|
|
83
83
|
cols = columns.map((col) => col.childrenIds.map((childId) => /* @__PURE__ */ React.createElement(ReaderBlock, { key: childId, id: childId })));
|
|
84
84
|
}
|
|
85
|
-
return /* @__PURE__ */ React.createElement(BaseColumnsContainer, { props: restProps, columns: cols, style, className, loopStart, loopEnd, responsiveDisplay, conditionStatement });
|
|
85
|
+
return /* @__PURE__ */ React.createElement(BaseColumnsContainer, { props: restProps, columns: cols, style, className, loopStart, loopEnd, responsiveDisplay, conditionStatement, stacking });
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
// src/blocks/Container/ContainerPropsSchema.tsx
|