@thecb/components 8.0.4-beta.2 → 8.0.4-beta.3
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 +1316 -244
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.esm.js +1314 -245
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -4879,7 +4879,7 @@ var createThemeValues = function createThemeValues(themeContext, fallbackValues,
|
|
|
4879
4879
|
}, {});
|
|
4880
4880
|
return createdTheme;
|
|
4881
4881
|
};
|
|
4882
|
-
var themeComponent
|
|
4882
|
+
var themeComponent = function themeComponent(component, componentThemeId, fallbackValues, defaultVariant) {
|
|
4883
4883
|
return function (_ref7) {
|
|
4884
4884
|
var _themeContext$metadat;
|
|
4885
4885
|
|
|
@@ -4919,7 +4919,7 @@ export const generateImgSrc = (
|
|
|
4919
4919
|
var themeUtils = /*#__PURE__*/Object.freeze({
|
|
4920
4920
|
__proto__: null,
|
|
4921
4921
|
createThemeValues: createThemeValues,
|
|
4922
|
-
themeComponent: themeComponent
|
|
4922
|
+
themeComponent: themeComponent
|
|
4923
4923
|
});
|
|
4924
4924
|
|
|
4925
4925
|
/* These are constants used by nav frontend components */
|
|
@@ -4959,7 +4959,8 @@ var SEASHELL_WHITE = "#F1F1F1";
|
|
|
4959
4959
|
var ALABASTER_WHITE = "#F7F7F7";
|
|
4960
4960
|
var AQUA_HAZE_WHITE = "#F7F9FA";
|
|
4961
4961
|
var BLEACH_WHITE = "#FEF4d7";
|
|
4962
|
-
var CATSKILL_WHITE = "#EAF2F6";
|
|
4962
|
+
var CATSKILL_WHITE = "#EAF2F6";
|
|
4963
|
+
var HALF_COLONIAL_WHITE = "#FDF4D2"; // GREY
|
|
4963
4964
|
|
|
4964
4965
|
var ATHENS_GREY = "#F6F6F9"; // CBS-100
|
|
4965
4966
|
|
|
@@ -5066,6 +5067,25 @@ var ALERT_COLORS = {
|
|
|
5066
5067
|
},
|
|
5067
5068
|
text: ZODIAC_BLUE,
|
|
5068
5069
|
link: SCIENCE_BLUE
|
|
5070
|
+
}; // These colors match the pill components seen in CityBase UI designs.
|
|
5071
|
+
|
|
5072
|
+
var PILL_COLORS = {
|
|
5073
|
+
danger: {
|
|
5074
|
+
background: BLUSH_RED,
|
|
5075
|
+
text: RAZZMATAZZ_RED
|
|
5076
|
+
},
|
|
5077
|
+
neutral: {
|
|
5078
|
+
background: GRECIAN_GREY,
|
|
5079
|
+
text: CHARADE_GREY
|
|
5080
|
+
},
|
|
5081
|
+
success: {
|
|
5082
|
+
background: HINT_GREEN,
|
|
5083
|
+
text: SEA_GREEN
|
|
5084
|
+
},
|
|
5085
|
+
warning: {
|
|
5086
|
+
background: HALF_COLONIAL_WHITE,
|
|
5087
|
+
text: ZEST_ORANGE
|
|
5088
|
+
}
|
|
5069
5089
|
};
|
|
5070
5090
|
|
|
5071
5091
|
var colors = /*#__PURE__*/Object.freeze({
|
|
@@ -5079,6 +5099,7 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
5079
5099
|
AQUA_HAZE_WHITE: AQUA_HAZE_WHITE,
|
|
5080
5100
|
BLEACH_WHITE: BLEACH_WHITE,
|
|
5081
5101
|
CATSKILL_WHITE: CATSKILL_WHITE,
|
|
5102
|
+
HALF_COLONIAL_WHITE: HALF_COLONIAL_WHITE,
|
|
5082
5103
|
ATHENS_GREY: ATHENS_GREY,
|
|
5083
5104
|
ALTO_GREY: ALTO_GREY,
|
|
5084
5105
|
SILVER_GREY: SILVER_GREY,
|
|
@@ -5142,6 +5163,7 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
5142
5163
|
BLUSH_RED: BLUSH_RED,
|
|
5143
5164
|
RASPBERRY: RASPBERRY,
|
|
5144
5165
|
ALERT_COLORS: ALERT_COLORS,
|
|
5166
|
+
PILL_COLORS: PILL_COLORS,
|
|
5145
5167
|
ERROR_COLOR: ERROR_COLOR
|
|
5146
5168
|
});
|
|
5147
5169
|
|
|
@@ -6384,7 +6406,7 @@ var Text = function Text(_ref) {
|
|
|
6384
6406
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
6385
6407
|
};
|
|
6386
6408
|
|
|
6387
|
-
var Text$1 = themeComponent
|
|
6409
|
+
var Text$1 = themeComponent(Text, "Text", fallbackValues$1, "p");
|
|
6388
6410
|
|
|
6389
6411
|
var _excluded$2 = ["activeStyles", "hoverStyles", "disabledStyles", "extraStyles", "borderSize", "borderColor", "borderWidthOverride", "borderRadius", "textAlign", "boxShadow", "minHeight", "minWidth", "maxWidth", "padding", "hiddenStyles", "ariaControls", "ariaLabel"];
|
|
6390
6412
|
/*
|
|
@@ -6464,8 +6486,9 @@ var BoxWrapper = styled(function (_ref) {
|
|
|
6464
6486
|
return textAlign;
|
|
6465
6487
|
}, function (_ref14) {
|
|
6466
6488
|
var hoverStyles = _ref14.hoverStyles,
|
|
6467
|
-
as = _ref14.as
|
|
6468
|
-
|
|
6489
|
+
as = _ref14.as,
|
|
6490
|
+
disabled = _ref14.disabled;
|
|
6491
|
+
return css(["", " ", ""], hoverStyles, as === "button" && !disabled ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
6469
6492
|
}, function (_ref15) {
|
|
6470
6493
|
var as = _ref15.as;
|
|
6471
6494
|
return css(["outline:3px solid ", ";outline-offset:2px;", ""], ROYAL_BLUE, as === "button" && "\n > * > span {\n border: none;\n outline: none;\n box-shadow: none;\n }");
|
|
@@ -12996,7 +13019,7 @@ var AccountsIcon = function AccountsIcon(_ref) {
|
|
|
12996
13019
|
})));
|
|
12997
13020
|
};
|
|
12998
13021
|
|
|
12999
|
-
var AccountsIcon$1 = themeComponent
|
|
13022
|
+
var AccountsIcon$1 = themeComponent(AccountsIcon, "Icons", fallbackValues$3, "info");
|
|
13000
13023
|
|
|
13001
13024
|
var AccountsAddIcon = function AccountsAddIcon(_ref) {
|
|
13002
13025
|
var themeValues = _ref.themeValues;
|
|
@@ -13035,7 +13058,7 @@ var AccountsAddIcon = function AccountsAddIcon(_ref) {
|
|
|
13035
13058
|
})));
|
|
13036
13059
|
};
|
|
13037
13060
|
|
|
13038
|
-
var AccountsAddIcon$1 = themeComponent
|
|
13061
|
+
var AccountsAddIcon$1 = themeComponent(AccountsAddIcon, "Icons", fallbackValues$3, "info");
|
|
13039
13062
|
|
|
13040
13063
|
var ForgotPasswordIcon = function ForgotPasswordIcon(_ref) {
|
|
13041
13064
|
var themeValues = _ref.themeValues;
|
|
@@ -13073,7 +13096,7 @@ var ForgotPasswordIcon = function ForgotPasswordIcon(_ref) {
|
|
|
13073
13096
|
})));
|
|
13074
13097
|
};
|
|
13075
13098
|
|
|
13076
|
-
var ForgotPasswordIcon$1 = themeComponent
|
|
13099
|
+
var ForgotPasswordIcon$1 = themeComponent(ForgotPasswordIcon, "Icons", fallbackValues$3, "info");
|
|
13077
13100
|
|
|
13078
13101
|
var GoToEmailIcon = function GoToEmailIcon(_ref) {
|
|
13079
13102
|
var themeValues = _ref.themeValues;
|
|
@@ -13103,7 +13126,7 @@ var GoToEmailIcon = function GoToEmailIcon(_ref) {
|
|
|
13103
13126
|
})));
|
|
13104
13127
|
};
|
|
13105
13128
|
|
|
13106
|
-
var GoToEmailIcon$1 = themeComponent
|
|
13129
|
+
var GoToEmailIcon$1 = themeComponent(GoToEmailIcon, "Icons", fallbackValues$3, "info");
|
|
13107
13130
|
|
|
13108
13131
|
var VerifiedEmailIcon = function VerifiedEmailIcon(_ref) {
|
|
13109
13132
|
var themeValues = _ref.themeValues;
|
|
@@ -13147,7 +13170,7 @@ var VerifiedEmailIcon = function VerifiedEmailIcon(_ref) {
|
|
|
13147
13170
|
})));
|
|
13148
13171
|
};
|
|
13149
13172
|
|
|
13150
|
-
var VerifiedEmailIcon$1 = themeComponent
|
|
13173
|
+
var VerifiedEmailIcon$1 = themeComponent(VerifiedEmailIcon, "Icons", fallbackValues$3, "info");
|
|
13151
13174
|
|
|
13152
13175
|
var PaymentMethodIcon = function PaymentMethodIcon(_ref) {
|
|
13153
13176
|
var themeValues = _ref.themeValues;
|
|
@@ -13182,7 +13205,7 @@ var PaymentMethodIcon = function PaymentMethodIcon(_ref) {
|
|
|
13182
13205
|
})));
|
|
13183
13206
|
};
|
|
13184
13207
|
|
|
13185
|
-
var PaymentMethodIcon$1 = themeComponent
|
|
13208
|
+
var PaymentMethodIcon$1 = themeComponent(PaymentMethodIcon, "Icons", fallbackValues$3, "info");
|
|
13186
13209
|
|
|
13187
13210
|
var AccountsIconSmall = function AccountsIconSmall(_ref) {
|
|
13188
13211
|
var themeValues = _ref.themeValues;
|
|
@@ -13221,7 +13244,7 @@ var AccountsIconSmall = function AccountsIconSmall(_ref) {
|
|
|
13221
13244
|
}))))))));
|
|
13222
13245
|
};
|
|
13223
13246
|
|
|
13224
|
-
var AccountsIconSmall$1 = themeComponent
|
|
13247
|
+
var AccountsIconSmall$1 = themeComponent(AccountsIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13225
13248
|
|
|
13226
13249
|
var PaymentsIconSmall = function PaymentsIconSmall(_ref) {
|
|
13227
13250
|
var themeValues = _ref.themeValues;
|
|
@@ -13272,7 +13295,7 @@ var PaymentsIconSmall = function PaymentsIconSmall(_ref) {
|
|
|
13272
13295
|
}))))))));
|
|
13273
13296
|
};
|
|
13274
13297
|
|
|
13275
|
-
var PaymentsIconSmall$1 = themeComponent
|
|
13298
|
+
var PaymentsIconSmall$1 = themeComponent(PaymentsIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13276
13299
|
|
|
13277
13300
|
var PaymentMethodAddIcon = function PaymentMethodAddIcon(_ref) {
|
|
13278
13301
|
var themeValues = _ref.themeValues;
|
|
@@ -13336,7 +13359,7 @@ var PaymentMethodAddIcon = function PaymentMethodAddIcon(_ref) {
|
|
|
13336
13359
|
})))))));
|
|
13337
13360
|
};
|
|
13338
13361
|
|
|
13339
|
-
var PaymentMethodAddIcon$1 = themeComponent
|
|
13362
|
+
var PaymentMethodAddIcon$1 = themeComponent(PaymentMethodAddIcon, "Icons", fallbackValues$3, "info");
|
|
13340
13363
|
|
|
13341
13364
|
var ProfileIconSmall = function ProfileIconSmall(_ref) {
|
|
13342
13365
|
var themeValues = _ref.themeValues;
|
|
@@ -13365,7 +13388,7 @@ var ProfileIconSmall = function ProfileIconSmall(_ref) {
|
|
|
13365
13388
|
})))));
|
|
13366
13389
|
};
|
|
13367
13390
|
|
|
13368
|
-
var ProfileIconSmall$1 = themeComponent
|
|
13391
|
+
var ProfileIconSmall$1 = themeComponent(ProfileIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13369
13392
|
|
|
13370
13393
|
var SettingsIconSmall = function SettingsIconSmall(_ref) {
|
|
13371
13394
|
var themeValues = _ref.themeValues;
|
|
@@ -13416,7 +13439,7 @@ var SettingsIconSmall = function SettingsIconSmall(_ref) {
|
|
|
13416
13439
|
}))))))));
|
|
13417
13440
|
};
|
|
13418
13441
|
|
|
13419
|
-
var SettingsIconSmall$1 = themeComponent
|
|
13442
|
+
var SettingsIconSmall$1 = themeComponent(SettingsIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13420
13443
|
|
|
13421
13444
|
var WalletIconSmall = function WalletIconSmall(_ref) {
|
|
13422
13445
|
var themeValues = _ref.themeValues,
|
|
@@ -13457,7 +13480,7 @@ var WalletIconSmall = function WalletIconSmall(_ref) {
|
|
|
13457
13480
|
})));
|
|
13458
13481
|
};
|
|
13459
13482
|
|
|
13460
|
-
var WalletIconSmall$1 = themeComponent
|
|
13483
|
+
var WalletIconSmall$1 = themeComponent(WalletIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13461
13484
|
|
|
13462
13485
|
var ChevronIcon = function ChevronIcon(_ref) {
|
|
13463
13486
|
var themeValues = _ref.themeValues,
|
|
@@ -13499,7 +13522,7 @@ var ChevronIcon = function ChevronIcon(_ref) {
|
|
|
13499
13522
|
}))));
|
|
13500
13523
|
};
|
|
13501
13524
|
|
|
13502
|
-
var ChevronIcon$1 = themeComponent
|
|
13525
|
+
var ChevronIcon$1 = themeComponent(ChevronIcon, "Icons", fallbackValues$3, "secondary");
|
|
13503
13526
|
|
|
13504
13527
|
var PropertiesAddIcon = function PropertiesAddIcon(_ref) {
|
|
13505
13528
|
var themeValues = _ref.themeValues;
|
|
@@ -13568,7 +13591,7 @@ var PropertiesAddIcon = function PropertiesAddIcon(_ref) {
|
|
|
13568
13591
|
})))))));
|
|
13569
13592
|
};
|
|
13570
13593
|
|
|
13571
|
-
var PropertiesAddIcon$1 = themeComponent
|
|
13594
|
+
var PropertiesAddIcon$1 = themeComponent(PropertiesAddIcon, "Icons", fallbackValues$3, "info");
|
|
13572
13595
|
|
|
13573
13596
|
var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
|
|
13574
13597
|
var themeValues = _ref.themeValues;
|
|
@@ -13595,7 +13618,7 @@ var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
|
|
|
13595
13618
|
})));
|
|
13596
13619
|
};
|
|
13597
13620
|
|
|
13598
|
-
var PropertiesIconSmall$1 = themeComponent
|
|
13621
|
+
var PropertiesIconSmall$1 = themeComponent(PropertiesIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13599
13622
|
|
|
13600
13623
|
var AccountNumberImage = function AccountNumberImage() {
|
|
13601
13624
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -13784,16 +13807,16 @@ var CheckmarkIcon = function CheckmarkIcon() {
|
|
|
13784
13807
|
transform: "translate(672.000000, 64.000000)"
|
|
13785
13808
|
}, /*#__PURE__*/React.createElement("circle", {
|
|
13786
13809
|
id: "Oval-2",
|
|
13787
|
-
stroke:
|
|
13810
|
+
stroke: SEA_GREEN,
|
|
13788
13811
|
strokeWidth: "2",
|
|
13789
|
-
fill:
|
|
13812
|
+
fill: HINT_GREEN,
|
|
13790
13813
|
cx: "48",
|
|
13791
13814
|
cy: "48",
|
|
13792
13815
|
r: "48"
|
|
13793
13816
|
}), /*#__PURE__*/React.createElement("g", {
|
|
13794
13817
|
id: "Group-2",
|
|
13795
13818
|
transform: "translate(20.800000, 28.400000)",
|
|
13796
|
-
fill:
|
|
13819
|
+
fill: SEA_GREEN
|
|
13797
13820
|
}, /*#__PURE__*/React.createElement("polygon", {
|
|
13798
13821
|
id: "Rectangle-2",
|
|
13799
13822
|
transform: "translate(12.800000, 30.000000) rotate(-45.000000) translate(-12.800000, -30.000000) ",
|
|
@@ -14087,7 +14110,9 @@ var TimeoutImage = function TimeoutImage() {
|
|
|
14087
14110
|
})))));
|
|
14088
14111
|
};
|
|
14089
14112
|
|
|
14090
|
-
var AutopayOnIcon = function AutopayOnIcon() {
|
|
14113
|
+
var AutopayOnIcon = function AutopayOnIcon(_ref) {
|
|
14114
|
+
var _ref$color = _ref.color,
|
|
14115
|
+
color = _ref$color === void 0 ? SEA_GREEN : _ref$color;
|
|
14091
14116
|
return /*#__PURE__*/React.createElement("svg", {
|
|
14092
14117
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14093
14118
|
width: "12",
|
|
@@ -14100,7 +14125,7 @@ var AutopayOnIcon = function AutopayOnIcon() {
|
|
|
14100
14125
|
strokeWidth: "1"
|
|
14101
14126
|
}, /*#__PURE__*/React.createElement("path", {
|
|
14102
14127
|
className: "autopayIcon",
|
|
14103
|
-
fill:
|
|
14128
|
+
fill: color,
|
|
14104
14129
|
fillRule: "nonzero",
|
|
14105
14130
|
d: "M1.898 5.75c.079 0 .141-.02.188-.059a.281.281 0 00.094-.152 3.825 3.825 0 011.394-2.144A3.838 3.838 0 016 2.563c.5 0 .98.09 1.441.27.461.179.88.44 1.254.784l-.984.985A.542.542 0 007.547 5c0 .156.055.29.164.398.11.11.242.165.398.165h3.141c.156 0 .289-.055.398-.165A.542.542 0 0011.812 5V1.86a.542.542 0 00-.164-.399.542.542 0 00-.398-.164.542.542 0 00-.398.164l-.844.844A5.699 5.699 0 006 .688c-.938 0-1.809.207-2.613.62-.805.415-1.48.981-2.028 1.7A5.726 5.726 0 00.281 5.422a.265.265 0 00.059.223c.055.07.129.105.222.105h1.336zM6 12.312c.937 0 1.809-.207 2.613-.62a5.919 5.919 0 002.028-1.7 5.726 5.726 0 001.078-2.414.265.265 0 00-.059-.223.267.267 0 00-.223-.105h-1.335c-.079 0-.141.02-.188.059a.281.281 0 00-.094.152 3.825 3.825 0 01-1.394 2.144c-.711.555-1.52.833-2.426.833-.5 0-.98-.09-1.441-.27a3.985 3.985 0 01-1.254-.785l.984-.985A.542.542 0 004.453 8a.542.542 0 00-.164-.398.542.542 0 00-.398-.164H.75a.542.542 0 00-.398.164A.542.542 0 00.187 8v3.14c0 .157.055.29.165.4.109.108.242.163.398.163.156 0 .29-.055.398-.164l.844-.844A5.699 5.699 0 006 12.312z"
|
|
14106
14131
|
})));
|
|
@@ -14498,7 +14523,7 @@ var WalletIcon = function WalletIcon(_ref) {
|
|
|
14498
14523
|
}))));
|
|
14499
14524
|
};
|
|
14500
14525
|
|
|
14501
|
-
var WalletIcon$1 = themeComponent
|
|
14526
|
+
var WalletIcon$1 = themeComponent(WalletIcon, "Icons", fallbackValues$3, "info");
|
|
14502
14527
|
|
|
14503
14528
|
var AchReturnIcon = function AchReturnIcon() {
|
|
14504
14529
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -14731,7 +14756,29 @@ var FailedIcon = function FailedIcon() {
|
|
|
14731
14756
|
}))));
|
|
14732
14757
|
};
|
|
14733
14758
|
|
|
14734
|
-
var
|
|
14759
|
+
var PencilIcon = function PencilIcon(_ref) {
|
|
14760
|
+
var _ref$ariaLabel = _ref.ariaLabel,
|
|
14761
|
+
ariaLabel = _ref$ariaLabel === void 0 ? "Edit" : _ref$ariaLabel,
|
|
14762
|
+
themeValues = _ref.themeValues;
|
|
14763
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
14764
|
+
"aria-label": ariaLabel,
|
|
14765
|
+
width: "24px",
|
|
14766
|
+
height: "24px",
|
|
14767
|
+
fill: "none",
|
|
14768
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
14769
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
14770
|
+
fillRule: "evenodd",
|
|
14771
|
+
clipRule: "evenodd",
|
|
14772
|
+
d: "M19.74 6.84a.885.885 0 0 1 0 1.253l-1.626 1.626-3.333-3.333 1.626-1.626a.885.885 0 0 1 1.253 0l2.08 2.08ZM4 20.5v-3.333l9.83-9.83 3.333 3.333-9.83 9.83H4Z",
|
|
14773
|
+
fill: themeValues.subIconColor
|
|
14774
|
+
}));
|
|
14775
|
+
};
|
|
14776
|
+
|
|
14777
|
+
var PencilIcon$1 = themeComponent(PencilIcon, "Icons", fallbackValues$3, "info");
|
|
14778
|
+
|
|
14779
|
+
var PendingIcon = function PendingIcon(_ref) {
|
|
14780
|
+
var _ref$fill = _ref.fill,
|
|
14781
|
+
fill = _ref$fill === void 0 ? STORM_GREY : _ref$fill;
|
|
14735
14782
|
return /*#__PURE__*/React.createElement("svg", {
|
|
14736
14783
|
width: "32px",
|
|
14737
14784
|
height: "32px",
|
|
@@ -14748,7 +14795,7 @@ var PendingIcon = function PendingIcon() {
|
|
|
14748
14795
|
}, /*#__PURE__*/React.createElement("g", {
|
|
14749
14796
|
id: "Icons",
|
|
14750
14797
|
transform: "translate(-64.000000, -448.000000)",
|
|
14751
|
-
fill:
|
|
14798
|
+
fill: fill
|
|
14752
14799
|
}, /*#__PURE__*/React.createElement("path", {
|
|
14753
14800
|
d: "M80,480 C88.836556,480 96,472.836556 96,464 C96,455.163444 88.836556,448 80,448 C71.163444,448 64,455.163444 64,464 C64,472.836556 71.163444,480 80,480 Z M87,466 C88.1045695,466 89,465.104569 89,464 C89,462.895431 88.1045695,462 87,462 C85.8954305,462 85,462.895431 85,464 C85,465.104569 85.8954305,466 87,466 Z M80,462 C81.1045695,462 82,462.895431 82,464 C82,465.104569 81.1045695,466 80,466 C78.8954305,466 78,465.104569 78,464 C78,462.895431 78.8954305,462 80,462 Z M73,462 C74.1045695,462 75,462.895431 75,464 C75,465.104569 74.1045695,466 73,466 C71.8954305,466 71,465.104569 71,464 C71,462.895431 71.8954305,462 73,462 Z",
|
|
14754
14801
|
id: "status-icon---pending"
|
|
@@ -14939,7 +14986,7 @@ var CarrotIcon = function CarrotIcon(_ref) {
|
|
|
14939
14986
|
}))))))));
|
|
14940
14987
|
};
|
|
14941
14988
|
|
|
14942
|
-
var CarrotIcon$1 = themeComponent
|
|
14989
|
+
var CarrotIcon$1 = themeComponent(CarrotIcon, "Icons", fallbackValues$3, "darkMode");
|
|
14943
14990
|
|
|
14944
14991
|
var ProfileIcon = function ProfileIcon(_ref) {
|
|
14945
14992
|
var themeValues = _ref.themeValues;
|
|
@@ -14977,7 +15024,7 @@ var ProfileIcon = function ProfileIcon(_ref) {
|
|
|
14977
15024
|
}))));
|
|
14978
15025
|
};
|
|
14979
15026
|
|
|
14980
|
-
var ProfileIcon$1 = themeComponent
|
|
15027
|
+
var ProfileIcon$1 = themeComponent(ProfileIcon, "Icons", fallbackValues$3, "info");
|
|
14981
15028
|
|
|
14982
15029
|
var GenericCardLarge = function GenericCardLarge() {
|
|
14983
15030
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -15038,7 +15085,7 @@ var EmptyCartIcon = function EmptyCartIcon(_ref) {
|
|
|
15038
15085
|
})));
|
|
15039
15086
|
};
|
|
15040
15087
|
|
|
15041
|
-
var EmptyCartIcon$1 = themeComponent
|
|
15088
|
+
var EmptyCartIcon$1 = themeComponent(EmptyCartIcon, "Icons", fallbackValues$3, "info");
|
|
15042
15089
|
|
|
15043
15090
|
var ShoppingCartIcon = function ShoppingCartIcon() {
|
|
15044
15091
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -15110,7 +15157,7 @@ var TrashIcon = function TrashIcon(_ref) {
|
|
|
15110
15157
|
})));
|
|
15111
15158
|
};
|
|
15112
15159
|
|
|
15113
|
-
var TrashIcon$1 = themeComponent
|
|
15160
|
+
var TrashIcon$1 = themeComponent(TrashIcon, "Icons", fallbackValues$3, "primary");
|
|
15114
15161
|
|
|
15115
15162
|
var NoCustomerResultsIcon = function NoCustomerResultsIcon() {
|
|
15116
15163
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -15703,7 +15750,7 @@ var WalletBannerIcon = function WalletBannerIcon(_ref) {
|
|
|
15703
15750
|
}));
|
|
15704
15751
|
};
|
|
15705
15752
|
|
|
15706
|
-
var WalletBannerIcon$1 = themeComponent
|
|
15753
|
+
var WalletBannerIcon$1 = themeComponent(WalletBannerIcon, "Icons", fallbackValues$3, "primary");
|
|
15707
15754
|
|
|
15708
15755
|
var StandardCheckoutImage = function StandardCheckoutImage() {
|
|
15709
15756
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -16263,7 +16310,7 @@ var RevenueManagementImage = function RevenueManagementImage() {
|
|
|
16263
16310
|
fill: "#15749D"
|
|
16264
16311
|
}), /*#__PURE__*/React.createElement("path", {
|
|
16265
16312
|
d: "M132.245 62.7452V65.8824L140.19 70.4222C140.685 70.7055 141.31 70.6219 141.713 70.2182L152.324 59.6079H148.559L141.2 67.5796C141.1 67.688 140.939 67.7129 140.811 67.6398L132.245 62.7452Z",
|
|
16266
|
-
fill: "#
|
|
16313
|
+
fill: "#15749D"
|
|
16267
16314
|
}), /*#__PURE__*/React.createElement("path", {
|
|
16268
16315
|
d: "M145.422 58.353C145.422 57.66 145.983 57.0981 146.677 57.0981H156.716C157.409 57.0981 157.971 57.66 157.971 58.353C157.971 59.0461 157.409 59.6079 156.716 59.6079H146.677C145.983 59.6079 145.422 59.0461 145.422 58.353Z",
|
|
16269
16316
|
fill: "#15749D"
|
|
@@ -16476,6 +16523,705 @@ var RevenueManagementImage = function RevenueManagementImage() {
|
|
|
16476
16523
|
}))));
|
|
16477
16524
|
};
|
|
16478
16525
|
|
|
16526
|
+
var KioskImage = function KioskImage() {
|
|
16527
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16528
|
+
width: 191,
|
|
16529
|
+
height: 96,
|
|
16530
|
+
viewBox: "0 0 191 96",
|
|
16531
|
+
fill: "none",
|
|
16532
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16533
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16534
|
+
fillRule: "evenodd",
|
|
16535
|
+
clipRule: "evenodd",
|
|
16536
|
+
d: "M12.4433 28.1096C12.4164 28.11 12.3894 28.1102 12.3624 28.1102C9.63896 28.1102 7.43115 25.9085 7.43115 23.1926C7.43115 20.4766 9.63896 18.2749 12.3624 18.2749C13.4748 18.2749 14.5012 18.6422 15.3263 19.2619C16.1831 16.4509 18.8028 14.4053 21.9017 14.4053C25.4863 14.4053 28.4299 17.1426 28.7452 20.6355C29.4629 20.0662 30.3716 19.726 31.3599 19.726C33.6816 19.726 35.5636 21.6029 35.5636 23.9181C35.5636 26.2334 33.6816 28.1102 31.3599 28.1102C31.3058 28.1102 31.2519 28.1092 31.1983 28.1072V28.1105H12.4433V28.1096Z",
|
|
16537
|
+
fill: "#3B5BDB",
|
|
16538
|
+
fillOpacity: 0.3
|
|
16539
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16540
|
+
fillRule: "evenodd",
|
|
16541
|
+
clipRule: "evenodd",
|
|
16542
|
+
d: "M17.077 59.7212C17.0639 59.7214 17.0507 59.7215 17.0375 59.7215C15.7078 59.7215 14.6299 58.6466 14.6299 57.3205C14.6299 55.9945 15.7078 54.9196 17.0375 54.9196C17.5806 54.9196 18.0817 55.0989 18.4845 55.4014C18.9029 54.029 20.1819 53.0303 21.6949 53.0303C23.4451 53.0303 24.8824 54.3669 25.0362 56.0724C25.3866 55.7944 25.8302 55.6283 26.3128 55.6283C27.4463 55.6283 28.3652 56.5447 28.3652 57.6751C28.3652 58.8054 27.4463 59.7218 26.3128 59.7218C26.2864 59.7218 26.26 59.7213 26.2339 59.7203V59.7217H17.077V59.7212Z",
|
|
16543
|
+
fill: "#3B5BDB",
|
|
16544
|
+
fillOpacity: 0.3
|
|
16545
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16546
|
+
fillRule: "evenodd",
|
|
16547
|
+
clipRule: "evenodd",
|
|
16548
|
+
d: "M51.8554 45.6714C51.8755 45.6718 51.8958 45.6719 51.916 45.6719C53.9561 45.6719 55.6099 43.9769 55.6099 41.886C55.6099 39.7952 53.9561 38.1002 51.916 38.1002C51.0827 38.1002 50.3139 38.383 49.6959 38.86C49.0541 36.6959 47.0917 35.1211 44.7705 35.1211C42.0852 35.1211 39.8802 37.2286 39.6442 39.9179C39.1066 39.4796 38.4259 39.2177 37.6855 39.2177C35.9465 39.2177 34.5367 40.6626 34.5367 42.445C34.5367 44.2274 35.9465 45.6723 37.6855 45.6723C37.7261 45.6723 37.7665 45.6715 37.8066 45.67V45.6721H51.8554V45.6714Z",
|
|
16549
|
+
fill: "#3B5BDB",
|
|
16550
|
+
fillOpacity: 0.3
|
|
16551
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16552
|
+
fillRule: "evenodd",
|
|
16553
|
+
clipRule: "evenodd",
|
|
16554
|
+
d: "M150.742 16.4655C150.66 16.4725 150.577 16.476 150.493 16.476C148.894 16.476 147.597 15.183 147.597 13.588C147.597 11.993 148.894 10.7 150.493 10.7C150.688 10.7 150.878 10.7192 151.062 10.7558C151.584 8.82245 153.354 7.39941 155.457 7.39941C157.417 7.39941 159.087 8.63418 159.728 10.366C159.937 10.263 160.173 10.2052 160.422 10.2052C161.008 10.2052 161.518 10.5242 161.789 10.9973C162.175 10.807 162.61 10.7 163.07 10.7C164.669 10.7 165.966 11.993 165.966 13.588C165.966 15.183 164.669 16.476 163.07 16.476C163.042 16.476 163.015 16.4756 162.987 16.4748V16.476H150.742V16.4655Z",
|
|
16555
|
+
fill: "#3B5BDB",
|
|
16556
|
+
fillOpacity: 0.3
|
|
16557
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16558
|
+
d: "M115.317 86.6337C115.317 88.8967 104.441 90.7313 91.0246 90.7313C77.6081 90.7313 66.7319 88.8967 66.7319 86.6337C66.7319 84.3707 77.6081 82.5361 91.0246 82.5361C104.441 82.5361 115.317 84.3707 115.317 86.6337Z",
|
|
16559
|
+
fill: "#3B5BDB",
|
|
16560
|
+
fillOpacity: 0.3
|
|
16561
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16562
|
+
fillRule: "evenodd",
|
|
16563
|
+
clipRule: "evenodd",
|
|
16564
|
+
d: "M67.656 5.85669C66.0341 5.85669 64.3904 5.64884 64.3904 8.59922V75.4381C64.3904 78.3885 65.9995 78.4389 67.6214 78.4389H115.307C116.929 78.4389 118.244 78.3885 118.244 75.4381L118.209 8.85746C118.209 5.90708 116.271 5.85669 114.649 5.85669H67.656Z",
|
|
16565
|
+
fill: "white"
|
|
16566
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16567
|
+
fillRule: "evenodd",
|
|
16568
|
+
clipRule: "evenodd",
|
|
16569
|
+
d: "M118.209 8.85746C118.209 5.90708 116.271 5.85669 114.649 5.85669H67.656C67.5556 5.85669 67.455 5.85589 67.3548 5.85509C65.8368 5.84305 64.3904 5.83158 64.3904 8.59922V75.4381C64.3904 78.3885 65.9995 78.4389 67.6214 78.4389H115.307C116.929 78.4389 118.244 78.3885 118.244 75.4381L118.209 8.85746ZM115.903 75.4381L115.868 8.85746C115.868 8.55226 115.836 8.36846 115.811 8.27076C115.764 8.25927 115.696 8.24597 115.602 8.23432C115.354 8.20357 115.063 8.19815 114.649 8.19815H67.656C67.5462 8.19815 67.4378 8.19729 67.3401 8.19651L67.3335 8.19646C67.2309 8.19565 67.1397 8.19495 67.051 8.19498C66.9336 8.19503 66.8349 8.19644 66.7493 8.19961C66.7392 8.30204 66.7318 8.43357 66.7318 8.59922V75.4381C66.7318 75.7386 66.7553 75.9409 66.7793 76.0687C66.9759 76.092 67.2256 76.0974 67.6214 76.0974H115.307C115.552 76.0974 115.729 76.0952 115.866 76.0889C115.886 75.9395 115.903 75.7279 115.903 75.4381Z",
|
|
16570
|
+
fill: "#292A33"
|
|
16571
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16572
|
+
d: "M70.8725 12.8778C70.8727 12.5547 71.1347 12.293 71.4578 12.293H105.366C105.689 12.293 105.951 12.555 105.951 12.8783V63.8052C105.951 64.1285 105.689 64.3905 105.366 64.3905H71.4152C71.0917 64.3905 70.8296 64.1282 70.8298 63.8047L70.8725 12.8778Z",
|
|
16573
|
+
fill: "#EBEFFB"
|
|
16574
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16575
|
+
x: 162.573,
|
|
16576
|
+
y: 70.0283,
|
|
16577
|
+
width: 12.5769,
|
|
16578
|
+
height: 2.64072,
|
|
16579
|
+
rx: 1.32036,
|
|
16580
|
+
fill: "#292A33"
|
|
16581
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16582
|
+
d: "M117.073 70.2441H157.463C158.11 70.2441 158.634 70.7683 158.634 71.4149V71.4149C158.634 72.0614 158.11 72.5856 157.463 72.5856H117.073V70.2441Z",
|
|
16583
|
+
fill: "#292A33"
|
|
16584
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16585
|
+
d: "M28.6829 71.4149C28.6829 70.7683 29.207 70.2441 29.8536 70.2441H66.1463V72.5856H29.8536C29.207 72.5856 28.6829 72.0614 28.6829 71.4149V71.4149Z",
|
|
16586
|
+
fill: "#292A33"
|
|
16587
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16588
|
+
x: 17.4429,
|
|
16589
|
+
y: 70.0283,
|
|
16590
|
+
width: 8.10877,
|
|
16591
|
+
height: 2.64072,
|
|
16592
|
+
rx: 1.32036,
|
|
16593
|
+
fill: "#292A33"
|
|
16594
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16595
|
+
x: 93.0732,
|
|
16596
|
+
y: 70.2441,
|
|
16597
|
+
width: 8.10877,
|
|
16598
|
+
height: 2.64072,
|
|
16599
|
+
rx: 1.32036,
|
|
16600
|
+
fill: "#292A33"
|
|
16601
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16602
|
+
x: 112.689,
|
|
16603
|
+
y: 56.1953,
|
|
16604
|
+
width: 8.10877,
|
|
16605
|
+
height: 2.64072,
|
|
16606
|
+
rx: 1.32036,
|
|
16607
|
+
transform: "rotate(90 112.689 56.1953)",
|
|
16608
|
+
fill: "#292A33"
|
|
16609
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16610
|
+
x: 104.781,
|
|
16611
|
+
y: 70.2441,
|
|
16612
|
+
width: 8.10877,
|
|
16613
|
+
height: 2.64072,
|
|
16614
|
+
rx: 1.32036,
|
|
16615
|
+
fill: "#292A33"
|
|
16616
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16617
|
+
fillRule: "evenodd",
|
|
16618
|
+
clipRule: "evenodd",
|
|
16619
|
+
d: "M96.4624 31.5838C95.8425 31.5838 95.2796 32.0356 95.1249 32.7055C95.0174 33.1711 94.5519 33.4615 94.0853 33.3542C93.6187 33.2469 93.3276 32.7825 93.4352 32.3169C93.7555 30.9299 94.9667 29.8535 96.4624 29.8535C97.9582 29.8535 99.1694 30.9299 99.4897 32.3169C99.5972 32.7825 99.3062 33.2469 98.8396 33.3542C98.3729 33.4615 97.9075 33.1711 97.8 32.7055C97.6452 32.0356 97.0824 31.5838 96.4624 31.5838Z",
|
|
16620
|
+
fill: "#3B5BDB"
|
|
16621
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16622
|
+
fillRule: "evenodd",
|
|
16623
|
+
clipRule: "evenodd",
|
|
16624
|
+
d: "M80.3179 31.5838C79.6979 31.5838 79.1351 32.0356 78.9804 32.7055C78.8728 33.1711 78.4074 33.4615 77.9408 33.3542C77.4742 33.2469 77.1831 32.7825 77.2907 32.3169C77.611 30.9299 78.8221 29.8535 80.3179 29.8535C81.8137 29.8535 83.0248 30.9299 83.3452 32.3169C83.4527 32.7825 83.1616 33.2469 82.695 33.3542C82.2284 33.4615 81.763 33.1711 81.6554 32.7055C81.5007 32.0356 80.9379 31.5838 80.3179 31.5838Z",
|
|
16625
|
+
fill: "#3B5BDB"
|
|
16626
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16627
|
+
fillRule: "evenodd",
|
|
16628
|
+
clipRule: "evenodd",
|
|
16629
|
+
d: "M82.8702 42.6553C83.349 42.6553 83.7372 43.0426 83.7372 43.5204C83.7372 44.2447 84.3256 44.8319 85.0514 44.8319H91.7293C92.4551 44.8319 93.0435 44.2447 93.0435 43.5204C93.0435 43.0426 93.4317 42.6553 93.9105 42.6553C94.3894 42.6553 94.7775 43.0426 94.7775 43.5204C94.7775 45.2003 93.4128 46.5622 91.7293 46.5622H85.0514C83.3679 46.5622 82.0032 45.2003 82.0032 43.5204C82.0032 43.0426 82.3914 42.6553 82.8702 42.6553Z",
|
|
16630
|
+
fill: "#3B5BDB"
|
|
16631
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
16632
|
+
filter: "url(#filter0_d_4997_39198)"
|
|
16633
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16634
|
+
d: "M118.244 20.1895H151.308C153.794 20.1895 155.809 22.2045 155.809 24.6903V24.9302C155.809 27.416 153.794 29.4311 151.308 29.4311H118.244V20.1895Z",
|
|
16635
|
+
fill: "white"
|
|
16636
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16637
|
+
x: 144.722,
|
|
16638
|
+
y: 23.8203,
|
|
16639
|
+
width: 7.44683,
|
|
16640
|
+
height: 1.98054,
|
|
16641
|
+
rx: 0.990269,
|
|
16642
|
+
fill: "#959CA8"
|
|
16643
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16644
|
+
x: 137.606,
|
|
16645
|
+
y: 23.8203,
|
|
16646
|
+
width: 4.4681,
|
|
16647
|
+
height: 1.98054,
|
|
16648
|
+
rx: 0.990269,
|
|
16649
|
+
fill: "#959CA8"
|
|
16650
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16651
|
+
x: 124.367,
|
|
16652
|
+
y: 23.8203,
|
|
16653
|
+
width: 10.5911,
|
|
16654
|
+
height: 1.98054,
|
|
16655
|
+
rx: 0.990269,
|
|
16656
|
+
fill: "#959CA8"
|
|
16657
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16658
|
+
d: "M118.244 23.8203H120.729C121.276 23.8203 121.719 24.2637 121.719 24.8106V24.8106C121.719 25.3575 121.276 25.8009 120.729 25.8009H118.244V23.8203Z",
|
|
16659
|
+
fill: "#959CA8"
|
|
16660
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
16661
|
+
filter: "url(#filter1_d_4997_39198)"
|
|
16662
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
16663
|
+
x: 125.836,
|
|
16664
|
+
y: 28.1113,
|
|
16665
|
+
width: 53.2862,
|
|
16666
|
+
height: 9.2416,
|
|
16667
|
+
rx: 4.5008,
|
|
16668
|
+
fill: "white"
|
|
16669
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16670
|
+
x: 164.229,
|
|
16671
|
+
y: 31.7422,
|
|
16672
|
+
width: 11.253,
|
|
16673
|
+
height: 1.98054,
|
|
16674
|
+
rx: 0.990269,
|
|
16675
|
+
fill: "#959CA8"
|
|
16676
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16677
|
+
x: 147.68,
|
|
16678
|
+
y: 31.7422,
|
|
16679
|
+
width: 13.9008,
|
|
16680
|
+
height: 1.98054,
|
|
16681
|
+
rx: 0.990269,
|
|
16682
|
+
fill: "#959CA8"
|
|
16683
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16684
|
+
x: 140.233,
|
|
16685
|
+
y: 31.7422,
|
|
16686
|
+
width: 4.79907,
|
|
16687
|
+
height: 1.98054,
|
|
16688
|
+
rx: 0.990269,
|
|
16689
|
+
fill: "#959CA8"
|
|
16690
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
16691
|
+
x: 129.477,
|
|
16692
|
+
y: 31.7422,
|
|
16693
|
+
width: 8.10877,
|
|
16694
|
+
height: 1.98054,
|
|
16695
|
+
rx: 0.990269,
|
|
16696
|
+
fill: "#959CA8"
|
|
16697
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
16698
|
+
d: "M118.244 57.6594V60.7877L126.495 65.2624C127.195 65.6421 128.062 65.5138 128.622 64.9478L139.261 54.1865H135.62L127.589 62.5156C127.446 62.6637 127.22 62.6953 127.042 62.5919L118.244 57.6594Z",
|
|
16699
|
+
fill: "#3B5BDB"
|
|
16700
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16701
|
+
d: "M131.708 52.8663C131.708 52.137 132.3 51.5459 133.031 51.5459H143.954C144.685 51.5459 145.277 52.137 145.277 52.8663V52.8663C145.277 53.5955 144.685 54.1866 143.954 54.1866H133.031C132.3 54.1866 131.708 53.5955 131.708 52.8663V52.8663Z",
|
|
16702
|
+
fill: "#3B5BDB"
|
|
16703
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16704
|
+
fillRule: "evenodd",
|
|
16705
|
+
clipRule: "evenodd",
|
|
16706
|
+
d: "M83.3283 63.4473C84.1249 63.5441 84.692 64.267 84.595 65.0618C84.5327 65.5717 84.5006 66.0914 84.5006 66.6193C84.5006 68.5554 84.9326 70.3868 85.7044 72.0265C86.0456 72.7512 85.7333 73.6147 85.007 73.9551C84.2807 74.2955 83.4154 73.984 83.0742 73.2592C82.1247 71.2419 81.5947 68.9903 81.5947 66.6193C81.5947 65.974 81.634 65.3372 81.7104 64.7112C81.8074 63.9164 82.5318 63.3505 83.3283 63.4473Z",
|
|
16707
|
+
fill: "#3B5BDB"
|
|
16708
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16709
|
+
d: "M64.683 55.0245V58.244L63.1895 58.9406C69.4503 61.6998 83.3787 67.841 83.3787 67.841V70.8672L60.092 60.5667C58.8353 60.0108 58.7888 58.1134 60.0167 57.4871L64.683 55.0245Z",
|
|
16710
|
+
fill: "#3B5BDB"
|
|
16711
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
16712
|
+
filter: "url(#filter2_d_4997_39198)"
|
|
16713
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
16714
|
+
x: 128.195,
|
|
16715
|
+
y: 30.5869,
|
|
16716
|
+
width: 18.5343,
|
|
16717
|
+
height: 18.4832,
|
|
16718
|
+
rx: 8.439,
|
|
16719
|
+
fill: "#3B5BDB"
|
|
16720
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
16721
|
+
d: "M138.41 45.0735V44.0862C139.872 43.8932 140.787 43.0549 140.787 41.8526C140.787 40.6557 140.19 39.7843 138.75 39.4369L137.474 39.1225C136.614 38.8964 136.362 38.6647 136.362 38.2015C136.362 37.6223 136.899 37.2252 137.77 37.2252C138.613 37.2252 138.93 37.6554 139.029 38.3614L140.644 38.3338C140.661 37.1922 139.823 36.2435 138.443 36.0009V34.9033H137.058V35.9953C135.645 36.2104 134.637 37.0874 134.648 38.389C134.665 39.6134 135.442 40.3248 136.652 40.573L137.95 40.8543C138.722 41.0308 139.089 41.2735 139.089 41.8636C139.089 42.4317 138.525 42.8563 137.737 42.8563C136.861 42.8563 136.247 42.4703 136.078 41.7423L134.413 41.7753C134.561 43.1707 135.53 43.9208 137.03 44.0918V45.0735H138.41Z",
|
|
16722
|
+
fill: "white"
|
|
16723
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
16724
|
+
id: "mask0_4997_39198",
|
|
16725
|
+
style: {
|
|
16726
|
+
maskType: "luminance"
|
|
16727
|
+
},
|
|
16728
|
+
maskUnits: "userSpaceOnUse",
|
|
16729
|
+
x: 134,
|
|
16730
|
+
y: 34,
|
|
16731
|
+
width: 7,
|
|
16732
|
+
height: 12
|
|
16733
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16734
|
+
d: "M138.41 45.0735V44.0862C139.872 43.8932 140.787 43.0549 140.787 41.8526C140.787 40.6557 140.19 39.7843 138.75 39.4369L137.474 39.1225C136.614 38.8964 136.362 38.6647 136.362 38.2015C136.362 37.6223 136.899 37.2252 137.77 37.2252C138.613 37.2252 138.93 37.6554 139.029 38.3614L140.644 38.3338C140.661 37.1922 139.823 36.2435 138.443 36.0009V34.9033H137.058V35.9953C135.645 36.2104 134.637 37.0874 134.648 38.389C134.665 39.6134 135.442 40.3248 136.652 40.573L137.95 40.8543C138.722 41.0308 139.089 41.2735 139.089 41.8636C139.089 42.4317 138.525 42.8563 137.737 42.8563C136.861 42.8563 136.247 42.4703 136.078 41.7423L134.413 41.7753C134.561 43.1707 135.53 43.9208 137.03 44.0918V45.0735H138.41Z",
|
|
16735
|
+
fill: "white"
|
|
16736
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
16737
|
+
mask: "url(#mask0_4997_39198)"
|
|
16738
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
16739
|
+
x: 129.951,
|
|
16740
|
+
y: 32.2012,
|
|
16741
|
+
width: 15.2974,
|
|
16742
|
+
height: 15.2552,
|
|
16743
|
+
fill: "white"
|
|
16744
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
16745
|
+
d: "M73.1709 76.0977H108.878V86.0489C108.878 86.6955 108.354 87.2196 107.707 87.2196H74.3416C73.6951 87.2196 73.1709 86.6955 73.1709 86.0489V76.0977Z",
|
|
16746
|
+
fill: "white"
|
|
16747
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16748
|
+
fillRule: "evenodd",
|
|
16749
|
+
clipRule: "evenodd",
|
|
16750
|
+
d: "M106.537 78.4391H75.5124V84.8781H106.537V78.4391ZM73.1709 76.0977V86.0489C73.1709 86.6955 73.6951 87.2196 74.3416 87.2196H107.707C108.354 87.2196 108.878 86.6955 108.878 86.0489V76.0977H73.1709Z",
|
|
16751
|
+
fill: "#292A33"
|
|
16752
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
16753
|
+
id: "filter0_d_4997_39198",
|
|
16754
|
+
x: 107.093,
|
|
16755
|
+
y: 9.03814,
|
|
16756
|
+
width: 59.8678,
|
|
16757
|
+
height: 31.5438,
|
|
16758
|
+
filterUnits: "userSpaceOnUse",
|
|
16759
|
+
colorInterpolationFilters: "sRGB"
|
|
16760
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
16761
|
+
floodOpacity: 0,
|
|
16762
|
+
result: "BackgroundImageFix"
|
|
16763
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
16764
|
+
"in": "SourceAlpha",
|
|
16765
|
+
type: "matrix",
|
|
16766
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
16767
|
+
result: "hardAlpha"
|
|
16768
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
16769
|
+
stdDeviation: 5.57566
|
|
16770
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
16771
|
+
in2: "hardAlpha",
|
|
16772
|
+
operator: "out"
|
|
16773
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
16774
|
+
type: "matrix",
|
|
16775
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
16776
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
16777
|
+
mode: "normal",
|
|
16778
|
+
in2: "BackgroundImageFix",
|
|
16779
|
+
result: "effect1_dropShadow_4997_39198"
|
|
16780
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
16781
|
+
mode: "normal",
|
|
16782
|
+
"in": "SourceGraphic",
|
|
16783
|
+
in2: "effect1_dropShadow_4997_39198",
|
|
16784
|
+
result: "shape"
|
|
16785
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
16786
|
+
id: "filter1_d_4997_39198",
|
|
16787
|
+
x: 114.685,
|
|
16788
|
+
y: 16.96,
|
|
16789
|
+
width: 75.5888,
|
|
16790
|
+
height: 31.5438,
|
|
16791
|
+
filterUnits: "userSpaceOnUse",
|
|
16792
|
+
colorInterpolationFilters: "sRGB"
|
|
16793
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
16794
|
+
floodOpacity: 0,
|
|
16795
|
+
result: "BackgroundImageFix"
|
|
16796
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
16797
|
+
"in": "SourceAlpha",
|
|
16798
|
+
type: "matrix",
|
|
16799
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
16800
|
+
result: "hardAlpha"
|
|
16801
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
16802
|
+
stdDeviation: 5.57566
|
|
16803
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
16804
|
+
in2: "hardAlpha",
|
|
16805
|
+
operator: "out"
|
|
16806
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
16807
|
+
type: "matrix",
|
|
16808
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
16809
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
16810
|
+
mode: "normal",
|
|
16811
|
+
in2: "BackgroundImageFix",
|
|
16812
|
+
result: "effect1_dropShadow_4997_39198"
|
|
16813
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
16814
|
+
mode: "normal",
|
|
16815
|
+
"in": "SourceGraphic",
|
|
16816
|
+
in2: "effect1_dropShadow_4997_39198",
|
|
16817
|
+
result: "shape"
|
|
16818
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
16819
|
+
id: "filter2_d_4997_39198",
|
|
16820
|
+
x: 113.195,
|
|
16821
|
+
y: 15.5869,
|
|
16822
|
+
width: 48.5344,
|
|
16823
|
+
height: 48.4834,
|
|
16824
|
+
filterUnits: "userSpaceOnUse",
|
|
16825
|
+
colorInterpolationFilters: "sRGB"
|
|
16826
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
16827
|
+
floodOpacity: 0,
|
|
16828
|
+
result: "BackgroundImageFix"
|
|
16829
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
16830
|
+
"in": "SourceAlpha",
|
|
16831
|
+
type: "matrix",
|
|
16832
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
16833
|
+
result: "hardAlpha"
|
|
16834
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
16835
|
+
stdDeviation: 7.5
|
|
16836
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
16837
|
+
in2: "hardAlpha",
|
|
16838
|
+
operator: "out"
|
|
16839
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
16840
|
+
type: "matrix",
|
|
16841
|
+
values: "0 0 0 0 0.0823529 0 0 0 0 0.454902 0 0 0 0 0.615686 0 0 0 0.2 0"
|
|
16842
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
16843
|
+
mode: "normal",
|
|
16844
|
+
in2: "BackgroundImageFix",
|
|
16845
|
+
result: "effect1_dropShadow_4997_39198"
|
|
16846
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
16847
|
+
mode: "normal",
|
|
16848
|
+
"in": "SourceGraphic",
|
|
16849
|
+
in2: "effect1_dropShadow_4997_39198",
|
|
16850
|
+
result: "shape"
|
|
16851
|
+
}))));
|
|
16852
|
+
};
|
|
16853
|
+
|
|
16854
|
+
var PointOfSaleImage = function PointOfSaleImage() {
|
|
16855
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
16856
|
+
width: 180,
|
|
16857
|
+
height: 96,
|
|
16858
|
+
viewBox: "0 0 180 96",
|
|
16859
|
+
fill: "none",
|
|
16860
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16861
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16862
|
+
fillRule: "evenodd",
|
|
16863
|
+
clipRule: "evenodd",
|
|
16864
|
+
d: "M142.706 17.5583C140.253 17.3968 138.314 15.3563 138.314 12.8627C138.314 10.2637 140.421 8.15681 143.02 8.15681C143.913 8.15681 144.749 8.40592 145.46 8.8385C146.262 5.91385 148.939 3.76465 152.118 3.76465C155.728 3.76465 158.691 6.53709 158.994 10.0693C159.633 9.65335 160.396 9.41171 161.216 9.41171C163.468 9.41171 165.294 11.2377 165.294 13.4901C165.294 15.7426 163.468 17.5686 161.216 17.5686C161.11 17.5686 161.005 17.5646 160.902 17.5567V17.5686H152.118H143.02H142.706V17.5583Z",
|
|
16865
|
+
fill: "#15749D",
|
|
16866
|
+
fillOpacity: 0.3
|
|
16867
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16868
|
+
fillRule: "evenodd",
|
|
16869
|
+
clipRule: "evenodd",
|
|
16870
|
+
d: "M20.3531 64.627C18.9669 64.627 17.8433 63.5034 17.8433 62.1172C17.8433 60.7311 18.9669 59.6074 20.3531 59.6074C20.7424 59.6074 21.1111 59.6961 21.44 59.8544C21.9913 58.9536 22.9843 58.3525 24.1178 58.3525C25.5139 58.3525 26.6971 59.2646 27.104 60.5253C27.4257 60.3406 27.7986 60.2349 28.1962 60.2349C29.4091 60.2349 30.3923 61.2181 30.3923 62.431C30.3923 63.6438 29.4091 64.627 28.1962 64.627H24.1178H20.3531Z",
|
|
16871
|
+
fill: "#15749D",
|
|
16872
|
+
fillOpacity: 0.3
|
|
16873
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16874
|
+
fillRule: "evenodd",
|
|
16875
|
+
clipRule: "evenodd",
|
|
16876
|
+
d: "M60.8237 8.78431H53.608H49.147V8.77384C49.0663 8.78078 48.9846 8.78431 48.9021 8.78431C47.3428 8.78431 46.0786 7.52018 46.0786 5.96078C46.0786 4.40139 47.3428 3.13726 48.9021 3.13726C49.067 3.13726 49.2286 3.15139 49.3857 3.1785C49.9123 1.34307 51.6033 0 53.608 0C55.4761 0 57.0719 1.1663 57.7068 2.81047C57.8935 2.7321 58.0986 2.68878 58.3139 2.68878C58.8648 2.68878 59.3494 2.97248 59.6292 3.40162C59.992 3.232 60.3968 3.13726 60.8237 3.13726C62.3831 3.13726 63.6472 4.40139 63.6472 5.96078C63.6472 7.43768 62.5133 8.64973 61.0686 8.77384V8.78431H60.8237Z",
|
|
16877
|
+
fill: "#15749D",
|
|
16878
|
+
fillOpacity: 0.3
|
|
16879
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16880
|
+
d: "M109.451 91.9212C109.451 94.1737 100.883 95.9996 90.3138 95.9996C79.7446 95.9996 71.1765 94.1737 71.1765 91.9212C71.1765 89.6687 79.7446 87.8428 90.3138 87.8428C100.883 87.8428 109.451 89.6687 109.451 91.9212Z",
|
|
16881
|
+
fill: "#15749D",
|
|
16882
|
+
fillOpacity: 0.3
|
|
16883
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16884
|
+
d: "M49.8433 32H130.784V80.3137C130.784 81.0068 130.223 81.5686 129.53 81.5686H51.0982C50.4051 81.5686 49.8433 81.0068 49.8433 80.3137V32Z",
|
|
16885
|
+
fill: "white"
|
|
16886
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16887
|
+
d: "M47.9609 22.9333C47.9609 21.0102 49.5199 19.4512 51.4431 19.4512H129.185C131.108 19.4512 132.667 21.0102 132.667 22.9333V32.0002H47.9609V22.9333Z",
|
|
16888
|
+
fill: "#E5E7EC"
|
|
16889
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16890
|
+
d: "M63.0196 25.7243C63.0196 26.4166 62.4577 26.9778 61.7647 26.9778C61.0716 26.9778 60.5098 26.4166 60.5098 25.7243C60.5098 25.0319 61.0716 24.4707 61.7647 24.4707C62.4577 24.4707 63.0196 25.0319 63.0196 25.7243Z",
|
|
16891
|
+
fill: "#292A33"
|
|
16892
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16893
|
+
d: "M59.2549 25.7243C59.2549 26.4166 58.6931 26.9778 58 26.9778C57.307 26.9778 56.7451 26.4166 56.7451 25.7243C56.7451 25.0319 57.307 24.4707 58 24.4707C58.6931 24.4707 59.2549 25.0319 59.2549 25.7243Z",
|
|
16894
|
+
fill: "#292A33"
|
|
16895
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16896
|
+
d: "M55.4903 25.7243C55.4903 26.4166 54.9284 26.9778 54.2354 26.9778C53.5423 26.9778 52.9805 26.4166 52.9805 25.7243C52.9805 25.0319 53.5423 24.4707 54.2354 24.4707C54.9284 24.4707 55.4903 25.0319 55.4903 25.7243Z",
|
|
16897
|
+
fill: "#292A33"
|
|
16898
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16899
|
+
fillRule: "evenodd",
|
|
16900
|
+
clipRule: "evenodd",
|
|
16901
|
+
d: "M129.53 21.3335H51.0982C50.4051 21.3335 49.8433 21.8954 49.8433 22.5884V80.3139C49.8433 81.007 50.4051 81.5688 51.0982 81.5688H129.53C130.223 81.5688 130.784 81.007 130.784 80.3139V22.5884C130.784 21.8954 130.223 21.3335 129.53 21.3335ZM51.0982 19.4512C49.3655 19.4512 47.9609 20.8558 47.9609 22.5884V80.3139C47.9609 82.0466 49.3655 83.4512 51.0982 83.4512H129.53C131.262 83.4512 132.667 82.0466 132.667 80.3139V22.5884C132.667 20.8558 131.262 19.4512 129.53 19.4512H51.0982Z",
|
|
16902
|
+
fill: "#292A33"
|
|
16903
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16904
|
+
d: "M157.765 75.9219C157.765 75.2288 158.326 74.667 159.02 74.667H169.686C170.379 74.667 170.941 75.2288 170.941 75.9219V75.9219C170.941 76.615 170.379 77.1768 169.686 77.1768H159.02C158.326 77.1768 157.765 76.615 157.765 75.9219V75.9219Z",
|
|
16905
|
+
fill: "#292A33"
|
|
16906
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16907
|
+
d: "M132.667 74.667H153.252C153.95 74.667 154.517 75.2335 154.517 75.9323V75.9323C154.517 76.6311 153.95 77.1976 153.252 77.1976H132.667V74.667Z",
|
|
16908
|
+
fill: "#292A33"
|
|
16909
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16910
|
+
d: "M30.3923 75.9219C30.3923 75.2288 30.9542 74.667 31.6472 74.667H47.961V77.1768H31.6472C30.9542 77.1768 30.3923 76.615 30.3923 75.9219V75.9219Z",
|
|
16911
|
+
fill: "#292A33"
|
|
16912
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16913
|
+
d: "M19.7256 75.9219C19.7256 75.2288 20.2874 74.667 20.9805 74.667H26.0001C26.6932 74.667 27.255 75.2288 27.255 75.9219V75.9219C27.255 76.615 26.6932 77.1768 26.0001 77.1768H20.9805C20.2874 77.1768 19.7256 76.615 19.7256 75.9219V75.9219Z",
|
|
16914
|
+
fill: "#292A33"
|
|
16915
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16916
|
+
fillRule: "evenodd",
|
|
16917
|
+
clipRule: "evenodd",
|
|
16918
|
+
d: "M99.7255 48.4773C98.639 48.4773 97.8554 49.1092 97.6631 49.7849C97.5435 50.2053 97.1057 50.4491 96.6854 50.3295C96.265 50.2098 96.0211 49.7721 96.1408 49.3517C96.5631 47.8673 98.0747 46.8945 99.7255 46.8945C101.376 46.8945 102.888 47.8673 103.31 49.3517C103.43 49.7721 103.186 50.2098 102.766 50.3295C102.345 50.4491 101.907 50.2053 101.788 49.7849C101.596 49.1092 100.812 48.4773 99.7255 48.4773Z",
|
|
16919
|
+
fill: "#292A33"
|
|
16920
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16921
|
+
fillRule: "evenodd",
|
|
16922
|
+
clipRule: "evenodd",
|
|
16923
|
+
d: "M82.1569 48.4773C81.0704 48.4773 80.2868 49.1092 80.0945 49.7849C79.9749 50.2053 79.5371 50.4491 79.1167 50.3295C78.6964 50.2098 78.4525 49.7721 78.5722 49.3517C78.9945 47.8673 80.5061 46.8945 82.1569 46.8945C83.8077 46.8945 85.3192 47.8673 85.7416 49.3517C85.8612 49.7721 85.6174 50.2098 85.197 50.3295C84.7766 50.4491 84.3389 50.2053 84.2192 49.7849C84.027 49.1092 83.2434 48.4773 82.1569 48.4773Z",
|
|
16924
|
+
fill: "#292A33"
|
|
16925
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16926
|
+
fillRule: "evenodd",
|
|
16927
|
+
clipRule: "evenodd",
|
|
16928
|
+
d: "M83.098 59.4443C83.5351 59.4443 83.8894 59.7987 83.8894 60.2357C83.8894 61.1848 84.6588 61.9541 85.6078 61.9541H95.0196C95.9687 61.9541 96.738 61.1848 96.738 60.2357C96.738 59.7987 97.0923 59.4443 97.5294 59.4443C97.9665 59.4443 98.3208 59.7987 98.3208 60.2357C98.3208 62.0589 96.8428 63.5369 95.0196 63.5369H85.6078C83.7846 63.5369 82.3066 62.0589 82.3066 60.2357C82.3066 59.7987 82.661 59.4443 83.098 59.4443Z",
|
|
16929
|
+
fill: "#292A33"
|
|
16930
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16931
|
+
d: "M47.9609 30.1172H132.667V31.9995H47.9609V30.1172Z",
|
|
16932
|
+
fill: "#292A33"
|
|
16933
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
16934
|
+
filter: "url(#filter0_d_4979_37133)"
|
|
16935
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16936
|
+
d: "M22.2354 35.1377C22.2354 34.4447 22.7972 33.8828 23.4903 33.8828H47.9608V42.0397H23.4903C22.7972 42.0397 22.2354 41.4778 22.2354 40.7848V35.1377Z",
|
|
16937
|
+
fill: "white"
|
|
16938
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16939
|
+
fillRule: "evenodd",
|
|
16940
|
+
clipRule: "evenodd",
|
|
16941
|
+
d: "M25.9323 37.6658C25.5914 37.5877 25.5079 37.5381 25.5079 37.4245V37.4175C25.5079 37.3252 25.5878 37.2577 25.7514 37.2577C25.9455 37.2577 26.1621 37.3239 26.3658 37.4561C26.4039 37.4808 26.4541 37.4725 26.4801 37.4349L26.724 37.0836C26.7499 37.0462 26.7429 36.9935 26.7064 36.9669C26.5557 36.8569 26.3858 36.779 26.1926 36.7335V36.4748C26.1926 36.4294 26.1565 36.3926 26.112 36.3926H25.6219C25.5774 36.3926 25.5413 36.4294 25.5413 36.4748V36.7055C25.0931 36.7813 24.8261 37.0836 24.8261 37.4813V37.4884C24.8261 37.9957 25.2261 38.1448 25.7444 38.2654C26.0783 38.347 26.1584 38.4003 26.1584 38.5066V38.5138C26.1584 38.6202 26.061 38.6839 25.8766 38.6839C25.6183 38.6839 25.3747 38.5976 25.1483 38.4329C25.1127 38.407 25.0633 38.4148 25.0353 38.449L24.7648 38.7786C24.7353 38.8145 24.7391 38.869 24.7752 38.8981C24.9925 39.0729 25.2567 39.1835 25.5413 39.2299V39.4543C25.5413 39.496 25.5745 39.5298 25.6154 39.5298H26.1186C26.1595 39.5298 26.1926 39.496 26.1926 39.4543V39.2163C26.5893 39.1204 26.8366 38.8483 26.8366 38.4463V38.4393C26.8366 37.9744 26.4888 37.7899 25.9323 37.6658Z",
|
|
16942
|
+
fill: "#959CA8"
|
|
16943
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16944
|
+
d: "M40.4314 37.9617C40.4314 37.4419 40.8528 37.0205 41.3726 37.0205H47.9608V38.9029H41.3726C40.8528 38.9029 40.4314 38.4815 40.4314 37.9617V37.9617Z",
|
|
16945
|
+
fill: "#959CA8"
|
|
16946
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16947
|
+
d: "M29.7646 37.9617C29.7646 37.4419 30.186 37.0205 30.7058 37.0205H36.9803C37.5001 37.0205 37.9215 37.4419 37.9215 37.9617V37.9617C37.9215 38.4815 37.5001 38.9029 36.9803 38.9029H30.7058C30.186 38.9029 29.7646 38.4815 29.7646 37.9617V37.9617Z",
|
|
16948
|
+
fill: "#959CA8"
|
|
16949
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
16950
|
+
filter: "url(#filter1_d_4979_37133)"
|
|
16951
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16952
|
+
d: "M5.92163 42.0391C5.92163 41.346 6.48347 40.7842 7.17653 40.7842H55.4903C56.1833 40.7842 56.7452 41.346 56.7452 42.0391V47.6861C56.7452 48.3792 56.1833 48.941 55.4903 48.941H7.17653C6.48347 48.941 5.92163 48.3792 5.92163 47.6861V42.0391Z",
|
|
16953
|
+
fill: "white"
|
|
16954
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16955
|
+
fillRule: "evenodd",
|
|
16956
|
+
clipRule: "evenodd",
|
|
16957
|
+
d: "M9.61856 44.5671C9.27768 44.4891 9.19416 44.4395 9.19416 44.3259V44.3189C9.19416 44.2266 9.27411 44.1591 9.43766 44.1591C9.63178 44.1591 9.84835 44.2252 10.0521 44.3575C10.0902 44.3822 10.1403 44.3738 10.1664 44.3362L10.4103 43.9849C10.4362 43.9476 10.4292 43.8949 10.3926 43.8683C10.242 43.7583 10.0721 43.6804 9.87892 43.6349V43.3761C9.87892 43.3308 9.84282 43.2939 9.79826 43.2939H9.30818C9.26369 43.2939 9.22759 43.3308 9.22759 43.3761V43.6069C8.77941 43.6827 8.5124 43.9849 8.5124 44.3826V44.3898C8.5124 44.8971 8.91239 45.0461 9.43066 45.1667C9.76462 45.2483 9.84464 45.3016 9.84464 45.4079V45.4152C9.84464 45.5215 9.74727 45.5853 9.56287 45.5853C9.30461 45.5853 9.06097 45.499 8.8346 45.3342C8.799 45.3083 8.74961 45.3162 8.72163 45.3504L8.45105 45.6799C8.4216 45.7159 8.42538 45.7704 8.46148 45.7994C8.67882 45.9743 8.94296 46.0849 9.22759 46.1313V46.3556C9.22759 46.3974 9.26075 46.4312 9.30167 46.4312H9.80484C9.84576 46.4312 9.87892 46.3974 9.87892 46.3556V46.1176C10.2755 46.0218 10.5229 45.7496 10.5229 45.3477V45.3407C10.5229 44.8758 10.1751 44.6913 9.61856 44.5671Z",
|
|
16958
|
+
fill: "#959CA8"
|
|
16959
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16960
|
+
d: "M41.6863 44.8631C41.6863 44.3433 42.1077 43.9219 42.6275 43.9219H52.6667C53.1865 43.9219 53.6078 44.3433 53.6078 44.8631V44.8631C53.6078 45.3828 53.1865 45.8042 52.6667 45.8042H42.6275C42.1077 45.8042 41.6863 45.3828 41.6863 44.8631V44.8631Z",
|
|
16961
|
+
fill: "#959CA8"
|
|
16962
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16963
|
+
d: "M26 44.8631C26 44.3433 26.4214 43.9219 26.9412 43.9219H38.2353C38.7551 43.9219 39.1765 44.3433 39.1765 44.8631V44.8631C39.1765 45.3828 38.7551 45.8042 38.2353 45.8042H26.9412C26.4214 45.8042 26 45.3828 26 44.8631V44.8631Z",
|
|
16964
|
+
fill: "#959CA8"
|
|
16965
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16966
|
+
d: "M13.4509 44.8631C13.4509 44.3433 13.8723 43.9219 14.3921 43.9219H22.549C23.0688 43.9219 23.4901 44.3433 23.4901 44.8631V44.8631C23.4901 45.3828 23.0688 45.8042 22.549 45.8042H14.3921C13.8723 45.8042 13.4509 45.3828 13.4509 44.8631V44.8631Z",
|
|
16967
|
+
fill: "#959CA8"
|
|
16968
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
16969
|
+
filter: "url(#filter2_d_4979_37133)"
|
|
16970
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16971
|
+
d: "M132.667 27.6074H167.804C168.497 27.6074 169.059 28.1693 169.059 28.8623V34.5094C169.059 35.2024 168.497 35.7643 167.804 35.7643H132.667V27.6074Z",
|
|
16972
|
+
fill: "white"
|
|
16973
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16974
|
+
d: "M157.765 31.6853C157.765 31.1655 158.186 30.7441 158.706 30.7441H164.98C165.5 30.7441 165.922 31.1655 165.922 31.6853V31.6853C165.922 32.2051 165.5 32.6265 164.98 32.6265H158.706C158.186 32.6265 157.765 32.2051 157.765 31.6853V31.6853Z",
|
|
16975
|
+
fill: "#959CA8"
|
|
16976
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16977
|
+
d: "M146.471 31.6853C146.471 31.1655 146.892 30.7441 147.412 30.7441H154.314C154.834 30.7441 155.255 31.1655 155.255 31.6853V31.6853C155.255 32.2051 154.834 32.6265 154.314 32.6265H147.412C146.892 32.6265 146.471 32.2051 146.471 31.6853V31.6853Z",
|
|
16978
|
+
fill: "#959CA8"
|
|
16979
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16980
|
+
d: "M132.667 30.7441H143.02C143.539 30.7441 143.961 31.1655 143.961 31.6853V31.6853C143.961 32.2051 143.539 32.6265 143.02 32.6265H132.667V30.7441Z",
|
|
16981
|
+
fill: "#959CA8"
|
|
16982
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
16983
|
+
filter: "url(#filter3_d_4979_37133)"
|
|
16984
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16985
|
+
d: "M123.255 35.7647C123.255 35.0716 123.817 34.5098 124.51 34.5098H172.824C173.517 34.5098 174.078 35.0716 174.078 35.7647V41.4117C174.078 42.1048 173.517 42.6666 172.824 42.6666H124.51C123.817 42.6666 123.255 42.1048 123.255 41.4117V35.7647Z",
|
|
16986
|
+
fill: "white"
|
|
16987
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16988
|
+
fillRule: "evenodd",
|
|
16989
|
+
clipRule: "evenodd",
|
|
16990
|
+
d: "M126.952 38.2927C126.611 38.2147 126.527 38.1651 126.527 38.0515V38.0445C126.527 37.9522 126.607 37.8847 126.771 37.8847C126.965 37.8847 127.182 37.9508 127.385 38.0831C127.423 38.1078 127.474 38.0994 127.5 38.0618L127.744 37.7105C127.769 37.6731 127.762 37.6205 127.726 37.5939C127.575 37.4839 127.405 37.4059 127.212 37.3605V37.1017C127.212 37.0563 127.176 37.0195 127.132 37.0195H126.641C126.597 37.0195 126.561 37.0563 126.561 37.1017V37.3325C126.113 37.4083 125.846 37.7105 125.846 38.1082V38.1153C125.846 38.6227 126.246 38.7717 126.764 38.8923C127.098 38.9739 127.178 39.0272 127.178 39.1335V39.1407C127.178 39.2471 127.081 39.3109 126.896 39.3109C126.638 39.3109 126.394 39.2246 126.168 39.0598C126.132 39.0339 126.083 39.0418 126.055 39.076L125.784 39.4055C125.755 39.4415 125.759 39.496 125.795 39.525C126.012 39.6999 126.276 39.8105 126.561 39.8568V40.0812C126.561 40.123 126.594 40.1568 126.635 40.1568H127.138C127.179 40.1568 127.212 40.123 127.212 40.0812V39.8432C127.609 39.7474 127.856 39.4752 127.856 39.0732V39.0663C127.856 38.6014 127.508 38.4169 126.952 38.2927Z",
|
|
16991
|
+
fill: "#959CA8"
|
|
16992
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16993
|
+
d: "M159.647 38.5886C159.647 38.0688 160.069 37.6475 160.588 37.6475H170C170.52 37.6475 170.941 38.0688 170.941 38.5886V38.5886C170.941 39.1084 170.52 39.5298 170 39.5298H160.588C160.069 39.5298 159.647 39.1084 159.647 38.5886V38.5886Z",
|
|
16994
|
+
fill: "#959CA8"
|
|
16995
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16996
|
+
d: "M143.961 38.5896C143.961 38.0698 144.382 37.6484 144.902 37.6484H156.196C156.716 37.6484 157.137 38.0698 157.137 38.5896V38.5896C157.137 39.1094 156.716 39.5308 156.196 39.5308H144.902C144.382 39.5308 143.961 39.1094 143.961 38.5896V38.5896Z",
|
|
16997
|
+
fill: "#959CA8"
|
|
16998
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
16999
|
+
d: "M130.784 38.5886C130.784 38.0688 131.206 37.6475 131.726 37.6475H140.51C141.03 37.6475 141.451 38.0688 141.451 38.5886V38.5886C141.451 39.1084 141.03 39.5298 140.51 39.5298H131.726C131.206 39.5298 130.784 39.1084 130.784 38.5886V38.5886Z",
|
|
17000
|
+
fill: "#959CA8"
|
|
17001
|
+
})), /*#__PURE__*/React.createElement("path", {
|
|
17002
|
+
d: "M86.2354 89.7247V83.4502H88.7452V91.2848C88.7452 91.8093 88.32 92.2345 87.7956 92.2345H82.4707C81.7777 92.2345 81.2158 91.6727 81.2158 90.9796C81.2158 90.2865 81.7777 89.7247 82.4707 89.7247H86.2354Z",
|
|
17003
|
+
fill: "#15749D"
|
|
17004
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17005
|
+
d: "M91.8823 91.2848V83.4502H94.3921V89.7247H98.1568C98.8499 89.7247 99.4117 90.2865 99.4117 90.9796C99.4117 91.6727 98.8499 92.2345 98.1568 92.2345H92.832C92.3075 92.2345 91.8823 91.8093 91.8823 91.2848Z",
|
|
17006
|
+
fill: "#15749D"
|
|
17007
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17008
|
+
d: "M132.667 62.7447V65.8819L140.611 70.4217C141.107 70.705 141.731 70.6214 142.135 70.2177L152.745 59.6074H148.98L141.311 67.5835C141.209 67.6894 141.048 67.7113 140.922 67.6364L132.667 62.7447Z",
|
|
17009
|
+
fill: "#15749D"
|
|
17010
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17011
|
+
d: "M145.843 58.3526C145.843 57.6595 146.405 57.0977 147.098 57.0977H157.137C157.83 57.0977 158.392 57.6595 158.392 58.3526V58.3526C158.392 59.0456 157.83 59.6075 157.137 59.6075H147.098C146.405 59.6075 145.843 59.0456 145.843 58.3526V58.3526Z",
|
|
17012
|
+
fill: "#15749D"
|
|
17013
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17014
|
+
d: "M47.9608 65.8814V62.7441L37.054 71.0541C36.1854 71.7159 36.518 73.0945 37.5928 73.2874L59.2549 77.1755V74.6657L40.4314 71.5285L47.9608 65.8814Z",
|
|
17015
|
+
fill: "#15749D"
|
|
17016
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17017
|
+
d: "M62.3921 71.5283H63.647C64.3401 71.5283 64.902 72.0902 64.902 72.7832C64.902 73.4763 64.3401 74.0381 63.647 74.0381H63.0196C61.98 74.0381 61.1372 74.8809 61.1372 75.9205C61.1372 76.9601 61.98 77.8028 63.0196 77.8028H65.5294C66.2225 77.8028 66.7843 78.3647 66.7843 79.0577C66.7843 79.7508 66.2225 80.3126 65.5294 80.3126H62.3921C60.313 80.3126 58.6274 78.6271 58.6274 76.5479V75.293C58.6274 73.2138 60.313 71.5283 62.3921 71.5283Z",
|
|
17018
|
+
fill: "#15749D"
|
|
17019
|
+
}), /*#__PURE__*/React.createElement("g", {
|
|
17020
|
+
filter: "url(#filter4_d_4979_37133)"
|
|
17021
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17022
|
+
d: "M140.823 47.0591C140.823 44.6334 142.79 42.667 145.216 42.667H159.02C161.445 42.667 163.412 44.6334 163.412 47.0591V53.3337C163.412 54.0267 162.85 54.5886 162.157 54.5886H142.078C141.385 54.5886 140.823 54.0267 140.823 53.3337V47.0591Z",
|
|
17023
|
+
fill: "#E5E7EC"
|
|
17024
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17025
|
+
fillRule: "evenodd",
|
|
17026
|
+
clipRule: "evenodd",
|
|
17027
|
+
d: "M159.02 43.9219H145.216C143.483 43.9219 142.078 45.3265 142.078 47.0591V53.3337H162.157V47.0591C162.157 45.3265 160.752 43.9219 159.02 43.9219ZM145.216 42.667C142.79 42.667 140.823 44.6334 140.823 47.0591V53.3337C140.823 54.0267 141.385 54.5886 142.078 54.5886H162.157C162.85 54.5886 163.412 54.0267 163.412 53.3337V47.0591C163.412 44.6334 161.445 42.667 159.02 42.667H145.216Z",
|
|
17028
|
+
fill: "#292A33"
|
|
17029
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17030
|
+
d: "M144.588 47.0591C144.588 46.7126 144.869 46.4316 145.216 46.4316H159.02C159.366 46.4316 159.647 46.7126 159.647 47.0591V47.0591C159.647 47.4056 159.366 47.6865 159.02 47.6865H145.216C144.869 47.6865 144.588 47.4056 144.588 47.0591V47.0591Z",
|
|
17031
|
+
fill: "#292A33"
|
|
17032
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17033
|
+
d: "M145.843 36.3926V47.6867H158.392V39.5299H161.53C161.876 39.5299 162.157 39.249 162.157 38.9024V36.3926C162.157 35.0065 161.033 33.8828 159.647 33.8828H148.353C146.967 33.8828 145.843 35.0065 145.843 36.3926Z",
|
|
17034
|
+
fill: "white"
|
|
17035
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17036
|
+
fillRule: "evenodd",
|
|
17037
|
+
clipRule: "evenodd",
|
|
17038
|
+
d: "M158.392 39.5299H161.53C161.876 39.5299 162.157 39.249 162.157 38.9024V36.3926C162.157 35.0065 161.033 33.8828 159.647 33.8828H148.353C146.967 33.8828 145.843 35.0065 145.843 36.3926V47.6867H158.392V39.5299ZM157.137 46.4318V38.275H160.902V36.3926C160.902 35.6996 160.34 35.1377 159.647 35.1377H148.353C147.66 35.1377 147.098 35.6996 147.098 36.3926V46.4318H157.137Z",
|
|
17039
|
+
fill: "#292A33"
|
|
17040
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17041
|
+
d: "M157.137 36.3926C157.137 35.0065 158.261 33.8828 159.647 33.8828L-nan -nanL-nan -nanL159.647 33.8828C161.033 33.8828 162.157 35.0065 162.157 36.3926V38.9024C162.157 39.249 161.876 39.5299 161.529 39.5299H157.137V36.3926Z",
|
|
17042
|
+
fill: "white"
|
|
17043
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17044
|
+
fillRule: "evenodd",
|
|
17045
|
+
clipRule: "evenodd",
|
|
17046
|
+
d: "M160.902 38.275V36.3926C160.902 35.6996 160.34 35.1377 159.647 35.1377C158.954 35.1377 158.392 35.6996 158.392 36.3926V38.275H160.902ZM159.647 33.8828C158.261 33.8828 157.137 35.0065 157.137 36.3926V39.5299H161.529C161.876 39.5299 162.157 39.249 162.157 38.9024V36.3926C162.157 35.0065 161.033 33.8828 159.647 33.8828Z",
|
|
17047
|
+
fill: "#292A33"
|
|
17048
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17049
|
+
d: "M148.98 37.9612C148.98 37.7879 149.121 37.6475 149.294 37.6475H154.941C155.115 37.6475 155.255 37.7879 155.255 37.9612V38.5886C155.255 38.7619 155.115 38.9024 154.941 38.9024H149.294C149.121 38.9024 148.98 38.7619 148.98 38.5886V37.9612Z",
|
|
17050
|
+
fill: "#292A33"
|
|
17051
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17052
|
+
d: "M148.98 40.471C148.98 40.2977 149.121 40.1572 149.294 40.1572H153.686C153.86 40.1572 154 40.2977 154 40.471V41.0984C154 41.2717 153.86 41.4121 153.686 41.4121H149.294C149.121 41.4121 148.98 41.2717 148.98 41.0984V40.471Z",
|
|
17053
|
+
fill: "#292A33"
|
|
17054
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
17055
|
+
d: "M148.98 42.9807C148.98 42.8075 149.121 42.667 149.294 42.667H154.941C155.115 42.667 155.255 42.8075 155.255 42.9807V43.6082C155.255 43.7814 155.115 43.9219 154.941 43.9219H149.294C149.121 43.9219 148.98 43.7814 148.98 43.6082V42.9807Z",
|
|
17056
|
+
fill: "#292A33"
|
|
17057
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("filter", {
|
|
17058
|
+
id: "filter0_d_4979_37133",
|
|
17059
|
+
x: 17.2354,
|
|
17060
|
+
y: 28.8828,
|
|
17061
|
+
width: 35.7256,
|
|
17062
|
+
height: 18.1572,
|
|
17063
|
+
filterUnits: "userSpaceOnUse",
|
|
17064
|
+
colorInterpolationFilters: "sRGB"
|
|
17065
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
17066
|
+
floodOpacity: 0,
|
|
17067
|
+
result: "BackgroundImageFix"
|
|
17068
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17069
|
+
"in": "SourceAlpha",
|
|
17070
|
+
type: "matrix",
|
|
17071
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17072
|
+
result: "hardAlpha"
|
|
17073
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
17074
|
+
stdDeviation: 2.5
|
|
17075
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
17076
|
+
in2: "hardAlpha",
|
|
17077
|
+
operator: "out"
|
|
17078
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17079
|
+
type: "matrix",
|
|
17080
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17081
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17082
|
+
mode: "normal",
|
|
17083
|
+
in2: "BackgroundImageFix",
|
|
17084
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17085
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17086
|
+
mode: "normal",
|
|
17087
|
+
"in": "SourceGraphic",
|
|
17088
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17089
|
+
result: "shape"
|
|
17090
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
17091
|
+
id: "filter1_d_4979_37133",
|
|
17092
|
+
x: 0.921631,
|
|
17093
|
+
y: 35.7842,
|
|
17094
|
+
width: 60.8235,
|
|
17095
|
+
height: 18.1572,
|
|
17096
|
+
filterUnits: "userSpaceOnUse",
|
|
17097
|
+
colorInterpolationFilters: "sRGB"
|
|
17098
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
17099
|
+
floodOpacity: 0,
|
|
17100
|
+
result: "BackgroundImageFix"
|
|
17101
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17102
|
+
"in": "SourceAlpha",
|
|
17103
|
+
type: "matrix",
|
|
17104
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17105
|
+
result: "hardAlpha"
|
|
17106
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
17107
|
+
stdDeviation: 2.5
|
|
17108
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
17109
|
+
in2: "hardAlpha",
|
|
17110
|
+
operator: "out"
|
|
17111
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17112
|
+
type: "matrix",
|
|
17113
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17114
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17115
|
+
mode: "normal",
|
|
17116
|
+
in2: "BackgroundImageFix",
|
|
17117
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17118
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17119
|
+
mode: "normal",
|
|
17120
|
+
"in": "SourceGraphic",
|
|
17121
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17122
|
+
result: "shape"
|
|
17123
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
17124
|
+
id: "filter2_d_4979_37133",
|
|
17125
|
+
x: 127.667,
|
|
17126
|
+
y: 22.6074,
|
|
17127
|
+
width: 46.3921,
|
|
17128
|
+
height: 18.1572,
|
|
17129
|
+
filterUnits: "userSpaceOnUse",
|
|
17130
|
+
colorInterpolationFilters: "sRGB"
|
|
17131
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
17132
|
+
floodOpacity: 0,
|
|
17133
|
+
result: "BackgroundImageFix"
|
|
17134
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17135
|
+
"in": "SourceAlpha",
|
|
17136
|
+
type: "matrix",
|
|
17137
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17138
|
+
result: "hardAlpha"
|
|
17139
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
17140
|
+
stdDeviation: 2.5
|
|
17141
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
17142
|
+
in2: "hardAlpha",
|
|
17143
|
+
operator: "out"
|
|
17144
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17145
|
+
type: "matrix",
|
|
17146
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17147
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17148
|
+
mode: "normal",
|
|
17149
|
+
in2: "BackgroundImageFix",
|
|
17150
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17151
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17152
|
+
mode: "normal",
|
|
17153
|
+
"in": "SourceGraphic",
|
|
17154
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17155
|
+
result: "shape"
|
|
17156
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
17157
|
+
id: "filter3_d_4979_37133",
|
|
17158
|
+
x: 118.255,
|
|
17159
|
+
y: 29.5098,
|
|
17160
|
+
width: 60.8235,
|
|
17161
|
+
height: 18.1572,
|
|
17162
|
+
filterUnits: "userSpaceOnUse",
|
|
17163
|
+
colorInterpolationFilters: "sRGB"
|
|
17164
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
17165
|
+
floodOpacity: 0,
|
|
17166
|
+
result: "BackgroundImageFix"
|
|
17167
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17168
|
+
"in": "SourceAlpha",
|
|
17169
|
+
type: "matrix",
|
|
17170
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17171
|
+
result: "hardAlpha"
|
|
17172
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
17173
|
+
stdDeviation: 2.5
|
|
17174
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
17175
|
+
in2: "hardAlpha",
|
|
17176
|
+
operator: "out"
|
|
17177
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17178
|
+
type: "matrix",
|
|
17179
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17180
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17181
|
+
mode: "normal",
|
|
17182
|
+
in2: "BackgroundImageFix",
|
|
17183
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17184
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17185
|
+
mode: "normal",
|
|
17186
|
+
"in": "SourceGraphic",
|
|
17187
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17188
|
+
result: "shape"
|
|
17189
|
+
})), /*#__PURE__*/React.createElement("filter", {
|
|
17190
|
+
id: "filter4_d_4979_37133",
|
|
17191
|
+
x: 132.823,
|
|
17192
|
+
y: 25.8828,
|
|
17193
|
+
width: 38.5881,
|
|
17194
|
+
height: 36.7061,
|
|
17195
|
+
filterUnits: "userSpaceOnUse",
|
|
17196
|
+
colorInterpolationFilters: "sRGB"
|
|
17197
|
+
}, /*#__PURE__*/React.createElement("feFlood", {
|
|
17198
|
+
floodOpacity: 0,
|
|
17199
|
+
result: "BackgroundImageFix"
|
|
17200
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17201
|
+
"in": "SourceAlpha",
|
|
17202
|
+
type: "matrix",
|
|
17203
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17204
|
+
result: "hardAlpha"
|
|
17205
|
+
}), /*#__PURE__*/React.createElement("feOffset", null), /*#__PURE__*/React.createElement("feGaussianBlur", {
|
|
17206
|
+
stdDeviation: 4
|
|
17207
|
+
}), /*#__PURE__*/React.createElement("feComposite", {
|
|
17208
|
+
in2: "hardAlpha",
|
|
17209
|
+
operator: "out"
|
|
17210
|
+
}), /*#__PURE__*/React.createElement("feColorMatrix", {
|
|
17211
|
+
type: "matrix",
|
|
17212
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"
|
|
17213
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17214
|
+
mode: "normal",
|
|
17215
|
+
in2: "BackgroundImageFix",
|
|
17216
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17217
|
+
}), /*#__PURE__*/React.createElement("feBlend", {
|
|
17218
|
+
mode: "normal",
|
|
17219
|
+
"in": "SourceGraphic",
|
|
17220
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17221
|
+
result: "shape"
|
|
17222
|
+
}))));
|
|
17223
|
+
};
|
|
17224
|
+
|
|
16479
17225
|
var FindIconSmall = function FindIconSmall(_ref) {
|
|
16480
17226
|
var themeValues = _ref.themeValues,
|
|
16481
17227
|
_ref$iconIndex = _ref.iconIndex,
|
|
@@ -16516,7 +17262,7 @@ var FindIconSmall = function FindIconSmall(_ref) {
|
|
|
16516
17262
|
})));
|
|
16517
17263
|
};
|
|
16518
17264
|
|
|
16519
|
-
var FindIconSmall$1 = themeComponent
|
|
17265
|
+
var FindIconSmall$1 = themeComponent(FindIconSmall, "Icons", fallbackValues$3, "primary");
|
|
16520
17266
|
|
|
16521
17267
|
var HistoryIconSmall = function HistoryIconSmall(_ref) {
|
|
16522
17268
|
var themeValues = _ref.themeValues;
|
|
@@ -16542,7 +17288,7 @@ var HistoryIconSmall = function HistoryIconSmall(_ref) {
|
|
|
16542
17288
|
}));
|
|
16543
17289
|
};
|
|
16544
17290
|
|
|
16545
|
-
var HistoryIconSmall$1 = themeComponent
|
|
17291
|
+
var HistoryIconSmall$1 = themeComponent(HistoryIconSmall, "Icons", fallbackValues$3, "primary");
|
|
16546
17292
|
|
|
16547
17293
|
var ChargebackIconSmall = function ChargebackIconSmall(_ref) {
|
|
16548
17294
|
var _ref$color = _ref.color,
|
|
@@ -17319,7 +18065,7 @@ var AddObligation = function AddObligation(_ref) {
|
|
|
17319
18065
|
})))));
|
|
17320
18066
|
};
|
|
17321
18067
|
|
|
17322
|
-
var AddObligation$1 = themeComponent
|
|
18068
|
+
var AddObligation$1 = themeComponent(AddObligation, "AddObligation", fallbackValues$4);
|
|
17323
18069
|
|
|
17324
18070
|
var IconChevron = function IconChevron(_ref) {
|
|
17325
18071
|
var _ref$fill = _ref.fill,
|
|
@@ -17717,7 +18463,63 @@ var fallbackValues$5 = {
|
|
|
17717
18463
|
link: link
|
|
17718
18464
|
};
|
|
17719
18465
|
|
|
18466
|
+
/*
|
|
18467
|
+
|
|
18468
|
+
A utility function that can generate box-shadow values for components
|
|
18469
|
+
Takes a string representing an rgb color value and returns an object
|
|
18470
|
+
with values for standard, inset, and overlay shadows.
|
|
18471
|
+
|
|
18472
|
+
The objects for standard and inset shadows contain versions approiate
|
|
18473
|
+
for base, hover, and active interaction states.
|
|
18474
|
+
|
|
18475
|
+
*/
|
|
18476
|
+
|
|
18477
|
+
/*
|
|
18478
|
+
Function to convert string representing rgb color to rgba value with provided opacity
|
|
18479
|
+
("rgb(41, 42, 51)", "0.1") => "rgba(41, 42, 51, 0.1)"
|
|
18480
|
+
|
|
18481
|
+
*/
|
|
18482
|
+
var rgbToRgba = function rgbToRgba() {
|
|
18483
|
+
var rgbValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "";
|
|
18484
|
+
var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "";
|
|
18485
|
+
|
|
18486
|
+
if (typeof rgbValue !== "string" || typeof opacity !== "string" || rgbValue.charAt(0) === "#") {
|
|
18487
|
+
return "";
|
|
18488
|
+
}
|
|
18489
|
+
|
|
18490
|
+
return "".concat(rgbValue.slice(0, 3), "a").concat(rgbValue.slice(3, -1), ", ").concat(opacity).concat(rgbValue.slice(-1));
|
|
18491
|
+
};
|
|
18492
|
+
|
|
18493
|
+
var generateShadows = function generateShadows() {
|
|
18494
|
+
var baseColorRGB = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "rgb(41, 42, 51)";
|
|
18495
|
+
var colorTen = rgbToRgba(baseColorRGB, "0.1") || "rgba(41, 42, 51, 0.1)";
|
|
18496
|
+
var colorTwenty = rgbToRgba(baseColorRGB, "0.2") || "rgba(41, 42, 51, 0.2)";
|
|
18497
|
+
var colorTwentyFive = rgbToRgba(baseColorRGB, "0.25") || "rgba(41, 42, 51, 0.25)";
|
|
18498
|
+
var colorThirty = rgbToRgba(baseColorRGB, "0.3") || "rgba(41, 42, 51, 0.3)";
|
|
18499
|
+
var blackTwentyFive = "rgba(0, 0, 0, 0.25)";
|
|
18500
|
+
var standard = {
|
|
18501
|
+
base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 6px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
|
|
18502
|
+
hover: "0px 1px 2px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(blackTwentyFive, ", 0px 6px 12px 0px ").concat(colorTen),
|
|
18503
|
+
active: "0px 2px 8px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(colorThirty, ", 0px 6px 12px 0px ").concat(colorTwentyFive)
|
|
18504
|
+
};
|
|
18505
|
+
var inset = {
|
|
18506
|
+
base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
|
|
18507
|
+
hover: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwentyFive, ", 0px 4px 8px 0px ").concat(colorTen),
|
|
18508
|
+
active: "0px 1px 2px 2px ".concat(colorTwenty, ", 0px 3px 6px 0px ").concat(colorThirty, ", 0px 4px 8px 0px ").concat(colorTwenty)
|
|
18509
|
+
};
|
|
18510
|
+
var overlay = {
|
|
18511
|
+
base: "0px 7px 32px 0px ".concat(colorTwenty, ", 0px 1px 4px 0px ").concat(colorTwenty, ", 0px 1px 8px -1px ").concat(colorThirty)
|
|
18512
|
+
};
|
|
18513
|
+
return {
|
|
18514
|
+
standard: standard,
|
|
18515
|
+
inset: inset,
|
|
18516
|
+
overlay: overlay
|
|
18517
|
+
};
|
|
18518
|
+
};
|
|
18519
|
+
|
|
17720
18520
|
var Alert = function Alert(_ref) {
|
|
18521
|
+
var _generateShadows, _generateShadows$inse;
|
|
18522
|
+
|
|
17721
18523
|
var heading = _ref.heading,
|
|
17722
18524
|
text = _ref.text,
|
|
17723
18525
|
textOverride = _ref.textOverride,
|
|
@@ -17731,13 +18533,26 @@ var Alert = function Alert(_ref) {
|
|
|
17731
18533
|
showQuitLink = _ref$showQuitLink === void 0 ? true : _ref$showQuitLink,
|
|
17732
18534
|
themeValues = _ref.themeValues,
|
|
17733
18535
|
extraStyles = _ref.extraStyles,
|
|
17734
|
-
maxContentWidth = _ref.maxContentWidth
|
|
18536
|
+
maxContentWidth = _ref.maxContentWidth,
|
|
18537
|
+
_ref$noBorder = _ref.noBorder,
|
|
18538
|
+
noBorder = _ref$noBorder === void 0 ? false : _ref$noBorder,
|
|
18539
|
+
_ref$enableBoxShadow = _ref.enableBoxShadow,
|
|
18540
|
+
enableBoxShadow = _ref$enableBoxShadow === void 0 ? false : _ref$enableBoxShadow,
|
|
18541
|
+
_ref$enableSmallText = _ref.enableSmallText,
|
|
18542
|
+
enableSmallText = _ref$enableSmallText === void 0 ? false : _ref$enableSmallText,
|
|
18543
|
+
_ref$innerContentPadd = _ref.innerContentPadding,
|
|
18544
|
+
innerContentPadding = _ref$innerContentPadd === void 0 ? "1rem" : _ref$innerContentPadd,
|
|
18545
|
+
_ref$iconPadding = _ref.iconPadding,
|
|
18546
|
+
iconPadding = _ref$iconPadding === void 0 ? "0 0 0 1rem" : _ref$iconPadding,
|
|
18547
|
+
_ref$contentFullHeigh = _ref.contentFullHeight,
|
|
18548
|
+
contentFullHeight = _ref$contentFullHeigh === void 0 ? false : _ref$contentFullHeigh;
|
|
17735
18549
|
var Icon = AlertIcons[variant];
|
|
18550
|
+
var contentPadding = maxContentWidth ? "".concat(padding, " 1rem") : innerContentPadding;
|
|
17736
18551
|
var content = /*#__PURE__*/React.createElement(Sidebar, {
|
|
17737
18552
|
width: "24px",
|
|
17738
18553
|
childGap: "0rem"
|
|
17739
18554
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
17740
|
-
padding:
|
|
18555
|
+
padding: iconPadding,
|
|
17741
18556
|
minHeight: "100%"
|
|
17742
18557
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
17743
18558
|
minHeight: "100%",
|
|
@@ -17751,17 +18566,18 @@ var Alert = function Alert(_ref) {
|
|
|
17751
18566
|
}, /*#__PURE__*/React.createElement(Sidebar, {
|
|
17752
18567
|
sidebarOnRight: true,
|
|
17753
18568
|
width: "24px",
|
|
17754
|
-
childGap: "0rem"
|
|
18569
|
+
childGap: "0rem",
|
|
18570
|
+
fullHeight: contentFullHeight
|
|
17755
18571
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
17756
|
-
padding:
|
|
18572
|
+
padding: contentPadding
|
|
17757
18573
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
17758
18574
|
justify: "flex-start",
|
|
17759
18575
|
align: "center"
|
|
17760
18576
|
}, textOverride ? textOverride : /*#__PURE__*/React.createElement(Stack, {
|
|
17761
18577
|
fullHeight: true,
|
|
17762
|
-
childGap: "0
|
|
18578
|
+
childGap: "0"
|
|
17763
18579
|
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
17764
|
-
variant: "p",
|
|
18580
|
+
variant: enableSmallText ? "pS" : "p",
|
|
17765
18581
|
color: themeValues.text,
|
|
17766
18582
|
weight: "600"
|
|
17767
18583
|
}, heading), /*#__PURE__*/React.createElement(Text$1, {
|
|
@@ -17783,14 +18599,15 @@ var Alert = function Alert(_ref) {
|
|
|
17783
18599
|
background: themeValues.background,
|
|
17784
18600
|
borderRadius: "4px",
|
|
17785
18601
|
borderColor: themeValues.border,
|
|
17786
|
-
borderSize: "1px",
|
|
18602
|
+
borderSize: noBorder ? "0px" : "1px",
|
|
18603
|
+
boxShadow: enableBoxShadow ? (_generateShadows = generateShadows()) === null || _generateShadows === void 0 ? void 0 : (_generateShadows$inse = _generateShadows.inset) === null || _generateShadows$inse === void 0 ? void 0 : _generateShadows$inse.base : "",
|
|
17787
18604
|
extraStyles: extraStyles
|
|
17788
18605
|
}, maxContentWidth ? /*#__PURE__*/React.createElement(Center, {
|
|
17789
18606
|
maxWidth: maxContentWidth
|
|
17790
18607
|
}, content) : content);
|
|
17791
18608
|
};
|
|
17792
18609
|
|
|
17793
|
-
var Alert$1 = themeComponent
|
|
18610
|
+
var Alert$1 = themeComponent(Alert, "Alert", fallbackValues$5, "info");
|
|
17794
18611
|
|
|
17795
18612
|
var TitleText = styled.h1.withConfig({
|
|
17796
18613
|
displayName: "Titlestyled__TitleText",
|
|
@@ -17909,7 +18726,7 @@ var Title = function Title(_ref) {
|
|
|
17909
18726
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
17910
18727
|
};
|
|
17911
18728
|
|
|
17912
|
-
var Title$1 = themeComponent
|
|
18729
|
+
var Title$1 = themeComponent(Title, "Title", fallbacks, "large");
|
|
17913
18730
|
|
|
17914
18731
|
var color$3 = "#292A33";
|
|
17915
18732
|
var fallbackValues$7 = {
|
|
@@ -17931,7 +18748,7 @@ var AmountCallout = function AmountCallout(_ref) {
|
|
|
17931
18748
|
}, amount));
|
|
17932
18749
|
};
|
|
17933
18750
|
|
|
17934
|
-
var AmountCallout$1 = themeComponent
|
|
18751
|
+
var AmountCallout$1 = themeComponent(AmountCallout, "AmountCallout", fallbackValues$7);
|
|
17935
18752
|
|
|
17936
18753
|
function _extends$1() {
|
|
17937
18754
|
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
@@ -18777,7 +19594,7 @@ var BoxWithShadow = function BoxWithShadow(_ref) {
|
|
|
18777
19594
|
}, props), children);
|
|
18778
19595
|
};
|
|
18779
19596
|
|
|
18780
|
-
var BoxWithShadow$1 = themeComponent
|
|
19597
|
+
var BoxWithShadow$1 = themeComponent(BoxWithShadow, "BoxWithShadow", fallbackValues$8);
|
|
18781
19598
|
|
|
18782
19599
|
// import theme from "styled-theming";
|
|
18783
19600
|
/*
|
|
@@ -20739,7 +21556,7 @@ var Paragraph = function Paragraph(_ref) {
|
|
|
20739
21556
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
20740
21557
|
};
|
|
20741
21558
|
|
|
20742
|
-
var Paragraph$1 = themeComponent
|
|
21559
|
+
var Paragraph$1 = themeComponent(Paragraph, "Paragraph", fallbackValues$b, "p");
|
|
20743
21560
|
|
|
20744
21561
|
var backgroundColor$1 = WHITE;
|
|
20745
21562
|
var iconBackgroundColor = GRECIAN_GREY;
|
|
@@ -20886,7 +21703,7 @@ var CardRegistryCard = function CardRegistryCard(_ref2) {
|
|
|
20886
21703
|
}))))));
|
|
20887
21704
|
};
|
|
20888
21705
|
|
|
20889
|
-
var CardRegistryCard$1 = themeComponent
|
|
21706
|
+
var CardRegistryCard$1 = themeComponent(withWindowSize(CardRegistryCard), "CardRegistryCard", fallbackValues$c);
|
|
20890
21707
|
|
|
20891
21708
|
var cardRegistry = {
|
|
20892
21709
|
accounts: function accounts(props) {
|
|
@@ -20980,7 +21797,7 @@ var CheckboxContainer = styled.div.withConfig({
|
|
|
20980
21797
|
var CheckboxLabelContainer = styled.label.withConfig({
|
|
20981
21798
|
displayName: "Checkbox__CheckboxLabelContainer",
|
|
20982
21799
|
componentId: "sc-36kqbv-1"
|
|
20983
|
-
})(["display:flex;align-items:center;"]);
|
|
21800
|
+
})(["display:flex;align-items:center;column-gap:1rem;"]);
|
|
20984
21801
|
var CheckboxIcon = styled.svg.withConfig({
|
|
20985
21802
|
displayName: "Checkbox__CheckboxIcon",
|
|
20986
21803
|
componentId: "sc-36kqbv-2"
|
|
@@ -20999,7 +21816,7 @@ var HiddenCheckbox = styled.input.attrs({
|
|
|
20999
21816
|
var StyledCheckbox = styled.div.withConfig({
|
|
21000
21817
|
displayName: "Checkbox__StyledCheckbox",
|
|
21001
21818
|
componentId: "sc-36kqbv-4"
|
|
21002
|
-
})(["display:inline-block;
|
|
21819
|
+
})(["display:inline-block;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
|
|
21003
21820
|
var checked = _ref2.checked;
|
|
21004
21821
|
return checked ? "visible" : "hidden";
|
|
21005
21822
|
}, function (_ref3) {
|
|
@@ -21029,6 +21846,8 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21029
21846
|
hidden = _ref4$hidden === void 0 ? false : _ref4$hidden,
|
|
21030
21847
|
_ref4$error = _ref4.error,
|
|
21031
21848
|
error = _ref4$error === void 0 ? false : _ref4$error,
|
|
21849
|
+
_ref4$checkboxMargin = _ref4.checkboxMargin,
|
|
21850
|
+
checkboxMargin = _ref4$checkboxMargin === void 0 ? "0 16px 0 0" : _ref4$checkboxMargin,
|
|
21032
21851
|
extraStyles = _ref4.extraStyles,
|
|
21033
21852
|
textExtraStyles = _ref4.textExtraStyles;
|
|
21034
21853
|
|
|
@@ -21057,7 +21876,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21057
21876
|
},
|
|
21058
21877
|
hiddenStyles: hidden,
|
|
21059
21878
|
background: themeValues.backgroundColor,
|
|
21060
|
-
extraStyles: "outline: none; ".concat(extraStyles)
|
|
21879
|
+
extraStyles: "outline: none; ".concat(extraStyles, "; margin: ").concat(checkboxMargin, ";")
|
|
21061
21880
|
}, /*#__PURE__*/React.createElement(CheckboxLabelContainer, null, /*#__PURE__*/React.createElement(CheckboxContainer, {
|
|
21062
21881
|
"data-qa": "Checkbox"
|
|
21063
21882
|
}, /*#__PURE__*/React.createElement(HiddenCheckbox, {
|
|
@@ -21069,7 +21888,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21069
21888
|
onChange: onChange,
|
|
21070
21889
|
tabIndex: "-1",
|
|
21071
21890
|
"aria-invalid": error,
|
|
21072
|
-
"aria-describedby": "".concat(name, "-error-message")
|
|
21891
|
+
"aria-describedby": error ? "".concat(name, "-error-message") : ""
|
|
21073
21892
|
}), /*#__PURE__*/React.createElement(StyledCheckbox, {
|
|
21074
21893
|
error: error,
|
|
21075
21894
|
disabled: disabled,
|
|
@@ -21088,7 +21907,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21088
21907
|
checkColor: themeValues.checkColor
|
|
21089
21908
|
}, /*#__PURE__*/React.createElement("polyline", {
|
|
21090
21909
|
points: "20 6 9 17 4 12"
|
|
21091
|
-
})))), /*#__PURE__*/React.createElement(Text$1, {
|
|
21910
|
+
})))), title && /*#__PURE__*/React.createElement(Text$1, {
|
|
21092
21911
|
variant: "p",
|
|
21093
21912
|
weight: themeValues.textFontWeight,
|
|
21094
21913
|
color: themeValues.textColor,
|
|
@@ -21096,7 +21915,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21096
21915
|
}, title)));
|
|
21097
21916
|
};
|
|
21098
21917
|
|
|
21099
|
-
var Checkbox$1 = themeComponent
|
|
21918
|
+
var Checkbox$1 = themeComponent(Checkbox, "Checkbox", fallbackValues$d, "default");
|
|
21100
21919
|
|
|
21101
21920
|
var listBackgroundColor = {
|
|
21102
21921
|
"default": "".concat(ATHENS_GREY),
|
|
@@ -21293,7 +22112,7 @@ var CheckboxList = function CheckboxList(_ref2) {
|
|
|
21293
22112
|
})));
|
|
21294
22113
|
};
|
|
21295
22114
|
|
|
21296
|
-
var CheckboxList$1 = themeComponent
|
|
22115
|
+
var CheckboxList$1 = themeComponent(CheckboxList, "CheckboxList", fallbackValues$e, "default");
|
|
21297
22116
|
|
|
21298
22117
|
var DropdownIcon = function DropdownIcon() {
|
|
21299
22118
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -22989,7 +23808,7 @@ var Dropdown = function Dropdown(_ref8) {
|
|
|
22989
23808
|
}))) : /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
22990
23809
|
};
|
|
22991
23810
|
|
|
22992
|
-
var Dropdown$1 = themeComponent
|
|
23811
|
+
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$f);
|
|
22993
23812
|
|
|
22994
23813
|
var SelectContainer = styled.div.withConfig({
|
|
22995
23814
|
displayName: "FormSelectstyled__SelectContainer",
|
|
@@ -23163,7 +23982,7 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
23163
23982
|
})));
|
|
23164
23983
|
};
|
|
23165
23984
|
|
|
23166
|
-
var FormSelect$1 = themeComponent
|
|
23985
|
+
var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$g, "default");
|
|
23167
23986
|
|
|
23168
23987
|
var options = [{
|
|
23169
23988
|
text: "Afghanistan",
|
|
@@ -24057,7 +24876,7 @@ var Detail = function Detail(_ref) {
|
|
|
24057
24876
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
24058
24877
|
};
|
|
24059
24878
|
|
|
24060
|
-
var Detail$1 = themeComponent
|
|
24879
|
+
var Detail$1 = themeComponent(Detail, "Detail", fallbacks$1, "regular");
|
|
24061
24880
|
|
|
24062
24881
|
var backgroundColor$3 = WHITE;
|
|
24063
24882
|
var boxShadow = "0px 2px 14px 0px ".concat(ATHENS_GREY, ", 0px 3px 8px 0px ").concat(GHOST_GREY);
|
|
@@ -24082,7 +24901,7 @@ var DisplayBox = function DisplayBox(_ref) {
|
|
|
24082
24901
|
}, children));
|
|
24083
24902
|
};
|
|
24084
24903
|
|
|
24085
|
-
var DisplayBox$1 = themeComponent
|
|
24904
|
+
var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$i);
|
|
24086
24905
|
|
|
24087
24906
|
function _extends$2() {
|
|
24088
24907
|
_extends$2 = Object.assign || function (target) {
|
|
@@ -24631,7 +25450,7 @@ var Popover = function Popover(_ref) {
|
|
|
24631
25450
|
})));
|
|
24632
25451
|
};
|
|
24633
25452
|
|
|
24634
|
-
var Popover$1 = themeComponent
|
|
25453
|
+
var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$j);
|
|
24635
25454
|
|
|
24636
25455
|
var DisplayCard = function DisplayCard(_ref) {
|
|
24637
25456
|
var title = _ref.title,
|
|
@@ -24971,7 +25790,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
24971
25790
|
}, decorator)));
|
|
24972
25791
|
};
|
|
24973
25792
|
|
|
24974
|
-
var FormInput$1 = themeComponent
|
|
25793
|
+
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$k, "default");
|
|
24975
25794
|
|
|
24976
25795
|
var _excluded$q = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
|
|
24977
25796
|
|
|
@@ -25027,7 +25846,7 @@ var FormContainer = function FormContainer(_ref) {
|
|
|
25027
25846
|
}, rest), children);
|
|
25028
25847
|
};
|
|
25029
25848
|
|
|
25030
|
-
var FormContainer$1 = themeComponent
|
|
25849
|
+
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$k, "default");
|
|
25031
25850
|
|
|
25032
25851
|
var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
25033
25852
|
var themeValues = _ref.themeValues,
|
|
@@ -25051,7 +25870,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
|
25051
25870
|
})));
|
|
25052
25871
|
};
|
|
25053
25872
|
|
|
25054
|
-
var FormFooterPanel$1 = themeComponent
|
|
25873
|
+
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$k, "default");
|
|
25055
25874
|
|
|
25056
25875
|
var fontSize$7 = {
|
|
25057
25876
|
"default": "1rem",
|
|
@@ -25108,7 +25927,7 @@ var FormattedAddress = function FormattedAddress(_ref) {
|
|
|
25108
25927
|
}, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
|
|
25109
25928
|
};
|
|
25110
25929
|
|
|
25111
|
-
var FormattedAddress$1 = themeComponent
|
|
25930
|
+
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$l, "default");
|
|
25112
25931
|
|
|
25113
25932
|
var textColor$1 = "".concat(CHARADE_GREY);
|
|
25114
25933
|
var autopayTextColor = "".concat(REGENT_GREY);
|
|
@@ -25152,7 +25971,7 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
|
|
|
25152
25971
|
}, "Autopay Enabled")));
|
|
25153
25972
|
};
|
|
25154
25973
|
|
|
25155
|
-
var FormattedBankAccount$1 = themeComponent
|
|
25974
|
+
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$m);
|
|
25156
25975
|
|
|
25157
25976
|
var textColor$2 = "".concat(CHARADE_GREY);
|
|
25158
25977
|
var autopayTextColor$1 = "".concat(REGENT_GREY);
|
|
@@ -25193,7 +26012,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
25193
26012
|
}, "Autopay Enabled")));
|
|
25194
26013
|
};
|
|
25195
26014
|
|
|
25196
|
-
var FormattedCreditCard$1 = themeComponent
|
|
26015
|
+
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$n);
|
|
25197
26016
|
|
|
25198
26017
|
var Hamburger = styled.button.withConfig({
|
|
25199
26018
|
displayName: "HamburgerButton__Hamburger",
|
|
@@ -25317,7 +26136,7 @@ var Heading = function Heading(_ref) {
|
|
|
25317
26136
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
25318
26137
|
};
|
|
25319
26138
|
|
|
25320
|
-
var Heading$1 = themeComponent
|
|
26139
|
+
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$o, "h1");
|
|
25321
26140
|
|
|
25322
26141
|
var Image = styled.img.withConfig({
|
|
25323
26142
|
displayName: "ImageBoxstyled__Image",
|
|
@@ -25472,7 +26291,7 @@ var LabeledAmount = function LabeledAmount(_ref) {
|
|
|
25472
26291
|
}, amount));
|
|
25473
26292
|
};
|
|
25474
26293
|
|
|
25475
|
-
var LabeledAmount$1 = themeComponent
|
|
26294
|
+
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$p, "default");
|
|
25476
26295
|
|
|
25477
26296
|
var weightTitle = {
|
|
25478
26297
|
"default": "600",
|
|
@@ -25491,7 +26310,9 @@ var LineItem = function LineItem(_ref) {
|
|
|
25491
26310
|
var description = _ref.description,
|
|
25492
26311
|
subDescription = _ref.subDescription,
|
|
25493
26312
|
amount = _ref.amount,
|
|
25494
|
-
themeValues = _ref.themeValues
|
|
26313
|
+
themeValues = _ref.themeValues,
|
|
26314
|
+
_ref$displayQuantity = _ref.displayQuantity,
|
|
26315
|
+
displayQuantity = _ref$displayQuantity === void 0 ? null : _ref$displayQuantity;
|
|
25495
26316
|
return /*#__PURE__*/React.createElement(Cluster, {
|
|
25496
26317
|
nowrap: true,
|
|
25497
26318
|
justify: "space-between",
|
|
@@ -25504,14 +26325,17 @@ var LineItem = function LineItem(_ref) {
|
|
|
25504
26325
|
}, description), /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
25505
26326
|
variant: themeValues.paragraphVariant,
|
|
25506
26327
|
weight: "400"
|
|
25507
|
-
}, subDescription)), /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
26328
|
+
}, subDescription)), !!displayQuantity && /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
26329
|
+
variant: themeValues.paragraphVariant,
|
|
26330
|
+
weight: themeValues.weightTitle
|
|
26331
|
+
}, "x".concat(displayQuantity)), /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
25508
26332
|
variant: themeValues.paragraphVariant,
|
|
25509
26333
|
weight: "600",
|
|
25510
26334
|
extraStyles: "margin: 0; text-align: end; min-width: fit-content; padding-left: 32px;"
|
|
25511
26335
|
}, amount));
|
|
25512
26336
|
};
|
|
25513
26337
|
|
|
25514
|
-
var LineItem$1 = themeComponent
|
|
26338
|
+
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$q, "default");
|
|
25515
26339
|
|
|
25516
26340
|
var color$8 = "#15749D";
|
|
25517
26341
|
var fallbackValues$r = {
|
|
@@ -25521,7 +26345,7 @@ var fallbackValues$r = {
|
|
|
25521
26345
|
var SpinnerSvgAnimation = styled.svg.withConfig({
|
|
25522
26346
|
displayName: "Spinner__SpinnerSvgAnimation",
|
|
25523
26347
|
componentId: "sc-vhupl9-0"
|
|
25524
|
-
})(["animation:rotate 2s linear infinite;margin:-25px 0 0 -25px;width:", "px;height:", "px;& .path{stroke:", ";stroke-linecap:round;animation:dash 1.5s ease-in-out infinite;}@keyframes rotate{100%{transform:rotate(360deg);}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0;}50%{stroke-dasharray:90,150;stroke-dashoffset:-35;}100%{stroke-dasharray:90,150;stroke-dashoffset:-124;}}"], function (_ref) {
|
|
26348
|
+
})(["animation:rotate 2s linear infinite;margin:-25px 0 0 -25px;width:", "px;height:", "px;& .path{stroke:", ";stroke-linecap:round;animation:dash 1.5s ease-in-out infinite;}@keyframes rotate{100%{transform:rotate(360deg);}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0;}50%{stroke-dasharray:90,150;stroke-dashoffset:-35;}100%{stroke-dasharray:90,150;stroke-dashoffset:-124;}}", ""], function (_ref) {
|
|
25525
26349
|
var size = _ref.size;
|
|
25526
26350
|
return size;
|
|
25527
26351
|
}, function (_ref2) {
|
|
@@ -25530,19 +26354,36 @@ var SpinnerSvgAnimation = styled.svg.withConfig({
|
|
|
25530
26354
|
}, function (_ref3) {
|
|
25531
26355
|
var color = _ref3.color;
|
|
25532
26356
|
return color;
|
|
26357
|
+
}, function (_ref4) {
|
|
26358
|
+
var centerSpinner = _ref4.centerSpinner;
|
|
26359
|
+
return centerSpinner ? css(["margin:0;"]) : "";
|
|
25533
26360
|
});
|
|
25534
26361
|
var SpinnerContainer$2 = styled.div.withConfig({
|
|
25535
26362
|
displayName: "Spinner__SpinnerContainer",
|
|
25536
26363
|
componentId: "sc-vhupl9-1"
|
|
25537
|
-
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;"])
|
|
26364
|
+
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;", ""], function (_ref5) {
|
|
26365
|
+
var centerSpinner = _ref5.centerSpinner,
|
|
26366
|
+
size = _ref5.size;
|
|
26367
|
+
return centerSpinner ? css(["width:", "px;height:", "px;"], size, size) : "";
|
|
26368
|
+
});
|
|
26369
|
+
/*
|
|
26370
|
+
`centerSpinner` prop alters existing styling of spinner to allow it to properly center itself within
|
|
26371
|
+
containers. Default is false to preserve legacy behavior for past uses.
|
|
26372
|
+
*/
|
|
25538
26373
|
|
|
25539
|
-
var Spinner$1 = function Spinner(
|
|
25540
|
-
var
|
|
25541
|
-
size =
|
|
25542
|
-
|
|
25543
|
-
|
|
26374
|
+
var Spinner$1 = function Spinner(_ref6) {
|
|
26375
|
+
var _ref6$size = _ref6.size,
|
|
26376
|
+
size = _ref6$size === void 0 ? "24" : _ref6$size,
|
|
26377
|
+
_ref6$centerSpinner = _ref6.centerSpinner,
|
|
26378
|
+
centerSpinner = _ref6$centerSpinner === void 0 ? false : _ref6$centerSpinner,
|
|
26379
|
+
themeValues = _ref6.themeValues;
|
|
26380
|
+
return /*#__PURE__*/React.createElement(SpinnerContainer$2, {
|
|
26381
|
+
centerSpinner: centerSpinner,
|
|
26382
|
+
size: size
|
|
26383
|
+
}, /*#__PURE__*/React.createElement(SpinnerSvgAnimation, {
|
|
25544
26384
|
size: size,
|
|
25545
|
-
color: themeValues.color
|
|
26385
|
+
color: themeValues.color,
|
|
26386
|
+
centerSpinner: centerSpinner
|
|
25546
26387
|
}, /*#__PURE__*/React.createElement("circle", {
|
|
25547
26388
|
className: "path",
|
|
25548
26389
|
cx: "50",
|
|
@@ -25553,7 +26394,7 @@ var Spinner$1 = function Spinner(_ref4) {
|
|
|
25553
26394
|
})));
|
|
25554
26395
|
};
|
|
25555
26396
|
|
|
25556
|
-
var Spinner$2 = themeComponent
|
|
26397
|
+
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$r);
|
|
25557
26398
|
|
|
25558
26399
|
var Loading = function Loading() {
|
|
25559
26400
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -25928,7 +26769,7 @@ var Placeholder = function Placeholder(_ref2) {
|
|
|
25928
26769
|
}, text)))))))))));
|
|
25929
26770
|
};
|
|
25930
26771
|
|
|
25931
|
-
var Placeholder$1 = themeComponent
|
|
26772
|
+
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$s, "default");
|
|
25932
26773
|
|
|
25933
26774
|
var backgroundColor$4 = {
|
|
25934
26775
|
"default": "".concat(WHITE)
|
|
@@ -25961,15 +26802,7 @@ var ProcessingFee = function ProcessingFee(_ref) {
|
|
|
25961
26802
|
}));
|
|
25962
26803
|
};
|
|
25963
26804
|
|
|
25964
|
-
var ProcessingFee$1 = themeComponent
|
|
25965
|
-
|
|
25966
|
-
|
|
25967
|
-
|
|
25968
|
-
var index$5 = /*#__PURE__*/Object.freeze({
|
|
25969
|
-
__proto__: null,
|
|
25970
|
-
colors: colors,
|
|
25971
|
-
fontWeights: style_constants
|
|
25972
|
-
});
|
|
26805
|
+
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$t, "default");
|
|
25973
26806
|
|
|
25974
26807
|
var HiddenRadioInput = styled.input.withConfig({
|
|
25975
26808
|
displayName: "RadioButtonWithLabel__HiddenRadioInput",
|
|
@@ -26059,6 +26892,8 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
26059
26892
|
name = _ref2.name,
|
|
26060
26893
|
_ref2$disabled = _ref2.disabled,
|
|
26061
26894
|
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
26895
|
+
_ref2$ariaDescribedBy = _ref2.ariaDescribedBy,
|
|
26896
|
+
ariaDescribedBy = _ref2$ariaDescribedBy === void 0 ? "" : _ref2$ariaDescribedBy,
|
|
26062
26897
|
themeValues = _ref2.themeValues;
|
|
26063
26898
|
var buttonBorder = {
|
|
26064
26899
|
onFocused: {
|
|
@@ -26110,6 +26945,7 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
26110
26945
|
"aria-label": name,
|
|
26111
26946
|
disabled: disabled,
|
|
26112
26947
|
onClick: toggleRadio,
|
|
26948
|
+
"aria-describedby": ariaDescribedBy,
|
|
26113
26949
|
tabIndex: "-1"
|
|
26114
26950
|
}), /*#__PURE__*/React.createElement(Motion, {
|
|
26115
26951
|
borderWidth: "1px",
|
|
@@ -26127,7 +26963,7 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
26127
26963
|
})));
|
|
26128
26964
|
};
|
|
26129
26965
|
|
|
26130
|
-
var RadioButton$2 = themeComponent
|
|
26966
|
+
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$u);
|
|
26131
26967
|
|
|
26132
26968
|
var border$2 = {
|
|
26133
26969
|
"default": "1px solid #caced8"
|
|
@@ -26209,7 +27045,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
26209
27045
|
}))));
|
|
26210
27046
|
};
|
|
26211
27047
|
|
|
26212
|
-
var SearchableSelect$1 = themeComponent
|
|
27048
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$v, "default");
|
|
26213
27049
|
|
|
26214
27050
|
var borderColor$2 = {
|
|
26215
27051
|
"default": "".concat(GREY_CHATEAU)
|
|
@@ -26234,7 +27070,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
26234
27070
|
});
|
|
26235
27071
|
};
|
|
26236
27072
|
|
|
26237
|
-
var SolidDivider$1 = themeComponent
|
|
27073
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$w, "default");
|
|
26238
27074
|
|
|
26239
27075
|
var placeHolderOptionUS = {
|
|
26240
27076
|
text: "Please select state",
|
|
@@ -36994,7 +37830,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
|
36994
37830
|
}, label))));
|
|
36995
37831
|
};
|
|
36996
37832
|
|
|
36997
|
-
var ToggleSwitch$1 = themeComponent
|
|
37833
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$x);
|
|
36998
37834
|
|
|
36999
37835
|
var background$1 = "".concat(ATHENS_GREY);
|
|
37000
37836
|
var white$1 = "".concat(WHITE);
|
|
@@ -37091,7 +37927,7 @@ var CardText = function CardText(_ref) {
|
|
|
37091
37927
|
color: themeValues.textColor
|
|
37092
37928
|
}, text))));
|
|
37093
37929
|
};
|
|
37094
|
-
var CardText$1 = themeComponent
|
|
37930
|
+
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$z);
|
|
37095
37931
|
|
|
37096
37932
|
var CardHeader = function CardHeader(_ref) {
|
|
37097
37933
|
var backgroundColor = _ref.backgroundColor,
|
|
@@ -37149,11 +37985,10 @@ var Card = function Card(_ref) {
|
|
|
37149
37985
|
minWidth: width,
|
|
37150
37986
|
extraStyles: extraStyles
|
|
37151
37987
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
37152
|
-
singleChild: true
|
|
37153
|
-
fillCenter: true
|
|
37988
|
+
singleChild: true
|
|
37154
37989
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
37155
37990
|
fullHeight: true,
|
|
37156
|
-
childGap: "
|
|
37991
|
+
childGap: "1.5rem",
|
|
37157
37992
|
bottomItem: numberOfChildren
|
|
37158
37993
|
}, headerText && /*#__PURE__*/React.createElement(CardHeader, {
|
|
37159
37994
|
headerText: headerText,
|
|
@@ -37163,7 +37998,10 @@ var Card = function Card(_ref) {
|
|
|
37163
37998
|
borderRadius: borderRadius,
|
|
37164
37999
|
padding: padding,
|
|
37165
38000
|
as: headerAs
|
|
37166
|
-
}),
|
|
38001
|
+
}), /*#__PURE__*/React.createElement(Stack, {
|
|
38002
|
+
direction: "row",
|
|
38003
|
+
childGap: "0"
|
|
38004
|
+
}, Image && !imgSrc && /*#__PURE__*/React.createElement(Box, {
|
|
37167
38005
|
minHeight: imgHeight,
|
|
37168
38006
|
padding: "0",
|
|
37169
38007
|
background: themeValues.imageBackgroundColor
|
|
@@ -37180,15 +38018,19 @@ var Card = function Card(_ref) {
|
|
|
37180
38018
|
backgroundColor: themeValues.imageBackgroundColor,
|
|
37181
38019
|
src: imgSrc,
|
|
37182
38020
|
alt: imgAltText
|
|
37183
|
-
}),
|
|
38021
|
+
}), /*#__PURE__*/React.createElement(Box, {
|
|
38022
|
+
padding: "0",
|
|
38023
|
+
width: "100%",
|
|
38024
|
+
extraStyles: "flex-basis: 100%;"
|
|
38025
|
+
}, text && /*#__PURE__*/React.createElement(CardText$1, {
|
|
37184
38026
|
padding: padding,
|
|
37185
38027
|
titleText: titleText,
|
|
37186
38028
|
text: text,
|
|
37187
38029
|
titleVariant: titleVariant
|
|
37188
|
-
}), children)));
|
|
38030
|
+
}), children)))));
|
|
37189
38031
|
};
|
|
37190
38032
|
|
|
37191
|
-
var Card$1 = themeComponent
|
|
38033
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$y);
|
|
37192
38034
|
|
|
37193
38035
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
37194
38036
|
var activeColor$6 = MATISSE_BLUE;
|
|
@@ -37226,7 +38068,7 @@ var NavTab = function NavTab(_ref) {
|
|
|
37226
38068
|
}, label));
|
|
37227
38069
|
};
|
|
37228
38070
|
|
|
37229
|
-
var NavTab$1 = themeComponent
|
|
38071
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$A);
|
|
37230
38072
|
|
|
37231
38073
|
var NavTabs = function NavTabs(_ref) {
|
|
37232
38074
|
var tabsConfig = _ref.tabsConfig,
|
|
@@ -37250,6 +38092,14 @@ var NavTabs = function NavTabs(_ref) {
|
|
|
37250
38092
|
}, tabs)));
|
|
37251
38093
|
};
|
|
37252
38094
|
|
|
38095
|
+
|
|
38096
|
+
|
|
38097
|
+
var index$5 = /*#__PURE__*/Object.freeze({
|
|
38098
|
+
__proto__: null,
|
|
38099
|
+
colors: colors,
|
|
38100
|
+
fontWeights: style_constants
|
|
38101
|
+
});
|
|
38102
|
+
|
|
37253
38103
|
var shineFrames = keyframes$3(["{0{background-position:0 0;}20%{background-position:100% 100%;}100%{background-position:100% 100%;}}"]);
|
|
37254
38104
|
var LoadingPill = styled.div.withConfig({
|
|
37255
38105
|
displayName: "LoadingPillstyled__LoadingPill",
|
|
@@ -37383,7 +38233,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
37383
38233
|
}, props), children);
|
|
37384
38234
|
};
|
|
37385
38235
|
|
|
37386
|
-
var TableRow$1 = themeComponent
|
|
38236
|
+
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$C);
|
|
37387
38237
|
|
|
37388
38238
|
var TableHead = function TableHead(_ref) {
|
|
37389
38239
|
var children = _ref.children,
|
|
@@ -37399,7 +38249,7 @@ var TableHead = function TableHead(_ref) {
|
|
|
37399
38249
|
}, children));
|
|
37400
38250
|
};
|
|
37401
38251
|
|
|
37402
|
-
var TableHead$1 = themeComponent
|
|
38252
|
+
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$B);
|
|
37403
38253
|
|
|
37404
38254
|
var TableHeading_styled = styled.th.withConfig({
|
|
37405
38255
|
displayName: "TableHeadingstyled",
|
|
@@ -39372,7 +40222,7 @@ var Banner = function Banner(_ref) {
|
|
|
39372
40222
|
}, /*#__PURE__*/React.createElement(Image, null))));
|
|
39373
40223
|
};
|
|
39374
40224
|
|
|
39375
|
-
var Banner$1 = themeComponent
|
|
40225
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$D);
|
|
39376
40226
|
|
|
39377
40227
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
39378
40228
|
var _newPasswordErrorMess;
|
|
@@ -39545,7 +40395,9 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
39545
40395
|
_ref$name = _ref.name,
|
|
39546
40396
|
name = _ref$name === void 0 ? "" : _ref$name,
|
|
39547
40397
|
_ref$index = _ref.index,
|
|
39548
|
-
index = _ref$index === void 0 ? 1 : _ref$index
|
|
40398
|
+
index = _ref$index === void 0 ? 1 : _ref$index,
|
|
40399
|
+
_ref$extraStyles = _ref.extraStyles,
|
|
40400
|
+
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
|
|
39549
40401
|
|
|
39550
40402
|
var handleKeyDown = function handleKeyDown(e) {
|
|
39551
40403
|
if (e.keyCode === 13) {
|
|
@@ -39605,7 +40457,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
39605
40457
|
hoverStyles: "cursor: pointer;",
|
|
39606
40458
|
tabIndex: "0",
|
|
39607
40459
|
onKeyDown: handleKeyDown,
|
|
39608
|
-
extraStyles: "z-index: 25;",
|
|
40460
|
+
extraStyles: "z-index: 25; ".concat(extraStyles),
|
|
39609
40461
|
role: "button",
|
|
39610
40462
|
"aria-expanded": isOpen.toString(),
|
|
39611
40463
|
"aria-controls": id,
|
|
@@ -39641,7 +40493,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
39641
40493
|
}, children))));
|
|
39642
40494
|
};
|
|
39643
40495
|
|
|
39644
|
-
var CollapsibleSection$1 = themeComponent
|
|
40496
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$E);
|
|
39645
40497
|
|
|
39646
40498
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
39647
40499
|
var themeValues = _ref.themeValues;
|
|
@@ -39675,7 +40527,7 @@ var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
|
39675
40527
|
})));
|
|
39676
40528
|
};
|
|
39677
40529
|
|
|
39678
|
-
var ClipboardIcon$1 = themeComponent
|
|
40530
|
+
var ClipboardIcon$1 = themeComponent(ClipboardIcon, "Icons", fallbackValues$3, "primary");
|
|
39679
40531
|
|
|
39680
40532
|
/*
|
|
39681
40533
|
This component will render `content` and a clipboard icon.
|
|
@@ -39932,13 +40784,16 @@ var EditableList = function EditableList(_ref) {
|
|
|
39932
40784
|
autoPayMethods = _ref.autoPayMethods,
|
|
39933
40785
|
_ref$as = _ref.as,
|
|
39934
40786
|
as = _ref$as === void 0 ? "p" : _ref$as,
|
|
40787
|
+
_ref$listPadding = _ref.listPadding,
|
|
40788
|
+
listPadding = _ref$listPadding === void 0 ? "0rem 0rem 1.5rem 0rem" : _ref$listPadding,
|
|
39935
40789
|
qaPrefix = _ref.qaPrefix,
|
|
39936
40790
|
ariaLabel = _ref.ariaLabel;
|
|
39937
40791
|
var addText = "Add a".concat(itemName[0].match(/[aieouAIEOU]/) ? "n" : "", " ").concat(itemName);
|
|
39938
40792
|
return /*#__PURE__*/React.createElement(Box, {
|
|
39939
|
-
padding:
|
|
40793
|
+
padding: listPadding,
|
|
39940
40794
|
as: "section",
|
|
39941
|
-
"aria-labelledby": "
|
|
40795
|
+
"aria-labelledby": typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : "",
|
|
40796
|
+
"aria-label": !title && typeof itemName === "string" ? "editable-list-".concat(createIdFromString(itemName)) : ""
|
|
39942
40797
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
39943
40798
|
childGap: "0rem"
|
|
39944
40799
|
}, title !== "" && /*#__PURE__*/React.createElement(Box, {
|
|
@@ -39947,7 +40802,8 @@ var EditableList = function EditableList(_ref) {
|
|
|
39947
40802
|
as: as,
|
|
39948
40803
|
weight: titleWeight,
|
|
39949
40804
|
color: CHARADE_GREY,
|
|
39950
|
-
extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;"
|
|
40805
|
+
extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;",
|
|
40806
|
+
id: typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : ""
|
|
39951
40807
|
}, title)), /*#__PURE__*/React.createElement(Box, {
|
|
39952
40808
|
padding: "0",
|
|
39953
40809
|
borderRadius: "4px",
|
|
@@ -40259,7 +41115,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
40259
41115
|
}));
|
|
40260
41116
|
};
|
|
40261
41117
|
|
|
40262
|
-
var FooterWithSubfooter$1 = themeComponent
|
|
41118
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$F);
|
|
40263
41119
|
|
|
40264
41120
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
40265
41121
|
var _EmailErrorMessages;
|
|
@@ -40371,7 +41227,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
40371
41227
|
}), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
|
|
40372
41228
|
};
|
|
40373
41229
|
|
|
40374
|
-
var HighlightTabRow$1 = themeComponent
|
|
41230
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$G);
|
|
40375
41231
|
|
|
40376
41232
|
var AccountBillIcon = function AccountBillIcon() {
|
|
40377
41233
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -45591,7 +46447,7 @@ var Module = function Module(_ref) {
|
|
|
45591
46447
|
}, children)));
|
|
45592
46448
|
};
|
|
45593
46449
|
|
|
45594
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent
|
|
46450
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$H, "default"));
|
|
45595
46451
|
|
|
45596
46452
|
var backgroundColor$a = {
|
|
45597
46453
|
profile: "#3b414d",
|
|
@@ -45642,7 +46498,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
45642
46498
|
}, menuContent));
|
|
45643
46499
|
};
|
|
45644
46500
|
|
|
45645
|
-
var NavMenuDesktop$1 = themeComponent
|
|
46501
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$I, "profile");
|
|
45646
46502
|
|
|
45647
46503
|
var menu = posed.div({
|
|
45648
46504
|
invisible: {
|
|
@@ -45677,19 +46533,25 @@ var menu = posed.div({
|
|
|
45677
46533
|
var ImposterMenu = styled(menu).withConfig({
|
|
45678
46534
|
displayName: "NavMenuMobile__ImposterMenu",
|
|
45679
46535
|
componentId: "sc-1pf0qp7-0"
|
|
45680
|
-
})(["position:fixed;top:
|
|
46536
|
+
})(["position:fixed;top:", ";"], function (_ref) {
|
|
46537
|
+
var headerSize = _ref.headerSize;
|
|
46538
|
+
return headerSize;
|
|
46539
|
+
});
|
|
45681
46540
|
|
|
45682
|
-
var NavMenuMobile = function NavMenuMobile(
|
|
45683
|
-
var id =
|
|
45684
|
-
|
|
45685
|
-
menuContent =
|
|
45686
|
-
|
|
45687
|
-
visible =
|
|
45688
|
-
|
|
46541
|
+
var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
46542
|
+
var id = _ref2.id,
|
|
46543
|
+
_ref2$menuContent = _ref2.menuContent,
|
|
46544
|
+
menuContent = _ref2$menuContent === void 0 ? [] : _ref2$menuContent,
|
|
46545
|
+
_ref2$visible = _ref2.visible,
|
|
46546
|
+
visible = _ref2$visible === void 0 ? false : _ref2$visible,
|
|
46547
|
+
_ref2$headerSize = _ref2.headerSize,
|
|
46548
|
+
headerSize = _ref2$headerSize === void 0 ? "72px" : _ref2$headerSize,
|
|
46549
|
+
themeValues = _ref2.themeValues;
|
|
45689
46550
|
return /*#__PURE__*/React.createElement(ImposterMenu, {
|
|
45690
46551
|
id: id,
|
|
45691
46552
|
initialPose: "invisible",
|
|
45692
|
-
pose: visible ? "visible" : "invisible"
|
|
46553
|
+
pose: visible ? "visible" : "invisible",
|
|
46554
|
+
headerSize: headerSize
|
|
45693
46555
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
45694
46556
|
width: "100vw",
|
|
45695
46557
|
padding: "1rem 0.5rem",
|
|
@@ -45698,7 +46560,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
|
|
|
45698
46560
|
}, menuContent));
|
|
45699
46561
|
};
|
|
45700
46562
|
|
|
45701
|
-
var NavMenuMobile$1 = themeComponent
|
|
46563
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$I, "profile");
|
|
45702
46564
|
|
|
45703
46565
|
var ACH_METHOD = "BANK_ACCOUNT";
|
|
45704
46566
|
var CC_METHOD = "CREDIT_CARD";
|
|
@@ -45792,7 +46654,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
45792
46654
|
var allowsCard = allowedPaymentInstruments.includes(CC_METHOD);
|
|
45793
46655
|
var allowsACH = allowedPaymentInstruments.includes(ACH_METHOD);
|
|
45794
46656
|
var methodRequired = allowsCard && !allowsACH ? "debit or credit card payment method" : !allowsCard && allowsACH ? "checking account payment method" : "payment method";
|
|
45795
|
-
return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address
|
|
46657
|
+
return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address. Do you want to save these now?");
|
|
45796
46658
|
};
|
|
45797
46659
|
|
|
45798
46660
|
var plan = isPaymentPlan ? "your payment plan" : "autopay";
|
|
@@ -45803,7 +46665,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
45803
46665
|
var modalExtraProps = {
|
|
45804
46666
|
modalHeaderText: autoPayActive ? titleCaseString(deactivateText) : titleCaseString(activateText),
|
|
45805
46667
|
modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(plan, "? ").concat(!inactive && nextDate ? "Your next payment will be due on ".concat(nextDate, ".") : "") : generateMethodNeededText(plan, allowedPaymentInstruments),
|
|
45806
|
-
continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add
|
|
46668
|
+
continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add",
|
|
45807
46669
|
useDangerButton: autoPayActive,
|
|
45808
46670
|
continueAction: autoPayActive ? function () {
|
|
45809
46671
|
deactivatePaymentSchedule(isPaymentPlan ? paymentPlanSchedule : autoPaySchedule, isPaymentPlan);
|
|
@@ -45885,7 +46747,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
45885
46747
|
}, modalExtraProps), renderAutoPayControl());
|
|
45886
46748
|
};
|
|
45887
46749
|
|
|
45888
|
-
var AutopayModalModule = themeComponent
|
|
46750
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$J);
|
|
45889
46751
|
|
|
45890
46752
|
var AmountModule = function AmountModule(_ref) {
|
|
45891
46753
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -46111,7 +46973,7 @@ var RemoveAccountModalModule = function RemoveAccountModalModule(_ref) {
|
|
|
46111
46973
|
},
|
|
46112
46974
|
modalOpen: modalIsOpen,
|
|
46113
46975
|
modalHeaderText: "Remove ".concat(accountType),
|
|
46114
|
-
modalBodyText: "Are you sure you want to remove the ".concat(identifier, " ").concat(accounts, "
|
|
46976
|
+
modalBodyText: "Are you sure you want to remove the ".concat(identifier, " ").concat(accounts, "? Any autopay scheduled against ").concat(obligations.length > 1 ? "them" : "it", " will be deactivated."),
|
|
46115
46977
|
continueButtonText: "Remove",
|
|
46116
46978
|
continueAction: function continueAction() {
|
|
46117
46979
|
removeAccount();
|
|
@@ -46451,6 +47313,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46451
47313
|
maximum = _ref.maximum,
|
|
46452
47314
|
_ref$minimum = _ref.minimum,
|
|
46453
47315
|
minimum = _ref$minimum === void 0 ? 1 : _ref$minimum,
|
|
47316
|
+
blockPartialPaymentOverpay = _ref.blockPartialPaymentOverpay,
|
|
46454
47317
|
clearOnDismount = _ref.clearOnDismount,
|
|
46455
47318
|
fields = _ref.fields,
|
|
46456
47319
|
actions = _ref.actions,
|
|
@@ -46466,6 +47329,18 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46466
47329
|
}
|
|
46467
47330
|
|
|
46468
47331
|
var amountErrors = (_amountErrors = {}, _defineProperty(_amountErrors, required.error, "Amount is required"), _defineProperty(_amountErrors, numberGreaterThanOrEqualTo.error, "There is a minimum payment of ".concat(displayCurrency(minimum))), _defineProperty(_amountErrors, numberLessThanOrEqualTo.error, "There is a maximum payment of ".concat(displayCurrency(maximum))), _amountErrors);
|
|
47332
|
+
|
|
47333
|
+
var getPartialAmountFormErrors = function getPartialAmountFormErrors(itemAmount) {
|
|
47334
|
+
var errorMessages = amountErrors;
|
|
47335
|
+
|
|
47336
|
+
if (blockPartialPaymentOverpay) {
|
|
47337
|
+
var maxAmountError = "There is a maximum payment of ".concat(displayCurrency(itemAmount));
|
|
47338
|
+
return _objectSpread2(_objectSpread2({}, errorMessages), {}, _defineProperty({}, numberLessThanOrEqualTo.error, maxAmountError));
|
|
47339
|
+
}
|
|
47340
|
+
|
|
47341
|
+
return errorMessages;
|
|
47342
|
+
};
|
|
47343
|
+
|
|
46469
47344
|
var lineItemsNew = Array.isArray(lineItems) ? lineItems : [];
|
|
46470
47345
|
return /*#__PURE__*/React.createElement(FormContainer$1, {
|
|
46471
47346
|
variant: variant,
|
|
@@ -46484,7 +47359,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46484
47359
|
field: fields[li.id],
|
|
46485
47360
|
fieldActions: actions.fields[li.id],
|
|
46486
47361
|
showErrors: showErrors,
|
|
46487
|
-
errorMessages:
|
|
47362
|
+
errorMessages: getPartialAmountFormErrors(li.amount),
|
|
46488
47363
|
style: {
|
|
46489
47364
|
textAlign: "right"
|
|
46490
47365
|
},
|
|
@@ -46503,6 +47378,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46503
47378
|
|
|
46504
47379
|
var createPartialAmountFormState = function createPartialAmountFormState(lineItems, maximum) {
|
|
46505
47380
|
var minimum = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
|
|
47381
|
+
var blockPartialPaymentOverpay = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
|
46506
47382
|
var formConfig = lineItems.reduce(function (acc, item) {
|
|
46507
47383
|
var validators = [required(), validateSum(numberGreaterThanOrEqualTo(minimum), lineItems.filter(function (lineItem) {
|
|
46508
47384
|
return lineItem != item;
|
|
@@ -46518,6 +47394,10 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
|
|
|
46518
47394
|
}, [])));
|
|
46519
47395
|
}
|
|
46520
47396
|
|
|
47397
|
+
if (blockPartialPaymentOverpay) {
|
|
47398
|
+
validators.push(numberLessThanOrEqualTo(item.amount));
|
|
47399
|
+
}
|
|
47400
|
+
|
|
46521
47401
|
return _objectSpread2(_objectSpread2({}, acc), {}, _defineProperty({}, item.id, {
|
|
46522
47402
|
validators: validators,
|
|
46523
47403
|
constraints: [onlyNaturals()],
|
|
@@ -46750,10 +47630,12 @@ var Pagination = function Pagination(_ref3) {
|
|
|
46750
47630
|
}));
|
|
46751
47631
|
};
|
|
46752
47632
|
|
|
46753
|
-
var Pagination$1 = themeComponent
|
|
47633
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$K);
|
|
46754
47634
|
|
|
46755
47635
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
46756
|
-
var _ref$
|
|
47636
|
+
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
47637
|
+
isForwardButtonDisabled = _ref$isForwardButtonD === void 0 ? false : _ref$isForwardButtonD,
|
|
47638
|
+
_ref$forwardButtonTex = _ref.forwardButtonText,
|
|
46757
47639
|
forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
|
|
46758
47640
|
forwardButtonAction = _ref.forwardButtonAction,
|
|
46759
47641
|
forwardButtonLoading = _ref.forwardButtonLoading,
|
|
@@ -46770,7 +47652,9 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46770
47652
|
redirectText = _ref$redirectText === void 0 ? "Return" : _ref$redirectText,
|
|
46771
47653
|
buttonFlexOverride = _ref.buttonFlexOverride,
|
|
46772
47654
|
_ref$hideForwardButto = _ref.hideForwardButton,
|
|
46773
|
-
hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto
|
|
47655
|
+
hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto,
|
|
47656
|
+
_ref$hideBackButton = _ref.hideBackButton,
|
|
47657
|
+
hideBackButton = _ref$hideBackButton === void 0 ? false : _ref$hideBackButton;
|
|
46774
47658
|
|
|
46775
47659
|
var _useContext = useContext(ThemeContext),
|
|
46776
47660
|
isMobile = _useContext.isMobile;
|
|
@@ -46793,14 +47677,16 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46793
47677
|
text: redirectText,
|
|
46794
47678
|
variant: forwardButtonVariant,
|
|
46795
47679
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46796
|
-
dataQa: redirectText
|
|
47680
|
+
dataQa: redirectText,
|
|
47681
|
+
disabled: isForwardButtonDisabled
|
|
46797
47682
|
}) : forwardButtonAction && /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
46798
47683
|
text: forwardButtonText,
|
|
46799
47684
|
variant: forwardButtonVariant,
|
|
46800
47685
|
action: forwardButtonAction,
|
|
46801
47686
|
isLoading: forwardButtonLoading,
|
|
46802
47687
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46803
|
-
dataQa: forwardButtonText
|
|
47688
|
+
dataQa: forwardButtonText,
|
|
47689
|
+
disabled: isForwardButtonDisabled
|
|
46804
47690
|
});
|
|
46805
47691
|
return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Box, {
|
|
46806
47692
|
padding: "1.25rem 0"
|
|
@@ -46809,7 +47695,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46809
47695
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
46810
47696
|
justify: buttonFlexOverride ? buttonFlexOverride : !!backButton ? "space-between" : "flex-end",
|
|
46811
47697
|
align: "center"
|
|
46812
|
-
}, backButton, !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton))));
|
|
47698
|
+
}, !hideBackButton && /*#__PURE__*/React.createElement(Fragment$1, null, backButton), !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton))));
|
|
46813
47699
|
};
|
|
46814
47700
|
|
|
46815
47701
|
var backgroundColor$b = {
|
|
@@ -46877,7 +47763,7 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
|
46877
47763
|
},
|
|
46878
47764
|
text: "Void",
|
|
46879
47765
|
padding: "0",
|
|
46880
|
-
extraStyles: "\n min-width: 65px
|
|
47766
|
+
extraStyles: "\n min-width: 65px;\n margin: 0px;\n min-height: 0px;\n ",
|
|
46881
47767
|
textExtraStyles: "font-weight: ".concat(FONT_WEIGHT_REGULAR, "; font-size: 14px;")
|
|
46882
47768
|
})), /*#__PURE__*/React.createElement(Box, {
|
|
46883
47769
|
padding: "0",
|
|
@@ -46905,12 +47791,69 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
|
46905
47791
|
}));
|
|
46906
47792
|
};
|
|
46907
47793
|
|
|
47794
|
+
var LoadingDetails = function LoadingDetails() {
|
|
47795
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
47796
|
+
padding: "0",
|
|
47797
|
+
background: GRECIAN_GREY,
|
|
47798
|
+
borderRadius: "4px",
|
|
47799
|
+
minHeight: "196px"
|
|
47800
|
+
}, /*#__PURE__*/React.createElement(Cover, {
|
|
47801
|
+
minHeight: "196px",
|
|
47802
|
+
singleChild: true,
|
|
47803
|
+
fillCenter: true
|
|
47804
|
+
}, /*#__PURE__*/React.createElement(Center, {
|
|
47805
|
+
intrinsic: true
|
|
47806
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
47807
|
+
padding: "0",
|
|
47808
|
+
extraStyles: "flex-grow: 1; display: flex; justify-content: center; align-items: center;"
|
|
47809
|
+
}, /*#__PURE__*/React.createElement(Spinner$2, {
|
|
47810
|
+
size: "100",
|
|
47811
|
+
centerSpinner: true
|
|
47812
|
+
})))));
|
|
47813
|
+
};
|
|
47814
|
+
|
|
47815
|
+
var ErrorDetails = function ErrorDetails() {
|
|
47816
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
47817
|
+
padding: "0"
|
|
47818
|
+
}, /*#__PURE__*/React.createElement(Alert$1, {
|
|
47819
|
+
variant: "error",
|
|
47820
|
+
heading: "Error Loading Payment",
|
|
47821
|
+
text: "Please go back and try again.",
|
|
47822
|
+
showQuitLink: false,
|
|
47823
|
+
noBorder: true,
|
|
47824
|
+
enableBoxShadow: true,
|
|
47825
|
+
enableSmallText: true,
|
|
47826
|
+
innerContentPadding: "0 0 0 0.75rem",
|
|
47827
|
+
iconPadding: "0 0 0 0",
|
|
47828
|
+
height: "67px",
|
|
47829
|
+
minHeight: "67px",
|
|
47830
|
+
padding: "0.75rem"
|
|
47831
|
+
}));
|
|
47832
|
+
};
|
|
47833
|
+
|
|
47834
|
+
var getLoadingOrErrorContent = function getLoadingOrErrorContent() {
|
|
47835
|
+
var isLoading = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
|
47836
|
+
var isError = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
47837
|
+
|
|
47838
|
+
if (isLoading) {
|
|
47839
|
+
return /*#__PURE__*/React.createElement(LoadingDetails, null);
|
|
47840
|
+
} else if (isError) {
|
|
47841
|
+
return /*#__PURE__*/React.createElement(ErrorDetails, null);
|
|
47842
|
+
}
|
|
47843
|
+
|
|
47844
|
+
return /*#__PURE__*/React.createElement(Fragment$1, null);
|
|
47845
|
+
};
|
|
47846
|
+
|
|
46908
47847
|
var Collapsible = function Collapsible(_ref2) {
|
|
46909
47848
|
var content = _ref2.content,
|
|
46910
47849
|
title = _ref2.title,
|
|
46911
47850
|
supportsTouch = _ref2.supportsTouch,
|
|
46912
47851
|
isOpen = _ref2.isOpen,
|
|
46913
|
-
setIsOpen = _ref2.setIsOpen
|
|
47852
|
+
setIsOpen = _ref2.setIsOpen,
|
|
47853
|
+
_ref2$isLoading = _ref2.isLoading,
|
|
47854
|
+
isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
|
|
47855
|
+
_ref2$isError = _ref2.isError,
|
|
47856
|
+
isError = _ref2$isError === void 0 ? false : _ref2$isError;
|
|
46914
47857
|
return /*#__PURE__*/React.createElement(CollapsibleSection$1, {
|
|
46915
47858
|
isMobile: true,
|
|
46916
47859
|
supportsTouch: supportsTouch,
|
|
@@ -46933,13 +47876,17 @@ var Collapsible = function Collapsible(_ref2) {
|
|
|
46933
47876
|
},
|
|
46934
47877
|
positionTransition: true,
|
|
46935
47878
|
initial: "closed"
|
|
46936
|
-
}, content));
|
|
47879
|
+
}, isLoading || isError ? getLoadingOrErrorContent(isLoading, isError) : content));
|
|
46937
47880
|
};
|
|
46938
47881
|
|
|
46939
47882
|
var NonCollapsible = function NonCollapsible(_ref3) {
|
|
46940
47883
|
var title = _ref3.title,
|
|
46941
|
-
content = _ref3.content
|
|
46942
|
-
|
|
47884
|
+
content = _ref3.content,
|
|
47885
|
+
_ref3$isLoading = _ref3.isLoading,
|
|
47886
|
+
isLoading = _ref3$isLoading === void 0 ? false : _ref3$isLoading,
|
|
47887
|
+
_ref3$isError = _ref3.isError,
|
|
47888
|
+
isError = _ref3$isError === void 0 ? false : _ref3$isError;
|
|
47889
|
+
return /*#__PURE__*/React.createElement(Stack, null, title, isLoading || isError ? getLoadingOrErrorContent(isLoading, isError) : content);
|
|
46943
47890
|
};
|
|
46944
47891
|
|
|
46945
47892
|
var PaymentDetails = function PaymentDetails(_ref4) {
|
|
@@ -46969,7 +47916,11 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
46969
47916
|
_ref4$voidableAmountP = _ref4.voidableAmountPaid,
|
|
46970
47917
|
voidableAmountPaid = _ref4$voidableAmountP === void 0 ? 0 : _ref4$voidableAmountP,
|
|
46971
47918
|
_ref4$remainingBalanc = _ref4.remainingBalance,
|
|
46972
|
-
remainingBalance = _ref4$remainingBalanc === void 0 ? false : _ref4$remainingBalanc
|
|
47919
|
+
remainingBalance = _ref4$remainingBalanc === void 0 ? false : _ref4$remainingBalanc,
|
|
47920
|
+
_ref4$isLoading = _ref4.isLoading,
|
|
47921
|
+
isLoading = _ref4$isLoading === void 0 ? false : _ref4$isLoading,
|
|
47922
|
+
_ref4$isError = _ref4.isError,
|
|
47923
|
+
isError = _ref4$isError === void 0 ? false : _ref4$isError;
|
|
46973
47924
|
|
|
46974
47925
|
var _useState = useState(initiallyOpen),
|
|
46975
47926
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -47072,14 +48023,18 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
47072
48023
|
isOpen: isOpen,
|
|
47073
48024
|
setIsOpen: setIsOpen,
|
|
47074
48025
|
isMobile: isMobile,
|
|
47075
|
-
supportsTouch: supportsTouch
|
|
48026
|
+
supportsTouch: supportsTouch,
|
|
48027
|
+
isLoading: isLoading,
|
|
48028
|
+
isError: isError
|
|
47076
48029
|
}) : /*#__PURE__*/React.createElement(NonCollapsible, {
|
|
47077
48030
|
title: title,
|
|
47078
|
-
content: content
|
|
48031
|
+
content: content,
|
|
48032
|
+
isLoading: isLoading,
|
|
48033
|
+
isError: isError
|
|
47079
48034
|
});
|
|
47080
48035
|
};
|
|
47081
48036
|
|
|
47082
|
-
var PaymentDetails$1 = themeComponent
|
|
48037
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$L, "default");
|
|
47083
48038
|
|
|
47084
48039
|
var linkColor$5 = {
|
|
47085
48040
|
"default": "#3176AA"
|
|
@@ -47155,7 +48110,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
47155
48110
|
}, link));
|
|
47156
48111
|
};
|
|
47157
48112
|
|
|
47158
|
-
var AccountAndRoutingModal$1 = themeComponent
|
|
48113
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$M, "default");
|
|
47159
48114
|
|
|
47160
48115
|
var backgroundColor$c = {
|
|
47161
48116
|
"default": "#ffffff",
|
|
@@ -47222,7 +48177,8 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47222
48177
|
background: themeValues.backgroundColor,
|
|
47223
48178
|
border: "1px solid ".concat(themeValues.border),
|
|
47224
48179
|
borderRadius: "3px",
|
|
47225
|
-
extraStyles: "overflow: scroll; max-height: 20rem;"
|
|
48180
|
+
extraStyles: "overflow: scroll; max-height: 20rem;",
|
|
48181
|
+
id: "terms-body-text"
|
|
47226
48182
|
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
47227
48183
|
variant: "p",
|
|
47228
48184
|
extraStyles: "& a { text-decoration: underline; }"
|
|
@@ -47250,7 +48206,175 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47250
48206
|
}, link));
|
|
47251
48207
|
};
|
|
47252
48208
|
|
|
47253
|
-
var TermsAndConditionsModal$1 = themeComponent
|
|
48209
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$N, "default");
|
|
48210
|
+
|
|
48211
|
+
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48212
|
+
var onCheck = _ref.onCheck,
|
|
48213
|
+
isChecked = _ref.isChecked,
|
|
48214
|
+
html = _ref.html,
|
|
48215
|
+
terms = _ref.terms,
|
|
48216
|
+
_ref$error = _ref.error,
|
|
48217
|
+
error = _ref$error === void 0 ? false : _ref$error,
|
|
48218
|
+
linkVariant = _ref.linkVariant;
|
|
48219
|
+
|
|
48220
|
+
var _useState = useState(false),
|
|
48221
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
48222
|
+
showTerms = _useState2[0],
|
|
48223
|
+
toggleShowTerms = _useState2[1];
|
|
48224
|
+
|
|
48225
|
+
return /*#__PURE__*/React.createElement(DisplayBox$1, null, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Checkbox$1, {
|
|
48226
|
+
name: "terms",
|
|
48227
|
+
title: "Terms and Conditions",
|
|
48228
|
+
error: error,
|
|
48229
|
+
checked: isChecked,
|
|
48230
|
+
onChange: onCheck
|
|
48231
|
+
}), /*#__PURE__*/React.createElement(Box, {
|
|
48232
|
+
padding: "0 0 0 58px"
|
|
48233
|
+
}, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Box, {
|
|
48234
|
+
padding: "0"
|
|
48235
|
+
}, html), terms && /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
|
|
48236
|
+
link: "Learn More",
|
|
48237
|
+
terms: terms,
|
|
48238
|
+
isOpen: showTerms,
|
|
48239
|
+
toggleOpen: toggleShowTerms,
|
|
48240
|
+
linkVariant: linkVariant
|
|
48241
|
+
})))));
|
|
48242
|
+
};
|
|
48243
|
+
|
|
48244
|
+
/*
|
|
48245
|
+
Hook that takes an ID selector for an element on the screen
|
|
48246
|
+
And optionally values for top position, left position, smooth behavior
|
|
48247
|
+
Finds element on screen and scrolls it to the provided coordinates
|
|
48248
|
+
|
|
48249
|
+
(string, number, number, string, number) => undefined;
|
|
48250
|
+
*/
|
|
48251
|
+
var useScrollTo = function useScrollTo(id) {
|
|
48252
|
+
var top = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
|
|
48253
|
+
var left = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
|
|
48254
|
+
var behavior = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : "auto";
|
|
48255
|
+
var delay = arguments.length > 4 ? arguments[4] : undefined;
|
|
48256
|
+
var scrollItem;
|
|
48257
|
+
|
|
48258
|
+
if (delay) {
|
|
48259
|
+
setTimeout(function () {
|
|
48260
|
+
var _scrollItem;
|
|
48261
|
+
|
|
48262
|
+
scrollItem = document.getElementById(id);
|
|
48263
|
+
(_scrollItem = scrollItem) === null || _scrollItem === void 0 ? void 0 : _scrollItem.scrollTo({
|
|
48264
|
+
top: top,
|
|
48265
|
+
left: left,
|
|
48266
|
+
behavior: behavior
|
|
48267
|
+
});
|
|
48268
|
+
}, delay);
|
|
48269
|
+
} else {
|
|
48270
|
+
var _scrollItem2;
|
|
48271
|
+
|
|
48272
|
+
scrollItem = document.getElementById(id);
|
|
48273
|
+
(_scrollItem2 = scrollItem) === null || _scrollItem2 === void 0 ? void 0 : _scrollItem2.scrollTo({
|
|
48274
|
+
top: top,
|
|
48275
|
+
left: left,
|
|
48276
|
+
behavior: behavior
|
|
48277
|
+
});
|
|
48278
|
+
}
|
|
48279
|
+
};
|
|
48280
|
+
|
|
48281
|
+
var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
48282
|
+
var _ref$showCheckbox = _ref.showCheckbox,
|
|
48283
|
+
showCheckbox = _ref$showCheckbox === void 0 ? true : _ref$showCheckbox,
|
|
48284
|
+
onCheck = _ref.onCheck,
|
|
48285
|
+
isChecked = _ref.isChecked,
|
|
48286
|
+
hasError = _ref.hasError,
|
|
48287
|
+
_ref$errorMessage = _ref.errorMessage,
|
|
48288
|
+
errorMessage = _ref$errorMessage === void 0 ? "Please accept Terms and Conditions" : _ref$errorMessage,
|
|
48289
|
+
_ref$description = _ref.description,
|
|
48290
|
+
description = _ref$description === void 0 ? "" : _ref$description,
|
|
48291
|
+
_ref$linkText = _ref.linkText,
|
|
48292
|
+
linkText = _ref$linkText === void 0 ? "Terms and Conditions" : _ref$linkText,
|
|
48293
|
+
html = _ref.html,
|
|
48294
|
+
terms = _ref.terms,
|
|
48295
|
+
_ref$id = _ref.id,
|
|
48296
|
+
id = _ref$id === void 0 ? "terms-and-conditions" : _ref$id,
|
|
48297
|
+
_ref$displayInline = _ref.displayInline,
|
|
48298
|
+
displayInline = _ref$displayInline === void 0 ? true : _ref$displayInline,
|
|
48299
|
+
_ref$modalVariant = _ref.modalVariant,
|
|
48300
|
+
modalVariant = _ref$modalVariant === void 0 ? "default" : _ref$modalVariant,
|
|
48301
|
+
_ref$containerBackgro = _ref.containerBackground,
|
|
48302
|
+
containerBackground = _ref$containerBackgro === void 0 ? ATHENS_GREY : _ref$containerBackgro,
|
|
48303
|
+
_ref$checkboxMargin = _ref.checkboxMargin,
|
|
48304
|
+
checkboxMargin = _ref$checkboxMargin === void 0 ? "4px 8px 4px 4px" : _ref$checkboxMargin,
|
|
48305
|
+
_ref$modalTitle = _ref.modalTitle,
|
|
48306
|
+
modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle;
|
|
48307
|
+
|
|
48308
|
+
var _useState = useState(false),
|
|
48309
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
48310
|
+
showTerms = _useState2[0],
|
|
48311
|
+
toggleShowTerms = _useState2[1];
|
|
48312
|
+
|
|
48313
|
+
var standardBoxShadow = generateShadows().standard.base;
|
|
48314
|
+
|
|
48315
|
+
var toggleTerms = function toggleTerms(termsOpen) {
|
|
48316
|
+
toggleShowTerms(termsOpen);
|
|
48317
|
+
|
|
48318
|
+
if (termsOpen) {
|
|
48319
|
+
useScrollTo("terms-body-text", 0, 0, "smooth", 100);
|
|
48320
|
+
}
|
|
48321
|
+
};
|
|
48322
|
+
|
|
48323
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
48324
|
+
padding: displayInline ? "0" : "1.5rem",
|
|
48325
|
+
minWidth: displayInline ? "0" : "100%",
|
|
48326
|
+
background: displayInline ? "transparent" : containerBackground,
|
|
48327
|
+
boxShadow: displayInline ? "none" : standardBoxShadow,
|
|
48328
|
+
borderRadius: displayInline ? "0" : "4px"
|
|
48329
|
+
}, /*#__PURE__*/React.createElement(Stack, {
|
|
48330
|
+
childGap: "0"
|
|
48331
|
+
}, html && /*#__PURE__*/React.createElement(Box, {
|
|
48332
|
+
padding: "0"
|
|
48333
|
+
}, html), /*#__PURE__*/React.createElement(Cluster, {
|
|
48334
|
+
justify: "flex-start",
|
|
48335
|
+
align: "center",
|
|
48336
|
+
nowrap: true
|
|
48337
|
+
}, showCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
|
|
48338
|
+
name: id,
|
|
48339
|
+
error: hasError,
|
|
48340
|
+
checked: isChecked,
|
|
48341
|
+
onChange: onCheck,
|
|
48342
|
+
checkboxMargin: checkboxMargin,
|
|
48343
|
+
extraStyles: "align-self: flex-start;"
|
|
48344
|
+
}), /*#__PURE__*/React.createElement(Stack, {
|
|
48345
|
+
childGap: "0.25rem",
|
|
48346
|
+
fullHeight: true
|
|
48347
|
+
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
48348
|
+
justify: "flex-start",
|
|
48349
|
+
align: "center",
|
|
48350
|
+
nowrap: true,
|
|
48351
|
+
extraStyles: "padding-right: 2px; > div > * { margin: 4px 2px; };"
|
|
48352
|
+
}, description && /*#__PURE__*/React.createElement(Text$1, {
|
|
48353
|
+
color: CHARADE_GREY
|
|
48354
|
+
}, description), terms && /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
|
|
48355
|
+
link: linkText,
|
|
48356
|
+
terms: terms,
|
|
48357
|
+
isOpen: showTerms,
|
|
48358
|
+
toggleOpen: toggleTerms,
|
|
48359
|
+
linkVariant: modalVariant,
|
|
48360
|
+
title: modalTitle
|
|
48361
|
+
})), showCheckbox && hasError && /*#__PURE__*/React.createElement(Text$1, {
|
|
48362
|
+
variant: "pXS",
|
|
48363
|
+
color: ERROR_COLOR,
|
|
48364
|
+
id: "".concat(id, "-error-message")
|
|
48365
|
+
}, errorMessage)))));
|
|
48366
|
+
};
|
|
48367
|
+
|
|
48368
|
+
var _excluded$y = ["version"];
|
|
48369
|
+
|
|
48370
|
+
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
48371
|
+
var _ref$version = _ref.version,
|
|
48372
|
+
version = _ref$version === void 0 ? "v1" : _ref$version,
|
|
48373
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
48374
|
+
|
|
48375
|
+
var TermsAndConditionsControl = version === "v1" ? TermsAndConditionsControlV1 : TermsAndConditionsControlV2;
|
|
48376
|
+
return /*#__PURE__*/React.createElement(TermsAndConditionsControl, rest);
|
|
48377
|
+
};
|
|
47254
48378
|
|
|
47255
48379
|
var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
47256
48380
|
var _routingNumberErrors, _accountNumberErrors;
|
|
@@ -47271,9 +48395,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47271
48395
|
showWalletCheckbox = _ref.showWalletCheckbox,
|
|
47272
48396
|
saveToWallet = _ref.saveToWallet,
|
|
47273
48397
|
walletCheckboxMarked = _ref.walletCheckboxMarked,
|
|
47274
|
-
termsContent = _ref.termsContent
|
|
47275
|
-
_ref$termsTitle = _ref.termsTitle,
|
|
47276
|
-
termsTitle = _ref$termsTitle === void 0 ? "Terms & Conditions" : _ref$termsTitle;
|
|
48398
|
+
termsContent = _ref.termsContent;
|
|
47277
48399
|
|
|
47278
48400
|
if (clearOnDismount) {
|
|
47279
48401
|
useEffect$1(function () {
|
|
@@ -47293,13 +48415,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47293
48415
|
showAccount = _useState4[0],
|
|
47294
48416
|
toggleShowAccount = _useState4[1];
|
|
47295
48417
|
|
|
47296
|
-
var _useState5 = useState(false),
|
|
47297
|
-
_useState6 = _slicedToArray(_useState5, 2),
|
|
47298
|
-
termsModalOpen = _useState6[0],
|
|
47299
|
-
setTermsModalOpen = _useState6[1];
|
|
47300
|
-
|
|
47301
48418
|
var showTerms = !!termsContent;
|
|
47302
|
-
var showTermsLinkVariant = showWalletCheckbox ? "p" : "pS";
|
|
47303
48419
|
|
|
47304
48420
|
var nameErrors = _defineProperty({}, required.error, "Name is required");
|
|
47305
48421
|
|
|
@@ -47410,7 +48526,8 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47410
48526
|
checked: defaultMethod.value,
|
|
47411
48527
|
hidden: hideDefaultPayment
|
|
47412
48528
|
}), (showWalletCheckbox || showTerms) && /*#__PURE__*/React.createElement(Cluster, {
|
|
47413
|
-
childGap: "4px"
|
|
48529
|
+
childGap: "4px",
|
|
48530
|
+
align: "center"
|
|
47414
48531
|
}, showWalletCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
|
|
47415
48532
|
name: "bank checkbox",
|
|
47416
48533
|
title: "Save checking account to wallet.",
|
|
@@ -47418,18 +48535,12 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47418
48535
|
onChange: saveToWallet
|
|
47419
48536
|
}), showTerms && /*#__PURE__*/React.createElement(Cover, {
|
|
47420
48537
|
singleChild: true
|
|
47421
|
-
}, /*#__PURE__*/React.createElement(
|
|
47422
|
-
|
|
47423
|
-
|
|
47424
|
-
|
|
47425
|
-
|
|
47426
|
-
|
|
47427
|
-
linkVariant: showTermsLinkVariant,
|
|
47428
|
-
terms: termsContent,
|
|
47429
|
-
title: termsTitle,
|
|
47430
|
-
isOpen: termsModalOpen,
|
|
47431
|
-
toggleOpen: setTermsModalOpen
|
|
47432
|
-
}))))));
|
|
48538
|
+
}, /*#__PURE__*/React.createElement(TermsAndConditions, {
|
|
48539
|
+
version: "v2",
|
|
48540
|
+
showCheckbox: false,
|
|
48541
|
+
description: "View",
|
|
48542
|
+
terms: termsContent
|
|
48543
|
+
})))));
|
|
47433
48544
|
};
|
|
47434
48545
|
|
|
47435
48546
|
var formConfig$6 = {
|
|
@@ -47484,20 +48595,12 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
47484
48595
|
saveToWallet = _ref.saveToWallet,
|
|
47485
48596
|
walletCheckboxMarked = _ref.walletCheckboxMarked,
|
|
47486
48597
|
deniedCards = _ref.deniedCards,
|
|
47487
|
-
termsContent = _ref.termsContent
|
|
47488
|
-
_ref$termsTitle = _ref.termsTitle,
|
|
47489
|
-
termsTitle = _ref$termsTitle === void 0 ? "Terms & Conditions" : _ref$termsTitle;
|
|
48598
|
+
termsContent = _ref.termsContent;
|
|
47490
48599
|
|
|
47491
48600
|
var _useContext = useContext(ThemeContext),
|
|
47492
48601
|
isMobile = _useContext.isMobile;
|
|
47493
48602
|
|
|
47494
|
-
var _useState = useState(false),
|
|
47495
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
47496
|
-
termsModalOpen = _useState2[0],
|
|
47497
|
-
setTermsModalOpen = _useState2[1];
|
|
47498
|
-
|
|
47499
48603
|
var showTerms = !!termsContent;
|
|
47500
|
-
var showTermsLinkVariant = showWalletCheckbox ? "p" : "pS";
|
|
47501
48604
|
useEffect$1(function () {
|
|
47502
48605
|
if (deniedCards) {
|
|
47503
48606
|
deniedCards.map(function (card) {
|
|
@@ -47607,7 +48710,8 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
47607
48710
|
},
|
|
47608
48711
|
autocomplete: "billing postal-code"
|
|
47609
48712
|
})), (showWalletCheckbox || showTerms) && /*#__PURE__*/React.createElement(Cluster, {
|
|
47610
|
-
childGap: "4px"
|
|
48713
|
+
childGap: "4px",
|
|
48714
|
+
align: "center"
|
|
47611
48715
|
}, showWalletCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
|
|
47612
48716
|
name: "credit card checkbox",
|
|
47613
48717
|
title: "Save credit card to wallet.",
|
|
@@ -47615,18 +48719,12 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
47615
48719
|
onChange: saveToWallet
|
|
47616
48720
|
}), showTerms && /*#__PURE__*/React.createElement(Cover, {
|
|
47617
48721
|
singleChild: true
|
|
47618
|
-
}, /*#__PURE__*/React.createElement(
|
|
47619
|
-
|
|
47620
|
-
|
|
47621
|
-
|
|
47622
|
-
|
|
47623
|
-
|
|
47624
|
-
linkVariant: showTermsLinkVariant,
|
|
47625
|
-
terms: termsContent,
|
|
47626
|
-
title: termsTitle,
|
|
47627
|
-
isOpen: termsModalOpen,
|
|
47628
|
-
toggleOpen: setTermsModalOpen
|
|
47629
|
-
}))))));
|
|
48722
|
+
}, /*#__PURE__*/React.createElement(TermsAndConditions, {
|
|
48723
|
+
version: "v2",
|
|
48724
|
+
showCheckbox: false,
|
|
48725
|
+
description: "View",
|
|
48726
|
+
terms: termsContent
|
|
48727
|
+
})))));
|
|
47630
48728
|
};
|
|
47631
48729
|
|
|
47632
48730
|
var PaymentFormCard$1 = withWindowSize(PaymentFormCard);
|
|
@@ -47952,7 +49050,8 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
47952
49050
|
_ref$initiallyOpen = _ref.initiallyOpen,
|
|
47953
49051
|
initiallyOpen = _ref$initiallyOpen === void 0 ? true : _ref$initiallyOpen,
|
|
47954
49052
|
_ref$openHeight = _ref.openHeight,
|
|
47955
|
-
openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight
|
|
49053
|
+
openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight,
|
|
49054
|
+
ariaDescribedBy = _ref.ariaDescribedBy;
|
|
47956
49055
|
|
|
47957
49056
|
var handleKeyDown = function handleKeyDown(id, e) {
|
|
47958
49057
|
if ((e === null || e === void 0 ? void 0 : e.keyCode) === 13) {
|
|
@@ -48029,7 +49128,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48029
49128
|
}, /*#__PURE__*/React.createElement(Stack, {
|
|
48030
49129
|
childGap: "0"
|
|
48031
49130
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
48032
|
-
padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem
|
|
49131
|
+
padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem",
|
|
48033
49132
|
background: section.disabled ? themeValues.headingDisabledColor : themeValues.headingBackgroundColor,
|
|
48034
49133
|
onClick: isMobile && supportsTouch || section.disabled ? noop : function () {
|
|
48035
49134
|
return toggleOpenSection(section.id);
|
|
@@ -48046,7 +49145,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48046
49145
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
48047
49146
|
justify: "space-between",
|
|
48048
49147
|
align: "center",
|
|
48049
|
-
childGap: "
|
|
49148
|
+
childGap: "1px",
|
|
48050
49149
|
nowrap: true
|
|
48051
49150
|
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
48052
49151
|
justify: "flex-start",
|
|
@@ -48055,7 +49154,8 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48055
49154
|
}, !section.hideRadioButton && /*#__PURE__*/React.createElement(Box, {
|
|
48056
49155
|
padding: "0"
|
|
48057
49156
|
}, /*#__PURE__*/React.createElement(RadioButton$2, {
|
|
48058
|
-
name: section.id,
|
|
49157
|
+
name: typeof section.title === "string" ? createIdFromString(section.title) : section.id,
|
|
49158
|
+
ariaDescribedBy: ariaDescribedBy,
|
|
48059
49159
|
radioOn: openSection === section.id,
|
|
48060
49160
|
radioFocused: focused === section.id,
|
|
48061
49161
|
toggleRadio: section.disabled ? noop : function () {
|
|
@@ -48095,7 +49195,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48095
49195
|
})));
|
|
48096
49196
|
};
|
|
48097
49197
|
|
|
48098
|
-
var RadioSection$1 = themeComponent
|
|
49198
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$O);
|
|
48099
49199
|
|
|
48100
49200
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
48101
49201
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -48471,7 +49571,7 @@ var Tabs = function Tabs(_ref) {
|
|
|
48471
49571
|
}))));
|
|
48472
49572
|
};
|
|
48473
49573
|
|
|
48474
|
-
var Tabs$1 = themeComponent
|
|
49574
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$P);
|
|
48475
49575
|
|
|
48476
49576
|
var activeTabBackground$1 = "#FFFFFF";
|
|
48477
49577
|
var activeTabAccent$1 = "#15749D";
|
|
@@ -48532,40 +49632,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
48532
49632
|
})));
|
|
48533
49633
|
};
|
|
48534
49634
|
|
|
48535
|
-
var TabSidebar$1 = themeComponent
|
|
48536
|
-
|
|
48537
|
-
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
48538
|
-
var onCheck = _ref.onCheck,
|
|
48539
|
-
isChecked = _ref.isChecked,
|
|
48540
|
-
html = _ref.html,
|
|
48541
|
-
terms = _ref.terms,
|
|
48542
|
-
_ref$error = _ref.error,
|
|
48543
|
-
error = _ref$error === void 0 ? false : _ref$error,
|
|
48544
|
-
linkVariant = _ref.linkVariant;
|
|
48545
|
-
|
|
48546
|
-
var _useState = useState(false),
|
|
48547
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
48548
|
-
showTerms = _useState2[0],
|
|
48549
|
-
toggleShowTerms = _useState2[1];
|
|
48550
|
-
|
|
48551
|
-
return /*#__PURE__*/React.createElement(DisplayBox$1, null, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Checkbox$1, {
|
|
48552
|
-
name: "terms",
|
|
48553
|
-
title: "Terms and Conditions",
|
|
48554
|
-
error: error,
|
|
48555
|
-
checked: isChecked,
|
|
48556
|
-
onChange: onCheck
|
|
48557
|
-
}), /*#__PURE__*/React.createElement(Box, {
|
|
48558
|
-
padding: "0 0 0 58px"
|
|
48559
|
-
}, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Box, {
|
|
48560
|
-
padding: "0"
|
|
48561
|
-
}, html), terms && /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
|
|
48562
|
-
link: "Learn More",
|
|
48563
|
-
terms: terms,
|
|
48564
|
-
isOpen: showTerms,
|
|
48565
|
-
toggleOpen: toggleShowTerms,
|
|
48566
|
-
linkVariant: linkVariant
|
|
48567
|
-
})))));
|
|
48568
|
-
};
|
|
49635
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Q);
|
|
48569
49636
|
|
|
48570
49637
|
var Timeout = function Timeout(_ref) {
|
|
48571
49638
|
var onLogout = _ref.onLogout;
|
|
@@ -48656,7 +49723,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
48656
49723
|
})))));
|
|
48657
49724
|
};
|
|
48658
49725
|
|
|
48659
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent
|
|
49726
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$R));
|
|
48660
49727
|
|
|
48661
49728
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
48662
49729
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -48728,13 +49795,15 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
48728
49795
|
_ref$centeredMobileCo = _ref.centeredMobileContent,
|
|
48729
49796
|
centeredMobileContent = _ref$centeredMobileCo === void 0 ? false : _ref$centeredMobileCo,
|
|
48730
49797
|
content = _ref.content,
|
|
49798
|
+
_ref$backgroundColor = _ref.backgroundColor,
|
|
49799
|
+
backgroundColor = _ref$backgroundColor === void 0 ? COOL_GREY_05 : _ref$backgroundColor,
|
|
48731
49800
|
themeValues = _ref.themeValues;
|
|
48732
49801
|
var themeContext = useContext(ThemeContext);
|
|
48733
49802
|
var isMobile = themeContext.isMobile;
|
|
48734
49803
|
return /*#__PURE__*/React.createElement(Box, {
|
|
48735
49804
|
padding: "0",
|
|
48736
49805
|
minWidth: "100%",
|
|
48737
|
-
background:
|
|
49806
|
+
background: backgroundColor,
|
|
48738
49807
|
extraStyles: "flex-grow: 1;"
|
|
48739
49808
|
}, /*#__PURE__*/React.createElement(Cover, {
|
|
48740
49809
|
centerOverride: isMobile && !centeredMobileContent
|
|
@@ -48758,7 +49827,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
48758
49827
|
})));
|
|
48759
49828
|
};
|
|
48760
49829
|
|
|
48761
|
-
var CenterSingle$1 = withWindowSize(themeComponent
|
|
49830
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$S));
|
|
48762
49831
|
|
|
48763
49832
|
var CenterStack = function CenterStack(_ref) {
|
|
48764
49833
|
var header = _ref.header,
|
|
@@ -48800,7 +49869,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
48800
49869
|
})));
|
|
48801
49870
|
};
|
|
48802
49871
|
|
|
48803
|
-
var CenterStack$1 = withWindowSize(themeComponent
|
|
49872
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$S));
|
|
48804
49873
|
|
|
48805
49874
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
48806
49875
|
var header = _ref.header,
|
|
@@ -48845,7 +49914,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
48845
49914
|
})));
|
|
48846
49915
|
};
|
|
48847
49916
|
|
|
48848
|
-
var DefaultPageTemplate = withWindowSize(themeComponent
|
|
49917
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$S));
|
|
48849
49918
|
|
|
48850
49919
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
48851
49920
|
var header = _ref.header,
|
|
@@ -48899,7 +49968,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
48899
49968
|
})));
|
|
48900
49969
|
};
|
|
48901
49970
|
|
|
48902
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent
|
|
49971
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$S));
|
|
48903
49972
|
|
|
48904
49973
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
48905
49974
|
var header = _ref.header,
|
|
@@ -48970,7 +50039,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
48970
50039
|
})));
|
|
48971
50040
|
};
|
|
48972
50041
|
|
|
48973
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent
|
|
50042
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$S));
|
|
48974
50043
|
|
|
48975
|
-
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, ArrowUpCircleIconSmall, AutopayOnIcon, 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, 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, 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, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, 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, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, Popover$1 as Popover, 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, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, 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$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
|
|
50044
|
+
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, ArrowUpCircleIconSmall, AutopayOnIcon, 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, 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, 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, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, 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, PointOfSaleImage, Popover$1 as Popover, 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, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, 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$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
|
|
48976
50045
|
//# sourceMappingURL=index.esm.js.map
|