@thecb/components 10.4.6-beta.7 → 10.4.7-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 +217 -298
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +218 -298
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/index.js +0 -1
- package/src/components/atoms/toggle-switch/ToggleSwitch.js +34 -61
- package/src/components/atoms/toggle-switch/ToggleSwitch.stories.js +2 -3
- package/src/components/atoms/toggle-switch/ToggleSwitch.theme.js +5 -5
- package/dist/src/apps/checkout/pages/payment/sub-pages/payment-amount/PaymentAmount_old.js +0 -49322
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/icons/.DS_Store +0 -0
- package/src/components/atoms/wallet-name/WalletName.js +0 -74
- package/src/components/atoms/wallet-name/WalletName.stories.js +0 -22
- package/src/components/atoms/wallet-name/WalletName.theme.js +0 -15
- package/src/components/atoms/wallet-name/index.d.ts +0 -12
- package/src/components/atoms/wallet-name/index.js +0 -3
package/dist/index.esm.js
CHANGED
|
@@ -38763,17 +38763,17 @@ var FormStateDropdown = function FormStateDropdown(_ref) {
|
|
|
38763
38763
|
};
|
|
38764
38764
|
|
|
38765
38765
|
var onBackground = "".concat(MATISSE_BLUE);
|
|
38766
|
-
var disabledBackground = "".concat(
|
|
38766
|
+
var disabledBackground = "".concat(MANATEE_GREY);
|
|
38767
|
+
var disabledBackgroundLight = "".concat(ATHENS_GREY);
|
|
38767
38768
|
var white = "".concat(WHITE);
|
|
38768
|
-
var offBackground = "".concat(REGENT_GREY);
|
|
38769
38769
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
38770
38770
|
var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
|
|
38771
38771
|
var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
|
|
38772
38772
|
var fallbackValues$y = {
|
|
38773
38773
|
onBackground: onBackground,
|
|
38774
38774
|
disabledBackground: disabledBackground,
|
|
38775
|
+
disabledBackgroundLight: disabledBackgroundLight,
|
|
38775
38776
|
white: white,
|
|
38776
|
-
offBackground: offBackground,
|
|
38777
38777
|
rightLabelStyles: rightLabelStyles,
|
|
38778
38778
|
leftLabelStyles: leftLabelStyles
|
|
38779
38779
|
};
|
|
@@ -38791,7 +38791,7 @@ var HiddenToggleSwitchBox = styled.input.withConfig({
|
|
|
38791
38791
|
var VisibleSwitchComponent = styled.label.withConfig({
|
|
38792
38792
|
displayName: "ToggleSwitch__VisibleSwitchComponent",
|
|
38793
38793
|
componentId: "sc-1t51u6v-1"
|
|
38794
|
-
})(["width:
|
|
38794
|
+
})(["width:44px;height:24px;border-radius:12px;border:none;position:relative;box-sizing:border-box;cursor:", ";display:inline-block;&:hover{box-shadow:", ";}&:focus{box-shadow:0px 2px 5px 0px rgba(0,0,0,0.5);}", ""], function (_ref3) {
|
|
38795
38795
|
var disabled = _ref3.disabled;
|
|
38796
38796
|
return disabled ? "auto" : "pointer";
|
|
38797
38797
|
}, function (_ref4) {
|
|
@@ -38801,14 +38801,10 @@ var VisibleSwitchComponent = styled.label.withConfig({
|
|
|
38801
38801
|
var isMobile = _ref5.isMobile;
|
|
38802
38802
|
return isMobile ? "transform: scale(0.75)" : "";
|
|
38803
38803
|
});
|
|
38804
|
-
var
|
|
38805
|
-
displayName: "
|
|
38804
|
+
var ToggleSwitchRingComponent = styled.div.withConfig({
|
|
38805
|
+
displayName: "ToggleSwitch__ToggleSwitchRingComponent",
|
|
38806
38806
|
componentId: "sc-1t51u6v-2"
|
|
38807
|
-
})(["position:absolute;width:
|
|
38808
|
-
var ToggleSwitchInnerRingComponent = styled.div.withConfig({
|
|
38809
|
-
displayName: "ToggleSwitch__ToggleSwitchInnerRingComponent",
|
|
38810
|
-
componentId: "sc-1t51u6v-3"
|
|
38811
|
-
})(["position:absolute;width:14px;height:14px;top:3px;left:3px;right:3px;bottom:3px;border-radius:50%;box-sizing:border-box;"]);
|
|
38807
|
+
})(["position:absolute;width:16px;height:16px;border:none;border-radius:50%;box-sizing:border-box;"]);
|
|
38812
38808
|
var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
38813
38809
|
var _ref6$isOn = _ref6.isOn,
|
|
38814
38810
|
isOn = _ref6$isOn === void 0 ? false : _ref6$isOn,
|
|
@@ -38825,52 +38821,30 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
|
38825
38821
|
themeValues = _ref6.themeValues,
|
|
38826
38822
|
isMobile = _ref6.isMobile,
|
|
38827
38823
|
dataQa = _ref6.dataQa;
|
|
38828
|
-
var
|
|
38824
|
+
var ToggleSwitchRing = posed(ToggleSwitchRingComponent)({
|
|
38829
38825
|
off: {
|
|
38830
|
-
backgroundColor: themeValues.
|
|
38831
|
-
|
|
38832
|
-
|
|
38833
|
-
|
|
38834
|
-
|
|
38835
|
-
on: {
|
|
38836
|
-
backgroundColor: themeValues.onBackground,
|
|
38837
|
-
transition: {
|
|
38838
|
-
ease: "easeIn"
|
|
38839
|
-
}
|
|
38840
|
-
},
|
|
38841
|
-
disabled: {
|
|
38842
|
-
backgroundColor: themeValues.disabledBackground
|
|
38843
|
-
}
|
|
38844
|
-
});
|
|
38845
|
-
var ToggleSwitchMiddleRing = posed(ToggleSwitchMiddleRingComponent)({
|
|
38846
|
-
off: {
|
|
38847
|
-
backgroundColor: themeValues.white,
|
|
38848
|
-
left: "2px",
|
|
38849
|
-
top: "2px",
|
|
38850
|
-
bottom: "2px",
|
|
38851
|
-
right: "24px",
|
|
38826
|
+
backgroundColor: disabled ? themeValues.disabledBackground : themeValues.onBackground,
|
|
38827
|
+
left: "4px",
|
|
38828
|
+
top: "3px",
|
|
38829
|
+
bottom: "3px",
|
|
38830
|
+
right: "20px",
|
|
38852
38831
|
transition: {
|
|
38853
38832
|
ease: "backIn"
|
|
38854
38833
|
}
|
|
38855
38834
|
},
|
|
38856
38835
|
on: {
|
|
38857
38836
|
backgroundColor: themeValues.white,
|
|
38858
|
-
right: "
|
|
38859
|
-
top: "
|
|
38860
|
-
bottom: "
|
|
38861
|
-
left: "
|
|
38837
|
+
right: "8px",
|
|
38838
|
+
top: "3px",
|
|
38839
|
+
bottom: "4px",
|
|
38840
|
+
left: "23px",
|
|
38862
38841
|
transition: {
|
|
38863
38842
|
ease: "backIn"
|
|
38864
38843
|
}
|
|
38865
|
-
},
|
|
38866
|
-
disabled: {
|
|
38867
|
-
backgroundColor: themeValues.white,
|
|
38868
|
-
left: "2px",
|
|
38869
|
-
top: "2px",
|
|
38870
|
-
bottom: "2px",
|
|
38871
|
-
right: "24px"
|
|
38872
38844
|
}
|
|
38873
38845
|
});
|
|
38846
|
+
|
|
38847
|
+
// to do: for disabled, background color should not be white (should be lighter disabled background)
|
|
38874
38848
|
var VisibleSwitch = posed(VisibleSwitchComponent)({
|
|
38875
38849
|
focusable: true,
|
|
38876
38850
|
hoverable: true,
|
|
@@ -38883,19 +38857,20 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
|
38883
38857
|
boxShadow: "0px 2px 5px 0px rgba(0,0,0,0.5)"
|
|
38884
38858
|
},
|
|
38885
38859
|
off: {
|
|
38886
|
-
|
|
38860
|
+
border: "1px solid",
|
|
38861
|
+
backgroundColor: disabled ? themeValues.disabledBackgroundLight : themeValues.white,
|
|
38862
|
+
borderColor: disabled ? themeValues.disabledBackground : themeValues.onBackground,
|
|
38887
38863
|
transition: {
|
|
38888
38864
|
ease: "easeOut"
|
|
38889
38865
|
}
|
|
38890
38866
|
},
|
|
38891
38867
|
on: {
|
|
38892
|
-
|
|
38868
|
+
border: "1px solid",
|
|
38869
|
+
backgroundColor: disabled ? themeValues.disabledBackground : themeValues.onBackground,
|
|
38870
|
+
borderColor: disabled ? themeValues.disabledBackground : themeValues.onBackground,
|
|
38893
38871
|
transition: {
|
|
38894
38872
|
ease: "easeIn"
|
|
38895
38873
|
}
|
|
38896
|
-
},
|
|
38897
|
-
disabled: {
|
|
38898
|
-
backgroundColor: themeValues.disabledBackground
|
|
38899
38874
|
}
|
|
38900
38875
|
});
|
|
38901
38876
|
var handleKeyDown = function handleKeyDown(e) {
|
|
@@ -38930,11 +38905,11 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
|
38930
38905
|
htmlFor: "#toggle-".concat(name),
|
|
38931
38906
|
onClick: disabled ? noop : onToggle,
|
|
38932
38907
|
onKeyDown: disabled ? noop : handleKeyDown,
|
|
38933
|
-
pose:
|
|
38908
|
+
pose: isOn ? "on" : "off",
|
|
38934
38909
|
tabIndex: disabled ? -1 : 0,
|
|
38935
38910
|
disabled: disabled,
|
|
38936
38911
|
isMobile: isMobile
|
|
38937
|
-
}, /*#__PURE__*/React.createElement(
|
|
38912
|
+
}, /*#__PURE__*/React.createElement(ToggleSwitchRing, null)))), label && /*#__PURE__*/React.createElement(Heading$1, {
|
|
38938
38913
|
variant: "h4",
|
|
38939
38914
|
weight: FONT_WEIGHT_SEMIBOLD,
|
|
38940
38915
|
extraStyles: "margin: 0 0.5rem; position: relative; bottom: 1px; display: inline-block;",
|
|
@@ -39224,190 +39199,6 @@ var LoadingLine = function LoadingLine(_ref) {
|
|
|
39224
39199
|
});
|
|
39225
39200
|
};
|
|
39226
39201
|
|
|
39227
|
-
var backgroundColor$6 = {
|
|
39228
|
-
primary: WHITE
|
|
39229
|
-
};
|
|
39230
|
-
var boxShadow$1 = {
|
|
39231
|
-
primary: "box-shadow: 0px 1px 2px 0px #292A331A;\n box-shadow: 0px 2px 6px 0px #292a3333; box-shadow: 0px 1px 0px 0px #292A331A inset;"
|
|
39232
|
-
};
|
|
39233
|
-
var fallbackValues$C = {
|
|
39234
|
-
backgroundColor: backgroundColor$6,
|
|
39235
|
-
boxShadow: boxShadow$1
|
|
39236
|
-
};
|
|
39237
|
-
|
|
39238
|
-
var fontSize$9 = {
|
|
39239
|
-
"default": "1.375rem",
|
|
39240
|
-
largeTitle: "1.75rem",
|
|
39241
|
-
small: "1.25rem"
|
|
39242
|
-
};
|
|
39243
|
-
var fontWeight$5 = {
|
|
39244
|
-
"default": "600",
|
|
39245
|
-
largeTitle: "700",
|
|
39246
|
-
small: "600"
|
|
39247
|
-
};
|
|
39248
|
-
var fontColor = {
|
|
39249
|
-
"default": CHARADE_GREY,
|
|
39250
|
-
largeTitle: CHARADE_GREY,
|
|
39251
|
-
small: CHARADE_GREY
|
|
39252
|
-
};
|
|
39253
|
-
var lineHeight$3 = {
|
|
39254
|
-
"default": "2rem",
|
|
39255
|
-
largeTitle: "2rem",
|
|
39256
|
-
small: "2rem"
|
|
39257
|
-
};
|
|
39258
|
-
var textAlign = {
|
|
39259
|
-
"default": "left",
|
|
39260
|
-
largeTitle: "left",
|
|
39261
|
-
small: "left"
|
|
39262
|
-
};
|
|
39263
|
-
var titleType = {
|
|
39264
|
-
"default": "h5",
|
|
39265
|
-
largeTitle: "h1",
|
|
39266
|
-
small: "h6"
|
|
39267
|
-
};
|
|
39268
|
-
var titleSpacing = {
|
|
39269
|
-
"default": "0.5rem",
|
|
39270
|
-
largeTitle: "1.125rem",
|
|
39271
|
-
small: "0.5rem"
|
|
39272
|
-
};
|
|
39273
|
-
var boxShadow$2 = {
|
|
39274
|
-
"default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
|
|
39275
|
-
largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
|
|
39276
|
-
small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
|
|
39277
|
-
};
|
|
39278
|
-
var borderRadius = {
|
|
39279
|
-
"default": "0.25rem",
|
|
39280
|
-
largeTitle: "0.25rem",
|
|
39281
|
-
small: "0.25rem"
|
|
39282
|
-
};
|
|
39283
|
-
var backgroundColor$7 = {
|
|
39284
|
-
"default": WHITE,
|
|
39285
|
-
largeTitle: WHITE,
|
|
39286
|
-
small: WHITE
|
|
39287
|
-
};
|
|
39288
|
-
var fallbackValues$D = {
|
|
39289
|
-
fontSize: fontSize$9,
|
|
39290
|
-
fontWeight: fontWeight$5,
|
|
39291
|
-
fontColor: fontColor,
|
|
39292
|
-
lineHeight: lineHeight$3,
|
|
39293
|
-
textAlign: textAlign,
|
|
39294
|
-
titleType: titleType,
|
|
39295
|
-
titleSpacing: titleSpacing,
|
|
39296
|
-
boxShadow: boxShadow$2,
|
|
39297
|
-
borderRadius: borderRadius,
|
|
39298
|
-
backgroundColor: backgroundColor$7
|
|
39299
|
-
};
|
|
39300
|
-
|
|
39301
|
-
/*
|
|
39302
|
-
New (01/22) - updated <Module /> to use <Title /> atom
|
|
39303
|
-
Because <Title /> decouples size from element, also gave <Module />
|
|
39304
|
-
two new props: "as" and "fontSize"
|
|
39305
|
-
|
|
39306
|
-
When present, <Module /> will use those values to dictate element type and font size.
|
|
39307
|
-
|
|
39308
|
-
For backwards compatability, <Module /> still computes a themed font size and element type based on old
|
|
39309
|
-
<Heading /> variants. If "fontSize" or "as" is undefined, <Module /> will use themed values.
|
|
39310
|
-
*/
|
|
39311
|
-
|
|
39312
|
-
var Module = function Module(_ref) {
|
|
39313
|
-
var _ref$variant = _ref.variant,
|
|
39314
|
-
variant = _ref$variant === void 0 ? "default" : _ref$variant,
|
|
39315
|
-
as = _ref.as,
|
|
39316
|
-
disabled = _ref.disabled,
|
|
39317
|
-
heading = _ref.heading,
|
|
39318
|
-
rightTitleContent = _ref.rightTitleContent,
|
|
39319
|
-
_ref$titleID = _ref.titleID,
|
|
39320
|
-
titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
|
|
39321
|
-
_ref$spacing = _ref.spacing,
|
|
39322
|
-
spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
|
|
39323
|
-
_ref$padding = _ref.padding,
|
|
39324
|
-
padding = _ref$padding === void 0 ? "0" : _ref$padding,
|
|
39325
|
-
_ref$margin = _ref.margin,
|
|
39326
|
-
margin = _ref$margin === void 0 ? "0" : _ref$margin,
|
|
39327
|
-
_ref$spacingBottom = _ref.spacingBottom,
|
|
39328
|
-
spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
|
|
39329
|
-
fontSize = _ref.fontSize,
|
|
39330
|
-
themeValues = _ref.themeValues,
|
|
39331
|
-
children = _ref.children;
|
|
39332
|
-
var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
|
|
39333
|
-
var computedFontSize = fontSize || themedFontSize;
|
|
39334
|
-
var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
|
|
39335
|
-
var computedElemType = as || themedElemType;
|
|
39336
|
-
var disabledStyles = "opacity: 0.40;";
|
|
39337
|
-
var headingText = /*#__PURE__*/React.createElement(Title$1, {
|
|
39338
|
-
weight: themeValues.fontWeight,
|
|
39339
|
-
color: themeValues.fontColor,
|
|
39340
|
-
margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
|
|
39341
|
-
textAlign: themeValues.textAlign,
|
|
39342
|
-
as: computedElemType,
|
|
39343
|
-
extraStyles: "font-size: ".concat(computedFontSize, ";"),
|
|
39344
|
-
id: titleID
|
|
39345
|
-
}, heading);
|
|
39346
|
-
return /*#__PURE__*/React.createElement(Box, {
|
|
39347
|
-
"aria-disabled": disabled,
|
|
39348
|
-
extraStyles: disabled && disabledStyles,
|
|
39349
|
-
padding: "0",
|
|
39350
|
-
role: "group"
|
|
39351
|
-
}, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React.createElement(Cluster, {
|
|
39352
|
-
justify: "space-between",
|
|
39353
|
-
align: "center",
|
|
39354
|
-
nowrap: true
|
|
39355
|
-
}, headingText, rightTitleContent), /*#__PURE__*/React.createElement(Box, {
|
|
39356
|
-
padding: "0 0 ".concat(spacingBottom),
|
|
39357
|
-
extraStyles: "margin: ".concat(margin)
|
|
39358
|
-
}, /*#__PURE__*/React.createElement(Box, {
|
|
39359
|
-
padding: padding,
|
|
39360
|
-
background: themeValues.backgroundColor,
|
|
39361
|
-
borderRadius: themeValues.borderRadius,
|
|
39362
|
-
boxShadow: themeValues.boxShadow
|
|
39363
|
-
}, children)));
|
|
39364
|
-
};
|
|
39365
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
|
|
39366
|
-
|
|
39367
|
-
var WalletName = function WalletName(_ref) {
|
|
39368
|
-
var personName = _ref.personName,
|
|
39369
|
-
_ref$action = _ref.action,
|
|
39370
|
-
action = _ref$action === void 0 ? noop : _ref$action,
|
|
39371
|
-
_ref$text = _ref.text,
|
|
39372
|
-
text = _ref$text === void 0 ? "Not you?" : _ref$text,
|
|
39373
|
-
_ref$actionText = _ref.actionText,
|
|
39374
|
-
actionText = _ref$actionText === void 0 ? "Check out as a guest" : _ref$actionText,
|
|
39375
|
-
themeValues = _ref.themeValues;
|
|
39376
|
-
var themeContext = useContext(ThemeContext);
|
|
39377
|
-
var isMobile = themeContext.isMobile;
|
|
39378
|
-
return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Module$1, {
|
|
39379
|
-
spacingBottom: isMobile ? "0" : "1.5rem"
|
|
39380
|
-
}, /*#__PURE__*/React.createElement(Box, {
|
|
39381
|
-
padding: "24px",
|
|
39382
|
-
boxShadow: themeValues.boxShadow,
|
|
39383
|
-
spacingBottom: "0",
|
|
39384
|
-
margin: "0 0 0 0",
|
|
39385
|
-
extraStyles: isMobile ? "display: flex; flex-direction: column; flex-wrap: wrap; span {text - align: right;}" : "display: flex; justify-content: space-between; align-items: center;"
|
|
39386
|
-
}, /*#__PURE__*/React.createElement(Box, {
|
|
39387
|
-
padding: "0 0 0"
|
|
39388
|
-
}, /*#__PURE__*/React.createElement(Text$1, null, personName)), !isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
39389
|
-
padding: "0"
|
|
39390
|
-
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
39391
|
-
extraStyles: "font-size: 12px"
|
|
39392
|
-
}, text), /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
39393
|
-
text: actionText,
|
|
39394
|
-
action: action,
|
|
39395
|
-
variant: "smallGhost",
|
|
39396
|
-
extraStyles: "span {font-size: 12px;}"
|
|
39397
|
-
})))), isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
39398
|
-
padding: "0 0 24px",
|
|
39399
|
-
extraStyles: "display: flex; align-items: center; justify-content: flex-end;"
|
|
39400
|
-
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
39401
|
-
extraStyles: "font-size: 12px"
|
|
39402
|
-
}, text), /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
39403
|
-
text: actionText,
|
|
39404
|
-
action: action,
|
|
39405
|
-
variant: "smallGhost",
|
|
39406
|
-
extraStyles: "span {font-size: 12px;}"
|
|
39407
|
-
})));
|
|
39408
|
-
};
|
|
39409
|
-
var WalletName$1 = themeComponent(WalletName, "WalletName", fallbackValues$C, "primary");
|
|
39410
|
-
|
|
39411
39202
|
var Table_styled = styled.table.withConfig({
|
|
39412
39203
|
displayName: "Tablestyled",
|
|
39413
39204
|
componentId: "sc-mveye7-0"
|
|
@@ -39444,10 +39235,10 @@ var TableCell_styled = styled.td.withConfig({
|
|
|
39444
39235
|
return extraStyles;
|
|
39445
39236
|
});
|
|
39446
39237
|
|
|
39447
|
-
var backgroundColor$
|
|
39238
|
+
var backgroundColor$6 = ALABASTER_WHITE;
|
|
39448
39239
|
var borderColor$3 = GREY_CHATEAU;
|
|
39449
|
-
var fallbackValues$
|
|
39450
|
-
backgroundColor: backgroundColor$
|
|
39240
|
+
var fallbackValues$C = {
|
|
39241
|
+
backgroundColor: backgroundColor$6,
|
|
39451
39242
|
borderColor: borderColor$3
|
|
39452
39243
|
};
|
|
39453
39244
|
|
|
@@ -39468,7 +39259,7 @@ var StyledTableHead = styled.thead.withConfig({
|
|
|
39468
39259
|
|
|
39469
39260
|
var borderColor$4 = GREY_CHATEAU;
|
|
39470
39261
|
var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
|
|
39471
|
-
var fallbackValues$
|
|
39262
|
+
var fallbackValues$D = {
|
|
39472
39263
|
borderColor: borderColor$4,
|
|
39473
39264
|
hoverBackgroundColor: hoverBackgroundColor$1
|
|
39474
39265
|
};
|
|
@@ -39507,7 +39298,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
39507
39298
|
hoverBackgroundColor: themeValues.hoverBackgroundColor
|
|
39508
39299
|
}, props), children);
|
|
39509
39300
|
};
|
|
39510
|
-
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$
|
|
39301
|
+
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$D);
|
|
39511
39302
|
|
|
39512
39303
|
var TableHead = function TableHead(_ref) {
|
|
39513
39304
|
var children = _ref.children,
|
|
@@ -39522,7 +39313,7 @@ var TableHead = function TableHead(_ref) {
|
|
|
39522
39313
|
hoverEffect: false
|
|
39523
39314
|
}, children));
|
|
39524
39315
|
};
|
|
39525
|
-
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$
|
|
39316
|
+
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$C);
|
|
39526
39317
|
|
|
39527
39318
|
var TableHeading_styled = styled.th.withConfig({
|
|
39528
39319
|
displayName: "TableHeadingstyled",
|
|
@@ -40348,9 +40139,9 @@ AddressForm.reducer = reducer;
|
|
|
40348
40139
|
AddressForm.mapStateToProps = mapStateToProps$1;
|
|
40349
40140
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
40350
40141
|
|
|
40351
|
-
var backgroundColor$
|
|
40352
|
-
var fallbackValues$
|
|
40353
|
-
backgroundColor: backgroundColor$
|
|
40142
|
+
var backgroundColor$7 = "#ebeffb";
|
|
40143
|
+
var fallbackValues$E = {
|
|
40144
|
+
backgroundColor: backgroundColor$7
|
|
40354
40145
|
};
|
|
40355
40146
|
|
|
40356
40147
|
var Banner = function Banner(_ref) {
|
|
@@ -40398,7 +40189,7 @@ var Banner = function Banner(_ref) {
|
|
|
40398
40189
|
extraStyles: isMobile && "> svg { width: 176px; }"
|
|
40399
40190
|
}, /*#__PURE__*/React.createElement(Image, null))));
|
|
40400
40191
|
};
|
|
40401
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
40192
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$E);
|
|
40402
40193
|
|
|
40403
40194
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
40404
40195
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -40532,7 +40323,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
40532
40323
|
var titleColor$1 = "#292A33";
|
|
40533
40324
|
var headingBackgroundColor = "transparent";
|
|
40534
40325
|
var bodyBackgroundColor = "transparent";
|
|
40535
|
-
var fallbackValues$
|
|
40326
|
+
var fallbackValues$F = {
|
|
40536
40327
|
titleColor: titleColor$1,
|
|
40537
40328
|
headingBackgroundColor: headingBackgroundColor,
|
|
40538
40329
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -40657,7 +40448,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
40657
40448
|
"aria-labelledby": "".concat(id, "-button")
|
|
40658
40449
|
}, children))));
|
|
40659
40450
|
};
|
|
40660
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
40451
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$F);
|
|
40661
40452
|
|
|
40662
40453
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
40663
40454
|
var themeValues = _ref.themeValues;
|
|
@@ -41233,7 +41024,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
41233
41024
|
|
|
41234
41025
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
41235
41026
|
var subfooterBackgroundColor = STORM_GREY;
|
|
41236
|
-
var fallbackValues$
|
|
41027
|
+
var fallbackValues$G = {
|
|
41237
41028
|
footerBackgroundColor: footerBackgroundColor,
|
|
41238
41029
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
41239
41030
|
};
|
|
@@ -41264,7 +41055,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
41264
41055
|
rightContent: rightSubfooterContent
|
|
41265
41056
|
}));
|
|
41266
41057
|
};
|
|
41267
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
41058
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$G);
|
|
41268
41059
|
|
|
41269
41060
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
41270
41061
|
var fields = _ref.fields,
|
|
@@ -41310,10 +41101,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
|
|
|
41310
41101
|
ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
41311
41102
|
|
|
41312
41103
|
var textColor$4 = "#ffffff";
|
|
41313
|
-
var backgroundColor$
|
|
41314
|
-
var fallbackValues$
|
|
41104
|
+
var backgroundColor$8 = "#182848";
|
|
41105
|
+
var fallbackValues$H = {
|
|
41315
41106
|
textColor: textColor$4,
|
|
41316
|
-
backgroundColor: backgroundColor$
|
|
41107
|
+
backgroundColor: backgroundColor$8
|
|
41317
41108
|
};
|
|
41318
41109
|
|
|
41319
41110
|
// this component needs some fix'n
|
|
@@ -41370,7 +41161,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
41370
41161
|
}, t));
|
|
41371
41162
|
}), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
|
|
41372
41163
|
};
|
|
41373
|
-
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
41164
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$H);
|
|
41374
41165
|
|
|
41375
41166
|
var AccountBillIcon = function AccountBillIcon() {
|
|
41376
41167
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -42835,7 +42626,7 @@ var disabledColor$1 = {
|
|
|
42835
42626
|
var activeBackgroundColor$1 = {
|
|
42836
42627
|
primary: CORNFLOWER_BLUE
|
|
42837
42628
|
};
|
|
42838
|
-
var backgroundColor$
|
|
42629
|
+
var backgroundColor$9 = {
|
|
42839
42630
|
primary: LINK_WATER
|
|
42840
42631
|
};
|
|
42841
42632
|
var borderColor$5 = {
|
|
@@ -42844,12 +42635,12 @@ var borderColor$5 = {
|
|
|
42844
42635
|
var color$b = {
|
|
42845
42636
|
primary: ROYAL_BLUE_VIVID
|
|
42846
42637
|
};
|
|
42847
|
-
var fallbackValues$
|
|
42638
|
+
var fallbackValues$I = {
|
|
42848
42639
|
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
42849
42640
|
disabledBorderColor: disabledBorderColor$1,
|
|
42850
42641
|
disabledColor: disabledColor$1,
|
|
42851
42642
|
activeBackgroundColor: activeBackgroundColor$1,
|
|
42852
|
-
backgroundColor: backgroundColor$
|
|
42643
|
+
backgroundColor: backgroundColor$9,
|
|
42853
42644
|
borderColor: borderColor$5,
|
|
42854
42645
|
color: color$b
|
|
42855
42646
|
};
|
|
@@ -42965,7 +42756,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
42965
42756
|
extraStyles: "margin-right: auto;"
|
|
42966
42757
|
}), showRight && !!rightContent && rightContent))));
|
|
42967
42758
|
};
|
|
42968
|
-
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$
|
|
42759
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "primary");
|
|
42969
42760
|
|
|
42970
42761
|
var LoginForm = function LoginForm(_ref) {
|
|
42971
42762
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -46604,7 +46395,136 @@ var Modal$1 = function Modal(_ref) {
|
|
|
46604
46395
|
}))))))))), children);
|
|
46605
46396
|
};
|
|
46606
46397
|
|
|
46607
|
-
var
|
|
46398
|
+
var fontSize$9 = {
|
|
46399
|
+
"default": "1.375rem",
|
|
46400
|
+
largeTitle: "1.75rem",
|
|
46401
|
+
small: "1.25rem"
|
|
46402
|
+
};
|
|
46403
|
+
var fontWeight$5 = {
|
|
46404
|
+
"default": "600",
|
|
46405
|
+
largeTitle: "700",
|
|
46406
|
+
small: "600"
|
|
46407
|
+
};
|
|
46408
|
+
var fontColor = {
|
|
46409
|
+
"default": CHARADE_GREY,
|
|
46410
|
+
largeTitle: CHARADE_GREY,
|
|
46411
|
+
small: CHARADE_GREY
|
|
46412
|
+
};
|
|
46413
|
+
var lineHeight$3 = {
|
|
46414
|
+
"default": "2rem",
|
|
46415
|
+
largeTitle: "2rem",
|
|
46416
|
+
small: "2rem"
|
|
46417
|
+
};
|
|
46418
|
+
var textAlign = {
|
|
46419
|
+
"default": "left",
|
|
46420
|
+
largeTitle: "left",
|
|
46421
|
+
small: "left"
|
|
46422
|
+
};
|
|
46423
|
+
var titleType = {
|
|
46424
|
+
"default": "h5",
|
|
46425
|
+
largeTitle: "h1",
|
|
46426
|
+
small: "h6"
|
|
46427
|
+
};
|
|
46428
|
+
var titleSpacing = {
|
|
46429
|
+
"default": "0.5rem",
|
|
46430
|
+
largeTitle: "1.125rem",
|
|
46431
|
+
small: "0.5rem"
|
|
46432
|
+
};
|
|
46433
|
+
var boxShadow$1 = {
|
|
46434
|
+
"default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
|
|
46435
|
+
largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
|
|
46436
|
+
small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
|
|
46437
|
+
};
|
|
46438
|
+
var borderRadius = {
|
|
46439
|
+
"default": "0.25rem",
|
|
46440
|
+
largeTitle: "0.25rem",
|
|
46441
|
+
small: "0.25rem"
|
|
46442
|
+
};
|
|
46443
|
+
var backgroundColor$a = {
|
|
46444
|
+
"default": WHITE,
|
|
46445
|
+
largeTitle: WHITE,
|
|
46446
|
+
small: WHITE
|
|
46447
|
+
};
|
|
46448
|
+
var fallbackValues$J = {
|
|
46449
|
+
fontSize: fontSize$9,
|
|
46450
|
+
fontWeight: fontWeight$5,
|
|
46451
|
+
fontColor: fontColor,
|
|
46452
|
+
lineHeight: lineHeight$3,
|
|
46453
|
+
textAlign: textAlign,
|
|
46454
|
+
titleType: titleType,
|
|
46455
|
+
titleSpacing: titleSpacing,
|
|
46456
|
+
boxShadow: boxShadow$1,
|
|
46457
|
+
borderRadius: borderRadius,
|
|
46458
|
+
backgroundColor: backgroundColor$a
|
|
46459
|
+
};
|
|
46460
|
+
|
|
46461
|
+
/*
|
|
46462
|
+
New (01/22) - updated <Module /> to use <Title /> atom
|
|
46463
|
+
Because <Title /> decouples size from element, also gave <Module />
|
|
46464
|
+
two new props: "as" and "fontSize"
|
|
46465
|
+
|
|
46466
|
+
When present, <Module /> will use those values to dictate element type and font size.
|
|
46467
|
+
|
|
46468
|
+
For backwards compatability, <Module /> still computes a themed font size and element type based on old
|
|
46469
|
+
<Heading /> variants. If "fontSize" or "as" is undefined, <Module /> will use themed values.
|
|
46470
|
+
*/
|
|
46471
|
+
|
|
46472
|
+
var Module = function Module(_ref) {
|
|
46473
|
+
var _ref$variant = _ref.variant,
|
|
46474
|
+
variant = _ref$variant === void 0 ? "default" : _ref$variant,
|
|
46475
|
+
as = _ref.as,
|
|
46476
|
+
disabled = _ref.disabled,
|
|
46477
|
+
heading = _ref.heading,
|
|
46478
|
+
rightTitleContent = _ref.rightTitleContent,
|
|
46479
|
+
_ref$titleID = _ref.titleID,
|
|
46480
|
+
titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
|
|
46481
|
+
_ref$spacing = _ref.spacing,
|
|
46482
|
+
spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
|
|
46483
|
+
_ref$padding = _ref.padding,
|
|
46484
|
+
padding = _ref$padding === void 0 ? "0" : _ref$padding,
|
|
46485
|
+
_ref$margin = _ref.margin,
|
|
46486
|
+
margin = _ref$margin === void 0 ? "0" : _ref$margin,
|
|
46487
|
+
_ref$spacingBottom = _ref.spacingBottom,
|
|
46488
|
+
spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
|
|
46489
|
+
fontSize = _ref.fontSize,
|
|
46490
|
+
themeValues = _ref.themeValues,
|
|
46491
|
+
children = _ref.children;
|
|
46492
|
+
var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
|
|
46493
|
+
var computedFontSize = fontSize || themedFontSize;
|
|
46494
|
+
var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
|
|
46495
|
+
var computedElemType = as || themedElemType;
|
|
46496
|
+
var disabledStyles = "opacity: 0.40;";
|
|
46497
|
+
var headingText = /*#__PURE__*/React.createElement(Title$1, {
|
|
46498
|
+
weight: themeValues.fontWeight,
|
|
46499
|
+
color: themeValues.fontColor,
|
|
46500
|
+
margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
|
|
46501
|
+
textAlign: themeValues.textAlign,
|
|
46502
|
+
as: computedElemType,
|
|
46503
|
+
extraStyles: "font-size: ".concat(computedFontSize, ";"),
|
|
46504
|
+
id: titleID
|
|
46505
|
+
}, heading);
|
|
46506
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
46507
|
+
"aria-disabled": disabled,
|
|
46508
|
+
extraStyles: disabled && disabledStyles,
|
|
46509
|
+
padding: "0",
|
|
46510
|
+
role: "group"
|
|
46511
|
+
}, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React.createElement(Cluster, {
|
|
46512
|
+
justify: "space-between",
|
|
46513
|
+
align: "center",
|
|
46514
|
+
nowrap: true
|
|
46515
|
+
}, headingText, rightTitleContent), /*#__PURE__*/React.createElement(Box, {
|
|
46516
|
+
padding: "0 0 ".concat(spacingBottom),
|
|
46517
|
+
extraStyles: "margin: ".concat(margin)
|
|
46518
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
46519
|
+
padding: padding,
|
|
46520
|
+
background: themeValues.backgroundColor,
|
|
46521
|
+
borderRadius: themeValues.borderRadius,
|
|
46522
|
+
boxShadow: themeValues.boxShadow
|
|
46523
|
+
}, children)));
|
|
46524
|
+
};
|
|
46525
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$J, "default"));
|
|
46526
|
+
|
|
46527
|
+
var backgroundColor$b = {
|
|
46608
46528
|
profile: "#3b414d",
|
|
46609
46529
|
cms: "#3b414d"
|
|
46610
46530
|
};
|
|
@@ -46612,8 +46532,8 @@ var shadowColor = {
|
|
|
46612
46532
|
profile: "#292A33",
|
|
46613
46533
|
cms: "#292A33"
|
|
46614
46534
|
};
|
|
46615
|
-
var fallbackValues$
|
|
46616
|
-
backgroundColor: backgroundColor$
|
|
46535
|
+
var fallbackValues$K = {
|
|
46536
|
+
backgroundColor: backgroundColor$b,
|
|
46617
46537
|
shadowColor: shadowColor
|
|
46618
46538
|
};
|
|
46619
46539
|
|
|
@@ -46652,7 +46572,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
46652
46572
|
onBlur: onBlur
|
|
46653
46573
|
}, menuContent));
|
|
46654
46574
|
};
|
|
46655
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46575
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
|
|
46656
46576
|
|
|
46657
46577
|
var menu = posed.div({
|
|
46658
46578
|
invisible: {
|
|
@@ -46712,7 +46632,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
46712
46632
|
background: themeValues.backgroundColor
|
|
46713
46633
|
}, menuContent));
|
|
46714
46634
|
};
|
|
46715
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46635
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
|
|
46716
46636
|
|
|
46717
46637
|
var IconsModule = function IconsModule(_ref) {
|
|
46718
46638
|
var icon = _ref.icon,
|
|
@@ -46766,7 +46686,7 @@ var activeColor$8 = "#0E506D";
|
|
|
46766
46686
|
var linkColor$4 = "#3176AA";
|
|
46767
46687
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
46768
46688
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
46769
|
-
var fallbackValues$
|
|
46689
|
+
var fallbackValues$L = {
|
|
46770
46690
|
color: color$c,
|
|
46771
46691
|
hoverColor: hoverColor$5,
|
|
46772
46692
|
activeColor: activeColor$8,
|
|
@@ -46892,7 +46812,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
46892
46812
|
modalOpen: modalOpen
|
|
46893
46813
|
}, modalExtraProps), renderAutoPayControl());
|
|
46894
46814
|
};
|
|
46895
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
46815
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
|
|
46896
46816
|
|
|
46897
46817
|
var AmountModule = function AmountModule(_ref) {
|
|
46898
46818
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -47582,7 +47502,7 @@ var numberColor = MATISSE_BLUE;
|
|
|
47582
47502
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47583
47503
|
var activeBackgroundColor$2 = WHITE;
|
|
47584
47504
|
var activeColor$9 = MATISSE_BLUE;
|
|
47585
|
-
var fallbackValues$
|
|
47505
|
+
var fallbackValues$M = {
|
|
47586
47506
|
activeColor: activeColor$9,
|
|
47587
47507
|
activeBackgroundColor: activeBackgroundColor$2,
|
|
47588
47508
|
arrowColor: arrowColor,
|
|
@@ -47776,7 +47696,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47776
47696
|
buttonWidth: buttonWidth
|
|
47777
47697
|
}));
|
|
47778
47698
|
};
|
|
47779
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
47699
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
|
|
47780
47700
|
|
|
47781
47701
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
47782
47702
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -47857,7 +47777,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
47857
47777
|
}, !hideBackButton && /*#__PURE__*/React.createElement(Fragment$1, null, backButton), !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton), !hideAdditionalButton && /*#__PURE__*/React.createElement(Fragment$1, null, additionalButton))));
|
|
47858
47778
|
};
|
|
47859
47779
|
|
|
47860
|
-
var backgroundColor$
|
|
47780
|
+
var backgroundColor$c = {
|
|
47861
47781
|
"default": "transparent",
|
|
47862
47782
|
small: "transparent"
|
|
47863
47783
|
};
|
|
@@ -47873,8 +47793,8 @@ var labeledAmountTotal = {
|
|
|
47873
47793
|
"default": "large",
|
|
47874
47794
|
small: "small"
|
|
47875
47795
|
};
|
|
47876
|
-
var fallbackValues$
|
|
47877
|
-
backgroundColor: backgroundColor$
|
|
47796
|
+
var fallbackValues$N = {
|
|
47797
|
+
backgroundColor: backgroundColor$c,
|
|
47878
47798
|
lineItem: lineItem,
|
|
47879
47799
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
47880
47800
|
labeledAmountTotal: labeledAmountTotal
|
|
@@ -48244,7 +48164,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48244
48164
|
isError: isError
|
|
48245
48165
|
});
|
|
48246
48166
|
};
|
|
48247
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48167
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
|
|
48248
48168
|
|
|
48249
48169
|
var linkColor$5 = {
|
|
48250
48170
|
"default": "#3176AA"
|
|
@@ -48264,7 +48184,7 @@ var modalLinkHoverFocus$1 = {
|
|
|
48264
48184
|
var linkTextDecoration = {
|
|
48265
48185
|
"default": LINK_TEXT_DECORATION
|
|
48266
48186
|
};
|
|
48267
|
-
var fallbackValues$
|
|
48187
|
+
var fallbackValues$O = {
|
|
48268
48188
|
linkColor: linkColor$5,
|
|
48269
48189
|
fontSize: fontSize$a,
|
|
48270
48190
|
lineHeight: lineHeight$4,
|
|
@@ -48328,9 +48248,9 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48328
48248
|
}, link)
|
|
48329
48249
|
}));
|
|
48330
48250
|
};
|
|
48331
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
48251
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
|
|
48332
48252
|
|
|
48333
|
-
var backgroundColor$
|
|
48253
|
+
var backgroundColor$d = {
|
|
48334
48254
|
"default": "#ffffff",
|
|
48335
48255
|
footer: "#ffffff"
|
|
48336
48256
|
};
|
|
@@ -48363,8 +48283,8 @@ var modalLinkTextDecoration = {
|
|
|
48363
48283
|
"default": LINK_TEXT_DECORATION,
|
|
48364
48284
|
footer: "none"
|
|
48365
48285
|
};
|
|
48366
|
-
var fallbackValues$
|
|
48367
|
-
backgroundColor: backgroundColor$
|
|
48286
|
+
var fallbackValues$P = {
|
|
48287
|
+
backgroundColor: backgroundColor$d,
|
|
48368
48288
|
linkColor: linkColor$6,
|
|
48369
48289
|
border: border$3,
|
|
48370
48290
|
fontSize: fontSize$b,
|
|
@@ -48435,7 +48355,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
48435
48355
|
className: "modal-trigger"
|
|
48436
48356
|
}, link));
|
|
48437
48357
|
};
|
|
48438
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48358
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
|
|
48439
48359
|
|
|
48440
48360
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48441
48361
|
var onCheck = _ref.onCheck,
|
|
@@ -49198,7 +49118,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
49198
49118
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49199
49119
|
var borderColor$6 = "".concat(GHOST_GREY);
|
|
49200
49120
|
var focusStyles = "outline: none;";
|
|
49201
|
-
var fallbackValues$
|
|
49121
|
+
var fallbackValues$Q = {
|
|
49202
49122
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49203
49123
|
headingDisabledColor: headingDisabledColor,
|
|
49204
49124
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -49500,7 +49420,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49500
49420
|
});
|
|
49501
49421
|
})));
|
|
49502
49422
|
};
|
|
49503
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49423
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
|
|
49504
49424
|
|
|
49505
49425
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49506
49426
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -49782,7 +49702,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
49782
49702
|
var activeTabBackground = "#FFFFFF";
|
|
49783
49703
|
var activeTabAccent = "#15749D";
|
|
49784
49704
|
var activeTabHover = "#B8D5E1";
|
|
49785
|
-
var fallbackValues$
|
|
49705
|
+
var fallbackValues$R = {
|
|
49786
49706
|
activeTabBackground: activeTabBackground,
|
|
49787
49707
|
activeTabAccent: activeTabAccent,
|
|
49788
49708
|
activeTabHover: activeTabHover
|
|
@@ -49850,12 +49770,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49850
49770
|
}, tab.content);
|
|
49851
49771
|
}))));
|
|
49852
49772
|
};
|
|
49853
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49773
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
|
|
49854
49774
|
|
|
49855
49775
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49856
49776
|
var activeTabAccent$1 = "#15749D";
|
|
49857
49777
|
var activeTabHover$1 = "#B8D5E1";
|
|
49858
|
-
var fallbackValues$
|
|
49778
|
+
var fallbackValues$S = {
|
|
49859
49779
|
activeTabBackground: activeTabBackground$1,
|
|
49860
49780
|
activeTabAccent: activeTabAccent$1,
|
|
49861
49781
|
activeTabHover: activeTabHover$1
|
|
@@ -49910,7 +49830,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49910
49830
|
}, text)))));
|
|
49911
49831
|
})));
|
|
49912
49832
|
};
|
|
49913
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49833
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
|
|
49914
49834
|
|
|
49915
49835
|
var Timeout = function Timeout(_ref) {
|
|
49916
49836
|
var onLogout = _ref.onLogout;
|
|
@@ -49995,7 +49915,7 @@ var fontColor$1 = WHITE;
|
|
|
49995
49915
|
var textAlign$1 = "left";
|
|
49996
49916
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49997
49917
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49998
|
-
var fallbackValues$
|
|
49918
|
+
var fallbackValues$T = {
|
|
49999
49919
|
fontWeight: fontWeight$9,
|
|
50000
49920
|
fontColor: fontColor$1,
|
|
50001
49921
|
textAlign: textAlign$1,
|
|
@@ -50040,7 +49960,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
50040
49960
|
src: welcomeImage
|
|
50041
49961
|
})))));
|
|
50042
49962
|
};
|
|
50043
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
49963
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
|
|
50044
49964
|
|
|
50045
49965
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
50046
49966
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -50100,7 +50020,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
50100
50020
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
50101
50021
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
50102
50022
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
50103
|
-
var fallbackValues$
|
|
50023
|
+
var fallbackValues$U = {
|
|
50104
50024
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
50105
50025
|
menuItemColor: menuItemColor,
|
|
50106
50026
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -50167,17 +50087,17 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
50167
50087
|
extraStyles: textExtraStyles
|
|
50168
50088
|
}, text)));
|
|
50169
50089
|
};
|
|
50170
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
50090
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$U);
|
|
50171
50091
|
|
|
50172
50092
|
var hoverColor$6 = "#116285";
|
|
50173
50093
|
var activeColor$a = "#0E506D";
|
|
50174
50094
|
var menuTriggerColor = "#15749D";
|
|
50175
|
-
var backgroundColor$
|
|
50176
|
-
var fallbackValues$
|
|
50095
|
+
var backgroundColor$e = "white";
|
|
50096
|
+
var fallbackValues$V = {
|
|
50177
50097
|
hoverColor: hoverColor$6,
|
|
50178
50098
|
activeColor: activeColor$a,
|
|
50179
50099
|
menuTriggerColor: menuTriggerColor,
|
|
50180
|
-
backgroundColor: backgroundColor$
|
|
50100
|
+
backgroundColor: backgroundColor$e
|
|
50181
50101
|
};
|
|
50182
50102
|
|
|
50183
50103
|
var PopupMenuContainer = styled(Box).withConfig({
|
|
@@ -50309,10 +50229,10 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
50309
50229
|
}, item));
|
|
50310
50230
|
})));
|
|
50311
50231
|
};
|
|
50312
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$
|
|
50232
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$V);
|
|
50313
50233
|
|
|
50314
50234
|
var pageBackground = "#FBFCFD";
|
|
50315
|
-
var fallbackValues$
|
|
50235
|
+
var fallbackValues$W = {
|
|
50316
50236
|
pageBackground: pageBackground
|
|
50317
50237
|
};
|
|
50318
50238
|
|
|
@@ -50360,7 +50280,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
50360
50280
|
padding: "0"
|
|
50361
50281
|
})));
|
|
50362
50282
|
};
|
|
50363
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50283
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$W));
|
|
50364
50284
|
|
|
50365
50285
|
var CenterStack = function CenterStack(_ref) {
|
|
50366
50286
|
var header = _ref.header,
|
|
@@ -50403,7 +50323,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
50403
50323
|
padding: "0"
|
|
50404
50324
|
})));
|
|
50405
50325
|
};
|
|
50406
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50326
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$W));
|
|
50407
50327
|
|
|
50408
50328
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
50409
50329
|
var header = _ref.header,
|
|
@@ -50449,7 +50369,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50449
50369
|
padding: "0"
|
|
50450
50370
|
})));
|
|
50451
50371
|
};
|
|
50452
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50372
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$W));
|
|
50453
50373
|
|
|
50454
50374
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50455
50375
|
var header = _ref.header,
|
|
@@ -50502,7 +50422,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50502
50422
|
padding: "0"
|
|
50503
50423
|
})));
|
|
50504
50424
|
};
|
|
50505
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50425
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$W));
|
|
50506
50426
|
|
|
50507
50427
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50508
50428
|
var header = _ref.header,
|
|
@@ -50572,7 +50492,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50572
50492
|
key: "footer-box"
|
|
50573
50493
|
})));
|
|
50574
50494
|
};
|
|
50575
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50495
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$W));
|
|
50576
50496
|
|
|
50577
50497
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
50578
50498
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -50604,5 +50524,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
|
|
|
50604
50524
|
useToastNotification: useToastNotification
|
|
50605
50525
|
});
|
|
50606
50526
|
|
|
50607
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall,
|
|
50527
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
|
|
50608
50528
|
//# sourceMappingURL=index.esm.js.map
|