@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.cjs.js
CHANGED
|
@@ -39450,14 +39450,13 @@ var FaqWithHamburgerView = function FaqWithHamburgerView(_ref) {
|
|
|
39450
39450
|
id: id,
|
|
39451
39451
|
design: design.body,
|
|
39452
39452
|
nestedClassName: baseClasses
|
|
39453
|
-
}, /*#__PURE__*/React__default["default"].createElement("div", {
|
|
39454
|
-
className: "col-span-12 sm:col-span-6 sm:col-start-4"
|
|
39455
39453
|
}, /*#__PURE__*/React__default["default"].createElement(Typography$1, _extends__default["default"]({
|
|
39456
39454
|
isTitle: true,
|
|
39455
|
+
className: "col-span-full",
|
|
39457
39456
|
component: "h3",
|
|
39458
39457
|
id: "faq-with-accordion-title",
|
|
39459
39458
|
style: design.title
|
|
39460
|
-
}, otherProps), title)
|
|
39459
|
+
}, otherProps), title), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
39461
39460
|
className: columnsBaseClasses
|
|
39462
39461
|
}, faqs.map(function (_ref2, index) {
|
|
39463
39462
|
var question = _ref2.question,
|
|
@@ -39480,7 +39479,7 @@ var FAQItem = function FAQItem(_ref3) {
|
|
|
39480
39479
|
enableAnimation = _ref3.enableAnimation,
|
|
39481
39480
|
index = _ref3.index,
|
|
39482
39481
|
otherProps = _objectWithoutProperties__default["default"](_ref3, _excluded2);
|
|
39483
|
-
var _useState = React.useState(
|
|
39482
|
+
var _useState = React.useState(true),
|
|
39484
39483
|
_useState2 = _slicedToArray__default["default"](_useState, 2),
|
|
39485
39484
|
isOpen = _useState2[0],
|
|
39486
39485
|
setIsOpen = _useState2[1];
|
|
@@ -42593,7 +42592,7 @@ var HeaderWithButtons = function HeaderWithButtons(_ref) {
|
|
|
42593
42592
|
id: "header-with-buttons-".concat(index, "-link"),
|
|
42594
42593
|
isHighlighted: isLinkHighlighted(button.to, currentPath),
|
|
42595
42594
|
key: getUniqueKey(button.to, button.label, index),
|
|
42596
|
-
style:
|
|
42595
|
+
style: mergeRight(design.links, {
|
|
42597
42596
|
fontSize: "1.25em",
|
|
42598
42597
|
fontWeight: "500"
|
|
42599
42598
|
})
|
|
@@ -42697,9 +42696,9 @@ var HeaderWithDropdownLinks = function HeaderWithDropdownLinks(_ref) {
|
|
|
42697
42696
|
}, properties.links.map(function (link, index) {
|
|
42698
42697
|
return /*#__PURE__*/React__default["default"].createElement(Dropdown, {
|
|
42699
42698
|
index: index,
|
|
42700
|
-
|
|
42699
|
+
dropdownLink: link,
|
|
42701
42700
|
key: getUniqueKey(link.label, link.to, index),
|
|
42702
|
-
design:
|
|
42701
|
+
design: mergeRight(design.links, {
|
|
42703
42702
|
fontSize: "1.25em",
|
|
42704
42703
|
fontWeight: "500"
|
|
42705
42704
|
})
|
|
@@ -42806,7 +42805,7 @@ var HeaderWithIcons = function HeaderWithIcons(_ref) {
|
|
|
42806
42805
|
isHighlighted: isLinkHighlighted(icon.to, currentPath),
|
|
42807
42806
|
key: getUniqueKey(icon.url, icon.label, index),
|
|
42808
42807
|
setIsMenuOpen: setIsLinksOpen,
|
|
42809
|
-
style:
|
|
42808
|
+
style: mergeRight(design.links, {
|
|
42810
42809
|
fontSize: "1.25em",
|
|
42811
42810
|
fontWeight: "500"
|
|
42812
42811
|
})
|
|
@@ -42928,7 +42927,7 @@ var HeaderWithLogoTitle = function HeaderWithLogoTitle(_ref) {
|
|
|
42928
42927
|
id: "header-with-logo-title-links-".concat(index, "-link"),
|
|
42929
42928
|
isHighlighted: isLinkHighlighted(to, currentPath),
|
|
42930
42929
|
key: getUniqueKey(to, label, index),
|
|
42931
|
-
style:
|
|
42930
|
+
style: mergeRight(design.links, {
|
|
42932
42931
|
fontSize: "1.25em",
|
|
42933
42932
|
fontWeight: "500"
|
|
42934
42933
|
})
|