@royaloperahouse/harmonic 1.0.6-e → 1.0.6-f
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/CHANGELOG.md +2 -0
- package/dist/components/molecules/Accordion/Accordion.style.d.ts +2 -1
- package/dist/harmonic.cjs.development.js +28 -21
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +28 -21
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
- Added new CustomStrategy filter
|
|
6
6
|
- Fixed alignment between title and sponsor logo upon Header
|
|
7
7
|
- extended HighlightsCarousel to change infinit from false to true
|
|
8
|
+
## [1.0.5]
|
|
9
|
+
- PrimaryButton hover only for device detected hover functionality
|
|
8
10
|
|
|
9
11
|
## [1.0.4]
|
|
10
12
|
- Castfilter: fix NDVA issues
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export declare const AccordionContainer: import("styled-components").StyledComponent<"div", any, {
|
|
2
|
-
|
|
2
|
+
showTopLine?: boolean | undefined;
|
|
3
|
+
showBottomLine?: boolean | undefined;
|
|
3
4
|
}, never>;
|
|
4
5
|
export declare const ChildrenContainer: import("styled-components").StyledComponent<"div", any, {
|
|
5
6
|
isVisible: boolean;
|
|
@@ -5518,22 +5518,25 @@ var NavTopContainer = /*#__PURE__*/styled__default.div(_templateObject12 || (_te
|
|
|
5518
5518
|
var NavTopContainerMobile = /*#__PURE__*/styled__default.div(_templateObject13 || (_templateObject13 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: none;\n\n @media ", " {\n display: flex;\n width: fit-content;\n align-items: center;\n height: 10%;\n margin-left: 20px;\n padding-bottom: 36px;\n }\n"])), devices.mobileAndTablet);
|
|
5519
5519
|
|
|
5520
5520
|
var _templateObject$B, _templateObject2$q, _templateObject3$f, _templateObject4$e, _templateObject5$a, _templateObject6$6, _templateObject7$4;
|
|
5521
|
-
var AccordionContainer = /*#__PURE__*/styled__default.div(_templateObject$B || (_templateObject$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n border-top:
|
|
5522
|
-
var
|
|
5523
|
-
return
|
|
5521
|
+
var AccordionContainer = /*#__PURE__*/styled__default.div(_templateObject$B || (_templateObject$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n border-top: ", ";\n border-bottom: ", ";\n"])), function (_ref) {
|
|
5522
|
+
var showTopLine = _ref.showTopLine;
|
|
5523
|
+
return showTopLine ? '2px solid var(--color-base-light-grey)' : 'none';
|
|
5524
|
+
}, function (_ref2) {
|
|
5525
|
+
var showBottomLine = _ref2.showBottomLine;
|
|
5526
|
+
return showBottomLine ? '2px solid var(--color-base-light-grey)' : 'none';
|
|
5524
5527
|
});
|
|
5525
|
-
var ChildrenContainer = /*#__PURE__*/styled__default.div(_templateObject2$q || (_templateObject2$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0px 20px 28px 20px;\n\n opacity: ", ";\n transition: opacity 0.2s ease;\n pointer-events: ", ";\n\n\n @media ", " {\n margin: 12px 0px 24px 0px;\n }\n \n @media print { \n visibility: visible;\n }\n}\n"])), function (
|
|
5526
|
-
var isVisible = _ref2.isVisible;
|
|
5527
|
-
return isVisible ? 1 : 0;
|
|
5528
|
-
}, function (_ref3) {
|
|
5528
|
+
var ChildrenContainer = /*#__PURE__*/styled__default.div(_templateObject2$q || (_templateObject2$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0px 20px 28px 20px;\n\n opacity: ", ";\n transition: opacity 0.2s ease;\n pointer-events: ", ";\n\n\n @media ", " {\n margin: 12px 0px 24px 0px;\n }\n \n @media print { \n visibility: visible;\n }\n}\n"])), function (_ref3) {
|
|
5529
5529
|
var isVisible = _ref3.isVisible;
|
|
5530
|
+
return isVisible ? 1 : 0;
|
|
5531
|
+
}, function (_ref4) {
|
|
5532
|
+
var isVisible = _ref4.isVisible;
|
|
5530
5533
|
return isVisible ? 'auto' : 'none';
|
|
5531
5534
|
}, devices.mobile);
|
|
5532
|
-
var TitleContainer$1 = /*#__PURE__*/styled__default.div(_templateObject3$f || (_templateObject3$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding-top: 28px;\n padding-bottom: 28px;\n color: var(--color-primary-black);\n\n && svg {\n width: 24px;\n height: 24px;\n }\n\n :hover {\n cursor: ", ";\n pointer-events: ", ";\n }\n\n @media ", " {\n padding-top: 16px;\n padding-bottom: 16px;\n }\n"])), function (
|
|
5533
|
-
var hasChildren = _ref4.hasChildren;
|
|
5534
|
-
return hasChildren ? 'pointer' : 'default';
|
|
5535
|
-
}, function (_ref5) {
|
|
5535
|
+
var TitleContainer$1 = /*#__PURE__*/styled__default.div(_templateObject3$f || (_templateObject3$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding-top: 28px;\n padding-bottom: 28px;\n color: var(--color-primary-black);\n\n && svg {\n width: 24px;\n height: 24px;\n }\n\n :hover {\n cursor: ", ";\n pointer-events: ", ";\n }\n\n @media ", " {\n padding-top: 16px;\n padding-bottom: 16px;\n }\n"])), function (_ref5) {
|
|
5536
5536
|
var hasChildren = _ref5.hasChildren;
|
|
5537
|
+
return hasChildren ? 'pointer' : 'default';
|
|
5538
|
+
}, function (_ref6) {
|
|
5539
|
+
var hasChildren = _ref6.hasChildren;
|
|
5537
5540
|
return hasChildren ? 'auto' : 'none';
|
|
5538
5541
|
}, devices.mobile);
|
|
5539
5542
|
var TitleText = /*#__PURE__*/styled__default(HarmonicSubtitle)(_templateObject4$e || (_templateObject4$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n max-width: calc(100% - 32px);\n"])));
|
|
@@ -5542,14 +5545,14 @@ var ContentContainer = /*#__PURE__*/styled__default(ExtendedBodyCopyHarmonic).wi
|
|
|
5542
5545
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
5543
5546
|
return prop !== 'textHeight';
|
|
5544
5547
|
}
|
|
5545
|
-
})(_templateObject6$6 || (_templateObject6$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-height: ", ";\n overflow: ", ";\n margin-bottom: ", ";\n\n @media print {\n max-height: max-content;\n }\n\n & em {\n font-family: var(--font-family-body-italics);\n }\n\n & u {\n font-size: var(--font-size-body-1);\n font-family: var(--font-family-body);\n }\n\n @media ", " {\n transition: 100% 0.2s ease;\n }\n"])), function (
|
|
5546
|
-
var textHeight = _ref6.textHeight;
|
|
5547
|
-
return textHeight;
|
|
5548
|
-
}, function (_ref7) {
|
|
5548
|
+
})(_templateObject6$6 || (_templateObject6$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-height: ", ";\n overflow: ", ";\n margin-bottom: ", ";\n\n @media print {\n max-height: max-content;\n }\n\n & em {\n font-family: var(--font-family-body-italics);\n }\n\n & u {\n font-size: var(--font-size-body-1);\n font-family: var(--font-family-body);\n }\n\n @media ", " {\n transition: 100% 0.2s ease;\n }\n"])), function (_ref7) {
|
|
5549
5549
|
var textHeight = _ref7.textHeight;
|
|
5550
|
-
return textHeight
|
|
5550
|
+
return textHeight;
|
|
5551
5551
|
}, function (_ref8) {
|
|
5552
5552
|
var textHeight = _ref8.textHeight;
|
|
5553
|
+
return textHeight === '0px' ? 'hidden' : 'visible';
|
|
5554
|
+
}, function (_ref9) {
|
|
5555
|
+
var textHeight = _ref9.textHeight;
|
|
5553
5556
|
return textHeight === '0px' ? '0px' : '12px';
|
|
5554
5557
|
}, devices.mobile);
|
|
5555
5558
|
var PrintHideWrapper = /*#__PURE__*/styled__default.div(_templateObject7$4 || (_templateObject7$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n @media print {\n display: none;\n }\n"])));
|
|
@@ -5571,8 +5574,10 @@ var Accordion = function Accordion(_ref) {
|
|
|
5571
5574
|
var _expandedStateIcon$ic, _collapsedStateIcon$i;
|
|
5572
5575
|
var _ref$title = _ref.title,
|
|
5573
5576
|
title = _ref$title === void 0 ? '' : _ref$title,
|
|
5574
|
-
_ref$
|
|
5575
|
-
|
|
5577
|
+
_ref$showTopLine = _ref.showTopLine,
|
|
5578
|
+
showTopLine = _ref$showTopLine === void 0 ? true : _ref$showTopLine,
|
|
5579
|
+
_ref$showBottomLine = _ref.showBottomLine,
|
|
5580
|
+
showBottomLine = _ref$showBottomLine === void 0 ? true : _ref$showBottomLine,
|
|
5576
5581
|
children = _ref.children,
|
|
5577
5582
|
_ref$initOpen = _ref.initOpen,
|
|
5578
5583
|
initOpen = _ref$initOpen === void 0 ? false : _ref$initOpen,
|
|
@@ -5714,7 +5719,8 @@ var Accordion = function Accordion(_ref) {
|
|
|
5714
5719
|
};
|
|
5715
5720
|
var contentContainerId = title + "-accordion-content";
|
|
5716
5721
|
return /*#__PURE__*/React__default.createElement(AccordionContainer, {
|
|
5717
|
-
|
|
5722
|
+
showTopLine: showTopLine,
|
|
5723
|
+
showBottomLine: showBottomLine,
|
|
5718
5724
|
className: className
|
|
5719
5725
|
}, /*#__PURE__*/React__default.createElement(TitleContainer$1, {
|
|
5720
5726
|
onClick: toggleAccordion,
|
|
@@ -5754,7 +5760,7 @@ var Accordions = function Accordions(_ref) {
|
|
|
5754
5760
|
return /*#__PURE__*/React__default.createElement(Accordion, {
|
|
5755
5761
|
key: accordion.title + "-" + index,
|
|
5756
5762
|
title: accordion.title,
|
|
5757
|
-
|
|
5763
|
+
showBottomLine: isLastAccordion(index),
|
|
5758
5764
|
expandedStateIcon: accordion.expandedStateIcon,
|
|
5759
5765
|
collapsedStateIcon: accordion.collapsedStateIcon
|
|
5760
5766
|
}, accordion.children);
|
|
@@ -10618,7 +10624,8 @@ var ReadMore = function ReadMore(_ref) {
|
|
|
10618
10624
|
return /*#__PURE__*/React__default.createElement(AccordionContainer, {
|
|
10619
10625
|
tabIndex: 0,
|
|
10620
10626
|
onKeyDown: handleKeyDown,
|
|
10621
|
-
className: className
|
|
10627
|
+
className: className,
|
|
10628
|
+
showTopLine: false
|
|
10622
10629
|
}, /*#__PURE__*/React__default.createElement(ReadMoreContainer, {
|
|
10623
10630
|
"aria-label": title,
|
|
10624
10631
|
"aria-expanded": isFullTextOpen,
|