@royaloperahouse/chord 2.4.8 → 2.4.9-a-chord-development
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 +213 -7
- package/README.md +250 -40
- package/dist/chord.cjs.development.js +401 -330
- package/dist/chord.cjs.development.js.map +1 -1
- package/dist/chord.cjs.production.min.js +1 -1
- package/dist/chord.cjs.production.min.js.map +1 -1
- package/dist/chord.esm.js +403 -331
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/Grid/GridItemLegacy.d.ts +8 -0
- package/dist/components/atoms/Grid/index.d.ts +2 -1
- package/dist/components/atoms/Icons/SvgIcons/index.d.ts +75 -75
- package/dist/components/atoms/ToggleButton/ToggleButton.d.ts +4 -0
- package/dist/components/atoms/ToggleButton/ToggleButton.style.d.ts +5 -0
- package/dist/components/atoms/index.d.ts +3 -2
- package/dist/components/index.d.ts +3 -3
- package/dist/components/molecules/Information/InfoCta.d.ts +2 -2
- package/dist/components/molecules/Information/Information.style.d.ts +6 -3
- package/dist/components/molecules/PageHeading/index.d.ts +1 -1
- package/dist/components/molecules/PeopleListing/CreditListing/CreditListing.d.ts +3 -1
- package/dist/components/molecules/PeopleListing/CreditListing/CreditListing.style.d.ts +4 -1
- package/dist/components/molecules/index.d.ts +1 -1
- package/dist/components/organisms/FilterToggles/FilterToggles.d.ts +4 -0
- package/dist/components/organisms/FilterToggles/FilterToggles.style.d.ts +2 -0
- package/dist/components/organisms/FilterToggles/index.d.ts +9 -0
- package/dist/components/organisms/index.d.ts +2 -1
- package/dist/index.d.ts +4 -3
- package/dist/types/creditListing.d.ts +1 -0
- package/dist/types/formTypes.d.ts +12 -9
- package/dist/types/index.d.ts +2 -1
- package/dist/types/information.d.ts +17 -12
- package/dist/types/toggleButtonTypes.d.ts +13 -0
- package/dist/types/types.d.ts +10 -0
- package/package.json +1 -1
- package/README.GIT +0 -277
package/dist/chord.esm.js
CHANGED
|
@@ -34,6 +34,20 @@ var ThemeType;
|
|
|
34
34
|
ThemeType["Schools"] = "schools";
|
|
35
35
|
})(ThemeType || (ThemeType = {}));
|
|
36
36
|
|
|
37
|
+
var LinkTarget;
|
|
38
|
+
|
|
39
|
+
(function (LinkTarget) {
|
|
40
|
+
/**
|
|
41
|
+
* Opens the link in the same frame or tab as the current page.
|
|
42
|
+
*/
|
|
43
|
+
LinkTarget["Self"] = "_self";
|
|
44
|
+
/**
|
|
45
|
+
* Opens the link in a new browser tab or window, depending on the browser settings.
|
|
46
|
+
*/
|
|
47
|
+
|
|
48
|
+
LinkTarget["Blank"] = "_blank";
|
|
49
|
+
})(LinkTarget || (LinkTarget = {}));
|
|
50
|
+
|
|
37
51
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
38
52
|
try {
|
|
39
53
|
var info = gen[key](arg);
|
|
@@ -2698,10 +2712,43 @@ var ButtonType;
|
|
|
2698
2712
|
ButtonType["Tertiary"] = "Tertiary";
|
|
2699
2713
|
})(ButtonType || (ButtonType = {}));
|
|
2700
2714
|
|
|
2715
|
+
var IInformationCtaVariant;
|
|
2716
|
+
|
|
2717
|
+
(function (IInformationCtaVariant) {
|
|
2718
|
+
IInformationCtaVariant["Primary"] = "Primary";
|
|
2719
|
+
IInformationCtaVariant["Secondary"] = "Secondary";
|
|
2720
|
+
IInformationCtaVariant["Tertiary"] = "Tertiary";
|
|
2721
|
+
IInformationCtaVariant["TextLink"] = "TextLink";
|
|
2722
|
+
})(IInformationCtaVariant || (IInformationCtaVariant = {}));
|
|
2723
|
+
|
|
2724
|
+
var IInformationCtaTheme;
|
|
2725
|
+
|
|
2726
|
+
(function (IInformationCtaTheme) {
|
|
2727
|
+
IInformationCtaTheme["Cinema"] = "Cinema";
|
|
2728
|
+
IInformationCtaTheme["Core"] = "Core";
|
|
2729
|
+
IInformationCtaTheme["Stream"] = "Stream";
|
|
2730
|
+
})(IInformationCtaTheme || (IInformationCtaTheme = {}));
|
|
2731
|
+
|
|
2732
|
+
var IInformationTitleVariant;
|
|
2733
|
+
|
|
2734
|
+
(function (IInformationTitleVariant) {
|
|
2735
|
+
IInformationTitleVariant["Header"] = "Header";
|
|
2736
|
+
IInformationTitleVariant["AltHeader"] = "AltHeader";
|
|
2737
|
+
})(IInformationTitleVariant || (IInformationTitleVariant = {}));
|
|
2738
|
+
|
|
2739
|
+
var IInformationBackgroundColour;
|
|
2740
|
+
|
|
2741
|
+
(function (IInformationBackgroundColour) {
|
|
2742
|
+
IInformationBackgroundColour["Cinema"] = "cinema";
|
|
2743
|
+
IInformationBackgroundColour["Core"] = "core";
|
|
2744
|
+
IInformationBackgroundColour["Stream"] = "stream";
|
|
2745
|
+
IInformationBackgroundColour["White"] = "white";
|
|
2746
|
+
})(IInformationBackgroundColour || (IInformationBackgroundColour = {}));
|
|
2747
|
+
|
|
2701
2748
|
var PrimaryButton = function PrimaryButton(_ref) {
|
|
2702
2749
|
var children = _ref.children,
|
|
2703
2750
|
disabled = _ref.disabled,
|
|
2704
|
-
props = _objectWithoutPropertiesLoose(_ref, ["children", "disabled"
|
|
2751
|
+
props = _objectWithoutPropertiesLoose(_ref, ["children", "disabled"]);
|
|
2705
2752
|
|
|
2706
2753
|
var description = 'This button is currently disabled';
|
|
2707
2754
|
return disabled ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(AriaDescription, {
|
|
@@ -2955,7 +3002,39 @@ var GridItem = /*#__PURE__*/styled.div(_templateObject$a || (_templateObject$a =
|
|
|
2955
3002
|
});
|
|
2956
3003
|
|
|
2957
3004
|
var _templateObject$b;
|
|
2958
|
-
|
|
3005
|
+
/**
|
|
3006
|
+
* # IMPORTANT
|
|
3007
|
+
* Please use the `<GridItem />` component instead of this component if possible.
|
|
3008
|
+
* This component was introduced due to incompatibilities between versions of the Chord library.
|
|
3009
|
+
*/
|
|
3010
|
+
|
|
3011
|
+
var GridItemLegacy = /*#__PURE__*/styled.div(_templateObject$b || (_templateObject$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-column: ", " / span\n ", ";\n\n @media ", " {\n & {\n grid-column: ", " /\n span ", ";\n }\n }\n\n @media ", " {\n & {\n grid-column: ", " / span\n ", ";\n }\n }\n"])), function (_ref) {
|
|
3012
|
+
var columnStartDesktop = _ref.columnStartDesktop;
|
|
3013
|
+
return columnStartDesktop;
|
|
3014
|
+
}, function (_ref2) {
|
|
3015
|
+
var _ref2$columnSpanDeskt = _ref2.columnSpanDesktop,
|
|
3016
|
+
columnSpanDesktop = _ref2$columnSpanDeskt === void 0 ? 1 : _ref2$columnSpanDeskt;
|
|
3017
|
+
return columnSpanDesktop;
|
|
3018
|
+
}, devices.mobile, function (_ref3) {
|
|
3019
|
+
var columnStartDevice = _ref3.columnStartDevice,
|
|
3020
|
+
columnStartSmallDevice = _ref3.columnStartSmallDevice;
|
|
3021
|
+
return columnStartSmallDevice != null ? columnStartSmallDevice : columnStartDevice;
|
|
3022
|
+
}, function (_ref4) {
|
|
3023
|
+
var _ref4$columnSpanDevic = _ref4.columnSpanDevice,
|
|
3024
|
+
columnSpanDevice = _ref4$columnSpanDevic === void 0 ? 1 : _ref4$columnSpanDevic,
|
|
3025
|
+
columnSpanSmallDevice = _ref4.columnSpanSmallDevice;
|
|
3026
|
+
return columnSpanSmallDevice != null ? columnSpanSmallDevice : columnSpanDevice;
|
|
3027
|
+
}, devices.tablet, function (_ref5) {
|
|
3028
|
+
var columnStartDevice = _ref5.columnStartDevice;
|
|
3029
|
+
return columnStartDevice;
|
|
3030
|
+
}, function (_ref6) {
|
|
3031
|
+
var _ref6$columnSpanDevic = _ref6.columnSpanDevice,
|
|
3032
|
+
columnSpanDevice = _ref6$columnSpanDevic === void 0 ? 1 : _ref6$columnSpanDevic;
|
|
3033
|
+
return columnSpanDevice;
|
|
3034
|
+
});
|
|
3035
|
+
|
|
3036
|
+
var _templateObject$c;
|
|
3037
|
+
var ImageAspectRatioWrapper = /*#__PURE__*/styled.div(_templateObject$c || (_templateObject$c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n aspect-ratio: ", ";\n\n @supports not (aspect-ratio: ", ") {\n width: 100%;\n padding-top: ", "%;\n }\n\n img {\n display: block;\n width: 100%;\n height: 100%;\n object-fit: cover;\n\n @supports not (aspect-ratio: ", ") {\n position: absolute;\n top: 0;\n left: 0;\n }\n }\n"])), function (_ref) {
|
|
2959
3038
|
var _ref$aspectRatio = _ref.aspectRatio,
|
|
2960
3039
|
aspectRatio = _ref$aspectRatio === void 0 ? AspectRatio['1:1'] : _ref$aspectRatio;
|
|
2961
3040
|
return aspectRatio;
|
|
@@ -2973,8 +3052,8 @@ var ImageAspectRatioWrapper = /*#__PURE__*/styled.div(_templateObject$b || (_tem
|
|
|
2973
3052
|
return aspectRatio;
|
|
2974
3053
|
});
|
|
2975
3054
|
|
|
2976
|
-
var _templateObject$
|
|
2977
|
-
var ProgressView = /*#__PURE__*/styled.div(_templateObject$
|
|
3055
|
+
var _templateObject$d, _templateObject2$4, _templateObject3$2, _templateObject4$1, _templateObject5;
|
|
3056
|
+
var ProgressView = /*#__PURE__*/styled.div(_templateObject$d || (_templateObject$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: ", ";\n width: 100%;\n display: flex;\n flex-direction: row;\n"])), function (_ref) {
|
|
2978
3057
|
var height = _ref.height;
|
|
2979
3058
|
return height ? height + "px" : '6px';
|
|
2980
3059
|
});
|
|
@@ -3057,13 +3136,13 @@ var Progress = function Progress(_ref) {
|
|
|
3057
3136
|
}, renderSteps()));
|
|
3058
3137
|
};
|
|
3059
3138
|
|
|
3060
|
-
var _templateObject$
|
|
3061
|
-
var RadioContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
3139
|
+
var _templateObject$e, _templateObject2$5, _templateObject3$3;
|
|
3140
|
+
var RadioContainer = /*#__PURE__*/styled.div(_templateObject$e || (_templateObject$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: 12px;\n"])));
|
|
3062
3141
|
var RadioLine = /*#__PURE__*/styled.div(_templateObject2$5 || (_templateObject2$5 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n gap: 20px;\n grid-template-columns: 1.15em 1fr;\n user-select: none;\n cursor: pointer;\n color: black;\n\n &:focus {\n outline: none;\n }\n\n input[type='radio'] {\n cursor: pointer;\n appearance: none;\n background-color: #ffffff00;\n margin: 0;\n color: black;\n width: 20px;\n height: 20px;\n border: 1px solid black;\n border-radius: 50%;\n position: relative;\n place-content: center;\n display: block;\n }\n\n input[type='radio']::before {\n content: '';\n width: 10px;\n height: 10px;\n border-radius: 50%;\n background-color: #ffffff00;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n }\n\n input[type='radio']:checked::before {\n background-color: black;\n }\n"])));
|
|
3063
3142
|
var RadioError = /*#__PURE__*/styled.div(_templateObject3$3 || (_templateObject3$3 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-errorstate);\n"])));
|
|
3064
3143
|
|
|
3065
|
-
var _templateObject$
|
|
3066
|
-
var Wrapper$1 = /*#__PURE__*/styled.div(_templateObject$
|
|
3144
|
+
var _templateObject$f;
|
|
3145
|
+
var Wrapper$1 = /*#__PURE__*/styled.div(_templateObject$f || (_templateObject$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-", ");\n font-feature-settings: var(--font-feature-settings-", ");\n font-size: var(--font-size-", "-", ");\n font-weight: var(--font-weight-", "-", ");\n letter-spacing: var(--letter-spacing-", "-", ");\n line-height: var(--line-height-", "-", ");\n text-transform: var(--text-transform-", ");\n word-break: var(--word-break-", ");\n margin: var(--margin-", "-", ");\n"])), function (_ref) {
|
|
3067
3146
|
var typography = _ref.typography;
|
|
3068
3147
|
return typography;
|
|
3069
3148
|
}, function (_ref2) {
|
|
@@ -3220,8 +3299,8 @@ var Radio = function Radio(_ref) {
|
|
|
3220
3299
|
}, error)));
|
|
3221
3300
|
};
|
|
3222
3301
|
|
|
3223
|
-
var _templateObject$
|
|
3224
|
-
var Container = /*#__PURE__*/styled.div(_templateObject$
|
|
3302
|
+
var _templateObject$g, _templateObject2$6, _templateObject3$4, _templateObject4$2, _templateObject5$1, _templateObject6;
|
|
3303
|
+
var Container = /*#__PURE__*/styled.div(_templateObject$g || (_templateObject$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n"])));
|
|
3225
3304
|
var Radio$1 = /*#__PURE__*/styled.div(_templateObject2$6 || (_templateObject2$6 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 1px;\n left: 0;\n z-index: 1;\n box-sizing: border-box;\n width: 20px;\n height: 20px;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n border: ", ";\n background-color: ", ";\n color: ", ";\n"])), function (_ref) {
|
|
3226
3305
|
var error = _ref.error,
|
|
3227
3306
|
darkMode = _ref.darkMode,
|
|
@@ -3329,8 +3408,8 @@ var Radio2 = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
3329
3408
|
}, error)));
|
|
3330
3409
|
});
|
|
3331
3410
|
|
|
3332
|
-
var _templateObject$
|
|
3333
|
-
var ButtonsContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
3411
|
+
var _templateObject$h, _templateObject2$7, _templateObject3$5;
|
|
3412
|
+
var ButtonsContainer = /*#__PURE__*/styled.div(_templateObject$h || (_templateObject$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n"])));
|
|
3334
3413
|
var IconWrapper$1 = /*#__PURE__*/styled.div(_templateObject2$7 || (_templateObject2$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n justify-content: center;\n display: flex;\n align-items: center;\n width: var(--rotator-button-width);\n height: var(--rotator-button-width);\n background-color: var(--base-color-lightgrey);\n color: var(--base-color-black);\n\n svg {\n width: var(--rotator-button-icon-width);\n height: var(--rotator-button-icon-width);\n }\n\n svg path {\n fill: var(--base-color-black);\n }\n\n :hover {\n cursor: pointer;\n background-color: ", ";\n\n && svg path {\n fill: var(--base-color-white);\n }\n }\n\n @media ", " {\n background-color: var(--base-color-black);\n\n && svg path {\n fill: var(--base-color-white);\n }\n\n :hover {\n cursor: default;\n background-color: var(--base-color-black);\n\n && svg path {\n fill: var(--base-color-white);\n }\n }\n }\n"])), function (_ref) {
|
|
3335
3414
|
var theme = _ref.theme;
|
|
3336
3415
|
return theme.colors.primary;
|
|
@@ -3401,8 +3480,8 @@ var RotatorButtons = function RotatorButtons(_ref) {
|
|
|
3401
3480
|
}, renderNextIcon()));
|
|
3402
3481
|
};
|
|
3403
3482
|
|
|
3404
|
-
var _templateObject$
|
|
3405
|
-
var SecondaryLogoWrapper = /*#__PURE__*/styled.svg(_templateObject$
|
|
3483
|
+
var _templateObject$i;
|
|
3484
|
+
var SecondaryLogoWrapper = /*#__PURE__*/styled.svg(_templateObject$i || (_templateObject$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n path {\n fill: var(--base-color-", ");\n }\n"])), function (_ref) {
|
|
3406
3485
|
var fillColor = _ref.fillColor;
|
|
3407
3486
|
return fillColor;
|
|
3408
3487
|
});
|
|
@@ -3426,8 +3505,8 @@ var SecondaryLogo = function SecondaryLogo(_ref) {
|
|
|
3426
3505
|
})));
|
|
3427
3506
|
};
|
|
3428
3507
|
|
|
3429
|
-
var _templateObject$
|
|
3430
|
-
var SectionSplitterContainer = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
3508
|
+
var _templateObject$j, _templateObject2$8;
|
|
3509
|
+
var SectionSplitterContainer = /*#__PURE__*/styled(Grid)(_templateObject$j || (_templateObject$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 4px;\n"])));
|
|
3431
3510
|
var Splitter = /*#__PURE__*/styled.div(_templateObject2$8 || (_templateObject2$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n height: 4px;\n background: var(--base-color-lightgrey);\n"])));
|
|
3432
3511
|
|
|
3433
3512
|
var SectionSplitter = function SectionSplitter(_ref) {
|
|
@@ -3446,8 +3525,8 @@ var SectionSplitter = function SectionSplitter(_ref) {
|
|
|
3446
3525
|
}, /*#__PURE__*/React__default.createElement(Splitter, null)));
|
|
3447
3526
|
};
|
|
3448
3527
|
|
|
3449
|
-
var _templateObject$
|
|
3450
|
-
var SponsorLogoWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
3528
|
+
var _templateObject$k;
|
|
3529
|
+
var SponsorLogoWrapper = /*#__PURE__*/styled.div(_templateObject$k || (_templateObject$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: var(--base-color-black);\n width: 172px;\n"])));
|
|
3451
3530
|
|
|
3452
3531
|
var SponsorLogo = function SponsorLogo(_ref) {
|
|
3453
3532
|
var _ref$colorLogo = _ref.colorLogo,
|
|
@@ -3657,8 +3736,8 @@ var SponsorLogo = function SponsorLogo(_ref) {
|
|
|
3657
3736
|
})))));
|
|
3658
3737
|
};
|
|
3659
3738
|
|
|
3660
|
-
var _templateObject$
|
|
3661
|
-
var CustomImage = /*#__PURE__*/styled.img(_templateObject$
|
|
3739
|
+
var _templateObject$l, _templateObject2$9;
|
|
3740
|
+
var CustomImage = /*#__PURE__*/styled.img(_templateObject$l || (_templateObject$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n max-height: 100px;\n max-width: auto;\n\n @media ", " {\n max-height: 55px;\n }\n\n @media ", " {\n max-height: 45px;\n }\n"])), devices.tablet, devices.mobile);
|
|
3662
3741
|
var SponsorshipStyledIframe = /*#__PURE__*/styled.div(_templateObject2$9 || (_templateObject2$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: transparent;\n height: 80px;\n margin: 0px;\n overflow: hidden;\n padding: 0;\n width: 80px;\n\n & > iframe {\n border: 0;\n display: block;\n margin: 0px;\n padding: 0px;\n overflow: hidden;\n width: 100%;\n height: 100%;\n }\n\n @media ", " {\n & {\n height: 40px;\n width: 40px;\n }\n & iframe {\n height: 80px;\n transform: scale(0.5) translate(-40px, -40px);\n width: 80px;\n }\n }\n"])), devices.mobile);
|
|
3663
3742
|
|
|
3664
3743
|
var DEFAULT_SPONSORSHIP_IFRAME = 'https://static.roh.org.uk/rolex/v4/rolex.html?size=80';
|
|
@@ -3691,8 +3770,8 @@ var Sponsorship = function Sponsorship(_ref) {
|
|
|
3691
3770
|
}));
|
|
3692
3771
|
};
|
|
3693
3772
|
|
|
3694
|
-
var _templateObject$
|
|
3695
|
-
var TabText = /*#__PURE__*/styled.a(_templateObject$
|
|
3773
|
+
var _templateObject$m, _templateObject2$a;
|
|
3774
|
+
var TabText = /*#__PURE__*/styled.a(_templateObject$m || (_templateObject$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\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-black);\n margin-right: 0px;\n margin-top: 5px;\n text-decoration: none;\n text-transform: uppercase;\n\n ", "\n\n @media ", " {\n ", "\n }\n"])), function (props) {
|
|
3696
3775
|
if (props.withIcon === 'left') {
|
|
3697
3776
|
return "margin-left: 5px;";
|
|
3698
3777
|
}
|
|
@@ -3791,8 +3870,8 @@ var Tab = function Tab(_ref) {
|
|
|
3791
3870
|
}));
|
|
3792
3871
|
};
|
|
3793
3872
|
|
|
3794
|
-
var _templateObject$
|
|
3795
|
-
var TabLinkWrapper = /*#__PURE__*/styled.a(_templateObject$
|
|
3873
|
+
var _templateObject$n, _templateObject2$b;
|
|
3874
|
+
var TabLinkWrapper = /*#__PURE__*/styled.a(_templateObject$n || (_templateObject$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: ", ";\n font-family: var(--font-family-navigation);\n font-size: var(--font-size-navigation);\n font-weight: var(--font-weight-navigation);\n line-height: var(--line-height-navigation);\n letter-spacing: var(--letter-spacing-navigation);\n text-transform: var(--text-transform-navigation);\n color: ", ";\n width: fit-content;\n display: flex;\n align-items: center;\n cursor: pointer;\n text-decoration: none;\n border-bottom: ", ";\n ", "\n\n @media ", ", ", " {\n &:hover {\n color: var(--base-color-", ");\n border-bottom: 1px solid var(--base-color-", ");\n\n && svg path {\n fill: var(--base-color-", ");\n }\n }\n }\n"])), function (_ref) {
|
|
3796
3875
|
var iconName = _ref.iconName;
|
|
3797
3876
|
return iconName ? 'calc(var(--text-link-underline-offset) - 4px) 0' : 'var(--text-link-underline-offset) 0';
|
|
3798
3877
|
}, function (_ref2) {
|
|
@@ -3843,8 +3922,8 @@ var TabLink = function TabLink(_ref) {
|
|
|
3843
3922
|
})) : null, children);
|
|
3844
3923
|
};
|
|
3845
3924
|
|
|
3846
|
-
var _templateObject$
|
|
3847
|
-
var TextAreaWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
3925
|
+
var _templateObject$o, _templateObject2$c, _templateObject3$6, _templateObject4$3;
|
|
3926
|
+
var TextAreaWrapper = /*#__PURE__*/styled.div(_templateObject$o || (_templateObject$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: ", ";\n height: ", ";\n"])), function (_ref) {
|
|
3848
3927
|
var width = _ref.width;
|
|
3849
3928
|
return width ? width + "px;" : '100%;';
|
|
3850
3929
|
}, function (_ref2) {
|
|
@@ -3967,8 +4046,8 @@ var TextArea = function TextArea(_ref) {
|
|
|
3967
4046
|
}, error))));
|
|
3968
4047
|
};
|
|
3969
4048
|
|
|
3970
|
-
var _templateObject$
|
|
3971
|
-
var Container$1 = /*#__PURE__*/styled.div(_templateObject$
|
|
4049
|
+
var _templateObject$p, _templateObject2$d, _templateObject3$7, _templateObject4$4, _templateObject5$2, _templateObject6$1;
|
|
4050
|
+
var Container$1 = /*#__PURE__*/styled.div(_templateObject$p || (_templateObject$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n"])));
|
|
3972
4051
|
var InputWrapper = /*#__PURE__*/styled.div(_templateObject2$d || (_templateObject2$d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n width: auto;\n max-width: ", ";\n"])), function (_ref) {
|
|
3973
4052
|
var width = _ref.width;
|
|
3974
4053
|
if (!width) return 'none';
|
|
@@ -4094,8 +4173,8 @@ var TextField = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
4094
4173
|
}, error)));
|
|
4095
4174
|
});
|
|
4096
4175
|
|
|
4097
|
-
var _templateObject$
|
|
4098
|
-
var TextFieldContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
4176
|
+
var _templateObject$q, _templateObject2$e, _templateObject3$8, _templateObject4$5, _templateObject5$3;
|
|
4177
|
+
var TextFieldContainer = /*#__PURE__*/styled.div(_templateObject$q || (_templateObject$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n"])));
|
|
4099
4178
|
var textStyles = /*#__PURE__*/css(_templateObject2$e || (_templateObject2$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-body);\n font-weight: ", ";\n font-size: ", ";\n line-height: ", ";\n"])), function (_ref) {
|
|
4100
4179
|
var theme = _ref.theme;
|
|
4101
4180
|
return theme.fonts.desktop.weights.body[1];
|
|
@@ -4168,8 +4247,8 @@ var TextFieldLegacy = function TextFieldLegacy(_ref) {
|
|
|
4168
4247
|
}, error) : null);
|
|
4169
4248
|
};
|
|
4170
4249
|
|
|
4171
|
-
var _templateObject$
|
|
4172
|
-
var TextLinkWrapper = /*#__PURE__*/styled.a(_templateObject$
|
|
4250
|
+
var _templateObject$r, _templateObject2$f;
|
|
4251
|
+
var TextLinkWrapper = /*#__PURE__*/styled.a(_templateObject$r || (_templateObject$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-bottom: 1px solid;\n padding-bottom: ", ";\n font-family: var(--font-family-overline);\n font-size: var(--font-size-overline-1);\n font-weight: var(--font-weight-overline-1);\n line-height: var(--line-height-overline-1);\n letter-spacing: var(--letter-spacing-overline-1);\n text-transform: var(--text-transform-overline);\n color: var(--base-color-", ");\n width: fit-content;\n display: flex;\n align-items: center;\n cursor: pointer;\n text-decoration: none;\n"])), function (_ref) {
|
|
4173
4252
|
var iconName = _ref.iconName;
|
|
4174
4253
|
return iconName ? 'calc(var(--text-link-underline-offset) - 4px)' : 'var(--text-link-underline-offset)';
|
|
4175
4254
|
}, function (_ref2) {
|
|
@@ -4205,8 +4284,8 @@ var TextLogoProduct;
|
|
|
4205
4284
|
TextLogoProduct["Cinema"] = "CINEMA";
|
|
4206
4285
|
})(TextLogoProduct || (TextLogoProduct = {}));
|
|
4207
4286
|
|
|
4208
|
-
var _templateObject$
|
|
4209
|
-
var TickboxError = /*#__PURE__*/styled.div(_templateObject$
|
|
4287
|
+
var _templateObject$s, _templateObject2$g, _templateObject3$9, _templateObject4$6;
|
|
4288
|
+
var TickboxError = /*#__PURE__*/styled.div(_templateObject$s || (_templateObject$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-block: 20px;\n color: var(--base-color-", ");\n"])), function (_ref) {
|
|
4210
4289
|
var dark = _ref.dark;
|
|
4211
4290
|
return dark ? 'white' : 'errorstate';
|
|
4212
4291
|
});
|
|
@@ -4327,8 +4406,8 @@ var Tickbox = function Tickbox(_ref) {
|
|
|
4327
4406
|
}, error)));
|
|
4328
4407
|
};
|
|
4329
4408
|
|
|
4330
|
-
var _templateObject$
|
|
4331
|
-
var Container$2 = /*#__PURE__*/styled.div(_templateObject$
|
|
4409
|
+
var _templateObject$t, _templateObject2$h, _templateObject3$a, _templateObject4$7, _templateObject5$4, _templateObject6$2;
|
|
4410
|
+
var Container$2 = /*#__PURE__*/styled.div(_templateObject$t || (_templateObject$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n"])));
|
|
4332
4411
|
var Tickbox$1 = /*#__PURE__*/styled.div(_templateObject2$h || (_templateObject2$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 1px;\n left: 0;\n z-index: 1;\n box-sizing: border-box;\n width: 20px;\n height: 20px;\n display: flex;\n align-items: center;\n justify-content: center;\n border: ", ";\n background-color: ", ";\n color: ", ";\n"])), function (_ref) {
|
|
4333
4412
|
var error = _ref.error,
|
|
4334
4413
|
darkMode = _ref.darkMode,
|
|
@@ -4438,8 +4517,8 @@ var Tickbox2 = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
4438
4517
|
}, error)));
|
|
4439
4518
|
});
|
|
4440
4519
|
|
|
4441
|
-
var _templateObject$
|
|
4442
|
-
var TimerWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
4520
|
+
var _templateObject$u, _templateObject2$i, _templateObject3$b, _templateObject4$8, _templateObject5$5, _templateObject6$3, _templateObject7, _templateObject8;
|
|
4521
|
+
var TimerWrapper = /*#__PURE__*/styled.div(_templateObject$u || (_templateObject$u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-", ");\n"])), function (_ref) {
|
|
4443
4522
|
var color = _ref.color;
|
|
4444
4523
|
return color;
|
|
4445
4524
|
});
|
|
@@ -4547,8 +4626,8 @@ var Timer = function Timer(_ref) {
|
|
|
4547
4626
|
}));
|
|
4548
4627
|
};
|
|
4549
4628
|
|
|
4550
|
-
var _templateObject$
|
|
4551
|
-
var TypeTagsContainer = /*#__PURE__*/styled.ul(_templateObject$
|
|
4629
|
+
var _templateObject$v;
|
|
4630
|
+
var TypeTagsContainer = /*#__PURE__*/styled.ul(_templateObject$v || (_templateObject$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n list-style-type: none;\n margin: 0;\n padding: 0;\n\n & li {\n display: inline-block;\n margin: 0;\n }\n\n & li:before {\n content: '\u2014';\n margin: 0 0.5em;\n }\n\n & li:first-child:before {\n display: none;\n }\n"])));
|
|
4552
4631
|
|
|
4553
4632
|
var TypeTags = function TypeTags(_ref) {
|
|
4554
4633
|
var list = _ref.list;
|
|
@@ -5290,8 +5369,8 @@ var runtime_1 = /*#__PURE__*/createCommonjsModule(function (module) {
|
|
|
5290
5369
|
}
|
|
5291
5370
|
});
|
|
5292
5371
|
|
|
5293
|
-
var _templateObject$
|
|
5294
|
-
var VideoPlayButton = /*#__PURE__*/styled.button(_templateObject$
|
|
5372
|
+
var _templateObject$w, _templateObject2$j, _templateObject3$c, _templateObject4$9, _templateObject5$6, _templateObject6$4, _templateObject7$1, _templateObject8$1, _templateObject9, _templateObject10;
|
|
5373
|
+
var VideoPlayButton = /*#__PURE__*/styled.button(_templateObject$w || (_templateObject$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 48px;\n height: 48px;\n border-radius: 50%;\n background-color: #fff;\n border: none;\n padding: 12px;\n cursor: pointer;\n"])));
|
|
5295
5374
|
var VideoFullscreenButton = /*#__PURE__*/styled.button(_templateObject2$j || (_templateObject2$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 56px;\n height: 36px;\n background-color: rgb(26, 26, 26, 0.6);\n border-radius: 5px;\n padding: 5px 14px;\n border: none;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n"])));
|
|
5296
5375
|
var VideoControlsWrapper = /*#__PURE__*/styled.div(_templateObject3$c || (_templateObject3$c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 0;\n width: 100%;\n"])));
|
|
5297
5376
|
var VideoControlsInnerWrapper = /*#__PURE__*/styled.div(_templateObject4$9 || (_templateObject4$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n margin: 0 40px 17px 30px;\n"])));
|
|
@@ -5510,8 +5589,8 @@ var VideoControls = function VideoControls(_ref2) {
|
|
|
5510
5589
|
})));
|
|
5511
5590
|
};
|
|
5512
5591
|
|
|
5513
|
-
var _templateObject$
|
|
5514
|
-
var StepperWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
5592
|
+
var _templateObject$x, _templateObject2$k, _templateObject3$d, _templateObject4$a, _templateObject5$7;
|
|
5593
|
+
var StepperWrapper = /*#__PURE__*/styled.div(_templateObject$x || (_templateObject$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n justify-content: left;\n align-items: left;\n"])));
|
|
5515
5594
|
var StepperError = /*#__PURE__*/styled.div(_templateObject2$k || (_templateObject2$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-", ");\n margin-block: 15px 0;\n\n * {\n margin: 0;\n }\n"])), function (_ref) {
|
|
5516
5595
|
var darkMode = _ref.darkMode;
|
|
5517
5596
|
return darkMode ? 'white' : 'errorstate';
|
|
@@ -5738,8 +5817,8 @@ var Component = function Component(_ref) {
|
|
|
5738
5817
|
}, error)));
|
|
5739
5818
|
};
|
|
5740
5819
|
|
|
5741
|
-
var _templateObject$
|
|
5742
|
-
var NavigationWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
5820
|
+
var _templateObject$y, _templateObject2$l, _templateObject3$e, _templateObject4$b, _templateObject5$8, _templateObject6$5, _templateObject7$2, _templateObject8$2, _templateObject9$1, _templateObject10$1, _templateObject11;
|
|
5821
|
+
var NavigationWrapper = /*#__PURE__*/styled.div(_templateObject$y || (_templateObject$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n @media ", " {\n ", "\n }\n"])), devices.mobileAndTablet, function (_ref) {
|
|
5743
5822
|
var isMenuOpen = _ref.isMenuOpen;
|
|
5744
5823
|
return isMenuOpen && "\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: " + zIndexes.overlay + ";\n background-color: var(--base-color-white);\n overflow-y: auto;\n scrollbar-width: none;\n ::-webkit-scrollbar {\n display: none;\n }\n ";
|
|
5745
5824
|
});
|
|
@@ -5763,8 +5842,8 @@ var NavContainer = /*#__PURE__*/styled.div(_templateObject9$1 || (_templateObjec
|
|
|
5763
5842
|
var NavContainerGridItem = /*#__PURE__*/styled(GridItem)(_templateObject10$1 || (_templateObject10$1 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n @media ", " {\n grid-column: 3 / span 14;\n }\n"])), devices.desktop);
|
|
5764
5843
|
var NavTopContainer = /*#__PURE__*/styled.div(_templateObject11 || (_templateObject11 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 26px;\n right: 50px;\n top: 20px;\n position: absolute;\n\n @media ", " {\n margin-top: 1px;\n position: inherit;\n }\n"])), devices.mobileAndTablet);
|
|
5765
5844
|
|
|
5766
|
-
var _templateObject$
|
|
5767
|
-
var LogoWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
5845
|
+
var _templateObject$z;
|
|
5846
|
+
var LogoWrapper = /*#__PURE__*/styled.div(_templateObject$z || (_templateObject$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 66px;\n height: auto;\n cursor: pointer;\n & img {\n width: auto;\n height: 100%;\n }\n"])));
|
|
5768
5847
|
|
|
5769
5848
|
var Logo = function Logo(_ref) {
|
|
5770
5849
|
var _ref$id = _ref.id,
|
|
@@ -5796,11 +5875,11 @@ var Logo = function Logo(_ref) {
|
|
|
5796
5875
|
}))));
|
|
5797
5876
|
};
|
|
5798
5877
|
|
|
5799
|
-
var _templateObject$
|
|
5800
|
-
var NavTopContainer$1 = /*#__PURE__*/styled.div(_templateObject$
|
|
5878
|
+
var _templateObject$A;
|
|
5879
|
+
var NavTopContainer$1 = /*#__PURE__*/styled.div(_templateObject$A || (_templateObject$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n column-gap: 16px;\n justify-content: flex-end;\n height: 26px;\n\n @media ", " {\n column-gap: 8px;\n }\n"])), devices.mobile);
|
|
5801
5880
|
|
|
5802
|
-
var _templateObject$
|
|
5803
|
-
var BasketContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
5881
|
+
var _templateObject$B, _templateObject2$m, _templateObject3$f, _templateObject4$c;
|
|
5882
|
+
var BasketContainer = /*#__PURE__*/styled.div(_templateObject$B || (_templateObject$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n cursor: pointer;\n border-bottom: 1px solid var(--base-color-transparent);\n\n ", "\n\n :hover {\n border-bottom: 1px solid var(--base-color-", ");\n && a {\n color: var(--base-color-", ");\n }\n && svg path {\n fill: var(--base-color-", ");\n }\n }\n\n ", "\n"])), function (_ref) {
|
|
5804
5883
|
var selected = _ref.selected,
|
|
5805
5884
|
colorPrimary = _ref.colorPrimary;
|
|
5806
5885
|
|
|
@@ -5989,8 +6068,8 @@ var Basket$1 = function Basket(_ref) {
|
|
|
5989
6068
|
}, expiryTime ? basketText : text) : ''));
|
|
5990
6069
|
};
|
|
5991
6070
|
|
|
5992
|
-
var _templateObject$
|
|
5993
|
-
var SearchContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
6071
|
+
var _templateObject$C, _templateObject2$n;
|
|
6072
|
+
var SearchContainer = /*#__PURE__*/styled.div(_templateObject$C || (_templateObject$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n cursor: pointer;\n border-bottom: 1px solid var(--base-color-transparent);\n ", "\n\n :hover {\n border-bottom: 1px solid var(--base-color-", ");\n && svg path {\n fill: var(--base-color-", ");\n }\n }\n"])), function (_ref) {
|
|
5994
6073
|
var selected = _ref.selected,
|
|
5995
6074
|
colorPrimary = _ref.colorPrimary;
|
|
5996
6075
|
|
|
@@ -6282,8 +6361,8 @@ var NavTop = function NavTop(_ref) {
|
|
|
6282
6361
|
}));
|
|
6283
6362
|
};
|
|
6284
6363
|
|
|
6285
|
-
var _templateObject$
|
|
6286
|
-
var TabsContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
6364
|
+
var _templateObject$D, _templateObject2$o, _templateObject3$g, _templateObject4$d;
|
|
6365
|
+
var TabsContainer = /*#__PURE__*/styled.div(_templateObject$D || (_templateObject$D = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n flex-direction: row;\n column-gap: 32px;\n"])));
|
|
6287
6366
|
var ItemsContainer = /*#__PURE__*/styled.div(_templateObject2$o || (_templateObject2$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: inline-flex;\n flex-direction: row;\n column-gap: 32px;\n\n @media ", " {\n column-gap: 15px;\n }\n\n @media ", ", ", " {\n div:last-child > div {\n right: 1px;\n }\n }\n\n @media ", " {\n ", "\n }\n"])), devices.desktop, devices.desktop, devices.largeDesktop, devices.mobileAndTablet, function (props) {
|
|
6288
6367
|
if (props.showMenu) {
|
|
6289
6368
|
return "\n display: flex;\n flex-direction: column;\n row-gap: 32px;\n ";
|
|
@@ -6425,8 +6504,8 @@ var Tabs = function Tabs(_ref) {
|
|
|
6425
6504
|
}, "MENU"))));
|
|
6426
6505
|
};
|
|
6427
6506
|
|
|
6428
|
-
var _templateObject$
|
|
6429
|
-
var SearchBarContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
6507
|
+
var _templateObject$E, _templateObject2$p, _templateObject3$h, _templateObject5$9, _templateObject6$6, _templateObject7$3;
|
|
6508
|
+
var SearchBarContainer = /*#__PURE__*/styled.div(_templateObject$E || (_templateObject$E = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n column-gap: 64px;\n justify-content: space-between;\n align-items: center;\n height: 100%;\n background-color: var(--base-color-transparent);\n\n @media ", " {\n column-gap: 12px;\n }\n"])), devices.mobile);
|
|
6430
6509
|
var SvgContainerSearch = /*#__PURE__*/styled.div(_templateObject2$p || (_templateObject2$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n svg {\n width: var(--navigation-xlarge-gap);\n height: var(--navigation-xlarge-gap);\n }\n"])));
|
|
6431
6510
|
var SvgContainerClose = /*#__PURE__*/styled.div(_templateObject3$h || (_templateObject3$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n svg {\n width: var(--navigation-large-gap);\n height: var(--navigation-large-gap);\n }\n\n :hover {\n cursor: pointer;\n && svg path {\n fill: var(--base-color-navigation);\n }\n }\n"])));
|
|
6432
6511
|
var InputContainer = /*#__PURE__*/styled.div(_templateObject5$9 || (_templateObject5$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: blue;\n width: 100%;\n\n input {\n font-size: var(--font-size-search);\n font-family: var(--font-family-search);\n border: none;\n border-radius: 0;\n outline: none;\n outline-color: var(--base-color-white);\n height: 48px;\n box-sizing: border-box;\n width: 100%;\n -webkit-appearance: none;\n\n &.search-input {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n\n @media ", " {\n column-gap: 24px;\n }\n }\n"])), devices.mobile);
|
|
@@ -6663,16 +6742,16 @@ var Navigation = function Navigation(_ref) {
|
|
|
6663
6742
|
})))));
|
|
6664
6743
|
};
|
|
6665
6744
|
|
|
6666
|
-
var _templateObject$
|
|
6667
|
-
var FooterSection = /*#__PURE__*/styled.section(_templateObject$
|
|
6745
|
+
var _templateObject$F, _templateObject2$q, _templateObject3$i, _templateObject4$e, _templateObject5$a, _templateObject6$7;
|
|
6746
|
+
var FooterSection = /*#__PURE__*/styled.section(_templateObject$F || (_templateObject$F = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: var(--base-color-black);\n color: var(--base-color-white);\n"])));
|
|
6668
6747
|
var FooterContainer = /*#__PURE__*/styled.div(_templateObject2$q || (_templateObject2$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: var(--footer-height);\n padding-top: var(--footer-padding-top);\n padding-bottom: var(--footer-padding-bottom);\n display: grid;\n grid-template-rows:\n min-content var(--footer-vertical-spacing-lg) min-content var(--footer-vertical-spacing-lg) min-content var(\n --footer-vertical-spacing-sm\n )\n min-content;\n grid-template-areas:\n 'row1'\n '.'\n 'row2'\n '.'\n 'row3'\n '.'\n 'row4';\n"])));
|
|
6669
6748
|
var PolicyLinksRow = /*#__PURE__*/styled.div(_templateObject3$i || (_templateObject3$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: row1;\n justify-self: center;\n\n @media ", " {\n & {\n justify-self: start;\n grid-area: row2;\n }\n }\n"])), devices.mobile);
|
|
6670
6749
|
var ContactNewsletterRow = /*#__PURE__*/styled.div(_templateObject4$e || (_templateObject4$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: row2;\n\n @media ", " {\n & {\n grid-area: row1;\n }\n }\n"])), devices.mobile);
|
|
6671
6750
|
var ArtsLogoRow = /*#__PURE__*/styled.div(_templateObject5$a || (_templateObject5$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: row3;\n justify-self: center;\n\n @media ", " {\n justify-self: start;\n }\n"])), devices.mobile);
|
|
6672
6751
|
var AdditionalInfo = /*#__PURE__*/styled.p(_templateObject6$7 || (_templateObject6$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: row4;\n font-family: var(--font-family-body);\n font-size: var(--font-size-body-3);\n line-height: var(--line-height-body-3);\n text-align: center;\n margin: 0;\n padding: 0;\n\n @media ", " {\n text-align: left;\n }\n"])), devices.mobile);
|
|
6673
6752
|
|
|
6674
|
-
var _templateObject$
|
|
6675
|
-
var PolicyLinksList = /*#__PURE__*/styled.ul(_templateObject$
|
|
6753
|
+
var _templateObject$G, _templateObject2$r, _templateObject3$j;
|
|
6754
|
+
var PolicyLinksList = /*#__PURE__*/styled.ul(_templateObject$G || (_templateObject$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0 auto;\n padding: 0;\n list-style: none;\n display: flex;\n gap: var(--footer-items-gap);\n\n @media ", " {\n & {\n margin: 0;\n flex-direction: column;\n }\n }\n"])), devices.mobile);
|
|
6676
6755
|
var PolicyLinkItem = /*#__PURE__*/styled.li(_templateObject2$r || (_templateObject2$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-overline);\n font-size: var(--font-size-overline-1);\n font-weight: var(--font-weight-overline-1);\n line-height: var(--line-height-overline-1);\n letter-spacing: var(--letter-spacing-overline-1);\n text-transform: var(--text-transform-overline);\n text-align: center;\n\n @media ", " {\n & {\n text-align: left;\n }\n }\n"])), devices.mobile);
|
|
6677
6756
|
var PolicyLink = /*#__PURE__*/styled.a(_templateObject3$j || (_templateObject3$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: fit-content;\n text-decoration: none;\n text-transform: uppercase;\n color: var(--base-color-white);\n cursor: pointer;\n"])));
|
|
6678
6757
|
|
|
@@ -6690,8 +6769,8 @@ var PolicyLinks = function PolicyLinks(_ref) {
|
|
|
6690
6769
|
}));
|
|
6691
6770
|
};
|
|
6692
6771
|
|
|
6693
|
-
var _templateObject$
|
|
6694
|
-
var ContactNewsletterWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
6772
|
+
var _templateObject$H, _templateObject2$s, _templateObject3$k, _templateObject4$f, _templateObject5$b, _templateObject6$8, _templateObject7$4, _templateObject8$3;
|
|
6773
|
+
var ContactNewsletterWrapper = /*#__PURE__*/styled.div(_templateObject$H || (_templateObject$H = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n grid-template-columns: calc(50% - 1px) 2px calc(50% - 1px);\n grid-template-rows: 100px;\n gap: 0;\n\n @media ", " {\n & {\n display: grid;\n grid-template-columns: 100%;\n grid-template-rows: min-content min-content;\n gap: var(--footer-vertical-spacing-lg);\n }\n }\n"])), devices.mobile);
|
|
6695
6774
|
var ContactNewsletterSeparator = /*#__PURE__*/styled.div(_templateObject2$s || (_templateObject2$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-column: 2;\n justify-self: center;\n height: 100%;\n border: 1px solid var(--base-color-white);\n\n @media ", " {\n & {\n grid-column: auto;\n display: none;\n }\n }\n"])), devices.mobile);
|
|
6696
6775
|
var SignUpWrapper = /*#__PURE__*/styled.div(_templateObject3$k || (_templateObject3$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-column: 1;\n padding-top: 9px;\n justify-self: center;\n display: flex;\n flex-direction: column;\n align-items: center;\n\n @media ", " {\n & {\n grid-column: auto;\n align-items: start;\n justify-self: start;\n padding-top: 0;\n }\n }\n"])), devices.mobile);
|
|
6697
6776
|
var SignUpText = /*#__PURE__*/styled.p(_templateObject4$f || (_templateObject4$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-body);\n font-size: var(--font-size-body-2);\n line-height: var(--line-height-body-2);\n width: 60%;\n margin: 0 auto;\n height: 60px;\n text-align: center;\n\n @media ", " {\n & {\n width: 100%;\n height: auto;\n text-align: left;\n font-size: 14px;\n margin-bottom: var(--footer-vertical-spacing-lg);\n }\n }\n"])), devices.mobile);
|
|
@@ -6762,9 +6841,9 @@ var Footer = function Footer(_ref) {
|
|
|
6762
6841
|
}, additionalInfo)))));
|
|
6763
6842
|
};
|
|
6764
6843
|
|
|
6765
|
-
var _templateObject$
|
|
6844
|
+
var _templateObject$I, _templateObject2$t, _templateObject3$l, _templateObject4$g, _templateObject5$c, _templateObject6$9;
|
|
6766
6845
|
var LIST_ITEM_GAP = 32;
|
|
6767
|
-
var AnchorTabbarWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
6846
|
+
var AnchorTabbarWrapper = /*#__PURE__*/styled.div(_templateObject$I || (_templateObject$I = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: sticky;\n width: 100%;\n top: 0;\n border-bottom: ", ";\n background-color: var(--base-color-white);\n z-index: ", ";\n"])), function (_ref) {
|
|
6768
6847
|
var bottomBorder = _ref.bottomBorder;
|
|
6769
6848
|
return bottomBorder ? '2px solid var(--base-color-light-grey)' : 'none';
|
|
6770
6849
|
}, zIndexes.anchor);
|
|
@@ -7028,8 +7107,8 @@ var AnchorTabBar = function AnchorTabBar(_ref) {
|
|
|
7028
7107
|
})) : null) : null))));
|
|
7029
7108
|
};
|
|
7030
7109
|
|
|
7031
|
-
var _templateObject$
|
|
7032
|
-
var TitleCTAGridWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
7110
|
+
var _templateObject$J, _templateObject2$u, _templateObject3$m, _templateObject4$h, _templateObject6$a, _templateObject7$5, _templateObject8$4, _templateObject9$2, _templateObject10$2;
|
|
7111
|
+
var TitleCTAGridWrapper = /*#__PURE__*/styled.div(_templateObject$J || (_templateObject$J = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: ", ";\n top: -1px;\n background-color: var(--base-color-white);\n z-index: ", ";\n"])), function (_ref) {
|
|
7033
7112
|
var sticky = _ref.sticky;
|
|
7034
7113
|
return sticky ? 'sticky' : 'initial';
|
|
7035
7114
|
}, zIndexes.anchor);
|
|
@@ -7089,8 +7168,8 @@ var TitleWithCTA = function TitleWithCTA(_ref) {
|
|
|
7089
7168
|
}, message)));
|
|
7090
7169
|
};
|
|
7091
7170
|
|
|
7092
|
-
var _templateObject$
|
|
7093
|
-
var Wrapper$2 = /*#__PURE__*/styled.div(_templateObject$
|
|
7171
|
+
var _templateObject$K, _templateObject2$v, _templateObject3$n, _templateObject4$i, _templateObject5$d, _templateObject6$b, _templateObject7$6, _templateObject8$5;
|
|
7172
|
+
var Wrapper$2 = /*#__PURE__*/styled.div(_templateObject$K || (_templateObject$K = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: var(--base-color-lightgrey);\n padding: 40px;\n\n display: block;\n position: relative;\n\n @media ", " {\n margin-top: 0;\n padding: 40px 20px;\n }\n"])), devices.tablet);
|
|
7094
7173
|
var PromoLabelWrapper = /*#__PURE__*/styled.div(_templateObject2$v || (_templateObject2$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-self: flex-end;\n height: 15px;\n"])));
|
|
7095
7174
|
var PromoLabel = /*#__PURE__*/styled.div(_templateObject3$n || (_templateObject3$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background: ", ";\n color: ", ";\n padding: 6px 8px;\n width: fit-content;\n display: flex;\n justify-content: center;\n align-items: center;\n position: absolute;\n right: 20px;\n top: 0;\n width: auto;\n margin: auto;\n font-family: var(--font-family-header);\n font-feature-settings: 'tnum' on, 'lnum' on, 'liga' off, 'calt' off;\n font-size: var(--font-size-overline-2);\n line-height: 12px;\n text-align: center;\n letter-spacing: 1px;\n text-transform: uppercase;\n"])), function (_ref) {
|
|
7096
7175
|
var theme = _ref.theme;
|
|
@@ -7170,8 +7249,8 @@ var UpsellCard = function UpsellCard(_ref) {
|
|
|
7170
7249
|
}), link && /*#__PURE__*/React__default.createElement(ButtonContainer, null, /*#__PURE__*/React__default.createElement(PrimaryButton, Object.assign({}, link), truncate(link.text, LENGTH_SMALL_TEXT)))));
|
|
7171
7250
|
};
|
|
7172
7251
|
|
|
7173
|
-
var _templateObject$
|
|
7174
|
-
var Wrapper$3 = /*#__PURE__*/styled.div(_templateObject$
|
|
7252
|
+
var _templateObject$L;
|
|
7253
|
+
var Wrapper$3 = /*#__PURE__*/styled.div(_templateObject$L || (_templateObject$L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n gap: 60px 75px;\n grid-template-columns: repeat(2, 1fr);\n width: 100%;\n\n @media ", " {\n padding-left: 0;\n padding-right: 0;\n }\n\n @media ", " {\n width: 100%;\n padding-left: 0;\n padding-right: 0;\n grid-template-columns: 1fr;\n }\n"])), devices.tablet, devices.mobile);
|
|
7175
7254
|
|
|
7176
7255
|
var UpsellCards = function UpsellCards(_ref) {
|
|
7177
7256
|
var upsellCards = _ref.upsellCards;
|
|
@@ -7189,16 +7268,16 @@ var UpsellCards = function UpsellCards(_ref) {
|
|
|
7189
7268
|
}));
|
|
7190
7269
|
};
|
|
7191
7270
|
|
|
7192
|
-
var _templateObject$
|
|
7193
|
-
var UpsellBorderBox = /*#__PURE__*/styled.div(_templateObject$
|
|
7271
|
+
var _templateObject$M, _templateObject2$w, _templateObject3$o;
|
|
7272
|
+
var UpsellBorderBox = /*#__PURE__*/styled.div(_templateObject$M || (_templateObject$M = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: solid 4px;\n border-color: ", ";\n padding: 80px;\n\n @media ", " {\n & {\n border-left: none;\n border-right: none;\n padding-top: 2.5em;\n padding-left: 0;\n padding-right: 0;\n padding-bottom: 2.5em;\n }\n }\n\n @media ", " {\n & {\n padding: 25px;\n padding-top: 2.5em;\n }\n }\n"])), function (_ref) {
|
|
7194
7273
|
var theme = _ref.theme;
|
|
7195
7274
|
return theme.colors.primary;
|
|
7196
7275
|
}, devices.mobile, devices.tablet);
|
|
7197
7276
|
var TitleContainer$2 = /*#__PURE__*/styled.div(_templateObject2$w || (_templateObject2$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0;\n @media ", " {\n margin-left: 1.5em;\n margin-right: 1.5em;\n }\n"])), devices.mobile);
|
|
7198
7277
|
var TextContainer = /*#__PURE__*/styled.div(_templateObject3$o || (_templateObject3$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: 2.5em;\n div > :first-child {\n margin-top: 1.5em;\n }\n\n @media ", " {\n margin-top: 0;\n div > :first-child {\n margin-top: 0.5em;\n }\n }\n\n @media ", " {\n margin-left: 1.5em;\n margin-right: 1.5em;\n & {\n div > :first-child {\n margin-top: 1em;\n }\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
7199
7278
|
|
|
7200
|
-
var _templateObject$
|
|
7201
|
-
var AccordionContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
7279
|
+
var _templateObject$N, _templateObject2$x, _templateObject3$p, _templateObject4$j, _templateObject5$e, _templateObject6$c;
|
|
7280
|
+
var AccordionContainer = /*#__PURE__*/styled.div(_templateObject$N || (_templateObject$N = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n div {\n overflow: hidden;\n }\n"])));
|
|
7202
7281
|
var LineContainer = /*#__PURE__*/styled.div(_templateObject2$x || (_templateObject2$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 2px;\n background-color: var(--base-color-lightgrey);\n width: 100%;\n"])));
|
|
7203
7282
|
var ChildrenContainer = /*#__PURE__*/styled.div(_templateObject3$p || (_templateObject3$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 0px 20px 28px 20px;\n\n visibility: ", ";\n\n @media ", " {\n margin: 12px 0px 24px 0px;\n }\n \n @media print { \n visibility: visible;\n }\n}\n"])), function (_ref) {
|
|
7204
7283
|
var isVisible = _ref.isVisible;
|
|
@@ -7326,8 +7405,8 @@ var Accordion = function Accordion(_ref) {
|
|
|
7326
7405
|
}, children)), showLine && /*#__PURE__*/React__default.createElement(LineContainer, null));
|
|
7327
7406
|
};
|
|
7328
7407
|
|
|
7329
|
-
var _templateObject$
|
|
7330
|
-
var AccordionsContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
7408
|
+
var _templateObject$O;
|
|
7409
|
+
var AccordionsContainer = /*#__PURE__*/styled.div(_templateObject$O || (_templateObject$O = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n"])));
|
|
7331
7410
|
|
|
7332
7411
|
var Accordions = function Accordions(_ref) {
|
|
7333
7412
|
var _ref$items = _ref.items,
|
|
@@ -7345,7 +7424,8 @@ var Accordions = function Accordions(_ref) {
|
|
|
7345
7424
|
visibleStandfirst: accordion.visibleStandfirst,
|
|
7346
7425
|
contentType: accordion.contentType,
|
|
7347
7426
|
displayLevel: accordion.displayLevel,
|
|
7348
|
-
semanticLevel: accordion.semanticLevel
|
|
7427
|
+
semanticLevel: accordion.semanticLevel,
|
|
7428
|
+
initOpen: accordion.initOpen
|
|
7349
7429
|
}, accordion.children);
|
|
7350
7430
|
}));
|
|
7351
7431
|
};
|
|
@@ -7359,8 +7439,8 @@ var Theme = function Theme(_ref) {
|
|
|
7359
7439
|
}, children);
|
|
7360
7440
|
};
|
|
7361
7441
|
|
|
7362
|
-
var _templateObject$
|
|
7363
|
-
var AnnouncementBannerWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
7442
|
+
var _templateObject$P, _templateObject2$y, _templateObject3$q;
|
|
7443
|
+
var AnnouncementBannerWrapper = /*#__PURE__*/styled.div(_templateObject$P || (_templateObject$P = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 28px 0;\n background-color: ", ";\n color: var(--base-color-white);\n\n @media ", " {\n padding: 20px 0;\n }\n"])), function (_ref) {
|
|
7364
7444
|
var theme = _ref.theme;
|
|
7365
7445
|
return theme.colors.primary;
|
|
7366
7446
|
}, devices.mobile);
|
|
@@ -7402,8 +7482,8 @@ var AnnouncementBanner = function AnnouncementBanner(_ref) {
|
|
|
7402
7482
|
}))))));
|
|
7403
7483
|
};
|
|
7404
7484
|
|
|
7405
|
-
var _templateObject$
|
|
7406
|
-
var AuxiliaryButtonWrapper = /*#__PURE__*/styled(Button)(_templateObject$
|
|
7485
|
+
var _templateObject$Q;
|
|
7486
|
+
var AuxiliaryButtonWrapper = /*#__PURE__*/styled(Button)(_templateObject$Q || (_templateObject$Q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background-color: ", ";\n height: 20px;\n border: none;\n padding: 0;\n font-family: var(--font-family-buttons);\n font-size: var(--button-font-size);\n font-weight: var(--button-font-weight);\n color: var(--base-color-", ");\n width: fit-content;\n display: flex;\n align-items: flex-start;\n justify-content: center;\n cursor: pointer;\n text-decoration: none;\n box-sizing: border-box;\n\n .auxiliaryButtonIcon {\n width: 12px;\n display: flex;\n flex-direction: column;\n justify-content: center;\n }\n"])), function (_ref) {
|
|
7407
7487
|
var bgColor = _ref.bgColor,
|
|
7408
7488
|
theme = _ref.theme;
|
|
7409
7489
|
return bgColor ? "var(--base-color-" + bgColor + ")" : theme.colors.auxiliaryButton;
|
|
@@ -7424,11 +7504,11 @@ var AuxiliaryButton = function AuxiliaryButton(_ref) {
|
|
|
7424
7504
|
}), children);
|
|
7425
7505
|
};
|
|
7426
7506
|
|
|
7427
|
-
var _templateObject$
|
|
7507
|
+
var _templateObject$R, _templateObject2$z, _templateObject3$r, _templateObject4$k, _templateObject5$f, _templateObject6$d, _templateObject7$7, _templateObject8$6, _templateObject9$3, _templateObject10$3, _templateObject11$1, _templateObject12, _templateObject13, _templateObject14;
|
|
7428
7508
|
var LENGTH_LARGE_TEXT = 28;
|
|
7429
7509
|
var LENGTH_SMALL_TEXT$1 = 19;
|
|
7430
7510
|
var LENGTH_TEXT_TABLET = 10;
|
|
7431
|
-
var CardContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
7511
|
+
var CardContainer = /*#__PURE__*/styled.div(_templateObject$R || (_templateObject$R = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: ", ";\n position: relative;\n ", "\n\n .targetLink {\n text-decoration: none;\n color: inherit;\n }\n"])), function (_ref) {
|
|
7432
7512
|
var isCardClickable = _ref.isCardClickable;
|
|
7433
7513
|
return isCardClickable ? 'pointer' : 'default';
|
|
7434
7514
|
}, function (_ref2) {
|
|
@@ -7712,9 +7792,9 @@ var Card = function Card(_ref) {
|
|
|
7712
7792
|
dangerouslySetInnerHTML: {
|
|
7713
7793
|
__html: truncatedText
|
|
7714
7794
|
}
|
|
7715
|
-
}), highlightText && /*#__PURE__*/React__default.createElement(HighlightTextContainer, null, /*#__PURE__*/React__default.createElement(BodyText, {
|
|
7795
|
+
}))), highlightText && /*#__PURE__*/React__default.createElement(HighlightTextContainer, null, /*#__PURE__*/React__default.createElement(BodyText, {
|
|
7716
7796
|
level: 1
|
|
7717
|
-
}, highlightText))
|
|
7797
|
+
}, highlightText)), auxiliaryCTA && /*#__PURE__*/React__default.createElement(ExtraActionsContainer, {
|
|
7718
7798
|
fullWidth: fullWidth
|
|
7719
7799
|
}, /*#__PURE__*/React__default.createElement(AuxiliaryButton, Object.assign({}, auxiliaryCTA), auxiliaryCTA.text)), links && /*#__PURE__*/React__default.createElement(ButtonsContainer$1, {
|
|
7720
7800
|
ref: node,
|
|
@@ -7728,8 +7808,8 @@ var Card = function Card(_ref) {
|
|
|
7728
7808
|
}, firstButton && /*#__PURE__*/React__default.createElement(FirstButtonComponent, Object.assign({}, restFirstButton), primaryButtonTextTruncate), secondButton && /*#__PURE__*/React__default.createElement(SecondButtonComponent, Object.assign({}, restSecondButton), tertiaryButtonTextTruncate)));
|
|
7729
7809
|
};
|
|
7730
7810
|
|
|
7731
|
-
var _templateObject$
|
|
7732
|
-
var CardsContainer = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
7811
|
+
var _templateObject$S, _templateObject2$A;
|
|
7812
|
+
var CardsContainer = /*#__PURE__*/styled(Grid)(_templateObject$S || (_templateObject$S = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n gap: var(--line-height-people-listing-gap) var(--grid-column-gap);\n\n @media ", " {\n grid-row-gap: var(--cards-spacing-stack);\n }\n"])), devices.mobile);
|
|
7733
7813
|
var GridItemContainer = /*#__PURE__*/styled(GridItem)(_templateObject2$A || (_templateObject2$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n @media ", " {\n grid-column: 1 / span 14;\n }\n"])), devices.mobile);
|
|
7734
7814
|
|
|
7735
7815
|
var Cards = function Cards(_ref) {
|
|
@@ -7775,8 +7855,8 @@ var Cards = function Cards(_ref) {
|
|
|
7775
7855
|
}));
|
|
7776
7856
|
};
|
|
7777
7857
|
|
|
7778
|
-
var _templateObject$
|
|
7779
|
-
var ContentWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
7858
|
+
var _templateObject$T, _templateObject2$B, _templateObject3$s, _templateObject4$l, _templateObject5$g;
|
|
7859
|
+
var ContentWrapper = /*#__PURE__*/styled.div(_templateObject$T || (_templateObject$T = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n & > div {\n margin-bottom: 2px;\n\n &:first-child {\n margin-bottom: 4px;\n\n @media ", " {\n margin-bottom: 6px;\n }\n }\n }\n\n @media ", " {\n grid-column: 2 / span 12;\n }\n"])), devices.mobile, devices.mobileAndTablet);
|
|
7780
7860
|
var Wrapper$4 = /*#__PURE__*/styled.div(_templateObject2$B || (_templateObject2$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n ", "\n padding: 30px 0;\n\n @media ", " {\n display: grid;\n grid-template-columns: var(--grid-template-columns);\n grid-template-rows: max-content;\n gap: var(--grid-column-gap);\n margin: 0;\n }\n"])), function (_ref) {
|
|
7781
7861
|
var hideBottomBorder = _ref.hideBottomBorder;
|
|
7782
7862
|
return "border-bottom: " + (hideBottomBorder ? 'none' : '2px solid var(--base-color-midgrey)') + ";";
|
|
@@ -7844,8 +7924,8 @@ var ContactCard = function ContactCard(_ref) {
|
|
|
7844
7924
|
}, addressString)), /*#__PURE__*/React__default.createElement(AddressWrapperMobile, null, divideAddressString(addressString)))))));
|
|
7845
7925
|
};
|
|
7846
7926
|
|
|
7847
|
-
var _templateObject$
|
|
7848
|
-
var BodyTextRelative = /*#__PURE__*/styled(BodyText)(_templateObject$
|
|
7927
|
+
var _templateObject$U, _templateObject2$C, _templateObject3$t, _templateObject4$m, _templateObject5$h, _templateObject6$e, _templateObject7$8;
|
|
7928
|
+
var BodyTextRelative = /*#__PURE__*/styled(BodyText)(_templateObject$U || (_templateObject$U = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n"])));
|
|
7849
7929
|
var ContentSummaryWrapper = /*#__PURE__*/styled.article(_templateObject2$C || (_templateObject2$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n position: relative;\n justify-items: start;\n align-items: center;\n margin: 20px 0;\n gap: 24px;\n cursor: ", ";\n\n @media ", " {\n display: flex;\n flex-direction: column;\n gap: 24px;\n }\n"])), function (props) {
|
|
7850
7930
|
return props.clickable ? 'pointer' : 'default';
|
|
7851
7931
|
}, devices.mobile);
|
|
@@ -7927,8 +8007,8 @@ var ContentSummary = function ContentSummary(_ref) {
|
|
|
7927
8007
|
}), link.text)));
|
|
7928
8008
|
};
|
|
7929
8009
|
|
|
7930
|
-
var _templateObject$
|
|
7931
|
-
var EditorialGrid = /*#__PURE__*/styled.div(_templateObject$
|
|
8010
|
+
var _templateObject$V, _templateObject2$D, _templateObject3$u, _templateObject4$n, _templateObject5$i;
|
|
8011
|
+
var EditorialGrid = /*#__PURE__*/styled.div(_templateObject$V || (_templateObject$V = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n grid-template-columns: repeat(12, minmax(0, 1fr));\n gap: var(--grid-column-gap);\n grid-template-areas: ", ";\n\n @media ", " {\n & {\n display: grid;\n grid-template-columns: 100%;\n grid-template-rows: min-content 24px min-content;\n grid-template-areas:\n 'row1'\n '.'\n 'row2';\n }\n }\n"])), function (_ref) {
|
|
7932
8012
|
var imageToLeft = _ref.imageToLeft;
|
|
7933
8013
|
return imageToLeft ? "'left left left left left . right right right right right right'" : "'left left left left left left . right right right right right'";
|
|
7934
8014
|
}, devices.mobile);
|
|
@@ -7972,47 +8052,14 @@ var Editorial = function Editorial(_ref) {
|
|
|
7972
8052
|
})))));
|
|
7973
8053
|
};
|
|
7974
8054
|
|
|
7975
|
-
var
|
|
7976
|
-
|
|
7977
|
-
(function (CtaVariant) {
|
|
7978
|
-
CtaVariant["Primary"] = "Primary";
|
|
7979
|
-
CtaVariant["Secondary"] = "Secondary";
|
|
7980
|
-
CtaVariant["Tertiary"] = "Tertiary";
|
|
7981
|
-
CtaVariant["TextLink"] = "TextLink";
|
|
7982
|
-
})(CtaVariant || (CtaVariant = {}));
|
|
7983
|
-
|
|
7984
|
-
var CtaTheme;
|
|
7985
|
-
|
|
7986
|
-
(function (CtaTheme) {
|
|
7987
|
-
CtaTheme["Cinema"] = "Cinema";
|
|
7988
|
-
CtaTheme["Core"] = "Core";
|
|
7989
|
-
CtaTheme["Stream"] = "Stream";
|
|
7990
|
-
})(CtaTheme || (CtaTheme = {}));
|
|
7991
|
-
|
|
7992
|
-
var TitleVariant;
|
|
7993
|
-
|
|
7994
|
-
(function (TitleVariant) {
|
|
7995
|
-
TitleVariant["Header"] = "Header";
|
|
7996
|
-
TitleVariant["AltHeader"] = "AltHeader";
|
|
7997
|
-
})(TitleVariant || (TitleVariant = {}));
|
|
7998
|
-
|
|
7999
|
-
var BackgroundColour;
|
|
8000
|
-
|
|
8001
|
-
(function (BackgroundColour) {
|
|
8002
|
-
BackgroundColour["Cinema"] = "cinema";
|
|
8003
|
-
BackgroundColour["Core"] = "core";
|
|
8004
|
-
BackgroundColour["Stream"] = "stream";
|
|
8005
|
-
BackgroundColour["White"] = "white";
|
|
8006
|
-
})(BackgroundColour || (BackgroundColour = {}));
|
|
8007
|
-
|
|
8008
|
-
var _templateObject$V, _templateObject2$E, _templateObject3$v, _templateObject4$o;
|
|
8009
|
-
var InfoContent = /*#__PURE__*/styled('div')(_templateObject$V || (_templateObject$V = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-altHeader);\n font-feature-settings: var(--font-feature-settings-altHeader);\n font-size: var(--font-size-altHeader-6);\n font-weight: var(--font-weight-altHeader-6);\n -webkit-letter-spacing: var(--letter-spacing-altHeader-6);\n -moz-letter-spacing: var(--letter-spacing-altHeader-6);\n -ms-letter-spacing: var(--letter-spacing-altHeader-6);\n letter-spacing: var(--letter-spacing-altHeader-6);\n line-height: var(--line-height-altHeader-6);\n word-break: var(--word-break-altHeader);\n"])));
|
|
8055
|
+
var _templateObject$W, _templateObject2$E, _templateObject3$v, _templateObject4$o, _templateObject5$j;
|
|
8056
|
+
var InfoContent = /*#__PURE__*/styled('div')(_templateObject$W || (_templateObject$W = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-altHeader);\n font-feature-settings: var(--font-feature-settings-altHeader);\n font-size: var(--font-size-altHeader-6);\n font-weight: var(--font-weight-altHeader-6);\n -webkit-letter-spacing: var(--letter-spacing-altHeader-6);\n -moz-letter-spacing: var(--letter-spacing-altHeader-6);\n -ms-letter-spacing: var(--letter-spacing-altHeader-6);\n letter-spacing: var(--letter-spacing-altHeader-6);\n line-height: var(--line-height-altHeader-6);\n word-break: var(--word-break-altHeader);\n"])));
|
|
8010
8057
|
var InfoTitle = /*#__PURE__*/styled('div')(_templateObject2$E || (_templateObject2$E = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n * {\n margin-block: 0;\n }\n"])));
|
|
8011
8058
|
var InfoCTAWrapper = /*#__PURE__*/styled('div')(_templateObject3$v || (_templateObject3$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 32px 0;\n\n ", "}\n"])), function (props) {
|
|
8012
8059
|
if (!props.infoThemed) {
|
|
8013
8060
|
return;
|
|
8014
8061
|
} else {
|
|
8015
|
-
if (props.variant ===
|
|
8062
|
+
if (props.variant === IInformationCtaVariant.Primary || props.variant === IInformationCtaVariant.Secondary) {
|
|
8016
8063
|
return "a {\n color: var(--base-color-black);\n background: var(--base-color-white);\n border-color: var(--base-color-transparent);\n }";
|
|
8017
8064
|
} else {
|
|
8018
8065
|
return "a {\n color: var(--base-color-white);\n background: var(--base-color-transparent});\n }\n svg > path {\n fill: var(--base-color-white);\n stroke: var(--base-color-white);\n stroke-width: 1;\n }\n ";
|
|
@@ -8020,45 +8067,54 @@ var InfoCTAWrapper = /*#__PURE__*/styled('div')(_templateObject3$v || (_template
|
|
|
8020
8067
|
}
|
|
8021
8068
|
});
|
|
8022
8069
|
var InfoWrapper = /*#__PURE__*/styled(Grid)(_templateObject4$o || (_templateObject4$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 60px 0;\n color: ", ";\n background: ", "\n }};\n"])), function (props) {
|
|
8023
|
-
return props.background !==
|
|
8070
|
+
return props.background !== IInformationBackgroundColour.White ? 'var(--base-color-white)' : 'var(--base-color-black)';
|
|
8024
8071
|
}, function (props) {
|
|
8025
8072
|
return "var(--base-color-" + props.background + ")";
|
|
8026
8073
|
});
|
|
8074
|
+
var InfoBodyWrapper = /*#__PURE__*/styled('div')(_templateObject5$j || (_templateObject5$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n a {\n text-decoration: underline;\n color: ", ";\n }\n"])), function (props) {
|
|
8075
|
+
return props.background === IInformationBackgroundColour.White ? 'var(--base-color-black)' : 'var(--base-color-white)';
|
|
8076
|
+
});
|
|
8027
8077
|
|
|
8028
8078
|
var InfoCta = function InfoCta(_ref) {
|
|
8029
8079
|
var _ref$variant = _ref.variant,
|
|
8030
|
-
variant = _ref$variant === void 0 ?
|
|
8080
|
+
variant = _ref$variant === void 0 ? IInformationCtaVariant.Primary : _ref$variant,
|
|
8031
8081
|
_ref$theme = _ref.theme,
|
|
8032
|
-
theme = _ref$theme === void 0 ?
|
|
8082
|
+
theme = _ref$theme === void 0 ? IInformationCtaTheme.Core : _ref$theme,
|
|
8033
8083
|
link = _ref.link,
|
|
8034
8084
|
text = _ref.text,
|
|
8035
8085
|
iconName = _ref.iconName,
|
|
8036
8086
|
iconDirection = _ref.iconDirection,
|
|
8037
|
-
infoThemed = _ref.infoThemed
|
|
8087
|
+
infoThemed = _ref.infoThemed,
|
|
8088
|
+
_ref$target = _ref.target,
|
|
8089
|
+
target = _ref$target === void 0 ? LinkTarget.Self : _ref$target;
|
|
8038
8090
|
return /*#__PURE__*/React__default.createElement(InfoCTAWrapper, {
|
|
8039
8091
|
variant: variant,
|
|
8040
8092
|
infoThemed: infoThemed,
|
|
8041
8093
|
theme: theme
|
|
8042
|
-
}, variant ===
|
|
8094
|
+
}, variant === IInformationCtaVariant.Secondary ? /*#__PURE__*/React__default.createElement(SecondaryButton, {
|
|
8043
8095
|
color: Colors[theme],
|
|
8044
8096
|
href: link,
|
|
8045
8097
|
iconName: iconName,
|
|
8046
|
-
iconDirection: iconDirection
|
|
8047
|
-
|
|
8098
|
+
iconDirection: iconDirection,
|
|
8099
|
+
target: target
|
|
8100
|
+
}, text) : variant === IInformationCtaVariant.Tertiary ? /*#__PURE__*/React__default.createElement(Button$1, {
|
|
8048
8101
|
color: Colors.Black,
|
|
8049
8102
|
href: link,
|
|
8050
8103
|
iconName: iconName,
|
|
8051
|
-
iconDirection: iconDirection
|
|
8052
|
-
|
|
8104
|
+
iconDirection: iconDirection,
|
|
8105
|
+
target: target
|
|
8106
|
+
}, text) : variant === IInformationCtaVariant.TextLink ? /*#__PURE__*/React__default.createElement(TextLink, {
|
|
8053
8107
|
color: Colors.Black,
|
|
8054
8108
|
href: link,
|
|
8055
8109
|
iconName: iconName,
|
|
8056
|
-
iconDirection: iconDirection
|
|
8110
|
+
iconDirection: iconDirection,
|
|
8111
|
+
target: target
|
|
8057
8112
|
}, text) : /*#__PURE__*/React__default.createElement(PrimaryButton, {
|
|
8058
8113
|
bgColor: Colors[theme],
|
|
8059
8114
|
href: link,
|
|
8060
8115
|
iconName: iconName,
|
|
8061
|
-
iconDirection: iconDirection
|
|
8116
|
+
iconDirection: iconDirection,
|
|
8117
|
+
target: target
|
|
8062
8118
|
}, text));
|
|
8063
8119
|
};
|
|
8064
8120
|
|
|
@@ -8069,7 +8125,7 @@ var mediumWordBreakpoint = 8;
|
|
|
8069
8125
|
var longWordBreakpoint = 13;
|
|
8070
8126
|
|
|
8071
8127
|
var getColumnSpan = function getColumnSpan(variant, textSize, longestWordLength) {
|
|
8072
|
-
if (!(variant ===
|
|
8128
|
+
if (!(variant === IInformationTitleVariant.Header && textSize === 4)) return defaultColumnSpan;
|
|
8073
8129
|
|
|
8074
8130
|
switch (true) {
|
|
8075
8131
|
case longestWordLength > longWordBreakpoint:
|
|
@@ -8084,8 +8140,8 @@ var getColumnSpan = function getColumnSpan(variant, textSize, longestWordLength)
|
|
|
8084
8140
|
};
|
|
8085
8141
|
|
|
8086
8142
|
var renderTitle = function renderTitle(props) {
|
|
8087
|
-
var headerLevel = props.variant ===
|
|
8088
|
-
return props.variant ===
|
|
8143
|
+
var headerLevel = props.variant === IInformationTitleVariant.Header && props.textSize < 4 ? 4 : props.textSize;
|
|
8144
|
+
return props.variant === IInformationTitleVariant.Header ? /*#__PURE__*/React__default.createElement(Header, {
|
|
8089
8145
|
level: headerLevel
|
|
8090
8146
|
}, props.text) : /*#__PURE__*/React__default.createElement(AltHeader, {
|
|
8091
8147
|
level: headerLevel
|
|
@@ -8103,7 +8159,7 @@ var Information = function Information(_ref) {
|
|
|
8103
8159
|
});
|
|
8104
8160
|
var maxTitleWordLength = Math.max.apply(Math, titleWordLengths);
|
|
8105
8161
|
var titleColumnSpan = getColumnSpan(title.variant, title.textSize, maxTitleWordLength);
|
|
8106
|
-
var bgColour = background != null ? background :
|
|
8162
|
+
var bgColour = background != null ? background : IInformationBackgroundColour.White;
|
|
8107
8163
|
return /*#__PURE__*/React__default.createElement(InfoWrapper, {
|
|
8108
8164
|
background: bgColour,
|
|
8109
8165
|
"data-testid": "infoWrapper"
|
|
@@ -8111,13 +8167,14 @@ var Information = function Information(_ref) {
|
|
|
8111
8167
|
columnStartDesktop: 2,
|
|
8112
8168
|
columnStartDevice: 2,
|
|
8113
8169
|
columnSpanDesktop: titleColumnSpan,
|
|
8114
|
-
columnSpanDevice:
|
|
8170
|
+
columnSpanDevice: 12
|
|
8115
8171
|
}, /*#__PURE__*/React__default.createElement(InfoTitle, null, renderTitle(title))), /*#__PURE__*/React__default.createElement(GridItem, {
|
|
8116
8172
|
columnStartDesktop: titleColumnSpan + 2,
|
|
8117
8173
|
columnStartDevice: 2,
|
|
8118
8174
|
columnSpanDesktop: 14 - titleColumnSpan,
|
|
8119
|
-
columnSpanDevice:
|
|
8120
|
-
}, /*#__PURE__*/React__default.createElement(InfoContent, null, /*#__PURE__*/React__default.createElement(
|
|
8175
|
+
columnSpanDevice: 12
|
|
8176
|
+
}, /*#__PURE__*/React__default.createElement(InfoContent, null, /*#__PURE__*/React__default.createElement(InfoBodyWrapper, {
|
|
8177
|
+
background: bgColour,
|
|
8121
8178
|
dangerouslySetInnerHTML: {
|
|
8122
8179
|
__html: body
|
|
8123
8180
|
}
|
|
@@ -8125,15 +8182,16 @@ var Information = function Information(_ref) {
|
|
|
8125
8182
|
link: cta.link,
|
|
8126
8183
|
variant: cta.variant,
|
|
8127
8184
|
theme: cta.theme,
|
|
8128
|
-
infoThemed: bgColour !==
|
|
8185
|
+
infoThemed: bgColour !== IInformationBackgroundColour.White,
|
|
8129
8186
|
text: cta.text,
|
|
8130
8187
|
iconName: cta.iconName,
|
|
8131
|
-
iconDirection: cta.iconDirection
|
|
8188
|
+
iconDirection: cta.iconDirection,
|
|
8189
|
+
target: cta.target
|
|
8132
8190
|
}))));
|
|
8133
8191
|
};
|
|
8134
8192
|
|
|
8135
|
-
var _templateObject$
|
|
8136
|
-
var PageHeadingWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
8193
|
+
var _templateObject$X, _templateObject2$F, _templateObject3$w, _templateObject4$p, _templateObject5$k, _templateObject6$f, _templateObject7$9, _templateObject8$7;
|
|
8194
|
+
var PageHeadingWrapper = /*#__PURE__*/styled.div(_templateObject$X || (_templateObject$X = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding-bottom: 80px;\n background-color: ", ";\n color: var(--base-color-white);\n\n ", ";\n\n // remove spacing above/below for all semantic levels of the title\n h1,\n h2,\n h3,\n h4,\n h5,\n h6 {\n margin: 0;\n padding: 0;\n }\n\n @media ", " {\n padding-bottom: 0;\n }\n"])), function (_ref) {
|
|
8137
8195
|
var theme = _ref.theme;
|
|
8138
8196
|
return theme.colors.primary;
|
|
8139
8197
|
}, function (_ref2) {
|
|
@@ -8149,7 +8207,7 @@ var ChildrenWrapper = /*#__PURE__*/styled.div(_templateObject4$p || (_templateOb
|
|
|
8149
8207
|
var isPageHeadingWithoutTitle = _ref4.isPageHeadingWithoutTitle;
|
|
8150
8208
|
return isPageHeadingWithoutTitle && "\n margin: 10px 0;\n ";
|
|
8151
8209
|
}, devices.mobile);
|
|
8152
|
-
var TextWrapper = /*#__PURE__*/styled.div(_templateObject5$
|
|
8210
|
+
var TextWrapper = /*#__PURE__*/styled.div(_templateObject5$k || (_templateObject5$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: text;\n align-self: end;\n margin-top: 12px;\n\n h6 {\n margin: 0;\n padding: 0;\n }\n"])));
|
|
8153
8211
|
var LogoWrapper$1 = /*#__PURE__*/styled.div(_templateObject6$f || (_templateObject6$f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: logo;\n justify-self: end;\n margin-top: 20px;\n position: relative;\n\n > div {\n position: absolute;\n top: 0;\n right: 0;\n }\n\n @media ", " {\n & {\n align-self: start;\n margin-top: 0;\n }\n }\n"])), devices.mobile);
|
|
8154
8212
|
var ButtonWrapper$1 = /*#__PURE__*/styled.div(_templateObject7$9 || (_templateObject7$9 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: button;\n justify-self: end;\n align-self: end;\n\n @media ", " {\n & {\n justify-self: center;\n align-self: center;\n width: 100%;\n margin-top: 16px;\n }\n }\n"])), devices.mobile);
|
|
8155
8213
|
var PageHeadingText = /*#__PURE__*/styled.div(_templateObject8$7 || (_templateObject8$7 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: var(--font-size-altHeader-6);\n font-weight: var(--font-weight-altHeader-6);\n letter-spacing: var(--letter-spacing-altHeader-6);\n line-height: var(--line-height-altHeader-6);\n font-feature-settings: var(--font-feature-settings-altHeader);\n font-family: var(--font-family-altHeader);\n text-transform: var(--text-transform-altHeader);\n word-break: var(--word-break-altHeader);\n"])));
|
|
@@ -8233,12 +8291,12 @@ var PageHeadingCinema = function PageHeadingCinema(_ref) {
|
|
|
8233
8291
|
})));
|
|
8234
8292
|
};
|
|
8235
8293
|
|
|
8236
|
-
var _templateObject$
|
|
8237
|
-
var ImpactWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
8294
|
+
var _templateObject$Y, _templateObject2$G, _templateObject3$x, _templateObject4$q, _templateObject5$l, _templateObject6$g, _templateObject7$a, _templateObject8$8;
|
|
8295
|
+
var ImpactWrapper = /*#__PURE__*/styled.div(_templateObject$Y || (_templateObject$Y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n aspect-ratio: 16 / 9;\n @supports not (aspect-ratio: 16 / 9) {\n height: 56.25vw;\n }\n\n position: relative;\n display: flex;\n background: var(--base-color-black);\n\n @media ", " {\n aspect-ratio: 1 / 1;\n @supports not (aspect-ratio: 1 / 1) {\n height: 100vw;\n }\n }\n"])), devices.mobile);
|
|
8238
8296
|
var ImpactHeaderImageWrapper = /*#__PURE__*/styled.div(_templateObject2$G || (_templateObject2$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n overflow: hidden;\n aspect-ratio: 16 / 9;\n @supports not (aspect-ratio: 16 / 9) {\n height: 56.25vw;\n }\n\n img {\n width: 100%;\n filter: brightness(0.7);\n opacity: 0.95;\n }\n\n @media ", " {\n height: fit-content;\n aspect-ratio: 1 / 1;\n @supports not (aspect-ratio: 1 / 1) {\n height: 100vw;\n }\n\n img {\n height: 100%;\n object-fit: cover;\n }\n }\n"])), devices.mobile);
|
|
8239
8297
|
var ImpactGrid = /*#__PURE__*/styled(Grid)(_templateObject3$x || (_templateObject3$x = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n align-self: center;\n width: 100%;\n z-index: ", ";\n gap: 0 var(--grid-column-gap);\n grid-template-rows: min-content min-content min-content;\n grid-template-areas:\n '. . . . . logo logo logo logo logo logo . . . . .'\n '. . . text text text text text text text text text text . . .'\n '. . . button button button button button button button button button button . . .';\n\n @media ", " {\n & {\n height: 100%;\n grid-template-rows: 1fr max-content 1fr;\n grid-template-areas:\n '. . . logo logo logo logo logo logo logo logo . . .'\n '. text text text text text text text text text text text text .'\n '. button button button button button button button button button button button button .';\n }\n }\n\n @media ", " {\n align-content: center;\n\n & {\n grid-template-areas:\n '. . . logo logo logo logo logo logo logo logo . . .'\n '. . text text text text text text text text text text . .'\n '. . button button button button button button button button button button . .';\n }\n }\n"])), zIndexes.contentOverlay, devices.mobile, devices.tablet);
|
|
8240
8298
|
var SponsorWrapper = /*#__PURE__*/styled.div(_templateObject4$q || (_templateObject4$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n top: 20px;\n right: var(--grid-outer-margin);\n width: fit-content;\n z-index: ", ";\n\n @media ", " {\n & {\n right: var(--grid-margin);\n }\n }\n"])), zIndexes.sponsorship, devices.mobileAndTablet);
|
|
8241
|
-
var LogoWrapper$2 = /*#__PURE__*/styled.div(_templateObject5$
|
|
8299
|
+
var LogoWrapper$2 = /*#__PURE__*/styled.div(_templateObject5$l || (_templateObject5$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: logo;\n align-self: end;\n"])));
|
|
8242
8300
|
var TextWrapper$1 = /*#__PURE__*/styled.div(_templateObject6$g || (_templateObject6$g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: text;\n color: var(--base-color-white);\n text-align: center;\n margin-top: 40px;\n max-height: calc(2 * var(--line-height-header-3));\n overflow: hidden;\n\n h3 {\n margin: 0;\n padding: 0;\n }\n\n @media ", " {\n & {\n max-height: calc(4 * var(--line-height-header-3));\n }\n }\n\n @media ", " {\n & {\n margin-top: 12px;\n max-height: calc(4 * var(--line-height-header-3));\n }\n\n h3 {\n font-size: var(--font-size-header-3);\n letter-spacing: var(--letter-spacing-header-5);\n line-height: var(--line-height-header-5);\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
8243
8301
|
var ButtonWrapper$2 = /*#__PURE__*/styled.div(_templateObject7$a || (_templateObject7$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: button;\n align-self: end;\n display: flex;\n justify-content: center;\n margin-top: 40px;\n\n @media ", " {\n & {\n margin-top: 0px;\n margin-bottom: 20px;\n }\n }\n"])), devices.mobile);
|
|
8244
8302
|
var ScrollDownWrapper = /*#__PURE__*/styled.div(_templateObject8$8 || (_templateObject8$8 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: absolute;\n bottom: 20px;\n left: var(--grid-outer-margin);\n width: fit-content;\n z-index: ", ";\n\n @keyframes UpDown {\n 0%,\n 100% {\n transform: translateY(0);\n }\n 50% {\n transform: translateY(8px);\n }\n }\n\n a {\n font-size: var(--font-size-overline-1);\n font-weight: var(--font-weight-overline-1);\n letter-spacing: var(--letter-spacing-overline-1);\n border: none;\n padding: 0;\n :hover {\n border: none;\n\n > span {\n animation: UpDown 1500ms linear infinite;\n }\n }\n }\n\n @media ", " {\n & {\n display: none;\n }\n }\n\n @media ", " {\n & {\n display: none;\n }\n }\n"])), zIndexes.contentOverlay, devices.mobile, devices.tablet);
|
|
@@ -8307,8 +8365,8 @@ var PageHeadingImpact = function PageHeadingImpact(_ref) {
|
|
|
8307
8365
|
}, "Scroll Down")) : null);
|
|
8308
8366
|
};
|
|
8309
8367
|
|
|
8310
|
-
var _templateObject$
|
|
8311
|
-
var PanelGrid = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
8368
|
+
var _templateObject$Z, _templateObject2$H, _templateObject3$y, _templateObject4$r, _templateObject5$m;
|
|
8369
|
+
var PanelGrid = /*#__PURE__*/styled(Grid)(_templateObject$Z || (_templateObject$Z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n gap: 0 var(--grid-column-gap);\n\n ", "\n\n @media ", " {\n grid-template-rows: 48px max-content max-content;\n }\n"])), function (_ref) {
|
|
8312
8370
|
var color = _ref.color;
|
|
8313
8371
|
return "\n background-color: " + (color ? "var(--base-color-" + color + ")" : 'var(--base-color-core)') + ";\n color: " + (color === Colors.White ? 'var(--base-color-black)' : 'var(--base-color-white)') + ";\n ";
|
|
8314
8372
|
}, devices.mobileAndTablet);
|
|
@@ -8321,7 +8379,7 @@ var LeftPanel = /*#__PURE__*/styled.div(_templateObject2$H || (_templateObject2$
|
|
|
8321
8379
|
});
|
|
8322
8380
|
var RightPanel = /*#__PURE__*/styled.div(_templateObject3$y || (_templateObject3$y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: 1 / 7 / 3 / 17;\n position: relative;\n height: 100%;\n width: 100%;\n background-color: var(--base-color-black);\n\n @media ", " {\n grid-area: 2 / 1 / 3 / 15;\n }\n"])), devices.mobileAndTablet);
|
|
8323
8381
|
var InfoWrapper$1 = /*#__PURE__*/styled.div(_templateObject4$r || (_templateObject4$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 36px;\n max-height: 33vw;\n overflow: hidden;\n\n :first-child * {\n margin-block-start: 0;\n }\n\n @media ", " {\n margin: 36px 20px;\n max-height: unset;\n }\n"])), devices.mobileAndTablet);
|
|
8324
|
-
var ScrollDownWrapper$1 = /*#__PURE__*/styled.div(_templateObject5$
|
|
8382
|
+
var ScrollDownWrapper$1 = /*#__PURE__*/styled.div(_templateObject5$m || (_templateObject5$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 0 0 25px 36px;\n\n @keyframes UpDown {\n 0%,\n 100% {\n transform: translateY(0);\n }\n 50% {\n transform: translateY(8px);\n }\n }\n\n a {\n font-size: var(--font-size-overline-1);\n font-weight: var(--font-weight-overline-1);\n letter-spacing: var(--letter-spacing-overline-1);\n border: none;\n padding: 0;\n\n :hover {\n border: none;\n\n > span {\n animation: UpDown 1500ms linear infinite;\n }\n }\n }\n\n @media ", " {\n display: none;\n }\n"])), devices.mobileAndTablet);
|
|
8325
8383
|
|
|
8326
8384
|
var PageHeadingPanel = function PageHeadingPanel(_ref) {
|
|
8327
8385
|
var _image$src, _image$alt;
|
|
@@ -8352,8 +8410,8 @@ var PageHeadingPanel = function PageHeadingPanel(_ref) {
|
|
|
8352
8410
|
}))));
|
|
8353
8411
|
};
|
|
8354
8412
|
|
|
8355
|
-
var _templateObject$
|
|
8356
|
-
var StreamWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
8413
|
+
var _templateObject$_;
|
|
8414
|
+
var StreamWrapper = /*#__PURE__*/styled.div(_templateObject$_ || (_templateObject$_ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n h2::selection,\n div::selection {\n color: #1866dc;\n background-color: #fff;\n }\n"])));
|
|
8357
8415
|
|
|
8358
8416
|
var PageHeadingStream = function PageHeadingStream(_ref) {
|
|
8359
8417
|
var link = _ref.link,
|
|
@@ -8373,11 +8431,11 @@ var PageHeadingStream = function PageHeadingStream(_ref) {
|
|
|
8373
8431
|
}))));
|
|
8374
8432
|
};
|
|
8375
8433
|
|
|
8376
|
-
var _templateObject
|
|
8377
|
-
var BrandingTextBlock = /*#__PURE__*/styled.div(_templateObject
|
|
8434
|
+
var _templateObject$$, _templateObject2$I, _templateObject3$z, _templateObject5$n, _templateObject6$h, _templateObject7$b, _templateObject8$9, _templateObject9$4, _templateObject10$4;
|
|
8435
|
+
var BrandingTextBlock = /*#__PURE__*/styled.div(_templateObject$$ || (_templateObject$$ = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: var(--font-size-body-2);\n font-family: var(--font-family-header);\n text-transform: uppercase;\n margin: 0;\n white-space: nowrap;\n @media screen and (max-width: 920px) {\n white-space: normal;\n }\n @media ", " {\n white-space: nowrap;\n }\n"])), devices.mobile);
|
|
8378
8436
|
var BrandingTextBody = /*#__PURE__*/styled.div(_templateObject2$I || (_templateObject2$I = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-body);\n font-size: var(--font-size-heading-6);\n line-height: var(--line-height-heading-6);\n"])));
|
|
8379
8437
|
var ComapctHeaderWrapper = /*#__PURE__*/styled.div(_templateObject3$z || (_templateObject3$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n display: block;\n"])));
|
|
8380
|
-
var CompactHeaderAssetWrapper = /*#__PURE__*/styled.div(_templateObject5$
|
|
8438
|
+
var CompactHeaderAssetWrapper = /*#__PURE__*/styled.div(_templateObject5$n || (_templateObject5$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 37.5vw;\n width: 100%;\n position: relative;\n overflow: hidden;\n background-color: #000;\n img {\n position: relative;\n height: 100%;\n width: 100%;\n object-fit: cover;\n }\n video {\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n object-fit: contain;\n @media ", " {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n margin: auto;\n height: auto;\n max-height: 100vh;\n width: 100%;\n object-fit: contain;\n }\n }\n @media ", " {\n height: 85vw;\n max-height: 100vh;\n }\n"])), devices.mobile, devices.mobile);
|
|
8381
8439
|
var CompactHeaderCopyWrapper = /*#__PURE__*/styled(Grid)(_templateObject6$h || (_templateObject6$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n height: 160px;\n grid-template-rows: min-content min-content;\n grid-template-rows: min-content min-content;\n grid-template-columns: [logo] 1fr [title] 3fr [cta] 1fr;\n align-content: center;\n gap: 0;\n background-color: ", ";\n color: ", ";\n\n svg {\n width: 210px;\n fill: ", ";\n }\n\n h1::selection,\n div::selection {\n ", ";\n }\n\n @media ", " {\n svg {\n width: 145px;\n }\n }\n\n @media ", " {\n display: flex;\n flex-direction: column;\n height: auto;\n padding: 32px 20px;\n\n svg {\n width: 180px;\n }\n }\n"])), function (_ref) {
|
|
8382
8440
|
var invert = _ref.invert,
|
|
8383
8441
|
theme = _ref.theme;
|
|
@@ -8504,7 +8562,7 @@ var CompactHeaderBranding = function CompactHeaderBranding(_ref) {
|
|
|
8504
8562
|
var isIOS = function isIOS() {
|
|
8505
8563
|
try {
|
|
8506
8564
|
console.warn('Do not use this on server side rendering, it may throw an error.');
|
|
8507
|
-
if (typeof navigator === undefined) return false;
|
|
8565
|
+
if (typeof navigator === 'undefined') return false;
|
|
8508
8566
|
return ['iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod'].includes(navigator.platform) || // iPad on iOS 13 detection
|
|
8509
8567
|
navigator.userAgent.includes('Mac') && 'ontouchend' in document;
|
|
8510
8568
|
} catch (e) {
|
|
@@ -8520,7 +8578,7 @@ var useIOS = function useIOS() {
|
|
|
8520
8578
|
setIOS = _useState[1];
|
|
8521
8579
|
|
|
8522
8580
|
useEffect(function () {
|
|
8523
|
-
if (typeof navigator === undefined) return;
|
|
8581
|
+
if (typeof navigator === 'undefined') return;
|
|
8524
8582
|
setIOS(isIOS());
|
|
8525
8583
|
}, []);
|
|
8526
8584
|
return IOS;
|
|
@@ -8706,8 +8764,8 @@ var PageHeadingCompact = function PageHeadingCompact(_ref4) {
|
|
|
8706
8764
|
}), linkText))));
|
|
8707
8765
|
};
|
|
8708
8766
|
|
|
8709
|
-
var _templateObject
|
|
8710
|
-
var MorePages = /*#__PURE__*/styled.span(_templateObject
|
|
8767
|
+
var _templateObject$10, _templateObject2$J, _templateObject3$A, _templateObject4$s;
|
|
8768
|
+
var MorePages = /*#__PURE__*/styled.span(_templateObject$10 || (_templateObject$10 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: not-allowed;\n pointer-events: none;\n"])));
|
|
8711
8769
|
var PageNumberWrapper = /*#__PURE__*/styled.ol(_templateObject2$J || (_templateObject2$J = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: center;\n justify-content: center;\n margin-top: 40px;\n margin-bottom: 40px;\n flex-wrap: nowrap;\n flex-direction: row;\n list-style: none;\n padding: 0;\n max-width: fit-content;\n margin: auto;\n li {\n font-size: var(--font-size-subtitle-1);\n font-weight: var(--font-weight-body-1);\n line-height: var(--line-height-subtitle-1);\n letter-spacing: var(--letter-spacing-subtitle-1);\n margin-left: 16px;\n color: var(--base-color-dark-grey);\n display: flex;\n align-items: center;\n border-bottom: 1px solid rgba(0, 0, 0, 0);\n }\n"]))); // PageNumber extends bodyText but uses subtitle-1 font size
|
|
8712
8770
|
|
|
8713
8771
|
var PageNumber = /*#__PURE__*/styled.a(_templateObject3$A || (_templateObject3$A = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: inherit;\n margin: 0;\n border-bottom: 1px solid transparent;\n line-height: var(--base-line-height);\n text-decoration: none;\n font-family: var(--font-family-body-1);\n :hover {\n color: var(--base-color-core);\n border-bottom: 1px solid var(--base-color-core);\n svg > path {\n fill: var(--base-color-core);\n }\n }\n /* active state - string used because react returns error for bool */\n ", "\n"])), function (_ref) {
|
|
@@ -8783,12 +8841,12 @@ var Pagination = function Pagination(_ref) {
|
|
|
8783
8841
|
}))));
|
|
8784
8842
|
};
|
|
8785
8843
|
|
|
8786
|
-
var _templateObject$
|
|
8787
|
-
var PeopleListingGrid = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
8844
|
+
var _templateObject$11, _templateObject2$K, _templateObject3$B, _templateObject4$t, _templateObject5$o, _templateObject6$i;
|
|
8845
|
+
var PeopleListingGrid = /*#__PURE__*/styled(Grid)(_templateObject$11 || (_templateObject$11 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n gap: var(--line-height-people-listing-gap) var(--grid-column-gap);\n\n p {\n margin: 0;\n }\n\n grid-template-columns: 1fr 1fr 1fr;\n\n @media ", " {\n grid-template-columns: 1fr;\n }\n\n @media ", " {\n grid-template-columns: 1fr 1fr;\n }\n\n @media ", " {\n grid-template-columns: 1fr 1fr 1fr 1fr;\n }\n"])), devices.mobile, devices.tablet, devices.largeDesktop);
|
|
8788
8846
|
var PersonWrapper = /*#__PURE__*/styled.div(_templateObject2$K || (_templateObject2$K = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: grid;\n grid-template-columns: 60px 1fr;\n grid-template-areas: 'headshot role-person';\n grid-column-gap: 10px;\n"])));
|
|
8789
8847
|
var HeadshotWrapper = /*#__PURE__*/styled.div(_templateObject3$B || (_templateObject3$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n grid-area: headshot;\n img {\n width: 60px;\n height: 60px;\n }\n"])));
|
|
8790
8848
|
var RoleWrapper = /*#__PURE__*/styled.div(_templateObject4$t || (_templateObject4$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-darkgrey);\n overflow-wrap: break-word;\n margin-bottom: 4px;\n"])));
|
|
8791
|
-
var TextWrapper$2 = /*#__PURE__*/styled.div(_templateObject5$
|
|
8849
|
+
var TextWrapper$2 = /*#__PURE__*/styled.div(_templateObject5$o || (_templateObject5$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: role-person;\n break-inside: avoid;\n"])));
|
|
8792
8850
|
var PersonLink = /*#__PURE__*/styled.a(_templateObject6$i || (_templateObject6$i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-black);\n text-decoration: underline;\n\n :hover {\n color: var(--base-color-primary);\n :after {\n color: var(--base-color-black);\n }\n }\n\n :visited {\n color: var(--base-color-black);\n }\n"])));
|
|
8793
8851
|
|
|
8794
8852
|
var Person = function Person(_ref) {
|
|
@@ -8840,11 +8898,14 @@ var PeopleListing = function PeopleListing(_ref) {
|
|
|
8840
8898
|
}));
|
|
8841
8899
|
};
|
|
8842
8900
|
|
|
8843
|
-
var _templateObject$
|
|
8844
|
-
var ReplacementWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
8845
|
-
var CreditListingWrapper = /*#__PURE__*/styled(PeopleListingGrid)(_templateObject2$L || (_templateObject2$L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n p {\n line-height: 1.5;\n }\n"])))
|
|
8846
|
-
var
|
|
8847
|
-
|
|
8901
|
+
var _templateObject$12, _templateObject2$L, _templateObject3$C, _templateObject4$u;
|
|
8902
|
+
var ReplacementWrapper = /*#__PURE__*/styled.div(_templateObject$12 || (_templateObject$12 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-darkgrey);\n"])));
|
|
8903
|
+
var CreditListingWrapper = /*#__PURE__*/styled(PeopleListingGrid)(_templateObject2$L || (_templateObject2$L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n p {\n line-height: 1.5;\n }\n\n grid-template-columns: ", ";\n\n @media ", " {\n grid-template-columns: 1fr;\n }\n\n @media ", " {\n grid-template-columns: repeat(2, 1fr);\n }\n"])), function (_ref) {
|
|
8904
|
+
var columnCount = _ref.columnCount;
|
|
8905
|
+
return "repeat(" + columnCount + ", 1fr)";
|
|
8906
|
+
}, devices.mobile, devices.tablet);
|
|
8907
|
+
var DescriptionWrapper = /*#__PURE__*/styled.div(_templateObject3$C || (_templateObject3$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-darkgrey);\n p {\n line-height: 1.5;\n margin-bottom: 4px;\n }\n"])));
|
|
8908
|
+
var RoleWrapper$1 = /*#__PURE__*/styled.div(_templateObject4$u || (_templateObject4$u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-darkgrey);\n overflow-wrap: break-word;\n"])));
|
|
8848
8909
|
|
|
8849
8910
|
var getConcatenatedPropLength = function getConcatenatedPropLength(array, prop) {
|
|
8850
8911
|
return array.reduce(function (acc, item) {
|
|
@@ -8855,19 +8916,29 @@ var getConcatenatedPropLength = function getConcatenatedPropLength(array, prop)
|
|
|
8855
8916
|
var concatenateMusicTitle = function concatenateMusicTitle(musicTitle) {
|
|
8856
8917
|
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, musicTitle.map(function (title, index) {
|
|
8857
8918
|
if (musicTitle.length > 1 && index === musicTitle.length - 1) {
|
|
8858
|
-
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, ' ', "and ", /*#__PURE__*/React__default.createElement("i",
|
|
8919
|
+
return /*#__PURE__*/React__default.createElement(React__default.Fragment, null, ' ', "and ", /*#__PURE__*/React__default.createElement("i", {
|
|
8920
|
+
key: index
|
|
8921
|
+
}, title));
|
|
8859
8922
|
} else if (index > 0) {
|
|
8860
|
-
return /*#__PURE__*/React__default.createElement("i",
|
|
8923
|
+
return /*#__PURE__*/React__default.createElement("i", {
|
|
8924
|
+
key: index
|
|
8925
|
+
}, ", ", title);
|
|
8861
8926
|
}
|
|
8862
8927
|
|
|
8863
|
-
return /*#__PURE__*/React__default.createElement("i",
|
|
8928
|
+
return /*#__PURE__*/React__default.createElement("i", {
|
|
8929
|
+
key: index
|
|
8930
|
+
}, title);
|
|
8864
8931
|
}));
|
|
8865
8932
|
};
|
|
8866
8933
|
|
|
8867
8934
|
var CreditListing = function CreditListing(_ref) {
|
|
8868
|
-
var roles = _ref.roles
|
|
8935
|
+
var roles = _ref.roles,
|
|
8936
|
+
_ref$columnCount = _ref.columnCount,
|
|
8937
|
+
columnCount = _ref$columnCount === void 0 ? 4 : _ref$columnCount;
|
|
8869
8938
|
var charThreshold = 180;
|
|
8870
|
-
return /*#__PURE__*/React__default.createElement(CreditListingWrapper,
|
|
8939
|
+
return /*#__PURE__*/React__default.createElement(CreditListingWrapper, {
|
|
8940
|
+
columnCount: columnCount
|
|
8941
|
+
}, roles.map(function (_ref2, index) {
|
|
8871
8942
|
var name = _ref2.name,
|
|
8872
8943
|
people = _ref2.people,
|
|
8873
8944
|
description = _ref2.description,
|
|
@@ -8876,9 +8947,10 @@ var CreditListing = function CreditListing(_ref) {
|
|
|
8876
8947
|
additionalInfo = _ref2.additionalInfo,
|
|
8877
8948
|
dataROH = _ref2.dataROH;
|
|
8878
8949
|
var namesLength = getConcatenatedPropLength(people, 'name');
|
|
8950
|
+
var columnSpanDesktop = namesLength > charThreshold ? people.length > 2 ? 4 : 2 : 1;
|
|
8879
8951
|
return /*#__PURE__*/React__default.createElement(GridItem, {
|
|
8880
|
-
columnSpanDesktop:
|
|
8881
|
-
columnSpanDevice:
|
|
8952
|
+
columnSpanDesktop: columnSpanDesktop,
|
|
8953
|
+
columnSpanDevice: columnSpanDesktop,
|
|
8882
8954
|
columnSpanSmallDevice: 2,
|
|
8883
8955
|
key: name + "-" + index
|
|
8884
8956
|
}, /*#__PURE__*/React__default.createElement(TextWrapper$2, null, /*#__PURE__*/React__default.createElement(RoleWrapper$1, {
|
|
@@ -8912,14 +8984,14 @@ var CreditListing = function CreditListing(_ref) {
|
|
|
8912
8984
|
}));
|
|
8913
8985
|
};
|
|
8914
8986
|
|
|
8915
|
-
var _templateObject$
|
|
8987
|
+
var _templateObject$13, _templateObject2$M, _templateObject3$D, _templateObject4$v, _templateObject5$p, _templateObject6$j, _templateObject7$c, _templateObject8$a, _templateObject9$5, _templateObject10$5, _templateObject11$2, _templateObject12$1, _templateObject13$1, _templateObject14$1, _templateObject15, _templateObject16, _templateObject17, _templateObject18, _templateObject19, _templateObject20, _templateObject21;
|
|
8916
8988
|
var LENGTH_TEXT = 28;
|
|
8917
8989
|
var LENGTH_TEXT_TABLET$1 = 12;
|
|
8918
8990
|
var GridTemplateImageToLeft = "'left left left left left left left left . right right right right right . .'";
|
|
8919
8991
|
var GridTemplateImageToRight = "'. . left left left left left . right right right right right right right right'";
|
|
8920
8992
|
var GridTemplateAsCard = "'. . left left left left left right right right right right right right . . '";
|
|
8921
8993
|
var GridTemplateAsCardTablet = "'. . left left left left left left left right right right right right . . '";
|
|
8922
|
-
var PromoWithTagsGrid = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
8994
|
+
var PromoWithTagsGrid = /*#__PURE__*/styled(Grid)(_templateObject$13 || (_templateObject$13 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-template-areas: ", ";\n\n @media ", " {\n & {\n grid-template-areas: ", ";\n }\n }\n\n @media ", " {\n & {\n grid-template-columns: var(--grid-margin) minmax(0, 1fr) var(--grid-margin);\n grid-template-rows: min-content 24px min-content;\n gap: 0;\n grid-template-areas:\n 'row1 row1 row1'\n '. . .'\n '. row2 .';\n }\n }\n\n /* Overwrite template for card */\n ", "\n"])), function (_ref) {
|
|
8923
8995
|
var imageToLeft = _ref.imageToLeft;
|
|
8924
8996
|
return imageToLeft ? GridTemplateImageToLeft : GridTemplateImageToRight;
|
|
8925
8997
|
}, devices.tablet, function (_ref2) {
|
|
@@ -8968,7 +9040,7 @@ var ButtonsContainer$2 = /*#__PURE__*/styled.div(_templateObject4$v || (_templat
|
|
|
8968
9040
|
|
|
8969
9041
|
return '';
|
|
8970
9042
|
});
|
|
8971
|
-
var PromoWithTagsTagWrapper = /*#__PURE__*/styled.div(_templateObject5$
|
|
9043
|
+
var PromoWithTagsTagWrapper = /*#__PURE__*/styled.div(_templateObject5$p || (_templateObject5$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: ", ";\n"])), function (_ref10) {
|
|
8972
9044
|
var marginBottom = _ref10.marginBottom;
|
|
8973
9045
|
return marginBottom + "px";
|
|
8974
9046
|
});
|
|
@@ -9190,10 +9262,10 @@ var PromoWithTags = function PromoWithTags(_ref) {
|
|
|
9190
9262
|
}))));
|
|
9191
9263
|
};
|
|
9192
9264
|
|
|
9193
|
-
var _templateObject$
|
|
9265
|
+
var _templateObject$14, _templateObject2$N, _templateObject3$E, _templateObject4$w, _templateObject5$q, _templateObject6$k, _templateObject7$d;
|
|
9194
9266
|
var LENGTH_TEXT$2 = 28;
|
|
9195
9267
|
var LENGTH_TEXT_TABLET$2 = 10;
|
|
9196
|
-
var PromoWithTitleGrid = /*#__PURE__*/styled(Grid)(_templateObject$
|
|
9268
|
+
var PromoWithTitleGrid = /*#__PURE__*/styled(Grid)(_templateObject$14 || (_templateObject$14 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-template-areas: ", ";\n\n @media ", " {\n & {\n grid-template-areas: ", ";\n }\n }\n\n @media ", " {\n & {\n grid-template-columns: var(--grid-margin) minmax(0, 1fr) var(--grid-margin);\n grid-template-rows: min-content 24px min-content;\n gap: 0;\n grid-template-areas:\n 'row1 row1 row1'\n '. . .'\n '. row2 .';\n }\n }\n"])), function (_ref) {
|
|
9197
9269
|
var imageToLeft = _ref.imageToLeft;
|
|
9198
9270
|
return imageToLeft ? "'left left left left left left left left . right right right right right . .'" : "'. . left left left left left . right right right right right right right right'";
|
|
9199
9271
|
}, devices.tablet, function (_ref2) {
|
|
@@ -9209,7 +9281,7 @@ var PromoWithTitleContentWrapper = /*#__PURE__*/styled.div(_templateObject3$E ||
|
|
|
9209
9281
|
return imageToLeft ? 'right' : 'left';
|
|
9210
9282
|
}, devices.mobile);
|
|
9211
9283
|
var PromoWithTitleContainer = /*#__PURE__*/styled.div(_templateObject4$w || (_templateObject4$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n h2,\n h3 {\n margin: 0 0 32px;\n\n @media ", " {\n & {\n margin: 0 0 24px;\n }\n }\n }\n"])), devices.mobile);
|
|
9212
|
-
var PromoWithTitleSubtitle = /*#__PURE__*/styled.span(_templateObject5$
|
|
9284
|
+
var PromoWithTitleSubtitle = /*#__PURE__*/styled.span(_templateObject5$q || (_templateObject5$q = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-subtitle);\n font-feature-settings: var(--font-feature-settings-subtitle);\n font-size: var(--font-size-subtitle-1);\n font-weight: var(--font-weight-subtitle-1);\n line-height: var(--line-height-subtitle-1);\n letter-spacing: var(--letter-spacing-subtitle-1);\n text-transform: var(--text-transform-subtitle);\n margin-bottom: var(--editorial-subtitle-margin-bottom);\n display: block;\n overflow-wrap: break-word;\n"])));
|
|
9213
9285
|
var PromoWithTitleText = /*#__PURE__*/styled.div(_templateObject6$k || (_templateObject6$k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-family: var(--font-family-body);\n font-feature-settings: var(--font-feature-settings-body);\n font-size: var(--font-size-body-1);\n font-weight: var(--font-weight-body-1);\n line-height: var(--line-height-body-1);\n letter-spacing: var(--letter-spacing-body-1);\n text-transform: var(--text-transform-body);\n margin: 0;\n padding: 0;\n white-space: break-spaces;\n overflow-wrap: break-word;\n\n h5,\n h6 {\n margin: 0 0 4px 0;\n font-family: var(--font-family-subtitle);\n font-feature-settings: var(--font-feature-settings-subtitle);\n font-size: var(--font-size-subtitle-2);\n font-weight: var(--font-weight-subtitle-2);\n line-height: var(--line-height-subtitle-2);\n letter-spacing: var(--letter-spacing-subtitle-2);\n text-transform: var(--text-transform-subtitle);\n overflow-wrap: break-word;\n }\n\n em {\n font-family: var(--font-family-body-italics);\n }\n\n a {\n text-decoration: underline;\n cursor: pointer;\n\n &[href^='tel:'] {\n text-decoration: none;\n }\n\n &:link {\n color: ", ";\n }\n\n &:visited {\n color: ", ";\n }\n\n &:hover {\n color: ", ";\n }\n }\n"])), function (_ref5) {
|
|
9214
9286
|
var theme = _ref5.theme;
|
|
9215
9287
|
return theme.colors.black;
|
|
@@ -9246,8 +9318,8 @@ var ButtonsContainer$3 = /*#__PURE__*/styled.div(_templateObject7$d || (_templat
|
|
|
9246
9318
|
return '';
|
|
9247
9319
|
});
|
|
9248
9320
|
|
|
9249
|
-
var _templateObject$
|
|
9250
|
-
var VideoContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
9321
|
+
var _templateObject$15;
|
|
9322
|
+
var VideoContainer = /*#__PURE__*/styled.div(_templateObject$15 || (_templateObject$15 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n aspect-ratio: ", ";\n\n @supports not (aspect-ratio: ", ") {\n width: 100%;\n padding-top: ", "%;\n }\n\n video {\n display: block;\n width: 100%;\n height: 100%;\n object-fit: cover;\n\n @supports not (aspect-ratio: ", ") {\n position: absolute;\n top: 0;\n left: 0;\n }\n }\n"])), function (_ref) {
|
|
9251
9323
|
var _ref$aspectRatio = _ref.aspectRatio,
|
|
9252
9324
|
aspectRatio = _ref$aspectRatio === void 0 ? AspectRatio['1:1'] : _ref$aspectRatio;
|
|
9253
9325
|
return aspectRatio;
|
|
@@ -9451,8 +9523,8 @@ var PromoWithTitle = function PromoWithTitle(_ref) {
|
|
|
9451
9523
|
}, primaryButton ? /*#__PURE__*/React__default.createElement(PrimaryButton, Object.assign({}, restPrimaryButton), primaryButtonTextTruncate) : null, tertiaryButton ? /*#__PURE__*/React__default.createElement(Button$1, Object.assign({}, restTertiaryButton), tertiaryButtonTextTruncate) : null) : null));
|
|
9452
9524
|
};
|
|
9453
9525
|
|
|
9454
|
-
var _templateObject$
|
|
9455
|
-
var RadioGroupContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
9526
|
+
var _templateObject$16;
|
|
9527
|
+
var RadioGroupContainer = /*#__PURE__*/styled.div(_templateObject$16 || (_templateObject$16 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: 30px;\n"])));
|
|
9456
9528
|
|
|
9457
9529
|
/**
|
|
9458
9530
|
* DEPRECATED. Use RadioGroup2 instead
|
|
@@ -9510,8 +9582,8 @@ var RadioGroup = function RadioGroup(_ref) {
|
|
|
9510
9582
|
})));
|
|
9511
9583
|
};
|
|
9512
9584
|
|
|
9513
|
-
var _templateObject$
|
|
9514
|
-
var Container$3 = /*#__PURE__*/styled.div(_templateObject$
|
|
9585
|
+
var _templateObject$17, _templateObject2$O, _templateObject3$F;
|
|
9586
|
+
var Container$3 = /*#__PURE__*/styled.div(_templateObject$17 || (_templateObject$17 = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
9515
9587
|
var RadioGroup$1 = /*#__PURE__*/styled.div(_templateObject2$O || (_templateObject2$O = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n align-items: flex-start;\n justify-content: flex-start;\n flex-direction: ", ";\n gap: ", ";\n"])), function (_ref) {
|
|
9516
9588
|
var horizontalMode = _ref.horizontalMode;
|
|
9517
9589
|
if (horizontalMode) return 'row';
|
|
@@ -9600,8 +9672,8 @@ var RadioGroup2 = function RadioGroup2(_ref) {
|
|
|
9600
9672
|
}, error)));
|
|
9601
9673
|
};
|
|
9602
9674
|
|
|
9603
|
-
var _templateObject$
|
|
9604
|
-
var StatusBannerWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
9675
|
+
var _templateObject$18, _templateObject2$P, _templateObject3$G;
|
|
9676
|
+
var StatusBannerWrapper = /*#__PURE__*/styled.div(_templateObject$18 || (_templateObject$18 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 26px 150px;\n display: flex;\n justify-content: space-between;\n background-color: var(--base-color-lightgrey);\n transition: transform 0.3s ease;\n transform-origin: top;\n\n @media ", " {\n padding: 20px 20px;\n }\n\n @media ", " {\n padding: 20px 50px;\n }\n\n &.closing {\n transform: scaleY(0);\n }\n"])), devices.mobile, devices.tablet);
|
|
9605
9677
|
var ContentContainer$3 = /*#__PURE__*/styled.div(_templateObject2$P || (_templateObject2$P = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow: auto;\n transition: max-height 0.3s ease-in-out;\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"])));
|
|
9606
9678
|
var SvgContainer$3 = /*#__PURE__*/styled.div(_templateObject3$G || (_templateObject3$G = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 100%;\n display: flex;\n align-items: end;\n\n svg {\n width: var(--navigation-large-gap);\n height: var(--navigation-large-gap);\n padding-left: 50px;\n }\n\n cursor: pointer;\n\n @media ", " {\n padding-left: 20px;\n }\n"])), devices.mobile);
|
|
9607
9679
|
|
|
@@ -9665,8 +9737,8 @@ var StatusBanner = function StatusBanner(_ref) {
|
|
|
9665
9737
|
})))));
|
|
9666
9738
|
};
|
|
9667
9739
|
|
|
9668
|
-
var _templateObject$
|
|
9669
|
-
var SectionTitleWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
9740
|
+
var _templateObject$19;
|
|
9741
|
+
var SectionTitleWrapper = /*#__PURE__*/styled.div(_templateObject$19 || (_templateObject$19 = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 30px 0;\n\n & > div {\n row-gap: 0;\n }\n\n & h1,\n & h2 {\n margin: 16px 0;\n white-space: pre-wrap;\n }\n\n @media ", " {\n & h1,\n & h2 {\n margin: 12px 0;\n }\n }\n\n & div {\n font-size: var(--font-size-title-description);\n line-height: var(--line-height-title-description);\n margin-block-start: 0;\n }\n"])), devices.mobile);
|
|
9670
9742
|
|
|
9671
9743
|
var SectionTitle = function SectionTitle(_ref) {
|
|
9672
9744
|
var title = _ref.title,
|
|
@@ -9694,8 +9766,8 @@ var SectionTitle = function SectionTitle(_ref) {
|
|
|
9694
9766
|
}, description))));
|
|
9695
9767
|
};
|
|
9696
9768
|
|
|
9697
|
-
var _templateObject$
|
|
9698
|
-
var stateStyles = /*#__PURE__*/css(_templateObject$
|
|
9769
|
+
var _templateObject$1a, _templateObject2$Q, _templateObject3$H, _templateObject4$x, _templateObject5$r, _templateObject6$l, _templateObject7$e, _templateObject8$b, _templateObject9$6, _templateObject10$6, _templateObject11$3;
|
|
9770
|
+
var stateStyles = /*#__PURE__*/css(_templateObject$1a || (_templateObject$1a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n &:focus,\n &.focus {\n outline: ", ";\n }\n\n &.disabled {\n background-color: ", ";\n color: ", ";\n pointer-events: none;\n cursor: none;\n }\n"])), function (_ref) {
|
|
9699
9771
|
var theme = _ref.theme;
|
|
9700
9772
|
return "3px solid " + theme.colors.lapisLazuli;
|
|
9701
9773
|
}, function (_ref2) {
|
|
@@ -9718,7 +9790,7 @@ var ArrowIcon = /*#__PURE__*/styled(Icon).attrs(function (_ref5) {
|
|
|
9718
9790
|
color: theme.colors.black,
|
|
9719
9791
|
title: 'Select Arrow'
|
|
9720
9792
|
};
|
|
9721
|
-
})(_templateObject5$
|
|
9793
|
+
})(_templateObject5$r || (_templateObject5$r = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n pointer-events: none;\n\n max-width: 24px;\n max-height: 24px;\n\n svg {\n width: 24px;\n height: 24px;\n }\n"])));
|
|
9722
9794
|
var Wrapper$5 = /*#__PURE__*/styled.div(_templateObject6$l || (_templateObject6$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n height: initial;\n\n display: flex;\n flex-direction: column;\n gap: 20px;\n"])), noMarginAndPaddingStyles);
|
|
9723
9795
|
var SelectWrapper = /*#__PURE__*/styled.div(_templateObject7$e || (_templateObject7$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n height: inherit;\n"])), noMarginAndPaddingStyles);
|
|
9724
9796
|
var Options = /*#__PURE__*/styled.div(_templateObject8$b || (_templateObject8$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n z-index: 1;\n\n ", "\n ", "\n"])), noMarginAndPaddingStyles, borderStyles);
|
|
@@ -10117,8 +10189,8 @@ function Select(_ref3) {
|
|
|
10117
10189
|
}))), /*#__PURE__*/React__default.createElement(ArrowIcon, null)));
|
|
10118
10190
|
}
|
|
10119
10191
|
|
|
10120
|
-
var _templateObject$
|
|
10121
|
-
var Container$4 = /*#__PURE__*/styled.div(_templateObject$
|
|
10192
|
+
var _templateObject$1b, _templateObject2$R, _templateObject3$I, _templateObject4$y;
|
|
10193
|
+
var Container$4 = /*#__PURE__*/styled.div(_templateObject$1b || (_templateObject$1b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n"])));
|
|
10122
10194
|
var SelectWrapper$1 = /*#__PURE__*/styled.div(_templateObject2$R || (_templateObject2$R = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n width: auto;\n max-width: ", ";\n\n .chord-select__control {\n min-height: 48px;\n border-radius: 0;\n transition: none;\n border: ", ";\n &:hover {\n border-color: ", ";\n }\n }\n .chord-select__control--is-focused {\n border-color: var(--base-color-darkgrey);\n box-shadow: ", ";\n }\n .chord-select__control--menu-is-open {\n .chord-select__indicator {\n svg {\n transform: rotate(180deg);\n }\n }\n }\n .chord-select__indicator {\n font-size: 25px;\n padding: 0;\n margin-right: 12px;\n color: var(--base-color-black);\n svg {\n height: 1em;\n width: 1em;\n color: inherit;\n path {\n fill: currentColor;\n color: inherit;\n }\n }\n }\n .chord-select__single-value,\n .chord-select__placeholder {\n margin-left: 0;\n margin-right: 0;\n font-family: var(--font-family-altHeader);\n font-feature-settings: var(--font-feature-settings-altHeader);\n font-size: var(--font-size-altHeader-6);\n font-weight: var(--font-weight-altHeader-6);\n letter-spacing: var(--letter-spacing-altHeader-6);\n line-height: var(--line-height-altHeader-6);\n text-transform: var(--text-transform-altHeader);\n }\n .chord-select__placeholder {\n color: var(--base-color-darkgrey);\n }\n .chord-select__single-value {\n color: var(--base-color-black);\n }\n .chord-select__value-container {\n padding-left: 20px;\n padding-right: 20px;\n padding-top: 1px;\n padding-bottom: 0px;\n }\n .chord-select--is-disabled {\n .chord-select__control {\n border: 1px solid var(--base-color-lightgrey);\n background: var(--base-color-lightgrey);\n }\n .chord-select__indicator,\n .chord-select__single-value {\n color: var(--base-color-darkgrey);\n }\n }\n .chord-select__menu {\n margin-top: -1px;\n box-shadow: none;\n border-radius: 0;\n border: 1px solid var(--base-color-darkgrey);\n background: var(--base-color-lightgrey);\n }\n .chord-select__menu-list {\n padding-top: 0;\n padding-bottom: 0;\n }\n .chord-select__option {\n padding: 10px 20px;\n font-family: var(--font-family-altHeader);\n font-feature-settings: var(--font-feature-settings-altHeader);\n font-size: var(--font-size-altHeader-6);\n font-weight: var(--font-weight-altHeader-6);\n letter-spacing: var(--letter-spacing-altHeader-6);\n line-height: var(--line-height-altHeader-6);\n text-transform: var(--text-transform-altHeader);\n color: var(--base-color-black);\n &:active,\n &.chord-select__option--is-focused {\n background: var(--base-color-midgrey);\n }\n }\n .chord-select__option--is-selected {\n color: var(--base-color-black);\n background: none;\n }\n .chord-select__input-container {\n margin: 0;\n padding-top: 0;\n padding-bottom: 0;\n font-family: var(--font-family-altHeader);\n font-feature-settings: var(--font-feature-settings-altHeader);\n font-size: var(--font-size-altHeader-6);\n font-weight: var(--font-weight-altHeader-6);\n letter-spacing: var(--letter-spacing-altHeader-6);\n line-height: var(--line-height-altHeader-6);\n text-transform: var(--text-transform-altHeader);\n color: var(--base-color-black);\n }\n .chord-select__menu-notice {\n padding: 20px 20px;\n font-family: var(--font-family-body);\n font-feature-settings: var(--font-feature-settings-body);\n font-size: var(--font-size-body-1);\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 color: var(--base-color-black);\n text-align: left;\n }\n .chord-select__menu-notice--loading {\n font-style: italic;\n }\n"])), function (_ref) {
|
|
10123
10195
|
var width = _ref.width;
|
|
10124
10196
|
if (!width) return 'none';
|
|
@@ -10257,8 +10329,8 @@ var SelectComponent$1 = function SelectComponent(_ref) {
|
|
|
10257
10329
|
})));
|
|
10258
10330
|
};
|
|
10259
10331
|
|
|
10260
|
-
var _templateObject$
|
|
10261
|
-
var TextContainer$2 = /*#__PURE__*/styled.div(_templateObject$
|
|
10332
|
+
var _templateObject$1c;
|
|
10333
|
+
var TextContainer$2 = /*#__PURE__*/styled.div(_templateObject$1c || (_templateObject$1c = /*#__PURE__*/_taggedTemplateLiteralLoose(["\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 h2,\n h3,\n h4 {\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 margin: 80px 0 16px;\n\n @media ", " {\n margin-top: 60px;\n }\n\n + p {\n margin-top: 0px;\n }\n }\n\n & h5,\n h6 {\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 margin: 80px 0 16px;\n\n @media ", " {\n margin-top: 60px;\n }\n\n + p {\n margin-top: 10px;\n }\n }\n\n & a {\n color: ", ";\n text-decoration: underline;\n cursor: pointer;\n }\n\n p {\n margin: 30px 0;\n }\n\n & em {\n font-family: var(--font-family-body-italics);\n }\n\n & strong {\n font-weight: bold;\n }\n\n & u {\n font-size: var(--font-size-body-1);\n font-family: var(--font-family-body);\n }\n\n & ul {\n padding: 0;\n list-style: none;\n margin: 0 0 0 30px;\n\n li {\n text-indent: -20px;\n line-height: var(--line-height-listing);\n }\n }\n\n & ol {\n padding: 0;\n margin: 0 0 0 20px;\n\n li {\n line-height: var(--line-height-listing);\n }\n }\n\n & ul > li:before {\n display: inline-block;\n content: '\u2014';\n width: 0px;\n margin-left: 12px;\n margin-right: 8px;\n }\n"])), devices.mobileAndTablet, devices.mobileAndTablet, function (_ref) {
|
|
10262
10334
|
var theme = _ref.theme;
|
|
10263
10335
|
return theme.colors.primary;
|
|
10264
10336
|
});
|
|
@@ -10286,8 +10358,8 @@ var TextOnly = function TextOnly(_ref) {
|
|
|
10286
10358
|
})));
|
|
10287
10359
|
};
|
|
10288
10360
|
|
|
10289
|
-
var _templateObject$
|
|
10290
|
-
var Wrapper$6 = /*#__PURE__*/styled.div(_templateObject$
|
|
10361
|
+
var _templateObject$1d, _templateObject2$S;
|
|
10362
|
+
var Wrapper$6 = /*#__PURE__*/styled.div(_templateObject$1d || (_templateObject$1d = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n height: 100%;\n width: fit-content;\n\n ", " {\n height: calc(100% - 12px - var(--line-height-body-2));\n @supports not (aspect-ratio: ", ") {\n width: ", ";\n }\n }\n"])), ImageAspectRatioWrapper, function (_ref) {
|
|
10291
10363
|
var _ref$aspectRatio = _ref.aspectRatio,
|
|
10292
10364
|
aspectRatio = _ref$aspectRatio === void 0 ? AspectRatio['1:1'] : _ref$aspectRatio;
|
|
10293
10365
|
return aspectRatio;
|
|
@@ -10335,8 +10407,8 @@ var ImageWithCaption = function ImageWithCaption(_ref) {
|
|
|
10335
10407
|
}, children), /*#__PURE__*/React__default.createElement(CaptionWrapper, null, caption));
|
|
10336
10408
|
};
|
|
10337
10409
|
|
|
10338
|
-
var _templateObject$
|
|
10339
|
-
var TextWrapper$3 = /*#__PURE__*/styled.div(_templateObject$
|
|
10410
|
+
var _templateObject$1e, _templateObject2$T, _templateObject3$J;
|
|
10411
|
+
var TextWrapper$3 = /*#__PURE__*/styled.div(_templateObject$1e || (_templateObject$1e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n h4 {\n margin: 0;\n }\n"])));
|
|
10340
10412
|
var AttributionWrapper = /*#__PURE__*/styled.div(_templateObject2$T || (_templateObject2$T = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n"])), function (_ref) {
|
|
10341
10413
|
var displayAttribution = _ref.displayAttribution;
|
|
10342
10414
|
return "display: " + (displayAttribution ? 'block' : 'none') + ";";
|
|
@@ -10365,12 +10437,12 @@ var Quote = function Quote(_ref) {
|
|
|
10365
10437
|
}, attribution))));
|
|
10366
10438
|
};
|
|
10367
10439
|
|
|
10368
|
-
var _templateObject$
|
|
10369
|
-
var CardContainer$1 = /*#__PURE__*/styled.div(_templateObject$
|
|
10440
|
+
var _templateObject$1f, _templateObject2$U, _templateObject3$K, _templateObject4$z, _templateObject5$s, _templateObject6$m;
|
|
10441
|
+
var CardContainer$1 = /*#__PURE__*/styled.div(_templateObject$1f || (_templateObject$1f = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n cursor: pointer;\n width: 100%;\n display: grid;\n grid-template-columns: repeat(7, minmax(0, 1fr));\n gap: 15px;\n min-height: 50px;\n"])));
|
|
10370
10442
|
var ContentContainer$4 = /*#__PURE__*/styled.div(_templateObject2$U || (_templateObject2$U = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n"])));
|
|
10371
10443
|
var StyledImage = /*#__PURE__*/styled.img(_templateObject3$K || (_templateObject3$K = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: 1px solid var(--base-color-white);\n"])));
|
|
10372
10444
|
var ImageWrapper = /*#__PURE__*/styled.div(_templateObject4$z || (_templateObject4$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n"])));
|
|
10373
|
-
var IconWrapper$3 = /*#__PURE__*/styled.div(_templateObject5$
|
|
10445
|
+
var IconWrapper$3 = /*#__PURE__*/styled.div(_templateObject5$s || (_templateObject5$s = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n background: rgba(0, 0, 0, 0.4);\n position: absolute;\n top: 0;\n width: 100%;\n height: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n span {\n width: 40px;\n height: 40px;\n @media ", " {\n width: 24px;\n height: 24px;\n }\n @media ", " {\n width: 18px;\n height: 18px;\n }\n }\n"])), devices.tablet, devices.mobile);
|
|
10374
10446
|
var TitleWrapper$2 = /*#__PURE__*/styled.div(_templateObject6$m || (_templateObject6$m = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 8px;\n div {\n @media ", " {\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n }\n"])), devices.mobile);
|
|
10375
10447
|
|
|
10376
10448
|
var MiniCard = function MiniCard(_ref) {
|
|
@@ -10409,8 +10481,8 @@ var MiniCard = function MiniCard(_ref) {
|
|
|
10409
10481
|
}, title)))));
|
|
10410
10482
|
};
|
|
10411
10483
|
|
|
10412
|
-
var _templateObject$
|
|
10413
|
-
var ReadMoreContainer = /*#__PURE__*/styled.div(_templateObject$
|
|
10484
|
+
var _templateObject$1g, _templateObject2$V, _templateObject3$L, _templateObject4$A, _templateObject5$t;
|
|
10485
|
+
var ReadMoreContainer = /*#__PURE__*/styled.div(_templateObject$1g || (_templateObject$1g = /*#__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"])));
|
|
10414
10486
|
var LinkContainer = /*#__PURE__*/styled.div(_templateObject2$V || (_templateObject2$V = /*#__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"])));
|
|
10415
10487
|
var FullTextContainer = /*#__PURE__*/styled.div(_templateObject3$L || (_templateObject3$L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n\n @media print {\n visibility: visible;\n }\n"])), function (_ref) {
|
|
10416
10488
|
var isVisible = _ref.isVisible;
|
|
@@ -10420,7 +10492,7 @@ var IntroTextContainer = /*#__PURE__*/styled.div(_templateObject4$A || (_templat
|
|
|
10420
10492
|
var isVisible = _ref2.isVisible;
|
|
10421
10493
|
return isVisible ? 'visible' : 'hidden';
|
|
10422
10494
|
});
|
|
10423
|
-
var ContentContainer$5 = /*#__PURE__*/styled.div(_templateObject5$
|
|
10495
|
+
var ContentContainer$5 = /*#__PURE__*/styled.div(_templateObject5$t || (_templateObject5$t = /*#__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"])));
|
|
10424
10496
|
|
|
10425
10497
|
var keyDown = function keyDown(e, toggleFunction) {
|
|
10426
10498
|
if (e.key === 'Enter' || e.key === 'Space') {
|
|
@@ -10507,15 +10579,113 @@ var ReadMore = function ReadMore(_ref) {
|
|
|
10507
10579
|
}, isFullTextOpen ? "" + hideText : "" + showMoreText)));
|
|
10508
10580
|
};
|
|
10509
10581
|
|
|
10510
|
-
var _templateObject$
|
|
10511
|
-
var
|
|
10512
|
-
var
|
|
10513
|
-
var
|
|
10514
|
-
var
|
|
10582
|
+
var _templateObject$1h, _templateObject2$W, _templateObject3$M, _templateObject4$B, _templateObject5$u, _templateObject6$n;
|
|
10583
|
+
var Container$5 = /*#__PURE__*/styled.div(_templateObject$1h || (_templateObject$1h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: 10px;\n"])));
|
|
10584
|
+
var Sections = /*#__PURE__*/styled.div(_templateObject2$W || (_templateObject2$W = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n gap: 8px;\n"])));
|
|
10585
|
+
var Section = /*#__PURE__*/styled.div(_templateObject3$M || (_templateObject3$M = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex: 1;\n height: 2px;\n background-color: ", ";\n"])), function (_ref) {
|
|
10586
|
+
var color = _ref.color;
|
|
10587
|
+
return "var(--base-color-" + color + ")";
|
|
10588
|
+
});
|
|
10589
|
+
var BottomLine = /*#__PURE__*/styled.div(_templateObject4$B || (_templateObject4$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n gap: 20px;\n"])));
|
|
10590
|
+
var Text = /*#__PURE__*/styled.div(_templateObject5$u || (_templateObject5$u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: ", ";\n"])), function (_ref2) {
|
|
10591
|
+
var color = _ref2.color;
|
|
10592
|
+
return "var(--base-color-" + color + ")";
|
|
10593
|
+
});
|
|
10594
|
+
var LabelText = /*#__PURE__*/styled.div(_templateObject6$n || (_templateObject6$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 1px;\n white-space: nowrap;\n color: ", ";\n"])), function (_ref3) {
|
|
10595
|
+
var color = _ref3.color;
|
|
10596
|
+
return "var(--base-color-" + color + ")";
|
|
10597
|
+
});
|
|
10598
|
+
|
|
10599
|
+
/**
|
|
10600
|
+
* Password strength indicator component.
|
|
10601
|
+
* This renders some number of lines (6 by default)
|
|
10602
|
+
* which should become active when the user improves
|
|
10603
|
+
* the strength of the entered password.
|
|
10604
|
+
*
|
|
10605
|
+
* ## Sections
|
|
10606
|
+
* To set number of sections it should be passed
|
|
10607
|
+
* as `sections` prop.
|
|
10608
|
+
*
|
|
10609
|
+
* ## Active section
|
|
10610
|
+
* To set number of active sections it should be passed
|
|
10611
|
+
* as `activeSections` prop.
|
|
10612
|
+
*
|
|
10613
|
+
* ## Colors
|
|
10614
|
+
* Color of every element can be controlled by properties:
|
|
10615
|
+
* `sectionsColor`, `activeSectionsColor`,
|
|
10616
|
+
* `textColor`, `strengthLabelColor`.
|
|
10617
|
+
*
|
|
10618
|
+
* ## Text
|
|
10619
|
+
* `text` prop is used to render some message.
|
|
10620
|
+
* For example error (together with proper red color)
|
|
10621
|
+
* or some password requirement. It can be empty.
|
|
10622
|
+
*
|
|
10623
|
+
* ## Strength label
|
|
10624
|
+
* `strengthLabel` prop is used to render strength characteristic
|
|
10625
|
+
* of entered password. For example: `weak`, `normal`, `strong`, etc.
|
|
10626
|
+
* It can be empty.
|
|
10627
|
+
*/
|
|
10628
|
+
|
|
10629
|
+
var PasswordStrength = function PasswordStrength(_ref) {
|
|
10630
|
+
var _ref$sections = _ref.sections,
|
|
10631
|
+
sections = _ref$sections === void 0 ? 6 : _ref$sections,
|
|
10632
|
+
_ref$activeSections = _ref.activeSections,
|
|
10633
|
+
activeSections = _ref$activeSections === void 0 ? 0 : _ref$activeSections,
|
|
10634
|
+
_ref$sectionsColor = _ref.sectionsColor,
|
|
10635
|
+
sectionsColor = _ref$sectionsColor === void 0 ? Colors.MidGrey : _ref$sectionsColor,
|
|
10636
|
+
_ref$activeSectionsCo = _ref.activeSectionsColor,
|
|
10637
|
+
activeSectionsColor = _ref$activeSectionsCo === void 0 ? Colors.Black : _ref$activeSectionsCo,
|
|
10638
|
+
_ref$text = _ref.text,
|
|
10639
|
+
text = _ref$text === void 0 ? '' : _ref$text,
|
|
10640
|
+
_ref$textColor = _ref.textColor,
|
|
10641
|
+
textColor = _ref$textColor === void 0 ? Colors.Black : _ref$textColor,
|
|
10642
|
+
_ref$strengthLabel = _ref.strengthLabel,
|
|
10643
|
+
strengthLabel = _ref$strengthLabel === void 0 ? '' : _ref$strengthLabel,
|
|
10644
|
+
_ref$strengthLabelCol = _ref.strengthLabelColor,
|
|
10645
|
+
strengthLabelColor = _ref$strengthLabelCol === void 0 ? Colors.Black : _ref$strengthLabelCol;
|
|
10646
|
+
|
|
10647
|
+
var setSectionColor = function setSectionColor(index) {
|
|
10648
|
+
return index < activeSections ? activeSectionsColor : sectionsColor;
|
|
10649
|
+
};
|
|
10650
|
+
|
|
10651
|
+
var setSectionDataTestId = function setSectionDataTestId(index) {
|
|
10652
|
+
return index < activeSections ? 'password-strength-section-active' : 'password-strength-section';
|
|
10653
|
+
};
|
|
10654
|
+
|
|
10655
|
+
return /*#__PURE__*/React__default.createElement(Container$5, {
|
|
10656
|
+
"data-testid": "password-strength-container"
|
|
10657
|
+
}, /*#__PURE__*/React__default.createElement(Sections, {
|
|
10658
|
+
"data-testid": "password-strength-sections"
|
|
10659
|
+
}, Array.from({
|
|
10660
|
+
length: sections
|
|
10661
|
+
}, function (_section, i) {
|
|
10662
|
+
return /*#__PURE__*/React__default.createElement(Section, {
|
|
10663
|
+
key: i,
|
|
10664
|
+
color: setSectionColor(i),
|
|
10665
|
+
"data-testid": setSectionDataTestId(i)
|
|
10666
|
+
});
|
|
10667
|
+
})), /*#__PURE__*/React__default.createElement(BottomLine, null, /*#__PURE__*/React__default.createElement(Text, {
|
|
10668
|
+
color: textColor,
|
|
10669
|
+
"data-testid": "password-strength-text"
|
|
10670
|
+
}, /*#__PURE__*/React__default.createElement(AltHeader, {
|
|
10671
|
+
level: 6
|
|
10672
|
+
}, text)), /*#__PURE__*/React__default.createElement(LabelText, {
|
|
10673
|
+
color: strengthLabelColor,
|
|
10674
|
+
"data-testid": "password-strength-label"
|
|
10675
|
+
}, /*#__PURE__*/React__default.createElement(Overline, {
|
|
10676
|
+
level: 2
|
|
10677
|
+
}, strengthLabel))));
|
|
10678
|
+
};
|
|
10679
|
+
|
|
10680
|
+
var _templateObject$1i, _templateObject2$X, _templateObject3$N, _templateObject4$C, _templateObject5$v;
|
|
10681
|
+
var MenuContainer$2 = /*#__PURE__*/styled.nav(_templateObject$1i || (_templateObject$1i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n padding: 0;\n margin: 0;\n"])));
|
|
10682
|
+
var MenuList = /*#__PURE__*/styled.ul(_templateObject2$X || (_templateObject2$X = /*#__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);
|
|
10683
|
+
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);
|
|
10684
|
+
var MenuItem$1 = /*#__PURE__*/styled.a(_templateObject4$C || (_templateObject4$C = /*#__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) {
|
|
10515
10685
|
var isActive = _ref.isActive;
|
|
10516
10686
|
return isActive ? "var(--base-color-" + Colors.MidGrey + ")" : 'none';
|
|
10517
10687
|
}, Colors.MidGrey);
|
|
10518
|
-
var MobileMenuList = /*#__PURE__*/styled.ul(_templateObject5$
|
|
10688
|
+
var MobileMenuList = /*#__PURE__*/styled.ul(_templateObject5$v || (_templateObject5$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 0;\n margin: 0;\n list-style: none;\n display: ", ";\n background: var(--base-color-", ");\n border: 1px solid var(--base-color-", ");\n border-top: 0;\n position: absolute;\n top: 100%;\n left: 0;\n right: 0;\n ", " {\n padding: 16px 20px 15px 20px;\n }\n"])), function (_ref2) {
|
|
10519
10689
|
var isOpen = _ref2.isOpen;
|
|
10520
10690
|
return isOpen ? 'block' : 'none';
|
|
10521
10691
|
}, Colors.White, Colors.DarkGrey, MenuItem$1);
|
|
@@ -10685,106 +10855,8 @@ var AuxiliaryNav = function AuxiliaryNav(_ref6) {
|
|
|
10685
10855
|
});
|
|
10686
10856
|
};
|
|
10687
10857
|
|
|
10688
|
-
var _templateObject$
|
|
10689
|
-
var
|
|
10690
|
-
var Sections = /*#__PURE__*/styled.div(_templateObject2$X || (_templateObject2$X = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n gap: 8px;\n"])));
|
|
10691
|
-
var Section = /*#__PURE__*/styled.div(_templateObject3$N || (_templateObject3$N = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex: 1;\n height: 2px;\n background-color: ", ";\n"])), function (_ref) {
|
|
10692
|
-
var color = _ref.color;
|
|
10693
|
-
return "var(--base-color-" + color + ")";
|
|
10694
|
-
});
|
|
10695
|
-
var BottomLine = /*#__PURE__*/styled.div(_templateObject4$C || (_templateObject4$C = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n gap: 20px;\n"])));
|
|
10696
|
-
var Text = /*#__PURE__*/styled.div(_templateObject5$u || (_templateObject5$u = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: ", ";\n"])), function (_ref2) {
|
|
10697
|
-
var color = _ref2.color;
|
|
10698
|
-
return "var(--base-color-" + color + ")";
|
|
10699
|
-
});
|
|
10700
|
-
var LabelText = /*#__PURE__*/styled.div(_templateObject6$n || (_templateObject6$n = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-top: 1px;\n white-space: nowrap;\n color: ", ";\n"])), function (_ref3) {
|
|
10701
|
-
var color = _ref3.color;
|
|
10702
|
-
return "var(--base-color-" + color + ")";
|
|
10703
|
-
});
|
|
10704
|
-
|
|
10705
|
-
/**
|
|
10706
|
-
* Password strength indicator component.
|
|
10707
|
-
* This renders some number of lines (6 by default)
|
|
10708
|
-
* which should become active when the user improves
|
|
10709
|
-
* the strength of the entered password.
|
|
10710
|
-
*
|
|
10711
|
-
* ## Sections
|
|
10712
|
-
* To set number of sections it should be passed
|
|
10713
|
-
* as `sections` prop.
|
|
10714
|
-
*
|
|
10715
|
-
* ## Active section
|
|
10716
|
-
* To set number of active sections it should be passed
|
|
10717
|
-
* as `activeSections` prop.
|
|
10718
|
-
*
|
|
10719
|
-
* ## Colors
|
|
10720
|
-
* Color of every element can be controlled by properties:
|
|
10721
|
-
* `sectionsColor`, `activeSectionsColor`,
|
|
10722
|
-
* `textColor`, `strengthLabelColor`.
|
|
10723
|
-
*
|
|
10724
|
-
* ## Text
|
|
10725
|
-
* `text` prop is used to render some message.
|
|
10726
|
-
* For example error (together with proper red color)
|
|
10727
|
-
* or some password requirement. It can be empty.
|
|
10728
|
-
*
|
|
10729
|
-
* ## Strength label
|
|
10730
|
-
* `strengthLabel` prop is used to render strength characteristic
|
|
10731
|
-
* of entered password. For example: `weak`, `normal`, `strong`, etc.
|
|
10732
|
-
* It can be empty.
|
|
10733
|
-
*/
|
|
10734
|
-
|
|
10735
|
-
var PasswordStrength = function PasswordStrength(_ref) {
|
|
10736
|
-
var _ref$sections = _ref.sections,
|
|
10737
|
-
sections = _ref$sections === void 0 ? 6 : _ref$sections,
|
|
10738
|
-
_ref$activeSections = _ref.activeSections,
|
|
10739
|
-
activeSections = _ref$activeSections === void 0 ? 0 : _ref$activeSections,
|
|
10740
|
-
_ref$sectionsColor = _ref.sectionsColor,
|
|
10741
|
-
sectionsColor = _ref$sectionsColor === void 0 ? Colors.MidGrey : _ref$sectionsColor,
|
|
10742
|
-
_ref$activeSectionsCo = _ref.activeSectionsColor,
|
|
10743
|
-
activeSectionsColor = _ref$activeSectionsCo === void 0 ? Colors.Black : _ref$activeSectionsCo,
|
|
10744
|
-
_ref$text = _ref.text,
|
|
10745
|
-
text = _ref$text === void 0 ? '' : _ref$text,
|
|
10746
|
-
_ref$textColor = _ref.textColor,
|
|
10747
|
-
textColor = _ref$textColor === void 0 ? Colors.Black : _ref$textColor,
|
|
10748
|
-
_ref$strengthLabel = _ref.strengthLabel,
|
|
10749
|
-
strengthLabel = _ref$strengthLabel === void 0 ? '' : _ref$strengthLabel,
|
|
10750
|
-
_ref$strengthLabelCol = _ref.strengthLabelColor,
|
|
10751
|
-
strengthLabelColor = _ref$strengthLabelCol === void 0 ? Colors.Black : _ref$strengthLabelCol;
|
|
10752
|
-
|
|
10753
|
-
var setSectionColor = function setSectionColor(index) {
|
|
10754
|
-
return index < activeSections ? activeSectionsColor : sectionsColor;
|
|
10755
|
-
};
|
|
10756
|
-
|
|
10757
|
-
var setSectionDataTestId = function setSectionDataTestId(index) {
|
|
10758
|
-
return index < activeSections ? 'password-strength-section-active' : 'password-strength-section';
|
|
10759
|
-
};
|
|
10760
|
-
|
|
10761
|
-
return /*#__PURE__*/React__default.createElement(Container$5, {
|
|
10762
|
-
"data-testid": "password-strength-container"
|
|
10763
|
-
}, /*#__PURE__*/React__default.createElement(Sections, {
|
|
10764
|
-
"data-testid": "password-strength-sections"
|
|
10765
|
-
}, Array.from({
|
|
10766
|
-
length: sections
|
|
10767
|
-
}, function (_section, i) {
|
|
10768
|
-
return /*#__PURE__*/React__default.createElement(Section, {
|
|
10769
|
-
key: i,
|
|
10770
|
-
color: setSectionColor(i),
|
|
10771
|
-
"data-testid": setSectionDataTestId(i)
|
|
10772
|
-
});
|
|
10773
|
-
})), /*#__PURE__*/React__default.createElement(BottomLine, null, /*#__PURE__*/React__default.createElement(Text, {
|
|
10774
|
-
color: textColor,
|
|
10775
|
-
"data-testid": "password-strength-text"
|
|
10776
|
-
}, /*#__PURE__*/React__default.createElement(AltHeader, {
|
|
10777
|
-
level: 6
|
|
10778
|
-
}, text)), /*#__PURE__*/React__default.createElement(LabelText, {
|
|
10779
|
-
color: strengthLabelColor,
|
|
10780
|
-
"data-testid": "password-strength-label"
|
|
10781
|
-
}, /*#__PURE__*/React__default.createElement(Overline, {
|
|
10782
|
-
level: 2
|
|
10783
|
-
}, strengthLabel))));
|
|
10784
|
-
};
|
|
10785
|
-
|
|
10786
|
-
var _templateObject$1i, _templateObject2$Y, _templateObject3$O, _templateObject4$D, _templateObject5$v, _templateObject6$o, _templateObject7$f, _templateObject8$c, _templateObject9$7, _templateObject10$7;
|
|
10787
|
-
var TableContainer = /*#__PURE__*/styled.table(_templateObject$1i || (_templateObject$1i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-collapse: collapse;\n"])));
|
|
10858
|
+
var _templateObject$1j, _templateObject2$Y, _templateObject3$O, _templateObject4$D, _templateObject5$w, _templateObject6$o, _templateObject7$f, _templateObject8$c, _templateObject9$7, _templateObject10$7;
|
|
10859
|
+
var TableContainer = /*#__PURE__*/styled.table(_templateObject$1j || (_templateObject$1j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-collapse: collapse;\n"])));
|
|
10788
10860
|
var Container$6 = /*#__PURE__*/styled.div(_templateObject2$Y || (_templateObject2$Y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow-x: auto;\n"])));
|
|
10789
10861
|
var Wrapper$7 = /*#__PURE__*/styled.div(_templateObject3$O || (_templateObject3$O = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n"])));
|
|
10790
10862
|
var TableHeader = /*#__PURE__*/styled.th(_templateObject4$D || (_templateObject4$D = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n font-size: var(--font-size-subtitle-2);\n font-family: var(--font-family-subtitle);\n font-feature-settings: var(--font-feature-settings-subtitle);\n font-weight: var(--font-weight-subtitle-2);\n letter-spacing: var(--letter-spacing-subtitle-2);\n line-height: var(--line-height-subtitle-2);\n padding: 30px 30px 30px 0;\n text-align: left;\n text-transform: uppercase;\n border-bottom: 1px solid;\n border-top: 1px solid;\n border-color: ", ";\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 padding: 20px 20px 20px 0;\n\n &:last-child {\n white-space: normal;\n }\n }\n"])), function (props) {
|
|
@@ -10792,7 +10864,7 @@ var TableHeader = /*#__PURE__*/styled.th(_templateObject4$D || (_templateObject4
|
|
|
10792
10864
|
}, function (props) {
|
|
10793
10865
|
return "calc(100% / " + (props.columns - 1) + ")";
|
|
10794
10866
|
}, devices.tablet, devices.mobile);
|
|
10795
|
-
var TableCell = /*#__PURE__*/styled.td(_templateObject5$
|
|
10867
|
+
var TableCell = /*#__PURE__*/styled.td(_templateObject5$w || (_templateObject5$w = /*#__PURE__*/_taggedTemplateLiteralLoose(["\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 padding: 30px 30px 30px 0;\n text-align: left;\n vertical-align: top;\n border-bottom: 1px solid;\n border-color: ", ";\n\n &:last-child {\n width: auto;\n }\n\n &:not(:last-child) {\n width: ", ";\n }\n\n > span > svg {\n width: 24px;\n height: 24px;\n }\n\n @media ", " {\n padding: 20px 20px 20px 0;\n }\n"])), function (props) {
|
|
10796
10868
|
return "var(--base-color-" + props.lineColor + ")";
|
|
10797
10869
|
}, function (props) {
|
|
10798
10870
|
return "calc(100% / " + (props.columns - 1) + ")";
|
|
@@ -11067,8 +11139,8 @@ var LiveChat = function LiveChat() {
|
|
|
11067
11139
|
});
|
|
11068
11140
|
};
|
|
11069
11141
|
|
|
11070
|
-
var _templateObject$
|
|
11071
|
-
var StickyBarWrapper = /*#__PURE__*/styled.div(_templateObject$
|
|
11142
|
+
var _templateObject$1k, _templateObject2$Z;
|
|
11143
|
+
var StickyBarWrapper = /*#__PURE__*/styled.div(_templateObject$1k || (_templateObject$1k = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n top: 0;\n position: sticky;\n z-index: ", ";\n background-color: var(--base-color-white);\n"])), zIndexes.anchor);
|
|
11072
11144
|
var StickyBarGrid = /*#__PURE__*/styled(Grid)(_templateObject2$Z || (_templateObject2$Z = /*#__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) {
|
|
11073
11145
|
var hideBottomBorder = _ref.hideBottomBorder;
|
|
11074
11146
|
return !hideBottomBorder && 'border-bottom: 2px solid var(--base-color-lightgrey);';
|
|
@@ -11097,8 +11169,8 @@ var StickyBar = function StickyBar(_ref) {
|
|
|
11097
11169
|
}, children)));
|
|
11098
11170
|
};
|
|
11099
11171
|
|
|
11100
|
-
var _templateObject$
|
|
11101
|
-
var InnerModal = /*#__PURE__*/styled.div(_templateObject$
|
|
11172
|
+
var _templateObject$1l, _templateObject2$_, _templateObject3$P, _templateObject4$E;
|
|
11173
|
+
var InnerModal = /*#__PURE__*/styled.div(_templateObject$1l || (_templateObject$1l = /*#__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);
|
|
11102
11174
|
var CloseButton = /*#__PURE__*/styled.button(_templateObject2$_ || (_templateObject2$_ = /*#__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);
|
|
11103
11175
|
var ContentWrapper$1 = /*#__PURE__*/styled.div(_templateObject3$P || (_templateObject3$P = /*#__PURE__*/_taggedTemplateLiteralLoose([""])));
|
|
11104
11176
|
var Overlay = /*#__PURE__*/styled(Grid)(_templateObject4$E || (_templateObject4$E = /*#__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"])));
|
|
@@ -11221,8 +11293,8 @@ var ModalWindow = function ModalWindow(_ref) {
|
|
|
11221
11293
|
})), /*#__PURE__*/React__default.createElement(ContentWrapper$1, null, children))), /*#__PURE__*/React__default.createElement(ScrollLock, null)));
|
|
11222
11294
|
};
|
|
11223
11295
|
|
|
11224
|
-
var _templateObject$
|
|
11225
|
-
var GlobalStyles = /*#__PURE__*/createGlobalStyle(_templateObject$1l || (_templateObject$1l = /*#__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\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\n @media ", " {\n \n }\n\n @media ", " {\n \n }\n }\n"])), function (_ref) {
|
|
11296
|
+
var _templateObject$1m;
|
|
11297
|
+
var GlobalStyles = /*#__PURE__*/createGlobalStyle(_templateObject$1m || (_templateObject$1m = /*#__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\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\n @media ", " {\n \n }\n\n @media ", " {\n \n }\n }\n"])), function (_ref) {
|
|
11226
11298
|
var theme = _ref.theme;
|
|
11227
11299
|
return theme.colors.primary;
|
|
11228
11300
|
}, function (_ref2) {
|
|
@@ -12163,5 +12235,5 @@ var GlobalStyles = /*#__PURE__*/createGlobalStyle(_templateObject$1l || (_templa
|
|
|
12163
12235
|
return theme.fonts.tablet.sizes.body[1];
|
|
12164
12236
|
}, devices.desktop, devices.largeDesktop);
|
|
12165
12237
|
|
|
12166
|
-
export { Accordion, Accordions, AltHeader, AnchorTabBar, AnnouncementBanner, AspectRatio, AuxiliaryButton, AuxiliaryNav, BodyText, ButtonType, Card, Cards, CarouselType, CinemaBadge, Colors, ContactCard, ContentSummary, ControlledDropdown, CreditListing, Editorial, Footer, GlobalStyles, Grid, GridItem, Header, Icon, ImageAspectRatioWrapper, ImageWithCaption, Information, LiveChat, MiniCard, ModalWindow, Navigation, Overline, PageHeadingCinema, PageHeadingCompact, PageHeadingCore, PageHeadingImpact, PageHeadingPanel, PageHeadingStream, Pagination, PasswordStrength, PeopleListing, PrimaryButton, Progress, PromoWithTags, PromoWithTitle, Quote, Radio, Radio2, RadioGroup, RadioGroup2, ReadMore, RotatorButtons, SearchBar, SecondaryButton, SecondaryLogo, SectionSplitter, SectionTitle, Select, SelectComponent as Select2, SelectComponent$1 as Select2Async, Sponsorship, StatusBanner, Component as Stepper, StickyBar, StreamBadge, Subtitle, Tab, TabLink, Table, Tabs, Button$1 as TertiaryButton, TextArea, TextField, TextFieldLegacy, TextLink, TextOnly, Theme as ThemeProvider, ThemeType, Tickbox, Tickbox2, TickboxMode, Timer, TitleWithCTA, TypeTags, UpsellCard, UpsellSection, VideoControls, VideoWithControls$1 as VideoWithControls, breakpoints, devices, zIndexes };
|
|
12238
|
+
export { Accordion, Accordions, AltHeader, AnchorTabBar, AnnouncementBanner, AspectRatio, AuxiliaryButton, AuxiliaryNav, BodyText, ButtonType, Card, Cards, CarouselType, CinemaBadge, Colors, ContactCard, ContentSummary, ControlledDropdown, CreditListing, Editorial, Footer, GlobalStyles, Grid, GridItem, GridItemLegacy, Header, IInformationBackgroundColour, Icon, ImageAspectRatioWrapper, ImageWithCaption, Information, LiveChat, MiniCard, ModalWindow, Navigation, Overline, PageHeadingCinema, PageHeadingCompact, PageHeadingCore, PageHeadingImpact, PageHeadingPanel, PageHeadingStream, Pagination, PasswordStrength, PeopleListing, PrimaryButton, Progress, PromoWithTags, PromoWithTitle, Quote, Radio, Radio2, RadioGroup, RadioGroup2, ReadMore, RotatorButtons, SearchBar, SecondaryButton, SecondaryLogo, SectionSplitter, SectionTitle, Select, SelectComponent as Select2, SelectComponent$1 as Select2Async, Sponsorship, StatusBanner, Component as Stepper, StickyBar, StreamBadge, Subtitle, Tab, TabLink, Table, Tabs, Button$1 as TertiaryButton, TextArea, TextField, TextFieldLegacy, TextLink, TextOnly, Theme as ThemeProvider, ThemeType, Tickbox, Tickbox2, TickboxMode, Timer, TitleWithCTA, TypeTags, UpsellCard, UpsellSection, VideoControls, VideoWithControls$1 as VideoWithControls, breakpoints, devices, zIndexes };
|
|
12167
12239
|
//# sourceMappingURL=chord.esm.js.map
|