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