@royaloperahouse/harmonic 1.0.6-f → 1.0.6-g

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.
@@ -5583,7 +5583,8 @@ var Accordion = function Accordion(_ref) {
5583
5583
  initOpen = _ref$initOpen === void 0 ? false : _ref$initOpen,
5584
5584
  className = _ref.className,
5585
5585
  expandedStateIcon = _ref.expandedStateIcon,
5586
- collapsedStateIcon = _ref.collapsedStateIcon;
5586
+ collapsedStateIcon = _ref.collapsedStateIcon,
5587
+ childrenContainerStyle = _ref.childrenContainerStyle;
5587
5588
  var _useState = React.useState(initOpen),
5588
5589
  openAccordion = _useState[0],
5589
5590
  setOpenAccordion = _useState[1];
@@ -5739,9 +5740,10 @@ var Accordion = function Accordion(_ref) {
5739
5740
  "aria-live": openAccordion ? 'polite' : 'off',
5740
5741
  tag: "div",
5741
5742
  size: "large"
5742
- }, childrenVisibility && /*#__PURE__*/React__default.createElement(ChildrenContainer, {
5743
- isVisible: childrenVisibility
5744
- }, children)));
5743
+ }, childrenVisibility && (/*#__PURE__*/React__default.createElement(ChildrenContainer, {
5744
+ isVisible: childrenVisibility,
5745
+ style: childrenContainerStyle
5746
+ }, children))));
5745
5747
  };
5746
5748
 
5747
5749
  var _templateObject$C;