@bigbinary/neeto-site-blocks 1.8.8 → 1.8.10
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 +8 -9
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +8 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39404,14 +39404,13 @@ var FaqWithHamburgerView = function FaqWithHamburgerView(_ref) {
|
|
|
39404
39404
|
id: id,
|
|
39405
39405
|
design: design.body,
|
|
39406
39406
|
nestedClassName: baseClasses
|
|
39407
|
-
}, /*#__PURE__*/React__default.createElement("div", {
|
|
39408
|
-
className: "col-span-12 sm:col-span-6 sm:col-start-4"
|
|
39409
39407
|
}, /*#__PURE__*/React__default.createElement(Typography$1, _extends$2({
|
|
39410
39408
|
isTitle: true,
|
|
39409
|
+
className: "col-span-full",
|
|
39411
39410
|
component: "h3",
|
|
39412
39411
|
id: "faq-with-accordion-title",
|
|
39413
39412
|
style: design.title
|
|
39414
|
-
}, otherProps), title)
|
|
39413
|
+
}, otherProps), title), /*#__PURE__*/React__default.createElement("div", {
|
|
39415
39414
|
className: columnsBaseClasses
|
|
39416
39415
|
}, faqs.map(function (_ref2, index) {
|
|
39417
39416
|
var question = _ref2.question,
|
|
@@ -39434,7 +39433,7 @@ var FAQItem = function FAQItem(_ref3) {
|
|
|
39434
39433
|
enableAnimation = _ref3.enableAnimation,
|
|
39435
39434
|
index = _ref3.index,
|
|
39436
39435
|
otherProps = _objectWithoutProperties(_ref3, _excluded2);
|
|
39437
|
-
var _useState = useState(
|
|
39436
|
+
var _useState = useState(true),
|
|
39438
39437
|
_useState2 = _slicedToArray(_useState, 2),
|
|
39439
39438
|
isOpen = _useState2[0],
|
|
39440
39439
|
setIsOpen = _useState2[1];
|
|
@@ -42547,7 +42546,7 @@ var HeaderWithButtons = function HeaderWithButtons(_ref) {
|
|
|
42547
42546
|
id: "header-with-buttons-".concat(index, "-link"),
|
|
42548
42547
|
isHighlighted: isLinkHighlighted(button.to, currentPath),
|
|
42549
42548
|
key: getUniqueKey(button.to, button.label, index),
|
|
42550
|
-
style:
|
|
42549
|
+
style: mergeRight(design.links, {
|
|
42551
42550
|
fontSize: "1.25em",
|
|
42552
42551
|
fontWeight: "500"
|
|
42553
42552
|
})
|
|
@@ -42651,9 +42650,9 @@ var HeaderWithDropdownLinks = function HeaderWithDropdownLinks(_ref) {
|
|
|
42651
42650
|
}, properties.links.map(function (link, index) {
|
|
42652
42651
|
return /*#__PURE__*/React__default.createElement(Dropdown, {
|
|
42653
42652
|
index: index,
|
|
42654
|
-
|
|
42653
|
+
dropdownLink: link,
|
|
42655
42654
|
key: getUniqueKey(link.label, link.to, index),
|
|
42656
|
-
design:
|
|
42655
|
+
design: mergeRight(design.links, {
|
|
42657
42656
|
fontSize: "1.25em",
|
|
42658
42657
|
fontWeight: "500"
|
|
42659
42658
|
})
|
|
@@ -42760,7 +42759,7 @@ var HeaderWithIcons = function HeaderWithIcons(_ref) {
|
|
|
42760
42759
|
isHighlighted: isLinkHighlighted(icon.to, currentPath),
|
|
42761
42760
|
key: getUniqueKey(icon.url, icon.label, index),
|
|
42762
42761
|
setIsMenuOpen: setIsLinksOpen,
|
|
42763
|
-
style:
|
|
42762
|
+
style: mergeRight(design.links, {
|
|
42764
42763
|
fontSize: "1.25em",
|
|
42765
42764
|
fontWeight: "500"
|
|
42766
42765
|
})
|
|
@@ -42882,7 +42881,7 @@ var HeaderWithLogoTitle = function HeaderWithLogoTitle(_ref) {
|
|
|
42882
42881
|
id: "header-with-logo-title-links-".concat(index, "-link"),
|
|
42883
42882
|
isHighlighted: isLinkHighlighted(to, currentPath),
|
|
42884
42883
|
key: getUniqueKey(to, label, index),
|
|
42885
|
-
style:
|
|
42884
|
+
style: mergeRight(design.links, {
|
|
42886
42885
|
fontSize: "1.25em",
|
|
42887
42886
|
fontWeight: "500"
|
|
42888
42887
|
})
|