@bigbinary/neeto-site-blocks 1.10.22 → 1.10.23
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.cjs.js +10 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -12497,12 +12497,16 @@ var FeatureWithBulletList = function FeatureWithBulletList(_ref) {
|
|
|
12497
12497
|
enableAnimation = properties.enableAnimation,
|
|
12498
12498
|
bulletList = properties.bulletList,
|
|
12499
12499
|
src = properties.backgroundImage.src;
|
|
12500
|
-
var baseClasses = "grid grid-cols-12 items-center";
|
|
12500
|
+
var baseClasses = "grid grid-cols-12 items-center gap-5";
|
|
12501
12501
|
var BulletList = withConditionalRender(function () {
|
|
12502
|
-
return /*#__PURE__*/React__default["default"].createElement(
|
|
12503
|
-
|
|
12502
|
+
return /*#__PURE__*/React__default["default"].createElement(StyledWrapper, {
|
|
12503
|
+
as: "div",
|
|
12504
|
+
className: "col-span-12 lg:col-span-6 lg:col-start-7",
|
|
12505
|
+
design: {
|
|
12506
|
+
textAlign: design.bulletList.textAlign
|
|
12507
|
+
}
|
|
12504
12508
|
}, /*#__PURE__*/React__default["default"].createElement("ul", {
|
|
12505
|
-
className: "list-disc"
|
|
12509
|
+
className: "inline-block list-disc pl-5 text-left lg:pl-10"
|
|
12506
12510
|
}, bulletList.map(function (_ref2, index) {
|
|
12507
12511
|
var featureTitle = _ref2.title;
|
|
12508
12512
|
return /*#__PURE__*/React__default["default"].createElement(Typography$1, _extends__default["default"]({
|
|
@@ -12510,7 +12514,7 @@ var FeatureWithBulletList = function FeatureWithBulletList(_ref) {
|
|
|
12510
12514
|
component: "li",
|
|
12511
12515
|
id: "feature-with-bullet-list-bullet-".concat(index, "-title"),
|
|
12512
12516
|
key: getUniqueKey(featureTitle, index),
|
|
12513
|
-
style: design.bulletList
|
|
12517
|
+
style: ramda.omit(["textAlign"], design.bulletList)
|
|
12514
12518
|
}, _objectSpread$c(_objectSpread$c({}, otherProps), {}, {
|
|
12515
12519
|
index: index
|
|
12516
12520
|
})), featureTitle);
|
|
@@ -12528,7 +12532,7 @@ var FeatureWithBulletList = function FeatureWithBulletList(_ref) {
|
|
|
12528
12532
|
design: design.body,
|
|
12529
12533
|
nestedClassName: baseClasses
|
|
12530
12534
|
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
12531
|
-
className: "col-span-12
|
|
12535
|
+
className: "col-span-12 lg:col-span-5"
|
|
12532
12536
|
}, /*#__PURE__*/React__default["default"].createElement(Typography$1, _extends__default["default"]({
|
|
12533
12537
|
isTitle: true,
|
|
12534
12538
|
component: "h3",
|