@royaloperahouse/harmonic 1.0.6-s → 1.0.6
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 +5 -13
- package/README.GIT +293 -0
- package/README.md +43 -267
- package/dist/components/atoms/Dropdown/Dropdown.d.ts +1 -1
- package/dist/components/atoms/Tab/Tab.d.ts +1 -1
- package/dist/components/molecules/Accordion/Accordion.style.d.ts +1 -3
- package/dist/components/molecules/CustomStrategyTabsFilter/CustomStrategyTabsFilter.d.ts +25 -27
- package/dist/components/molecules/PeopleListing/CreditListing/CreditListing.d.ts +1 -1
- package/dist/harmonic.cjs.development.css +0 -319
- package/dist/harmonic.cjs.development.js +187 -308
- 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 +196 -319
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/styles/HarmonicThemeProvider/HarmonicThemeProvider.d.ts +0 -1
- package/dist/types/creditListing.d.ts +6 -7
- package/dist/types/modalWindow.d.ts +0 -4
- package/dist/types/types.d.ts +3 -56
- package/package.json +1 -1
- package/dist/components/molecules/ReadMore/ReadMoreTextLink.d.ts +0 -4
- package/dist/components/molecules/ReadMore/ReadMoreTextLink.style.d.ts +0 -3
package/dist/harmonic.esm.js
CHANGED
|
@@ -228,26 +228,6 @@ styleInject(css_248z);
|
|
|
228
228
|
var _excluded = ["children", "size", "em", "color", "serif", "hierarchy", "tag", "className"],
|
|
229
229
|
_excluded2 = ["children", "size", "color", "className", "bold", "tag"],
|
|
230
230
|
_excluded3 = ["children", "size", "color", "className"];
|
|
231
|
-
/* ~~~ Display - (use case) ~~~ */
|
|
232
|
-
var DisplayHeader = function DisplayHeader(_ref) {
|
|
233
|
-
var children = _ref.children,
|
|
234
|
-
size = _ref.size,
|
|
235
|
-
em = _ref.em,
|
|
236
|
-
_ref$color = _ref.color,
|
|
237
|
-
color = _ref$color === void 0 ? 'inherit' : _ref$color,
|
|
238
|
-
serif = _ref.serif,
|
|
239
|
-
className = _ref.className;
|
|
240
|
-
var classNames = createClassNames('display', {
|
|
241
|
-
size: size,
|
|
242
|
-
color: color,
|
|
243
|
-
serif: serif,
|
|
244
|
-
em: em,
|
|
245
|
-
className: className
|
|
246
|
-
}, typographyStyles);
|
|
247
|
-
return /*#__PURE__*/React__default.createElement("h1", {
|
|
248
|
-
className: classNames
|
|
249
|
-
}, children);
|
|
250
|
-
};
|
|
251
231
|
/* ~~~ Headers - size and hierarchy set separately ~~~ */
|
|
252
232
|
var HarmonicHeader = function HarmonicHeader(_ref2) {
|
|
253
233
|
var _ref3;
|
|
@@ -2735,7 +2715,6 @@ var Tab = function Tab(_ref) {
|
|
|
2735
2715
|
className = _ref.className,
|
|
2736
2716
|
role = _ref.role,
|
|
2737
2717
|
ariaLabel = _ref.ariaLabel,
|
|
2738
|
-
tabLinkId = _ref.tabLinkId,
|
|
2739
2718
|
color = _ref.color,
|
|
2740
2719
|
dataTestId = _ref.dataTestId,
|
|
2741
2720
|
isOpen = _ref.isOpen;
|
|
@@ -2770,9 +2749,8 @@ var Tab = function Tab(_ref) {
|
|
|
2770
2749
|
className: className,
|
|
2771
2750
|
"data-testid": dataTestId
|
|
2772
2751
|
}, /*#__PURE__*/React__default.createElement(TabText, {
|
|
2773
|
-
id: tabLinkId,
|
|
2774
|
-
trimText: trimText,
|
|
2775
2752
|
color: color,
|
|
2753
|
+
trimText: trimText,
|
|
2776
2754
|
withTextInMobile: withTextInMobile,
|
|
2777
2755
|
"aria-hidden": "true"
|
|
2778
2756
|
}, title), withIcon !== 'none' && /*#__PURE__*/React__default.createElement(Icon, {
|
|
@@ -2802,7 +2780,6 @@ var Dropdown = function Dropdown(_ref) {
|
|
|
2802
2780
|
className = _ref.className,
|
|
2803
2781
|
role = _ref.role,
|
|
2804
2782
|
ariaLabel = _ref.ariaLabel,
|
|
2805
|
-
tabLinkId = _ref.tabLinkId,
|
|
2806
2783
|
trimTabText = _ref.trimTabText;
|
|
2807
2784
|
var node = useRef();
|
|
2808
2785
|
var _useState = useState(false),
|
|
@@ -2899,7 +2876,6 @@ var Dropdown = function Dropdown(_ref) {
|
|
|
2899
2876
|
};
|
|
2900
2877
|
var renderTab = function renderTab() {
|
|
2901
2878
|
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(Tab, {
|
|
2902
|
-
tabLinkId: tabLinkId,
|
|
2903
2879
|
trimText: trimTabText,
|
|
2904
2880
|
title: title,
|
|
2905
2881
|
titleLink: titleLink,
|
|
@@ -2979,8 +2955,7 @@ var Account = function Account(_ref) {
|
|
|
2979
2955
|
iconName: iconName,
|
|
2980
2956
|
withOptionsInMobile: false,
|
|
2981
2957
|
withIcon: "left",
|
|
2982
|
-
className: className
|
|
2983
|
-
tabLinkId: "account-link"
|
|
2958
|
+
className: className
|
|
2984
2959
|
});
|
|
2985
2960
|
};
|
|
2986
2961
|
|
|
@@ -5543,28 +5518,22 @@ var NavTopContainer = /*#__PURE__*/styled.div(_templateObject12 || (_templateObj
|
|
|
5543
5518
|
var NavTopContainerMobile = /*#__PURE__*/styled.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);
|
|
5544
5519
|
|
|
5545
5520
|
var _templateObject$B, _templateObject2$q, _templateObject3$f, _templateObject4$e, _templateObject5$a, _templateObject6$6, _templateObject7$4;
|
|
5546
|
-
var AccordionContainer = /*#__PURE__*/styled.div(_templateObject$B || (_templateObject$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n border-top:
|
|
5547
|
-
var
|
|
5548
|
-
return
|
|
5549
|
-
}, function (_ref2) {
|
|
5550
|
-
var showBottomLine = _ref2.showBottomLine;
|
|
5551
|
-
return showBottomLine ? '2px solid var(--color-base-light-grey)' : 'none';
|
|
5521
|
+
var AccordionContainer = /*#__PURE__*/styled.div(_templateObject$B || (_templateObject$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n border-top: 2px solid var(--color-base-light-grey);\n border-bottom: ", ";\n"])), function (_ref) {
|
|
5522
|
+
var showLine = _ref.showLine;
|
|
5523
|
+
return showLine ? '2px solid var(--color-base-light-grey)' : 'none';
|
|
5552
5524
|
});
|
|
5553
|
-
var ChildrenContainer = /*#__PURE__*/styled.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 (
|
|
5554
|
-
var isVisible =
|
|
5525
|
+
var ChildrenContainer = /*#__PURE__*/styled.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 (_ref2) {
|
|
5526
|
+
var isVisible = _ref2.isVisible;
|
|
5555
5527
|
return isVisible ? 1 : 0;
|
|
5556
|
-
}, function (
|
|
5557
|
-
var isVisible =
|
|
5528
|
+
}, function (_ref3) {
|
|
5529
|
+
var isVisible = _ref3.isVisible;
|
|
5558
5530
|
return isVisible ? 'auto' : 'none';
|
|
5559
5531
|
}, devices.mobile);
|
|
5560
|
-
var TitleContainer$1 = /*#__PURE__*/styled.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
|
|
5561
|
-
var
|
|
5562
|
-
return titleMargin || '0';
|
|
5563
|
-
}, function (_ref6) {
|
|
5564
|
-
var hasChildren = _ref6.hasChildren;
|
|
5532
|
+
var TitleContainer$1 = /*#__PURE__*/styled.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 (_ref4) {
|
|
5533
|
+
var hasChildren = _ref4.hasChildren;
|
|
5565
5534
|
return hasChildren ? 'pointer' : 'default';
|
|
5566
|
-
}, function (
|
|
5567
|
-
var hasChildren =
|
|
5535
|
+
}, function (_ref5) {
|
|
5536
|
+
var hasChildren = _ref5.hasChildren;
|
|
5568
5537
|
return hasChildren ? 'auto' : 'none';
|
|
5569
5538
|
}, devices.mobile);
|
|
5570
5539
|
var TitleText = /*#__PURE__*/styled(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"])));
|
|
@@ -5573,14 +5542,14 @@ var ContentContainer = /*#__PURE__*/styled(ExtendedBodyCopyHarmonic).withConfig(
|
|
|
5573
5542
|
shouldForwardProp: function shouldForwardProp(prop) {
|
|
5574
5543
|
return prop !== 'textHeight';
|
|
5575
5544
|
}
|
|
5576
|
-
})(_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 (
|
|
5577
|
-
var textHeight =
|
|
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 (_ref6) {
|
|
5546
|
+
var textHeight = _ref6.textHeight;
|
|
5578
5547
|
return textHeight;
|
|
5579
|
-
}, function (
|
|
5580
|
-
var textHeight =
|
|
5548
|
+
}, function (_ref7) {
|
|
5549
|
+
var textHeight = _ref7.textHeight;
|
|
5581
5550
|
return textHeight === '0px' ? 'hidden' : 'visible';
|
|
5582
|
-
}, function (
|
|
5583
|
-
var textHeight =
|
|
5551
|
+
}, function (_ref8) {
|
|
5552
|
+
var textHeight = _ref8.textHeight;
|
|
5584
5553
|
return textHeight === '0px' ? '0px' : '12px';
|
|
5585
5554
|
}, devices.mobile);
|
|
5586
5555
|
var PrintHideWrapper = /*#__PURE__*/styled.div(_templateObject7$4 || (_templateObject7$4 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n @media print {\n display: none;\n }\n"])));
|
|
@@ -5602,19 +5571,14 @@ var Accordion = function Accordion(_ref) {
|
|
|
5602
5571
|
var _expandedStateIcon$ic, _collapsedStateIcon$i;
|
|
5603
5572
|
var _ref$title = _ref.title,
|
|
5604
5573
|
title = _ref$title === void 0 ? '' : _ref$title,
|
|
5605
|
-
_ref$
|
|
5606
|
-
|
|
5607
|
-
_ref$showBottomLine = _ref.showBottomLine,
|
|
5608
|
-
showBottomLine = _ref$showBottomLine === void 0 ? true : _ref$showBottomLine,
|
|
5574
|
+
_ref$showLine = _ref.showLine,
|
|
5575
|
+
showLine = _ref$showLine === void 0 ? true : _ref$showLine,
|
|
5609
5576
|
children = _ref.children,
|
|
5610
|
-
visibleStandfirst = _ref.visibleStandfirst,
|
|
5611
5577
|
_ref$initOpen = _ref.initOpen,
|
|
5612
5578
|
initOpen = _ref$initOpen === void 0 ? false : _ref$initOpen,
|
|
5613
5579
|
className = _ref.className,
|
|
5614
5580
|
expandedStateIcon = _ref.expandedStateIcon,
|
|
5615
|
-
collapsedStateIcon = _ref.collapsedStateIcon
|
|
5616
|
-
childrenContainerStyle = _ref.childrenContainerStyle,
|
|
5617
|
-
titleMargin = _ref.titleMargin;
|
|
5581
|
+
collapsedStateIcon = _ref.collapsedStateIcon;
|
|
5618
5582
|
var _useState = useState(initOpen),
|
|
5619
5583
|
openAccordion = _useState[0],
|
|
5620
5584
|
setOpenAccordion = _useState[1];
|
|
@@ -5725,7 +5689,6 @@ var Accordion = function Accordion(_ref) {
|
|
|
5725
5689
|
var toggleAccordion = function toggleAccordion() {
|
|
5726
5690
|
if (React__default.Children.count(children) === 0) return;
|
|
5727
5691
|
if (openAccordion) {
|
|
5728
|
-
setIcon(collapsedStateIconData);
|
|
5729
5692
|
setOpenAccordion(false);
|
|
5730
5693
|
setTextHeight('0px');
|
|
5731
5694
|
setIcon(collapsedStateIconData);
|
|
@@ -5748,15 +5711,9 @@ var Accordion = function Accordion(_ref) {
|
|
|
5748
5711
|
toggleAccordion();
|
|
5749
5712
|
}
|
|
5750
5713
|
};
|
|
5751
|
-
var Standfirst = function Standfirst() {
|
|
5752
|
-
return visibleStandfirst ? (/*#__PURE__*/React__default.createElement(ContentContainer, null, /*#__PURE__*/React__default.createElement(ChildrenContainer, {
|
|
5753
|
-
isVisible: true
|
|
5754
|
-
}, visibleStandfirst))) : null;
|
|
5755
|
-
};
|
|
5756
5714
|
var contentContainerId = title + "-accordion-content";
|
|
5757
5715
|
return /*#__PURE__*/React__default.createElement(AccordionContainer, {
|
|
5758
|
-
|
|
5759
|
-
showBottomLine: showBottomLine,
|
|
5716
|
+
showLine: showLine,
|
|
5760
5717
|
className: className
|
|
5761
5718
|
}, /*#__PURE__*/React__default.createElement(TitleContainer$1, {
|
|
5762
5719
|
onClick: toggleAccordion,
|
|
@@ -5766,9 +5723,8 @@ var Accordion = function Accordion(_ref) {
|
|
|
5766
5723
|
"aria-label": title,
|
|
5767
5724
|
"aria-expanded": openAccordion,
|
|
5768
5725
|
"aria-controls": contentContainerId,
|
|
5769
|
-
hasChildren: !!children
|
|
5770
|
-
|
|
5771
|
-
}, /*#__PURE__*/React__default.createElement(TitleText, null, title), children && (/*#__PURE__*/React__default.createElement(PrintHideWrapper, null, /*#__PURE__*/React__default.createElement(Icon, Object.assign({}, icon))))), visibleStandfirst && /*#__PURE__*/React__default.createElement(Standfirst, null), /*#__PURE__*/React__default.createElement(ContentContainer, {
|
|
5726
|
+
hasChildren: !!children
|
|
5727
|
+
}, /*#__PURE__*/React__default.createElement(TitleText, null, title), children && (/*#__PURE__*/React__default.createElement(PrintHideWrapper, null, /*#__PURE__*/React__default.createElement(Icon, Object.assign({}, icon))))), /*#__PURE__*/React__default.createElement(ContentContainer, {
|
|
5772
5728
|
"data-testid": "richcontainer",
|
|
5773
5729
|
ref: content,
|
|
5774
5730
|
textHeight: textHeight,
|
|
@@ -5776,10 +5732,9 @@ var Accordion = function Accordion(_ref) {
|
|
|
5776
5732
|
"aria-live": openAccordion ? 'polite' : 'off',
|
|
5777
5733
|
tag: "div",
|
|
5778
5734
|
size: "large"
|
|
5779
|
-
}, childrenVisibility &&
|
|
5780
|
-
isVisible: childrenVisibility
|
|
5781
|
-
|
|
5782
|
-
}, children))));
|
|
5735
|
+
}, childrenVisibility && /*#__PURE__*/React__default.createElement(ChildrenContainer, {
|
|
5736
|
+
isVisible: childrenVisibility
|
|
5737
|
+
}, children)));
|
|
5783
5738
|
};
|
|
5784
5739
|
|
|
5785
5740
|
var _templateObject$C;
|
|
@@ -5798,12 +5753,9 @@ var Accordions = function Accordions(_ref) {
|
|
|
5798
5753
|
return /*#__PURE__*/React__default.createElement(Accordion, {
|
|
5799
5754
|
key: accordion.title + "-" + index,
|
|
5800
5755
|
title: accordion.title,
|
|
5801
|
-
|
|
5756
|
+
showLine: isLastAccordion(index),
|
|
5802
5757
|
expandedStateIcon: accordion.expandedStateIcon,
|
|
5803
|
-
collapsedStateIcon: accordion.collapsedStateIcon
|
|
5804
|
-
titleMargin: accordion.titleMargin,
|
|
5805
|
-
childrenContainerStyle: accordion.childrenContainerStyle,
|
|
5806
|
-
visibleStandfirst: accordion.visibleStandfirst
|
|
5758
|
+
collapsedStateIcon: accordion.collapsedStateIcon
|
|
5807
5759
|
}, accordion.children);
|
|
5808
5760
|
}));
|
|
5809
5761
|
};
|
|
@@ -6089,9 +6041,14 @@ var BodyContent = function BodyContent(_ref2) {
|
|
|
6089
6041
|
_ref2$renderGridItem = _ref2.renderGridItem,
|
|
6090
6042
|
renderGridItem = _ref2$renderGridItem === void 0 ? true : _ref2$renderGridItem;
|
|
6091
6043
|
var textContainerClassName = !renderGrid && !renderGridItem ? className : undefined;
|
|
6092
|
-
var content = /*#__PURE__*/React__default.createElement(
|
|
6044
|
+
var content = /*#__PURE__*/React__default.createElement(TextContainer, {
|
|
6045
|
+
tag: "div",
|
|
6046
|
+
size: "large",
|
|
6047
|
+
"data-testid": "text-container",
|
|
6093
6048
|
className: textContainerClassName,
|
|
6094
|
-
|
|
6049
|
+
dangerouslySetInnerHTML: {
|
|
6050
|
+
__html: addTypographyClasses(text)
|
|
6051
|
+
}
|
|
6095
6052
|
});
|
|
6096
6053
|
var gridItemOrContent = renderGridItem ? (/*#__PURE__*/React__default.createElement(GridItem, {
|
|
6097
6054
|
columnStartDesktop: columnStartDesktop,
|
|
@@ -6901,15 +6858,12 @@ var CastFilters = function CastFilters(_ref) {
|
|
|
6901
6858
|
listRoleDescription = _ref.listRoleDescription,
|
|
6902
6859
|
className = _ref.className,
|
|
6903
6860
|
onSelect = _ref.onSelect,
|
|
6904
|
-
onSelectId = _ref.onSelectId,
|
|
6905
6861
|
onApply = _ref.onApply,
|
|
6906
|
-
onApplyIds = _ref.onApplyIds,
|
|
6907
6862
|
onClear = _ref.onClear,
|
|
6908
6863
|
_ref$greyscale = _ref.greyscale,
|
|
6909
6864
|
greyscale = _ref$greyscale === void 0 ? false : _ref$greyscale,
|
|
6910
6865
|
_ref$selectedIndices = _ref.selectedIndices,
|
|
6911
|
-
selectedIndices = _ref$selectedIndices === void 0 ? [] : _ref$selectedIndices
|
|
6912
|
-
selectedIds = _ref.selectedIds;
|
|
6866
|
+
selectedIndices = _ref$selectedIndices === void 0 ? [] : _ref$selectedIndices;
|
|
6913
6867
|
var _useViewport = useViewport(),
|
|
6914
6868
|
isMobile = _useViewport.isMobile;
|
|
6915
6869
|
var castWrapperRef = useRef(null);
|
|
@@ -7011,51 +6965,14 @@ var CastFilters = function CastFilters(_ref) {
|
|
|
7011
6965
|
isDraggingRef.current = false;
|
|
7012
6966
|
hasDraggedRef.current = false;
|
|
7013
6967
|
}, [isMobile]);
|
|
7014
|
-
var
|
|
7015
|
-
if (person.id !== undefined && person.id !== null) return String(person.id);
|
|
7016
|
-
if (person.slug !== undefined && person.slug !== null) return String(person.slug);
|
|
7017
|
-
return person.name;
|
|
7018
|
-
}, []);
|
|
7019
|
-
var isIdSelectionMode = selectedIds !== undefined;
|
|
7020
|
-
var selectedIdsSet = useMemo(function () {
|
|
7021
|
-
var ids = selectedIds != null ? selectedIds : [];
|
|
7022
|
-
return new Set(ids.map(function (id) {
|
|
7023
|
-
return String(id);
|
|
7024
|
-
}));
|
|
7025
|
-
}, [selectedIds]);
|
|
7026
|
-
var selectedStateIndices = useMemo(function () {
|
|
7027
|
-
if (!isIdSelectionMode) return selectedIndices;
|
|
7028
|
-
return cast.flatMap(function (person, index) {
|
|
7029
|
-
var itemId = getCastItemSelectionId(person);
|
|
7030
|
-
return selectedIdsSet.has(itemId) ? [index] : [];
|
|
7031
|
-
});
|
|
7032
|
-
}, [cast, getCastItemSelectionId, isIdSelectionMode, selectedIdsSet, selectedIndices]);
|
|
7033
|
-
var selectedStateIds = useMemo(function () {
|
|
7034
|
-
if (isIdSelectionMode) {
|
|
7035
|
-
return cast.filter(function (person) {
|
|
7036
|
-
return selectedIdsSet.has(getCastItemSelectionId(person));
|
|
7037
|
-
}).map(function (person) {
|
|
7038
|
-
return getCastItemSelectionId(person);
|
|
7039
|
-
});
|
|
7040
|
-
}
|
|
7041
|
-
return selectedIndices.map(function (index) {
|
|
7042
|
-
return cast[index];
|
|
7043
|
-
}).filter(function (person) {
|
|
7044
|
-
return person !== undefined;
|
|
7045
|
-
}).map(function (person) {
|
|
7046
|
-
return getCastItemSelectionId(person);
|
|
7047
|
-
});
|
|
7048
|
-
}, [cast, getCastItemSelectionId, isIdSelectionMode, selectedIdsSet, selectedIndices]);
|
|
7049
|
-
var handleClick = React__default.useCallback(function (index, itemId, onClick) {
|
|
6968
|
+
var handleClick = React__default.useCallback(function (index, onClick) {
|
|
7050
6969
|
if (hasDraggedRef.current) return;
|
|
7051
|
-
if (onSelectId) onSelectId(itemId);
|
|
7052
6970
|
if (onSelect) onSelect(index);
|
|
7053
6971
|
if (onClick) onClick();
|
|
7054
|
-
}, [onSelect
|
|
7055
|
-
var handlePersonKeydown = React__default.useCallback(function (e, index,
|
|
7056
|
-
if (e.key === 'Enter'
|
|
7057
|
-
|
|
7058
|
-
handleClick(index, itemId, onClick);
|
|
6972
|
+
}, [onSelect]);
|
|
6973
|
+
var handlePersonKeydown = React__default.useCallback(function (e, index, onClick) {
|
|
6974
|
+
if (e.key === 'Enter') {
|
|
6975
|
+
handleClick(index, onClick);
|
|
7059
6976
|
}
|
|
7060
6977
|
}, [handleClick]);
|
|
7061
6978
|
var handleClearKeydown = React__default.useCallback(function (e) {
|
|
@@ -7070,27 +6987,27 @@ var CastFilters = function CastFilters(_ref) {
|
|
|
7070
6987
|
image = person.image,
|
|
7071
6988
|
_onClick = person.onClick,
|
|
7072
6989
|
ariaLabel = person['aria-label'];
|
|
7073
|
-
var
|
|
7074
|
-
var isSelected = isIdSelectionMode ? selectedIdsSet.has(personSelectionId) : selectedIndices.includes(index);
|
|
6990
|
+
var isSelected = selectedIndices.includes(index);
|
|
7075
6991
|
var personImage = image || placeholderImage || defaultPlaceholderImage;
|
|
7076
6992
|
return /*#__PURE__*/React__default.createElement(PersonWrapper, {
|
|
7077
|
-
key:
|
|
6993
|
+
key: index,
|
|
7078
6994
|
"aria-selected": isSelected,
|
|
7079
|
-
"aria-label": ariaLabel
|
|
6995
|
+
"aria-label": ariaLabel || (isSelected ? 'Deselect' : 'Select') + " " + name,
|
|
6996
|
+
"aria-posinset": index + 1,
|
|
6997
|
+
"aria-setsize": cast.length,
|
|
7080
6998
|
role: "option",
|
|
7081
6999
|
tabIndex: 0,
|
|
7082
|
-
onClick: function onClick() {
|
|
7083
|
-
return handleClick(index, personSelectionId, _onClick);
|
|
7084
|
-
},
|
|
7085
7000
|
onKeyDown: function onKeyDown(e) {
|
|
7086
|
-
return handlePersonKeydown(e, index,
|
|
7001
|
+
return handlePersonKeydown(e, index, _onClick);
|
|
7087
7002
|
}
|
|
7088
7003
|
}, /*#__PURE__*/React__default.createElement(PersonToggle, {
|
|
7089
7004
|
isSelected: isSelected,
|
|
7090
|
-
|
|
7005
|
+
onClick: function onClick() {
|
|
7006
|
+
return handleClick(index, _onClick);
|
|
7007
|
+
}
|
|
7091
7008
|
}, /*#__PURE__*/React__default.createElement(PersonImage, {
|
|
7092
7009
|
src: personImage,
|
|
7093
|
-
alt: "",
|
|
7010
|
+
alt: image ? name : "Placeholder image for " + name,
|
|
7094
7011
|
draggable: false,
|
|
7095
7012
|
isDefaultPlaceholder: !(!!image || !!placeholderImage),
|
|
7096
7013
|
greyscale: greyscale
|
|
@@ -7126,8 +7043,7 @@ var CastFilters = function CastFilters(_ref) {
|
|
|
7126
7043
|
ref: castWrapperRef,
|
|
7127
7044
|
role: "listbox",
|
|
7128
7045
|
"aria-roledescription": listRoleDescription != null ? listRoleDescription : 'filter list',
|
|
7129
|
-
"aria-
|
|
7130
|
-
"aria-multiselectable": "true",
|
|
7046
|
+
"aria-multiselectable": true,
|
|
7131
7047
|
onMouseDown: handleMouseDown,
|
|
7132
7048
|
onMouseMove: handleMouseMove,
|
|
7133
7049
|
onMouseUp: handleMouseUp,
|
|
@@ -7138,15 +7054,14 @@ var CastFilters = function CastFilters(_ref) {
|
|
|
7138
7054
|
ref: swipeRef,
|
|
7139
7055
|
onOverflowChange: handleOverflowChange,
|
|
7140
7056
|
limitDragToNavigableRange: true
|
|
7141
|
-
}, getPersonCards())))), showActionButtonsSection && (/*#__PURE__*/React__default.createElement(ActionButtons, null,
|
|
7057
|
+
}, getPersonCards())))), showActionButtonsSection && (/*#__PURE__*/React__default.createElement(ActionButtons, null, selectedIndices.length === 0 && emptySelectionText && (/*#__PURE__*/React__default.createElement(BodyCopyHarmonic, {
|
|
7142
7058
|
size: "medium",
|
|
7143
7059
|
className: "mobile-only"
|
|
7144
|
-
}, emptySelectionText)),
|
|
7060
|
+
}, emptySelectionText)), selectedIndices.length === 0 && !emptySelectionText && /*#__PURE__*/React__default.createElement(EmptySelectionTextSpacer, null), selectedIndices.length > 0 && (/*#__PURE__*/React__default.createElement(React__default.Fragment, null, onApply && /*#__PURE__*/React__default.createElement(PrimaryButton, {
|
|
7145
7061
|
onClick: function onClick() {
|
|
7146
|
-
|
|
7147
|
-
if (onApplyIds) onApplyIds(selectedStateIds);
|
|
7062
|
+
return onApply(selectedIndices);
|
|
7148
7063
|
}
|
|
7149
|
-
}, ctaText != null ? ctaText : 'Apply')
|
|
7064
|
+
}, ctaText != null ? ctaText : 'Apply'), onClear && (/*#__PURE__*/React__default.createElement(TextLink, {
|
|
7150
7065
|
tabIndex: 0,
|
|
7151
7066
|
role: "button",
|
|
7152
7067
|
onClick: onClear,
|
|
@@ -7472,34 +7387,32 @@ var _excluded$j = ["text", "id", "isSelected"];
|
|
|
7472
7387
|
*
|
|
7473
7388
|
* @returns { React.JSX.Element}
|
|
7474
7389
|
*
|
|
7475
|
-
* @example
|
|
7390
|
+
* @example Controlled selection with custom rules
|
|
7391
|
+
* The component does not manage selection itself. The parent owns `items` (including
|
|
7392
|
+
* `isSelected`) and updates that state in `onClick`. Use `allowedSelectedWith` on each
|
|
7393
|
+
* item to describe which other tab IDs may stay selected when that tab is chosen.
|
|
7394
|
+
*
|
|
7476
7395
|
* ```tsx
|
|
7477
|
-
*
|
|
7478
|
-
*
|
|
7479
|
-
*
|
|
7480
|
-
*
|
|
7481
|
-
*
|
|
7482
|
-
*
|
|
7483
|
-
*
|
|
7484
|
-
*
|
|
7485
|
-
*
|
|
7486
|
-
*
|
|
7487
|
-
*
|
|
7488
|
-
*
|
|
7489
|
-
*
|
|
7490
|
-
*
|
|
7491
|
-
*
|
|
7492
|
-
*
|
|
7493
|
-
*
|
|
7494
|
-
*
|
|
7495
|
-
*
|
|
7496
|
-
*
|
|
7497
|
-
* * return { ...item, isSelected: mayStaySelected ? !item.isSelected : false };
|
|
7498
|
-
* * })
|
|
7499
|
-
* * );
|
|
7500
|
-
* * };
|
|
7501
|
-
* *
|
|
7502
|
-
* * return <CustomStrategyTabsFilter items={items} onClick={handleClick} />;
|
|
7396
|
+
* const [items, setItems] = useState<TCustomStrategyTabsFilterItem[]>([
|
|
7397
|
+
* { id: 'all', text: 'All events', isSelected: true, allowedSelectedWith: [] },
|
|
7398
|
+
* { id: 'opera', text: 'Opera', isSelected: false, allowedSelectedWith: ['ballet'] },
|
|
7399
|
+
* { id: 'ballet', text: 'Ballet', isSelected: false, allowedSelectedWith: ['opera'] },
|
|
7400
|
+
* ]);
|
|
7401
|
+
*
|
|
7402
|
+
* const handleClick = (clickedItem: TCustomStrategyTabsFilterItem) => {
|
|
7403
|
+
* setItems((current) =>
|
|
7404
|
+
* current.map((item) => {
|
|
7405
|
+
* if (item.id === clickedItem.id) {
|
|
7406
|
+
* return { ...item, isSelected: !item.isSelected };
|
|
7407
|
+
* }
|
|
7408
|
+
*
|
|
7409
|
+
* const mayStaySelected = clickedItem.allowedSelectedWith?.includes(item.id);
|
|
7410
|
+
* return { ...item, isSelected: mayStaySelected ? !item.isSelected : false };
|
|
7411
|
+
* })
|
|
7412
|
+
* );
|
|
7413
|
+
* };
|
|
7414
|
+
*
|
|
7415
|
+
* return <CustomStrategyTabsFilter items={items} onClick={handleClick} />;
|
|
7503
7416
|
*/
|
|
7504
7417
|
var CustomStrategyTabsFilter = function CustomStrategyTabsFilter(_ref) {
|
|
7505
7418
|
var _customViewConfig$bac, _customViewConfig$bac2, _customViewConfig$tex, _customViewConfig$tex2;
|
|
@@ -7626,24 +7539,21 @@ var InfoBodyWrapper = /*#__PURE__*/styled(BodyCopyHarmonic)(_templateObject4$n |
|
|
|
7626
7539
|
var css_248z$1 = "@font-face {\n font-family: 'GreyLLTT';\n src: url('https://static.roh.org.uk/fonts/harmonic/GreyLLTT-Regular.woff2') format('woff2');\n font-weight: 400;\n font-style: normal;\n font-display: swap;\n}\n\n@font-face {\n font-family: 'GreyLLTT';\n src: url('https://static.roh.org.uk/fonts/harmonic/GreyLLTT-Medium.woff2') format('woff2');\n font-weight: 500;\n font-style: normal;\n font-display: swap;\n}\n\n@font-face {\n font-family: 'GreyLLTT';\n src: url('https://static.roh.org.uk/fonts/harmonic/GreyLLTT-Bold.woff2') format('woff2');\n font-weight: 700;\n font-style: normal;\n font-display: swap;\n}\n\n@font-face {\n font-family: 'VictorSerif';\n src: url('https://static.roh.org.uk/fonts/harmonic/VictorSerif-Medium.woff2') format('woff2');\n font-weight: 500;\n font-style: normal;\n font-display: swap;\n}\n\n@font-face {\n font-family: 'VictorSerif';\n src: url('https://static.roh.org.uk/fonts/harmonic/VictorSerif-MediumItalic.woff2') format('woff2');\n font-weight: 500;\n font-style: italic;\n font-display: swap;\n}\n";
|
|
7627
7540
|
styleInject(css_248z$1);
|
|
7628
7541
|
|
|
7629
|
-
var css_248z$2 = "/* ~~~~~ General Styling Classes ~~~~~ */\n.typography_color-primary__LOfDi {\n color: var(--color-primary);\n}\n\n.typography_color-black__6MHRL {\n color: var(--color-base-black);\n}\n\n.typography_color-white__PfW5s {\n color: var(--color-base-white);\n}\n\n.typography_color-red__iPlbG {\n color: var(--color-primary-red);\n}\n\n.typography_color-grey__GA1c2 {\n color: var(--color-base-dark-grey);\n}\n\n.typography_color-inherit__RDd0Y {\n color: inherit;\n}\n\n.typography_em__E6tX- {\n font-style: italic;\n}\n/* ~~~ */\n\n/* Display Headers */\n.typography_display__-F3p4 {\n margin: 0;\n font-family: var(--font-family-sans);\n line-height: 100%;\n\n &.typography_large__uq0zC {\n font-size: 96px;\n font-weight: 700;\n letter-spacing: -5px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 68px;\n font-weight: 500;\n letter-spacing: -3px;\n }\n\n /* Serif and Italic styles */\n &.typography_serif__VSO38,\n &.typography_em__E6tX- {\n font-family: var(--font-family-serif);\n font-weight: 500;\n }\n\n /* Serif and Italic adjustments */\n &.typography_large__uq0zC.typography_serif__VSO38,\n &.typography_large__uq0zC.typography_em__E6tX- {\n letter-spacing: -3px;\n }\n\n &.typography_small__wfQ0K.typography_serif__VSO38,\n &.typography_small__wfQ0K.typography_em__E6tX- {\n letter-spacing: -2px;\n }\n\n @media (max-width: 699px) {\n &.typography_large__uq0zC {\n font-size: 38px;\n letter-spacing: -1.5px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 32px;\n letter-spacing: -1.5px;\n }\n\n &.typography_large__uq0zC.typography_serif__VSO38,\n &.typography_large__uq0zC.typography_em__E6tX-,\n &.typography_small__wfQ0K.typography_serif__VSO38,\n &.typography_small__wfQ0K.typography_em__E6tX- {\n letter-spacing: -0.5px;\n }\n }\n}\n\n/* Headers */\n.typography_header__BexiD {\n margin: 0;\n font-family: var(--font-family-sans);\n font-weight: 500;\n\n &.typography_large__uq0zC {\n font-size: 44px;\n line-height: 48px;\n letter-spacing: -1.5px;\n }\n\n &.typography_medium__K0uZD {\n font-size: 34px;\n line-height: 40px;\n letter-spacing: -1px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 26px;\n line-height: 32px;\n letter-spacing: -0.5px;\n }\n\n /* Serif and Italic styles */\n &.typography_serif__VSO38,\n &.typography_em__E6tX- {\n font-family: var(--font-family-serif);\n }\n\n /* Serif and Italic letter-spacing overrides */\n &.typography_large__uq0zC.typography_serif__VSO38,\n &.typography_large__uq0zC.typography_em__E6tX- {\n letter-spacing: -0.5px;\n }\n\n &.typography_medium__K0uZD.typography_serif__VSO38,\n &.typography_medium__K0uZD.typography_em__E6tX- {\n letter-spacing: -0.5px;\n }\n\n &.typography_small__wfQ0K.typography_serif__VSO38,\n &.typography_small__wfQ0K.typography_em__E6tX- {\n letter-spacing: -0.5px;\n }\n\n @media (max-width: 699px) {\n &.typography_large__uq0zC {\n font-size: 28px;\n line-height: 34px;\n letter-spacing: -1.5px;\n }\n\n &.typography_medium__K0uZD {\n font-size: 24px;\n line-height: 28px;\n letter-spacing: -1px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 20px;\n line-height: 26px;\n letter-spacing: -0.75px;\n }\n\n /* Mobile overrides for serif/italic letter-spacing */\n &.typography_large__uq0zC.typography_serif__VSO38,\n &.typography_large__uq0zC.typography_em__E6tX-,\n &.typography_medium__K0uZD.typography_serif__VSO38,\n &.typography_medium__K0uZD.typography_em__E6tX-,\n &.typography_small__wfQ0K.typography_serif__VSO38,\n &.typography_small__wfQ0K.typography_em__E6tX- {\n letter-spacing: -0.5px;\n }\n }\n}\n\n/* Subtitle */\n.typography_subtitle__aoFTV {\n margin: 0;\n font-family: var(--font-family-sans);\n font-weight: 500;\n\n &.typography_large__uq0zC {\n font-size: 19px;\n line-height: 26px;\n letter-spacing: -0.5px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 17px;\n line-height: 24px;\n letter-spacing: -0.5px;\n }\n\n @media (max-width: 699px) {\n &.typography_large__uq0zC {\n font-size: 17px;\n line-height: 24px;\n letter-spacing: -0.5px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 14px;\n line-height: 20px;\n letter-spacing: -0.2px;\n }\n }\n}\n\n/* Body Copy */\n.typography_bodycopy__vYtQ8 {\n margin: 0;\n font-family: var(--font-family-sans);\n font-weight: 400;\n\n &.typography_large__uq0zC {\n font-size: 19px;\n line-height: 26px;\n letter-spacing: -0.5px;\n }\n\n &.typography_medium__K0uZD {\n font-size: 17px;\n line-height: 24px;\n letter-spacing: -0.5px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 14px;\n line-height: 20px;\n letter-spacing: -0.5px;\n }\n\n @media (max-width: 699px) {\n &.typography_large__uq0zC {\n font-size: 17px;\n line-height: 24px;\n letter-spacing: -0.5px;\n }\n\n &.typography_medium__K0uZD {\n font-size: 14px;\n line-height: 20px;\n letter-spacing: -0.2px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 11px;\n line-height: 16px;\n letter-spacing: -0.2px;\n }\n }\n}\n\n/* Overline */\n.typography_overline__EnUK3 {\n margin: 0;\n font-family: var(--font-family-sans);\n font-weight: 500;\n text-transform: uppercase;\n\n &.typography_large__uq0zC {\n font-size: 14px;\n line-height: 18px;\n letter-spacing: 0.3px;\n }\n\n &.typography_small__wfQ0K {\n font-size: 12px;\n line-height: 14px;\n letter-spacing: 0.2px;\n }\n\n @media (max-width: 699px) {\n &.typography_large__uq0zC {\n line-height: 17px;\n letter-spacing: 0.3px; /* Added to ensure it stays */\n }\n\n &.typography_small__wfQ0K {\n line-height: 14px;\n letter-spacing: 0.3px;\n }\n }\n}\n\n/* Button Text */\n.typography_buttontext__vcxNi {\n margin: 0;\n font-family: var(--font-family-sans);\n font-size: 17px;\n line-height: 20px;\n letter-spacing: -0.5px;\n font-weight: 400;\n\n @media (max-width: 699px) {\n font-weight: 500;\n line-height: 17px;\n }\n}\n\n/* Caption Text */\n.typography_captiontext__91UFb {\n margin: 0;\n font-family: var(--font-family-sans);\n font-weight: 400;\n font-size: 17px;\n line-height: 24px;\n letter-spacing: -0.5px;\n\n @media (max-width: 699px) {\n font-size: 14px;\n line-height: 20px;\n letter-spacing: -0.2px;\n }\n}\n\n/* Navigation Text */\n.typography_navigationtext__YfGf7 {\n margin: 0;\n font-family: var(--font-family-sans);\n font-size: 19px;\n line-height: 19px;\n letter-spacing: 0.4px;\n font-weight: 500;\n\n @media (max-width: 699px) {\n font-size: 17px;\n line-height: 17px;\n }\n}\n";
|
|
7630
|
-
styleInject(css_248z$2);
|
|
7631
|
-
|
|
7632
|
-
var css_248z$3 = ".core-theme-module_coreTheme__pWxYB {\n /* RBO Red */\n /* Primary Palette */\n --color-primary: #1a1a1a;\n --color-primary-background: #eb0a0a;\n --color-primary-red: #eb0a0a;\n --color-primary-black: #1a1a1a;\n\n /* Base Colours */\n --color-base-white: #ffffff;\n --color-base-black: #000000;\n --color-base-dark-grey: #4c4f53;\n --color-base-mid-grey: #72767c;\n --color-base-light-grey: #e9e9e9;\n --color-base-transparent: transparent;\n\n /* States */\n --color-state-error: #cc071e;\n --color-state-medium: #ffce45;\n --color-state-good: #2a874a;\n --color-state-focused: #1e1da0;\n --color-state-disabled: #b3b3b3;\n\n /* RBO Red (Core) */\n --color-rbo-red-hovered: #c40808;\n --color-rbo-red-pressed: #9d0707;\n\n /* RBO Black */\n --color-rbo-black-hovered: #575757;\n --color-rbo-black-pressed: #353535;\n\n /* Black */\n --color-black-hovered: #575757;\n --color-black-pressed: #353535;\n\n /* White */\n --color-white-hovered: #fafafa;\n --color-white-pressed: #f2f2f2;\n\n /* Secondary Palette */\n --color-secondary-yellow: #ffce45;\n --color-secondary-pink: #ff36d0;\n --color-secondary-orange: #ff6700;\n --color-secondary-blue: #5f9cff;\n\n /* Shadows */\n --shadow-floating: 0px 4px 38px 0px #0000000a;\n\n /* Core theme colors */\n --base-color-primary: #c8102e;\n --base-color-core: #c8102e;\n --base-color-stream: #1866dc;\n --base-color-cinema: #1a1a1a;\n --base-color-white: #ffffff;\n --base-color-black: #000000;\n --base-color-dark-grey: #4c4f53;\n --base-color-mid-grey: #72767c;\n --base-color-light-grey: #e9e9e9;\n --base-color-transparent: transparent;\n --base-color-errorstate: #eb0a0a;\n --base-color-mediumstate: #ffce45;\n --base-color-goodstate: #2a874a;\n --base-color-progress: #1866dc;\n --base-color-navigation: #c8102e;\n --base-color-lapislazuli: #0060a0;\n --base-color-lemonchiffon: #fffbbe;\n\n --button-height: 48px;\n --button-line-height: 20px;\n --button-padding-x: 20px;\n --button-padding-y: 14px;\n --button-padding-y-icon: 12px;\n --button-icon-margin: 12px;\n --button-icon-width: 20px;\n --button-icon-height: 20px;\n --button-font-size: 14px;\n --button-font-weight: 400;\n --button-color: var(--color-base-white);\n --button-bg-color: var(--color-primary-red);\n --button-hover-color: var(--color-rbo-red-hovered);\n --button-pressed-color: var(--color-rbo-red-pressed);\n --button-secondary-color: var(--color-primary-red);\n --button-secondary-hover-color: var(--color-rbo-red-hovered);\n --button-secondary-pressed-color: var(--color-rbo-red-pressed);\n --button-tertiary-color: var(--color-primary-black);\n --button-tertiary-hover-color: var(--color-rbo-black-hovered);\n --button-tertiary-pressed-color: var(--color-rbo-black-pressed);\n --button-auxiliary-color: var(--color-primary-black);\n --button-auxiliary-bg-color: var(--color-base-transparent);\n --button-anchor-tab-color: var(--color-primary-red);\n\n /* ----- Variables already used in Harmonic START ----- */\n --grid-column-gap: 36px;\n --grid-margin: 10%;\n\n --rotator-button-width: 60px;\n --rotator-button-icon-width: 36px;\n --rotator-button-small-width: 44px;\n --rotator-button-small-icon-width: 28px;\n --rotator-button-color: var(--color-primary-black);\n --rotator-button-bg-color: var(--color-base-light-grey);\n --rotator-button-hover-color: var(--color-base-white);\n --rotator-button-hover-bg-color: var(--color-primary-red);\n\n --carousel-image-caption-margin: 12px;\n\n --line-height-listing: 36px;\n\n --upsell-border-color: var(--color-primary-red);\n\n --font-feature-settings-body: 'pnum' on, 'onum' on, 'liga' off;\n --font-feature-settings-header: 'tnum' on, 'lnum' on;\n --font-feature-settings-subtitle: 'tnum' on, 'lnum' on;\n\n --text-transform-body: none;\n --text-transform-header: uppercase;\n --text-transform-subtitle: uppercase;\n\n @media (max-width: 699px) {\n --grid-column-gap: 12px;\n --grid-margin: 20px;\n --rotator-button-width: 40px;\n --rotator-button-icon-width: 24px;\n\n --line-height-listing: 34px;\n\n --font-feature-settings-body: 'pnum' on, 'onum' on, 'liga' off;\n --font-feature-settings-header: 'tnum' on, 'lnum' on;\n --font-feature-settings-subtitle: 'tnum' on, 'lnum' on;\n\n --text-transform-body: none;\n --text-transform-header: uppercase;\n --text-transform-subtitle: uppercase;\n }\n\n @media (min-width: 700px) and (max-width: 1139px) {\n --grid-column-gap: 20px;\n --grid-margin: 32px;\n --rotator-button-width: 44px;\n --rotator-button-icon-width: 24px;\n }\n\n /* ----- Variables already used in Harmonic END ----- */\n\n --font-size-header-1: 96px;\n --font-weight-header-1: 500;\n --letter-spacing-header-1: 2px;\n --line-height-header-1: 110px;\n --margin-header-1: 0.67em 0;\n\n --font-size-header-2: 68px;\n --font-weight-header-2: 500;\n --letter-spacing-header-2: 1px;\n --line-height-header-2: 72px;\n --margin-header-2: 0.83em 0;\n\n --font-size-header-3: 44px;\n --font-weight-header-3: 500;\n --letter-spacing-header-3: 1px;\n --line-height-header-3: 48px;\n --margin-header-3: 1em 0;\n\n --font-size-header-4: 34px;\n --font-weight-header-4: 500;\n --letter-spacing-header-4: 1px;\n --line-height-header-4: 40px;\n --margin-header-4: 1.33em 0;\n\n --font-size-header-5: 24px;\n --font-weight-header-5: 500;\n --letter-spacing-header-5: 1px;\n --line-height-header-5: 30px;\n --margin-header-5: 1.67em 0;\n\n --font-size-header-6: 20px;\n --font-weight-header-6: 500;\n --letter-spacing-header-6: 1px;\n --line-height-header-6: 28px;\n --margin-header-6: 2.33em 0;\n\n --font-size-altHeader-3: 44px;\n --font-weight-altHeader-3: normal;\n --letter-spacing-altHeader-3: normal;\n --line-height-altHeader-3: 48px;\n\n --font-size-altHeader-4: 34px;\n --font-weight-altHeader-4: normal;\n --letter-spacing-altHeader-4: normal;\n --line-height-altHeader-4: 44px;\n\n --font-size-altHeader-5: 24px;\n --font-weight-altHeader-5: normal;\n --letter-spacing-altHeader-5: normal;\n --line-height-altHeader-5: 30px;\n\n --font-size-altHeader-6: 20px;\n --font-weight-altHeader-6: normal;\n --letter-spacing-altHeader-6: normal;\n --line-height-altHeader-6: 28px;\n\n --font-size-overline-1: 14px;\n --font-weight-overline-1: 500;\n --letter-spacing-overline-1: 1px;\n --line-height-overline-1: 16px;\n\n --font-size-overline-2: 12px;\n --font-weight-overline-2: 500;\n --letter-spacing-overline-2: 1px;\n --line-height-overline-2: 14px;\n\n --font-size-overline-3: 10px;\n --font-weight-overline-3: 500;\n --letter-spacing-overline-3: 1px;\n --line-height-overline-3: 12px;\n\n --font-size-overline-4: 8px;\n --font-weight-overline-4: 500;\n --letter-spacing-overline-4: 1px;\n --line-height-overline-4: 10px;\n\n --font-size-body-1: 19px;\n --font-weight-body-1: 400;\n --letter-spacing-body-1: normal;\n --line-height-body-1: 26px;\n\n --font-size-body-2: 16px;\n --font-weight-body-2: 400;\n --letter-spacing-body-2: normal;\n --line-height-body-2: 22px;\n\n --font-size-body-3: 14px;\n --font-weight-body-3: 400;\n --letter-spacing-body-3: normal;\n --line-height-body-3: 20px;\n\n --font-size-subtitle-1: 18px;\n --font-weight-subtitle-1: 500;\n --letter-spacing-subtitle-1: 1px;\n --line-height-subtitle-1: 22px;\n\n --font-size-subtitle-2: 14px;\n --font-weight-subtitle-2: 500;\n --letter-spacing-subtitle-2: 1px;\n --line-height-subtitle-2: 22px;\n\n --font-size-title-description: 20px;\n --line-height-title-description: 28px;\n\n --font-size-individual-listing-name: 19px;\n --line-height-individual-listing-name: 24px;\n --line-height-people-listing-gap: 24px;\n\n --font-family-header: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-altHeader: 'adobe-garamond-pro';\n --font-family-body: 'adobe-garamond-pro';\n --font-family-body-italics: 'adobe-garamond-pro';\n --font-family-buttons: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-overline: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-subtitle: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-people-listing-role: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-people-listing-name: 'adobe-garamond-pro';\n\n --font-feature-settings-altHeader: 'pnum' on, 'onum' on;\n --font-feature-settings-overline: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n --font-feature-settings-navigation: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n\n --text-transform-altHeader: none;\n --text-transform-overline: uppercase;\n\n --word-break-header: break-word;\n --word-break-altHeader: break-word;\n --word-break-body: break-word;\n --word-break-overline: break-word;\n --word-break-subtitle: break-word;\n\n --font-family-navigation: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-size-navigation: 13px;\n --font-weight-navigation: 500;\n --line-height-navigation: 16px;\n --text-transform-navigation: uppercase;\n --letter-spacing-navigation: 1px;\n\n --navigation-small-gap: 16px;\n --navigation-middle-gap: 20px;\n --navigation-large-gap: 24px;\n --navigation-xlarge-gap: 36px;\n --navigation-large-margin: 60px;\n\n --font-size-search: 24px;\n --font-family-search: 'adobe-garamond-pro';\n\n --grid-outer-margin: 50px;\n --grid-template-columns: 14px calc(10% - 86px) repeat(12, minmax(0, 1fr)) calc(10% - 86px) 14px;\n\n --footer-height: 380px;\n --footer-padding-top: 44px;\n --footer-padding-bottom: 44px;\n --footer-items-gap: 32px;\n --footer-media-gap: 32px;\n --footer-media-icon-width: 24px;\n --footer-media-icon-height: 24px;\n --footer-vertical-spacing-lg: 58px;\n --footer-vertical-spacing-sm: 16px;\n\n --text-link-underline-offset: 8px;\n --cards-spacing-stack: 40px;\n\n --editorial-subtitle-margin-bottom: 16px;\n --editorial-margin-between: 24px;\n --editorial-spacing-hover: 4px;\n --anchor-tabs-height: 70px;\n\n --font-family-sans: 'GreyLLTT', 'Roboto', sans-serif;\n --font-family-serif: 'VictorSerif', 'Inria Serif Regular', serif;\n\n --harmonic-text-link-underline-offset: 4px;\n --harmonic-font-size-navigation: 19px;\n\n --announcement-banner-color: var(--color-base-white);\n --announcement-banner-bg-color: var(--color-primary-red);\n --announcement-banner-hover-color: var(--color-white-hovered);\n --announcement-banner-pressed-color: var(--color-white-pressed);\n\n --information-panel-color: var(--color-base-white);\n --information-panel-bg-color: var(--color-primary-red);\n --information-panel-button-color: var(--color-primary-black);\n --information-panel-button-bg-color: var(--color-base-white);\n --information-panel-button-hover-color: var(--color-white-hovered);\n --information-panel-button-pressed-color: var(--color-white-pressed);\n\n --heading-promo-bg-color: var(--color-primary-red);\n --page-header-bg-color: var(--color-primary-red);\n\n @media (max-width: 699px) {\n --font-size-header-1: 38px;\n --font-weight-header-1: 500;\n --letter-spacing-header-1: 1px;\n --line-height-header-1: 42px;\n\n --font-size-header-2: 30px;\n --font-weight-header-2: 500;\n --letter-spacing-header-2: 1px;\n --line-height-header-2: 34px;\n\n --font-size-header-3: 26px;\n --font-weight-header-3: 500;\n --letter-spacing-header-3: 1px;\n --line-height-header-3: 30px;\n\n --font-size-header-4: 24px;\n --font-weight-header-4: 500;\n --letter-spacing-header-4: 1px;\n --line-height-header-4: 28px;\n\n --font-size-header-5: 20px;\n --font-weight-header-5: 500;\n --letter-spacing-header-5: 1px;\n --line-height-header-5: 28px;\n\n --font-size-header-6: 17px;\n --font-weight-header-6: 500;\n --letter-spacing-header-6: 1px;\n --line-height-header-6: 24px;\n\n --font-size-altHeader-3: 26px;\n --font-weight-altHeader-3: normal;\n --letter-spacing-altHeader-3: normal;\n --line-height-altHeader-3: 30px;\n\n --font-size-altHeader-4: 24px;\n --font-weight-altHeader-4: normal;\n --letter-spacing-altHeader-4: normal;\n --line-height-altHeader-4: 28px;\n\n --font-size-altHeader-5: 20px;\n --font-weight-altHeader-5: normal;\n --letter-spacing-altHeader-5: normal;\n --line-height-altHeader-5: 28px;\n\n --font-size-altHeader-6: 17px;\n --font-weight-altHeader-6: normal;\n --letter-spacing-altHeader-6: normal;\n --line-height-altHeader-6: 24px;\n\n --font-size-overline-1: 14px;\n --font-weight-overline-1: 500;\n --letter-spacing-overline-1: 1px;\n --line-height-overline-1: 16px;\n\n --font-size-overline-2: 12px;\n --font-weight-overline-2: 500;\n --letter-spacing-overline-2: 1px;\n --line-height-overline-2: 14px;\n\n --font-size-body-1: 17px;\n --font-weight-body-1: 400;\n --letter-spacing-body-1: normal;\n --line-height-body-1: 24px;\n\n --font-size-body-2: 12px;\n --font-weight-body-2: 400;\n --letter-spacing-body-2: normal;\n --line-height-body-2: 18px;\n\n --font-size-body-3: 11px;\n --font-weight-body-3: 400;\n --letter-spacing-body-3: normal;\n --line-height-body-3: 16px;\n\n --font-size-subtitle-1: 16px;\n --font-weight-subtitle-1: 500;\n --letter-spacing-subtitle-1: 1px;\n --line-height-subtitle-1: 24px;\n\n --font-size-subtitle-2: 14px;\n --font-weight-subtitle-2: 500;\n --letter-spacing-subtitle-2: 1px;\n --line-height-subtitle-2: 18px;\n\n --font-size-title-description: 17px;\n --line-height-title-description: 24px;\n --line-height-people-listing-gap: 16px;\n\n --font-size-search: 20px;\n --font-family-search: 'adobe-garamond-pro';\n\n --font-family-header: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-altHeader: 'adobe-garamond-pro';\n --font-family-body: 'adobe-garamond-pro';\n --font-family-body-italics: 'adobe-garamond-pro';\n --font-family-buttons: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-overline: 'Gotham SSm Medium', sans-serif;\n --font-family-subtitle: 'Gotham SSm Medium', 'Montserrat', sans-serif;\n --font-family-people-listing-role: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-people-listing-name: 'adobe-garamond-pro';\n\n --font-feature-settings-altHeader: 'pnum' on, 'onum' on;\n --font-feature-settings-overline: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n --font-feature-settings-navigation: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n\n --text-transform-altHeader: none;\n --text-transform-overline: uppercase;\n\n --word-break-header: break-word;\n --word-break-altHeader: break-word;\n --word-break-body: break-word;\n --word-break-overline: break-word;\n --word-break-subtitle: break-word;\n\n --grid-template-columns: calc(20px - 12px) repeat(12, minmax(0, 1fr)) calc(20px - 12px);\n\n --footer-height: auto;\n --footer-padding-top: 20px;\n --footer-padding-bottom: 20px;\n --footer-items-gap: 12px;\n --footer-media-icon-width: 28px;\n --footer-media-icon-height: 28px;\n --footer-vertical-spacing-lg: 24px;\n --footer-vertical-spacing-sm: 24px;\n\n --anchor-tabs-height: 60px;\n }\n\n @media (min-width: 700px) and (max-width: 1139px) {\n --grid-template-columns: calc(32px - 20px) repeat(12, minmax(0, 1fr)) calc(32px - 20px);\n --font-size-header-6: 17px;\n --font-size-altHeader-4: 24px;\n --font-size-body-1: 17px;\n\n --footer-media-gap: 24px;\n --footer-padding-top: 40px;\n --footer-padding-bottom: 40px;\n }\n}\n";
|
|
7542
|
+
var css_248z$2 = ".core-theme-module_coreTheme__pWxYB {\n /* RBO Red */\n /* Primary Palette */\n --color-primary: #1a1a1a;\n --color-primary-background: #eb0a0a;\n --color-primary-red: #eb0a0a;\n --color-primary-black: #1a1a1a;\n\n /* Base Colours */\n --color-base-white: #ffffff;\n --color-base-black: #000000;\n --color-base-dark-grey: #4c4f53;\n --color-base-mid-grey: #72767c;\n --color-base-light-grey: #e9e9e9;\n --color-base-transparent: transparent;\n\n /* States */\n --color-state-error: #cc071e;\n --color-state-medium: #ffce45;\n --color-state-good: #2a874a;\n --color-state-focused: #1e1da0;\n --color-state-disabled: #b3b3b3;\n\n /* RBO Red (Core) */\n --color-rbo-red-hovered: #c40808;\n --color-rbo-red-pressed: #9d0707;\n\n /* RBO Black */\n --color-rbo-black-hovered: #575757;\n --color-rbo-black-pressed: #353535;\n\n /* Black */\n --color-black-hovered: #575757;\n --color-black-pressed: #353535;\n\n /* White */\n --color-white-hovered: #fafafa;\n --color-white-pressed: #f2f2f2;\n\n /* Secondary Palette */\n --color-secondary-yellow: #ffce45;\n --color-secondary-pink: #ff36d0;\n --color-secondary-orange: #ff6700;\n --color-secondary-blue: #5f9cff;\n\n /* Shadows */\n --shadow-floating: 0px 4px 38px 0px #0000000a;\n\n /* Core theme colors */\n --base-color-primary: #c8102e;\n --base-color-core: #c8102e;\n --base-color-stream: #1866dc;\n --base-color-cinema: #1a1a1a;\n --base-color-white: #ffffff;\n --base-color-black: #000000;\n --base-color-dark-grey: #4c4f53;\n --base-color-mid-grey: #72767c;\n --base-color-light-grey: #e9e9e9;\n --base-color-transparent: transparent;\n --base-color-errorstate: #eb0a0a;\n --base-color-mediumstate: #ffce45;\n --base-color-goodstate: #2a874a;\n --base-color-progress: #1866dc;\n --base-color-navigation: #c8102e;\n --base-color-lapislazuli: #0060a0;\n --base-color-lemonchiffon: #fffbbe;\n\n --button-height: 48px;\n --button-line-height: 20px;\n --button-padding-x: 20px;\n --button-padding-y: 14px;\n --button-padding-y-icon: 12px;\n --button-icon-margin: 12px;\n --button-icon-width: 20px;\n --button-icon-height: 20px;\n --button-font-size: 14px;\n --button-font-weight: 400;\n --button-color: var(--color-base-white);\n --button-bg-color: var(--color-primary-red);\n --button-hover-color: var(--color-rbo-red-hovered);\n --button-pressed-color: var(--color-rbo-red-pressed);\n --button-secondary-color: var(--color-primary-red);\n --button-secondary-hover-color: var(--color-rbo-red-hovered);\n --button-secondary-pressed-color: var(--color-rbo-red-pressed);\n --button-tertiary-color: var(--color-primary-black);\n --button-tertiary-hover-color: var(--color-rbo-black-hovered);\n --button-tertiary-pressed-color: var(--color-rbo-black-pressed);\n --button-auxiliary-color: var(--color-primary-black);\n --button-auxiliary-bg-color: var(--color-base-transparent);\n --button-anchor-tab-color: var(--color-primary-red);\n\n /* ----- Variables already used in Harmonic START ----- */\n --grid-column-gap: 36px;\n --grid-margin: 10%;\n\n --rotator-button-width: 60px;\n --rotator-button-icon-width: 36px;\n --rotator-button-small-width: 44px;\n --rotator-button-small-icon-width: 28px;\n --rotator-button-color: var(--color-primary-black);\n --rotator-button-bg-color: var(--color-base-light-grey);\n --rotator-button-hover-color: var(--color-base-white);\n --rotator-button-hover-bg-color: var(--color-primary-red);\n\n --carousel-image-caption-margin: 12px;\n\n --line-height-listing: 36px;\n\n --upsell-border-color: var(--color-primary-red);\n\n --font-feature-settings-body: 'pnum' on, 'onum' on, 'liga' off;\n --font-feature-settings-header: 'tnum' on, 'lnum' on;\n --font-feature-settings-subtitle: 'tnum' on, 'lnum' on;\n\n --text-transform-body: none;\n --text-transform-header: uppercase;\n --text-transform-subtitle: uppercase;\n\n @media (max-width: 699px) {\n --grid-column-gap: 12px;\n --grid-margin: 20px;\n --rotator-button-width: 40px;\n --rotator-button-icon-width: 24px;\n\n --line-height-listing: 34px;\n\n --font-feature-settings-body: 'pnum' on, 'onum' on, 'liga' off;\n --font-feature-settings-header: 'tnum' on, 'lnum' on;\n --font-feature-settings-subtitle: 'tnum' on, 'lnum' on;\n\n --text-transform-body: none;\n --text-transform-header: uppercase;\n --text-transform-subtitle: uppercase;\n }\n\n @media (min-width: 700px) and (max-width: 1139px) {\n --grid-column-gap: 20px;\n --grid-margin: 32px;\n --rotator-button-width: 44px;\n --rotator-button-icon-width: 24px;\n }\n\n /* ----- Variables already used in Harmonic END ----- */\n\n --font-size-header-1: 96px;\n --font-weight-header-1: 500;\n --letter-spacing-header-1: 2px;\n --line-height-header-1: 110px;\n --margin-header-1: 0.67em 0;\n\n --font-size-header-2: 68px;\n --font-weight-header-2: 500;\n --letter-spacing-header-2: 1px;\n --line-height-header-2: 72px;\n --margin-header-2: 0.83em 0;\n\n --font-size-header-3: 44px;\n --font-weight-header-3: 500;\n --letter-spacing-header-3: 1px;\n --line-height-header-3: 48px;\n --margin-header-3: 1em 0;\n\n --font-size-header-4: 34px;\n --font-weight-header-4: 500;\n --letter-spacing-header-4: 1px;\n --line-height-header-4: 40px;\n --margin-header-4: 1.33em 0;\n\n --font-size-header-5: 24px;\n --font-weight-header-5: 500;\n --letter-spacing-header-5: 1px;\n --line-height-header-5: 30px;\n --margin-header-5: 1.67em 0;\n\n --font-size-header-6: 20px;\n --font-weight-header-6: 500;\n --letter-spacing-header-6: 1px;\n --line-height-header-6: 28px;\n --margin-header-6: 2.33em 0;\n\n --font-size-altHeader-3: 44px;\n --font-weight-altHeader-3: normal;\n --letter-spacing-altHeader-3: normal;\n --line-height-altHeader-3: 48px;\n\n --font-size-altHeader-4: 34px;\n --font-weight-altHeader-4: normal;\n --letter-spacing-altHeader-4: normal;\n --line-height-altHeader-4: 44px;\n\n --font-size-altHeader-5: 24px;\n --font-weight-altHeader-5: normal;\n --letter-spacing-altHeader-5: normal;\n --line-height-altHeader-5: 30px;\n\n --font-size-altHeader-6: 20px;\n --font-weight-altHeader-6: normal;\n --letter-spacing-altHeader-6: normal;\n --line-height-altHeader-6: 28px;\n\n --font-size-overline-1: 14px;\n --font-weight-overline-1: 500;\n --letter-spacing-overline-1: 1px;\n --line-height-overline-1: 16px;\n\n --font-size-overline-2: 12px;\n --font-weight-overline-2: 500;\n --letter-spacing-overline-2: 1px;\n --line-height-overline-2: 14px;\n\n --font-size-overline-3: 10px;\n --font-weight-overline-3: 500;\n --letter-spacing-overline-3: 1px;\n --line-height-overline-3: 12px;\n\n --font-size-overline-4: 8px;\n --font-weight-overline-4: 500;\n --letter-spacing-overline-4: 1px;\n --line-height-overline-4: 10px;\n\n --font-size-body-1: 19px;\n --font-weight-body-1: 400;\n --letter-spacing-body-1: normal;\n --line-height-body-1: 26px;\n\n --font-size-body-2: 16px;\n --font-weight-body-2: 400;\n --letter-spacing-body-2: normal;\n --line-height-body-2: 22px;\n\n --font-size-body-3: 14px;\n --font-weight-body-3: 400;\n --letter-spacing-body-3: normal;\n --line-height-body-3: 20px;\n\n --font-size-subtitle-1: 18px;\n --font-weight-subtitle-1: 500;\n --letter-spacing-subtitle-1: 1px;\n --line-height-subtitle-1: 22px;\n\n --font-size-subtitle-2: 14px;\n --font-weight-subtitle-2: 500;\n --letter-spacing-subtitle-2: 1px;\n --line-height-subtitle-2: 22px;\n\n --font-size-title-description: 20px;\n --line-height-title-description: 28px;\n\n --font-size-individual-listing-name: 19px;\n --line-height-individual-listing-name: 24px;\n --line-height-people-listing-gap: 24px;\n\n --font-family-header: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-altHeader: 'adobe-garamond-pro';\n --font-family-body: 'adobe-garamond-pro';\n --font-family-body-italics: 'adobe-garamond-pro';\n --font-family-buttons: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-overline: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-subtitle: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-people-listing-role: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-people-listing-name: 'adobe-garamond-pro';\n\n --font-feature-settings-altHeader: 'pnum' on, 'onum' on;\n --font-feature-settings-overline: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n --font-feature-settings-navigation: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n\n --text-transform-altHeader: none;\n --text-transform-overline: uppercase;\n\n --word-break-header: break-word;\n --word-break-altHeader: break-word;\n --word-break-body: break-word;\n --word-break-overline: break-word;\n --word-break-subtitle: break-word;\n\n --font-family-navigation: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-size-navigation: 13px;\n --font-weight-navigation: 500;\n --line-height-navigation: 16px;\n --text-transform-navigation: uppercase;\n --letter-spacing-navigation: 1px;\n\n --navigation-small-gap: 16px;\n --navigation-middle-gap: 20px;\n --navigation-large-gap: 24px;\n --navigation-xlarge-gap: 36px;\n --navigation-large-margin: 60px;\n\n --font-size-search: 24px;\n --font-family-search: 'adobe-garamond-pro';\n\n --grid-outer-margin: 50px;\n --grid-template-columns: 14px calc(10% - 86px) repeat(12, minmax(0, 1fr)) calc(10% - 86px) 14px;\n\n --footer-height: 380px;\n --footer-padding-top: 44px;\n --footer-padding-bottom: 44px;\n --footer-items-gap: 32px;\n --footer-media-gap: 32px;\n --footer-media-icon-width: 24px;\n --footer-media-icon-height: 24px;\n --footer-vertical-spacing-lg: 58px;\n --footer-vertical-spacing-sm: 16px;\n\n --text-link-underline-offset: 8px;\n --cards-spacing-stack: 40px;\n\n --editorial-subtitle-margin-bottom: 16px;\n --editorial-margin-between: 24px;\n --editorial-spacing-hover: 4px;\n --anchor-tabs-height: 70px;\n\n --font-family-sans: 'GreyLLTT', 'Roboto', sans-serif;\n --font-family-serif: 'VictorSerif', 'Inria Serif Regular', serif;\n\n --harmonic-text-link-underline-offset: 4px;\n --harmonic-font-size-navigation: 19px;\n\n --announcement-banner-color: var(--color-base-white);\n --announcement-banner-bg-color: var(--color-primary-red);\n --announcement-banner-hover-color: var(--color-white-hovered);\n --announcement-banner-pressed-color: var(--color-white-pressed);\n\n --information-panel-color: var(--color-base-white);\n --information-panel-bg-color: var(--color-primary-red);\n --information-panel-button-color: var(--color-primary-black);\n --information-panel-button-bg-color: var(--color-base-white);\n --information-panel-button-hover-color: var(--color-white-hovered);\n --information-panel-button-pressed-color: var(--color-white-pressed);\n\n --heading-promo-bg-color: var(--color-primary-red);\n --page-header-bg-color: var(--color-primary-red);\n\n @media (max-width: 699px) {\n --font-size-header-1: 38px;\n --font-weight-header-1: 500;\n --letter-spacing-header-1: 1px;\n --line-height-header-1: 42px;\n\n --font-size-header-2: 30px;\n --font-weight-header-2: 500;\n --letter-spacing-header-2: 1px;\n --line-height-header-2: 34px;\n\n --font-size-header-3: 26px;\n --font-weight-header-3: 500;\n --letter-spacing-header-3: 1px;\n --line-height-header-3: 30px;\n\n --font-size-header-4: 24px;\n --font-weight-header-4: 500;\n --letter-spacing-header-4: 1px;\n --line-height-header-4: 28px;\n\n --font-size-header-5: 20px;\n --font-weight-header-5: 500;\n --letter-spacing-header-5: 1px;\n --line-height-header-5: 28px;\n\n --font-size-header-6: 17px;\n --font-weight-header-6: 500;\n --letter-spacing-header-6: 1px;\n --line-height-header-6: 24px;\n\n --font-size-altHeader-3: 26px;\n --font-weight-altHeader-3: normal;\n --letter-spacing-altHeader-3: normal;\n --line-height-altHeader-3: 30px;\n\n --font-size-altHeader-4: 24px;\n --font-weight-altHeader-4: normal;\n --letter-spacing-altHeader-4: normal;\n --line-height-altHeader-4: 28px;\n\n --font-size-altHeader-5: 20px;\n --font-weight-altHeader-5: normal;\n --letter-spacing-altHeader-5: normal;\n --line-height-altHeader-5: 28px;\n\n --font-size-altHeader-6: 17px;\n --font-weight-altHeader-6: normal;\n --letter-spacing-altHeader-6: normal;\n --line-height-altHeader-6: 24px;\n\n --font-size-overline-1: 14px;\n --font-weight-overline-1: 500;\n --letter-spacing-overline-1: 1px;\n --line-height-overline-1: 16px;\n\n --font-size-overline-2: 12px;\n --font-weight-overline-2: 500;\n --letter-spacing-overline-2: 1px;\n --line-height-overline-2: 14px;\n\n --font-size-body-1: 17px;\n --font-weight-body-1: 400;\n --letter-spacing-body-1: normal;\n --line-height-body-1: 24px;\n\n --font-size-body-2: 12px;\n --font-weight-body-2: 400;\n --letter-spacing-body-2: normal;\n --line-height-body-2: 18px;\n\n --font-size-body-3: 11px;\n --font-weight-body-3: 400;\n --letter-spacing-body-3: normal;\n --line-height-body-3: 16px;\n\n --font-size-subtitle-1: 16px;\n --font-weight-subtitle-1: 500;\n --letter-spacing-subtitle-1: 1px;\n --line-height-subtitle-1: 24px;\n\n --font-size-subtitle-2: 14px;\n --font-weight-subtitle-2: 500;\n --letter-spacing-subtitle-2: 1px;\n --line-height-subtitle-2: 18px;\n\n --font-size-title-description: 17px;\n --line-height-title-description: 24px;\n --line-height-people-listing-gap: 16px;\n\n --font-size-search: 20px;\n --font-family-search: 'adobe-garamond-pro';\n\n --font-family-header: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-altHeader: 'adobe-garamond-pro';\n --font-family-body: 'adobe-garamond-pro';\n --font-family-body-italics: 'adobe-garamond-pro';\n --font-family-buttons: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-overline: 'Gotham SSm Medium', sans-serif;\n --font-family-subtitle: 'Gotham SSm Medium', 'Montserrat', sans-serif;\n --font-family-people-listing-role: 'Gotham SSm A', 'Gotham SSm B', 'Montserrat', sans-serif;\n --font-family-people-listing-name: 'adobe-garamond-pro';\n\n --font-feature-settings-altHeader: 'pnum' on, 'onum' on;\n --font-feature-settings-overline: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n --font-feature-settings-navigation: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n\n --text-transform-altHeader: none;\n --text-transform-overline: uppercase;\n\n --word-break-header: break-word;\n --word-break-altHeader: break-word;\n --word-break-body: break-word;\n --word-break-overline: break-word;\n --word-break-subtitle: break-word;\n\n --grid-template-columns: calc(20px - 12px) repeat(12, minmax(0, 1fr)) calc(20px - 12px);\n\n --footer-height: auto;\n --footer-padding-top: 20px;\n --footer-padding-bottom: 20px;\n --footer-items-gap: 12px;\n --footer-media-icon-width: 28px;\n --footer-media-icon-height: 28px;\n --footer-vertical-spacing-lg: 24px;\n --footer-vertical-spacing-sm: 24px;\n\n --anchor-tabs-height: 60px;\n }\n\n @media (min-width: 700px) and (max-width: 1139px) {\n --grid-template-columns: calc(32px - 20px) repeat(12, minmax(0, 1fr)) calc(32px - 20px);\n --font-size-header-6: 17px;\n --font-size-altHeader-4: 24px;\n --font-size-body-1: 17px;\n\n --footer-media-gap: 24px;\n --footer-padding-top: 40px;\n --footer-padding-bottom: 40px;\n }\n}\n";
|
|
7633
7543
|
var coreThemeStyles = {"coreTheme":"core-theme-module_coreTheme__pWxYB"};
|
|
7634
|
-
styleInject(css_248z$
|
|
7544
|
+
styleInject(css_248z$2);
|
|
7635
7545
|
|
|
7636
|
-
var css_248z$
|
|
7546
|
+
var css_248z$3 = ".stream-theme-module_streamTheme__lTfqQ {\n /* Stream theme overrides */\n --base-color-primary: #1a1a1a;\n --color-primary: #1a1a1a;\n --color-primary-background: #1a1a1a;\n --color-primary-button: #1a1a1a;\n --color-secondary-button: #ffffff;\n --color-tertiary-button: transparent;\n --color-auxiliary-button: transparent;\n --color-primary-button-reverse-bg: #1a1a1a;\n --color-primary-button-reverse: #ffffff;\n\n --color-border-basic: #DDDDDD;\n --color-input-basic: #727272;\n --color-border-secondary: #F0F0F0;\n --color-container-backgroud: #F6F6F6;\n --color-rbo-error: #CC071E;\n\n --button-color: var(--color-base-white);\n --button-bg-color: var(--color-primary-black);\n --button-hover-color: var(--color-black-hovered);\n --button-pressed-color: var(--color-black-pressed);\n --button-secondary-color: var(--color-primary-black);\n --button-secondary-hover-color: var(--color-black-hovered);\n --button-secondary-pressed-color: var(--color-black-pressed);\n --button-tertiary-color: var(--color-primary-black);\n --button-tertiary-hover-color: var(--color-rbo-black-hovered);\n --button-tertiary-pressed-color: var(--color-rbo-black-pressed);\n --button-anchor-tab-color: var(--color-primary-black);\n\n --rotator-button-color: var(--color-base-black);\n --rotator-button-bg-color: var(--color-base-light-grey);\n --rotator-button-hover-color: var(--color-base-white);\n --rotator-button-hover-bg-color: var(--color-primary-black);\n\n --announcement-banner-color: var(--color-base-white);\n --announcement-banner-bg-color: var(--color-primary-black);\n --announcement-banner-hover-color: var(--color-white-hovered);\n --announcement-banner-pressed-color: var(--color-white-pressed);\n\n --information-panel-color: var(--color-base-white);\n --information-panel-bg-color: var(--color-primary-black);\n\n --heading-promo-bg-color: var(--color-base-black);\n --page-header-bg-color: var(--color-primary-black);\n\n --upsell-border-color: var(--color-primary-black);\n}\n";
|
|
7637
7547
|
var streamThemeStyles = {"streamTheme":"stream-theme-module_streamTheme__lTfqQ"};
|
|
7638
|
-
styleInject(css_248z$
|
|
7548
|
+
styleInject(css_248z$3);
|
|
7639
7549
|
|
|
7640
|
-
var css_248z$
|
|
7550
|
+
var css_248z$4 = ".cinema-theme-module_cinemaTheme__f5QFs {\n /* White */\n --base-color-primary: #1a1a1a;\n --color-primary: #1a1a1a;\n --color-primary-button: #ffffff;\n --color-primary-background: #1a1a1a;\n --color-primary-button-reverse-bg: #ffffff;\n --color-primary-button-reverse: #1a1a1a;\n --color-secondary-button: #ffffff;\n --color-tertiary-button: transparent;\n --color-auxiliary-button: transparent;\n --color-white-hovered: #fafafa;\n --color-white-pressed: #f2f2f2;\n\n --button-color: var(--color-primary-black);\n --button-bg-color: var(--color-base-white);\n --button-hover-color: var(--color-white-hovered);\n --button-pressed-color: var(--color-white-pressed);\n --button-secondary-color: var(--color-base-white);\n --button-secondary-hover-color: var(--color-white-hovered);\n --button-secondary-pressed-color: var(--color-white-pressed);\n --button-tertiary-color: var(--color-base-white);\n --button-tertiary-hover-color: var(--color-white-hovered);\n --button-tertiary-pressed-color: var(--color-white-pressed);\n --button-anchor-tab-color: var(--color-primary-black);\n\n --rotator-button-color: var(--color-primary-black);\n --rotator-button-bg-color: var(--color-base-light-grey);\n --rotator-button-hover-color: var(--color-base-white);\n --rotator-button-hover-bg-color: var(--color-primary-black);\n\n --announcement-banner-color: var(--color-primary-red);\n --announcement-banner-bg-color: var(--color-base-white);\n --announcement-banner-hover-color: var(--color-rbo-red-hovered);\n --announcement-banner-pressed-color: var(--color-rbo-red-pressed);\n\n --information-panel-color: var(--color-primary-black);\n --information-panel-bg-color: var(--color-base-white);\n --information-panel-button-color: var(--color-base-white);\n --information-panel-button-bg-color: var(--color-primary-red);\n --information-panel-button-hover-color: var(--color-rbo-red-hovered);\n --information-panel-button-pressed-color: var(--color-rbo-red-pressed);\n\n --heading-promo-bg-color: var(--color-base-white);\n --page-header-bg-color: var(--color-primary-black);\n\n --upsell-border-color: var(--color-primary-black);\n}\n";
|
|
7641
7551
|
var cinemaThemeStyles = {"cinemaTheme":"cinema-theme-module_cinemaTheme__f5QFs"};
|
|
7642
|
-
styleInject(css_248z$
|
|
7552
|
+
styleInject(css_248z$4);
|
|
7643
7553
|
|
|
7644
|
-
var css_248z$
|
|
7554
|
+
var css_248z$5 = ".schools-theme-module_schoolsTheme__CWHba {\n /* Schools theme overrides */\n --base-color-primary: #c8102e;\n --color-primary: #c8102e;\n --color-primary-button: #c8102e;\n --color-primary-button-reverse-bg: #1a1a1a;\n --color-primary-button-reverse: #ffffff;\n --color-secondary-button: #ffffff;\n --color-tertiary-button: transparent;\n --color-auxiliary-button: transparent;\n\n --text-transform-header: none;\n --text-transform-altHeader: none;\n --text-transform-body: none;\n --text-transform-overline: none;\n --text-transform-subtitle: none;\n --text-transform-navigation: uppercase;\n\n @media only screen and (max-width: calc(var(--breakpoint-sm) - 1px)) {\n --text-transform-header: none;\n --text-transform-altHeader: none;\n --text-transform-body: none;\n --text-transform-overline: none;\n --text-transform-subtitle: none;\n --text-transform-navigation: uppercase;\n }\n}\n";
|
|
7645
7555
|
var schoolsThemeStyles = {"schoolsTheme":"schools-theme-module_schoolsTheme__CWHba"};
|
|
7646
|
-
styleInject(css_248z$
|
|
7556
|
+
styleInject(css_248z$5);
|
|
7647
7557
|
|
|
7648
7558
|
/* eslint-disable react/jsx-no-useless-fragment */
|
|
7649
7559
|
var DEFAULT_THEME = ThemeType.Core;
|
|
@@ -9060,7 +8970,7 @@ var CreditListingWrapper = /*#__PURE__*/styled(PeopleListingGrid)(_templateObjec
|
|
|
9060
8970
|
return "repeat(" + columnCount + ", 1fr)";
|
|
9061
8971
|
}, devices.mobile, devices.tablet);
|
|
9062
8972
|
var DescriptionWrapper = /*#__PURE__*/styled.div(_templateObject3$A || (_templateObject3$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-darkgrey);\n p {\n line-height: 25px;\n margin-bottom: 3px;\n }\n"])));
|
|
9063
|
-
var RoleWrapper = /*#__PURE__*/styled.div(_templateObject4$v || (_templateObject4$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow-wrap: break-word;\n min-height: 1.5em;\n"])));
|
|
8973
|
+
var RoleWrapper = /*#__PURE__*/styled.div(_templateObject4$v || (_templateObject4$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-darkgrey);\n overflow-wrap: break-word;\n min-height: 1.5em;\n"])));
|
|
9064
8974
|
|
|
9065
8975
|
// Get the total character length of a property in an array of objects
|
|
9066
8976
|
var getConcatenatedPropLength = function getConcatenatedPropLength(array, prop) {
|
|
@@ -9108,8 +9018,7 @@ var CreditListing = function CreditListing(_ref) {
|
|
|
9108
9018
|
_ref$largeColumnSpan = _ref.largeColumnSpan,
|
|
9109
9019
|
largeColumnSpan = _ref$largeColumnSpan === void 0 ? DEFAULT_LARGE_COLUMN_SPAN : _ref$largeColumnSpan,
|
|
9110
9020
|
_ref$characterThresho = _ref.characterThreshold,
|
|
9111
|
-
characterThreshold = _ref$characterThresho === void 0 ? DEFAULT_CHARACTER_THRESHOLD : _ref$characterThresho
|
|
9112
|
-
className = _ref.className;
|
|
9021
|
+
characterThreshold = _ref$characterThresho === void 0 ? DEFAULT_CHARACTER_THRESHOLD : _ref$characterThresho;
|
|
9113
9022
|
var creditEntries = [];
|
|
9114
9023
|
var nextColumnStart = 1;
|
|
9115
9024
|
roles.forEach(function (_ref2, index) {
|
|
@@ -9150,21 +9059,20 @@ var CreditListing = function CreditListing(_ref) {
|
|
|
9150
9059
|
columnSpanSmallDevice: 1,
|
|
9151
9060
|
key: "credit-entry-" + name + "-" + index,
|
|
9152
9061
|
"data-testid": "credit-entry"
|
|
9153
|
-
}, /*#__PURE__*/React__default.createElement(TextWrapper$1, {
|
|
9154
|
-
className: className
|
|
9155
|
-
}, /*#__PURE__*/React__default.createElement(RoleWrapper, {
|
|
9062
|
+
}, /*#__PURE__*/React__default.createElement(TextWrapper$1, null, /*#__PURE__*/React__default.createElement(RoleWrapper, {
|
|
9156
9063
|
title: "role",
|
|
9157
9064
|
"data-roh": dataROH
|
|
9158
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
9159
|
-
|
|
9160
|
-
|
|
9161
|
-
}, name)), description && (/*#__PURE__*/React__default.createElement(DescriptionWrapper, null, /*#__PURE__*/React__default.createElement(
|
|
9162
|
-
|
|
9163
|
-
|
|
9065
|
+
}, /*#__PURE__*/React__default.createElement(Overline, {
|
|
9066
|
+
level: 1,
|
|
9067
|
+
tag: "p"
|
|
9068
|
+
}, name)), description && (/*#__PURE__*/React__default.createElement(DescriptionWrapper, null, /*#__PURE__*/React__default.createElement(Overline, {
|
|
9069
|
+
level: 3,
|
|
9070
|
+
tag: "p"
|
|
9164
9071
|
}, description))), personArrays.map(function (personArray, arrayIndex) {
|
|
9165
|
-
return /*#__PURE__*/React__default.createElement(
|
|
9072
|
+
return /*#__PURE__*/React__default.createElement(BodyText, {
|
|
9166
9073
|
key: "personArray" + arrayIndex,
|
|
9167
|
-
|
|
9074
|
+
level: 1,
|
|
9075
|
+
tag: "p"
|
|
9168
9076
|
}, personArray.map(function (person, personIndex) {
|
|
9169
9077
|
return /*#__PURE__*/React__default.createElement(Person, {
|
|
9170
9078
|
key: "" + person.name + personIndex,
|
|
@@ -9172,14 +9080,17 @@ var CreditListing = function CreditListing(_ref) {
|
|
|
9172
9080
|
withSeparator: personArray.length !== personIndex + 1
|
|
9173
9081
|
});
|
|
9174
9082
|
}));
|
|
9175
|
-
}), replacement && (/*#__PURE__*/React__default.createElement(ReplacementWrapper, null, /*#__PURE__*/React__default.createElement(
|
|
9176
|
-
|
|
9177
|
-
|
|
9178
|
-
|
|
9083
|
+
}), replacement && (/*#__PURE__*/React__default.createElement(ReplacementWrapper, null, /*#__PURE__*/React__default.createElement(BodyText, {
|
|
9084
|
+
level: 1,
|
|
9085
|
+
tag: "p"
|
|
9086
|
+
}, replacement))), musicTitle && musicTitle.length > 0 && (/*#__PURE__*/React__default.createElement(BodyText, {
|
|
9087
|
+
level: 1,
|
|
9088
|
+
tag: "p",
|
|
9179
9089
|
key: "music-" + musicTitle + "-text"
|
|
9180
|
-
}, concatenateMusicTitle(musicTitle, index))), additionalInfo && /*#__PURE__*/React__default.createElement(
|
|
9181
|
-
|
|
9182
|
-
|
|
9090
|
+
}, concatenateMusicTitle(musicTitle, index))), additionalInfo && (/*#__PURE__*/React__default.createElement(BodyText, {
|
|
9091
|
+
level: 1,
|
|
9092
|
+
tag: "p"
|
|
9093
|
+
}, additionalInfo)))));
|
|
9183
9094
|
});
|
|
9184
9095
|
return /*#__PURE__*/React__default.createElement(CreditListingWrapper, {
|
|
9185
9096
|
columnCount: columnCount
|
|
@@ -9286,7 +9197,7 @@ var _excluded$m = ["text"],
|
|
|
9286
9197
|
_excluded3$1 = ["text"];
|
|
9287
9198
|
var _buttonTypeToButton$1;
|
|
9288
9199
|
var LENGTH_TEXT$1 = 28;
|
|
9289
|
-
var LENGTH_TEXT_PARAGRAPH =
|
|
9200
|
+
var LENGTH_TEXT_PARAGRAPH = 130;
|
|
9290
9201
|
var buttonTypeToButton$1 = (_buttonTypeToButton$1 = {}, _buttonTypeToButton$1[ButtonType.Primary] = PrimaryButton, _buttonTypeToButton$1[ButtonType.Secondary] = SecondaryButton, _buttonTypeToButton$1[ButtonType.Tertiary] = TertiaryButton, _buttonTypeToButton$1);
|
|
9291
9202
|
var PromoWithTags = function PromoWithTags(_ref) {
|
|
9292
9203
|
var _ref$imagePosition = _ref.imagePosition,
|
|
@@ -10586,46 +10497,17 @@ var NavTop = function NavTop(_ref) {
|
|
|
10586
10497
|
};
|
|
10587
10498
|
|
|
10588
10499
|
var _templateObject$1h, _templateObject2$Z, _templateObject3$M, _templateObject4$C, _templateObject5$v;
|
|
10589
|
-
var ReadMoreContainer = /*#__PURE__*/styled.div(_templateObject$1h || (_templateObject$1h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n h1,\n h2,\n h3 {\n margin: 0px 0px 12px 0px !important;\n }\n
|
|
10590
|
-
var LinkContainer = /*#__PURE__*/styled.div(_templateObject2$Z || (_templateObject2$Z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding-top:
|
|
10591
|
-
var FullTextContainer = /*#__PURE__*/styled.div(_templateObject3$M || (_templateObject3$M = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n\n
|
|
10500
|
+
var ReadMoreContainer = /*#__PURE__*/styled.div(_templateObject$1h || (_templateObject$1h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n margin: 0px 0px 12px 0px !important;\n }\n width: 100%;\n"])));
|
|
10501
|
+
var LinkContainer = /*#__PURE__*/styled.div(_templateObject2$Z || (_templateObject2$Z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding-top: 24px;\n gap: 8px;\n\n :hover {\n cursor: pointer;\n }\n\n @media print {\n visibility: hidden;\n }\n"])));
|
|
10502
|
+
var FullTextContainer = /*#__PURE__*/styled.div(_templateObject3$M || (_templateObject3$M = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n\n @media print {\n visibility: visible;\n }\n"])), function (_ref) {
|
|
10592
10503
|
var isVisible = _ref.isVisible;
|
|
10593
10504
|
return isVisible ? 'visible' : 'hidden';
|
|
10594
10505
|
});
|
|
10595
|
-
var IntroTextContainer = /*#__PURE__*/styled.div(_templateObject4$C || (_templateObject4$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n\n
|
|
10506
|
+
var IntroTextContainer = /*#__PURE__*/styled.div(_templateObject4$C || (_templateObject4$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n\n @media print {\n visibility: hidden;\n }\n"])), function (_ref2) {
|
|
10596
10507
|
var isVisible = _ref2.isVisible;
|
|
10597
10508
|
return isVisible ? 'visible' : 'hidden';
|
|
10598
10509
|
});
|
|
10599
|
-
var ContentContainer$5 = /*#__PURE__*/styled.div(_templateObject5$v || (_templateObject5$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow: auto;\n transition: max-height 0.4s ease;\n font-family: var(--font-family-
|
|
10600
|
-
|
|
10601
|
-
var _templateObject$1i, _templateObject2$_;
|
|
10602
|
-
var TextLinkWrapper$4 = /*#__PURE__*/styled.a(_templateObject$1i || (_templateObject$1i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-bottom: 1px solid;\n font-family: var(--font-family-sans);\n font-size: 17px;\n line-height: 28px;\n color: var(--color-", ");\n width: fit-content;\n display: flex;\n align-items: center;\n cursor: pointer;\n text-decoration: none;\n"])), function (_ref) {
|
|
10603
|
-
var color = _ref.color;
|
|
10604
|
-
return color;
|
|
10605
|
-
});
|
|
10606
|
-
var TextLinkIconWrapper$1 = /*#__PURE__*/styled.span(_templateObject2$_ || (_templateObject2$_ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: var(--button-icon-width);\n height: var(--button-icon-height);\n margin-left: var(--button-icon-margin);\n"])));
|
|
10607
|
-
|
|
10608
|
-
var _excluded$r = ["children", "iconName", "iconDirection", "textColor", "disableTruncation"];
|
|
10609
|
-
var ReadMoreTextLink = function ReadMoreTextLink(_ref) {
|
|
10610
|
-
var children = _ref.children,
|
|
10611
|
-
iconName = _ref.iconName,
|
|
10612
|
-
iconDirection = _ref.iconDirection,
|
|
10613
|
-
textColor = _ref.textColor,
|
|
10614
|
-
_ref$disableTruncatio = _ref.disableTruncation,
|
|
10615
|
-
disableTruncation = _ref$disableTruncatio === void 0 ? false : _ref$disableTruncatio,
|
|
10616
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$r);
|
|
10617
|
-
var truncatedString = disableTruncation ? children : children.substring(0, 30);
|
|
10618
|
-
return /*#__PURE__*/React__default.createElement(TextLinkWrapper$4, Object.assign({
|
|
10619
|
-
color: textColor,
|
|
10620
|
-
iconName: iconName
|
|
10621
|
-
}, rest), truncatedString, iconName ? (/*#__PURE__*/React__default.createElement(TextLinkIconWrapper$1, {
|
|
10622
|
-
"data-testid": "text-link-icon"
|
|
10623
|
-
}, /*#__PURE__*/React__default.createElement(Icon, {
|
|
10624
|
-
iconName: iconName,
|
|
10625
|
-
direction: iconDirection,
|
|
10626
|
-
color: textColor
|
|
10627
|
-
}))) : null);
|
|
10628
|
-
};
|
|
10510
|
+
var ContentContainer$5 = /*#__PURE__*/styled.div(_templateObject5$v || (_templateObject5$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow: auto;\n transition: max-height 0.4s ease;\n font-size: var(--font-size-body-1);\n font-family: var(--font-family-body);\n font-feature-settings: var(--font-feature-settings-body);\n font-weight: var(--font-weight-body-1);\n letter-spacing: var(--letter-spacing-body-1);\n line-height: var(--line-height-body-1);\n text-transform: var(--text-transform-body);\n\n & h1 {\n font-size: var(--font-size-header-4);\n font-family: var(--font-family-header);\n font-feature-settings: var(--font-feature-settings-header);\n font-weight: var(--font-weight-header-4);\n letter-spacing: var(--letter-spacing-header-4);\n line-height: var(--line-height-header-4);\n text-transform: var(--text-transform-header);\n white-space: break-spaces;\n overflow-wrap: break-word;\n }\n\n & h2 {\n font-size: var(--font-size-subtitle-1);\n font-family: var(--font-family-subtitle);\n font-feature-settings: var(--font-feature-settings-subtitle);\n font-weight: var(--font-weight-subtitle-1);\n letter-spacing: var(--letter-spacing-subtitle-1);\n line-height: var(--line-height-subtitle-1);\n text-transform: var(--text-transform-subtitle);\n white-space: break-spaces;\n overflow-wrap: break-word;\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 @media print {\n visibility: visible;\n max-height: 900px !important;\n }\n"])));
|
|
10629
10511
|
|
|
10630
10512
|
var keyDown = function keyDown(e, toggleFunction) {
|
|
10631
10513
|
if (e.key === 'Enter' || e.key === 'Space') {
|
|
@@ -10644,8 +10526,7 @@ var ReadMore = function ReadMore(_ref) {
|
|
|
10644
10526
|
hideText = _ref.hideText,
|
|
10645
10527
|
characterLimit = _ref.characterLimit,
|
|
10646
10528
|
_ref$truncate = _ref.truncate,
|
|
10647
|
-
truncate = _ref$truncate === void 0 ? true : _ref$truncate
|
|
10648
|
-
className = _ref.className;
|
|
10529
|
+
truncate = _ref$truncate === void 0 ? true : _ref$truncate;
|
|
10649
10530
|
var _useState = useState(initOpen),
|
|
10650
10531
|
isFullTextOpen = _useState[0],
|
|
10651
10532
|
setIsFullTextOpen = _useState[1];
|
|
@@ -10682,15 +10563,14 @@ var ReadMore = function ReadMore(_ref) {
|
|
|
10682
10563
|
var contentContainerId = title + "-read-more-content";
|
|
10683
10564
|
return /*#__PURE__*/React__default.createElement(AccordionContainer, {
|
|
10684
10565
|
tabIndex: 0,
|
|
10685
|
-
onKeyDown: handleKeyDown
|
|
10686
|
-
className: className,
|
|
10687
|
-
showTopLine: false
|
|
10566
|
+
onKeyDown: handleKeyDown
|
|
10688
10567
|
}, /*#__PURE__*/React__default.createElement(ReadMoreContainer, {
|
|
10689
10568
|
"aria-label": title,
|
|
10690
10569
|
"aria-expanded": isFullTextOpen,
|
|
10691
10570
|
"aria-controls": contentContainerId
|
|
10692
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
10693
|
-
|
|
10571
|
+
}, /*#__PURE__*/React__default.createElement(Header, {
|
|
10572
|
+
level: 5,
|
|
10573
|
+
semanticLevel: 3
|
|
10694
10574
|
}, title)), !isFullTextOpen && /*#__PURE__*/React__default.createElement(IntroText, null), /*#__PURE__*/React__default.createElement(ContentContainer$5, {
|
|
10695
10575
|
"data-testid": "richcontainer",
|
|
10696
10576
|
ref: readMoreContent,
|
|
@@ -10701,16 +10581,16 @@ var ReadMore = function ReadMore(_ref) {
|
|
|
10701
10581
|
}
|
|
10702
10582
|
}, /*#__PURE__*/React__default.createElement(FullTextContainer, {
|
|
10703
10583
|
isVisible: isFullTextOpen
|
|
10704
|
-
}, fullText)), /*#__PURE__*/React__default.createElement(LinkContainer, null, (fullText || isFullTextOpen) && (/*#__PURE__*/React__default.createElement(
|
|
10584
|
+
}, fullText)), /*#__PURE__*/React__default.createElement(LinkContainer, null, (fullText || isFullTextOpen) && (/*#__PURE__*/React__default.createElement(TextLink, {
|
|
10705
10585
|
tabIndex: 0,
|
|
10706
10586
|
role: "button",
|
|
10707
10587
|
onClick: toggleFullText
|
|
10708
10588
|
}, isFullTextOpen ? "" + hideText : "" + showMoreText))));
|
|
10709
10589
|
};
|
|
10710
10590
|
|
|
10711
|
-
var _templateObject$
|
|
10712
|
-
var MenuContainer$2 = /*#__PURE__*/styled.nav(_templateObject$
|
|
10713
|
-
var MenuList = /*#__PURE__*/styled.ul(_templateObject2
|
|
10591
|
+
var _templateObject$1i, _templateObject2$_, _templateObject3$N, _templateObject4$D, _templateObject5$w;
|
|
10592
|
+
var MenuContainer$2 = /*#__PURE__*/styled.nav(_templateObject$1i || (_templateObject$1i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n padding: 0;\n margin: 0;\n"])));
|
|
10593
|
+
var MenuList = /*#__PURE__*/styled.ul(_templateObject2$_ || (_templateObject2$_ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 0;\n margin: 0;\n list-style: none;\n border-right: 1px solid var(--base-color-", ");\n li {\n margin-left: -5px;\n }\n"])), Colors.LightGrey);
|
|
10714
10594
|
var MobileButton = /*#__PURE__*/styled.button(_templateObject3$N || (_templateObject3$N = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n line-height: var(--line-height-navigation);\n font-size: var(--font-size-navigation);\n font-family: var(--font-family-navigation);\n font-weight: var(--font-weight-navigation);\n letter-spacing: var(--letter-spacing-navigation);\n color: var(--base-color-", ");\n text-transform: uppercase;\n margin: 0;\n padding: 16px 46px 14px 20px;\n background: var(--base-color-", ");\n border: 1px solid var(--base-color-", ");\n border-radius: 0;\n display: block;\n width: 100%;\n text-align: left;\n cursor: pointer;\n position: relative;\n span {\n width: 25px;\n height: 25px;\n position: absolute;\n top: 50%;\n margin-top: -12px;\n right: 10px;\n }\n"])), Colors.Black, Colors.White, Colors.DarkGrey);
|
|
10715
10595
|
var MenuItem$1 = /*#__PURE__*/styled.a(_templateObject4$D || (_templateObject4$D = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n line-height: var(--line-height-navigation);\n font-size: var(--font-size-navigation);\n font-family: var(--font-family-navigation);\n font-weight: var(--font-weight-navigation);\n letter-spacing: var(--letter-spacing-navigation);\n color: var(--base-color-", ");\n text-transform: uppercase;\n text-decoration: none;\n margin: 0;\n padding: 16px 20px 15px 5px;\n display: block;\n background: ", ";\n cursor: pointer;\n &:hover {\n background: var(--base-color-", ");\n }\n"])), Colors.Black, function (_ref) {
|
|
10716
10596
|
var isActive = _ref.isActive;
|
|
@@ -10872,9 +10752,9 @@ var AuxiliaryNav = function AuxiliaryNav(_ref6) {
|
|
|
10872
10752
|
});
|
|
10873
10753
|
};
|
|
10874
10754
|
|
|
10875
|
-
var _templateObject$
|
|
10876
|
-
var Container$5 = /*#__PURE__*/styled.div(_templateObject$
|
|
10877
|
-
var Sections = /*#__PURE__*/styled.div(_templateObject2
|
|
10755
|
+
var _templateObject$1j, _templateObject2$$, _templateObject3$O, _templateObject4$E, _templateObject5$x, _templateObject6$o;
|
|
10756
|
+
var Container$5 = /*#__PURE__*/styled.div(_templateObject$1j || (_templateObject$1j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: 10px;\n"])));
|
|
10757
|
+
var Sections = /*#__PURE__*/styled.div(_templateObject2$$ || (_templateObject2$$ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n gap: 8px;\n"])));
|
|
10878
10758
|
var Section = /*#__PURE__*/styled.div(_templateObject3$O || (_templateObject3$O = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex: 1;\n height: 2px;\n background-color: ", ";\n"])), function (_ref) {
|
|
10879
10759
|
var color = _ref.color;
|
|
10880
10760
|
return "var(--base-color-" + color + ")";
|
|
@@ -10966,9 +10846,9 @@ var PasswordStrength = function PasswordStrength(_ref) {
|
|
|
10966
10846
|
}, strengthLabel))));
|
|
10967
10847
|
};
|
|
10968
10848
|
|
|
10969
|
-
var _templateObject$
|
|
10970
|
-
var TableContainer = /*#__PURE__*/styled.table(_templateObject$
|
|
10971
|
-
var Container$6 = /*#__PURE__*/styled.div(_templateObject2$
|
|
10849
|
+
var _templateObject$1k, _templateObject2$10, _templateObject3$P, _templateObject4$F, _templateObject5$y, _templateObject6$p, _templateObject7$j, _templateObject8$d;
|
|
10850
|
+
var TableContainer = /*#__PURE__*/styled.table(_templateObject$1k || (_templateObject$1k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-collapse: collapse;\n"])));
|
|
10851
|
+
var Container$6 = /*#__PURE__*/styled.div(_templateObject2$10 || (_templateObject2$10 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow-x: auto;\n"])));
|
|
10972
10852
|
var Wrapper$7 = /*#__PURE__*/styled.div(_templateObject3$P || (_templateObject3$P = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n"])));
|
|
10973
10853
|
var TableHeader = /*#__PURE__*/styled.th(_templateObject4$F || (_templateObject4$F = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 12px;\n text-align: left;\n text-transform: capitalize;\n border: 1px solid var(--color-primary-black);\n\n &:last-child {\n white-space: nowrap;\n width: auto;\n }\n\n &:not(:last-child) {\n width: ", ";\n }\n\n @media ", " {\n &:last-child {\n white-space: nowrap;\n }\n }\n\n @media ", " {\n min-width: 150px;\n\n &:last-child {\n white-space: normal;\n }\n }\n"])), function (props) {
|
|
10974
10854
|
return "calc(100% / " + (props.columns - 1) + ")";
|
|
@@ -11181,15 +11061,15 @@ var Table = function Table(_ref) {
|
|
|
11181
11061
|
}))));
|
|
11182
11062
|
};
|
|
11183
11063
|
|
|
11184
|
-
var _templateObject$
|
|
11185
|
-
var Wrapper$8 = /*#__PURE__*/styled('div')(_templateObject$
|
|
11064
|
+
var _templateObject$1l, _templateObject2$11, _templateObject3$Q, _templateObject4$G, _templateObject5$z, _templateObject6$q, _templateObject7$k, _templateObject8$e, _templateObject9$8, _templateObject0$7, _templateObject1$5, _templateObject10$4, _templateObject11$3, _templateObject12$3, _templateObject13$2;
|
|
11065
|
+
var Wrapper$8 = /*#__PURE__*/styled('div')(_templateObject$1l || (_templateObject$1l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n border-top: 4px solid ", ";\n border-bottom: 4px solid ", ";\n"])), function (_ref) {
|
|
11186
11066
|
var theme = _ref.theme;
|
|
11187
11067
|
return "var(--color-" + theme + ")";
|
|
11188
11068
|
}, function (_ref2) {
|
|
11189
11069
|
var theme = _ref2.theme;
|
|
11190
11070
|
return "var(--color-" + theme + ")";
|
|
11191
11071
|
});
|
|
11192
|
-
var SignUpFormWrapper = /*#__PURE__*/styled(Grid)(_templateObject2$
|
|
11072
|
+
var SignUpFormWrapper = /*#__PURE__*/styled(Grid)(_templateObject2$11 || (_templateObject2$11 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n gap: 0 var(--grid-column-gap);\n margin-bottom: 32px;\n\n @media ", " {\n margin-bottom: 30px;\n }\n"])), devices.mobile);
|
|
11193
11073
|
var SignUpTitleWrapper = /*#__PURE__*/styled('div')(_templateObject3$Q || (_templateObject3$Q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-align: left;\n position: relative;\n top: -25px;\n left: -20px;\n height: 52px;\n background: var(--color-base-white);\n display: inline-block;\n padding: 0 20px;\n\n @media ", " {\n top: -18px;\n height: 37px;\n padding: 0 13px;\n left: -13px;\n }\n"])), devices.mobile);
|
|
11194
11074
|
var Error = /*#__PURE__*/styled.div(_templateObject4$G || (_templateObject4$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 20px;\n color: var(--color-base-errorstate);\n\n a {\n text-decoration: underline;\n color: inherit;\n }\n"])));
|
|
11195
11075
|
var Form = /*#__PURE__*/styled.form(_templateObject5$z || (_templateObject5$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 32px;\n align-items: center;\n ", " {\n margin-top: -20px;\n }\n a[href] {\n color: inherit;\n }\n"])), Error);
|
|
@@ -11608,10 +11488,10 @@ var SignUpFormComponent = function SignUpFormComponent(_ref) {
|
|
|
11608
11488
|
}))))));
|
|
11609
11489
|
};
|
|
11610
11490
|
|
|
11611
|
-
var _templateObject$
|
|
11612
|
-
var AnchorBarContainer = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
11491
|
+
var _templateObject$1m, _templateObject2$12, _templateObject4$H, _templateObject5$A;
|
|
11492
|
+
var AnchorBarContainer = /*#__PURE__*/styled(Grid)(_templateObject$1m || (_templateObject$1m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: sticky;\n top: 0;\n min-height: 70px;\n background: var(--color-base-white);\n z-index: ", ";\n align-content: center;\n border-bottom: 1px solid var(--color-base-light-grey);\n\n ", "\n\n @media ", " {\n min-height: 60px;\n }\n"])), zIndexes.anchor, function (_ref) {
|
|
11613
11493
|
var withShadow = _ref.withShadow;
|
|
11614
|
-
return withShadow && css(_templateObject2$
|
|
11494
|
+
return withShadow && css(_templateObject2$12 || (_templateObject2$12 = _taggedTemplateLiteralLoose(["\n box-shadow: var(--shadow-floating);\n "])));
|
|
11615
11495
|
}, devices.mobile);
|
|
11616
11496
|
var CloseButtonWrapper = /*#__PURE__*/styled.a(_templateObject4$H || (_templateObject4$H = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n text-decoration: none;\n display: flex;\n align-items: center;\n justify-content: center;\n min-height: 24px;\n min-width: 24px;\n max-height: 24px;\n max-width: 24px;\n border: none;\n padding: 0;\n background: none;\n\n :hover {\n cursor: pointer;\n }\n\n @media ", " {\n min-height: 12px;\n min-width: 12px;\n max-height: 12px;\n max-width: 12px;\n }\n"])), devices.mobile);
|
|
11617
11497
|
var ContentWrapper$2 = /*#__PURE__*/styled.a(_templateObject5$A || (_templateObject5$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n"])));
|
|
@@ -11672,12 +11552,12 @@ var AnchorBar = function AnchorBar(_ref) {
|
|
|
11672
11552
|
return null;
|
|
11673
11553
|
};
|
|
11674
11554
|
|
|
11675
|
-
var _templateObject$
|
|
11676
|
-
var FocusableTab = /*#__PURE__*/styled(Tab)(_templateObject$
|
|
11555
|
+
var _templateObject$1n, _templateObject2$13;
|
|
11556
|
+
var FocusableTab = /*#__PURE__*/styled(Tab)(_templateObject$1n || (_templateObject$1n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n &:not(:active):not(:focus) {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: 0;\n padding: 0;\n overflow: hidden;\n clip: rect(0 0 0 0);\n clip-path: inset(50%);\n border: 0;\n white-space: nowrap;\n user-select: none;\n }\n\n @media ", " {\n position: absolute;\n left: 10px;\n top: 10px;\n width: 80px;\n height: 44px;\n margin: 0;\n padding: 0;\n overflow: hidden;\n clip: auto;\n color: transparent;\n background: transparent;\n opacity: 0;\n border: 0;\n white-space: nowrap;\n user-select: none;\n }\n"])), function (_ref) {
|
|
11677
11557
|
var hide = _ref.hide;
|
|
11678
11558
|
return hide && "display: none;";
|
|
11679
11559
|
}, devices.mobileAndTablet);
|
|
11680
|
-
var HiddenBlock = /*#__PURE__*/styled.div(_templateObject2$
|
|
11560
|
+
var HiddenBlock = /*#__PURE__*/styled.div(_templateObject2$13 || (_templateObject2$13 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 29px 50px;\n display: inline-block;\n width: 100%;\n height: fit-content;\n border-bottom: solid 2px var(--color-base-light-grey);\n overflow: hidden;\n &:not(:has(div:focus)) {\n position: absolute;\n border-bottom: 0;\n padding: 0;\n }\n @media ", " {\n border-bottom: 0;\n position: absolute;\n padding: 0;\n }\n"])), devices.mobileAndTablet);
|
|
11681
11561
|
|
|
11682
11562
|
/**
|
|
11683
11563
|
* An accessible component which allows Assistive Technology users to move the focus
|
|
@@ -11769,15 +11649,15 @@ var SkipToMain = function SkipToMain(_ref) {
|
|
|
11769
11649
|
}));
|
|
11770
11650
|
};
|
|
11771
11651
|
|
|
11772
|
-
var _templateObject$
|
|
11652
|
+
var _templateObject$1o, _templateObject2$14, _templateObject3$R, _templateObject4$I, _templateObject5$B, _templateObject6$r, _templateObject7$l;
|
|
11773
11653
|
var color = 'primary-black';
|
|
11774
11654
|
var Button$2 = /*#__PURE__*/styled(SecondaryButton).attrs({
|
|
11775
11655
|
borderColor: color,
|
|
11776
11656
|
hoveredColor: color,
|
|
11777
11657
|
pressedColor: color,
|
|
11778
11658
|
textColor: color
|
|
11779
|
-
})(_templateObject$
|
|
11780
|
-
var Container$7 = /*#__PURE__*/styled.div(_templateObject2$
|
|
11659
|
+
})(_templateObject$1o || (_templateObject$1o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: 35px;\n margin-top: 33px;\n width: fit-content;\n\n @media ", " {\n margin-bottom: 33px;\n margin-top: 31px;\n }\n\n &:last-child {\n margin-bottom: 0;\n }\n"])), devices.mobile);
|
|
11660
|
+
var Container$7 = /*#__PURE__*/styled.div(_templateObject2$14 || (_templateObject2$14 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: 1px solid var(--color-", ");\n padding: 60px 59px 59px;\n\n @media ", " {\n padding: 35px 20px 34px;\n }\n"])), color, devices.mobile);
|
|
11781
11661
|
var Description = /*#__PURE__*/styled(BodyContentTextContainer)(_templateObject3$R || (_templateObject3$R = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n p {\n margin: 27px 0;\n\n @media ", " {\n margin: 20px 0;\n }\n }\n"])), devices.mobile);
|
|
11782
11662
|
var Heading = /*#__PURE__*/styled(HarmonicHeader).attrs({
|
|
11783
11663
|
serif: true,
|
|
@@ -11816,8 +11696,8 @@ var Paywall = function Paywall(_ref) {
|
|
|
11816
11696
|
}, "Sign in"))));
|
|
11817
11697
|
};
|
|
11818
11698
|
|
|
11819
|
-
var _templateObject$
|
|
11820
|
-
var Wrapper$9 = /*#__PURE__*/styled.div(_templateObject$
|
|
11699
|
+
var _templateObject$1p;
|
|
11700
|
+
var Wrapper$9 = /*#__PURE__*/styled.div(_templateObject$1p || (_templateObject$1p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n gap: 60px 74px;\n grid-template-columns: repeat(2, 1fr);\n width: 100%;\n\n @media ", " {\n gap: 40px 74px;\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n grid-template-columns: 1fr;\n }\n"])), devices.mobile);
|
|
11821
11701
|
|
|
11822
11702
|
var UpsellCards = function UpsellCards(_ref) {
|
|
11823
11703
|
var upsellCards = _ref.upsellCards,
|
|
@@ -12008,14 +11888,14 @@ var Navigation = function Navigation(_ref) {
|
|
|
12008
11888
|
})))))));
|
|
12009
11889
|
};
|
|
12010
11890
|
|
|
12011
|
-
var _templateObject$
|
|
12012
|
-
var FooterSection = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
12013
|
-
var PolicyLinksSection = /*#__PURE__*/styled(GridItem)(_templateObject2$
|
|
11891
|
+
var _templateObject$1q, _templateObject2$15, _templateObject3$S, _templateObject4$J, _templateObject5$C, _templateObject6$s, _templateObject7$m;
|
|
11892
|
+
var FooterSection = /*#__PURE__*/styled(Grid)(_templateObject$1q || (_templateObject$1q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: var(--color-base-black);\n color: var(--color-base-white);\n padding: 44px 0px;\n grid-template-areas: '. . policy policy policy policy social social social social logo logo logo logo . .';\n\n @media ", " {\n padding: 40px 0px;\n gap: 24px;\n }\n\n @media ", " {\n padding: 20px 0px;\n row-gap: 40px;\n grid-template-areas:\n '. social social social social social social social social social social social social .'\n '. policy policy policy policy policy policy policy policy policy policy policy policy .'\n '. logo logo logo logo logo logo logo logo logo logo logo logo .';\n }\n"])), devices.tablet, devices.mobile);
|
|
11893
|
+
var PolicyLinksSection = /*#__PURE__*/styled(GridItem)(_templateObject2$15 || (_templateObject2$15 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: policy;\n display: flex;\n flex-direction: column;\n gap: 16px;\n\n @media ", " {\n gap: 20px;\n }\n\n @media ", " {\n gap: 12px;\n }\n"])), devices.tablet, devices.mobile);
|
|
12014
11894
|
var SocialAndNewsletterSection = /*#__PURE__*/styled(GridItem)(_templateObject3$S || (_templateObject3$S = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: social;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n gap: 20px;\n\n @media ", " {\n gap: 40px;\n }\n"])), devices.mobile);
|
|
12015
11895
|
var SectionWrapper = /*#__PURE__*/styled.div(_templateObject4$J || (_templateObject4$J = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: 20px;\n\n @media ", " {\n gap: 24px;\n }\n"])), devices.mobile);
|
|
12016
11896
|
var LogoAndDescriptionSection = /*#__PURE__*/styled(GridItem)(_templateObject5$C || (_templateObject5$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: logo;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n\n @media ", " {\n gap: 24px;\n }\n"])), devices.mobile);
|
|
12017
11897
|
var SponsorLogoContainer = /*#__PURE__*/styled.div(_templateObject6$s || (_templateObject6$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-width: 290px;\n\n @media ", " {\n max-width: unset;\n }\n"])), devices.mobile);
|
|
12018
|
-
var TextLinkWrapper$
|
|
11898
|
+
var TextLinkWrapper$4 = /*#__PURE__*/styled(TextLink)(_templateObject7$m || (_templateObject7$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-sans);\n font-size: 17px;\n line-height: 24px;\n letter-spacing: 0.4px;\n color: var(--color-base-white);\n border-bottom: unset;\n text-decoration: underline;\n text-underline-offset: var(--harmonic-text-link-underline-offset);\n margin-bottom: 0;\n padding-bottom: 0;\n"])));
|
|
12019
11899
|
|
|
12020
11900
|
var SPONSOR_IMAGE_SOURCE = 'https://s3.eu-west-1.amazonaws.com/static.roh.org.uk/sponsorlogos/arts-council-england-invert.svg';
|
|
12021
11901
|
var Footer = function Footer(_ref) {
|
|
@@ -12044,14 +11924,14 @@ var Footer = function Footer(_ref) {
|
|
|
12044
11924
|
"data-testid": "contact-newsletter"
|
|
12045
11925
|
}, /*#__PURE__*/React__default.createElement(SectionWrapper, null, /*#__PURE__*/React__default.createElement(SocialLinks, {
|
|
12046
11926
|
items: rawSocialMediaLinks
|
|
12047
|
-
}), /*#__PURE__*/React__default.createElement(TextLinkWrapper$
|
|
11927
|
+
}), /*#__PURE__*/React__default.createElement(TextLinkWrapper$4, {
|
|
12048
11928
|
href: contact.href,
|
|
12049
11929
|
"aria-label": contact.title,
|
|
12050
11930
|
tabIndex: isMobile ? 2 : 0
|
|
12051
11931
|
}, contact.title)), /*#__PURE__*/React__default.createElement(SectionWrapper, null, /*#__PURE__*/React__default.createElement(BodyCopyHarmonic, {
|
|
12052
11932
|
size: "large",
|
|
12053
11933
|
color: "white"
|
|
12054
|
-
}, newsletter.text), /*#__PURE__*/React__default.createElement(TextLinkWrapper$
|
|
11934
|
+
}, newsletter.text), /*#__PURE__*/React__default.createElement(TextLinkWrapper$4, {
|
|
12055
11935
|
href: newsletter.link.href,
|
|
12056
11936
|
"data-roh": newsletter.link.dataRoh,
|
|
12057
11937
|
"aria-label": newsletter.link.title,
|
|
@@ -12073,14 +11953,14 @@ var Footer = function Footer(_ref) {
|
|
|
12073
11953
|
}, additionalInfo))));
|
|
12074
11954
|
};
|
|
12075
11955
|
|
|
12076
|
-
var _templateObject$
|
|
11956
|
+
var _templateObject$1r, _templateObject2$16, _templateObject3$T, _templateObject4$K, _templateObject5$D, _templateObject8$f, _templateObject9$9, _templateObject0$8;
|
|
12077
11957
|
var LIST_ITEM_GAP = 32;
|
|
12078
|
-
var AnchorTabbarWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
11958
|
+
var AnchorTabbarWrapper = /*#__PURE__*/styled.div(_templateObject$1r || (_templateObject$1r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: sticky;\n width: 100%;\n top: 0;\n border-bottom: ", ";\n background-color: var(--color-base-white);\n z-index: ", ";\n\n ", "\n"])), function (_ref) {
|
|
12079
11959
|
var bottomBorder = _ref.bottomBorder;
|
|
12080
11960
|
return bottomBorder ? '1px solid var(--color-base-light-grey)' : 'none';
|
|
12081
11961
|
}, zIndexes.anchor, function (_ref2) {
|
|
12082
11962
|
var withShadow = _ref2.withShadow;
|
|
12083
|
-
return withShadow && css(_templateObject2$
|
|
11963
|
+
return withShadow && css(_templateObject2$16 || (_templateObject2$16 = _taggedTemplateLiteralLoose(["\n box-shadow: var(--shadow-floating);\n "])));
|
|
12084
11964
|
});
|
|
12085
11965
|
var TabsGrid = /*#__PURE__*/styled(Grid)(_templateObject3$T || (_templateObject3$T = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: var(--anchor-tabs-height);\n"])));
|
|
12086
11966
|
var TabsWrapper = /*#__PURE__*/styled.div(_templateObject4$K || (_templateObject4$K = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n"])));
|
|
@@ -12110,7 +11990,7 @@ var ArrowWrapper = /*#__PURE__*/styled.div(_templateObject0$8 || (_templateObjec
|
|
|
12110
11990
|
return disabled ? 'var(--color-state-disabled)' : 'var(--button-anchor-tab-color)';
|
|
12111
11991
|
});
|
|
12112
11992
|
|
|
12113
|
-
var _excluded$
|
|
11993
|
+
var _excluded$r = ["id", "text"];
|
|
12114
11994
|
var AnchorTabBar = function AnchorTabBar(_ref) {
|
|
12115
11995
|
var tabs = _ref.tabs,
|
|
12116
11996
|
onTabClick = _ref.onTabClick,
|
|
@@ -12321,7 +12201,7 @@ var AnchorTabBar = function AnchorTabBar(_ref) {
|
|
|
12321
12201
|
}, tabs.map(function (_ref4) {
|
|
12322
12202
|
var id = _ref4.id,
|
|
12323
12203
|
text = _ref4.text,
|
|
12324
|
-
rest = _objectWithoutPropertiesLoose(_ref4, _excluded$
|
|
12204
|
+
rest = _objectWithoutPropertiesLoose(_ref4, _excluded$r);
|
|
12325
12205
|
return /*#__PURE__*/React__default.createElement("li", {
|
|
12326
12206
|
key: id
|
|
12327
12207
|
}, /*#__PURE__*/React__default.createElement(TabLink, Object.assign({
|
|
@@ -12354,12 +12234,12 @@ var AnchorTabBar = function AnchorTabBar(_ref) {
|
|
|
12354
12234
|
})))) : null))));
|
|
12355
12235
|
};
|
|
12356
12236
|
|
|
12357
|
-
var _templateObject$
|
|
12358
|
-
var TitleCTAGridWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
12237
|
+
var _templateObject$1s, _templateObject2$17, _templateObject3$U, _templateObject4$L, _templateObject6$t, _templateObject7$n, _templateObject8$g, _templateObject9$a, _templateObject0$9;
|
|
12238
|
+
var TitleCTAGridWrapper = /*#__PURE__*/styled.div(_templateObject$1s || (_templateObject$1s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: ", ";\n top: -1px;\n background-color: var(--base-color-white);\n z-index: ", ";\n"])), function (_ref) {
|
|
12359
12239
|
var sticky = _ref.sticky;
|
|
12360
12240
|
return sticky ? 'sticky' : 'initial';
|
|
12361
12241
|
}, zIndexes.anchor);
|
|
12362
|
-
var TitleCTAGrid = /*#__PURE__*/styled(Grid)(_templateObject2$
|
|
12242
|
+
var TitleCTAGrid = /*#__PURE__*/styled(Grid)(_templateObject2$17 || (_templateObject2$17 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-bottom: solid 2px var(--base-color-light-grey);\n"])));
|
|
12363
12243
|
var TitleCTAGridItem = /*#__PURE__*/styled.div(_templateObject3$U || (_templateObject3$U = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-column: 2 / span 15;\n display: flex;\n align-items: center;\n flex-direction: ", ";\n gap: 40px;\n justify-content: space-between;\n\n @media ", " {\n & {\n grid-column: 2 / span 13;\n gap: 20px;\n }\n }\n\n @media ", " {\n & {\n grid-column: 2 / span 12;\n }\n }\n"])), function (_ref2) {
|
|
12364
12244
|
var title = _ref2.title;
|
|
12365
12245
|
return title ? 'row' : 'row-reverse';
|
|
@@ -12383,7 +12263,7 @@ var PrimaryButtonReverse = /*#__PURE__*/styled(PrimaryButton)(_templateObject8$g
|
|
|
12383
12263
|
var MessageWrapper$1 = /*#__PURE__*/styled.div(_templateObject9$a || (_templateObject9$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n margin-right: var(--grid-outer-margin);\n height: var(--button-height);\n\n h6 {\n margin: 0;\n padding: 0;\n }\n\n @media ", " {\n & {\n margin-right: var(--grid-margin);\n }\n }\n\n @media ", " {\n & {\n display: none;\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
12384
12264
|
var MessageWrapperMobile = /*#__PURE__*/styled.div(_templateObject0$9 || (_templateObject0$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n h6 {\n margin: 0;\n padding: 0;\n }\n display: none;\n\n @media ", " {\n & {\n display: flex;\n align-items: center;\n margin-left: var(--grid-margin);\n padding: 12px 0;\n }\n }\n"])), devices.mobile);
|
|
12385
12265
|
|
|
12386
|
-
var _excluded$
|
|
12266
|
+
var _excluded$s = ["text"],
|
|
12387
12267
|
_excluded2$4 = ["text"];
|
|
12388
12268
|
var TitleWithCTA = function TitleWithCTA(_ref) {
|
|
12389
12269
|
var title = _ref.title,
|
|
@@ -12393,7 +12273,7 @@ var TitleWithCTA = function TitleWithCTA(_ref) {
|
|
|
12393
12273
|
message = _ref.message;
|
|
12394
12274
|
var _ref2 = (links == null ? void 0 : links[0]) || {},
|
|
12395
12275
|
primaryButtonText = _ref2.text,
|
|
12396
|
-
primaryButtonProps = _objectWithoutPropertiesLoose(_ref2, _excluded$
|
|
12276
|
+
primaryButtonProps = _objectWithoutPropertiesLoose(_ref2, _excluded$s);
|
|
12397
12277
|
var _ref3 = (links == null ? void 0 : links[1]) || {},
|
|
12398
12278
|
secondaryButtonText = _ref3.text,
|
|
12399
12279
|
secondaryButtonProps = _objectWithoutPropertiesLoose(_ref3, _excluded2$4);
|
|
@@ -12414,9 +12294,9 @@ var TitleWithCTA = function TitleWithCTA(_ref) {
|
|
|
12414
12294
|
}, message))));
|
|
12415
12295
|
};
|
|
12416
12296
|
|
|
12417
|
-
var _templateObject$
|
|
12418
|
-
var UpsellBorderBox = /*#__PURE__*/styled.div(_templateObject$
|
|
12419
|
-
var TitleContent = /*#__PURE__*/styled(HarmonicHeader)(_templateObject2$
|
|
12297
|
+
var _templateObject$1t, _templateObject2$18, _templateObject3$V, _templateObject4$M;
|
|
12298
|
+
var UpsellBorderBox = /*#__PURE__*/styled.div(_templateObject$1t || (_templateObject$1t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: solid 4px;\n border-color: var(--upsell-border-color);\n padding: 66px 74px 70px;\n\n @media ", " {\n & {\n border-left: none;\n border-right: none;\n padding: 40px 0px;\n }\n }\n"])), devices.mobile);
|
|
12299
|
+
var TitleContent = /*#__PURE__*/styled(HarmonicHeader)(_templateObject2$18 || (_templateObject2$18 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n && {\n color: var(--color-primary-black);\n\n @media ", " {\n margin-left: 20px;\n margin-right: 20px;\n }\n }\n"])), devices.mobile);
|
|
12420
12300
|
var TextContainer$2 = /*#__PURE__*/styled.div(_templateObject3$V || (_templateObject3$V = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: 60px;\n\n @media ", " {\n margin-bottom: 40px;\n margin-left: 20px;\n margin-right: 20px;\n }\n"])), devices.mobile);
|
|
12421
12301
|
var TextContent = /*#__PURE__*/styled(BodyContent)(_templateObject4$M || (_templateObject4$M = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n && :is(h1, h2, h3, h4, h5, h6, p, ul, ol):first-child {\n margin: 35px 0 10px;\n\n @media ", " {\n margin-top: 24px;\n }\n }\n\n && :is(h1, h2, h3, h4, h5, h6, p, ul, ol):last-child {\n margin-bottom: 0;\n }\n"])), devices.mobile);
|
|
12422
12302
|
|
|
@@ -12463,9 +12343,9 @@ var UpsellSection = function UpsellSection(_ref) {
|
|
|
12463
12343
|
})))));
|
|
12464
12344
|
};
|
|
12465
12345
|
|
|
12466
|
-
var _templateObject$
|
|
12467
|
-
var StickyBarWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
12468
|
-
var StickyBarGrid = /*#__PURE__*/styled(Grid)(_templateObject2$
|
|
12346
|
+
var _templateObject$1u, _templateObject2$19;
|
|
12347
|
+
var StickyBarWrapper = /*#__PURE__*/styled.div(_templateObject$1u || (_templateObject$1u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n top: 0;\n position: sticky;\n z-index: ", ";\n background-color: var(--color-base-white);\n"])), zIndexes.anchor);
|
|
12348
|
+
var StickyBarGrid = /*#__PURE__*/styled(Grid)(_templateObject2$19 || (_templateObject2$19 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n padding: 28px 0 26px;\n\n @media ", " {\n padding: 24px 0 28px;\n }\n\n @media ", " {\n border-bottom: none;\n }\n"])), function (_ref) {
|
|
12469
12349
|
var bottomBorder = _ref.bottomBorder;
|
|
12470
12350
|
return bottomBorder && 'border-bottom: 1px solid var(--color-base-light-grey);';
|
|
12471
12351
|
}, devices.mobileAndTablet, devices.mobile);
|
|
@@ -12496,13 +12376,13 @@ var StickyBar = function StickyBar(_ref) {
|
|
|
12496
12376
|
}, children)));
|
|
12497
12377
|
};
|
|
12498
12378
|
|
|
12499
|
-
var _templateObject$
|
|
12500
|
-
var InnerModal = /*#__PURE__*/styled.div(_templateObject$
|
|
12501
|
-
var CloseButton = /*#__PURE__*/styled.button(_templateObject2$
|
|
12379
|
+
var _templateObject$1v, _templateObject2$1a, _templateObject3$W, _templateObject4$N;
|
|
12380
|
+
var InnerModal = /*#__PURE__*/styled.div(_templateObject$1v || (_templateObject$1v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 62px;\n background-color: var(--base-color-white);\n z-index: ", ";\n position: relative;\n\n @media ", ", ", " {\n height: 100vh;\n padding: 62px 0 0;\n }\n"])), zIndexes.popup, devices.smallMobile, devices.mobile);
|
|
12381
|
+
var CloseButton = /*#__PURE__*/styled.button(_templateObject2$1a || (_templateObject2$1a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 0;\n right: 0;\n margin: 15px;\n height: 26px;\n width: 26px;\n padding: 0;\n background-color: transparent;\n border: none;\n cursor: pointer;\n @media ", " {\n margin: 25px;\n }\n @media ", ", ", " {\n margin: 30px;\n }\n"])), devices.tablet, devices.desktop, devices.largeDesktop);
|
|
12502
12382
|
var ContentWrapper$3 = /*#__PURE__*/styled.div(_templateObject3$W || (_templateObject3$W = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
12503
12383
|
var Overlay = /*#__PURE__*/styled(Grid)(_templateObject4$N || (_templateObject4$N = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100vh;\n align-content: center;\n background-color: rgba(0, 0, 0, 0.4);\n"])));
|
|
12504
12384
|
|
|
12505
|
-
var _excluded$
|
|
12385
|
+
var _excluded$t = ["isOpen", "setIsOpen", "children", "appElementId"];
|
|
12506
12386
|
var MAX_Z_INDEX = 9999999999;
|
|
12507
12387
|
if (Modal.defaultStyles.content) {
|
|
12508
12388
|
Modal.defaultStyles.content.position = 'static';
|
|
@@ -12576,9 +12456,7 @@ var ModalWindow = function ModalWindow(_ref) {
|
|
|
12576
12456
|
setIsOpen = _ref.setIsOpen,
|
|
12577
12457
|
children = _ref.children,
|
|
12578
12458
|
appElementId = _ref.appElementId,
|
|
12579
|
-
|
|
12580
|
-
closeButtonAriaLabel = _ref$closeButtonAriaL === void 0 ? 'Close modal window' : _ref$closeButtonAriaL,
|
|
12581
|
-
modalProps = _objectWithoutPropertiesLoose(_ref, _excluded$u);
|
|
12459
|
+
modalProps = _objectWithoutPropertiesLoose(_ref, _excluded$t);
|
|
12582
12460
|
var isMobile = useMobile();
|
|
12583
12461
|
var customStyles = {
|
|
12584
12462
|
overlay: {
|
|
@@ -12610,11 +12488,10 @@ var ModalWindow = function ModalWindow(_ref) {
|
|
|
12610
12488
|
columnSpanSmallDevice: 14
|
|
12611
12489
|
}, /*#__PURE__*/React__default.createElement(InnerModal, null, /*#__PURE__*/React__default.createElement(CloseButton, {
|
|
12612
12490
|
onClick: closeModalHandler,
|
|
12613
|
-
"aria-label":
|
|
12491
|
+
"aria-label": "Close modal window",
|
|
12614
12492
|
tabIndex: 0
|
|
12615
12493
|
}, /*#__PURE__*/React__default.createElement(Icon, {
|
|
12616
|
-
iconName: "Close"
|
|
12617
|
-
"aria-hidden": "true"
|
|
12494
|
+
iconName: "Close"
|
|
12618
12495
|
})), /*#__PURE__*/React__default.createElement(ContentWrapper$3, null, children))), /*#__PURE__*/React__default.createElement(ScrollLock, null)));
|
|
12619
12496
|
};
|
|
12620
12497
|
|
|
@@ -12707,15 +12584,15 @@ var getCardSlideMobileStyles = function getCardSlideMobileStyles(type) {
|
|
|
12707
12584
|
return "\n width: " + ("calc((" + columnsPerSlide + " * " + gridColumnWidth + ") + (" + gapsPerSlide + " * " + GRID_COLUMN_GAP + "))") + ";\n margin-right: " + ("calc(" + gridColumnWidth + " + (" + GRID_COLUMN_GAP + " * 2))") + ";\n ";
|
|
12708
12585
|
};
|
|
12709
12586
|
|
|
12710
|
-
var _templateObject$
|
|
12711
|
-
var ImageCarouselWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
12587
|
+
var _templateObject$1w, _templateObject2$1b, _templateObject3$X, _templateObject4$O, _templateObject5$E, _templateObject6$u, _templateObject7$o, _templateObject8$h, _templateObject9$b;
|
|
12588
|
+
var ImageCarouselWrapper = /*#__PURE__*/styled.div(_templateObject$1w || (_templateObject$1w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n\n @media ", " {\n ", "\n }}\n\n &:fullscreen {\n background: var(--color-base-white);\n padding-top: 44px;\n padding-bottom: 84px;\n\n .swipe-slide > figure {\n height: var(--fullscreen-figure-height);\n\n > div {\n height: var(--fullscreen-figure-height);\n }\n }\n }\n"])), function (_ref) {
|
|
12712
12589
|
var imagesHeightDesktop = _ref.imagesHeightDesktop;
|
|
12713
12590
|
return "& {\n .swipe-slide {\n height: fit-content;\n width: auto;\n margin-right: var(--grid-column-gap);\n\n > figure {\n margin: 0px;\n\n > div {\n height: " + imagesHeightDesktop + "px;\n }\n }\n }\n }";
|
|
12714
12591
|
}, devices.mobile, function (_ref2) {
|
|
12715
12592
|
var imagesHeightDevice = _ref2.imagesHeightDevice;
|
|
12716
12593
|
return "&&& {\n .swipe-slide > figure {\n > div {\n height: " + imagesHeightDevice + "px;\n }\n }\n }";
|
|
12717
12594
|
});
|
|
12718
|
-
var CardsCarouselWrapper = /*#__PURE__*/styled.div(_templateObject2$
|
|
12595
|
+
var CardsCarouselWrapper = /*#__PURE__*/styled.div(_templateObject2$1b || (_templateObject2$1b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n}"])), function (_ref3) {
|
|
12719
12596
|
var type = _ref3.type,
|
|
12720
12597
|
isActive = _ref3.isActive;
|
|
12721
12598
|
return "\n & {\n .swipe-slide {\n " + getCardSlideDesktopStyles(type, isActive) + "\n }\n }\n\n @media " + devices.tablet + " {\n & {\n .swipe-slide {\n " + getCardSlideTabletStyles(type) + "\n }\n }\n }\n\n @media " + devices.mobile + " {\n && {\n .swipe-slide {\n " + getCardSlideMobileStyles(type) + "\n }\n }\n }\n ";
|
|
@@ -12999,9 +12876,9 @@ var Carousel = function Carousel(_ref) {
|
|
|
12999
12876
|
}, children))));
|
|
13000
12877
|
};
|
|
13001
12878
|
|
|
13002
|
-
var _templateObject$
|
|
13003
|
-
var HighlightsGrid$1 = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
13004
|
-
var CarouselTitleWrapper = /*#__PURE__*/styled.div(_templateObject2$
|
|
12879
|
+
var _templateObject$1x, _templateObject2$1c, _templateObject3$Y, _templateObject4$P, _templateObject5$F, _templateObject6$v, _templateObject7$p, _templateObject8$i, _templateObject9$c, _templateObject0$a, _templateObject1$6, _templateObject10$5, _templateObject11$4, _templateObject12$4, _templateObject13$3, _templateObject14$1, _templateObject15$1, _templateObject16$1;
|
|
12880
|
+
var HighlightsGrid$1 = /*#__PURE__*/styled(Grid)(_templateObject$1x || (_templateObject$1x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n grid-template-rows: max-content minmax(0, 1fr);\n gap: 0 var(--grid-column-gap);\n background-color: var(--color-base-black);\n user-select: none;\n\n .highlight-carousel-text {\n color: var(--color-base-white);\n }\n\n @media ", " {\n & {\n grid-template-rows: min-content max-content max-content;\n }\n }\n"])), devices.mobile);
|
|
12881
|
+
var CarouselTitleWrapper = /*#__PURE__*/styled.div(_templateObject2$1c || (_templateObject2$1c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: 1 / 1 / 1 / 7;\n box-sizing: border-box;\n width: calc(100% + var(--grid-column-gap));\n padding-top: 40px;\n padding-left: 50px;\n padding-right: 36px;\n user-select: text;\n\n @media ", " {\n & {\n grid-area: 1 / 1 / 2 / 12;\n padding: 12px 0 12px var(--grid-margin);\n min-height: 64px;\n box-sizing: border-box;\n width: 100%;\n }\n }\n\n @media ", " {\n & {\n grid-area: 1 / 1 / 2 / 11;\n width: 100%;\n padding: 8px 0 8px 20px;\n min-height: 28px;\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
13005
12882
|
var HeaderWrapper = /*#__PURE__*/styled.div(_templateObject3$Y || (_templateObject3$Y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0;\n padding: 0;\n"])));
|
|
13006
12883
|
var InfoWrapper$2 = /*#__PURE__*/styled.div(_templateObject4$P || (_templateObject4$P = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: 2 / 1 / 2 / 7;\n box-sizing: border-box;\n width: calc(100% + var(--grid-column-gap));\n align-self: center;\n padding: 36px 36px 36px 50px;\n\n a {\n text-underline-offset: var(--harmonic-text-link-underline-offset);\n }\n\n @media ", " {\n & {\n grid-area: 2 / 1 / 2 / 7;\n padding: 0 12px 12px var(--grid-margin);\n }\n }\n\n @media ", " {\n & {\n grid-area: 3 / 1 / 4 / 15;\n width: 100%;\n padding: 0 20px;\n margin: 24px 0;\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
13007
12884
|
var InfoLogoWrapper = /*#__PURE__*/styled.div(_templateObject5$F || (_templateObject5$F = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: 32px;\n width: 132px;\n height: 36px;\n\n @media ", " {\n & {\n margin-bottom: 16px;\n width: 102px;\n height: 28px;\n }\n }\n\n @media ", " {\n & {\n margin-bottom: 20px;\n width: 102px;\n height: 28px;\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
@@ -13022,7 +12899,7 @@ var VideoWithControlsWrapper = /*#__PURE__*/styled.div(_templateObject15$1 || (_
|
|
|
13022
12899
|
}, devices.mobile);
|
|
13023
12900
|
var ProgressContainer$1 = /*#__PURE__*/styled.div(_templateObject16$1 || (_templateObject16$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 32px;\n\n p {\n margin-bottom: 16px;\n }\n\n @media ", " {\n margin-top: 20px;\n\n p {\n margin-bottom: 12px;\n }\n }\n"])), devices.mobileAndTablet);
|
|
13024
12901
|
|
|
13025
|
-
var _excluded$
|
|
12902
|
+
var _excluded$u = ["text"],
|
|
13026
12903
|
_excluded2$5 = ["text"];
|
|
13027
12904
|
var _buttonTypeToButton$2;
|
|
13028
12905
|
var buttonTypeToButton$2 = (_buttonTypeToButton$2 = {}, _buttonTypeToButton$2[ButtonType.Primary] = PrimaryButton, _buttonTypeToButton$2[ButtonType.Secondary] = SecondaryButton, _buttonTypeToButton$2[ButtonType.Tertiary] = TertiaryButton, _buttonTypeToButton$2);
|
|
@@ -13033,7 +12910,7 @@ var Buttons = function Buttons(_ref) {
|
|
|
13033
12910
|
var _ref2 = firstButton || {},
|
|
13034
12911
|
_ref2$text = _ref2.text,
|
|
13035
12912
|
firstButtonText = _ref2$text === void 0 ? '' : _ref2$text,
|
|
13036
|
-
restFirstButton = _objectWithoutPropertiesLoose(_ref2, _excluded$
|
|
12913
|
+
restFirstButton = _objectWithoutPropertiesLoose(_ref2, _excluded$u);
|
|
13037
12914
|
var secondButton = links == null ? void 0 : links[1];
|
|
13038
12915
|
var _ref3 = secondButton || {},
|
|
13039
12916
|
_ref3$text = _ref3.text,
|
|
@@ -13276,11 +13153,11 @@ var HighlightsCarousel = function HighlightsCarousel(_ref) {
|
|
|
13276
13153
|
})));
|
|
13277
13154
|
};
|
|
13278
13155
|
|
|
13279
|
-
var _excluded$
|
|
13156
|
+
var _excluded$v = ["logo", "slides"];
|
|
13280
13157
|
var HighlightsCinema = function HighlightsCinema(_ref) {
|
|
13281
13158
|
var logo = _ref.logo,
|
|
13282
13159
|
slides = _ref.slides,
|
|
13283
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
13160
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$v);
|
|
13284
13161
|
var slidesWithLinks = slides.map(function (slide) {
|
|
13285
13162
|
var links = processSlideLinks(slide.links);
|
|
13286
13163
|
return _extends({}, slide, {
|
|
@@ -13297,10 +13174,10 @@ var HighlightsCinema = function HighlightsCinema(_ref) {
|
|
|
13297
13174
|
})));
|
|
13298
13175
|
};
|
|
13299
13176
|
|
|
13300
|
-
var _excluded$
|
|
13177
|
+
var _excluded$w = ["slides"];
|
|
13301
13178
|
var HighlightsCore = function HighlightsCore(_ref) {
|
|
13302
13179
|
var slides = _ref.slides,
|
|
13303
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
13180
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$w);
|
|
13304
13181
|
var slidesWithLinks = slides.map(function (slide) {
|
|
13305
13182
|
var links = processSlideLinks(slide.links);
|
|
13306
13183
|
return _extends({}, slide, {
|
|
@@ -13314,11 +13191,11 @@ var HighlightsCore = function HighlightsCore(_ref) {
|
|
|
13314
13191
|
})));
|
|
13315
13192
|
};
|
|
13316
13193
|
|
|
13317
|
-
var _excluded$
|
|
13194
|
+
var _excluded$x = ["logo", "slides"];
|
|
13318
13195
|
var HighlightsStream = function HighlightsStream(_ref) {
|
|
13319
13196
|
var logo = _ref.logo,
|
|
13320
13197
|
slides = _ref.slides,
|
|
13321
|
-
rest = _objectWithoutPropertiesLoose(_ref, _excluded$
|
|
13198
|
+
rest = _objectWithoutPropertiesLoose(_ref, _excluded$x);
|
|
13322
13199
|
var slidesWithLinks = slides.map(function (slide) {
|
|
13323
13200
|
var links = processSlideLinks(slide.links);
|
|
13324
13201
|
return _extends({}, slide, {
|
|
@@ -13335,8 +13212,8 @@ var HighlightsStream = function HighlightsStream(_ref) {
|
|
|
13335
13212
|
})));
|
|
13336
13213
|
};
|
|
13337
13214
|
|
|
13338
|
-
var _templateObject$
|
|
13339
|
-
var CarouselWrapper$1 = /*#__PURE__*/styled.div(_templateObject$
|
|
13215
|
+
var _templateObject$1y, _templateObject3$Z;
|
|
13216
|
+
var CarouselWrapper$1 = /*#__PURE__*/styled.div(_templateObject$1y || (_templateObject$1y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n user-select: none;\n display: flex;\n\n .swipe-slide {\n width: 100%;\n }\n"])));
|
|
13340
13217
|
var ButtonsWrapper$1 = /*#__PURE__*/styled.div(_templateObject3$Z || (_templateObject3$Z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n justify-content: center;\n flex-direction: column;\n margin-left: 6px;\n"])));
|
|
13341
13218
|
|
|
13342
13219
|
var MinimalCarousel = function MinimalCarousel(_ref) {
|
|
@@ -13932,8 +13809,8 @@ var Theme = function Theme(_ref) {
|
|
|
13932
13809
|
}, children);
|
|
13933
13810
|
};
|
|
13934
13811
|
|
|
13935
|
-
var _templateObject$
|
|
13936
|
-
var GlobalStyles = /*#__PURE__*/createGlobalStyle(_templateObject$1A || (_templateObject$1A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n html {\n --base-color-primary: ", ";\n --base-color-core: ", ";\n --base-color-stream: ", ";\n --base-color-cinema: ", ";\n --base-color-white: ", ";\n --base-color-black: ", ";\n --base-color-dark-grey: ", ";\n --base-color-mid-grey: ", ";\n --base-color-light-grey: ", ";\n --error-color-state: ", ";\n --medium-color-state: ", ";\n --good-color-state: ", ";\n --base-color-darkgrey: ", ";\n --base-color-midgrey: ", ";\n --base-color-lightgrey: ", ";\n --base-color-transparent: transparent;\n --base-color-errorstate: ", ";\n --base-color-mediumstate: ", ";\n --base-color-goodstate: ", ";\n --base-color-progress: ", ";\n --base-color-navigation: ", ";\n --base-color-lapislazuli: ", ";\n --base-color-lemonchiffon: ", ";\n\n --button-height: ", ";\n --button-line-height: ", ";\n --button-padding-x: ", ";\n --button-padding-y: ", ";\n --button-padding-y-icon: ", ";\n --button-icon-margin: ", ";\n --button-icon-width: ", ";\n --button-icon-height: ", ";\n --button-font-size: ", ";\n --button-font-weight: ", ";\n\n --font-size-header-1: ", ";\n --font-weight-header-1: ", ";\n --letter-spacing-header-1: ", ";\n --line-height-header-1: ", ";\n --margin-header-1: ", ";\n\n --font-size-header-2: ", ";\n --font-weight-header-2: ", ";\n --letter-spacing-header-2: ", ";\n --line-height-header-2: ", ";\n --margin-header-2: ", ";\n\n --font-size-header-3: ", ";\n --font-weight-header-3: ", ";\n --letter-spacing-header-3: ", ";\n --line-height-header-3: ", ";\n --margin-header-3: ", ";\n\n --font-size-header-4: ", ";\n --font-weight-header-4: ", ";\n --letter-spacing-header-4: ", ";\n --line-height-header-4: ", ";\n --margin-header-4: ", ";\n\n --font-size-header-5: ", ";\n --font-weight-header-5: ", ";\n --letter-spacing-header-5: ", ";\n --line-height-header-5: ", ";\n --margin-header-5: ", ";\n\n --font-size-header-6: ", ";\n --font-weight-header-6: ", ";\n --letter-spacing-header-6: ", ";\n --line-height-header-6: ", ";\n --margin-header-6: ", ";\n\n --font-size-altHeader-3: ", ";\n --font-weight-altHeader-3: ", ";\n --letter-spacing-altHeader-3: ", ";\n --line-height-altHeader-3: ", ";\n\n --font-size-altHeader-4: ", ";\n --font-weight-altHeader-4: ", ";\n --letter-spacing-altHeader-4: ", ";\n --line-height-altHeader-4: ", ";\n\n --font-size-altHeader-5: ", ";\n --font-weight-altHeader-5: ", ";\n --letter-spacing-altHeader-5: ", ";\n --line-height-altHeader-5: ", ";\n\n --font-size-altHeader-6: ", ";\n --font-weight-altHeader-6: ", ";\n --letter-spacing-altHeader-6: ", ";\n --line-height-altHeader-6: ", ";\n\n --font-size-overline-1: ", ";\n --font-weight-overline-1: ", ";\n --letter-spacing-overline-1: ", ";\n --line-height-overline-1: ", ";\n\n --font-size-overline-2: ", ";\n --font-weight-overline-2: ", ";\n --letter-spacing-overline-2: ", ";\n --line-height-overline-2: ", ";\n\n --font-size-overline-3: ", ";\n --font-weight-overline-3: ", ";\n --letter-spacing-overline-3: ", ";\n --line-height-overline-3: ", ";\n\n --font-size-overline-4: ", ";\n --font-weight-overline-4: ", ";\n --letter-spacing-overline-4: ", ";\n --line-height-overline-4: ", ";\n\n --font-size-body-1: ", ";\n --font-weight-body-1: ", ";\n --letter-spacing-body-1: ", ";\n --line-height-body-1: ", ";\n\n --font-size-body-2: ", ";\n --font-weight-body-2: ", ";\n --letter-spacing-body-2: ", ";\n --line-height-body-2: ", ";\n\n --font-size-body-3: ", ";\n --font-weight-body-3: ", ";\n --letter-spacing-body-3: ", ";\n --line-height-body-3: ", ";\n\n --font-size-subtitle-1: ", ";\n --font-weight-subtitle-1: ", ";\n --letter-spacing-subtitle-1: ", ";\n --line-height-subtitle-1: ", ";\n\n --font-size-subtitle-2: ", ";\n --font-weight-subtitle-2: ", ";\n --letter-spacing-subtitle-2: ", ";\n --line-height-subtitle-2: ", ";\n\n --font-size-title-description: ", ";\n --line-height-title-description: ", ";\n --line-height-listing: ", ";\n --font-size-individual-listing-name: ", ";\n --line-height-individual-listing-name: ", ";\n --line-height-people-listing-gap: ", ";\n\n --font-family-header: ", ";\n --font-family-altHeader: ", ";\n --font-family-body: ", ";\n --font-family-body-italics: ", ";\n --font-family-buttons: ", ";\n --font-family-overline: ", ";\n --font-family-subtitle: ", ";\n --font-family-people-listing-role: ", ";\n --font-family-people-listing-name: ", ";\n\n --font-feature-settings-header: ", ";\n --font-feature-settings-altHeader: ", ";\n --font-feature-settings-overline: ", ";\n --font-feature-settings-subtitle: ", ";\n --font-feature-settings-body: ", ";\n --font-feature-settings-navigation: ", ";\n\n --text-transform-header: ", ";\n --text-transform-altHeader: ", ";\n --text-transform-body: ", ";\n --text-transform-overline: ", ";\n --text-transform-subtitle: ", ";\n\n --word-break-header: ", ";\n --word-break-altHeader: ", ";\n --word-break-body: ", ";\n --word-break-overline: ", ";\n --word-break-subtitle: ", ";\n\n --font-family-navigation: ", ";\n --font-size-navigation: ", ";\n --font-weight-navigation: ", ";\n --line-height-navigation: ", ";\n --text-transform-navigation: ", ";\n --letter-spacing-navigation: ", ";\n\n --navigation-small-gap: ", ";\n --navigation-middle-gap: ", ";\n --navigation-large-gap: ", ";\n --navigation-xlarge-gap: ", ";\n --navigation-large-margin: ", ";\n\n --rotator-button-width: ", ";\n --rotator-button-icon-width: ", ";\n\n --font-size-search: ", ";\n --font-family-search: ", ";\n\n --grid-margin: ", ";\n --grid-outer-margin: ", ";\n --grid-template-columns: calc(", " - ", ") calc(", " - ", " - ", ") repeat(12, minmax(0,1fr)) calc(", " - ", " - ", ") calc(", " - ", ");\n --grid-column-gap: ", ";\n --grid-margin: 0;\n\n --footer-height: ", ";\n --footer-padding-top: ", ";\n --footer-padding-bottom: ", ";\n --footer-items-gap: ", ";\n --footer-media-gap: ", ";\n --footer-media-icon-width: ", ";\n --footer-media-icon-height: ", ";\n --footer-vertical-spacing-lg: ", ";\n --footer-vertical-spacing-sm: ", ";\n\n --text-link-underline-offset: ", ";\n\n --cards-spacing-stack: ", ";\n\n --editorial-subtitle-margin-bottom: ", ";\n --editorial-margin-between: ", ";\n --editorial-spacing-hover: ", ";\n --anchor-tabs-height: 70px;\n\n --harmonic-font-family-sans: 'Grey LL Bold', 'Roboto', sans-serif;\n --harmonic-font-family-serif: 'Victor Serif Medium', 'Inria Serif Regular', serif;\n --harmonic-text-link-underline-offset: 4px;\n --harmonic-text-transform-navigation: capitalize;\n --harmonic-font-size-navigation: 19px;\n\n @media ", " {\n\n --font-size-header-1: ", ";\n --font-weight-header-1: ", ";\n --letter-spacing-header-1: ", ";\n --line-height-header-1: ", ";\n\n --font-size-header-2: ", ";\n --font-weight-header-2: ", ";\n --letter-spacing-header-2: ", ";\n --line-height-header-2: ", ";\n\n --font-size-header-3: ", ";\n --font-weight-header-3: ", ";\n --letter-spacing-header-3: ", ";\n --line-height-header-3: ", ";\n\n --font-size-header-4: ", ";\n --font-weight-header-4: ", ";\n --letter-spacing-header-4: ", ";\n --line-height-header-4: ", ";\n\n --font-size-header-5: ", ";\n --font-weight-header-5: ", ";\n --letter-spacing-header-5: ", ";\n --line-height-header-5: ", ";\n\n --font-size-header-6: ", ";\n --font-weight-header-6: ", ";\n --letter-spacing-header-6: ", ";\n --line-height-header-6: ", ";\n\n --font-size-altHeader-3: ", ";\n --font-weight-altHeader-3: ", ";\n --letter-spacing-altHeader-3: ", ";\n --line-height-altHeader-3: ", ";\n\n --font-size-altHeader-4: ", ";\n --font-weight-altHeader-4: ", ";\n --letter-spacing-altHeader-4: ", ";\n --line-height-altHeader-4: ", ";\n\n --font-size-altHeader-5: ", ";\n --font-weight-altHeader-5: ", ";\n --letter-spacing-altHeader-5: ", ";\n --line-height-altHeader-5: ", ";\n\n --font-size-altHeader-6: ", ";\n --font-weight-altHeader-6: ", ";\n --letter-spacing-altHeader-6: ", ";\n --line-height-altHeader-6: ", ";\n\n --font-size-overline-1: ", ";\n --font-weight-overline-1: ", ";\n --letter-spacing-overline-1: ", ";\n --line-height-overline-1: ", ";\n\n --font-size-overline-2: ", ";\n --font-weight-overline-2: ", ";\n --letter-spacing-overline-2: ", ";\n --line-height-overline-2: ", ";\n\n --font-size-body-1: ", ";\n --font-weight-body-1: ", ";\n --letter-spacing-body-1: ", ";\n --line-height-body-1: ", ";\n\n --font-size-body-2: ", ";\n --font-weight-body-2: ", ";\n --letter-spacing-body-2: ", ";\n --line-height-body-2: ", ";\n\n --font-size-body-3: ", ";\n --font-weight-body-3: ", ";\n --letter-spacing-body-3: ", ";\n --line-height-body-3: ", ";\n\n --font-size-subtitle-1: ", ";\n --font-weight-subtitle-1: ", ";\n --letter-spacing-subtitle-1: ", ";\n --line-height-subtitle-1: ", ";\n\n --font-size-subtitle-2: ", ";\n --font-weight-subtitle-2: ", ";\n --letter-spacing-subtitle-2: ", ";\n --line-height-subtitle-2: ", ";\n\n --font-size-title-description: ", ";\n --line-height-title-description: ", ";\n --line-height-people-listing-gap: ", ";\n\n --font-size-search: ", ";\n --font-family-search: ", ";\n\n --font-family-header: ", ";\n --font-family-altHeader: ", ";\n --font-family-body: ", ";\n --font-family-body-italics: ", ";\n --font-family-buttons: ", ";\n --font-family-overline: ", ";\n --font-family-subtitle: ", ";\n --font-family-people-listing-role: ", ";\n --font-family-people-listing-name: ", ";\n\n --font-feature-settings-header: ", ";\n --font-feature-settings-altHeader: ", ";\n --font-feature-settings-overline: ", ";\n --font-feature-settings-subtitle: ", ";\n --font-feature-settings-body: ", ";\n --font-feature-settings-navigation: ", ";\n\n --text-transform-header: ", ";\n --text-transform-altHeader: ", ";\n --text-transform-body: ", ";\n --text-transform-overline: ", ";\n --text-transform-subtitle: ", ";\n\n --word-break-header: ", ";\n --word-break-altHeader: ", ";\n --word-break-body: ", ";\n --word-break-overline: ", ";\n --word-break-subtitle: ", ";\n\n --grid-template-columns: calc(", " - ", ") repeat(12, minmax(0, 1fr)) calc(", " - ", ");\n --grid-column-gap: ", ";\n --grid-margin: ", ";\n\n --footer-height: ", ";\n --footer-padding-top: ", ";\n --footer-padding-bottom: ", ";\n --footer-items-gap: ", ";\n --footer-media-gap: ", ";\n --footer-media-icon-width: ", ";\n --footer-media-icon-height: ", ";\n --footer-vertical-spacing-lg: ", ";\n --footer-vertical-spacing-sm: ", ";\n\n --anchor-tabs-height: 60px;\n --rotator-button-width: ", ";\n --rotator-button-icon-width: ", ";\n }\n\n @media ", " {\n --grid-template-columns: calc(", " - ", ") repeat(12, minmax(0, 1fr)) calc(", " - ", ");\n --grid-column-gap: ", ";\n --grid-margin: ", ";\n --rotator-button-width: ", ";\n --rotator-button-icon-width: ", ";\n\n --font-size-header-6: ", ";\n\n --font-size-altHeader-4: ", ";\n\n --font-size-body-1: ", ";\n\n --footer-padding-top: ", ";\n --footer-padding-bottom: ", ";\n }\n\n @media ", " {\n\n }\n\n @media ", " {\n\n }\n }\n"])), function (_ref) {
|
|
13812
|
+
var _templateObject$1z;
|
|
13813
|
+
var GlobalStyles = /*#__PURE__*/createGlobalStyle(_templateObject$1z || (_templateObject$1z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n html {\n --base-color-primary: ", ";\n --base-color-core: ", ";\n --base-color-stream: ", ";\n --base-color-cinema: ", ";\n --base-color-white: ", ";\n --base-color-black: ", ";\n --base-color-dark-grey: ", ";\n --base-color-mid-grey: ", ";\n --base-color-light-grey: ", ";\n --error-color-state: ", ";\n --medium-color-state: ", ";\n --good-color-state: ", ";\n --base-color-darkgrey: ", ";\n --base-color-midgrey: ", ";\n --base-color-lightgrey: ", ";\n --base-color-transparent: transparent;\n --base-color-errorstate: ", ";\n --base-color-mediumstate: ", ";\n --base-color-goodstate: ", ";\n --base-color-progress: ", ";\n --base-color-navigation: ", ";\n --base-color-lapislazuli: ", ";\n --base-color-lemonchiffon: ", ";\n\n --button-height: ", ";\n --button-line-height: ", ";\n --button-padding-x: ", ";\n --button-padding-y: ", ";\n --button-padding-y-icon: ", ";\n --button-icon-margin: ", ";\n --button-icon-width: ", ";\n --button-icon-height: ", ";\n --button-font-size: ", ";\n --button-font-weight: ", ";\n\n --font-size-header-1: ", ";\n --font-weight-header-1: ", ";\n --letter-spacing-header-1: ", ";\n --line-height-header-1: ", ";\n --margin-header-1: ", ";\n\n --font-size-header-2: ", ";\n --font-weight-header-2: ", ";\n --letter-spacing-header-2: ", ";\n --line-height-header-2: ", ";\n --margin-header-2: ", ";\n\n --font-size-header-3: ", ";\n --font-weight-header-3: ", ";\n --letter-spacing-header-3: ", ";\n --line-height-header-3: ", ";\n --margin-header-3: ", ";\n\n --font-size-header-4: ", ";\n --font-weight-header-4: ", ";\n --letter-spacing-header-4: ", ";\n --line-height-header-4: ", ";\n --margin-header-4: ", ";\n\n --font-size-header-5: ", ";\n --font-weight-header-5: ", ";\n --letter-spacing-header-5: ", ";\n --line-height-header-5: ", ";\n --margin-header-5: ", ";\n\n --font-size-header-6: ", ";\n --font-weight-header-6: ", ";\n --letter-spacing-header-6: ", ";\n --line-height-header-6: ", ";\n --margin-header-6: ", ";\n\n --font-size-altHeader-3: ", ";\n --font-weight-altHeader-3: ", ";\n --letter-spacing-altHeader-3: ", ";\n --line-height-altHeader-3: ", ";\n\n --font-size-altHeader-4: ", ";\n --font-weight-altHeader-4: ", ";\n --letter-spacing-altHeader-4: ", ";\n --line-height-altHeader-4: ", ";\n\n --font-size-altHeader-5: ", ";\n --font-weight-altHeader-5: ", ";\n --letter-spacing-altHeader-5: ", ";\n --line-height-altHeader-5: ", ";\n\n --font-size-altHeader-6: ", ";\n --font-weight-altHeader-6: ", ";\n --letter-spacing-altHeader-6: ", ";\n --line-height-altHeader-6: ", ";\n\n --font-size-overline-1: ", ";\n --font-weight-overline-1: ", ";\n --letter-spacing-overline-1: ", ";\n --line-height-overline-1: ", ";\n\n --font-size-overline-2: ", ";\n --font-weight-overline-2: ", ";\n --letter-spacing-overline-2: ", ";\n --line-height-overline-2: ", ";\n\n --font-size-overline-3: ", ";\n --font-weight-overline-3: ", ";\n --letter-spacing-overline-3: ", ";\n --line-height-overline-3: ", ";\n\n --font-size-overline-4: ", ";\n --font-weight-overline-4: ", ";\n --letter-spacing-overline-4: ", ";\n --line-height-overline-4: ", ";\n\n --font-size-body-1: ", ";\n --font-weight-body-1: ", ";\n --letter-spacing-body-1: ", ";\n --line-height-body-1: ", ";\n\n --font-size-body-2: ", ";\n --font-weight-body-2: ", ";\n --letter-spacing-body-2: ", ";\n --line-height-body-2: ", ";\n\n --font-size-body-3: ", ";\n --font-weight-body-3: ", ";\n --letter-spacing-body-3: ", ";\n --line-height-body-3: ", ";\n\n --font-size-subtitle-1: ", ";\n --font-weight-subtitle-1: ", ";\n --letter-spacing-subtitle-1: ", ";\n --line-height-subtitle-1: ", ";\n\n --font-size-subtitle-2: ", ";\n --font-weight-subtitle-2: ", ";\n --letter-spacing-subtitle-2: ", ";\n --line-height-subtitle-2: ", ";\n\n --font-size-title-description: ", ";\n --line-height-title-description: ", ";\n --line-height-listing: ", ";\n --font-size-individual-listing-name: ", ";\n --line-height-individual-listing-name: ", ";\n --line-height-people-listing-gap: ", ";\n\n --font-family-header: ", ";\n --font-family-altHeader: ", ";\n --font-family-body: ", ";\n --font-family-body-italics: ", ";\n --font-family-buttons: ", ";\n --font-family-overline: ", ";\n --font-family-subtitle: ", ";\n --font-family-people-listing-role: ", ";\n --font-family-people-listing-name: ", ";\n\n --font-feature-settings-header: ", ";\n --font-feature-settings-altHeader: ", ";\n --font-feature-settings-overline: ", ";\n --font-feature-settings-subtitle: ", ";\n --font-feature-settings-body: ", ";\n --font-feature-settings-navigation: ", ";\n\n --text-transform-header: ", ";\n --text-transform-altHeader: ", ";\n --text-transform-body: ", ";\n --text-transform-overline: ", ";\n --text-transform-subtitle: ", ";\n\n --word-break-header: ", ";\n --word-break-altHeader: ", ";\n --word-break-body: ", ";\n --word-break-overline: ", ";\n --word-break-subtitle: ", ";\n\n --font-family-navigation: ", ";\n --font-size-navigation: ", ";\n --font-weight-navigation: ", ";\n --line-height-navigation: ", ";\n --text-transform-navigation: ", ";\n --letter-spacing-navigation: ", ";\n\n --navigation-small-gap: ", ";\n --navigation-middle-gap: ", ";\n --navigation-large-gap: ", ";\n --navigation-xlarge-gap: ", ";\n --navigation-large-margin: ", ";\n\n --rotator-button-width: ", ";\n --rotator-button-icon-width: ", ";\n\n --font-size-search: ", ";\n --font-family-search: ", ";\n\n --grid-margin: ", ";\n --grid-outer-margin: ", ";\n --grid-template-columns: calc(", " - ", ") calc(", " - ", " - ", ") repeat(12, minmax(0,1fr)) calc(", " - ", " - ", ") calc(", " - ", ");\n --grid-column-gap: ", ";\n --grid-margin: 0;\n\n --footer-height: ", ";\n --footer-padding-top: ", ";\n --footer-padding-bottom: ", ";\n --footer-items-gap: ", ";\n --footer-media-gap: ", ";\n --footer-media-icon-width: ", ";\n --footer-media-icon-height: ", ";\n --footer-vertical-spacing-lg: ", ";\n --footer-vertical-spacing-sm: ", ";\n\n --text-link-underline-offset: ", ";\n\n --cards-spacing-stack: ", ";\n\n --editorial-subtitle-margin-bottom: ", ";\n --editorial-margin-between: ", ";\n --editorial-spacing-hover: ", ";\n --anchor-tabs-height: 70px;\n\n --harmonic-font-family-sans: 'Grey LL Bold', 'Roboto', sans-serif;\n --harmonic-font-family-serif: 'Victor Serif Medium', 'Inria Serif Regular', serif;\n --harmonic-text-link-underline-offset: 4px;\n --harmonic-text-transform-navigation: capitalize;\n --harmonic-font-size-navigation: 19px;\n\n @media ", " {\n\n --font-size-header-1: ", ";\n --font-weight-header-1: ", ";\n --letter-spacing-header-1: ", ";\n --line-height-header-1: ", ";\n\n --font-size-header-2: ", ";\n --font-weight-header-2: ", ";\n --letter-spacing-header-2: ", ";\n --line-height-header-2: ", ";\n\n --font-size-header-3: ", ";\n --font-weight-header-3: ", ";\n --letter-spacing-header-3: ", ";\n --line-height-header-3: ", ";\n\n --font-size-header-4: ", ";\n --font-weight-header-4: ", ";\n --letter-spacing-header-4: ", ";\n --line-height-header-4: ", ";\n\n --font-size-header-5: ", ";\n --font-weight-header-5: ", ";\n --letter-spacing-header-5: ", ";\n --line-height-header-5: ", ";\n\n --font-size-header-6: ", ";\n --font-weight-header-6: ", ";\n --letter-spacing-header-6: ", ";\n --line-height-header-6: ", ";\n\n --font-size-altHeader-3: ", ";\n --font-weight-altHeader-3: ", ";\n --letter-spacing-altHeader-3: ", ";\n --line-height-altHeader-3: ", ";\n\n --font-size-altHeader-4: ", ";\n --font-weight-altHeader-4: ", ";\n --letter-spacing-altHeader-4: ", ";\n --line-height-altHeader-4: ", ";\n\n --font-size-altHeader-5: ", ";\n --font-weight-altHeader-5: ", ";\n --letter-spacing-altHeader-5: ", ";\n --line-height-altHeader-5: ", ";\n\n --font-size-altHeader-6: ", ";\n --font-weight-altHeader-6: ", ";\n --letter-spacing-altHeader-6: ", ";\n --line-height-altHeader-6: ", ";\n\n --font-size-overline-1: ", ";\n --font-weight-overline-1: ", ";\n --letter-spacing-overline-1: ", ";\n --line-height-overline-1: ", ";\n\n --font-size-overline-2: ", ";\n --font-weight-overline-2: ", ";\n --letter-spacing-overline-2: ", ";\n --line-height-overline-2: ", ";\n\n --font-size-body-1: ", ";\n --font-weight-body-1: ", ";\n --letter-spacing-body-1: ", ";\n --line-height-body-1: ", ";\n\n --font-size-body-2: ", ";\n --font-weight-body-2: ", ";\n --letter-spacing-body-2: ", ";\n --line-height-body-2: ", ";\n\n --font-size-body-3: ", ";\n --font-weight-body-3: ", ";\n --letter-spacing-body-3: ", ";\n --line-height-body-3: ", ";\n\n --font-size-subtitle-1: ", ";\n --font-weight-subtitle-1: ", ";\n --letter-spacing-subtitle-1: ", ";\n --line-height-subtitle-1: ", ";\n\n --font-size-subtitle-2: ", ";\n --font-weight-subtitle-2: ", ";\n --letter-spacing-subtitle-2: ", ";\n --line-height-subtitle-2: ", ";\n\n --font-size-title-description: ", ";\n --line-height-title-description: ", ";\n --line-height-people-listing-gap: ", ";\n\n --font-size-search: ", ";\n --font-family-search: ", ";\n\n --font-family-header: ", ";\n --font-family-altHeader: ", ";\n --font-family-body: ", ";\n --font-family-body-italics: ", ";\n --font-family-buttons: ", ";\n --font-family-overline: ", ";\n --font-family-subtitle: ", ";\n --font-family-people-listing-role: ", ";\n --font-family-people-listing-name: ", ";\n\n --font-feature-settings-header: ", ";\n --font-feature-settings-altHeader: ", ";\n --font-feature-settings-overline: ", ";\n --font-feature-settings-subtitle: ", ";\n --font-feature-settings-body: ", ";\n --font-feature-settings-navigation: ", ";\n\n --text-transform-header: ", ";\n --text-transform-altHeader: ", ";\n --text-transform-body: ", ";\n --text-transform-overline: ", ";\n --text-transform-subtitle: ", ";\n\n --word-break-header: ", ";\n --word-break-altHeader: ", ";\n --word-break-body: ", ";\n --word-break-overline: ", ";\n --word-break-subtitle: ", ";\n\n --grid-template-columns: calc(", " - ", ") repeat(12, minmax(0, 1fr)) calc(", " - ", ");\n --grid-column-gap: ", ";\n --grid-margin: ", ";\n\n --footer-height: ", ";\n --footer-padding-top: ", ";\n --footer-padding-bottom: ", ";\n --footer-items-gap: ", ";\n --footer-media-gap: ", ";\n --footer-media-icon-width: ", ";\n --footer-media-icon-height: ", ";\n --footer-vertical-spacing-lg: ", ";\n --footer-vertical-spacing-sm: ", ";\n\n --anchor-tabs-height: 60px;\n --rotator-button-width: ", ";\n --rotator-button-icon-width: ", ";\n }\n\n @media ", " {\n --grid-template-columns: calc(", " - ", ") repeat(12, minmax(0, 1fr)) calc(", " - ", ");\n --grid-column-gap: ", ";\n --grid-margin: ", ";\n --rotator-button-width: ", ";\n --rotator-button-icon-width: ", ";\n\n --font-size-header-6: ", ";\n\n --font-size-altHeader-4: ", ";\n\n --font-size-body-1: ", ";\n\n --footer-padding-top: ", ";\n --footer-padding-bottom: ", ";\n }\n\n @media ", " {\n\n }\n\n @media ", " {\n\n }\n }\n"])), function (_ref) {
|
|
13937
13814
|
var theme = _ref.theme;
|
|
13938
13815
|
return theme.colors.primary;
|
|
13939
13816
|
}, function (_ref2) {
|
|
@@ -14880,5 +14757,5 @@ var GlobalStyles = /*#__PURE__*/createGlobalStyle(_templateObject$1A || (_templa
|
|
|
14880
14757
|
return theme.footer.tablet.paddingBottom;
|
|
14881
14758
|
}, devices.desktop, devices.largeDesktop);
|
|
14882
14759
|
|
|
14883
|
-
export { Accordion, Accordions, Account, AltHeader, AnchorBar, AnchorTabBar, AnnouncementBanner, AspectRatio, AuxiliaryButton, AuxiliaryNav, Basket$1 as Basket, BodyContent, BodyCopyHarmonic, BodyText, ButtonText, ButtonType, Caption, Card, Cards, Carousel, CarouselType, CastFilters as CastFilter, CinemaBadge, Colors, ContactCard, ContactNewsletter, ContentSummary, ControlledDropdown, CreditListing, CustomStrategyTabsFilter,
|
|
14760
|
+
export { Accordion, Accordions, Account, AltHeader, AnchorBar, AnchorTabBar, AnnouncementBanner, AspectRatio, AuxiliaryButton, AuxiliaryNav, Basket$1 as Basket, BodyContent, BodyCopyHarmonic, BodyText, ButtonText, ButtonType, Caption, Card, Cards, Carousel, CarouselType, CastFilters as CastFilter, CinemaBadge, Colors, ContactCard, ContactNewsletter, ContentSummary, ControlledDropdown, CreditListing, CustomStrategyTabsFilter, Dropdown, Editorial, Footer, GlobalStyles, Grid, GridItem, HarmonicHeader, HarmonicOverline, HarmonicSize, HarmonicSubtitle, HarmonicThemeProvider, Header, HighlightsCarousel, HighlightsCinema as HighlightsCarouselCinema, HighlightsCore as HighlightsCarouselCore, HighlightsStream as HighlightsCarouselStream, HotFilters, Icon, ImageAspectRatioWrapper, ImageWithCaption, Information, Logo, MiniCard, MinimalCarousel, ModalWindow, NavTop, Navigation, NavigationText, Overline, PageHeading, PageHeadingCompact, PageHeadingHighlight, PageHeadingHighlightCarousel, PageHeadingImpact, PageHeadingPanel, PageHeadingPromo, Pagination, PasswordStrength, Paywall, PeopleListing, Person, PersonCard, PersonDetails, PolicyLinks, PrimaryButton, Progress, PromoWithTags, PromoWithTitle, Quote, Radio2, RadioGroup2, ReadMore, RotatorButtons, Search$1 as Search, SearchBar, SecondaryButton, SecondaryLogo, SectionSplitter, SectionTitle, SelectComponent as Select2, SelectComponent$1 as Select2Async, SignUpFormComponent as SignUpForm, SocialLinks, Sponsorship, StatusBanner, Component as Stepper, StickyBar, StreamBadge, Subtitle, Swipe, Tab, TabLink, Table, Tabs, TertiaryButton, TextArea, TextField, TextFieldLegacy, TextLink, ThemeColor, Theme as ThemeProvider, ThemeType, Tickbox, Tickbox2, TickboxMode, Timer, TitleWithCTA, TypeTags, UpsellCard, UpsellCards, UpsellSection, VideoControls, VideoWithControls$2 as VideoWithControls, breakpoints, devices, useHarmonicTheme, zIndexes };
|
|
14884
14761
|
//# sourceMappingURL=harmonic.esm.js.map
|