@thecb/components 10.6.0-beta.5 → 10.6.0-beta.7
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 +124 -125
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +124 -125
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/wallet-name/WalletName.js +19 -23
- package/src/components/atoms/wallet-name/index.d.ts +4 -4
- package/src/components/molecules/partial-amount-form/PartialAmountField.js +49 -0
- package/src/components/molecules/partial-amount-form/PartialAmountForm.js +8 -22
- package/src/components/molecules/radio-section/InnerRadioSection.js +7 -2
- package/src/components/atoms/wallet-name/WalletName.theme.js +0 -25
package/dist/index.esm.js
CHANGED
|
@@ -39572,21 +39572,6 @@ var LoadingLine = function LoadingLine(_ref) {
|
|
|
39572
39572
|
});
|
|
39573
39573
|
};
|
|
39574
39574
|
|
|
39575
|
-
var backgroundColor$6 = {
|
|
39576
|
-
primary: WHITE
|
|
39577
|
-
};
|
|
39578
|
-
var color$b = {
|
|
39579
|
-
primary: ROYAL_BLUE_VIVID
|
|
39580
|
-
};
|
|
39581
|
-
var boxShadow$1 = {
|
|
39582
|
-
primary: "box-shadow: 0px 1px 2px 0px rgba(".concat(CHARADE_GREY, ", 0.1);\n box-shadow: 0px 2px 6px 0px rgba(").concat(CHARADE_GREY, ", 0.2);\n box-shadow: 0px -1px 0px 0px rgba(").concat(CHARADE_GREY, ", 0.1) inset;")
|
|
39583
|
-
};
|
|
39584
|
-
var fallbackValues$C = {
|
|
39585
|
-
backgroundColor: backgroundColor$6,
|
|
39586
|
-
color: color$b,
|
|
39587
|
-
boxShadow: boxShadow$1
|
|
39588
|
-
};
|
|
39589
|
-
|
|
39590
39575
|
var fontSize$9 = {
|
|
39591
39576
|
"default": "1.375rem",
|
|
39592
39577
|
largeTitle: "1.75rem",
|
|
@@ -39622,7 +39607,7 @@ var titleSpacing = {
|
|
|
39622
39607
|
largeTitle: "1.125rem",
|
|
39623
39608
|
small: "0.5rem"
|
|
39624
39609
|
};
|
|
39625
|
-
var boxShadow$
|
|
39610
|
+
var boxShadow$1 = {
|
|
39626
39611
|
"default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
|
|
39627
39612
|
largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
|
|
39628
39613
|
small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
|
|
@@ -39632,12 +39617,12 @@ var borderRadius = {
|
|
|
39632
39617
|
largeTitle: "0.25rem",
|
|
39633
39618
|
small: "0.25rem"
|
|
39634
39619
|
};
|
|
39635
|
-
var backgroundColor$
|
|
39620
|
+
var backgroundColor$6 = {
|
|
39636
39621
|
"default": WHITE,
|
|
39637
39622
|
largeTitle: WHITE,
|
|
39638
39623
|
small: WHITE
|
|
39639
39624
|
};
|
|
39640
|
-
var fallbackValues$
|
|
39625
|
+
var fallbackValues$C = {
|
|
39641
39626
|
fontSize: fontSize$9,
|
|
39642
39627
|
fontWeight: fontWeight$5,
|
|
39643
39628
|
fontColor: fontColor,
|
|
@@ -39645,9 +39630,9 @@ var fallbackValues$D = {
|
|
|
39645
39630
|
textAlign: textAlign,
|
|
39646
39631
|
titleType: titleType,
|
|
39647
39632
|
titleSpacing: titleSpacing,
|
|
39648
|
-
boxShadow: boxShadow$
|
|
39633
|
+
boxShadow: boxShadow$1,
|
|
39649
39634
|
borderRadius: borderRadius,
|
|
39650
|
-
backgroundColor: backgroundColor$
|
|
39635
|
+
backgroundColor: backgroundColor$6
|
|
39651
39636
|
};
|
|
39652
39637
|
|
|
39653
39638
|
/*
|
|
@@ -39714,18 +39699,19 @@ var Module = function Module(_ref) {
|
|
|
39714
39699
|
boxShadow: themeValues.boxShadow
|
|
39715
39700
|
}, children)));
|
|
39716
39701
|
};
|
|
39717
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$
|
|
39702
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$C, "default"));
|
|
39718
39703
|
|
|
39719
39704
|
var WalletName = function WalletName(_ref) {
|
|
39720
39705
|
var mainText = _ref.mainText,
|
|
39721
39706
|
action = _ref.action,
|
|
39722
|
-
text = _ref.text,
|
|
39723
|
-
|
|
39724
|
-
|
|
39707
|
+
_ref$text = _ref.text,
|
|
39708
|
+
text = _ref$text === void 0 ? null : _ref$text,
|
|
39709
|
+
_ref$actionText = _ref.actionText,
|
|
39710
|
+
actionText = _ref$actionText === void 0 ? null : _ref$actionText,
|
|
39725
39711
|
_ref$disableAction = _ref.disableAction,
|
|
39726
39712
|
disableAction = _ref$disableAction === void 0 ? false : _ref$disableAction,
|
|
39727
|
-
_ref$
|
|
39728
|
-
|
|
39713
|
+
_ref$linkButtonExtraS = _ref.linkButtonExtraStyles,
|
|
39714
|
+
linkButtonExtraStyles = _ref$linkButtonExtraS === void 0 ? "" : _ref$linkButtonExtraS,
|
|
39729
39715
|
_ref$isLoading = _ref.isLoading,
|
|
39730
39716
|
isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading;
|
|
39731
39717
|
var _useContext = useContext(ThemeContext),
|
|
@@ -39735,10 +39721,9 @@ var WalletName = function WalletName(_ref) {
|
|
|
39735
39721
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
39736
39722
|
align: "center",
|
|
39737
39723
|
justify: !!text || !!actionText ? "space-between" : "flex-start",
|
|
39738
|
-
extraStyles: "\n box-shadow: ".concat(
|
|
39724
|
+
extraStyles: "\n box-shadow: 0px 1px 2px 0px rgba(".concat(CHARADE_GREY, ", 0.1);\n box-shadow: 0px 2px 6px 0px rgba(").concat(CHARADE_GREY, ", 0.2);\n box-shadow: 0px -1px 0px 0px rgba(").concat(CHARADE_GREY, ", 0.1) inset;\n padding: 1.5rem;\n ").concat(isMobile ? "span {text-align: right;}" : "", "\n ")
|
|
39739
39725
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
39740
|
-
padding: "0"
|
|
39741
|
-
extraStyles: ""
|
|
39726
|
+
padding: "0"
|
|
39742
39727
|
}, isLoading ? /*#__PURE__*/React.createElement(Center, {
|
|
39743
39728
|
as: "span",
|
|
39744
39729
|
style: {
|
|
@@ -39751,7 +39736,7 @@ var WalletName = function WalletName(_ref) {
|
|
|
39751
39736
|
radius: "10",
|
|
39752
39737
|
cx: "12",
|
|
39753
39738
|
cy: "12"
|
|
39754
|
-
})) : /*#__PURE__*/React.createElement(Text$1, null, mainText)), !isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
39739
|
+
})) : mainText && /*#__PURE__*/React.createElement(Text$1, null, mainText)), !isMobile && /*#__PURE__*/React.createElement(Box, {
|
|
39755
39740
|
padding: "0"
|
|
39756
39741
|
}, text && /*#__PURE__*/React.createElement(Text$1, {
|
|
39757
39742
|
variant: "pXS"
|
|
@@ -39760,7 +39745,7 @@ var WalletName = function WalletName(_ref) {
|
|
|
39760
39745
|
text: actionText,
|
|
39761
39746
|
action: action,
|
|
39762
39747
|
variant: "smallGhost",
|
|
39763
|
-
extraStyles: "\n
|
|
39748
|
+
extraStyles: "\n margin: 0;\n min-width: 0;\n span {font-size: 0.75rem;}\n ".concat(linkButtonExtraStyles, "\n ")
|
|
39764
39749
|
})))), isMobile && /*#__PURE__*/React.createElement(Cluster, {
|
|
39765
39750
|
align: "center",
|
|
39766
39751
|
justify: text || actionText ? "flex-end" : "flex-start",
|
|
@@ -39772,10 +39757,9 @@ var WalletName = function WalletName(_ref) {
|
|
|
39772
39757
|
action: action,
|
|
39773
39758
|
variant: "smallGhost",
|
|
39774
39759
|
disabled: disableAction,
|
|
39775
|
-
extraStyles: "\n margin: 0;\n min-width: 0;\n span {font-size: 0.75rem;}\n ".concat(
|
|
39760
|
+
extraStyles: "\n margin: 0;\n min-width: 0;\n span {font-size: 0.75rem;}\n ".concat(linkButtonExtraStyles, "\n ")
|
|
39776
39761
|
})));
|
|
39777
39762
|
};
|
|
39778
|
-
var WalletName$1 = themeComponent(WalletName, "WalletName", fallbackValues$C, "primary");
|
|
39779
39763
|
|
|
39780
39764
|
var Table_styled = styled.table.withConfig({
|
|
39781
39765
|
displayName: "Tablestyled",
|
|
@@ -39813,10 +39797,10 @@ var TableCell_styled = styled.td.withConfig({
|
|
|
39813
39797
|
return extraStyles;
|
|
39814
39798
|
});
|
|
39815
39799
|
|
|
39816
|
-
var backgroundColor$
|
|
39800
|
+
var backgroundColor$7 = ALABASTER_WHITE;
|
|
39817
39801
|
var borderColor$3 = GREY_CHATEAU;
|
|
39818
|
-
var fallbackValues$
|
|
39819
|
-
backgroundColor: backgroundColor$
|
|
39802
|
+
var fallbackValues$D = {
|
|
39803
|
+
backgroundColor: backgroundColor$7,
|
|
39820
39804
|
borderColor: borderColor$3
|
|
39821
39805
|
};
|
|
39822
39806
|
|
|
@@ -39837,7 +39821,7 @@ var StyledTableHead = styled.thead.withConfig({
|
|
|
39837
39821
|
|
|
39838
39822
|
var borderColor$4 = GREY_CHATEAU;
|
|
39839
39823
|
var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
|
|
39840
|
-
var fallbackValues$
|
|
39824
|
+
var fallbackValues$E = {
|
|
39841
39825
|
borderColor: borderColor$4,
|
|
39842
39826
|
hoverBackgroundColor: hoverBackgroundColor$1
|
|
39843
39827
|
};
|
|
@@ -39876,7 +39860,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
39876
39860
|
hoverBackgroundColor: themeValues.hoverBackgroundColor
|
|
39877
39861
|
}, props), children);
|
|
39878
39862
|
};
|
|
39879
|
-
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$
|
|
39863
|
+
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$E);
|
|
39880
39864
|
|
|
39881
39865
|
var TableHead = function TableHead(_ref) {
|
|
39882
39866
|
var children = _ref.children,
|
|
@@ -39891,7 +39875,7 @@ var TableHead = function TableHead(_ref) {
|
|
|
39891
39875
|
hoverEffect: false
|
|
39892
39876
|
}, children));
|
|
39893
39877
|
};
|
|
39894
|
-
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$
|
|
39878
|
+
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$D);
|
|
39895
39879
|
|
|
39896
39880
|
var TableHeading_styled = styled.th.withConfig({
|
|
39897
39881
|
displayName: "TableHeadingstyled",
|
|
@@ -40371,14 +40355,6 @@ validatorFns[IS_PROBABLY_EMAIL] = (value, args, form) => {
|
|
|
40371
40355
|
return new RegExp(/^\S+@\S+\.\S+$/).test(value);
|
|
40372
40356
|
};
|
|
40373
40357
|
|
|
40374
|
-
const VALID_NAME = 'validator/VALID_NAME';
|
|
40375
|
-
const VALID_NAME_ERROR = 'validator/VALID_NAME_ERROR';
|
|
40376
|
-
const validName = createValidator(VALID_NAME, VALID_NAME_ERROR);
|
|
40377
|
-
validatorFns[VALID_NAME] = (value, args, form) =>
|
|
40378
|
-
value === ''
|
|
40379
|
-
? false
|
|
40380
|
-
: new RegExp(/[A-zÀ-ÿ\-,'\S]+(\s?[A-zÀ-ÿ\-,'\S])*/).test(value);
|
|
40381
|
-
|
|
40382
40358
|
const runValidatorErrorMessage = (type) =>
|
|
40383
40359
|
`${type} was passed to runValidator, but that validator type does not exist.
|
|
40384
40360
|
Please check that you are only calling validator creator functions exported from
|
|
@@ -40725,9 +40701,9 @@ AddressForm.reducer = reducer;
|
|
|
40725
40701
|
AddressForm.mapStateToProps = mapStateToProps$1;
|
|
40726
40702
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
40727
40703
|
|
|
40728
|
-
var backgroundColor$
|
|
40729
|
-
var fallbackValues$
|
|
40730
|
-
backgroundColor: backgroundColor$
|
|
40704
|
+
var backgroundColor$8 = "#ebeffb";
|
|
40705
|
+
var fallbackValues$F = {
|
|
40706
|
+
backgroundColor: backgroundColor$8
|
|
40731
40707
|
};
|
|
40732
40708
|
|
|
40733
40709
|
var Banner = function Banner(_ref) {
|
|
@@ -40775,7 +40751,7 @@ var Banner = function Banner(_ref) {
|
|
|
40775
40751
|
extraStyles: isMobile && "> svg { width: 176px; }"
|
|
40776
40752
|
}, /*#__PURE__*/React.createElement(Image, null))));
|
|
40777
40753
|
};
|
|
40778
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
40754
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$F);
|
|
40779
40755
|
|
|
40780
40756
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
40781
40757
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -40909,7 +40885,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
40909
40885
|
var titleColor$1 = "#292A33";
|
|
40910
40886
|
var headingBackgroundColor = "transparent";
|
|
40911
40887
|
var bodyBackgroundColor = "transparent";
|
|
40912
|
-
var fallbackValues$
|
|
40888
|
+
var fallbackValues$G = {
|
|
40913
40889
|
titleColor: titleColor$1,
|
|
40914
40890
|
headingBackgroundColor: headingBackgroundColor,
|
|
40915
40891
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -41034,7 +41010,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
41034
41010
|
"aria-labelledby": "".concat(id, "-button")
|
|
41035
41011
|
}, children))));
|
|
41036
41012
|
};
|
|
41037
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
41013
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$G);
|
|
41038
41014
|
|
|
41039
41015
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
41040
41016
|
var themeValues = _ref.themeValues;
|
|
@@ -41613,7 +41589,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
41613
41589
|
|
|
41614
41590
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
41615
41591
|
var subfooterBackgroundColor = STORM_GREY;
|
|
41616
|
-
var fallbackValues$
|
|
41592
|
+
var fallbackValues$H = {
|
|
41617
41593
|
footerBackgroundColor: footerBackgroundColor,
|
|
41618
41594
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
41619
41595
|
};
|
|
@@ -41644,7 +41620,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
41644
41620
|
rightContent: rightSubfooterContent
|
|
41645
41621
|
}));
|
|
41646
41622
|
};
|
|
41647
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
41623
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$H);
|
|
41648
41624
|
|
|
41649
41625
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
41650
41626
|
var fields = _ref.fields,
|
|
@@ -41690,10 +41666,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
|
|
|
41690
41666
|
ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
41691
41667
|
|
|
41692
41668
|
var textColor$4 = "#ffffff";
|
|
41693
|
-
var backgroundColor$
|
|
41694
|
-
var fallbackValues$
|
|
41669
|
+
var backgroundColor$9 = "#182848";
|
|
41670
|
+
var fallbackValues$I = {
|
|
41695
41671
|
textColor: textColor$4,
|
|
41696
|
-
backgroundColor: backgroundColor$
|
|
41672
|
+
backgroundColor: backgroundColor$9
|
|
41697
41673
|
};
|
|
41698
41674
|
|
|
41699
41675
|
// this component needs some fix'n
|
|
@@ -41750,7 +41726,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
41750
41726
|
}, t));
|
|
41751
41727
|
}), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
|
|
41752
41728
|
};
|
|
41753
|
-
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
41729
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$I);
|
|
41754
41730
|
|
|
41755
41731
|
var AccountBillIcon = function AccountBillIcon() {
|
|
41756
41732
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -43215,23 +43191,23 @@ var disabledColor$1 = {
|
|
|
43215
43191
|
var activeBackgroundColor$1 = {
|
|
43216
43192
|
primary: CORNFLOWER_BLUE
|
|
43217
43193
|
};
|
|
43218
|
-
var backgroundColor$
|
|
43194
|
+
var backgroundColor$a = {
|
|
43219
43195
|
primary: LINK_WATER
|
|
43220
43196
|
};
|
|
43221
43197
|
var borderColor$5 = {
|
|
43222
43198
|
primary: MOON_RAKER
|
|
43223
43199
|
};
|
|
43224
|
-
var color$
|
|
43200
|
+
var color$b = {
|
|
43225
43201
|
primary: ROYAL_BLUE_VIVID
|
|
43226
43202
|
};
|
|
43227
|
-
var fallbackValues$
|
|
43203
|
+
var fallbackValues$J = {
|
|
43228
43204
|
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
43229
43205
|
disabledBorderColor: disabledBorderColor$1,
|
|
43230
43206
|
disabledColor: disabledColor$1,
|
|
43231
43207
|
activeBackgroundColor: activeBackgroundColor$1,
|
|
43232
|
-
backgroundColor: backgroundColor$
|
|
43208
|
+
backgroundColor: backgroundColor$a,
|
|
43233
43209
|
borderColor: borderColor$5,
|
|
43234
|
-
color: color$
|
|
43210
|
+
color: color$b
|
|
43235
43211
|
};
|
|
43236
43212
|
|
|
43237
43213
|
var Container = styled(Box).withConfig({
|
|
@@ -43345,7 +43321,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
43345
43321
|
extraStyles: "margin-right: auto;"
|
|
43346
43322
|
}), showRight && !!rightContent && rightContent))));
|
|
43347
43323
|
};
|
|
43348
|
-
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$
|
|
43324
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$J, "primary");
|
|
43349
43325
|
|
|
43350
43326
|
var LoginForm = function LoginForm(_ref) {
|
|
43351
43327
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -47335,7 +47311,7 @@ var Modal$3 = function Modal(_ref) {
|
|
|
47335
47311
|
return /*#__PURE__*/React.createElement(ModalControl, rest);
|
|
47336
47312
|
};
|
|
47337
47313
|
|
|
47338
|
-
var backgroundColor$
|
|
47314
|
+
var backgroundColor$b = {
|
|
47339
47315
|
profile: "#3b414d",
|
|
47340
47316
|
cms: "#3b414d"
|
|
47341
47317
|
};
|
|
@@ -47343,8 +47319,8 @@ var shadowColor = {
|
|
|
47343
47319
|
profile: "#292A33",
|
|
47344
47320
|
cms: "#292A33"
|
|
47345
47321
|
};
|
|
47346
|
-
var fallbackValues$
|
|
47347
|
-
backgroundColor: backgroundColor$
|
|
47322
|
+
var fallbackValues$K = {
|
|
47323
|
+
backgroundColor: backgroundColor$b,
|
|
47348
47324
|
shadowColor: shadowColor
|
|
47349
47325
|
};
|
|
47350
47326
|
|
|
@@ -47383,7 +47359,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
47383
47359
|
onBlur: onBlur
|
|
47384
47360
|
}, menuContent));
|
|
47385
47361
|
};
|
|
47386
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
47362
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
|
|
47387
47363
|
|
|
47388
47364
|
var menu = posed.div({
|
|
47389
47365
|
invisible: {
|
|
@@ -47443,7 +47419,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
47443
47419
|
background: themeValues.backgroundColor
|
|
47444
47420
|
}, menuContent));
|
|
47445
47421
|
};
|
|
47446
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
47422
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
|
|
47447
47423
|
|
|
47448
47424
|
var IconsModule = function IconsModule(_ref) {
|
|
47449
47425
|
var icon = _ref.icon,
|
|
@@ -47491,14 +47467,14 @@ var TitleModule = function TitleModule(_ref) {
|
|
|
47491
47467
|
}, subtitle)));
|
|
47492
47468
|
};
|
|
47493
47469
|
|
|
47494
|
-
var color$
|
|
47470
|
+
var color$c = "#15749D";
|
|
47495
47471
|
var hoverColor$5 = "#116285";
|
|
47496
47472
|
var activeColor$8 = "#0E506D";
|
|
47497
47473
|
var linkColor$4 = "#3176AA";
|
|
47498
47474
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
47499
47475
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
47500
|
-
var fallbackValues$
|
|
47501
|
-
color: color$
|
|
47476
|
+
var fallbackValues$L = {
|
|
47477
|
+
color: color$c,
|
|
47502
47478
|
hoverColor: hoverColor$5,
|
|
47503
47479
|
activeColor: activeColor$8,
|
|
47504
47480
|
linkColor: linkColor$4,
|
|
@@ -47623,7 +47599,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
47623
47599
|
modalOpen: modalOpen
|
|
47624
47600
|
}, modalExtraProps), renderAutoPayControl());
|
|
47625
47601
|
};
|
|
47626
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
47602
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
|
|
47627
47603
|
|
|
47628
47604
|
var AmountModule = function AmountModule(_ref) {
|
|
47629
47605
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -48200,6 +48176,39 @@ var Obligation = function Obligation(_ref) {
|
|
|
48200
48176
|
return inactive ? inactiveObligation : activeObligation;
|
|
48201
48177
|
};
|
|
48202
48178
|
|
|
48179
|
+
var PartialAmountField = function PartialAmountField(_ref) {
|
|
48180
|
+
var lineItem = _ref.lineItem,
|
|
48181
|
+
field = _ref.field,
|
|
48182
|
+
showErrors = _ref.showErrors,
|
|
48183
|
+
errorMessages = _ref.errorMessages,
|
|
48184
|
+
moneyFormat = _ref.moneyFormat,
|
|
48185
|
+
fieldActions = _ref.fieldActions;
|
|
48186
|
+
return /*#__PURE__*/React.createElement(FormInput$1, {
|
|
48187
|
+
labelTextWhenNoError: lineItem.description,
|
|
48188
|
+
key: lineItem.id,
|
|
48189
|
+
field: field,
|
|
48190
|
+
fieldActions: fieldActions,
|
|
48191
|
+
showErrors: showErrors,
|
|
48192
|
+
errorMessages: errorMessages,
|
|
48193
|
+
style: {
|
|
48194
|
+
textAlign: "right"
|
|
48195
|
+
},
|
|
48196
|
+
placeholder: "$0.00",
|
|
48197
|
+
formatter: moneyFormat,
|
|
48198
|
+
isNum: true,
|
|
48199
|
+
decorator: /*#__PURE__*/React.createElement(Text$1, {
|
|
48200
|
+
variant: "p"
|
|
48201
|
+
}, "Amount owed:", " ", /*#__PURE__*/React.createElement(Text$1, {
|
|
48202
|
+
variant: "p",
|
|
48203
|
+
weight: "600"
|
|
48204
|
+
}, displayCurrency(lineItem.amount)))
|
|
48205
|
+
});
|
|
48206
|
+
};
|
|
48207
|
+
function arePropsEqual(prevProps, nextProps) {
|
|
48208
|
+
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);
|
|
48209
|
+
}
|
|
48210
|
+
var PartialAmountField$1 = /*#__PURE__*/React.memo(PartialAmountField, arePropsEqual);
|
|
48211
|
+
|
|
48203
48212
|
var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
48204
48213
|
var _ref$variant = _ref.variant,
|
|
48205
48214
|
variant = _ref$variant === void 0 ? "default" : _ref$variant,
|
|
@@ -48243,25 +48252,15 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
48243
48252
|
height: "16px"
|
|
48244
48253
|
}
|
|
48245
48254
|
}), /*#__PURE__*/React.createElement(FormInputColumn, null, lineItemsNew.map(function (li) {
|
|
48246
|
-
return /*#__PURE__*/React.createElement(
|
|
48247
|
-
labelTextWhenNoError: li.description,
|
|
48255
|
+
return /*#__PURE__*/React.createElement(PartialAmountField$1, {
|
|
48248
48256
|
key: li.id,
|
|
48257
|
+
lineItem: li,
|
|
48249
48258
|
field: fields[li.id],
|
|
48250
|
-
|
|
48259
|
+
actions: actions,
|
|
48251
48260
|
showErrors: showErrors,
|
|
48252
|
-
|
|
48253
|
-
|
|
48254
|
-
|
|
48255
|
-
},
|
|
48256
|
-
placeholder: "$0.00",
|
|
48257
|
-
formatter: moneyFormat,
|
|
48258
|
-
isNum: true,
|
|
48259
|
-
decorator: /*#__PURE__*/React.createElement(Text$1, {
|
|
48260
|
-
variant: "p"
|
|
48261
|
-
}, "Amount owed:", " ", /*#__PURE__*/React.createElement(Text$1, {
|
|
48262
|
-
variant: "p",
|
|
48263
|
-
weight: "600"
|
|
48264
|
-
}, displayCurrency(li.amount)))
|
|
48261
|
+
moneyFormat: moneyFormat,
|
|
48262
|
+
fieldActions: actions.fields[li.id],
|
|
48263
|
+
errorMessages: getPartialAmountFormErrors(li.amount)
|
|
48265
48264
|
});
|
|
48266
48265
|
})));
|
|
48267
48266
|
};
|
|
@@ -48313,7 +48312,7 @@ var numberColor = MATISSE_BLUE;
|
|
|
48313
48312
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
48314
48313
|
var activeBackgroundColor$2 = WHITE;
|
|
48315
48314
|
var activeColor$9 = MATISSE_BLUE;
|
|
48316
|
-
var fallbackValues$
|
|
48315
|
+
var fallbackValues$M = {
|
|
48317
48316
|
activeColor: activeColor$9,
|
|
48318
48317
|
activeBackgroundColor: activeBackgroundColor$2,
|
|
48319
48318
|
arrowColor: arrowColor,
|
|
@@ -48507,7 +48506,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
48507
48506
|
buttonWidth: buttonWidth
|
|
48508
48507
|
}));
|
|
48509
48508
|
};
|
|
48510
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
48509
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
|
|
48511
48510
|
|
|
48512
48511
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
48513
48512
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -48588,7 +48587,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
48588
48587
|
}, !hideBackButton && /*#__PURE__*/React.createElement(Fragment$1, null, backButton), !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton), !hideAdditionalButton && /*#__PURE__*/React.createElement(Fragment$1, null, additionalButton))));
|
|
48589
48588
|
};
|
|
48590
48589
|
|
|
48591
|
-
var backgroundColor$
|
|
48590
|
+
var backgroundColor$c = {
|
|
48592
48591
|
"default": "transparent",
|
|
48593
48592
|
small: "transparent"
|
|
48594
48593
|
};
|
|
@@ -48604,8 +48603,8 @@ var labeledAmountTotal = {
|
|
|
48604
48603
|
"default": "large",
|
|
48605
48604
|
small: "small"
|
|
48606
48605
|
};
|
|
48607
|
-
var fallbackValues$
|
|
48608
|
-
backgroundColor: backgroundColor$
|
|
48606
|
+
var fallbackValues$N = {
|
|
48607
|
+
backgroundColor: backgroundColor$c,
|
|
48609
48608
|
lineItem: lineItem,
|
|
48610
48609
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
48611
48610
|
labeledAmountTotal: labeledAmountTotal
|
|
@@ -48975,7 +48974,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48975
48974
|
isError: isError
|
|
48976
48975
|
});
|
|
48977
48976
|
};
|
|
48978
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48977
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
|
|
48979
48978
|
|
|
48980
48979
|
var linkColor$5 = {
|
|
48981
48980
|
"default": "#3176AA"
|
|
@@ -48995,7 +48994,7 @@ var modalLinkHoverFocus$1 = {
|
|
|
48995
48994
|
var linkTextDecoration = {
|
|
48996
48995
|
"default": LINK_TEXT_DECORATION
|
|
48997
48996
|
};
|
|
48998
|
-
var fallbackValues$
|
|
48997
|
+
var fallbackValues$O = {
|
|
48999
48998
|
linkColor: linkColor$5,
|
|
49000
48999
|
fontSize: fontSize$a,
|
|
49001
49000
|
lineHeight: lineHeight$4,
|
|
@@ -49059,9 +49058,9 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
49059
49058
|
}, link)
|
|
49060
49059
|
}));
|
|
49061
49060
|
};
|
|
49062
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
49061
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
|
|
49063
49062
|
|
|
49064
|
-
var backgroundColor$
|
|
49063
|
+
var backgroundColor$d = {
|
|
49065
49064
|
"default": "#ffffff",
|
|
49066
49065
|
footer: "#ffffff"
|
|
49067
49066
|
};
|
|
@@ -49094,8 +49093,8 @@ var modalLinkTextDecoration = {
|
|
|
49094
49093
|
"default": LINK_TEXT_DECORATION,
|
|
49095
49094
|
footer: "none"
|
|
49096
49095
|
};
|
|
49097
|
-
var fallbackValues$
|
|
49098
|
-
backgroundColor: backgroundColor$
|
|
49096
|
+
var fallbackValues$P = {
|
|
49097
|
+
backgroundColor: backgroundColor$d,
|
|
49099
49098
|
linkColor: linkColor$6,
|
|
49100
49099
|
border: border$3,
|
|
49101
49100
|
fontSize: fontSize$b,
|
|
@@ -49166,7 +49165,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
49166
49165
|
className: "modal-trigger"
|
|
49167
49166
|
}, link));
|
|
49168
49167
|
};
|
|
49169
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
49168
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
|
|
49170
49169
|
|
|
49171
49170
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
49172
49171
|
var onCheck = _ref.onCheck,
|
|
@@ -49929,7 +49928,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
49929
49928
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49930
49929
|
var borderColor$6 = "".concat(GHOST_GREY);
|
|
49931
49930
|
var focusStyles = "outline: none;";
|
|
49932
|
-
var fallbackValues$
|
|
49931
|
+
var fallbackValues$Q = {
|
|
49933
49932
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49934
49933
|
headingDisabledColor: headingDisabledColor,
|
|
49935
49934
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -50019,10 +50018,10 @@ var InnerRadioSection = function InnerRadioSection(_ref) {
|
|
|
50019
50018
|
"aria-required": section.required,
|
|
50020
50019
|
"aria-labelledby": ariaLabelledBy,
|
|
50021
50020
|
"aria-describedby": ariaDescribedBy,
|
|
50022
|
-
onClick: isMobile && supportsTouch || section.disabled ? noop : function () {
|
|
50021
|
+
onClick: isMobile && supportsTouch || section.disabled || section.id === openSection ? noop : function () {
|
|
50023
50022
|
return toggleOpenSection(section.id);
|
|
50024
50023
|
},
|
|
50025
|
-
onTouchEnd: isMobile && supportsTouch && !section.disabled ? function () {
|
|
50024
|
+
onTouchEnd: isMobile && supportsTouch && !section.disabled && section.id !== openSection ? function () {
|
|
50026
50025
|
return toggleOpenSection(section.id);
|
|
50027
50026
|
} : noop,
|
|
50028
50027
|
id: "inner-radio-section-".concat(sectionIndex),
|
|
@@ -50231,7 +50230,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
50231
50230
|
});
|
|
50232
50231
|
})));
|
|
50233
50232
|
};
|
|
50234
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
50233
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
|
|
50235
50234
|
|
|
50236
50235
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
50237
50236
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -50513,7 +50512,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
50513
50512
|
var activeTabBackground = "#FFFFFF";
|
|
50514
50513
|
var activeTabAccent = "#15749D";
|
|
50515
50514
|
var activeTabHover = "#B8D5E1";
|
|
50516
|
-
var fallbackValues$
|
|
50515
|
+
var fallbackValues$R = {
|
|
50517
50516
|
activeTabBackground: activeTabBackground,
|
|
50518
50517
|
activeTabAccent: activeTabAccent,
|
|
50519
50518
|
activeTabHover: activeTabHover
|
|
@@ -50581,12 +50580,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
50581
50580
|
}, tab.content);
|
|
50582
50581
|
}))));
|
|
50583
50582
|
};
|
|
50584
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
50583
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
|
|
50585
50584
|
|
|
50586
50585
|
var activeTabBackground$1 = "#FFFFFF";
|
|
50587
50586
|
var activeTabAccent$1 = "#15749D";
|
|
50588
50587
|
var activeTabHover$1 = "#B8D5E1";
|
|
50589
|
-
var fallbackValues$
|
|
50588
|
+
var fallbackValues$S = {
|
|
50590
50589
|
activeTabBackground: activeTabBackground$1,
|
|
50591
50590
|
activeTabAccent: activeTabAccent$1,
|
|
50592
50591
|
activeTabHover: activeTabHover$1
|
|
@@ -50641,7 +50640,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
50641
50640
|
}, text)))));
|
|
50642
50641
|
})));
|
|
50643
50642
|
};
|
|
50644
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
50643
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
|
|
50645
50644
|
|
|
50646
50645
|
var Timeout = function Timeout(_ref) {
|
|
50647
50646
|
var onLogout = _ref.onLogout;
|
|
@@ -50733,7 +50732,7 @@ var fontColor$1 = WHITE;
|
|
|
50733
50732
|
var textAlign$1 = "left";
|
|
50734
50733
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
50735
50734
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
50736
|
-
var fallbackValues$
|
|
50735
|
+
var fallbackValues$T = {
|
|
50737
50736
|
fontWeight: fontWeight$9,
|
|
50738
50737
|
fontColor: fontColor$1,
|
|
50739
50738
|
textAlign: textAlign$1,
|
|
@@ -50778,7 +50777,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
50778
50777
|
src: welcomeImage
|
|
50779
50778
|
})))));
|
|
50780
50779
|
};
|
|
50781
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
50780
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
|
|
50782
50781
|
|
|
50783
50782
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
50784
50783
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -50838,7 +50837,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
50838
50837
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
50839
50838
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
50840
50839
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
50841
|
-
var fallbackValues$
|
|
50840
|
+
var fallbackValues$U = {
|
|
50842
50841
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
50843
50842
|
menuItemColor: menuItemColor,
|
|
50844
50843
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -50905,17 +50904,17 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
50905
50904
|
extraStyles: textExtraStyles
|
|
50906
50905
|
}, text)));
|
|
50907
50906
|
};
|
|
50908
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
50907
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$U);
|
|
50909
50908
|
|
|
50910
50909
|
var hoverColor$6 = "#116285";
|
|
50911
50910
|
var activeColor$a = "#0E506D";
|
|
50912
50911
|
var menuTriggerColor = "#15749D";
|
|
50913
|
-
var backgroundColor$
|
|
50914
|
-
var fallbackValues$
|
|
50912
|
+
var backgroundColor$e = "white";
|
|
50913
|
+
var fallbackValues$V = {
|
|
50915
50914
|
hoverColor: hoverColor$6,
|
|
50916
50915
|
activeColor: activeColor$a,
|
|
50917
50916
|
menuTriggerColor: menuTriggerColor,
|
|
50918
|
-
backgroundColor: backgroundColor$
|
|
50917
|
+
backgroundColor: backgroundColor$e
|
|
50919
50918
|
};
|
|
50920
50919
|
|
|
50921
50920
|
var PopupMenuContainer = styled(Box).withConfig({
|
|
@@ -51047,10 +51046,10 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
51047
51046
|
}, item));
|
|
51048
51047
|
})));
|
|
51049
51048
|
};
|
|
51050
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$
|
|
51049
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$V);
|
|
51051
51050
|
|
|
51052
51051
|
var pageBackground = "#FBFCFD";
|
|
51053
|
-
var fallbackValues$
|
|
51052
|
+
var fallbackValues$W = {
|
|
51054
51053
|
pageBackground: pageBackground
|
|
51055
51054
|
};
|
|
51056
51055
|
|
|
@@ -51098,7 +51097,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
51098
51097
|
padding: "0"
|
|
51099
51098
|
})));
|
|
51100
51099
|
};
|
|
51101
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
51100
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$W));
|
|
51102
51101
|
|
|
51103
51102
|
var CenterStack = function CenterStack(_ref) {
|
|
51104
51103
|
var header = _ref.header,
|
|
@@ -51141,7 +51140,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
51141
51140
|
padding: "0"
|
|
51142
51141
|
})));
|
|
51143
51142
|
};
|
|
51144
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
51143
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$W));
|
|
51145
51144
|
|
|
51146
51145
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
51147
51146
|
var header = _ref.header,
|
|
@@ -51187,7 +51186,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
51187
51186
|
padding: "0"
|
|
51188
51187
|
})));
|
|
51189
51188
|
};
|
|
51190
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
51189
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$W));
|
|
51191
51190
|
|
|
51192
51191
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
51193
51192
|
var header = _ref.header,
|
|
@@ -51240,7 +51239,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
51240
51239
|
padding: "0"
|
|
51241
51240
|
})));
|
|
51242
51241
|
};
|
|
51243
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
51242
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$W));
|
|
51244
51243
|
|
|
51245
51244
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
51246
51245
|
var header = _ref.header,
|
|
@@ -51310,7 +51309,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
51310
51309
|
key: "footer-box"
|
|
51311
51310
|
})));
|
|
51312
51311
|
};
|
|
51313
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
51312
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$W));
|
|
51314
51313
|
|
|
51315
51314
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
51316
51315
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -51342,5 +51341,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
|
|
|
51342
51341
|
useToastNotification: useToastNotification
|
|
51343
51342
|
});
|
|
51344
51343
|
|
|
51345
|
-
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, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, 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$3 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, WalletName
|
|
51344
|
+
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, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, 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$3 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, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
|
|
51346
51345
|
//# sourceMappingURL=index.esm.js.map
|