@thecb/components 12.0.0-beta.10 → 12.0.0-beta.11
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/dist/index.cjs.js +77 -57
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +77 -57
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/checkbox/Checkbox.js +11 -6
- package/src/components/atoms/form-layouts/FormInput.js +2 -0
- package/src/components/molecules/link-card/LinkCard.js +26 -21
- package/src/components/molecules/link-card/LinkCard.styled.js +21 -35
- package/src/components/molecules/link-card/LinkCard.theme.js +2 -5
- package/src/components/molecules/registration-form/RegistrationForm.js +5 -0
- package/src/components/molecules/terms-and-conditions/TermsAndConditionsControlV2.js +3 -1
package/dist/index.cjs.js
CHANGED
|
@@ -22119,7 +22119,7 @@ var ENTER = 13;
|
|
|
22119
22119
|
var ESCAPE = 27;
|
|
22120
22120
|
var SPACEBAR = 32;
|
|
22121
22121
|
|
|
22122
|
-
var _excluded$x = ["title", "name", "checked", "onChange", "disabled", "themeValues", "hidden", "error", "checkboxMargin", "extraStyles", "textExtraStyles", "labelledById", "dataQa", "checkboxExtraStyles", "hasIconOverride", "icon"];
|
|
22122
|
+
var _excluded$x = ["title", "name", "checked", "onChange", "disabled", "themeValues", "hidden", "error", "isRequired", "checkboxMargin", "extraStyles", "textExtraStyles", "labelledById", "dataQa", "checkboxExtraStyles", "hasIconOverride", "icon"];
|
|
22123
22123
|
var CheckboxContainer = styled__default.span.withConfig({
|
|
22124
22124
|
displayName: "Checkbox__CheckboxContainer",
|
|
22125
22125
|
componentId: "sc-36kqbv-0"
|
|
@@ -22178,6 +22178,8 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function (_ref5, ref) {
|
|
|
22178
22178
|
hidden = _ref5$hidden === void 0 ? false : _ref5$hidden,
|
|
22179
22179
|
_ref5$error = _ref5.error,
|
|
22180
22180
|
error = _ref5$error === void 0 ? false : _ref5$error,
|
|
22181
|
+
_ref5$isRequired = _ref5.isRequired,
|
|
22182
|
+
isRequired = _ref5$isRequired === void 0 ? false : _ref5$isRequired,
|
|
22181
22183
|
_ref5$checkboxMargin = _ref5.checkboxMargin,
|
|
22182
22184
|
checkboxMargin = _ref5$checkboxMargin === void 0 ? "0 16px 0 0" : _ref5$checkboxMargin,
|
|
22183
22185
|
extraStyles = _ref5.extraStyles,
|
|
@@ -22206,6 +22208,13 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function (_ref5, ref) {
|
|
|
22206
22208
|
ref: ref,
|
|
22207
22209
|
padding: "0",
|
|
22208
22210
|
tabIndex: "0",
|
|
22211
|
+
role: "checkbox",
|
|
22212
|
+
"aria-checked": checked,
|
|
22213
|
+
"aria-required": isRequired || undefined,
|
|
22214
|
+
"aria-invalid": error,
|
|
22215
|
+
"aria-label": ariaLabel,
|
|
22216
|
+
"aria-labelledby": ariaLabelledById,
|
|
22217
|
+
"aria-describedby": error ? "".concat(name, "-error-message") : undefined,
|
|
22209
22218
|
onFocus: function onFocus() {
|
|
22210
22219
|
return setFocused(true);
|
|
22211
22220
|
},
|
|
@@ -22226,19 +22235,16 @@ var Checkbox = /*#__PURE__*/React.forwardRef(function (_ref5, ref) {
|
|
|
22226
22235
|
id: "checkbox-".concat(name),
|
|
22227
22236
|
disabled: disabled,
|
|
22228
22237
|
name: name,
|
|
22229
|
-
"aria-label": ariaLabel,
|
|
22230
|
-
"aria-labelledby": ariaLabelledById,
|
|
22231
22238
|
checked: checked,
|
|
22232
22239
|
onChange: onChange,
|
|
22233
22240
|
tabIndex: "-1",
|
|
22234
|
-
|
|
22235
|
-
"aria-
|
|
22241
|
+
required: isRequired,
|
|
22242
|
+
"aria-hidden": "true"
|
|
22236
22243
|
}), /*#__PURE__*/React__default.createElement(StyledCheckbox, {
|
|
22237
|
-
|
|
22244
|
+
"aria-hidden": "true",
|
|
22238
22245
|
error: error,
|
|
22239
22246
|
disabled: disabled,
|
|
22240
22247
|
checked: checked,
|
|
22241
|
-
"aria-checked": checked,
|
|
22242
22248
|
focused: focused,
|
|
22243
22249
|
defaultStyles: themeValues.defaultStyles,
|
|
22244
22250
|
checkedStyles: themeValues.checkedStyles,
|
|
@@ -25975,6 +25981,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
25975
25981
|
"aria-labelledby": ariaLabelledBy === undefined ? createIdFromString(labelTextWhenNoError) : ariaLabelledBy,
|
|
25976
25982
|
"aria-describedby": createIdFromString(labelTextWhenNoError, "error message"),
|
|
25977
25983
|
"aria-invalid": field.dirty && field.hasErrors || field.hasErrors && showErrors,
|
|
25984
|
+
"aria-required": isRequired,
|
|
25978
25985
|
onChange: function onChange(value) {
|
|
25979
25986
|
return setValue(value);
|
|
25980
25987
|
},
|
|
@@ -26007,6 +26014,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
26007
26014
|
"aria-labelledby": ariaLabelledBy === undefined ? createIdFromString(labelTextWhenNoError) : ariaLabelledBy,
|
|
26008
26015
|
"aria-describedby": createIdFromString(labelTextWhenNoError, "error message"),
|
|
26009
26016
|
"aria-invalid": field.dirty && field.hasErrors || field.hasErrors && showErrors,
|
|
26017
|
+
"aria-required": isRequired,
|
|
26010
26018
|
onChange: function onChange(e) {
|
|
26011
26019
|
return setValue(e.target.value);
|
|
26012
26020
|
},
|
|
@@ -45827,7 +45835,6 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
|
45827
45835
|
var backgroundColor$a = LINK_WATER;
|
|
45828
45836
|
var borderColor$5 = MOON_RAKER;
|
|
45829
45837
|
var color$c = ROYAL_BLUE_VIVID;
|
|
45830
|
-
var textColor$5 = BRIGHT_GREY;
|
|
45831
45838
|
var fallbackValues$L = {
|
|
45832
45839
|
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
45833
45840
|
disabledBorderColor: disabledBorderColor$1,
|
|
@@ -45835,37 +45842,36 @@ var fallbackValues$L = {
|
|
|
45835
45842
|
activeBackgroundColor: activeBackgroundColor$1,
|
|
45836
45843
|
backgroundColor: backgroundColor$a,
|
|
45837
45844
|
borderColor: borderColor$5,
|
|
45838
|
-
color: color$c
|
|
45839
|
-
textColor: textColor$5
|
|
45845
|
+
color: color$c
|
|
45840
45846
|
};
|
|
45841
45847
|
|
|
45842
|
-
var
|
|
45843
|
-
displayName: "
|
|
45848
|
+
var Container = styled__default(Box).withConfig({
|
|
45849
|
+
displayName: "LinkCardstyled__Container",
|
|
45844
45850
|
componentId: "sc-l5q1h2-0"
|
|
45845
|
-
})(["", ""], function (_ref) {
|
|
45846
|
-
var
|
|
45847
|
-
theme = _ref
|
|
45848
|
-
|
|
45849
|
-
|
|
45850
|
-
|
|
45851
|
-
|
|
45852
|
-
return
|
|
45851
|
+
})(["display:flex;flex-direction:column;align-items:flex-start;width:100%;gap:40px;flex-shrink:0;align-self:stretch;border-radius:8px;", " transition:all .2s ease-in-out;", ""], function (_ref) {
|
|
45852
|
+
var isDisabled = _ref.isDisabled,
|
|
45853
|
+
theme = _ref.theme;
|
|
45854
|
+
return "\n background-color: ".concat(isDisabled ? theme.disabledBackgroundColor : theme.backgroundColor, ";\n border: 1px solid ").concat(isDisabled ? theme.disabledBorderColor : theme.borderColor, ";\n ");
|
|
45855
|
+
}, function (_ref2) {
|
|
45856
|
+
var isDisabled = _ref2.isDisabled,
|
|
45857
|
+
theme = _ref2.theme;
|
|
45858
|
+
return isDisabled ? "\n &:hover,\n &:active {\n cursor: default;\n box-shadow: none;\n border: 1px solid ".concat(theme.disabledBorderColor, ";\n }\n ") : "\n &:hover,\n &:active {\n cursor: pointer;\n box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.1),\n 0px 5px 11px 0px rgba(41, 42, 51, 0.1),\n 0px 4px 19px 0px rgba(41, 42, 51, 0.09),\n 0px 27px 26px 0px rgba(41, 42, 51, 0.05),\n 0px 56px 31px 0px rgba(41, 42, 51, 0.01),\n 0px 80px 33px 0px rgba(41, 42, 51, 0);\n }\n\n &:hover:not(:active) {\n border: 1px solid ".concat(theme.borderColor, ";\n }\n\n &:active {\n background-color: ").concat(theme.activeBackgroundColor, ";\n border: 1px solid ").concat(theme.borderColor, ";\n }\n ");
|
|
45853
45859
|
});
|
|
45854
45860
|
var Title$2 = styled__default(Heading$1).withConfig({
|
|
45855
45861
|
displayName: "LinkCardstyled__Title",
|
|
45856
45862
|
componentId: "sc-l5q1h2-1"
|
|
45857
|
-
})(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;font-weight:", ";
|
|
45858
|
-
var
|
|
45859
|
-
theme =
|
|
45860
|
-
return
|
|
45863
|
+
})(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref3) {
|
|
45864
|
+
var isDisabled = _ref3.isDisabled,
|
|
45865
|
+
theme = _ref3.theme;
|
|
45866
|
+
return "color: ".concat(isDisabled ? theme.disabledColor : theme.color, ";");
|
|
45861
45867
|
});
|
|
45862
45868
|
var Subtitle = styled__default(Paragraph$1).withConfig({
|
|
45863
45869
|
displayName: "LinkCardstyled__Subtitle",
|
|
45864
45870
|
componentId: "sc-l5q1h2-2"
|
|
45865
|
-
})(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150%;letter-spacing:0.14px;font-weight:", ";
|
|
45866
|
-
var
|
|
45867
|
-
theme =
|
|
45868
|
-
return
|
|
45871
|
+
})(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150%;letter-spacing:0.14px;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref4) {
|
|
45872
|
+
var isDisabled = _ref4.isDisabled,
|
|
45873
|
+
theme = _ref4.theme;
|
|
45874
|
+
return "color: ".concat(isDisabled ? theme.disabledColor : theme.color, ";");
|
|
45869
45875
|
});
|
|
45870
45876
|
var Footer = styled__default(Stack).withConfig({
|
|
45871
45877
|
displayName: "LinkCardstyled__Footer",
|
|
@@ -45884,7 +45890,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45884
45890
|
leftContent = _ref.leftContent,
|
|
45885
45891
|
showRight = _ref.showRight,
|
|
45886
45892
|
rightContent = _ref.rightContent,
|
|
45887
|
-
|
|
45893
|
+
onClick = _ref.onClick,
|
|
45888
45894
|
_ref$extraStyles = _ref.extraStyles,
|
|
45889
45895
|
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
45890
45896
|
_ref$extraHoverStyles = _ref.extraHoverStyles,
|
|
@@ -45894,26 +45900,32 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45894
45900
|
themeValues = _ref.themeValues,
|
|
45895
45901
|
_ref$titleVariant = _ref.titleVariant,
|
|
45896
45902
|
titleVariant = _ref$titleVariant === void 0 ? "h3" : _ref$titleVariant,
|
|
45903
|
+
_ref$titlePadding = _ref.titlePadding,
|
|
45897
45904
|
_ref$disabled = _ref.disabled,
|
|
45898
45905
|
disabled = _ref$disabled === void 0 ? false : _ref$disabled,
|
|
45899
45906
|
_ref$isExternalLink = _ref.isExternalLink,
|
|
45900
45907
|
isExternalLink = _ref$isExternalLink === void 0 ? false : _ref$isExternalLink;
|
|
45908
|
+
var _useContext = React.useContext(styled.ThemeContext),
|
|
45909
|
+
isMobile = _useContext.isMobile;
|
|
45901
45910
|
var regex = /\W/g;
|
|
45902
45911
|
var locatorSlug = title === null || title === void 0 || (_title$toLowerCase = title.toLowerCase) === null || _title$toLowerCase === void 0 || (_title$toLowerCase = _title$toLowerCase.call(title)) === null || _title$toLowerCase === void 0 || (_title$toLowerCase$re = _title$toLowerCase.replaceAll) === null || _title$toLowerCase$re === void 0 ? void 0 : _title$toLowerCase$re.call(_title$toLowerCase, regex, "-");
|
|
45903
|
-
return /*#__PURE__*/React__default.createElement(
|
|
45904
|
-
|
|
45905
|
-
|
|
45906
|
-
|
|
45907
|
-
|
|
45908
|
-
|
|
45912
|
+
return /*#__PURE__*/React__default.createElement(Container, {
|
|
45913
|
+
borderRadius: "8px",
|
|
45914
|
+
dataQa: "link-card-".concat(locatorSlug),
|
|
45915
|
+
width: "100%",
|
|
45916
|
+
maxWidth: isMobile ? "100%" : "288px",
|
|
45917
|
+
minWidth: isMobile ? "240px" : "288px",
|
|
45918
|
+
minHeight: "141px",
|
|
45919
|
+
padding: "24px",
|
|
45920
|
+
theme: themeValues,
|
|
45921
|
+
extraStyles: extraStyles,
|
|
45922
|
+
hoverStyles: extraHoverStyles,
|
|
45923
|
+
activeStyles: extraActiveStyles,
|
|
45924
|
+
onClick: disabled ? noop$1 : onClick,
|
|
45909
45925
|
"aria-disabled": disabled,
|
|
45910
|
-
|
|
45911
|
-
|
|
45912
|
-
"
|
|
45913
|
-
$theme: themeValues,
|
|
45914
|
-
$extraStyles: disabled ? "pointer-events: none; ".concat(extraStyles) : extraStyles,
|
|
45915
|
-
$hoverStyles: extraHoverStyles,
|
|
45916
|
-
$activeStyles: extraActiveStyles
|
|
45926
|
+
isDisabled: disabled,
|
|
45927
|
+
role: "group",
|
|
45928
|
+
"aria-label": "".concat(title, ", ").concat(subtitle)
|
|
45917
45929
|
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
45918
45930
|
childGap: 0,
|
|
45919
45931
|
bottomItem: 3,
|
|
@@ -45928,9 +45940,9 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45928
45940
|
extraStyles: "align-items: center;"
|
|
45929
45941
|
}, /*#__PURE__*/React__default.createElement(Title$2, {
|
|
45930
45942
|
variant: titleVariant,
|
|
45931
|
-
|
|
45943
|
+
theme: themeValues,
|
|
45932
45944
|
margin: 0,
|
|
45933
|
-
|
|
45945
|
+
isDisabled: disabled
|
|
45934
45946
|
}, title), isExternalLink && /*#__PURE__*/React__default.createElement(ExternalLinkIcon, {
|
|
45935
45947
|
linkColor: themeValues.color,
|
|
45936
45948
|
text: locatorSlug,
|
|
@@ -45943,8 +45955,8 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45943
45955
|
width: "100%"
|
|
45944
45956
|
}, /*#__PURE__*/React__default.createElement(Subtitle, {
|
|
45945
45957
|
variant: "pS",
|
|
45946
|
-
|
|
45947
|
-
|
|
45958
|
+
theme: themeValues,
|
|
45959
|
+
isDisabled: disabled
|
|
45948
45960
|
}, subtitle)), /*#__PURE__*/React__default.createElement(Box, {
|
|
45949
45961
|
background: "transparent",
|
|
45950
45962
|
borderWidthOverride: "0 0 0 0",
|
|
@@ -48169,7 +48181,9 @@ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
|
48169
48181
|
_ref$modalTitle = _ref.modalTitle,
|
|
48170
48182
|
modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle,
|
|
48171
48183
|
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
48172
|
-
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele
|
|
48184
|
+
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele,
|
|
48185
|
+
_ref$isRequired = _ref.isRequired,
|
|
48186
|
+
isRequired = _ref$isRequired === void 0 ? false : _ref$isRequired;
|
|
48173
48187
|
var _useState = React.useState(false),
|
|
48174
48188
|
_useState2 = _slicedToArray(_useState, 2),
|
|
48175
48189
|
showTerms = _useState2[0],
|
|
@@ -48202,7 +48216,8 @@ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
|
48202
48216
|
onChange: onCheck,
|
|
48203
48217
|
checkboxMargin: checkboxMargin,
|
|
48204
48218
|
extraStyles: "align-self: flex-start;",
|
|
48205
|
-
labelledById: TermsAndConditionsTitleDivId
|
|
48219
|
+
labelledById: TermsAndConditionsTitleDivId,
|
|
48220
|
+
isRequired: isRequired
|
|
48206
48221
|
}), /*#__PURE__*/React__default.createElement(Stack, {
|
|
48207
48222
|
childGap: "0.25rem",
|
|
48208
48223
|
fullHeight: true
|
|
@@ -49360,7 +49375,8 @@ var RegistrationForm = function RegistrationForm(_ref) {
|
|
|
49360
49375
|
return e.key === "Enter" && handleSubmit(e);
|
|
49361
49376
|
},
|
|
49362
49377
|
autocompleteValue: "given-name",
|
|
49363
|
-
dataQa: "First name"
|
|
49378
|
+
dataQa: "First name",
|
|
49379
|
+
isRequired: true
|
|
49364
49380
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
49365
49381
|
labelTextWhenNoError: "Last name",
|
|
49366
49382
|
errorMessages: lastNameErrorMessages,
|
|
@@ -49371,7 +49387,8 @@ var RegistrationForm = function RegistrationForm(_ref) {
|
|
|
49371
49387
|
return e.key === "Enter" && handleSubmit(e);
|
|
49372
49388
|
},
|
|
49373
49389
|
autocompleteValue: "family-name",
|
|
49374
|
-
dataQa: "Last name"
|
|
49390
|
+
dataQa: "Last name",
|
|
49391
|
+
isRequired: true
|
|
49375
49392
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
49376
49393
|
labelTextWhenNoError: "Email address",
|
|
49377
49394
|
errorMessages: emailErrorMessages,
|
|
@@ -49384,7 +49401,8 @@ var RegistrationForm = function RegistrationForm(_ref) {
|
|
|
49384
49401
|
type: "email",
|
|
49385
49402
|
isEmail: true,
|
|
49386
49403
|
autocompleteValue: "email",
|
|
49387
|
-
dataQa: "Email address"
|
|
49404
|
+
dataQa: "Email address",
|
|
49405
|
+
isRequired: true
|
|
49388
49406
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
49389
49407
|
labelTextWhenNoError: "Password",
|
|
49390
49408
|
errorMessages: passwordErrorMessages,
|
|
@@ -49396,7 +49414,8 @@ var RegistrationForm = function RegistrationForm(_ref) {
|
|
|
49396
49414
|
},
|
|
49397
49415
|
type: "password",
|
|
49398
49416
|
autocompleteValue: "new-password",
|
|
49399
|
-
dataQa: "Password"
|
|
49417
|
+
dataQa: "Password",
|
|
49418
|
+
isRequired: true
|
|
49400
49419
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
49401
49420
|
labelTextWhenNoError: "Confirm password",
|
|
49402
49421
|
errorMessages: confirmPasswordErrorMessages,
|
|
@@ -49408,7 +49427,8 @@ var RegistrationForm = function RegistrationForm(_ref) {
|
|
|
49408
49427
|
},
|
|
49409
49428
|
type: "password",
|
|
49410
49429
|
autocompleteValue: "new-password",
|
|
49411
|
-
dataQa: "Confirm password"
|
|
49430
|
+
dataQa: "Confirm password",
|
|
49431
|
+
isRequired: true
|
|
49412
49432
|
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
49413
49433
|
padding: isMobile ? "0" : "0.5rem 0 0"
|
|
49414
49434
|
}, /*#__PURE__*/React__default.createElement(PasswordRequirements, {
|
|
@@ -50927,7 +50947,7 @@ var MultipleSelectFilter = function MultipleSelectFilter(_ref) {
|
|
|
50927
50947
|
var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$10);
|
|
50928
50948
|
|
|
50929
50949
|
var TextWrapStyles = styled.css(["word-wrap:break-word;overflow-wrap:break-word;white-space:normal;max-width:100%;"]);
|
|
50930
|
-
var Container = styled__default(Box).withConfig({
|
|
50950
|
+
var Container$1 = styled__default(Box).withConfig({
|
|
50931
50951
|
displayName: "ContactCardstyled__Container",
|
|
50932
50952
|
componentId: "sc-1v62a1n-0"
|
|
50933
50953
|
})(["height:fit-content;display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;", ""], function (_ref) {
|
|
@@ -50965,7 +50985,7 @@ var ContactCard = function ContactCard(_ref) {
|
|
|
50965
50985
|
externalLinkColor: ROYAL_BLUE_VIVID
|
|
50966
50986
|
};
|
|
50967
50987
|
var linkThemeValues = createThemeValues(themeContext, linkFallbackValues, "Link", linkVariant);
|
|
50968
|
-
return /*#__PURE__*/React__default.createElement(Container, {
|
|
50988
|
+
return /*#__PURE__*/React__default.createElement(Container$1, {
|
|
50969
50989
|
borderRadius: "8px",
|
|
50970
50990
|
background: WHITE,
|
|
50971
50991
|
boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.25)",
|
|
@@ -51479,12 +51499,12 @@ var TurnstileWidget = /*#__PURE__*/React.forwardRef(function (_ref4, ref) {
|
|
|
51479
51499
|
var hoverColor$6 = ROYAL_BLUE;
|
|
51480
51500
|
var activeColor$b = CONGRESS_BLUE;
|
|
51481
51501
|
var linkColor$6 = ROYAL_BLUE_VIVID;
|
|
51482
|
-
var textColor$
|
|
51502
|
+
var textColor$5 = CHARADE_GREY;
|
|
51483
51503
|
var fallbackValues$12 = {
|
|
51484
51504
|
linkColor: linkColor$6,
|
|
51485
51505
|
hoverColor: hoverColor$6,
|
|
51486
51506
|
activeColor: activeColor$b,
|
|
51487
|
-
textColor: textColor$
|
|
51507
|
+
textColor: textColor$5
|
|
51488
51508
|
};
|
|
51489
51509
|
|
|
51490
51510
|
var TOOLTIP_THEME_SOURCE = "Popover";
|