@royaloperahouse/chord 2.4.8 → 2.4.9
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 +3 -0
- package/dist/chord.cjs.development.js +105 -82
- 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 +108 -83
- package/dist/chord.esm.js.map +1 -1
- package/dist/components/atoms/Icons/SvgIcons/index.d.ts +75 -75
- package/dist/components/molecules/Information/InfoCta.d.ts +2 -2
- package/dist/components/molecules/Information/Information.style.d.ts +6 -3
- package/dist/index.d.ts +2 -2
- package/dist/types/index.d.ts +2 -1
- package/dist/types/information.d.ts +17 -12
- package/dist/types/types.d.ts +10 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -39,6 +39,20 @@ var ScrollLock = _interopDefault(require('react-scrolllock'));
|
|
|
39
39
|
ThemeType["Schools"] = "schools";
|
|
40
40
|
})(exports.ThemeType || (exports.ThemeType = {}));
|
|
41
41
|
|
|
42
|
+
var LinkTarget;
|
|
43
|
+
|
|
44
|
+
(function (LinkTarget) {
|
|
45
|
+
/**
|
|
46
|
+
* Opens the link in the same frame or tab as the current page.
|
|
47
|
+
*/
|
|
48
|
+
LinkTarget["Self"] = "_self";
|
|
49
|
+
/**
|
|
50
|
+
* Opens the link in a new browser tab or window, depending on the browser settings.
|
|
51
|
+
*/
|
|
52
|
+
|
|
53
|
+
LinkTarget["Blank"] = "_blank";
|
|
54
|
+
})(LinkTarget || (LinkTarget = {}));
|
|
55
|
+
|
|
42
56
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
43
57
|
try {
|
|
44
58
|
var info = gen[key](arg);
|
|
@@ -2695,10 +2709,41 @@ var AspectRatioWidth;
|
|
|
2695
2709
|
ButtonType["Tertiary"] = "Tertiary";
|
|
2696
2710
|
})(exports.ButtonType || (exports.ButtonType = {}));
|
|
2697
2711
|
|
|
2712
|
+
var IInformationCtaVariant;
|
|
2713
|
+
|
|
2714
|
+
(function (IInformationCtaVariant) {
|
|
2715
|
+
IInformationCtaVariant["Primary"] = "Primary";
|
|
2716
|
+
IInformationCtaVariant["Secondary"] = "Secondary";
|
|
2717
|
+
IInformationCtaVariant["Tertiary"] = "Tertiary";
|
|
2718
|
+
IInformationCtaVariant["TextLink"] = "TextLink";
|
|
2719
|
+
})(IInformationCtaVariant || (IInformationCtaVariant = {}));
|
|
2720
|
+
|
|
2721
|
+
var IInformationCtaTheme;
|
|
2722
|
+
|
|
2723
|
+
(function (IInformationCtaTheme) {
|
|
2724
|
+
IInformationCtaTheme["Cinema"] = "Cinema";
|
|
2725
|
+
IInformationCtaTheme["Core"] = "Core";
|
|
2726
|
+
IInformationCtaTheme["Stream"] = "Stream";
|
|
2727
|
+
})(IInformationCtaTheme || (IInformationCtaTheme = {}));
|
|
2728
|
+
|
|
2729
|
+
var IInformationTitleVariant;
|
|
2730
|
+
|
|
2731
|
+
(function (IInformationTitleVariant) {
|
|
2732
|
+
IInformationTitleVariant["Header"] = "Header";
|
|
2733
|
+
IInformationTitleVariant["AltHeader"] = "AltHeader";
|
|
2734
|
+
})(IInformationTitleVariant || (IInformationTitleVariant = {}));
|
|
2735
|
+
|
|
2736
|
+
(function (IInformationBackgroundColour) {
|
|
2737
|
+
IInformationBackgroundColour["Cinema"] = "cinema";
|
|
2738
|
+
IInformationBackgroundColour["Core"] = "core";
|
|
2739
|
+
IInformationBackgroundColour["Stream"] = "stream";
|
|
2740
|
+
IInformationBackgroundColour["White"] = "white";
|
|
2741
|
+
})(exports.IInformationBackgroundColour || (exports.IInformationBackgroundColour = {}));
|
|
2742
|
+
|
|
2698
2743
|
var PrimaryButton = function PrimaryButton(_ref) {
|
|
2699
2744
|
var children = _ref.children,
|
|
2700
2745
|
disabled = _ref.disabled,
|
|
2701
|
-
props = _objectWithoutPropertiesLoose(_ref, ["children", "disabled"
|
|
2746
|
+
props = _objectWithoutPropertiesLoose(_ref, ["children", "disabled"]);
|
|
2702
2747
|
|
|
2703
2748
|
var description = 'This button is currently disabled';
|
|
2704
2749
|
return disabled ? /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(AriaDescription, {
|
|
@@ -7969,47 +8014,14 @@ var Editorial = function Editorial(_ref) {
|
|
|
7969
8014
|
})))));
|
|
7970
8015
|
};
|
|
7971
8016
|
|
|
7972
|
-
var
|
|
7973
|
-
|
|
7974
|
-
(function (CtaVariant) {
|
|
7975
|
-
CtaVariant["Primary"] = "Primary";
|
|
7976
|
-
CtaVariant["Secondary"] = "Secondary";
|
|
7977
|
-
CtaVariant["Tertiary"] = "Tertiary";
|
|
7978
|
-
CtaVariant["TextLink"] = "TextLink";
|
|
7979
|
-
})(CtaVariant || (CtaVariant = {}));
|
|
7980
|
-
|
|
7981
|
-
var CtaTheme;
|
|
7982
|
-
|
|
7983
|
-
(function (CtaTheme) {
|
|
7984
|
-
CtaTheme["Cinema"] = "Cinema";
|
|
7985
|
-
CtaTheme["Core"] = "Core";
|
|
7986
|
-
CtaTheme["Stream"] = "Stream";
|
|
7987
|
-
})(CtaTheme || (CtaTheme = {}));
|
|
7988
|
-
|
|
7989
|
-
var TitleVariant;
|
|
7990
|
-
|
|
7991
|
-
(function (TitleVariant) {
|
|
7992
|
-
TitleVariant["Header"] = "Header";
|
|
7993
|
-
TitleVariant["AltHeader"] = "AltHeader";
|
|
7994
|
-
})(TitleVariant || (TitleVariant = {}));
|
|
7995
|
-
|
|
7996
|
-
var BackgroundColour;
|
|
7997
|
-
|
|
7998
|
-
(function (BackgroundColour) {
|
|
7999
|
-
BackgroundColour["Cinema"] = "cinema";
|
|
8000
|
-
BackgroundColour["Core"] = "core";
|
|
8001
|
-
BackgroundColour["Stream"] = "stream";
|
|
8002
|
-
BackgroundColour["White"] = "white";
|
|
8003
|
-
})(BackgroundColour || (BackgroundColour = {}));
|
|
8004
|
-
|
|
8005
|
-
var _templateObject$V, _templateObject2$E, _templateObject3$v, _templateObject4$o;
|
|
8017
|
+
var _templateObject$V, _templateObject2$E, _templateObject3$v, _templateObject4$o, _templateObject5$j;
|
|
8006
8018
|
var InfoContent = /*#__PURE__*/styled__default('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"])));
|
|
8007
8019
|
var InfoTitle = /*#__PURE__*/styled__default('div')(_templateObject2$E || (_templateObject2$E = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n * {\n margin-block: 0;\n }\n"])));
|
|
8008
8020
|
var InfoCTAWrapper = /*#__PURE__*/styled__default('div')(_templateObject3$v || (_templateObject3$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin: 32px 0;\n\n ", "}\n"])), function (props) {
|
|
8009
8021
|
if (!props.infoThemed) {
|
|
8010
8022
|
return;
|
|
8011
8023
|
} else {
|
|
8012
|
-
if (props.variant ===
|
|
8024
|
+
if (props.variant === IInformationCtaVariant.Primary || props.variant === IInformationCtaVariant.Secondary) {
|
|
8013
8025
|
return "a {\n color: var(--base-color-black);\n background: var(--base-color-white);\n border-color: var(--base-color-transparent);\n }";
|
|
8014
8026
|
} else {
|
|
8015
8027
|
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 ";
|
|
@@ -8017,45 +8029,54 @@ var InfoCTAWrapper = /*#__PURE__*/styled__default('div')(_templateObject3$v || (
|
|
|
8017
8029
|
}
|
|
8018
8030
|
});
|
|
8019
8031
|
var InfoWrapper = /*#__PURE__*/styled__default(Grid)(_templateObject4$o || (_templateObject4$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n padding: 60px 0;\n color: ", ";\n background: ", "\n }};\n"])), function (props) {
|
|
8020
|
-
return props.background !==
|
|
8032
|
+
return props.background !== exports.IInformationBackgroundColour.White ? 'var(--base-color-white)' : 'var(--base-color-black)';
|
|
8021
8033
|
}, function (props) {
|
|
8022
8034
|
return "var(--base-color-" + props.background + ")";
|
|
8023
8035
|
});
|
|
8036
|
+
var InfoBodyWrapper = /*#__PURE__*/styled__default('div')(_templateObject5$j || (_templateObject5$j = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n a {\n text-decoration: underline;\n color: ", ";\n }\n"])), function (props) {
|
|
8037
|
+
return props.background === exports.IInformationBackgroundColour.White ? 'var(--base-color-black)' : 'var(--base-color-white)';
|
|
8038
|
+
});
|
|
8024
8039
|
|
|
8025
8040
|
var InfoCta = function InfoCta(_ref) {
|
|
8026
8041
|
var _ref$variant = _ref.variant,
|
|
8027
|
-
variant = _ref$variant === void 0 ?
|
|
8042
|
+
variant = _ref$variant === void 0 ? IInformationCtaVariant.Primary : _ref$variant,
|
|
8028
8043
|
_ref$theme = _ref.theme,
|
|
8029
|
-
theme = _ref$theme === void 0 ?
|
|
8044
|
+
theme = _ref$theme === void 0 ? IInformationCtaTheme.Core : _ref$theme,
|
|
8030
8045
|
link = _ref.link,
|
|
8031
8046
|
text = _ref.text,
|
|
8032
8047
|
iconName = _ref.iconName,
|
|
8033
8048
|
iconDirection = _ref.iconDirection,
|
|
8034
|
-
infoThemed = _ref.infoThemed
|
|
8049
|
+
infoThemed = _ref.infoThemed,
|
|
8050
|
+
_ref$target = _ref.target,
|
|
8051
|
+
target = _ref$target === void 0 ? LinkTarget.Self : _ref$target;
|
|
8035
8052
|
return /*#__PURE__*/React__default.createElement(InfoCTAWrapper, {
|
|
8036
8053
|
variant: variant,
|
|
8037
8054
|
infoThemed: infoThemed,
|
|
8038
8055
|
theme: theme
|
|
8039
|
-
}, variant ===
|
|
8056
|
+
}, variant === IInformationCtaVariant.Secondary ? /*#__PURE__*/React__default.createElement(SecondaryButton, {
|
|
8040
8057
|
color: exports.Colors[theme],
|
|
8041
8058
|
href: link,
|
|
8042
8059
|
iconName: iconName,
|
|
8043
|
-
iconDirection: iconDirection
|
|
8044
|
-
|
|
8060
|
+
iconDirection: iconDirection,
|
|
8061
|
+
target: target
|
|
8062
|
+
}, text) : variant === IInformationCtaVariant.Tertiary ? /*#__PURE__*/React__default.createElement(Button$1, {
|
|
8045
8063
|
color: exports.Colors.Black,
|
|
8046
8064
|
href: link,
|
|
8047
8065
|
iconName: iconName,
|
|
8048
|
-
iconDirection: iconDirection
|
|
8049
|
-
|
|
8066
|
+
iconDirection: iconDirection,
|
|
8067
|
+
target: target
|
|
8068
|
+
}, text) : variant === IInformationCtaVariant.TextLink ? /*#__PURE__*/React__default.createElement(TextLink, {
|
|
8050
8069
|
color: exports.Colors.Black,
|
|
8051
8070
|
href: link,
|
|
8052
8071
|
iconName: iconName,
|
|
8053
|
-
iconDirection: iconDirection
|
|
8072
|
+
iconDirection: iconDirection,
|
|
8073
|
+
target: target
|
|
8054
8074
|
}, text) : /*#__PURE__*/React__default.createElement(PrimaryButton, {
|
|
8055
8075
|
bgColor: exports.Colors[theme],
|
|
8056
8076
|
href: link,
|
|
8057
8077
|
iconName: iconName,
|
|
8058
|
-
iconDirection: iconDirection
|
|
8078
|
+
iconDirection: iconDirection,
|
|
8079
|
+
target: target
|
|
8059
8080
|
}, text));
|
|
8060
8081
|
};
|
|
8061
8082
|
|
|
@@ -8066,7 +8087,7 @@ var mediumWordBreakpoint = 8;
|
|
|
8066
8087
|
var longWordBreakpoint = 13;
|
|
8067
8088
|
|
|
8068
8089
|
var getColumnSpan = function getColumnSpan(variant, textSize, longestWordLength) {
|
|
8069
|
-
if (!(variant ===
|
|
8090
|
+
if (!(variant === IInformationTitleVariant.Header && textSize === 4)) return defaultColumnSpan;
|
|
8070
8091
|
|
|
8071
8092
|
switch (true) {
|
|
8072
8093
|
case longestWordLength > longWordBreakpoint:
|
|
@@ -8081,8 +8102,8 @@ var getColumnSpan = function getColumnSpan(variant, textSize, longestWordLength)
|
|
|
8081
8102
|
};
|
|
8082
8103
|
|
|
8083
8104
|
var renderTitle = function renderTitle(props) {
|
|
8084
|
-
var headerLevel = props.variant ===
|
|
8085
|
-
return props.variant ===
|
|
8105
|
+
var headerLevel = props.variant === IInformationTitleVariant.Header && props.textSize < 4 ? 4 : props.textSize;
|
|
8106
|
+
return props.variant === IInformationTitleVariant.Header ? /*#__PURE__*/React__default.createElement(Header, {
|
|
8086
8107
|
level: headerLevel
|
|
8087
8108
|
}, props.text) : /*#__PURE__*/React__default.createElement(AltHeader, {
|
|
8088
8109
|
level: headerLevel
|
|
@@ -8100,7 +8121,7 @@ var Information = function Information(_ref) {
|
|
|
8100
8121
|
});
|
|
8101
8122
|
var maxTitleWordLength = Math.max.apply(Math, titleWordLengths);
|
|
8102
8123
|
var titleColumnSpan = getColumnSpan(title.variant, title.textSize, maxTitleWordLength);
|
|
8103
|
-
var bgColour = background != null ? background :
|
|
8124
|
+
var bgColour = background != null ? background : exports.IInformationBackgroundColour.White;
|
|
8104
8125
|
return /*#__PURE__*/React__default.createElement(InfoWrapper, {
|
|
8105
8126
|
background: bgColour,
|
|
8106
8127
|
"data-testid": "infoWrapper"
|
|
@@ -8108,13 +8129,14 @@ var Information = function Information(_ref) {
|
|
|
8108
8129
|
columnStartDesktop: 2,
|
|
8109
8130
|
columnStartDevice: 2,
|
|
8110
8131
|
columnSpanDesktop: titleColumnSpan,
|
|
8111
|
-
columnSpanDevice:
|
|
8132
|
+
columnSpanDevice: 12
|
|
8112
8133
|
}, /*#__PURE__*/React__default.createElement(InfoTitle, null, renderTitle(title))), /*#__PURE__*/React__default.createElement(GridItem, {
|
|
8113
8134
|
columnStartDesktop: titleColumnSpan + 2,
|
|
8114
8135
|
columnStartDevice: 2,
|
|
8115
8136
|
columnSpanDesktop: 14 - titleColumnSpan,
|
|
8116
|
-
columnSpanDevice:
|
|
8117
|
-
}, /*#__PURE__*/React__default.createElement(InfoContent, null, /*#__PURE__*/React__default.createElement(
|
|
8137
|
+
columnSpanDevice: 12
|
|
8138
|
+
}, /*#__PURE__*/React__default.createElement(InfoContent, null, /*#__PURE__*/React__default.createElement(InfoBodyWrapper, {
|
|
8139
|
+
background: bgColour,
|
|
8118
8140
|
dangerouslySetInnerHTML: {
|
|
8119
8141
|
__html: body
|
|
8120
8142
|
}
|
|
@@ -8122,14 +8144,15 @@ var Information = function Information(_ref) {
|
|
|
8122
8144
|
link: cta.link,
|
|
8123
8145
|
variant: cta.variant,
|
|
8124
8146
|
theme: cta.theme,
|
|
8125
|
-
infoThemed: bgColour !==
|
|
8147
|
+
infoThemed: bgColour !== exports.IInformationBackgroundColour.White,
|
|
8126
8148
|
text: cta.text,
|
|
8127
8149
|
iconName: cta.iconName,
|
|
8128
|
-
iconDirection: cta.iconDirection
|
|
8150
|
+
iconDirection: cta.iconDirection,
|
|
8151
|
+
target: cta.target
|
|
8129
8152
|
}))));
|
|
8130
8153
|
};
|
|
8131
8154
|
|
|
8132
|
-
var _templateObject$W, _templateObject2$F, _templateObject3$w, _templateObject4$p, _templateObject5$
|
|
8155
|
+
var _templateObject$W, _templateObject2$F, _templateObject3$w, _templateObject4$p, _templateObject5$k, _templateObject6$f, _templateObject7$9, _templateObject8$7;
|
|
8133
8156
|
var PageHeadingWrapper = /*#__PURE__*/styled__default.div(_templateObject$W || (_templateObject$W = /*#__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) {
|
|
8134
8157
|
var theme = _ref.theme;
|
|
8135
8158
|
return theme.colors.primary;
|
|
@@ -8146,7 +8169,7 @@ var ChildrenWrapper = /*#__PURE__*/styled__default.div(_templateObject4$p || (_t
|
|
|
8146
8169
|
var isPageHeadingWithoutTitle = _ref4.isPageHeadingWithoutTitle;
|
|
8147
8170
|
return isPageHeadingWithoutTitle && "\n margin: 10px 0;\n ";
|
|
8148
8171
|
}, devices.mobile);
|
|
8149
|
-
var TextWrapper = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
8172
|
+
var TextWrapper = /*#__PURE__*/styled__default.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"])));
|
|
8150
8173
|
var LogoWrapper$1 = /*#__PURE__*/styled__default.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);
|
|
8151
8174
|
var ButtonWrapper$1 = /*#__PURE__*/styled__default.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);
|
|
8152
8175
|
var PageHeadingText = /*#__PURE__*/styled__default.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"])));
|
|
@@ -8230,12 +8253,12 @@ var PageHeadingCinema = function PageHeadingCinema(_ref) {
|
|
|
8230
8253
|
})));
|
|
8231
8254
|
};
|
|
8232
8255
|
|
|
8233
|
-
var _templateObject$X, _templateObject2$G, _templateObject3$x, _templateObject4$q, _templateObject5$
|
|
8256
|
+
var _templateObject$X, _templateObject2$G, _templateObject3$x, _templateObject4$q, _templateObject5$l, _templateObject6$g, _templateObject7$a, _templateObject8$8;
|
|
8234
8257
|
var ImpactWrapper = /*#__PURE__*/styled__default.div(_templateObject$X || (_templateObject$X = /*#__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);
|
|
8235
8258
|
var ImpactHeaderImageWrapper = /*#__PURE__*/styled__default.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);
|
|
8236
8259
|
var ImpactGrid = /*#__PURE__*/styled__default(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);
|
|
8237
8260
|
var SponsorWrapper = /*#__PURE__*/styled__default.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);
|
|
8238
|
-
var LogoWrapper$2 = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
8261
|
+
var LogoWrapper$2 = /*#__PURE__*/styled__default.div(_templateObject5$l || (_templateObject5$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: logo;\n align-self: end;\n"])));
|
|
8239
8262
|
var TextWrapper$1 = /*#__PURE__*/styled__default.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);
|
|
8240
8263
|
var ButtonWrapper$2 = /*#__PURE__*/styled__default.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);
|
|
8241
8264
|
var ScrollDownWrapper = /*#__PURE__*/styled__default.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);
|
|
@@ -8304,7 +8327,7 @@ var PageHeadingImpact = function PageHeadingImpact(_ref) {
|
|
|
8304
8327
|
}, "Scroll Down")) : null);
|
|
8305
8328
|
};
|
|
8306
8329
|
|
|
8307
|
-
var _templateObject$Y, _templateObject2$H, _templateObject3$y, _templateObject4$r, _templateObject5$
|
|
8330
|
+
var _templateObject$Y, _templateObject2$H, _templateObject3$y, _templateObject4$r, _templateObject5$m;
|
|
8308
8331
|
var PanelGrid = /*#__PURE__*/styled__default(Grid)(_templateObject$Y || (_templateObject$Y = /*#__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) {
|
|
8309
8332
|
var color = _ref.color;
|
|
8310
8333
|
return "\n background-color: " + (color ? "var(--base-color-" + color + ")" : 'var(--base-color-core)') + ";\n color: " + (color === exports.Colors.White ? 'var(--base-color-black)' : 'var(--base-color-white)') + ";\n ";
|
|
@@ -8318,7 +8341,7 @@ var LeftPanel = /*#__PURE__*/styled__default.div(_templateObject2$H || (_templat
|
|
|
8318
8341
|
});
|
|
8319
8342
|
var RightPanel = /*#__PURE__*/styled__default.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);
|
|
8320
8343
|
var InfoWrapper$1 = /*#__PURE__*/styled__default.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);
|
|
8321
|
-
var ScrollDownWrapper$1 = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
8344
|
+
var ScrollDownWrapper$1 = /*#__PURE__*/styled__default.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);
|
|
8322
8345
|
|
|
8323
8346
|
var PageHeadingPanel = function PageHeadingPanel(_ref) {
|
|
8324
8347
|
var _image$src, _image$alt;
|
|
@@ -8370,11 +8393,11 @@ var PageHeadingStream = function PageHeadingStream(_ref) {
|
|
|
8370
8393
|
}))));
|
|
8371
8394
|
};
|
|
8372
8395
|
|
|
8373
|
-
var _templateObject$_, _templateObject2$I, _templateObject3$z, _templateObject5$
|
|
8396
|
+
var _templateObject$_, _templateObject2$I, _templateObject3$z, _templateObject5$n, _templateObject6$h, _templateObject7$b, _templateObject8$9, _templateObject9$4, _templateObject10$4;
|
|
8374
8397
|
var BrandingTextBlock = /*#__PURE__*/styled__default.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);
|
|
8375
8398
|
var BrandingTextBody = /*#__PURE__*/styled__default.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"])));
|
|
8376
8399
|
var ComapctHeaderWrapper = /*#__PURE__*/styled__default.div(_templateObject3$z || (_templateObject3$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n display: block;\n"])));
|
|
8377
|
-
var CompactHeaderAssetWrapper = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
8400
|
+
var CompactHeaderAssetWrapper = /*#__PURE__*/styled__default.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);
|
|
8378
8401
|
var CompactHeaderCopyWrapper = /*#__PURE__*/styled__default(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) {
|
|
8379
8402
|
var invert = _ref.invert,
|
|
8380
8403
|
theme = _ref.theme;
|
|
@@ -8780,12 +8803,12 @@ var Pagination = function Pagination(_ref) {
|
|
|
8780
8803
|
}))));
|
|
8781
8804
|
};
|
|
8782
8805
|
|
|
8783
|
-
var _templateObject$10, _templateObject2$K, _templateObject3$B, _templateObject4$t, _templateObject5$
|
|
8806
|
+
var _templateObject$10, _templateObject2$K, _templateObject3$B, _templateObject4$t, _templateObject5$o, _templateObject6$i;
|
|
8784
8807
|
var PeopleListingGrid = /*#__PURE__*/styled__default(Grid)(_templateObject$10 || (_templateObject$10 = /*#__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);
|
|
8785
8808
|
var PersonWrapper = /*#__PURE__*/styled__default.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"])));
|
|
8786
8809
|
var HeadshotWrapper = /*#__PURE__*/styled__default.div(_templateObject3$B || (_templateObject3$B = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n grid-area: headshot;\n img {\n width: 60px;\n height: 60px;\n }\n"])));
|
|
8787
8810
|
var RoleWrapper = /*#__PURE__*/styled__default.div(_templateObject4$t || (_templateObject4$t = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: var(--base-color-darkgrey);\n overflow-wrap: break-word;\n margin-bottom: 4px;\n"])));
|
|
8788
|
-
var TextWrapper$2 = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
8811
|
+
var TextWrapper$2 = /*#__PURE__*/styled__default.div(_templateObject5$o || (_templateObject5$o = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n grid-area: role-person;\n break-inside: avoid;\n"])));
|
|
8789
8812
|
var PersonLink = /*#__PURE__*/styled__default.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"])));
|
|
8790
8813
|
|
|
8791
8814
|
var Person = function Person(_ref) {
|
|
@@ -8909,7 +8932,7 @@ var CreditListing = function CreditListing(_ref) {
|
|
|
8909
8932
|
}));
|
|
8910
8933
|
};
|
|
8911
8934
|
|
|
8912
|
-
var _templateObject$12, _templateObject2$M, _templateObject3$D, _templateObject4$v, _templateObject5$
|
|
8935
|
+
var _templateObject$12, _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;
|
|
8913
8936
|
var LENGTH_TEXT = 28;
|
|
8914
8937
|
var LENGTH_TEXT_TABLET$1 = 12;
|
|
8915
8938
|
var GridTemplateImageToLeft = "'left left left left left left left left . right right right right right . .'";
|
|
@@ -8965,7 +8988,7 @@ var ButtonsContainer$2 = /*#__PURE__*/styled__default.div(_templateObject4$v ||
|
|
|
8965
8988
|
|
|
8966
8989
|
return '';
|
|
8967
8990
|
});
|
|
8968
|
-
var PromoWithTagsTagWrapper = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
8991
|
+
var PromoWithTagsTagWrapper = /*#__PURE__*/styled__default.div(_templateObject5$p || (_templateObject5$p = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n margin-bottom: ", ";\n"])), function (_ref10) {
|
|
8969
8992
|
var marginBottom = _ref10.marginBottom;
|
|
8970
8993
|
return marginBottom + "px";
|
|
8971
8994
|
});
|
|
@@ -9187,7 +9210,7 @@ var PromoWithTags = function PromoWithTags(_ref) {
|
|
|
9187
9210
|
}))));
|
|
9188
9211
|
};
|
|
9189
9212
|
|
|
9190
|
-
var _templateObject$13, _templateObject2$N, _templateObject3$E, _templateObject4$w, _templateObject5$
|
|
9213
|
+
var _templateObject$13, _templateObject2$N, _templateObject3$E, _templateObject4$w, _templateObject5$q, _templateObject6$k, _templateObject7$d;
|
|
9191
9214
|
var LENGTH_TEXT$2 = 28;
|
|
9192
9215
|
var LENGTH_TEXT_TABLET$2 = 10;
|
|
9193
9216
|
var PromoWithTitleGrid = /*#__PURE__*/styled__default(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"])), function (_ref) {
|
|
@@ -9206,7 +9229,7 @@ var PromoWithTitleContentWrapper = /*#__PURE__*/styled__default.div(_templateObj
|
|
|
9206
9229
|
return imageToLeft ? 'right' : 'left';
|
|
9207
9230
|
}, devices.mobile);
|
|
9208
9231
|
var PromoWithTitleContainer = /*#__PURE__*/styled__default.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);
|
|
9209
|
-
var PromoWithTitleSubtitle = /*#__PURE__*/styled__default.span(_templateObject5$
|
|
9232
|
+
var PromoWithTitleSubtitle = /*#__PURE__*/styled__default.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"])));
|
|
9210
9233
|
var PromoWithTitleText = /*#__PURE__*/styled__default.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) {
|
|
9211
9234
|
var theme = _ref5.theme;
|
|
9212
9235
|
return theme.colors.black;
|
|
@@ -9691,7 +9714,7 @@ var SectionTitle = function SectionTitle(_ref) {
|
|
|
9691
9714
|
}, description))));
|
|
9692
9715
|
};
|
|
9693
9716
|
|
|
9694
|
-
var _templateObject$19, _templateObject2$Q, _templateObject3$H, _templateObject4$x, _templateObject5$
|
|
9717
|
+
var _templateObject$19, _templateObject2$Q, _templateObject3$H, _templateObject4$x, _templateObject5$r, _templateObject6$l, _templateObject7$e, _templateObject8$b, _templateObject9$6, _templateObject10$6, _templateObject11$3;
|
|
9695
9718
|
var stateStyles = /*#__PURE__*/styled.css(_templateObject$19 || (_templateObject$19 = /*#__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) {
|
|
9696
9719
|
var theme = _ref.theme;
|
|
9697
9720
|
return "3px solid " + theme.colors.lapisLazuli;
|
|
@@ -9715,7 +9738,7 @@ var ArrowIcon = /*#__PURE__*/styled__default(Icon).attrs(function (_ref5) {
|
|
|
9715
9738
|
color: theme.colors.black,
|
|
9716
9739
|
title: 'Select Arrow'
|
|
9717
9740
|
};
|
|
9718
|
-
})(_templateObject5$
|
|
9741
|
+
})(_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"])));
|
|
9719
9742
|
var Wrapper$5 = /*#__PURE__*/styled__default.div(_templateObject6$l || (_templateObject6$l = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n height: initial;\n\n display: flex;\n flex-direction: column;\n gap: 20px;\n"])), noMarginAndPaddingStyles);
|
|
9720
9743
|
var SelectWrapper = /*#__PURE__*/styled__default.div(_templateObject7$e || (_templateObject7$e = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n ", "\n height: inherit;\n"])), noMarginAndPaddingStyles);
|
|
9721
9744
|
var Options = /*#__PURE__*/styled__default.div(_templateObject8$b || (_templateObject8$b = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n z-index: 1;\n\n ", "\n ", "\n"])), noMarginAndPaddingStyles, borderStyles);
|
|
@@ -10362,12 +10385,12 @@ var Quote = function Quote(_ref) {
|
|
|
10362
10385
|
}, attribution))));
|
|
10363
10386
|
};
|
|
10364
10387
|
|
|
10365
|
-
var _templateObject$1e, _templateObject2$U, _templateObject3$K, _templateObject4$z, _templateObject5$
|
|
10388
|
+
var _templateObject$1e, _templateObject2$U, _templateObject3$K, _templateObject4$z, _templateObject5$s, _templateObject6$m;
|
|
10366
10389
|
var CardContainer$1 = /*#__PURE__*/styled__default.div(_templateObject$1e || (_templateObject$1e = /*#__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"])));
|
|
10367
10390
|
var ContentContainer$4 = /*#__PURE__*/styled__default.div(_templateObject2$U || (_templateObject2$U = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n"])));
|
|
10368
10391
|
var StyledImage = /*#__PURE__*/styled__default.img(_templateObject3$K || (_templateObject3$K = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border: 1px solid var(--base-color-white);\n"])));
|
|
10369
10392
|
var ImageWrapper = /*#__PURE__*/styled__default.div(_templateObject4$z || (_templateObject4$z = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n"])));
|
|
10370
|
-
var IconWrapper$3 = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
10393
|
+
var IconWrapper$3 = /*#__PURE__*/styled__default.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);
|
|
10371
10394
|
var TitleWrapper$2 = /*#__PURE__*/styled__default.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);
|
|
10372
10395
|
|
|
10373
10396
|
var MiniCard = function MiniCard(_ref) {
|
|
@@ -10406,7 +10429,7 @@ var MiniCard = function MiniCard(_ref) {
|
|
|
10406
10429
|
}, title)))));
|
|
10407
10430
|
};
|
|
10408
10431
|
|
|
10409
|
-
var _templateObject$1f, _templateObject2$V, _templateObject3$L, _templateObject4$A, _templateObject5$
|
|
10432
|
+
var _templateObject$1f, _templateObject2$V, _templateObject3$L, _templateObject4$A, _templateObject5$t;
|
|
10410
10433
|
var ReadMoreContainer = /*#__PURE__*/styled__default.div(_templateObject$1f || (_templateObject$1f = /*#__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"])));
|
|
10411
10434
|
var LinkContainer = /*#__PURE__*/styled__default.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"])));
|
|
10412
10435
|
var FullTextContainer = /*#__PURE__*/styled__default.div(_templateObject3$L || (_templateObject3$L = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n visibility: ", ";\n\n @media print {\n visibility: visible;\n }\n"])), function (_ref) {
|
|
@@ -10417,7 +10440,7 @@ var IntroTextContainer = /*#__PURE__*/styled__default.div(_templateObject4$A ||
|
|
|
10417
10440
|
var isVisible = _ref2.isVisible;
|
|
10418
10441
|
return isVisible ? 'visible' : 'hidden';
|
|
10419
10442
|
});
|
|
10420
|
-
var ContentContainer$5 = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
10443
|
+
var ContentContainer$5 = /*#__PURE__*/styled__default.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"])));
|
|
10421
10444
|
|
|
10422
10445
|
var keyDown = function keyDown(e, toggleFunction) {
|
|
10423
10446
|
if (e.key === 'Enter' || e.key === 'Space') {
|
|
@@ -10504,7 +10527,7 @@ var ReadMore = function ReadMore(_ref) {
|
|
|
10504
10527
|
}, isFullTextOpen ? "" + hideText : "" + showMoreText)));
|
|
10505
10528
|
};
|
|
10506
10529
|
|
|
10507
|
-
var _templateObject$1g, _templateObject2$W, _templateObject3$M, _templateObject4$B, _templateObject5$
|
|
10530
|
+
var _templateObject$1g, _templateObject2$W, _templateObject3$M, _templateObject4$B, _templateObject5$u;
|
|
10508
10531
|
var MenuContainer$2 = /*#__PURE__*/styled__default.nav(_templateObject$1g || (_templateObject$1g = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n position: relative;\n padding: 0;\n margin: 0;\n"])));
|
|
10509
10532
|
var MenuList = /*#__PURE__*/styled__default.ul(_templateObject2$W || (_templateObject2$W = /*#__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"])), exports.Colors.LightGrey);
|
|
10510
10533
|
var MobileButton = /*#__PURE__*/styled__default.button(_templateObject3$M || (_templateObject3$M = /*#__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"])), exports.Colors.Black, exports.Colors.White, exports.Colors.DarkGrey);
|
|
@@ -10512,7 +10535,7 @@ var MenuItem$1 = /*#__PURE__*/styled__default.a(_templateObject4$B || (_template
|
|
|
10512
10535
|
var isActive = _ref.isActive;
|
|
10513
10536
|
return isActive ? "var(--base-color-" + exports.Colors.MidGrey + ")" : 'none';
|
|
10514
10537
|
}, exports.Colors.MidGrey);
|
|
10515
|
-
var MobileMenuList = /*#__PURE__*/styled__default.ul(_templateObject5$
|
|
10538
|
+
var MobileMenuList = /*#__PURE__*/styled__default.ul(_templateObject5$u || (_templateObject5$u = /*#__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) {
|
|
10516
10539
|
var isOpen = _ref2.isOpen;
|
|
10517
10540
|
return isOpen ? 'block' : 'none';
|
|
10518
10541
|
}, exports.Colors.White, exports.Colors.DarkGrey, MenuItem$1);
|
|
@@ -10682,7 +10705,7 @@ var AuxiliaryNav = function AuxiliaryNav(_ref6) {
|
|
|
10682
10705
|
});
|
|
10683
10706
|
};
|
|
10684
10707
|
|
|
10685
|
-
var _templateObject$1h, _templateObject2$X, _templateObject3$N, _templateObject4$C, _templateObject5$
|
|
10708
|
+
var _templateObject$1h, _templateObject2$X, _templateObject3$N, _templateObject4$C, _templateObject5$v, _templateObject6$n;
|
|
10686
10709
|
var Container$5 = /*#__PURE__*/styled__default.div(_templateObject$1h || (_templateObject$1h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: column;\n gap: 10px;\n"])));
|
|
10687
10710
|
var Sections = /*#__PURE__*/styled__default.div(_templateObject2$X || (_templateObject2$X = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n display: flex;\n flex-direction: row;\n gap: 8px;\n"])));
|
|
10688
10711
|
var Section = /*#__PURE__*/styled__default.div(_templateObject3$N || (_templateObject3$N = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n flex: 1;\n height: 2px;\n background-color: ", ";\n"])), function (_ref) {
|
|
@@ -10690,7 +10713,7 @@ var Section = /*#__PURE__*/styled__default.div(_templateObject3$N || (_templateO
|
|
|
10690
10713
|
return "var(--base-color-" + color + ")";
|
|
10691
10714
|
});
|
|
10692
10715
|
var BottomLine = /*#__PURE__*/styled__default.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"])));
|
|
10693
|
-
var Text = /*#__PURE__*/styled__default.div(_templateObject5$
|
|
10716
|
+
var Text = /*#__PURE__*/styled__default.div(_templateObject5$v || (_templateObject5$v = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n color: ", ";\n"])), function (_ref2) {
|
|
10694
10717
|
var color = _ref2.color;
|
|
10695
10718
|
return "var(--base-color-" + color + ")";
|
|
10696
10719
|
});
|
|
@@ -10780,7 +10803,7 @@ var PasswordStrength = function PasswordStrength(_ref) {
|
|
|
10780
10803
|
}, strengthLabel))));
|
|
10781
10804
|
};
|
|
10782
10805
|
|
|
10783
|
-
var _templateObject$1i, _templateObject2$Y, _templateObject3$O, _templateObject4$D, _templateObject5$
|
|
10806
|
+
var _templateObject$1i, _templateObject2$Y, _templateObject3$O, _templateObject4$D, _templateObject5$w, _templateObject6$o, _templateObject7$f, _templateObject8$c, _templateObject9$7, _templateObject10$7;
|
|
10784
10807
|
var TableContainer = /*#__PURE__*/styled__default.table(_templateObject$1i || (_templateObject$1i = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n border-collapse: collapse;\n"])));
|
|
10785
10808
|
var Container$6 = /*#__PURE__*/styled__default.div(_templateObject2$Y || (_templateObject2$Y = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n overflow-x: auto;\n"])));
|
|
10786
10809
|
var Wrapper$7 = /*#__PURE__*/styled__default.div(_templateObject3$O || (_templateObject3$O = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n"])));
|
|
@@ -10789,7 +10812,7 @@ var TableHeader = /*#__PURE__*/styled__default.th(_templateObject4$D || (_templa
|
|
|
10789
10812
|
}, function (props) {
|
|
10790
10813
|
return "calc(100% / " + (props.columns - 1) + ")";
|
|
10791
10814
|
}, devices.tablet, devices.mobile);
|
|
10792
|
-
var TableCell = /*#__PURE__*/styled__default.td(_templateObject5$
|
|
10815
|
+
var TableCell = /*#__PURE__*/styled__default.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) {
|
|
10793
10816
|
return "var(--base-color-" + props.lineColor + ")";
|
|
10794
10817
|
}, function (props) {
|
|
10795
10818
|
return "calc(100% / " + (props.columns - 1) + ")";
|