cmspageblocks 1.0.63 → 1.0.64
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/build/index.js +3 -0
- package/package.json +1 -1
- package/src/components/Block.js +2 -0
package/build/index.js
CHANGED
|
@@ -51092,6 +51092,9 @@ function Block(_ref) {
|
|
|
51092
51092
|
if (!options || options == null) {
|
|
51093
51093
|
return /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null);
|
|
51094
51094
|
}
|
|
51095
|
+
console.debug({
|
|
51096
|
+
pageBlock: pageBlock
|
|
51097
|
+
});
|
|
51095
51098
|
switch (pageBlock.type) {
|
|
51096
51099
|
case 'Pages::BukazuPortalBlock':
|
|
51097
51100
|
return /*#__PURE__*/React__default["default"].createElement(Wrapper, {
|
package/package.json
CHANGED
package/src/components/Block.js
CHANGED
|
@@ -25,6 +25,8 @@ function Block({pageBlock, houses, locale }) {
|
|
|
25
25
|
return <></>;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
console.debug({pageBlock});
|
|
29
|
+
|
|
28
30
|
switch(pageBlock.type) {
|
|
29
31
|
case 'Pages::BukazuPortalBlock': return <Wrapper options={options} type="bukazu_portal" key={pageBlock.id}><Portal options={options} /></Wrapper>
|
|
30
32
|
case 'Pages::ButtonBlock': return <Wrapper options={options} type="button" key={pageBlock.id}><Button options={options} /></Wrapper>
|