@thecb/components 11.7.0-beta.0 → 11.8.0-beta.0
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 +295 -120
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +295 -121
- package/dist/index.esm.js.map +1 -1
- package/package.json +3 -3
- package/src/components/atoms/alert/Alert.theme.js +5 -5
- package/src/components/atoms/display-card/DisplayCard.js +30 -0
- package/src/components/atoms/display-card/DisplayCard.stories.js +75 -0
- package/src/components/molecules/index.js +1 -0
- package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +4 -9
- package/src/components/molecules/tooltip/Tooltip.js +152 -0
- package/src/components/molecules/tooltip/Tooltip.mdx +15 -0
- package/src/components/molecules/tooltip/Tooltip.stories.js +210 -0
- package/src/components/molecules/tooltip/Tooltip.theme.js +9 -0
- package/src/components/molecules/tooltip/index.d.ts +31 -0
- package/src/components/molecules/tooltip/index.js +3 -0
- package/src/deprecated/icons/AlertInfoIcon.js +1 -1
- package/src/components/.DS_Store +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -19250,7 +19250,7 @@ var AlertInfoIcon = function AlertInfoIcon() {
|
|
|
19250
19250
|
xlinkHref: "#path-1"
|
|
19251
19251
|
})), /*#__PURE__*/React__default.createElement("use", {
|
|
19252
19252
|
id: "background-2",
|
|
19253
|
-
fill: "#
|
|
19253
|
+
fill: "#281978",
|
|
19254
19254
|
fillRule: "nonzero",
|
|
19255
19255
|
xlinkHref: "#path-1"
|
|
19256
19256
|
})))));
|
|
@@ -19401,13 +19401,13 @@ var AlertIcons = {
|
|
|
19401
19401
|
};
|
|
19402
19402
|
|
|
19403
19403
|
var background = {
|
|
19404
|
-
info: "".concat(
|
|
19404
|
+
info: "".concat(HAWKES_BLUE),
|
|
19405
19405
|
warn: "".concat(APRICOT_ORANGE),
|
|
19406
19406
|
error: "".concat(BLUSH_RED),
|
|
19407
19407
|
success: "".concat(HINT_GREEN)
|
|
19408
19408
|
};
|
|
19409
19409
|
var border$1 = {
|
|
19410
|
-
info: "".concat(
|
|
19410
|
+
info: "".concat(LUCKY_POINT),
|
|
19411
19411
|
warn: "".concat(ZEST_ORANGE),
|
|
19412
19412
|
error: "".concat(RAZZMATAZZ_RED),
|
|
19413
19413
|
success: "".concat(EMERALD_GREEN)
|
|
@@ -25529,6 +25529,153 @@ var Popover = function Popover(_ref) {
|
|
|
25529
25529
|
};
|
|
25530
25530
|
var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$m);
|
|
25531
25531
|
|
|
25532
|
+
var hoverColor$5 = "#116285";
|
|
25533
|
+
var activeColor$6 = "#0E506D";
|
|
25534
|
+
var tooltipTriggerColor = "#15749D";
|
|
25535
|
+
var fallbackValues$n = {
|
|
25536
|
+
hoverColor: hoverColor$5,
|
|
25537
|
+
activeColor: activeColor$6,
|
|
25538
|
+
tooltipTriggerColor: tooltipTriggerColor
|
|
25539
|
+
};
|
|
25540
|
+
|
|
25541
|
+
var arrowBorder$1 = function arrowBorder(borderColor, direction) {
|
|
25542
|
+
var width = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "8px";
|
|
25543
|
+
var angle = "".concat(width, " solid transparent");
|
|
25544
|
+
var straight = "".concat(width, " solid ").concat(borderColor);
|
|
25545
|
+
if (direction == "down") {
|
|
25546
|
+
return "border-left: ".concat(angle, "; border-right: ").concat(angle, "; border-top: ").concat(straight);
|
|
25547
|
+
} else if (direction == "up") {
|
|
25548
|
+
return "border-left: ".concat(angle, "; border-right: ").concat(angle, "; border-bottom: ").concat(straight);
|
|
25549
|
+
} else if (direction == "left") {
|
|
25550
|
+
return "border-top: ".concat(angle, "; border-bottom: ").concat(angle, "; border-right: ").concat(straight);
|
|
25551
|
+
} else if (direction == "right") {
|
|
25552
|
+
return "border-top: ".concat(angle, "; border-bottom: ").concat(angle, "; border-left: ").concat(straight);
|
|
25553
|
+
}
|
|
25554
|
+
};
|
|
25555
|
+
var Tooltip = function Tooltip(_ref) {
|
|
25556
|
+
var themeValues = _ref.themeValues,
|
|
25557
|
+
_ref$triggerText = _ref.triggerText,
|
|
25558
|
+
triggerText = _ref$triggerText === void 0 ? "" : _ref$triggerText,
|
|
25559
|
+
_ref$content = _ref.content,
|
|
25560
|
+
content = _ref$content === void 0 ? "" : _ref$content,
|
|
25561
|
+
_ref$hasIcon = _ref.hasIcon,
|
|
25562
|
+
hasIcon = _ref$hasIcon === void 0 ? false : _ref$hasIcon,
|
|
25563
|
+
Icon = _ref.icon,
|
|
25564
|
+
_ref$iconHelpText = _ref.iconHelpText,
|
|
25565
|
+
iconHelpText = _ref$iconHelpText === void 0 ? "" : _ref$iconHelpText,
|
|
25566
|
+
_ref$tooltipID = _ref.tooltipID,
|
|
25567
|
+
tooltipID = _ref$tooltipID === void 0 ? 0 : _ref$tooltipID,
|
|
25568
|
+
extraStyles = _ref.extraStyles,
|
|
25569
|
+
textExtraStyles = _ref.textExtraStyles,
|
|
25570
|
+
_ref$minWidth = _ref.minWidth,
|
|
25571
|
+
minWidth = _ref$minWidth === void 0 ? "250px" : _ref$minWidth,
|
|
25572
|
+
_ref$maxWidth = _ref.maxWidth,
|
|
25573
|
+
maxWidth = _ref$maxWidth === void 0 ? "300px" : _ref$maxWidth,
|
|
25574
|
+
_ref$height = _ref.height,
|
|
25575
|
+
height = _ref$height === void 0 ? "auto" : _ref$height,
|
|
25576
|
+
position = _ref.position,
|
|
25577
|
+
arrowPosition = _ref.arrowPosition,
|
|
25578
|
+
_ref$arrowDirection = _ref.arrowDirection,
|
|
25579
|
+
arrowDirection = _ref$arrowDirection === void 0 ? "down" : _ref$arrowDirection,
|
|
25580
|
+
_ref$transform = _ref.transform,
|
|
25581
|
+
transform = _ref$transform === void 0 ? "none" : _ref$transform,
|
|
25582
|
+
buttonExtraStyles = _ref.buttonExtraStyles,
|
|
25583
|
+
_ref$backgroundColor = _ref.backgroundColor,
|
|
25584
|
+
backgroundColor = _ref$backgroundColor === void 0 ? "white" : _ref$backgroundColor,
|
|
25585
|
+
_ref$borderColor = _ref.borderColor,
|
|
25586
|
+
borderColor = _ref$borderColor === void 0 ? "rgba(255, 255, 255, 0.85)" : _ref$borderColor,
|
|
25587
|
+
tooltipExtraStyles = _ref.tooltipExtraStyles;
|
|
25588
|
+
var hoverColor = themeValues.hoverColor,
|
|
25589
|
+
activeColor = themeValues.activeColor,
|
|
25590
|
+
tooltipTriggerColor = themeValues.tooltipTriggerColor;
|
|
25591
|
+
var _ref2 = position !== null && position !== void 0 ? position : {},
|
|
25592
|
+
_ref2$top = _ref2.top,
|
|
25593
|
+
top = _ref2$top === void 0 ? "-110px" : _ref2$top,
|
|
25594
|
+
_ref2$right = _ref2.right,
|
|
25595
|
+
right = _ref2$right === void 0 ? "auto" : _ref2$right,
|
|
25596
|
+
_ref2$bottom = _ref2.bottom,
|
|
25597
|
+
bottom = _ref2$bottom === void 0 ? "auto" : _ref2$bottom,
|
|
25598
|
+
_ref2$left = _ref2.left,
|
|
25599
|
+
left = _ref2$left === void 0 ? "-225px" : _ref2$left;
|
|
25600
|
+
var _ref3 = arrowPosition !== null && arrowPosition !== void 0 ? arrowPosition : {},
|
|
25601
|
+
_ref3$arrowTop = _ref3.arrowTop,
|
|
25602
|
+
arrowTop = _ref3$arrowTop === void 0 ? "auto" : _ref3$arrowTop,
|
|
25603
|
+
_ref3$arrowRight = _ref3.arrowRight,
|
|
25604
|
+
arrowRight = _ref3$arrowRight === void 0 ? "10px" : _ref3$arrowRight,
|
|
25605
|
+
_ref3$arrowBottom = _ref3.arrowBottom,
|
|
25606
|
+
arrowBottom = _ref3$arrowBottom === void 0 ? "-8px" : _ref3$arrowBottom,
|
|
25607
|
+
_ref3$arrowLeft = _ref3.arrowLeft,
|
|
25608
|
+
arrowLeft = _ref3$arrowLeft === void 0 ? "auto" : _ref3$arrowLeft;
|
|
25609
|
+
var _useState = React.useState(false),
|
|
25610
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
25611
|
+
tooltipOpen = _useState2[0],
|
|
25612
|
+
setTooltipOpen = _useState2[1];
|
|
25613
|
+
var handleToggleTooltip = function handleToggleTooltip(tooltipState) {
|
|
25614
|
+
if (tooltipOpen !== tooltipState) {
|
|
25615
|
+
setTooltipOpen(tooltipState);
|
|
25616
|
+
}
|
|
25617
|
+
};
|
|
25618
|
+
var triggerRef = useOutsideClickHook(function () {
|
|
25619
|
+
return handleToggleTooltip(false);
|
|
25620
|
+
});
|
|
25621
|
+
return /*#__PURE__*/React__default.createElement(Box, {
|
|
25622
|
+
padding: "0",
|
|
25623
|
+
extraStyles: "position: relative; ".concat(extraStyles)
|
|
25624
|
+
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
25625
|
+
action: function action() {
|
|
25626
|
+
return noop$1;
|
|
25627
|
+
},
|
|
25628
|
+
onFocus: function onFocus() {
|
|
25629
|
+
handleToggleTooltip(true);
|
|
25630
|
+
},
|
|
25631
|
+
onBlur: function onBlur() {
|
|
25632
|
+
handleToggleTooltip(false);
|
|
25633
|
+
},
|
|
25634
|
+
onKeyDown: function onKeyDown(e) {
|
|
25635
|
+
if (e.keyCode === ESCAPE) {
|
|
25636
|
+
handleToggleTooltip(false);
|
|
25637
|
+
}
|
|
25638
|
+
},
|
|
25639
|
+
onTouchStart: function onTouchStart() {
|
|
25640
|
+
return handleToggleTooltip(true);
|
|
25641
|
+
},
|
|
25642
|
+
onTouchEnd: function onTouchEnd() {
|
|
25643
|
+
return handleToggleTooltip(false);
|
|
25644
|
+
},
|
|
25645
|
+
onMouseEnter: function onMouseEnter() {
|
|
25646
|
+
return handleToggleTooltip(true);
|
|
25647
|
+
},
|
|
25648
|
+
onMouseLeave: function onMouseLeave() {
|
|
25649
|
+
return handleToggleTooltip(false);
|
|
25650
|
+
},
|
|
25651
|
+
contentOverride: true,
|
|
25652
|
+
variant: "smallGhost",
|
|
25653
|
+
tabIndex: "0",
|
|
25654
|
+
"aria-describedby": tooltipOpen ? "tooltip".concat(tooltipID) : undefined,
|
|
25655
|
+
ref: triggerRef,
|
|
25656
|
+
extraStyles: buttonExtraStyles
|
|
25657
|
+
}, hasIcon && /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(Icon, null), /*#__PURE__*/React__default.createElement(Box, {
|
|
25658
|
+
padding: "0",
|
|
25659
|
+
srOnly: true
|
|
25660
|
+
}, /*#__PURE__*/React__default.createElement(Text$1, null, iconHelpText))), !hasIcon && /*#__PURE__*/React__default.createElement(Text$1, {
|
|
25661
|
+
color: tooltipTriggerColor,
|
|
25662
|
+
extraStyles: "&:active { color: ".concat(activeColor, "; } &:hover { color: ").concat(hoverColor, " }; ").concat(textExtraStyles)
|
|
25663
|
+
}, triggerText)), /*#__PURE__*/React__default.createElement(Box, {
|
|
25664
|
+
background: backgroundColor,
|
|
25665
|
+
borderRadius: "4px",
|
|
25666
|
+
boxShadow: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
|
|
25667
|
+
id: "tooltip".concat(tooltipID),
|
|
25668
|
+
role: "tooltip",
|
|
25669
|
+
minWidth: minWidth,
|
|
25670
|
+
maxWidth: maxWidth,
|
|
25671
|
+
extraStyles: "\n display: ".concat(tooltipOpen ? "block" : "none", "; \n position: absolute; \n top: ").concat(top, "; \n right: ").concat(right, "; \n bottom: ").concat(bottom, "; \n left: ").concat(left, ";\n height: ").concat(height, ";\n transform: ").concat(transform, ";\n ").concat(tooltipExtraStyles, ";\n ")
|
|
25672
|
+
}, /*#__PURE__*/React__default.createElement(Paragraph$1, null, content), /*#__PURE__*/React__default.createElement(Box, {
|
|
25673
|
+
padding: "0",
|
|
25674
|
+
extraStyles: "\n position: absolute;\n content: \"\";\n width: 0;\n height: 0;\n ".concat(arrowBorder$1(borderColor, arrowDirection, "8px"), ";\n filter: drop-shadow(2px 8px 14px black);\n bottom: ").concat(arrowBottom, ";\n right: ").concat(arrowRight, ";\n top: ").concat(arrowTop, ";\n left: ").concat(arrowLeft, ";\n ")
|
|
25675
|
+
})));
|
|
25676
|
+
};
|
|
25677
|
+
var Tooltip$1 = themeComponent(Tooltip, "Tooltip", fallbackValues$n);
|
|
25678
|
+
|
|
25532
25679
|
var DisplayCard = function DisplayCard(_ref) {
|
|
25533
25680
|
var title = _ref.title,
|
|
25534
25681
|
item = _ref.item,
|
|
@@ -25538,6 +25685,30 @@ var DisplayCard = function DisplayCard(_ref) {
|
|
|
25538
25685
|
_ref$link = _ref.link,
|
|
25539
25686
|
link = _ref$link === void 0 ? false : _ref$link,
|
|
25540
25687
|
helpText = _ref.helpText,
|
|
25688
|
+
_ref$hasTooltip = _ref.hasTooltip,
|
|
25689
|
+
hasTooltip = _ref$hasTooltip === void 0 ? false : _ref$hasTooltip,
|
|
25690
|
+
_ref$tooltipTriggerTe = _ref.tooltipTriggerText,
|
|
25691
|
+
tooltipTriggerText = _ref$tooltipTriggerTe === void 0 ? "" : _ref$tooltipTriggerTe,
|
|
25692
|
+
_ref$tooltipContent = _ref.tooltipContent,
|
|
25693
|
+
tooltipContent = _ref$tooltipContent === void 0 ? "" : _ref$tooltipContent,
|
|
25694
|
+
_ref$tooltipPosition = _ref.tooltipPosition,
|
|
25695
|
+
tooltipPosition = _ref$tooltipPosition === void 0 ? {
|
|
25696
|
+
top: "auto",
|
|
25697
|
+
bottom: "calc(100% + 0.25rem)",
|
|
25698
|
+
left: "auto",
|
|
25699
|
+
right: "0"
|
|
25700
|
+
} : _ref$tooltipPosition,
|
|
25701
|
+
_ref$tooltipArrowPosi = _ref.tooltipArrowPosition,
|
|
25702
|
+
tooltipArrowPosition = _ref$tooltipArrowPosi === void 0 ? {
|
|
25703
|
+
arrowBottom: "-0.5rem",
|
|
25704
|
+
arrowRight: "0.625rem",
|
|
25705
|
+
arrowTop: "auto",
|
|
25706
|
+
arrowLeft: "auto"
|
|
25707
|
+
} : _ref$tooltipArrowPosi,
|
|
25708
|
+
tooltipArrowDirection = _ref.tooltipArrowDirection,
|
|
25709
|
+
tooltipExtraStyles = _ref.tooltipExtraStyles,
|
|
25710
|
+
_ref$tooltipTextExtra = _ref.tooltipTextExtraStyles,
|
|
25711
|
+
tooltipTextExtraStyles = _ref$tooltipTextExtra === void 0 ? "max-width: 300px;" : _ref$tooltipTextExtra,
|
|
25541
25712
|
_ref$hasPopover = _ref.hasPopover,
|
|
25542
25713
|
hasPopover = _ref$hasPopover === void 0 ? false : _ref$hasPopover,
|
|
25543
25714
|
_ref$popoverTriggerTe = _ref.popoverTriggerText,
|
|
@@ -25565,6 +25736,14 @@ var DisplayCard = function DisplayCard(_ref) {
|
|
|
25565
25736
|
content: popoverContent,
|
|
25566
25737
|
popoverExtraStyles: popoverExtraStyles,
|
|
25567
25738
|
popoverTextExtraStyles: popoverTextExtraStyles
|
|
25739
|
+
}), hasTooltip && /*#__PURE__*/React__default.createElement(Tooltip$1, {
|
|
25740
|
+
triggerText: tooltipTriggerText,
|
|
25741
|
+
content: tooltipContent,
|
|
25742
|
+
textExtraStyles: tooltipTextExtraStyles,
|
|
25743
|
+
position: tooltipPosition,
|
|
25744
|
+
arrowPosition: tooltipArrowPosition,
|
|
25745
|
+
arrowDirection: tooltipArrowDirection,
|
|
25746
|
+
tooltipExtraStyles: tooltipExtraStyles
|
|
25568
25747
|
}))), /*#__PURE__*/React__default.createElement(Box, {
|
|
25569
25748
|
padding: "0"
|
|
25570
25749
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
@@ -25927,7 +26106,7 @@ var hoverFocusStyles$1 = {
|
|
|
25927
26106
|
var formFooterPanel = {
|
|
25928
26107
|
"default": "".concat(INFO_BLUE)
|
|
25929
26108
|
};
|
|
25930
|
-
var fallbackValues$
|
|
26109
|
+
var fallbackValues$o = {
|
|
25931
26110
|
linkColor: linkColor$2,
|
|
25932
26111
|
formBackgroundColor: formBackgroundColor$1,
|
|
25933
26112
|
inputBackgroundColor: inputBackgroundColor$1,
|
|
@@ -26184,7 +26363,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
26184
26363
|
padding: "0 0 0 auto"
|
|
26185
26364
|
}, decorator)));
|
|
26186
26365
|
};
|
|
26187
|
-
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$
|
|
26366
|
+
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$o, "default");
|
|
26188
26367
|
|
|
26189
26368
|
var _excluded$A = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
|
|
26190
26369
|
var FormInputRow = function FormInputRow(_ref) {
|
|
@@ -26232,7 +26411,7 @@ var FormContainer = function FormContainer(_ref) {
|
|
|
26232
26411
|
borderRadius: "4px"
|
|
26233
26412
|
}, rest), children);
|
|
26234
26413
|
};
|
|
26235
|
-
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$
|
|
26414
|
+
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$o, "default");
|
|
26236
26415
|
|
|
26237
26416
|
var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
26238
26417
|
var themeValues = _ref.themeValues,
|
|
@@ -26253,7 +26432,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
|
26253
26432
|
text: linkText
|
|
26254
26433
|
})));
|
|
26255
26434
|
};
|
|
26256
|
-
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$
|
|
26435
|
+
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$o, "default");
|
|
26257
26436
|
|
|
26258
26437
|
var _excluded$D = ["ariaLabelledBy", "labelDisplayOverride", "labelTextWhenNoError", "errorMessages", "helperModal", "field", "fieldActions", "showErrors", "themeValues", "customHeight", "extraStyles", "removeFromValue", "dataQa", "isRequired", "errorFieldExtraStyles", "showFieldErrorRow", "labelTextVariant", "errorTextVariant", "resize", "rows", "cols", "placeholder", "maxLength"];
|
|
26259
26438
|
var TextareaField = styled__default.textarea.withConfig({
|
|
@@ -26389,7 +26568,7 @@ var FormTextarea = function FormTextarea(_ref8) {
|
|
|
26389
26568
|
extraStyles: "height: ".concat(themeValues.lineHeight, "; ").concat(errorFieldExtraStyles, ";")
|
|
26390
26569
|
})));
|
|
26391
26570
|
};
|
|
26392
|
-
var FormTextarea$1 = themeComponent(FormTextarea, "FormTextarea", fallbackValues$
|
|
26571
|
+
var FormTextarea$1 = themeComponent(FormTextarea, "FormTextarea", fallbackValues$o, "default");
|
|
26393
26572
|
|
|
26394
26573
|
var fontSize$7 = {
|
|
26395
26574
|
"default": "1rem",
|
|
@@ -26403,7 +26582,7 @@ var color$9 = {
|
|
|
26403
26582
|
"default": "".concat(CHARADE_GREY),
|
|
26404
26583
|
radio: "".concat(MINESHAFT_GREY)
|
|
26405
26584
|
};
|
|
26406
|
-
var fallbackValues$
|
|
26585
|
+
var fallbackValues$p = {
|
|
26407
26586
|
fontSize: fontSize$7,
|
|
26408
26587
|
padding: padding$1,
|
|
26409
26588
|
color: color$9
|
|
@@ -26445,11 +26624,11 @@ var FormattedAddress = function FormattedAddress(_ref) {
|
|
|
26445
26624
|
dataQa: "".concat(qaPrefix, "-3")
|
|
26446
26625
|
}, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
|
|
26447
26626
|
};
|
|
26448
|
-
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$
|
|
26627
|
+
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$p, "default");
|
|
26449
26628
|
|
|
26450
26629
|
var textColor$1 = "".concat(CHARADE_GREY);
|
|
26451
26630
|
var autopayTextColor = "".concat(REGENT_GREY);
|
|
26452
|
-
var fallbackValues$
|
|
26631
|
+
var fallbackValues$q = {
|
|
26453
26632
|
textColor: textColor$1,
|
|
26454
26633
|
autopayTextColor: autopayTextColor
|
|
26455
26634
|
};
|
|
@@ -26487,11 +26666,11 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
|
|
|
26487
26666
|
extraStyles: "font-style: italic;"
|
|
26488
26667
|
}, "Autopay Enabled")));
|
|
26489
26668
|
};
|
|
26490
|
-
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$
|
|
26669
|
+
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$q);
|
|
26491
26670
|
|
|
26492
26671
|
var textColor$2 = "".concat(CHARADE_GREY);
|
|
26493
26672
|
var autopayTextColor$1 = "".concat(REGENT_GREY);
|
|
26494
|
-
var fallbackValues$
|
|
26673
|
+
var fallbackValues$r = {
|
|
26495
26674
|
textColor: textColor$2,
|
|
26496
26675
|
autopayTextColor: autopayTextColor$1
|
|
26497
26676
|
};
|
|
@@ -26583,7 +26762,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
26583
26762
|
extraStyles: "font-style: italic;"
|
|
26584
26763
|
}, "Autopay Enabled")));
|
|
26585
26764
|
};
|
|
26586
|
-
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$
|
|
26765
|
+
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$r);
|
|
26587
26766
|
|
|
26588
26767
|
var Hamburger = styled__default.button.withConfig({
|
|
26589
26768
|
displayName: "HamburgerButton__Hamburger",
|
|
@@ -26664,7 +26843,7 @@ var fontSize$8 = {
|
|
|
26664
26843
|
h5: "1.375rem",
|
|
26665
26844
|
h6: "1.25rem"
|
|
26666
26845
|
};
|
|
26667
|
-
var fallbackValues$
|
|
26846
|
+
var fallbackValues$s = {
|
|
26668
26847
|
fontFamily: fontFamily$5,
|
|
26669
26848
|
fontSize: fontSize$8
|
|
26670
26849
|
};
|
|
@@ -26703,7 +26882,7 @@ var Heading = function Heading(_ref) {
|
|
|
26703
26882
|
"data-qa": dataQa
|
|
26704
26883
|
}, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
26705
26884
|
};
|
|
26706
|
-
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$
|
|
26885
|
+
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$s, "h1");
|
|
26707
26886
|
|
|
26708
26887
|
var Image = styled__default.img.withConfig({
|
|
26709
26888
|
displayName: "ImageBoxstyled__Image",
|
|
@@ -26759,7 +26938,7 @@ var ImageBox = function ImageBox(_ref) {
|
|
|
26759
26938
|
};
|
|
26760
26939
|
|
|
26761
26940
|
var color$a = "#15749D";
|
|
26762
|
-
var fallbackValues$
|
|
26941
|
+
var fallbackValues$t = {
|
|
26763
26942
|
color: color$a
|
|
26764
26943
|
};
|
|
26765
26944
|
|
|
@@ -26825,7 +27004,7 @@ var Spinner$1 = function Spinner(_ref6) {
|
|
|
26825
27004
|
strokeWidth: strokeWidth
|
|
26826
27005
|
})));
|
|
26827
27006
|
};
|
|
26828
|
-
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$
|
|
27007
|
+
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$t);
|
|
26829
27008
|
|
|
26830
27009
|
var Jumbo = function Jumbo(_ref) {
|
|
26831
27010
|
var showButton = _ref.showButton,
|
|
@@ -26917,7 +27096,7 @@ var fontWeight$5 = {
|
|
|
26917
27096
|
// fontsize Detail regular
|
|
26918
27097
|
large: "700" // fontsize Title small
|
|
26919
27098
|
};
|
|
26920
|
-
var fallbackValues$
|
|
27099
|
+
var fallbackValues$u = {
|
|
26921
27100
|
fontWeight: fontWeight$5
|
|
26922
27101
|
};
|
|
26923
27102
|
|
|
@@ -26976,7 +27155,7 @@ var LabeledAmount = function LabeledAmount(_ref) {
|
|
|
26976
27155
|
var LabeledAmountComponent = version === "v1" ? LabeledAmountV1 : LabeledAmountV2;
|
|
26977
27156
|
return /*#__PURE__*/React__default.createElement(LabeledAmountComponent, rest);
|
|
26978
27157
|
};
|
|
26979
|
-
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$
|
|
27158
|
+
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$u, "default");
|
|
26980
27159
|
|
|
26981
27160
|
var weightTitle = {
|
|
26982
27161
|
"default": "600",
|
|
@@ -26986,7 +27165,7 @@ var detailVariant = {
|
|
|
26986
27165
|
"default": "large",
|
|
26987
27166
|
small: "small"
|
|
26988
27167
|
};
|
|
26989
|
-
var fallbackValues$
|
|
27168
|
+
var fallbackValues$v = {
|
|
26990
27169
|
weightTitle: weightTitle,
|
|
26991
27170
|
detailVariant: detailVariant
|
|
26992
27171
|
};
|
|
@@ -27034,7 +27213,7 @@ var LineItem = function LineItem(_ref) {
|
|
|
27034
27213
|
childGap: "0.25rem"
|
|
27035
27214
|
}, visibleCustomAttrs));
|
|
27036
27215
|
};
|
|
27037
|
-
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$
|
|
27216
|
+
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$v, "default");
|
|
27038
27217
|
|
|
27039
27218
|
var Loading = function Loading() {
|
|
27040
27219
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
@@ -27294,7 +27473,7 @@ var height$1 = {
|
|
|
27294
27473
|
"default": "3rem",
|
|
27295
27474
|
large: "192px"
|
|
27296
27475
|
};
|
|
27297
|
-
var fallbackValues$
|
|
27476
|
+
var fallbackValues$w = {
|
|
27298
27477
|
color: color$b,
|
|
27299
27478
|
height: height$1
|
|
27300
27479
|
};
|
|
@@ -27436,12 +27615,12 @@ var Placeholder = function Placeholder(_ref4) {
|
|
|
27436
27615
|
extraStyles: "padding: 0 0 0 8px; text-align: center;"
|
|
27437
27616
|
}, text)))))))))));
|
|
27438
27617
|
};
|
|
27439
|
-
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$
|
|
27618
|
+
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$w, "default");
|
|
27440
27619
|
|
|
27441
27620
|
var backgroundColor$5 = {
|
|
27442
27621
|
"default": "".concat(WHITE)
|
|
27443
27622
|
};
|
|
27444
|
-
var fallbackValues$
|
|
27623
|
+
var fallbackValues$x = {
|
|
27445
27624
|
backgroundColor: backgroundColor$5
|
|
27446
27625
|
};
|
|
27447
27626
|
|
|
@@ -27468,13 +27647,13 @@ var ProcessingFee = function ProcessingFee(_ref) {
|
|
|
27468
27647
|
showQuitLink: false
|
|
27469
27648
|
}));
|
|
27470
27649
|
};
|
|
27471
|
-
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$
|
|
27650
|
+
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$x, "default");
|
|
27472
27651
|
|
|
27473
|
-
var activeColor$
|
|
27652
|
+
var activeColor$7 = MATISSE_BLUE;
|
|
27474
27653
|
var disabledColor$1 = MANATEE_GREY;
|
|
27475
27654
|
var inactiveBorderColor = GREY_CHATEAU;
|
|
27476
|
-
var fallbackValues$
|
|
27477
|
-
activeColor: activeColor$
|
|
27655
|
+
var fallbackValues$y = {
|
|
27656
|
+
activeColor: activeColor$7,
|
|
27478
27657
|
disabledColor: disabledColor$1,
|
|
27479
27658
|
inactiveBorderColor: inactiveBorderColor
|
|
27480
27659
|
};
|
|
@@ -27560,12 +27739,12 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
|
|
|
27560
27739
|
borderColor: themeValues.inactiveBorderColor
|
|
27561
27740
|
}), labelText));
|
|
27562
27741
|
};
|
|
27563
|
-
var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$
|
|
27742
|
+
var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$y);
|
|
27564
27743
|
|
|
27565
|
-
var activeColor$
|
|
27744
|
+
var activeColor$8 = "".concat(MATISSE_BLUE);
|
|
27566
27745
|
var inactiveColor$1 = "".concat(STORM_GREY);
|
|
27567
|
-
var fallbackValues$
|
|
27568
|
-
activeColor: activeColor$
|
|
27746
|
+
var fallbackValues$z = {
|
|
27747
|
+
activeColor: activeColor$8,
|
|
27569
27748
|
inactiveColor: inactiveColor$1
|
|
27570
27749
|
};
|
|
27571
27750
|
|
|
@@ -27673,11 +27852,11 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
27673
27852
|
borderRadius: "8px"
|
|
27674
27853
|
})));
|
|
27675
27854
|
};
|
|
27676
|
-
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$
|
|
27855
|
+
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$z);
|
|
27677
27856
|
|
|
27678
27857
|
var searchIconColor = WHITE;
|
|
27679
27858
|
var searchIconBackgroundColor = MATISSE_BLUE;
|
|
27680
|
-
var fallbackValues$
|
|
27859
|
+
var fallbackValues$A = {
|
|
27681
27860
|
searchIconColor: searchIconColor,
|
|
27682
27861
|
searchIconBackgroundColor: searchIconBackgroundColor
|
|
27683
27862
|
};
|
|
@@ -27775,12 +27954,12 @@ var Search = function Search(_ref) {
|
|
|
27775
27954
|
size: 24
|
|
27776
27955
|
})));
|
|
27777
27956
|
};
|
|
27778
|
-
var Search$1 = themeComponent(Search, "Search", fallbackValues$
|
|
27957
|
+
var Search$1 = themeComponent(Search, "Search", fallbackValues$A);
|
|
27779
27958
|
|
|
27780
27959
|
var border$2 = {
|
|
27781
27960
|
"default": "1px solid #caced8"
|
|
27782
27961
|
};
|
|
27783
|
-
var fallbackValues$
|
|
27962
|
+
var fallbackValues$B = {
|
|
27784
27963
|
border: border$2
|
|
27785
27964
|
};
|
|
27786
27965
|
|
|
@@ -27853,7 +28032,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
27853
28032
|
});
|
|
27854
28033
|
}))));
|
|
27855
28034
|
};
|
|
27856
|
-
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$
|
|
28035
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$B, "default");
|
|
27857
28036
|
|
|
27858
28037
|
var borderColor$4 = {
|
|
27859
28038
|
"default": "".concat(GREY_CHATEAU)
|
|
@@ -27861,7 +28040,7 @@ var borderColor$4 = {
|
|
|
27861
28040
|
var borderSize = {
|
|
27862
28041
|
"default": "1px"
|
|
27863
28042
|
};
|
|
27864
|
-
var fallbackValues$
|
|
28043
|
+
var fallbackValues$C = {
|
|
27865
28044
|
borderColor: borderColor$4,
|
|
27866
28045
|
borderSize: borderSize
|
|
27867
28046
|
};
|
|
@@ -27879,7 +28058,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
27879
28058
|
borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
|
|
27880
28059
|
});
|
|
27881
28060
|
};
|
|
27882
|
-
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$
|
|
28061
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$C, "default");
|
|
27883
28062
|
|
|
27884
28063
|
var placeHolderOptionUS = {
|
|
27885
28064
|
text: "Please select state",
|
|
@@ -38474,7 +38653,7 @@ var white = "".concat(WHITE);
|
|
|
38474
38653
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
38475
38654
|
var rightLabelStyles = "\n > div {\n flex-direction: row;\n }\n";
|
|
38476
38655
|
var leftLabelStyles = "\n > div {\n flex-direction: row-reverse;\n }\n";
|
|
38477
|
-
var fallbackValues$
|
|
38656
|
+
var fallbackValues$D = {
|
|
38478
38657
|
onBackground: onBackground,
|
|
38479
38658
|
disabledBackground: disabledBackground,
|
|
38480
38659
|
disabledBackgroundLight: disabledBackgroundLight,
|
|
@@ -38646,7 +38825,7 @@ var ToggleSwitch = function ToggleSwitch(_ref10) {
|
|
|
38646
38825
|
padding: "0"
|
|
38647
38826
|
}, label))));
|
|
38648
38827
|
};
|
|
38649
|
-
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$
|
|
38828
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$D);
|
|
38650
38829
|
|
|
38651
38830
|
var background$2 = "".concat(ATHENS_GREY);
|
|
38652
38831
|
var white$1 = "".concat(WHITE);
|
|
@@ -38693,7 +38872,7 @@ var imageBackgroundColor = INFO_BLUE;
|
|
|
38693
38872
|
var headerBackgroundColor = STORM_GREY;
|
|
38694
38873
|
var headerColor = WHITE;
|
|
38695
38874
|
var contentBackgroundColor = INFO_BLUE;
|
|
38696
|
-
var fallbackValues$
|
|
38875
|
+
var fallbackValues$E = {
|
|
38697
38876
|
backgroundColor: backgroundColor$6,
|
|
38698
38877
|
contentBackgroundColor: contentBackgroundColor,
|
|
38699
38878
|
imageBackgroundColor: imageBackgroundColor,
|
|
@@ -38718,7 +38897,7 @@ var CardImage = styled__default.img.withConfig({
|
|
|
38718
38897
|
var titleColor = BRIGHT_GREY;
|
|
38719
38898
|
var titleWeight = FONT_WEIGHT_BOLD;
|
|
38720
38899
|
var textColor$3 = BRIGHT_GREY;
|
|
38721
|
-
var fallbackValues$
|
|
38900
|
+
var fallbackValues$F = {
|
|
38722
38901
|
titleColor: titleColor,
|
|
38723
38902
|
titleWeight: titleWeight,
|
|
38724
38903
|
textColor: textColor$3
|
|
@@ -38763,7 +38942,7 @@ var CardText = function CardText(_ref) {
|
|
|
38763
38942
|
color: themeValues.textColor
|
|
38764
38943
|
}, text))));
|
|
38765
38944
|
};
|
|
38766
|
-
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$
|
|
38945
|
+
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$F);
|
|
38767
38946
|
|
|
38768
38947
|
var CardHeader = function CardHeader(_ref) {
|
|
38769
38948
|
var backgroundColor = _ref.backgroundColor,
|
|
@@ -38879,14 +39058,14 @@ var Card = function Card(_ref) {
|
|
|
38879
39058
|
titleVariant: titleVariant
|
|
38880
39059
|
}), children)))));
|
|
38881
39060
|
};
|
|
38882
|
-
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$
|
|
39061
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$E);
|
|
38883
39062
|
|
|
38884
39063
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
38885
|
-
var activeColor$
|
|
39064
|
+
var activeColor$9 = MATISSE_BLUE;
|
|
38886
39065
|
var linkColor$3 = CHARADE_GREY;
|
|
38887
|
-
var fallbackValues$
|
|
39066
|
+
var fallbackValues$G = {
|
|
38888
39067
|
fontFamily: fontFamily$6,
|
|
38889
|
-
activeColor: activeColor$
|
|
39068
|
+
activeColor: activeColor$9,
|
|
38890
39069
|
linkColor: linkColor$3
|
|
38891
39070
|
};
|
|
38892
39071
|
|
|
@@ -38913,7 +39092,7 @@ var NavTab = function NavTab(_ref) {
|
|
|
38913
39092
|
extraStyles: "\n border-bottom: 3px solid transparent;\n font-family: ".concat(themeValues.fontFamily, ";\n text-decoration: none;\n ").concat(isActive && !isMobile ? border : "none", ";\n &:hover {\n text-decoration: none;\n color: ").concat(themeValues.activeColor, ";\n ").concat(isMobile ? "" : "".concat(border), "\n };\n padding: 1.25rem 0;\n ")
|
|
38914
39093
|
}, label));
|
|
38915
39094
|
};
|
|
38916
|
-
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$
|
|
39095
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$G);
|
|
38917
39096
|
|
|
38918
39097
|
var NavTabs = function NavTabs(_ref) {
|
|
38919
39098
|
var tabsConfig = _ref.tabsConfig,
|
|
@@ -39041,7 +39220,7 @@ var backgroundColor$7 = {
|
|
|
39041
39220
|
largeTitle: WHITE,
|
|
39042
39221
|
small: WHITE
|
|
39043
39222
|
};
|
|
39044
|
-
var fallbackValues$
|
|
39223
|
+
var fallbackValues$H = {
|
|
39045
39224
|
fontSize: fontSize$9,
|
|
39046
39225
|
fontWeight: fontWeight$6,
|
|
39047
39226
|
fontColor: fontColor,
|
|
@@ -39121,7 +39300,7 @@ var Module = function Module(_ref) {
|
|
|
39121
39300
|
boxShadow: themeValues.boxShadow
|
|
39122
39301
|
}, children)));
|
|
39123
39302
|
};
|
|
39124
|
-
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$
|
|
39303
|
+
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$H, "default"));
|
|
39125
39304
|
|
|
39126
39305
|
var WalletName = function WalletName(_ref) {
|
|
39127
39306
|
var mainText = _ref.mainText,
|
|
@@ -40101,7 +40280,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
|
|
|
40101
40280
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
40102
40281
|
|
|
40103
40282
|
var backgroundColor$8 = "#ebeffb";
|
|
40104
|
-
var fallbackValues$
|
|
40283
|
+
var fallbackValues$I = {
|
|
40105
40284
|
backgroundColor: backgroundColor$8
|
|
40106
40285
|
};
|
|
40107
40286
|
|
|
@@ -40150,7 +40329,7 @@ var Banner = function Banner(_ref) {
|
|
|
40150
40329
|
extraStyles: isMobile && "> svg { width: 176px; }"
|
|
40151
40330
|
}, /*#__PURE__*/React__default.createElement(Image, null))));
|
|
40152
40331
|
};
|
|
40153
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
40332
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$I);
|
|
40154
40333
|
|
|
40155
40334
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
40156
40335
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -40284,7 +40463,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
40284
40463
|
var titleColor$1 = "#292A33";
|
|
40285
40464
|
var headingBackgroundColor = "transparent";
|
|
40286
40465
|
var bodyBackgroundColor = "transparent";
|
|
40287
|
-
var fallbackValues$
|
|
40466
|
+
var fallbackValues$J = {
|
|
40288
40467
|
titleColor: titleColor$1,
|
|
40289
40468
|
headingBackgroundColor: headingBackgroundColor,
|
|
40290
40469
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -40409,7 +40588,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
40409
40588
|
"aria-labelledby": "".concat(id, "-button")
|
|
40410
40589
|
}, children))));
|
|
40411
40590
|
};
|
|
40412
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
40591
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$J);
|
|
40413
40592
|
|
|
40414
40593
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
40415
40594
|
var themeValues = _ref.themeValues;
|
|
@@ -40989,7 +41168,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
40989
41168
|
|
|
40990
41169
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
40991
41170
|
var subfooterBackgroundColor = STORM_GREY;
|
|
40992
|
-
var fallbackValues$
|
|
41171
|
+
var fallbackValues$K = {
|
|
40993
41172
|
footerBackgroundColor: footerBackgroundColor,
|
|
40994
41173
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
40995
41174
|
};
|
|
@@ -41020,7 +41199,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
41020
41199
|
rightContent: rightSubfooterContent
|
|
41021
41200
|
}));
|
|
41022
41201
|
};
|
|
41023
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
41202
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$K);
|
|
41024
41203
|
|
|
41025
41204
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
41026
41205
|
var fields = _ref.fields,
|
|
@@ -41067,7 +41246,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
|
41067
41246
|
|
|
41068
41247
|
var textColor$4 = "#ffffff";
|
|
41069
41248
|
var backgroundColor$9 = "#182848";
|
|
41070
|
-
var fallbackValues$
|
|
41249
|
+
var fallbackValues$L = {
|
|
41071
41250
|
textColor: textColor$4,
|
|
41072
41251
|
backgroundColor: backgroundColor$9
|
|
41073
41252
|
};
|
|
@@ -41126,7 +41305,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
41126
41305
|
}, t));
|
|
41127
41306
|
}), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
|
|
41128
41307
|
};
|
|
41129
|
-
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
41308
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$L);
|
|
41130
41309
|
|
|
41131
41310
|
/** @license React v16.13.1
|
|
41132
41311
|
* react-is.production.min.js
|
|
@@ -45584,7 +45763,7 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
|
45584
45763
|
var backgroundColor$a = LINK_WATER;
|
|
45585
45764
|
var borderColor$5 = MOON_RAKER;
|
|
45586
45765
|
var color$c = ROYAL_BLUE_VIVID;
|
|
45587
|
-
var fallbackValues$
|
|
45766
|
+
var fallbackValues$M = {
|
|
45588
45767
|
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
45589
45768
|
disabledBorderColor: disabledBorderColor$1,
|
|
45590
45769
|
disabledColor: disabledColor$2,
|
|
@@ -45719,7 +45898,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
45719
45898
|
extraStyles: "margin-right: auto;"
|
|
45720
45899
|
}), showRight && !!rightContent && rightContent))));
|
|
45721
45900
|
};
|
|
45722
|
-
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$
|
|
45901
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$M, "primary");
|
|
45723
45902
|
|
|
45724
45903
|
var LoginForm = function LoginForm(_ref) {
|
|
45725
45904
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -45791,7 +45970,7 @@ var shadowColor = {
|
|
|
45791
45970
|
profile: "#292A33",
|
|
45792
45971
|
cms: "#292A33"
|
|
45793
45972
|
};
|
|
45794
|
-
var fallbackValues$
|
|
45973
|
+
var fallbackValues$N = {
|
|
45795
45974
|
backgroundColor: backgroundColor$b,
|
|
45796
45975
|
shadowColor: shadowColor
|
|
45797
45976
|
};
|
|
@@ -45831,7 +46010,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
45831
46010
|
onBlur: onBlur
|
|
45832
46011
|
}, menuContent));
|
|
45833
46012
|
};
|
|
45834
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46013
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$N, "profile");
|
|
45835
46014
|
|
|
45836
46015
|
var menuVariants = {
|
|
45837
46016
|
invisible: {
|
|
@@ -45883,7 +46062,7 @@ var NavMenuMobile = function NavMenuMobile(_ref3) {
|
|
|
45883
46062
|
background: themeValues.backgroundColor
|
|
45884
46063
|
}, menuContent));
|
|
45885
46064
|
};
|
|
45886
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46065
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$N, "profile");
|
|
45887
46066
|
|
|
45888
46067
|
var IconsModule = function IconsModule(_ref) {
|
|
45889
46068
|
var icon = _ref.icon,
|
|
@@ -46496,7 +46675,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
46496
46675
|
};
|
|
46497
46676
|
|
|
46498
46677
|
var iconColor = ROYAL_BLUE_VIVID;
|
|
46499
|
-
var fallbackValues$
|
|
46678
|
+
var fallbackValues$O = {
|
|
46500
46679
|
iconColor: iconColor
|
|
46501
46680
|
};
|
|
46502
46681
|
|
|
@@ -46837,7 +47016,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
46837
47016
|
}))));
|
|
46838
47017
|
return isLoading ? loadingObligation : inactive ? inactiveObligation : activeObligation;
|
|
46839
47018
|
};
|
|
46840
|
-
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$
|
|
47019
|
+
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$O);
|
|
46841
47020
|
|
|
46842
47021
|
var weightTitle$1 = {
|
|
46843
47022
|
"default": "600",
|
|
@@ -46847,7 +47026,7 @@ var detailVariant$1 = {
|
|
|
46847
47026
|
"default": "large",
|
|
46848
47027
|
small: "small"
|
|
46849
47028
|
};
|
|
46850
|
-
var fallbackValues$
|
|
47029
|
+
var fallbackValues$P = {
|
|
46851
47030
|
weightTitle: weightTitle$1,
|
|
46852
47031
|
detailVariant: detailVariant$1
|
|
46853
47032
|
};
|
|
@@ -46904,7 +47083,7 @@ var PartialAmountField = function PartialAmountField(_ref) {
|
|
|
46904
47083
|
function arePropsEqual(prevProps, nextProps) {
|
|
46905
47084
|
return equals(prevProps.errorMessages, nextProps.errorMessages) && equals(prevProps.field, nextProps.field) && equals(prevProps.showErrors, nextProps.showErrors) && equals(prevProps.moneyFormat, nextProps.moneyFormat) && equals(prevProps.lineItem, nextProps.lineItem);
|
|
46906
47085
|
}
|
|
46907
|
-
var PartialAmountField$1 = /*#__PURE__*/React__default.memo(themeComponent(PartialAmountField, "PartialAmountField", fallbackValues$
|
|
47086
|
+
var PartialAmountField$1 = /*#__PURE__*/React__default.memo(themeComponent(PartialAmountField, "PartialAmountField", fallbackValues$P, "default"), arePropsEqual);
|
|
46908
47087
|
|
|
46909
47088
|
var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
46910
47089
|
var _ref$variant = _ref.variant,
|
|
@@ -47008,9 +47187,9 @@ var arrowColor = WHITE;
|
|
|
47008
47187
|
var numberColor = MATISSE_BLUE;
|
|
47009
47188
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47010
47189
|
var activeBackgroundColor$2 = WHITE;
|
|
47011
|
-
var activeColor$
|
|
47012
|
-
var fallbackValues$
|
|
47013
|
-
activeColor: activeColor$
|
|
47190
|
+
var activeColor$a = MATISSE_BLUE;
|
|
47191
|
+
var fallbackValues$Q = {
|
|
47192
|
+
activeColor: activeColor$a,
|
|
47014
47193
|
activeBackgroundColor: activeBackgroundColor$2,
|
|
47015
47194
|
arrowColor: arrowColor,
|
|
47016
47195
|
hoverBackgroundColor: hoverBackgroundColor$2,
|
|
@@ -47203,7 +47382,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47203
47382
|
buttonWidth: buttonWidth
|
|
47204
47383
|
}));
|
|
47205
47384
|
};
|
|
47206
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
47385
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$Q);
|
|
47207
47386
|
|
|
47208
47387
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
47209
47388
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -47240,18 +47419,13 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
47240
47419
|
backButtonTestId = _ref$backButtonTestId === void 0 ? null : _ref$backButtonTestId;
|
|
47241
47420
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
47242
47421
|
isMobile = _useContext.isMobile;
|
|
47243
|
-
|
|
47244
|
-
// cancel URLs are external (back to client system)
|
|
47245
|
-
var handleCancel = function handleCancel() {
|
|
47246
|
-
window.location.href = cancelURL;
|
|
47247
|
-
};
|
|
47248
|
-
var backButton = !!cancelURL && !!cancelText ? /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
47422
|
+
var backButton = !!cancelURL && !!cancelText ? /*#__PURE__*/React__default.createElement(ButtonWithLink, {
|
|
47249
47423
|
text: cancelText,
|
|
47250
|
-
|
|
47424
|
+
url: cancelURL,
|
|
47251
47425
|
variant: backButtonVariant,
|
|
47252
47426
|
extraStyles: isMobile && "flex-grow: 1",
|
|
47253
47427
|
dataQa: backButtonTestId || cancelText,
|
|
47254
|
-
"aria-
|
|
47428
|
+
"aria-labelledby": "".concat(kebabCaseString(cancelText), "-button"),
|
|
47255
47429
|
role: "link"
|
|
47256
47430
|
}) : backButtonAction && /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
47257
47431
|
text: "Back",
|
|
@@ -47259,7 +47433,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
47259
47433
|
action: backButtonAction,
|
|
47260
47434
|
extraStyles: isMobile && "flex-grow: 1",
|
|
47261
47435
|
dataQa: "Back",
|
|
47262
|
-
"aria-
|
|
47436
|
+
"aria-labelledby": "back-button",
|
|
47263
47437
|
role: "link"
|
|
47264
47438
|
});
|
|
47265
47439
|
var forwardButton = !!redirectURL ? /*#__PURE__*/React__default.createElement(ButtonWithLink, {
|
|
@@ -47309,7 +47483,7 @@ var labeledAmountTotal = {
|
|
|
47309
47483
|
"default": "large",
|
|
47310
47484
|
small: "small"
|
|
47311
47485
|
};
|
|
47312
|
-
var fallbackValues$
|
|
47486
|
+
var fallbackValues$R = {
|
|
47313
47487
|
backgroundColor: backgroundColor$c,
|
|
47314
47488
|
lineItem: lineItem,
|
|
47315
47489
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -47678,7 +47852,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
47678
47852
|
isError: isError
|
|
47679
47853
|
});
|
|
47680
47854
|
};
|
|
47681
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
47855
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$R, "default");
|
|
47682
47856
|
|
|
47683
47857
|
var linkColor$4 = {
|
|
47684
47858
|
"default": "#3176AA"
|
|
@@ -47698,7 +47872,7 @@ var modalLinkHoverFocus = {
|
|
|
47698
47872
|
var linkTextDecoration = {
|
|
47699
47873
|
"default": LINK_TEXT_DECORATION
|
|
47700
47874
|
};
|
|
47701
|
-
var fallbackValues$
|
|
47875
|
+
var fallbackValues$S = {
|
|
47702
47876
|
linkColor: linkColor$4,
|
|
47703
47877
|
fontSize: fontSize$a,
|
|
47704
47878
|
lineHeight: lineHeight$4,
|
|
@@ -47762,7 +47936,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
47762
47936
|
}, link)
|
|
47763
47937
|
}));
|
|
47764
47938
|
};
|
|
47765
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
47939
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$S, "default");
|
|
47766
47940
|
|
|
47767
47941
|
var backgroundColor$d = {
|
|
47768
47942
|
"default": "#ffffff",
|
|
@@ -47797,7 +47971,7 @@ var modalLinkTextDecoration = {
|
|
|
47797
47971
|
"default": LINK_TEXT_DECORATION,
|
|
47798
47972
|
footer: "none"
|
|
47799
47973
|
};
|
|
47800
|
-
var fallbackValues$
|
|
47974
|
+
var fallbackValues$T = {
|
|
47801
47975
|
backgroundColor: backgroundColor$d,
|
|
47802
47976
|
linkColor: linkColor$5,
|
|
47803
47977
|
border: border$3,
|
|
@@ -47869,7 +48043,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47869
48043
|
className: "modal-trigger"
|
|
47870
48044
|
}, link));
|
|
47871
48045
|
};
|
|
47872
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48046
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$T, "default");
|
|
47873
48047
|
|
|
47874
48048
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
47875
48049
|
var onCheck = _ref.onCheck,
|
|
@@ -48641,7 +48815,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
48641
48815
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
48642
48816
|
var borderColor$6 = "".concat(GHOST_GREY);
|
|
48643
48817
|
var focusStyles = "outline: none;";
|
|
48644
|
-
var fallbackValues$
|
|
48818
|
+
var fallbackValues$U = {
|
|
48645
48819
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
48646
48820
|
headingDisabledColor: headingDisabledColor,
|
|
48647
48821
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -48976,9 +49150,9 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48976
49150
|
});
|
|
48977
49151
|
})));
|
|
48978
49152
|
};
|
|
48979
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49153
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$U);
|
|
48980
49154
|
|
|
48981
|
-
var fallbackValues$
|
|
49155
|
+
var fallbackValues$V = {
|
|
48982
49156
|
primaryColor: ROYAL_BLUE_VIVID,
|
|
48983
49157
|
secondaryColor: CHARADE_GREY
|
|
48984
49158
|
};
|
|
@@ -49089,7 +49263,7 @@ var RegistrationBanner = function RegistrationBanner(_ref) {
|
|
|
49089
49263
|
weight: FONT_WEIGHT_SEMIBOLD
|
|
49090
49264
|
}, "or Log In")))));
|
|
49091
49265
|
};
|
|
49092
|
-
var RegistrationBanner$1 = withWindowSize(themeComponent(RegistrationBanner, "RegistrationBanner", fallbackValues$
|
|
49266
|
+
var RegistrationBanner$1 = withWindowSize(themeComponent(RegistrationBanner, "RegistrationBanner", fallbackValues$V));
|
|
49093
49267
|
|
|
49094
49268
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49095
49269
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -49209,13 +49383,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
|
49209
49383
|
|
|
49210
49384
|
var GRECIAN_GREY$1 = GRECIAN_GREY;
|
|
49211
49385
|
var bannerBackgroundColor = GRECIAN_GREY$1;
|
|
49212
|
-
var fallbackValues$
|
|
49386
|
+
var fallbackValues$W = {
|
|
49213
49387
|
bannerBackgroundColor: bannerBackgroundColor
|
|
49214
49388
|
};
|
|
49215
49389
|
|
|
49216
49390
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
49217
49391
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
49218
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49392
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$W, "ResetConfirmationForm");
|
|
49219
49393
|
var isMobile = themeContext.isMobile;
|
|
49220
49394
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
49221
49395
|
padding: "0",
|
|
@@ -49330,13 +49504,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
|
49330
49504
|
|
|
49331
49505
|
var GRECIAN_GREY$2 = GRECIAN_GREY;
|
|
49332
49506
|
var bannerBackgroundColor$1 = GRECIAN_GREY$2;
|
|
49333
|
-
var fallbackValues$
|
|
49507
|
+
var fallbackValues$X = {
|
|
49334
49508
|
bannerBackgroundColor: bannerBackgroundColor$1
|
|
49335
49509
|
};
|
|
49336
49510
|
|
|
49337
49511
|
var ResetPasswordSuccess = function ResetPasswordSuccess() {
|
|
49338
49512
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
49339
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49513
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$X, "ResetPasswordSuccess");
|
|
49340
49514
|
var isMobile = themeContext.isMobile;
|
|
49341
49515
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
49342
49516
|
padding: "0",
|
|
@@ -49385,7 +49559,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
|
|
|
49385
49559
|
var activeTabBackground = "#FFFFFF";
|
|
49386
49560
|
var activeTabAccent = "#15749D";
|
|
49387
49561
|
var activeTabHover = "#B8D5E1";
|
|
49388
|
-
var fallbackValues$
|
|
49562
|
+
var fallbackValues$Y = {
|
|
49389
49563
|
activeTabBackground: activeTabBackground,
|
|
49390
49564
|
activeTabAccent: activeTabAccent,
|
|
49391
49565
|
activeTabHover: activeTabHover
|
|
@@ -49480,12 +49654,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49480
49654
|
}, tab.content);
|
|
49481
49655
|
}))));
|
|
49482
49656
|
};
|
|
49483
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49657
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$Y);
|
|
49484
49658
|
|
|
49485
49659
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49486
49660
|
var activeTabAccent$1 = "#15749D";
|
|
49487
49661
|
var activeTabHover$1 = "#B8D5E1";
|
|
49488
|
-
var fallbackValues$
|
|
49662
|
+
var fallbackValues$Z = {
|
|
49489
49663
|
activeTabBackground: activeTabBackground$1,
|
|
49490
49664
|
activeTabAccent: activeTabAccent$1,
|
|
49491
49665
|
activeTabHover: activeTabHover$1
|
|
@@ -49544,7 +49718,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49544
49718
|
}, text)))));
|
|
49545
49719
|
})));
|
|
49546
49720
|
};
|
|
49547
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49721
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Z);
|
|
49548
49722
|
|
|
49549
49723
|
var Timeout = function Timeout(_ref) {
|
|
49550
49724
|
var onLogout = _ref.onLogout;
|
|
@@ -49665,7 +49839,7 @@ var fontColor$1 = WHITE;
|
|
|
49665
49839
|
var textAlign$1 = "left";
|
|
49666
49840
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49667
49841
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49668
|
-
var fallbackValues$
|
|
49842
|
+
var fallbackValues$_ = {
|
|
49669
49843
|
fontWeight: fontWeight$9,
|
|
49670
49844
|
fontColor: fontColor$1,
|
|
49671
49845
|
textAlign: textAlign$1,
|
|
@@ -49710,7 +49884,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
49710
49884
|
src: welcomeImage
|
|
49711
49885
|
})))));
|
|
49712
49886
|
};
|
|
49713
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
49887
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$_));
|
|
49714
49888
|
|
|
49715
49889
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
49716
49890
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -49770,7 +49944,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
49770
49944
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
49771
49945
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
49772
49946
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
49773
|
-
var fallbackValues
|
|
49947
|
+
var fallbackValues$$ = {
|
|
49774
49948
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
49775
49949
|
menuItemColor: menuItemColor,
|
|
49776
49950
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -49837,15 +50011,15 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
49837
50011
|
extraStyles: textExtraStyles
|
|
49838
50012
|
}, text)));
|
|
49839
50013
|
};
|
|
49840
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues
|
|
50014
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$$);
|
|
49841
50015
|
|
|
49842
|
-
var hoverColor$
|
|
49843
|
-
var activeColor$
|
|
50016
|
+
var hoverColor$6 = "#116285";
|
|
50017
|
+
var activeColor$b = "#0E506D";
|
|
49844
50018
|
var menuTriggerColor = "#15749D";
|
|
49845
50019
|
var backgroundColor$e = "white";
|
|
49846
|
-
var fallbackValues
|
|
49847
|
-
hoverColor: hoverColor$
|
|
49848
|
-
activeColor: activeColor$
|
|
50020
|
+
var fallbackValues$10 = {
|
|
50021
|
+
hoverColor: hoverColor$6,
|
|
50022
|
+
activeColor: activeColor$b,
|
|
49849
50023
|
menuTriggerColor: menuTriggerColor,
|
|
49850
50024
|
backgroundColor: backgroundColor$e
|
|
49851
50025
|
};
|
|
@@ -49979,13 +50153,13 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
49979
50153
|
}, item));
|
|
49980
50154
|
})));
|
|
49981
50155
|
};
|
|
49982
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues
|
|
50156
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$10);
|
|
49983
50157
|
|
|
49984
50158
|
var primaryColor$1 = WHITE;
|
|
49985
50159
|
var primaryHoverColor = INFO_BLUE;
|
|
49986
50160
|
var secondaryColor = MATISSE_BLUE;
|
|
49987
50161
|
var secondaryHoverColor = "#115D7E";
|
|
49988
|
-
var fallbackValues$
|
|
50162
|
+
var fallbackValues$11 = {
|
|
49989
50163
|
primaryColor: primaryColor$1,
|
|
49990
50164
|
primaryHoverColor: primaryHoverColor,
|
|
49991
50165
|
secondaryColor: secondaryColor,
|
|
@@ -50687,7 +50861,7 @@ var MultipleSelectFilter = function MultipleSelectFilter(_ref) {
|
|
|
50687
50861
|
ariaLabel: "Apply all filters"
|
|
50688
50862
|
}))));
|
|
50689
50863
|
};
|
|
50690
|
-
var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$
|
|
50864
|
+
var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$11);
|
|
50691
50865
|
|
|
50692
50866
|
var TextWrapStyles = styled.css(["word-wrap:break-word;overflow-wrap:break-word;white-space:normal;max-width:100%;"]);
|
|
50693
50867
|
var Container$1 = styled__default(Box).withConfig({
|
|
@@ -50889,7 +51063,7 @@ var justifyContent = {
|
|
|
50889
51063
|
desktop: "center"
|
|
50890
51064
|
}
|
|
50891
51065
|
};
|
|
50892
|
-
var fallbackValues$
|
|
51066
|
+
var fallbackValues$12 = {
|
|
50893
51067
|
// Colors
|
|
50894
51068
|
heroPrimaryColor: heroPrimaryColor,
|
|
50895
51069
|
heroTextColor: heroTextColor,
|
|
@@ -51096,7 +51270,7 @@ var HeroImage = function HeroImage(_ref) {
|
|
|
51096
51270
|
theme: themeValues
|
|
51097
51271
|
}, description)))));
|
|
51098
51272
|
};
|
|
51099
|
-
var HeroImage$1 = withWindowSize(themeComponent(HeroImage, "HeroImage", fallbackValues$
|
|
51273
|
+
var HeroImage$1 = withWindowSize(themeComponent(HeroImage, "HeroImage", fallbackValues$12, "v1"));
|
|
51100
51274
|
|
|
51101
51275
|
var TurnstileWidgetContainer = styled__default(Box).withConfig({
|
|
51102
51276
|
displayName: "TurnstileWidget__TurnstileWidgetContainer",
|
|
@@ -51240,7 +51414,7 @@ var TurnstileWidget = /*#__PURE__*/React.forwardRef(function (_ref4, ref) {
|
|
|
51240
51414
|
});
|
|
51241
51415
|
|
|
51242
51416
|
var pageBackground = "#FBFCFD";
|
|
51243
|
-
var fallbackValues$
|
|
51417
|
+
var fallbackValues$13 = {
|
|
51244
51418
|
pageBackground: pageBackground
|
|
51245
51419
|
};
|
|
51246
51420
|
|
|
@@ -51288,7 +51462,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
51288
51462
|
padding: "0"
|
|
51289
51463
|
})));
|
|
51290
51464
|
};
|
|
51291
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
51465
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$13));
|
|
51292
51466
|
|
|
51293
51467
|
var CenterStack = function CenterStack(_ref) {
|
|
51294
51468
|
var header = _ref.header,
|
|
@@ -51331,7 +51505,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
51331
51505
|
padding: "0"
|
|
51332
51506
|
})));
|
|
51333
51507
|
};
|
|
51334
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
51508
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$13));
|
|
51335
51509
|
|
|
51336
51510
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
51337
51511
|
var header = _ref.header,
|
|
@@ -51377,7 +51551,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
51377
51551
|
padding: "0"
|
|
51378
51552
|
})));
|
|
51379
51553
|
};
|
|
51380
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
51554
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$13));
|
|
51381
51555
|
|
|
51382
51556
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
51383
51557
|
var header = _ref.header,
|
|
@@ -51430,7 +51604,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
51430
51604
|
padding: "0"
|
|
51431
51605
|
})));
|
|
51432
51606
|
};
|
|
51433
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
51607
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$13));
|
|
51434
51608
|
|
|
51435
51609
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
51436
51610
|
var header = _ref.header,
|
|
@@ -51500,7 +51674,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
51500
51674
|
key: "footer-box"
|
|
51501
51675
|
})));
|
|
51502
51676
|
};
|
|
51503
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
51677
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$13));
|
|
51504
51678
|
|
|
51505
51679
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
51506
51680
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -51796,6 +51970,7 @@ exports.TimeoutImage = TimeoutImage;
|
|
|
51796
51970
|
exports.Title = Title$1;
|
|
51797
51971
|
exports.ToastNotification = ToastNotification;
|
|
51798
51972
|
exports.ToggleSwitch = ToggleSwitch$1;
|
|
51973
|
+
exports.Tooltip = Tooltip$1;
|
|
51799
51974
|
exports.TrashIcon = TrashIcon$1;
|
|
51800
51975
|
exports.TrashIconV2 = TrashIconV2$1;
|
|
51801
51976
|
exports.TurnstileWidget = TurnstileWidget;
|