@thecb/components 8.0.4-beta.1 → 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/src/components/atoms/radio-button-with-label/RadioButtonWithLabel.js +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -4887,7 +4887,7 @@ var createThemeValues = function createThemeValues(themeContext, fallbackValues,
|
|
|
4887
4887
|
}, {});
|
|
4888
4888
|
return createdTheme;
|
|
4889
4889
|
};
|
|
4890
|
-
var themeComponent
|
|
4890
|
+
var themeComponent = function themeComponent(component, componentThemeId, fallbackValues, defaultVariant) {
|
|
4891
4891
|
return function (_ref7) {
|
|
4892
4892
|
var _themeContext$metadat;
|
|
4893
4893
|
|
|
@@ -4927,7 +4927,7 @@ export const generateImgSrc = (
|
|
|
4927
4927
|
var themeUtils = /*#__PURE__*/Object.freeze({
|
|
4928
4928
|
__proto__: null,
|
|
4929
4929
|
createThemeValues: createThemeValues,
|
|
4930
|
-
themeComponent: themeComponent
|
|
4930
|
+
themeComponent: themeComponent
|
|
4931
4931
|
});
|
|
4932
4932
|
|
|
4933
4933
|
/* These are constants used by nav frontend components */
|
|
@@ -4967,7 +4967,8 @@ var SEASHELL_WHITE = "#F1F1F1";
|
|
|
4967
4967
|
var ALABASTER_WHITE = "#F7F7F7";
|
|
4968
4968
|
var AQUA_HAZE_WHITE = "#F7F9FA";
|
|
4969
4969
|
var BLEACH_WHITE = "#FEF4d7";
|
|
4970
|
-
var CATSKILL_WHITE = "#EAF2F6";
|
|
4970
|
+
var CATSKILL_WHITE = "#EAF2F6";
|
|
4971
|
+
var HALF_COLONIAL_WHITE = "#FDF4D2"; // GREY
|
|
4971
4972
|
|
|
4972
4973
|
var ATHENS_GREY = "#F6F6F9"; // CBS-100
|
|
4973
4974
|
|
|
@@ -5074,6 +5075,25 @@ var ALERT_COLORS = {
|
|
|
5074
5075
|
},
|
|
5075
5076
|
text: ZODIAC_BLUE,
|
|
5076
5077
|
link: SCIENCE_BLUE
|
|
5078
|
+
}; // These colors match the pill components seen in CityBase UI designs.
|
|
5079
|
+
|
|
5080
|
+
var PILL_COLORS = {
|
|
5081
|
+
danger: {
|
|
5082
|
+
background: BLUSH_RED,
|
|
5083
|
+
text: RAZZMATAZZ_RED
|
|
5084
|
+
},
|
|
5085
|
+
neutral: {
|
|
5086
|
+
background: GRECIAN_GREY,
|
|
5087
|
+
text: CHARADE_GREY
|
|
5088
|
+
},
|
|
5089
|
+
success: {
|
|
5090
|
+
background: HINT_GREEN,
|
|
5091
|
+
text: SEA_GREEN
|
|
5092
|
+
},
|
|
5093
|
+
warning: {
|
|
5094
|
+
background: HALF_COLONIAL_WHITE,
|
|
5095
|
+
text: ZEST_ORANGE
|
|
5096
|
+
}
|
|
5077
5097
|
};
|
|
5078
5098
|
|
|
5079
5099
|
var colors = /*#__PURE__*/Object.freeze({
|
|
@@ -5087,6 +5107,7 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
5087
5107
|
AQUA_HAZE_WHITE: AQUA_HAZE_WHITE,
|
|
5088
5108
|
BLEACH_WHITE: BLEACH_WHITE,
|
|
5089
5109
|
CATSKILL_WHITE: CATSKILL_WHITE,
|
|
5110
|
+
HALF_COLONIAL_WHITE: HALF_COLONIAL_WHITE,
|
|
5090
5111
|
ATHENS_GREY: ATHENS_GREY,
|
|
5091
5112
|
ALTO_GREY: ALTO_GREY,
|
|
5092
5113
|
SILVER_GREY: SILVER_GREY,
|
|
@@ -5150,6 +5171,7 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
5150
5171
|
BLUSH_RED: BLUSH_RED,
|
|
5151
5172
|
RASPBERRY: RASPBERRY,
|
|
5152
5173
|
ALERT_COLORS: ALERT_COLORS,
|
|
5174
|
+
PILL_COLORS: PILL_COLORS,
|
|
5153
5175
|
ERROR_COLOR: ERROR_COLOR
|
|
5154
5176
|
});
|
|
5155
5177
|
|
|
@@ -6392,7 +6414,7 @@ var Text = function Text(_ref) {
|
|
|
6392
6414
|
}, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
6393
6415
|
};
|
|
6394
6416
|
|
|
6395
|
-
var Text$1 = themeComponent
|
|
6417
|
+
var Text$1 = themeComponent(Text, "Text", fallbackValues$1, "p");
|
|
6396
6418
|
|
|
6397
6419
|
var _excluded$2 = ["activeStyles", "hoverStyles", "disabledStyles", "extraStyles", "borderSize", "borderColor", "borderWidthOverride", "borderRadius", "textAlign", "boxShadow", "minHeight", "minWidth", "maxWidth", "padding", "hiddenStyles", "ariaControls", "ariaLabel"];
|
|
6398
6420
|
/*
|
|
@@ -6472,8 +6494,9 @@ var BoxWrapper = styled__default(function (_ref) {
|
|
|
6472
6494
|
return textAlign;
|
|
6473
6495
|
}, function (_ref14) {
|
|
6474
6496
|
var hoverStyles = _ref14.hoverStyles,
|
|
6475
|
-
as = _ref14.as
|
|
6476
|
-
|
|
6497
|
+
as = _ref14.as,
|
|
6498
|
+
disabled = _ref14.disabled;
|
|
6499
|
+
return styled.css(["", " ", ""], hoverStyles, as === "button" && !disabled ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
|
|
6477
6500
|
}, function (_ref15) {
|
|
6478
6501
|
var as = _ref15.as;
|
|
6479
6502
|
return styled.css(["outline:3px solid ", ";outline-offset:2px;", ""], ROYAL_BLUE, as === "button" && "\n > * > span {\n border: none;\n outline: none;\n box-shadow: none;\n }");
|
|
@@ -13004,7 +13027,7 @@ var AccountsIcon = function AccountsIcon(_ref) {
|
|
|
13004
13027
|
})));
|
|
13005
13028
|
};
|
|
13006
13029
|
|
|
13007
|
-
var AccountsIcon$1 = themeComponent
|
|
13030
|
+
var AccountsIcon$1 = themeComponent(AccountsIcon, "Icons", fallbackValues$3, "info");
|
|
13008
13031
|
|
|
13009
13032
|
var AccountsAddIcon = function AccountsAddIcon(_ref) {
|
|
13010
13033
|
var themeValues = _ref.themeValues;
|
|
@@ -13043,7 +13066,7 @@ var AccountsAddIcon = function AccountsAddIcon(_ref) {
|
|
|
13043
13066
|
})));
|
|
13044
13067
|
};
|
|
13045
13068
|
|
|
13046
|
-
var AccountsAddIcon$1 = themeComponent
|
|
13069
|
+
var AccountsAddIcon$1 = themeComponent(AccountsAddIcon, "Icons", fallbackValues$3, "info");
|
|
13047
13070
|
|
|
13048
13071
|
var ForgotPasswordIcon = function ForgotPasswordIcon(_ref) {
|
|
13049
13072
|
var themeValues = _ref.themeValues;
|
|
@@ -13081,7 +13104,7 @@ var ForgotPasswordIcon = function ForgotPasswordIcon(_ref) {
|
|
|
13081
13104
|
})));
|
|
13082
13105
|
};
|
|
13083
13106
|
|
|
13084
|
-
var ForgotPasswordIcon$1 = themeComponent
|
|
13107
|
+
var ForgotPasswordIcon$1 = themeComponent(ForgotPasswordIcon, "Icons", fallbackValues$3, "info");
|
|
13085
13108
|
|
|
13086
13109
|
var GoToEmailIcon = function GoToEmailIcon(_ref) {
|
|
13087
13110
|
var themeValues = _ref.themeValues;
|
|
@@ -13111,7 +13134,7 @@ var GoToEmailIcon = function GoToEmailIcon(_ref) {
|
|
|
13111
13134
|
})));
|
|
13112
13135
|
};
|
|
13113
13136
|
|
|
13114
|
-
var GoToEmailIcon$1 = themeComponent
|
|
13137
|
+
var GoToEmailIcon$1 = themeComponent(GoToEmailIcon, "Icons", fallbackValues$3, "info");
|
|
13115
13138
|
|
|
13116
13139
|
var VerifiedEmailIcon = function VerifiedEmailIcon(_ref) {
|
|
13117
13140
|
var themeValues = _ref.themeValues;
|
|
@@ -13155,7 +13178,7 @@ var VerifiedEmailIcon = function VerifiedEmailIcon(_ref) {
|
|
|
13155
13178
|
})));
|
|
13156
13179
|
};
|
|
13157
13180
|
|
|
13158
|
-
var VerifiedEmailIcon$1 = themeComponent
|
|
13181
|
+
var VerifiedEmailIcon$1 = themeComponent(VerifiedEmailIcon, "Icons", fallbackValues$3, "info");
|
|
13159
13182
|
|
|
13160
13183
|
var PaymentMethodIcon = function PaymentMethodIcon(_ref) {
|
|
13161
13184
|
var themeValues = _ref.themeValues;
|
|
@@ -13190,7 +13213,7 @@ var PaymentMethodIcon = function PaymentMethodIcon(_ref) {
|
|
|
13190
13213
|
})));
|
|
13191
13214
|
};
|
|
13192
13215
|
|
|
13193
|
-
var PaymentMethodIcon$1 = themeComponent
|
|
13216
|
+
var PaymentMethodIcon$1 = themeComponent(PaymentMethodIcon, "Icons", fallbackValues$3, "info");
|
|
13194
13217
|
|
|
13195
13218
|
var AccountsIconSmall = function AccountsIconSmall(_ref) {
|
|
13196
13219
|
var themeValues = _ref.themeValues;
|
|
@@ -13229,7 +13252,7 @@ var AccountsIconSmall = function AccountsIconSmall(_ref) {
|
|
|
13229
13252
|
}))))))));
|
|
13230
13253
|
};
|
|
13231
13254
|
|
|
13232
|
-
var AccountsIconSmall$1 = themeComponent
|
|
13255
|
+
var AccountsIconSmall$1 = themeComponent(AccountsIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13233
13256
|
|
|
13234
13257
|
var PaymentsIconSmall = function PaymentsIconSmall(_ref) {
|
|
13235
13258
|
var themeValues = _ref.themeValues;
|
|
@@ -13280,7 +13303,7 @@ var PaymentsIconSmall = function PaymentsIconSmall(_ref) {
|
|
|
13280
13303
|
}))))))));
|
|
13281
13304
|
};
|
|
13282
13305
|
|
|
13283
|
-
var PaymentsIconSmall$1 = themeComponent
|
|
13306
|
+
var PaymentsIconSmall$1 = themeComponent(PaymentsIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13284
13307
|
|
|
13285
13308
|
var PaymentMethodAddIcon = function PaymentMethodAddIcon(_ref) {
|
|
13286
13309
|
var themeValues = _ref.themeValues;
|
|
@@ -13344,7 +13367,7 @@ var PaymentMethodAddIcon = function PaymentMethodAddIcon(_ref) {
|
|
|
13344
13367
|
})))))));
|
|
13345
13368
|
};
|
|
13346
13369
|
|
|
13347
|
-
var PaymentMethodAddIcon$1 = themeComponent
|
|
13370
|
+
var PaymentMethodAddIcon$1 = themeComponent(PaymentMethodAddIcon, "Icons", fallbackValues$3, "info");
|
|
13348
13371
|
|
|
13349
13372
|
var ProfileIconSmall = function ProfileIconSmall(_ref) {
|
|
13350
13373
|
var themeValues = _ref.themeValues;
|
|
@@ -13373,7 +13396,7 @@ var ProfileIconSmall = function ProfileIconSmall(_ref) {
|
|
|
13373
13396
|
})))));
|
|
13374
13397
|
};
|
|
13375
13398
|
|
|
13376
|
-
var ProfileIconSmall$1 = themeComponent
|
|
13399
|
+
var ProfileIconSmall$1 = themeComponent(ProfileIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13377
13400
|
|
|
13378
13401
|
var SettingsIconSmall = function SettingsIconSmall(_ref) {
|
|
13379
13402
|
var themeValues = _ref.themeValues;
|
|
@@ -13424,7 +13447,7 @@ var SettingsIconSmall = function SettingsIconSmall(_ref) {
|
|
|
13424
13447
|
}))))))));
|
|
13425
13448
|
};
|
|
13426
13449
|
|
|
13427
|
-
var SettingsIconSmall$1 = themeComponent
|
|
13450
|
+
var SettingsIconSmall$1 = themeComponent(SettingsIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13428
13451
|
|
|
13429
13452
|
var WalletIconSmall = function WalletIconSmall(_ref) {
|
|
13430
13453
|
var themeValues = _ref.themeValues,
|
|
@@ -13465,7 +13488,7 @@ var WalletIconSmall = function WalletIconSmall(_ref) {
|
|
|
13465
13488
|
})));
|
|
13466
13489
|
};
|
|
13467
13490
|
|
|
13468
|
-
var WalletIconSmall$1 = themeComponent
|
|
13491
|
+
var WalletIconSmall$1 = themeComponent(WalletIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13469
13492
|
|
|
13470
13493
|
var ChevronIcon = function ChevronIcon(_ref) {
|
|
13471
13494
|
var themeValues = _ref.themeValues,
|
|
@@ -13507,7 +13530,7 @@ var ChevronIcon = function ChevronIcon(_ref) {
|
|
|
13507
13530
|
}))));
|
|
13508
13531
|
};
|
|
13509
13532
|
|
|
13510
|
-
var ChevronIcon$1 = themeComponent
|
|
13533
|
+
var ChevronIcon$1 = themeComponent(ChevronIcon, "Icons", fallbackValues$3, "secondary");
|
|
13511
13534
|
|
|
13512
13535
|
var PropertiesAddIcon = function PropertiesAddIcon(_ref) {
|
|
13513
13536
|
var themeValues = _ref.themeValues;
|
|
@@ -13576,7 +13599,7 @@ var PropertiesAddIcon = function PropertiesAddIcon(_ref) {
|
|
|
13576
13599
|
})))))));
|
|
13577
13600
|
};
|
|
13578
13601
|
|
|
13579
|
-
var PropertiesAddIcon$1 = themeComponent
|
|
13602
|
+
var PropertiesAddIcon$1 = themeComponent(PropertiesAddIcon, "Icons", fallbackValues$3, "info");
|
|
13580
13603
|
|
|
13581
13604
|
var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
|
|
13582
13605
|
var themeValues = _ref.themeValues;
|
|
@@ -13603,7 +13626,7 @@ var PropertiesIconSmall = function PropertiesIconSmall(_ref) {
|
|
|
13603
13626
|
})));
|
|
13604
13627
|
};
|
|
13605
13628
|
|
|
13606
|
-
var PropertiesIconSmall$1 = themeComponent
|
|
13629
|
+
var PropertiesIconSmall$1 = themeComponent(PropertiesIconSmall, "Icons", fallbackValues$3, "primary");
|
|
13607
13630
|
|
|
13608
13631
|
var AccountNumberImage = function AccountNumberImage() {
|
|
13609
13632
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -13792,16 +13815,16 @@ var CheckmarkIcon = function CheckmarkIcon() {
|
|
|
13792
13815
|
transform: "translate(672.000000, 64.000000)"
|
|
13793
13816
|
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
13794
13817
|
id: "Oval-2",
|
|
13795
|
-
stroke:
|
|
13818
|
+
stroke: SEA_GREEN,
|
|
13796
13819
|
strokeWidth: "2",
|
|
13797
|
-
fill:
|
|
13820
|
+
fill: HINT_GREEN,
|
|
13798
13821
|
cx: "48",
|
|
13799
13822
|
cy: "48",
|
|
13800
13823
|
r: "48"
|
|
13801
13824
|
}), /*#__PURE__*/React__default.createElement("g", {
|
|
13802
13825
|
id: "Group-2",
|
|
13803
13826
|
transform: "translate(20.800000, 28.400000)",
|
|
13804
|
-
fill:
|
|
13827
|
+
fill: SEA_GREEN
|
|
13805
13828
|
}, /*#__PURE__*/React__default.createElement("polygon", {
|
|
13806
13829
|
id: "Rectangle-2",
|
|
13807
13830
|
transform: "translate(12.800000, 30.000000) rotate(-45.000000) translate(-12.800000, -30.000000) ",
|
|
@@ -14095,7 +14118,9 @@ var TimeoutImage = function TimeoutImage() {
|
|
|
14095
14118
|
})))));
|
|
14096
14119
|
};
|
|
14097
14120
|
|
|
14098
|
-
var AutopayOnIcon = function AutopayOnIcon() {
|
|
14121
|
+
var AutopayOnIcon = function AutopayOnIcon(_ref) {
|
|
14122
|
+
var _ref$color = _ref.color,
|
|
14123
|
+
color = _ref$color === void 0 ? SEA_GREEN : _ref$color;
|
|
14099
14124
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14100
14125
|
xmlns: "http://www.w3.org/2000/svg",
|
|
14101
14126
|
width: "12",
|
|
@@ -14108,7 +14133,7 @@ var AutopayOnIcon = function AutopayOnIcon() {
|
|
|
14108
14133
|
strokeWidth: "1"
|
|
14109
14134
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
14110
14135
|
className: "autopayIcon",
|
|
14111
|
-
fill:
|
|
14136
|
+
fill: color,
|
|
14112
14137
|
fillRule: "nonzero",
|
|
14113
14138
|
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"
|
|
14114
14139
|
})));
|
|
@@ -14506,7 +14531,7 @@ var WalletIcon = function WalletIcon(_ref) {
|
|
|
14506
14531
|
}))));
|
|
14507
14532
|
};
|
|
14508
14533
|
|
|
14509
|
-
var WalletIcon$1 = themeComponent
|
|
14534
|
+
var WalletIcon$1 = themeComponent(WalletIcon, "Icons", fallbackValues$3, "info");
|
|
14510
14535
|
|
|
14511
14536
|
var AchReturnIcon = function AchReturnIcon() {
|
|
14512
14537
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -14739,7 +14764,29 @@ var FailedIcon = function FailedIcon() {
|
|
|
14739
14764
|
}))));
|
|
14740
14765
|
};
|
|
14741
14766
|
|
|
14742
|
-
var
|
|
14767
|
+
var PencilIcon = function PencilIcon(_ref) {
|
|
14768
|
+
var _ref$ariaLabel = _ref.ariaLabel,
|
|
14769
|
+
ariaLabel = _ref$ariaLabel === void 0 ? "Edit" : _ref$ariaLabel,
|
|
14770
|
+
themeValues = _ref.themeValues;
|
|
14771
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14772
|
+
"aria-label": ariaLabel,
|
|
14773
|
+
width: "24px",
|
|
14774
|
+
height: "24px",
|
|
14775
|
+
fill: "none",
|
|
14776
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
14777
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
14778
|
+
fillRule: "evenodd",
|
|
14779
|
+
clipRule: "evenodd",
|
|
14780
|
+
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",
|
|
14781
|
+
fill: themeValues.subIconColor
|
|
14782
|
+
}));
|
|
14783
|
+
};
|
|
14784
|
+
|
|
14785
|
+
var PencilIcon$1 = themeComponent(PencilIcon, "Icons", fallbackValues$3, "info");
|
|
14786
|
+
|
|
14787
|
+
var PendingIcon = function PendingIcon(_ref) {
|
|
14788
|
+
var _ref$fill = _ref.fill,
|
|
14789
|
+
fill = _ref$fill === void 0 ? STORM_GREY : _ref$fill;
|
|
14743
14790
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
14744
14791
|
width: "32px",
|
|
14745
14792
|
height: "32px",
|
|
@@ -14756,7 +14803,7 @@ var PendingIcon = function PendingIcon() {
|
|
|
14756
14803
|
}, /*#__PURE__*/React__default.createElement("g", {
|
|
14757
14804
|
id: "Icons",
|
|
14758
14805
|
transform: "translate(-64.000000, -448.000000)",
|
|
14759
|
-
fill:
|
|
14806
|
+
fill: fill
|
|
14760
14807
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
14761
14808
|
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",
|
|
14762
14809
|
id: "status-icon---pending"
|
|
@@ -14947,7 +14994,7 @@ var CarrotIcon = function CarrotIcon(_ref) {
|
|
|
14947
14994
|
}))))))));
|
|
14948
14995
|
};
|
|
14949
14996
|
|
|
14950
|
-
var CarrotIcon$1 = themeComponent
|
|
14997
|
+
var CarrotIcon$1 = themeComponent(CarrotIcon, "Icons", fallbackValues$3, "darkMode");
|
|
14951
14998
|
|
|
14952
14999
|
var ProfileIcon = function ProfileIcon(_ref) {
|
|
14953
15000
|
var themeValues = _ref.themeValues;
|
|
@@ -14985,7 +15032,7 @@ var ProfileIcon = function ProfileIcon(_ref) {
|
|
|
14985
15032
|
}))));
|
|
14986
15033
|
};
|
|
14987
15034
|
|
|
14988
|
-
var ProfileIcon$1 = themeComponent
|
|
15035
|
+
var ProfileIcon$1 = themeComponent(ProfileIcon, "Icons", fallbackValues$3, "info");
|
|
14989
15036
|
|
|
14990
15037
|
var GenericCardLarge = function GenericCardLarge() {
|
|
14991
15038
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -15046,7 +15093,7 @@ var EmptyCartIcon = function EmptyCartIcon(_ref) {
|
|
|
15046
15093
|
})));
|
|
15047
15094
|
};
|
|
15048
15095
|
|
|
15049
|
-
var EmptyCartIcon$1 = themeComponent
|
|
15096
|
+
var EmptyCartIcon$1 = themeComponent(EmptyCartIcon, "Icons", fallbackValues$3, "info");
|
|
15050
15097
|
|
|
15051
15098
|
var ShoppingCartIcon = function ShoppingCartIcon() {
|
|
15052
15099
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -15118,7 +15165,7 @@ var TrashIcon = function TrashIcon(_ref) {
|
|
|
15118
15165
|
})));
|
|
15119
15166
|
};
|
|
15120
15167
|
|
|
15121
|
-
var TrashIcon$1 = themeComponent
|
|
15168
|
+
var TrashIcon$1 = themeComponent(TrashIcon, "Icons", fallbackValues$3, "primary");
|
|
15122
15169
|
|
|
15123
15170
|
var NoCustomerResultsIcon = function NoCustomerResultsIcon() {
|
|
15124
15171
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -15711,7 +15758,7 @@ var WalletBannerIcon = function WalletBannerIcon(_ref) {
|
|
|
15711
15758
|
}));
|
|
15712
15759
|
};
|
|
15713
15760
|
|
|
15714
|
-
var WalletBannerIcon$1 = themeComponent
|
|
15761
|
+
var WalletBannerIcon$1 = themeComponent(WalletBannerIcon, "Icons", fallbackValues$3, "primary");
|
|
15715
15762
|
|
|
15716
15763
|
var StandardCheckoutImage = function StandardCheckoutImage() {
|
|
15717
15764
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -16271,7 +16318,7 @@ var RevenueManagementImage = function RevenueManagementImage() {
|
|
|
16271
16318
|
fill: "#15749D"
|
|
16272
16319
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16273
16320
|
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",
|
|
16274
|
-
fill: "#
|
|
16321
|
+
fill: "#15749D"
|
|
16275
16322
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16276
16323
|
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",
|
|
16277
16324
|
fill: "#15749D"
|
|
@@ -16484,6 +16531,705 @@ var RevenueManagementImage = function RevenueManagementImage() {
|
|
|
16484
16531
|
}))));
|
|
16485
16532
|
};
|
|
16486
16533
|
|
|
16534
|
+
var KioskImage = function KioskImage() {
|
|
16535
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16536
|
+
width: 191,
|
|
16537
|
+
height: 96,
|
|
16538
|
+
viewBox: "0 0 191 96",
|
|
16539
|
+
fill: "none",
|
|
16540
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16541
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16542
|
+
fillRule: "evenodd",
|
|
16543
|
+
clipRule: "evenodd",
|
|
16544
|
+
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",
|
|
16545
|
+
fill: "#3B5BDB",
|
|
16546
|
+
fillOpacity: 0.3
|
|
16547
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16548
|
+
fillRule: "evenodd",
|
|
16549
|
+
clipRule: "evenodd",
|
|
16550
|
+
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",
|
|
16551
|
+
fill: "#3B5BDB",
|
|
16552
|
+
fillOpacity: 0.3
|
|
16553
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16554
|
+
fillRule: "evenodd",
|
|
16555
|
+
clipRule: "evenodd",
|
|
16556
|
+
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",
|
|
16557
|
+
fill: "#3B5BDB",
|
|
16558
|
+
fillOpacity: 0.3
|
|
16559
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16560
|
+
fillRule: "evenodd",
|
|
16561
|
+
clipRule: "evenodd",
|
|
16562
|
+
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",
|
|
16563
|
+
fill: "#3B5BDB",
|
|
16564
|
+
fillOpacity: 0.3
|
|
16565
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16566
|
+
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",
|
|
16567
|
+
fill: "#3B5BDB",
|
|
16568
|
+
fillOpacity: 0.3
|
|
16569
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16570
|
+
fillRule: "evenodd",
|
|
16571
|
+
clipRule: "evenodd",
|
|
16572
|
+
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",
|
|
16573
|
+
fill: "white"
|
|
16574
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16575
|
+
fillRule: "evenodd",
|
|
16576
|
+
clipRule: "evenodd",
|
|
16577
|
+
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",
|
|
16578
|
+
fill: "#292A33"
|
|
16579
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16580
|
+
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",
|
|
16581
|
+
fill: "#EBEFFB"
|
|
16582
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16583
|
+
x: 162.573,
|
|
16584
|
+
y: 70.0283,
|
|
16585
|
+
width: 12.5769,
|
|
16586
|
+
height: 2.64072,
|
|
16587
|
+
rx: 1.32036,
|
|
16588
|
+
fill: "#292A33"
|
|
16589
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16590
|
+
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",
|
|
16591
|
+
fill: "#292A33"
|
|
16592
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16593
|
+
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",
|
|
16594
|
+
fill: "#292A33"
|
|
16595
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16596
|
+
x: 17.4429,
|
|
16597
|
+
y: 70.0283,
|
|
16598
|
+
width: 8.10877,
|
|
16599
|
+
height: 2.64072,
|
|
16600
|
+
rx: 1.32036,
|
|
16601
|
+
fill: "#292A33"
|
|
16602
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16603
|
+
x: 93.0732,
|
|
16604
|
+
y: 70.2441,
|
|
16605
|
+
width: 8.10877,
|
|
16606
|
+
height: 2.64072,
|
|
16607
|
+
rx: 1.32036,
|
|
16608
|
+
fill: "#292A33"
|
|
16609
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16610
|
+
x: 112.689,
|
|
16611
|
+
y: 56.1953,
|
|
16612
|
+
width: 8.10877,
|
|
16613
|
+
height: 2.64072,
|
|
16614
|
+
rx: 1.32036,
|
|
16615
|
+
transform: "rotate(90 112.689 56.1953)",
|
|
16616
|
+
fill: "#292A33"
|
|
16617
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16618
|
+
x: 104.781,
|
|
16619
|
+
y: 70.2441,
|
|
16620
|
+
width: 8.10877,
|
|
16621
|
+
height: 2.64072,
|
|
16622
|
+
rx: 1.32036,
|
|
16623
|
+
fill: "#292A33"
|
|
16624
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16625
|
+
fillRule: "evenodd",
|
|
16626
|
+
clipRule: "evenodd",
|
|
16627
|
+
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",
|
|
16628
|
+
fill: "#3B5BDB"
|
|
16629
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16630
|
+
fillRule: "evenodd",
|
|
16631
|
+
clipRule: "evenodd",
|
|
16632
|
+
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",
|
|
16633
|
+
fill: "#3B5BDB"
|
|
16634
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16635
|
+
fillRule: "evenodd",
|
|
16636
|
+
clipRule: "evenodd",
|
|
16637
|
+
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",
|
|
16638
|
+
fill: "#3B5BDB"
|
|
16639
|
+
}), /*#__PURE__*/React__default.createElement("g", {
|
|
16640
|
+
filter: "url(#filter0_d_4997_39198)"
|
|
16641
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16642
|
+
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",
|
|
16643
|
+
fill: "white"
|
|
16644
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16645
|
+
x: 144.722,
|
|
16646
|
+
y: 23.8203,
|
|
16647
|
+
width: 7.44683,
|
|
16648
|
+
height: 1.98054,
|
|
16649
|
+
rx: 0.990269,
|
|
16650
|
+
fill: "#959CA8"
|
|
16651
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16652
|
+
x: 137.606,
|
|
16653
|
+
y: 23.8203,
|
|
16654
|
+
width: 4.4681,
|
|
16655
|
+
height: 1.98054,
|
|
16656
|
+
rx: 0.990269,
|
|
16657
|
+
fill: "#959CA8"
|
|
16658
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16659
|
+
x: 124.367,
|
|
16660
|
+
y: 23.8203,
|
|
16661
|
+
width: 10.5911,
|
|
16662
|
+
height: 1.98054,
|
|
16663
|
+
rx: 0.990269,
|
|
16664
|
+
fill: "#959CA8"
|
|
16665
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16666
|
+
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",
|
|
16667
|
+
fill: "#959CA8"
|
|
16668
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16669
|
+
filter: "url(#filter1_d_4997_39198)"
|
|
16670
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16671
|
+
x: 125.836,
|
|
16672
|
+
y: 28.1113,
|
|
16673
|
+
width: 53.2862,
|
|
16674
|
+
height: 9.2416,
|
|
16675
|
+
rx: 4.5008,
|
|
16676
|
+
fill: "white"
|
|
16677
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16678
|
+
x: 164.229,
|
|
16679
|
+
y: 31.7422,
|
|
16680
|
+
width: 11.253,
|
|
16681
|
+
height: 1.98054,
|
|
16682
|
+
rx: 0.990269,
|
|
16683
|
+
fill: "#959CA8"
|
|
16684
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16685
|
+
x: 147.68,
|
|
16686
|
+
y: 31.7422,
|
|
16687
|
+
width: 13.9008,
|
|
16688
|
+
height: 1.98054,
|
|
16689
|
+
rx: 0.990269,
|
|
16690
|
+
fill: "#959CA8"
|
|
16691
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16692
|
+
x: 140.233,
|
|
16693
|
+
y: 31.7422,
|
|
16694
|
+
width: 4.79907,
|
|
16695
|
+
height: 1.98054,
|
|
16696
|
+
rx: 0.990269,
|
|
16697
|
+
fill: "#959CA8"
|
|
16698
|
+
}), /*#__PURE__*/React__default.createElement("rect", {
|
|
16699
|
+
x: 129.477,
|
|
16700
|
+
y: 31.7422,
|
|
16701
|
+
width: 8.10877,
|
|
16702
|
+
height: 1.98054,
|
|
16703
|
+
rx: 0.990269,
|
|
16704
|
+
fill: "#959CA8"
|
|
16705
|
+
})), /*#__PURE__*/React__default.createElement("path", {
|
|
16706
|
+
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",
|
|
16707
|
+
fill: "#3B5BDB"
|
|
16708
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16709
|
+
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",
|
|
16710
|
+
fill: "#3B5BDB"
|
|
16711
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16712
|
+
fillRule: "evenodd",
|
|
16713
|
+
clipRule: "evenodd",
|
|
16714
|
+
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",
|
|
16715
|
+
fill: "#3B5BDB"
|
|
16716
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16717
|
+
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",
|
|
16718
|
+
fill: "#3B5BDB"
|
|
16719
|
+
}), /*#__PURE__*/React__default.createElement("g", {
|
|
16720
|
+
filter: "url(#filter2_d_4997_39198)"
|
|
16721
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16722
|
+
x: 128.195,
|
|
16723
|
+
y: 30.5869,
|
|
16724
|
+
width: 18.5343,
|
|
16725
|
+
height: 18.4832,
|
|
16726
|
+
rx: 8.439,
|
|
16727
|
+
fill: "#3B5BDB"
|
|
16728
|
+
})), /*#__PURE__*/React__default.createElement("path", {
|
|
16729
|
+
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",
|
|
16730
|
+
fill: "white"
|
|
16731
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
16732
|
+
id: "mask0_4997_39198",
|
|
16733
|
+
style: {
|
|
16734
|
+
maskType: "luminance"
|
|
16735
|
+
},
|
|
16736
|
+
maskUnits: "userSpaceOnUse",
|
|
16737
|
+
x: 134,
|
|
16738
|
+
y: 34,
|
|
16739
|
+
width: 7,
|
|
16740
|
+
height: 12
|
|
16741
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16742
|
+
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",
|
|
16743
|
+
fill: "white"
|
|
16744
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16745
|
+
mask: "url(#mask0_4997_39198)"
|
|
16746
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
16747
|
+
x: 129.951,
|
|
16748
|
+
y: 32.2012,
|
|
16749
|
+
width: 15.2974,
|
|
16750
|
+
height: 15.2552,
|
|
16751
|
+
fill: "white"
|
|
16752
|
+
})), /*#__PURE__*/React__default.createElement("path", {
|
|
16753
|
+
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",
|
|
16754
|
+
fill: "white"
|
|
16755
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16756
|
+
fillRule: "evenodd",
|
|
16757
|
+
clipRule: "evenodd",
|
|
16758
|
+
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",
|
|
16759
|
+
fill: "#292A33"
|
|
16760
|
+
}), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("filter", {
|
|
16761
|
+
id: "filter0_d_4997_39198",
|
|
16762
|
+
x: 107.093,
|
|
16763
|
+
y: 9.03814,
|
|
16764
|
+
width: 59.8678,
|
|
16765
|
+
height: 31.5438,
|
|
16766
|
+
filterUnits: "userSpaceOnUse",
|
|
16767
|
+
colorInterpolationFilters: "sRGB"
|
|
16768
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
16769
|
+
floodOpacity: 0,
|
|
16770
|
+
result: "BackgroundImageFix"
|
|
16771
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
16772
|
+
"in": "SourceAlpha",
|
|
16773
|
+
type: "matrix",
|
|
16774
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
16775
|
+
result: "hardAlpha"
|
|
16776
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
16777
|
+
stdDeviation: 5.57566
|
|
16778
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
16779
|
+
in2: "hardAlpha",
|
|
16780
|
+
operator: "out"
|
|
16781
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
16782
|
+
type: "matrix",
|
|
16783
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
16784
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
16785
|
+
mode: "normal",
|
|
16786
|
+
in2: "BackgroundImageFix",
|
|
16787
|
+
result: "effect1_dropShadow_4997_39198"
|
|
16788
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
16789
|
+
mode: "normal",
|
|
16790
|
+
"in": "SourceGraphic",
|
|
16791
|
+
in2: "effect1_dropShadow_4997_39198",
|
|
16792
|
+
result: "shape"
|
|
16793
|
+
})), /*#__PURE__*/React__default.createElement("filter", {
|
|
16794
|
+
id: "filter1_d_4997_39198",
|
|
16795
|
+
x: 114.685,
|
|
16796
|
+
y: 16.96,
|
|
16797
|
+
width: 75.5888,
|
|
16798
|
+
height: 31.5438,
|
|
16799
|
+
filterUnits: "userSpaceOnUse",
|
|
16800
|
+
colorInterpolationFilters: "sRGB"
|
|
16801
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
16802
|
+
floodOpacity: 0,
|
|
16803
|
+
result: "BackgroundImageFix"
|
|
16804
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
16805
|
+
"in": "SourceAlpha",
|
|
16806
|
+
type: "matrix",
|
|
16807
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
16808
|
+
result: "hardAlpha"
|
|
16809
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
16810
|
+
stdDeviation: 5.57566
|
|
16811
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
16812
|
+
in2: "hardAlpha",
|
|
16813
|
+
operator: "out"
|
|
16814
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
16815
|
+
type: "matrix",
|
|
16816
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
16817
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
16818
|
+
mode: "normal",
|
|
16819
|
+
in2: "BackgroundImageFix",
|
|
16820
|
+
result: "effect1_dropShadow_4997_39198"
|
|
16821
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
16822
|
+
mode: "normal",
|
|
16823
|
+
"in": "SourceGraphic",
|
|
16824
|
+
in2: "effect1_dropShadow_4997_39198",
|
|
16825
|
+
result: "shape"
|
|
16826
|
+
})), /*#__PURE__*/React__default.createElement("filter", {
|
|
16827
|
+
id: "filter2_d_4997_39198",
|
|
16828
|
+
x: 113.195,
|
|
16829
|
+
y: 15.5869,
|
|
16830
|
+
width: 48.5344,
|
|
16831
|
+
height: 48.4834,
|
|
16832
|
+
filterUnits: "userSpaceOnUse",
|
|
16833
|
+
colorInterpolationFilters: "sRGB"
|
|
16834
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
16835
|
+
floodOpacity: 0,
|
|
16836
|
+
result: "BackgroundImageFix"
|
|
16837
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
16838
|
+
"in": "SourceAlpha",
|
|
16839
|
+
type: "matrix",
|
|
16840
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
16841
|
+
result: "hardAlpha"
|
|
16842
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
16843
|
+
stdDeviation: 7.5
|
|
16844
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
16845
|
+
in2: "hardAlpha",
|
|
16846
|
+
operator: "out"
|
|
16847
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
16848
|
+
type: "matrix",
|
|
16849
|
+
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"
|
|
16850
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
16851
|
+
mode: "normal",
|
|
16852
|
+
in2: "BackgroundImageFix",
|
|
16853
|
+
result: "effect1_dropShadow_4997_39198"
|
|
16854
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
16855
|
+
mode: "normal",
|
|
16856
|
+
"in": "SourceGraphic",
|
|
16857
|
+
in2: "effect1_dropShadow_4997_39198",
|
|
16858
|
+
result: "shape"
|
|
16859
|
+
}))));
|
|
16860
|
+
};
|
|
16861
|
+
|
|
16862
|
+
var PointOfSaleImage = function PointOfSaleImage() {
|
|
16863
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
16864
|
+
width: 180,
|
|
16865
|
+
height: 96,
|
|
16866
|
+
viewBox: "0 0 180 96",
|
|
16867
|
+
fill: "none",
|
|
16868
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
16869
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16870
|
+
fillRule: "evenodd",
|
|
16871
|
+
clipRule: "evenodd",
|
|
16872
|
+
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",
|
|
16873
|
+
fill: "#15749D",
|
|
16874
|
+
fillOpacity: 0.3
|
|
16875
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16876
|
+
fillRule: "evenodd",
|
|
16877
|
+
clipRule: "evenodd",
|
|
16878
|
+
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",
|
|
16879
|
+
fill: "#15749D",
|
|
16880
|
+
fillOpacity: 0.3
|
|
16881
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16882
|
+
fillRule: "evenodd",
|
|
16883
|
+
clipRule: "evenodd",
|
|
16884
|
+
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",
|
|
16885
|
+
fill: "#15749D",
|
|
16886
|
+
fillOpacity: 0.3
|
|
16887
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16888
|
+
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",
|
|
16889
|
+
fill: "#15749D",
|
|
16890
|
+
fillOpacity: 0.3
|
|
16891
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16892
|
+
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",
|
|
16893
|
+
fill: "white"
|
|
16894
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16895
|
+
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",
|
|
16896
|
+
fill: "#E5E7EC"
|
|
16897
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16898
|
+
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",
|
|
16899
|
+
fill: "#292A33"
|
|
16900
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16901
|
+
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",
|
|
16902
|
+
fill: "#292A33"
|
|
16903
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16904
|
+
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",
|
|
16905
|
+
fill: "#292A33"
|
|
16906
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16907
|
+
fillRule: "evenodd",
|
|
16908
|
+
clipRule: "evenodd",
|
|
16909
|
+
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",
|
|
16910
|
+
fill: "#292A33"
|
|
16911
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16912
|
+
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",
|
|
16913
|
+
fill: "#292A33"
|
|
16914
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16915
|
+
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",
|
|
16916
|
+
fill: "#292A33"
|
|
16917
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16918
|
+
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",
|
|
16919
|
+
fill: "#292A33"
|
|
16920
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16921
|
+
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",
|
|
16922
|
+
fill: "#292A33"
|
|
16923
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16924
|
+
fillRule: "evenodd",
|
|
16925
|
+
clipRule: "evenodd",
|
|
16926
|
+
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",
|
|
16927
|
+
fill: "#292A33"
|
|
16928
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16929
|
+
fillRule: "evenodd",
|
|
16930
|
+
clipRule: "evenodd",
|
|
16931
|
+
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",
|
|
16932
|
+
fill: "#292A33"
|
|
16933
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16934
|
+
fillRule: "evenodd",
|
|
16935
|
+
clipRule: "evenodd",
|
|
16936
|
+
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",
|
|
16937
|
+
fill: "#292A33"
|
|
16938
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16939
|
+
d: "M47.9609 30.1172H132.667V31.9995H47.9609V30.1172Z",
|
|
16940
|
+
fill: "#292A33"
|
|
16941
|
+
}), /*#__PURE__*/React__default.createElement("g", {
|
|
16942
|
+
filter: "url(#filter0_d_4979_37133)"
|
|
16943
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16944
|
+
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",
|
|
16945
|
+
fill: "white"
|
|
16946
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16947
|
+
fillRule: "evenodd",
|
|
16948
|
+
clipRule: "evenodd",
|
|
16949
|
+
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",
|
|
16950
|
+
fill: "#959CA8"
|
|
16951
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16952
|
+
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",
|
|
16953
|
+
fill: "#959CA8"
|
|
16954
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16955
|
+
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",
|
|
16956
|
+
fill: "#959CA8"
|
|
16957
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16958
|
+
filter: "url(#filter1_d_4979_37133)"
|
|
16959
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16960
|
+
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",
|
|
16961
|
+
fill: "white"
|
|
16962
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16963
|
+
fillRule: "evenodd",
|
|
16964
|
+
clipRule: "evenodd",
|
|
16965
|
+
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",
|
|
16966
|
+
fill: "#959CA8"
|
|
16967
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16968
|
+
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",
|
|
16969
|
+
fill: "#959CA8"
|
|
16970
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16971
|
+
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",
|
|
16972
|
+
fill: "#959CA8"
|
|
16973
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16974
|
+
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",
|
|
16975
|
+
fill: "#959CA8"
|
|
16976
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16977
|
+
filter: "url(#filter2_d_4979_37133)"
|
|
16978
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16979
|
+
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",
|
|
16980
|
+
fill: "white"
|
|
16981
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16982
|
+
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",
|
|
16983
|
+
fill: "#959CA8"
|
|
16984
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16985
|
+
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",
|
|
16986
|
+
fill: "#959CA8"
|
|
16987
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16988
|
+
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",
|
|
16989
|
+
fill: "#959CA8"
|
|
16990
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
16991
|
+
filter: "url(#filter3_d_4979_37133)"
|
|
16992
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
16993
|
+
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",
|
|
16994
|
+
fill: "white"
|
|
16995
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
16996
|
+
fillRule: "evenodd",
|
|
16997
|
+
clipRule: "evenodd",
|
|
16998
|
+
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",
|
|
16999
|
+
fill: "#959CA8"
|
|
17000
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17001
|
+
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",
|
|
17002
|
+
fill: "#959CA8"
|
|
17003
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17004
|
+
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",
|
|
17005
|
+
fill: "#959CA8"
|
|
17006
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17007
|
+
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",
|
|
17008
|
+
fill: "#959CA8"
|
|
17009
|
+
})), /*#__PURE__*/React__default.createElement("path", {
|
|
17010
|
+
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",
|
|
17011
|
+
fill: "#15749D"
|
|
17012
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17013
|
+
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",
|
|
17014
|
+
fill: "#15749D"
|
|
17015
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17016
|
+
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",
|
|
17017
|
+
fill: "#15749D"
|
|
17018
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17019
|
+
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",
|
|
17020
|
+
fill: "#15749D"
|
|
17021
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17022
|
+
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",
|
|
17023
|
+
fill: "#15749D"
|
|
17024
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17025
|
+
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",
|
|
17026
|
+
fill: "#15749D"
|
|
17027
|
+
}), /*#__PURE__*/React__default.createElement("g", {
|
|
17028
|
+
filter: "url(#filter4_d_4979_37133)"
|
|
17029
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17030
|
+
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",
|
|
17031
|
+
fill: "#E5E7EC"
|
|
17032
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17033
|
+
fillRule: "evenodd",
|
|
17034
|
+
clipRule: "evenodd",
|
|
17035
|
+
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",
|
|
17036
|
+
fill: "#292A33"
|
|
17037
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17038
|
+
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",
|
|
17039
|
+
fill: "#292A33"
|
|
17040
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17041
|
+
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",
|
|
17042
|
+
fill: "white"
|
|
17043
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17044
|
+
fillRule: "evenodd",
|
|
17045
|
+
clipRule: "evenodd",
|
|
17046
|
+
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",
|
|
17047
|
+
fill: "#292A33"
|
|
17048
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17049
|
+
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",
|
|
17050
|
+
fill: "white"
|
|
17051
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17052
|
+
fillRule: "evenodd",
|
|
17053
|
+
clipRule: "evenodd",
|
|
17054
|
+
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",
|
|
17055
|
+
fill: "#292A33"
|
|
17056
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17057
|
+
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",
|
|
17058
|
+
fill: "#292A33"
|
|
17059
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17060
|
+
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",
|
|
17061
|
+
fill: "#292A33"
|
|
17062
|
+
}), /*#__PURE__*/React__default.createElement("path", {
|
|
17063
|
+
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",
|
|
17064
|
+
fill: "#292A33"
|
|
17065
|
+
})), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("filter", {
|
|
17066
|
+
id: "filter0_d_4979_37133",
|
|
17067
|
+
x: 17.2354,
|
|
17068
|
+
y: 28.8828,
|
|
17069
|
+
width: 35.7256,
|
|
17070
|
+
height: 18.1572,
|
|
17071
|
+
filterUnits: "userSpaceOnUse",
|
|
17072
|
+
colorInterpolationFilters: "sRGB"
|
|
17073
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
17074
|
+
floodOpacity: 0,
|
|
17075
|
+
result: "BackgroundImageFix"
|
|
17076
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17077
|
+
"in": "SourceAlpha",
|
|
17078
|
+
type: "matrix",
|
|
17079
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17080
|
+
result: "hardAlpha"
|
|
17081
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
17082
|
+
stdDeviation: 2.5
|
|
17083
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
17084
|
+
in2: "hardAlpha",
|
|
17085
|
+
operator: "out"
|
|
17086
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17087
|
+
type: "matrix",
|
|
17088
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17089
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17090
|
+
mode: "normal",
|
|
17091
|
+
in2: "BackgroundImageFix",
|
|
17092
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17093
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17094
|
+
mode: "normal",
|
|
17095
|
+
"in": "SourceGraphic",
|
|
17096
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17097
|
+
result: "shape"
|
|
17098
|
+
})), /*#__PURE__*/React__default.createElement("filter", {
|
|
17099
|
+
id: "filter1_d_4979_37133",
|
|
17100
|
+
x: 0.921631,
|
|
17101
|
+
y: 35.7842,
|
|
17102
|
+
width: 60.8235,
|
|
17103
|
+
height: 18.1572,
|
|
17104
|
+
filterUnits: "userSpaceOnUse",
|
|
17105
|
+
colorInterpolationFilters: "sRGB"
|
|
17106
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
17107
|
+
floodOpacity: 0,
|
|
17108
|
+
result: "BackgroundImageFix"
|
|
17109
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17110
|
+
"in": "SourceAlpha",
|
|
17111
|
+
type: "matrix",
|
|
17112
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17113
|
+
result: "hardAlpha"
|
|
17114
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
17115
|
+
stdDeviation: 2.5
|
|
17116
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
17117
|
+
in2: "hardAlpha",
|
|
17118
|
+
operator: "out"
|
|
17119
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17120
|
+
type: "matrix",
|
|
17121
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17122
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17123
|
+
mode: "normal",
|
|
17124
|
+
in2: "BackgroundImageFix",
|
|
17125
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17126
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17127
|
+
mode: "normal",
|
|
17128
|
+
"in": "SourceGraphic",
|
|
17129
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17130
|
+
result: "shape"
|
|
17131
|
+
})), /*#__PURE__*/React__default.createElement("filter", {
|
|
17132
|
+
id: "filter2_d_4979_37133",
|
|
17133
|
+
x: 127.667,
|
|
17134
|
+
y: 22.6074,
|
|
17135
|
+
width: 46.3921,
|
|
17136
|
+
height: 18.1572,
|
|
17137
|
+
filterUnits: "userSpaceOnUse",
|
|
17138
|
+
colorInterpolationFilters: "sRGB"
|
|
17139
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
17140
|
+
floodOpacity: 0,
|
|
17141
|
+
result: "BackgroundImageFix"
|
|
17142
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17143
|
+
"in": "SourceAlpha",
|
|
17144
|
+
type: "matrix",
|
|
17145
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17146
|
+
result: "hardAlpha"
|
|
17147
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
17148
|
+
stdDeviation: 2.5
|
|
17149
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
17150
|
+
in2: "hardAlpha",
|
|
17151
|
+
operator: "out"
|
|
17152
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17153
|
+
type: "matrix",
|
|
17154
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17155
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17156
|
+
mode: "normal",
|
|
17157
|
+
in2: "BackgroundImageFix",
|
|
17158
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17159
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17160
|
+
mode: "normal",
|
|
17161
|
+
"in": "SourceGraphic",
|
|
17162
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17163
|
+
result: "shape"
|
|
17164
|
+
})), /*#__PURE__*/React__default.createElement("filter", {
|
|
17165
|
+
id: "filter3_d_4979_37133",
|
|
17166
|
+
x: 118.255,
|
|
17167
|
+
y: 29.5098,
|
|
17168
|
+
width: 60.8235,
|
|
17169
|
+
height: 18.1572,
|
|
17170
|
+
filterUnits: "userSpaceOnUse",
|
|
17171
|
+
colorInterpolationFilters: "sRGB"
|
|
17172
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
17173
|
+
floodOpacity: 0,
|
|
17174
|
+
result: "BackgroundImageFix"
|
|
17175
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17176
|
+
"in": "SourceAlpha",
|
|
17177
|
+
type: "matrix",
|
|
17178
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17179
|
+
result: "hardAlpha"
|
|
17180
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
17181
|
+
stdDeviation: 2.5
|
|
17182
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
17183
|
+
in2: "hardAlpha",
|
|
17184
|
+
operator: "out"
|
|
17185
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17186
|
+
type: "matrix",
|
|
17187
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"
|
|
17188
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17189
|
+
mode: "normal",
|
|
17190
|
+
in2: "BackgroundImageFix",
|
|
17191
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17192
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17193
|
+
mode: "normal",
|
|
17194
|
+
"in": "SourceGraphic",
|
|
17195
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17196
|
+
result: "shape"
|
|
17197
|
+
})), /*#__PURE__*/React__default.createElement("filter", {
|
|
17198
|
+
id: "filter4_d_4979_37133",
|
|
17199
|
+
x: 132.823,
|
|
17200
|
+
y: 25.8828,
|
|
17201
|
+
width: 38.5881,
|
|
17202
|
+
height: 36.7061,
|
|
17203
|
+
filterUnits: "userSpaceOnUse",
|
|
17204
|
+
colorInterpolationFilters: "sRGB"
|
|
17205
|
+
}, /*#__PURE__*/React__default.createElement("feFlood", {
|
|
17206
|
+
floodOpacity: 0,
|
|
17207
|
+
result: "BackgroundImageFix"
|
|
17208
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17209
|
+
"in": "SourceAlpha",
|
|
17210
|
+
type: "matrix",
|
|
17211
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",
|
|
17212
|
+
result: "hardAlpha"
|
|
17213
|
+
}), /*#__PURE__*/React__default.createElement("feOffset", null), /*#__PURE__*/React__default.createElement("feGaussianBlur", {
|
|
17214
|
+
stdDeviation: 4
|
|
17215
|
+
}), /*#__PURE__*/React__default.createElement("feComposite", {
|
|
17216
|
+
in2: "hardAlpha",
|
|
17217
|
+
operator: "out"
|
|
17218
|
+
}), /*#__PURE__*/React__default.createElement("feColorMatrix", {
|
|
17219
|
+
type: "matrix",
|
|
17220
|
+
values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"
|
|
17221
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17222
|
+
mode: "normal",
|
|
17223
|
+
in2: "BackgroundImageFix",
|
|
17224
|
+
result: "effect1_dropShadow_4979_37133"
|
|
17225
|
+
}), /*#__PURE__*/React__default.createElement("feBlend", {
|
|
17226
|
+
mode: "normal",
|
|
17227
|
+
"in": "SourceGraphic",
|
|
17228
|
+
in2: "effect1_dropShadow_4979_37133",
|
|
17229
|
+
result: "shape"
|
|
17230
|
+
}))));
|
|
17231
|
+
};
|
|
17232
|
+
|
|
16487
17233
|
var FindIconSmall = function FindIconSmall(_ref) {
|
|
16488
17234
|
var themeValues = _ref.themeValues,
|
|
16489
17235
|
_ref$iconIndex = _ref.iconIndex,
|
|
@@ -16524,7 +17270,7 @@ var FindIconSmall = function FindIconSmall(_ref) {
|
|
|
16524
17270
|
})));
|
|
16525
17271
|
};
|
|
16526
17272
|
|
|
16527
|
-
var FindIconSmall$1 = themeComponent
|
|
17273
|
+
var FindIconSmall$1 = themeComponent(FindIconSmall, "Icons", fallbackValues$3, "primary");
|
|
16528
17274
|
|
|
16529
17275
|
var HistoryIconSmall = function HistoryIconSmall(_ref) {
|
|
16530
17276
|
var themeValues = _ref.themeValues;
|
|
@@ -16550,7 +17296,7 @@ var HistoryIconSmall = function HistoryIconSmall(_ref) {
|
|
|
16550
17296
|
}));
|
|
16551
17297
|
};
|
|
16552
17298
|
|
|
16553
|
-
var HistoryIconSmall$1 = themeComponent
|
|
17299
|
+
var HistoryIconSmall$1 = themeComponent(HistoryIconSmall, "Icons", fallbackValues$3, "primary");
|
|
16554
17300
|
|
|
16555
17301
|
var ChargebackIconSmall = function ChargebackIconSmall(_ref) {
|
|
16556
17302
|
var _ref$color = _ref.color,
|
|
@@ -17327,7 +18073,7 @@ var AddObligation = function AddObligation(_ref) {
|
|
|
17327
18073
|
})))));
|
|
17328
18074
|
};
|
|
17329
18075
|
|
|
17330
|
-
var AddObligation$1 = themeComponent
|
|
18076
|
+
var AddObligation$1 = themeComponent(AddObligation, "AddObligation", fallbackValues$4);
|
|
17331
18077
|
|
|
17332
18078
|
var IconChevron = function IconChevron(_ref) {
|
|
17333
18079
|
var _ref$fill = _ref.fill,
|
|
@@ -17725,7 +18471,63 @@ var fallbackValues$5 = {
|
|
|
17725
18471
|
link: link
|
|
17726
18472
|
};
|
|
17727
18473
|
|
|
18474
|
+
/*
|
|
18475
|
+
|
|
18476
|
+
A utility function that can generate box-shadow values for components
|
|
18477
|
+
Takes a string representing an rgb color value and returns an object
|
|
18478
|
+
with values for standard, inset, and overlay shadows.
|
|
18479
|
+
|
|
18480
|
+
The objects for standard and inset shadows contain versions approiate
|
|
18481
|
+
for base, hover, and active interaction states.
|
|
18482
|
+
|
|
18483
|
+
*/
|
|
18484
|
+
|
|
18485
|
+
/*
|
|
18486
|
+
Function to convert string representing rgb color to rgba value with provided opacity
|
|
18487
|
+
("rgb(41, 42, 51)", "0.1") => "rgba(41, 42, 51, 0.1)"
|
|
18488
|
+
|
|
18489
|
+
*/
|
|
18490
|
+
var rgbToRgba = function rgbToRgba() {
|
|
18491
|
+
var rgbValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "";
|
|
18492
|
+
var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "";
|
|
18493
|
+
|
|
18494
|
+
if (typeof rgbValue !== "string" || typeof opacity !== "string" || rgbValue.charAt(0) === "#") {
|
|
18495
|
+
return "";
|
|
18496
|
+
}
|
|
18497
|
+
|
|
18498
|
+
return "".concat(rgbValue.slice(0, 3), "a").concat(rgbValue.slice(3, -1), ", ").concat(opacity).concat(rgbValue.slice(-1));
|
|
18499
|
+
};
|
|
18500
|
+
|
|
18501
|
+
var generateShadows = function generateShadows() {
|
|
18502
|
+
var baseColorRGB = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "rgb(41, 42, 51)";
|
|
18503
|
+
var colorTen = rgbToRgba(baseColorRGB, "0.1") || "rgba(41, 42, 51, 0.1)";
|
|
18504
|
+
var colorTwenty = rgbToRgba(baseColorRGB, "0.2") || "rgba(41, 42, 51, 0.2)";
|
|
18505
|
+
var colorTwentyFive = rgbToRgba(baseColorRGB, "0.25") || "rgba(41, 42, 51, 0.25)";
|
|
18506
|
+
var colorThirty = rgbToRgba(baseColorRGB, "0.3") || "rgba(41, 42, 51, 0.3)";
|
|
18507
|
+
var blackTwentyFive = "rgba(0, 0, 0, 0.25)";
|
|
18508
|
+
var standard = {
|
|
18509
|
+
base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 6px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
|
|
18510
|
+
hover: "0px 1px 2px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(blackTwentyFive, ", 0px 6px 12px 0px ").concat(colorTen),
|
|
18511
|
+
active: "0px 2px 8px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(colorThirty, ", 0px 6px 12px 0px ").concat(colorTwentyFive)
|
|
18512
|
+
};
|
|
18513
|
+
var inset = {
|
|
18514
|
+
base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
|
|
18515
|
+
hover: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwentyFive, ", 0px 4px 8px 0px ").concat(colorTen),
|
|
18516
|
+
active: "0px 1px 2px 2px ".concat(colorTwenty, ", 0px 3px 6px 0px ").concat(colorThirty, ", 0px 4px 8px 0px ").concat(colorTwenty)
|
|
18517
|
+
};
|
|
18518
|
+
var overlay = {
|
|
18519
|
+
base: "0px 7px 32px 0px ".concat(colorTwenty, ", 0px 1px 4px 0px ").concat(colorTwenty, ", 0px 1px 8px -1px ").concat(colorThirty)
|
|
18520
|
+
};
|
|
18521
|
+
return {
|
|
18522
|
+
standard: standard,
|
|
18523
|
+
inset: inset,
|
|
18524
|
+
overlay: overlay
|
|
18525
|
+
};
|
|
18526
|
+
};
|
|
18527
|
+
|
|
17728
18528
|
var Alert = function Alert(_ref) {
|
|
18529
|
+
var _generateShadows, _generateShadows$inse;
|
|
18530
|
+
|
|
17729
18531
|
var heading = _ref.heading,
|
|
17730
18532
|
text = _ref.text,
|
|
17731
18533
|
textOverride = _ref.textOverride,
|
|
@@ -17739,13 +18541,26 @@ var Alert = function Alert(_ref) {
|
|
|
17739
18541
|
showQuitLink = _ref$showQuitLink === void 0 ? true : _ref$showQuitLink,
|
|
17740
18542
|
themeValues = _ref.themeValues,
|
|
17741
18543
|
extraStyles = _ref.extraStyles,
|
|
17742
|
-
maxContentWidth = _ref.maxContentWidth
|
|
18544
|
+
maxContentWidth = _ref.maxContentWidth,
|
|
18545
|
+
_ref$noBorder = _ref.noBorder,
|
|
18546
|
+
noBorder = _ref$noBorder === void 0 ? false : _ref$noBorder,
|
|
18547
|
+
_ref$enableBoxShadow = _ref.enableBoxShadow,
|
|
18548
|
+
enableBoxShadow = _ref$enableBoxShadow === void 0 ? false : _ref$enableBoxShadow,
|
|
18549
|
+
_ref$enableSmallText = _ref.enableSmallText,
|
|
18550
|
+
enableSmallText = _ref$enableSmallText === void 0 ? false : _ref$enableSmallText,
|
|
18551
|
+
_ref$innerContentPadd = _ref.innerContentPadding,
|
|
18552
|
+
innerContentPadding = _ref$innerContentPadd === void 0 ? "1rem" : _ref$innerContentPadd,
|
|
18553
|
+
_ref$iconPadding = _ref.iconPadding,
|
|
18554
|
+
iconPadding = _ref$iconPadding === void 0 ? "0 0 0 1rem" : _ref$iconPadding,
|
|
18555
|
+
_ref$contentFullHeigh = _ref.contentFullHeight,
|
|
18556
|
+
contentFullHeight = _ref$contentFullHeigh === void 0 ? false : _ref$contentFullHeigh;
|
|
17743
18557
|
var Icon = AlertIcons[variant];
|
|
18558
|
+
var contentPadding = maxContentWidth ? "".concat(padding, " 1rem") : innerContentPadding;
|
|
17744
18559
|
var content = /*#__PURE__*/React__default.createElement(Sidebar, {
|
|
17745
18560
|
width: "24px",
|
|
17746
18561
|
childGap: "0rem"
|
|
17747
18562
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
17748
|
-
padding:
|
|
18563
|
+
padding: iconPadding,
|
|
17749
18564
|
minHeight: "100%"
|
|
17750
18565
|
}, /*#__PURE__*/React__default.createElement(Cover, {
|
|
17751
18566
|
minHeight: "100%",
|
|
@@ -17759,17 +18574,18 @@ var Alert = function Alert(_ref) {
|
|
|
17759
18574
|
}, /*#__PURE__*/React__default.createElement(Sidebar, {
|
|
17760
18575
|
sidebarOnRight: true,
|
|
17761
18576
|
width: "24px",
|
|
17762
|
-
childGap: "0rem"
|
|
18577
|
+
childGap: "0rem",
|
|
18578
|
+
fullHeight: contentFullHeight
|
|
17763
18579
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
17764
|
-
padding:
|
|
18580
|
+
padding: contentPadding
|
|
17765
18581
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
17766
18582
|
justify: "flex-start",
|
|
17767
18583
|
align: "center"
|
|
17768
18584
|
}, textOverride ? textOverride : /*#__PURE__*/React__default.createElement(Stack, {
|
|
17769
18585
|
fullHeight: true,
|
|
17770
|
-
childGap: "0
|
|
18586
|
+
childGap: "0"
|
|
17771
18587
|
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
17772
|
-
variant: "p",
|
|
18588
|
+
variant: enableSmallText ? "pS" : "p",
|
|
17773
18589
|
color: themeValues.text,
|
|
17774
18590
|
weight: "600"
|
|
17775
18591
|
}, heading), /*#__PURE__*/React__default.createElement(Text$1, {
|
|
@@ -17791,14 +18607,15 @@ var Alert = function Alert(_ref) {
|
|
|
17791
18607
|
background: themeValues.background,
|
|
17792
18608
|
borderRadius: "4px",
|
|
17793
18609
|
borderColor: themeValues.border,
|
|
17794
|
-
borderSize: "1px",
|
|
18610
|
+
borderSize: noBorder ? "0px" : "1px",
|
|
18611
|
+
boxShadow: enableBoxShadow ? (_generateShadows = generateShadows()) === null || _generateShadows === void 0 ? void 0 : (_generateShadows$inse = _generateShadows.inset) === null || _generateShadows$inse === void 0 ? void 0 : _generateShadows$inse.base : "",
|
|
17795
18612
|
extraStyles: extraStyles
|
|
17796
18613
|
}, maxContentWidth ? /*#__PURE__*/React__default.createElement(Center, {
|
|
17797
18614
|
maxWidth: maxContentWidth
|
|
17798
18615
|
}, content) : content);
|
|
17799
18616
|
};
|
|
17800
18617
|
|
|
17801
|
-
var Alert$1 = themeComponent
|
|
18618
|
+
var Alert$1 = themeComponent(Alert, "Alert", fallbackValues$5, "info");
|
|
17802
18619
|
|
|
17803
18620
|
var TitleText = styled__default.h1.withConfig({
|
|
17804
18621
|
displayName: "Titlestyled__TitleText",
|
|
@@ -17917,7 +18734,7 @@ var Title = function Title(_ref) {
|
|
|
17917
18734
|
}, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
17918
18735
|
};
|
|
17919
18736
|
|
|
17920
|
-
var Title$1 = themeComponent
|
|
18737
|
+
var Title$1 = themeComponent(Title, "Title", fallbacks, "large");
|
|
17921
18738
|
|
|
17922
18739
|
var color$3 = "#292A33";
|
|
17923
18740
|
var fallbackValues$7 = {
|
|
@@ -17939,7 +18756,7 @@ var AmountCallout = function AmountCallout(_ref) {
|
|
|
17939
18756
|
}, amount));
|
|
17940
18757
|
};
|
|
17941
18758
|
|
|
17942
|
-
var AmountCallout$1 = themeComponent
|
|
18759
|
+
var AmountCallout$1 = themeComponent(AmountCallout, "AmountCallout", fallbackValues$7);
|
|
17943
18760
|
|
|
17944
18761
|
function _extends$1() {
|
|
17945
18762
|
_extends$1 = Object.assign ? Object.assign.bind() : function (target) {
|
|
@@ -18785,7 +19602,7 @@ var BoxWithShadow = function BoxWithShadow(_ref) {
|
|
|
18785
19602
|
}, props), children);
|
|
18786
19603
|
};
|
|
18787
19604
|
|
|
18788
|
-
var BoxWithShadow$1 = themeComponent
|
|
19605
|
+
var BoxWithShadow$1 = themeComponent(BoxWithShadow, "BoxWithShadow", fallbackValues$8);
|
|
18789
19606
|
|
|
18790
19607
|
// import theme from "styled-theming";
|
|
18791
19608
|
/*
|
|
@@ -20747,7 +21564,7 @@ var Paragraph = function Paragraph(_ref) {
|
|
|
20747
21564
|
}, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
20748
21565
|
};
|
|
20749
21566
|
|
|
20750
|
-
var Paragraph$1 = themeComponent
|
|
21567
|
+
var Paragraph$1 = themeComponent(Paragraph, "Paragraph", fallbackValues$b, "p");
|
|
20751
21568
|
|
|
20752
21569
|
var backgroundColor$1 = WHITE;
|
|
20753
21570
|
var iconBackgroundColor = GRECIAN_GREY;
|
|
@@ -20894,7 +21711,7 @@ var CardRegistryCard = function CardRegistryCard(_ref2) {
|
|
|
20894
21711
|
}))))));
|
|
20895
21712
|
};
|
|
20896
21713
|
|
|
20897
|
-
var CardRegistryCard$1 = themeComponent
|
|
21714
|
+
var CardRegistryCard$1 = themeComponent(withWindowSize(CardRegistryCard), "CardRegistryCard", fallbackValues$c);
|
|
20898
21715
|
|
|
20899
21716
|
var cardRegistry = {
|
|
20900
21717
|
accounts: function accounts(props) {
|
|
@@ -20988,7 +21805,7 @@ var CheckboxContainer = styled__default.div.withConfig({
|
|
|
20988
21805
|
var CheckboxLabelContainer = styled__default.label.withConfig({
|
|
20989
21806
|
displayName: "Checkbox__CheckboxLabelContainer",
|
|
20990
21807
|
componentId: "sc-36kqbv-1"
|
|
20991
|
-
})(["display:flex;align-items:center;"]);
|
|
21808
|
+
})(["display:flex;align-items:center;column-gap:1rem;"]);
|
|
20992
21809
|
var CheckboxIcon = styled__default.svg.withConfig({
|
|
20993
21810
|
displayName: "Checkbox__CheckboxIcon",
|
|
20994
21811
|
componentId: "sc-36kqbv-2"
|
|
@@ -21007,7 +21824,7 @@ var HiddenCheckbox = styled__default.input.attrs({
|
|
|
21007
21824
|
var StyledCheckbox = styled__default.div.withConfig({
|
|
21008
21825
|
displayName: "Checkbox__StyledCheckbox",
|
|
21009
21826
|
componentId: "sc-36kqbv-4"
|
|
21010
|
-
})(["display:inline-block;
|
|
21827
|
+
})(["display:inline-block;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
|
|
21011
21828
|
var checked = _ref2.checked;
|
|
21012
21829
|
return checked ? "visible" : "hidden";
|
|
21013
21830
|
}, function (_ref3) {
|
|
@@ -21037,6 +21854,8 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21037
21854
|
hidden = _ref4$hidden === void 0 ? false : _ref4$hidden,
|
|
21038
21855
|
_ref4$error = _ref4.error,
|
|
21039
21856
|
error = _ref4$error === void 0 ? false : _ref4$error,
|
|
21857
|
+
_ref4$checkboxMargin = _ref4.checkboxMargin,
|
|
21858
|
+
checkboxMargin = _ref4$checkboxMargin === void 0 ? "0 16px 0 0" : _ref4$checkboxMargin,
|
|
21040
21859
|
extraStyles = _ref4.extraStyles,
|
|
21041
21860
|
textExtraStyles = _ref4.textExtraStyles;
|
|
21042
21861
|
|
|
@@ -21065,7 +21884,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21065
21884
|
},
|
|
21066
21885
|
hiddenStyles: hidden,
|
|
21067
21886
|
background: themeValues.backgroundColor,
|
|
21068
|
-
extraStyles: "outline: none; ".concat(extraStyles)
|
|
21887
|
+
extraStyles: "outline: none; ".concat(extraStyles, "; margin: ").concat(checkboxMargin, ";")
|
|
21069
21888
|
}, /*#__PURE__*/React__default.createElement(CheckboxLabelContainer, null, /*#__PURE__*/React__default.createElement(CheckboxContainer, {
|
|
21070
21889
|
"data-qa": "Checkbox"
|
|
21071
21890
|
}, /*#__PURE__*/React__default.createElement(HiddenCheckbox, {
|
|
@@ -21077,7 +21896,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21077
21896
|
onChange: onChange,
|
|
21078
21897
|
tabIndex: "-1",
|
|
21079
21898
|
"aria-invalid": error,
|
|
21080
|
-
"aria-describedby": "".concat(name, "-error-message")
|
|
21899
|
+
"aria-describedby": error ? "".concat(name, "-error-message") : ""
|
|
21081
21900
|
}), /*#__PURE__*/React__default.createElement(StyledCheckbox, {
|
|
21082
21901
|
error: error,
|
|
21083
21902
|
disabled: disabled,
|
|
@@ -21096,7 +21915,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21096
21915
|
checkColor: themeValues.checkColor
|
|
21097
21916
|
}, /*#__PURE__*/React__default.createElement("polyline", {
|
|
21098
21917
|
points: "20 6 9 17 4 12"
|
|
21099
|
-
})))), /*#__PURE__*/React__default.createElement(Text$1, {
|
|
21918
|
+
})))), title && /*#__PURE__*/React__default.createElement(Text$1, {
|
|
21100
21919
|
variant: "p",
|
|
21101
21920
|
weight: themeValues.textFontWeight,
|
|
21102
21921
|
color: themeValues.textColor,
|
|
@@ -21104,7 +21923,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21104
21923
|
}, title)));
|
|
21105
21924
|
};
|
|
21106
21925
|
|
|
21107
|
-
var Checkbox$1 = themeComponent
|
|
21926
|
+
var Checkbox$1 = themeComponent(Checkbox, "Checkbox", fallbackValues$d, "default");
|
|
21108
21927
|
|
|
21109
21928
|
var listBackgroundColor = {
|
|
21110
21929
|
"default": "".concat(ATHENS_GREY),
|
|
@@ -21301,7 +22120,7 @@ var CheckboxList = function CheckboxList(_ref2) {
|
|
|
21301
22120
|
})));
|
|
21302
22121
|
};
|
|
21303
22122
|
|
|
21304
|
-
var CheckboxList$1 = themeComponent
|
|
22123
|
+
var CheckboxList$1 = themeComponent(CheckboxList, "CheckboxList", fallbackValues$e, "default");
|
|
21305
22124
|
|
|
21306
22125
|
var DropdownIcon = function DropdownIcon() {
|
|
21307
22126
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -22997,7 +23816,7 @@ var Dropdown = function Dropdown(_ref8) {
|
|
|
22997
23816
|
}))) : /*#__PURE__*/React__default.createElement(React.Fragment, null)));
|
|
22998
23817
|
};
|
|
22999
23818
|
|
|
23000
|
-
var Dropdown$1 = themeComponent
|
|
23819
|
+
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$f);
|
|
23001
23820
|
|
|
23002
23821
|
var SelectContainer = styled__default.div.withConfig({
|
|
23003
23822
|
displayName: "FormSelectstyled__SelectContainer",
|
|
@@ -23171,7 +23990,7 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
23171
23990
|
})));
|
|
23172
23991
|
};
|
|
23173
23992
|
|
|
23174
|
-
var FormSelect$1 = themeComponent
|
|
23993
|
+
var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$g, "default");
|
|
23175
23994
|
|
|
23176
23995
|
var options = [{
|
|
23177
23996
|
text: "Afghanistan",
|
|
@@ -24065,7 +24884,7 @@ var Detail = function Detail(_ref) {
|
|
|
24065
24884
|
}, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
24066
24885
|
};
|
|
24067
24886
|
|
|
24068
|
-
var Detail$1 = themeComponent
|
|
24887
|
+
var Detail$1 = themeComponent(Detail, "Detail", fallbacks$1, "regular");
|
|
24069
24888
|
|
|
24070
24889
|
var backgroundColor$3 = WHITE;
|
|
24071
24890
|
var boxShadow = "0px 2px 14px 0px ".concat(ATHENS_GREY, ", 0px 3px 8px 0px ").concat(GHOST_GREY);
|
|
@@ -24090,7 +24909,7 @@ var DisplayBox = function DisplayBox(_ref) {
|
|
|
24090
24909
|
}, children));
|
|
24091
24910
|
};
|
|
24092
24911
|
|
|
24093
|
-
var DisplayBox$1 = themeComponent
|
|
24912
|
+
var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$i);
|
|
24094
24913
|
|
|
24095
24914
|
function _extends$2() {
|
|
24096
24915
|
_extends$2 = Object.assign || function (target) {
|
|
@@ -24639,7 +25458,7 @@ var Popover = function Popover(_ref) {
|
|
|
24639
25458
|
})));
|
|
24640
25459
|
};
|
|
24641
25460
|
|
|
24642
|
-
var Popover$1 = themeComponent
|
|
25461
|
+
var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$j);
|
|
24643
25462
|
|
|
24644
25463
|
var DisplayCard = function DisplayCard(_ref) {
|
|
24645
25464
|
var title = _ref.title,
|
|
@@ -24979,7 +25798,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
24979
25798
|
}, decorator)));
|
|
24980
25799
|
};
|
|
24981
25800
|
|
|
24982
|
-
var FormInput$1 = themeComponent
|
|
25801
|
+
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$k, "default");
|
|
24983
25802
|
|
|
24984
25803
|
var _excluded$q = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
|
|
24985
25804
|
|
|
@@ -25035,7 +25854,7 @@ var FormContainer = function FormContainer(_ref) {
|
|
|
25035
25854
|
}, rest), children);
|
|
25036
25855
|
};
|
|
25037
25856
|
|
|
25038
|
-
var FormContainer$1 = themeComponent
|
|
25857
|
+
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$k, "default");
|
|
25039
25858
|
|
|
25040
25859
|
var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
25041
25860
|
var themeValues = _ref.themeValues,
|
|
@@ -25059,7 +25878,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
|
25059
25878
|
})));
|
|
25060
25879
|
};
|
|
25061
25880
|
|
|
25062
|
-
var FormFooterPanel$1 = themeComponent
|
|
25881
|
+
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$k, "default");
|
|
25063
25882
|
|
|
25064
25883
|
var fontSize$7 = {
|
|
25065
25884
|
"default": "1rem",
|
|
@@ -25116,7 +25935,7 @@ var FormattedAddress = function FormattedAddress(_ref) {
|
|
|
25116
25935
|
}, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
|
|
25117
25936
|
};
|
|
25118
25937
|
|
|
25119
|
-
var FormattedAddress$1 = themeComponent
|
|
25938
|
+
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$l, "default");
|
|
25120
25939
|
|
|
25121
25940
|
var textColor$1 = "".concat(CHARADE_GREY);
|
|
25122
25941
|
var autopayTextColor = "".concat(REGENT_GREY);
|
|
@@ -25160,7 +25979,7 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
|
|
|
25160
25979
|
}, "Autopay Enabled")));
|
|
25161
25980
|
};
|
|
25162
25981
|
|
|
25163
|
-
var FormattedBankAccount$1 = themeComponent
|
|
25982
|
+
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$m);
|
|
25164
25983
|
|
|
25165
25984
|
var textColor$2 = "".concat(CHARADE_GREY);
|
|
25166
25985
|
var autopayTextColor$1 = "".concat(REGENT_GREY);
|
|
@@ -25201,7 +26020,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
25201
26020
|
}, "Autopay Enabled")));
|
|
25202
26021
|
};
|
|
25203
26022
|
|
|
25204
|
-
var FormattedCreditCard$1 = themeComponent
|
|
26023
|
+
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$n);
|
|
25205
26024
|
|
|
25206
26025
|
var Hamburger = styled__default.button.withConfig({
|
|
25207
26026
|
displayName: "HamburgerButton__Hamburger",
|
|
@@ -25325,7 +26144,7 @@ var Heading = function Heading(_ref) {
|
|
|
25325
26144
|
}, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
25326
26145
|
};
|
|
25327
26146
|
|
|
25328
|
-
var Heading$1 = themeComponent
|
|
26147
|
+
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$o, "h1");
|
|
25329
26148
|
|
|
25330
26149
|
var Image = styled__default.img.withConfig({
|
|
25331
26150
|
displayName: "ImageBoxstyled__Image",
|
|
@@ -25480,7 +26299,7 @@ var LabeledAmount = function LabeledAmount(_ref) {
|
|
|
25480
26299
|
}, amount));
|
|
25481
26300
|
};
|
|
25482
26301
|
|
|
25483
|
-
var LabeledAmount$1 = themeComponent
|
|
26302
|
+
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$p, "default");
|
|
25484
26303
|
|
|
25485
26304
|
var weightTitle = {
|
|
25486
26305
|
"default": "600",
|
|
@@ -25499,7 +26318,9 @@ var LineItem = function LineItem(_ref) {
|
|
|
25499
26318
|
var description = _ref.description,
|
|
25500
26319
|
subDescription = _ref.subDescription,
|
|
25501
26320
|
amount = _ref.amount,
|
|
25502
|
-
themeValues = _ref.themeValues
|
|
26321
|
+
themeValues = _ref.themeValues,
|
|
26322
|
+
_ref$displayQuantity = _ref.displayQuantity,
|
|
26323
|
+
displayQuantity = _ref$displayQuantity === void 0 ? null : _ref$displayQuantity;
|
|
25503
26324
|
return /*#__PURE__*/React__default.createElement(Cluster, {
|
|
25504
26325
|
nowrap: true,
|
|
25505
26326
|
justify: "space-between",
|
|
@@ -25512,14 +26333,17 @@ var LineItem = function LineItem(_ref) {
|
|
|
25512
26333
|
}, description), /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
25513
26334
|
variant: themeValues.paragraphVariant,
|
|
25514
26335
|
weight: "400"
|
|
25515
|
-
}, subDescription)), /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
26336
|
+
}, subDescription)), !!displayQuantity && /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
26337
|
+
variant: themeValues.paragraphVariant,
|
|
26338
|
+
weight: themeValues.weightTitle
|
|
26339
|
+
}, "x".concat(displayQuantity)), /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
25516
26340
|
variant: themeValues.paragraphVariant,
|
|
25517
26341
|
weight: "600",
|
|
25518
26342
|
extraStyles: "margin: 0; text-align: end; min-width: fit-content; padding-left: 32px;"
|
|
25519
26343
|
}, amount));
|
|
25520
26344
|
};
|
|
25521
26345
|
|
|
25522
|
-
var LineItem$1 = themeComponent
|
|
26346
|
+
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$q, "default");
|
|
25523
26347
|
|
|
25524
26348
|
var color$8 = "#15749D";
|
|
25525
26349
|
var fallbackValues$r = {
|
|
@@ -25529,7 +26353,7 @@ var fallbackValues$r = {
|
|
|
25529
26353
|
var SpinnerSvgAnimation = styled__default.svg.withConfig({
|
|
25530
26354
|
displayName: "Spinner__SpinnerSvgAnimation",
|
|
25531
26355
|
componentId: "sc-vhupl9-0"
|
|
25532
|
-
})(["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) {
|
|
26356
|
+
})(["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) {
|
|
25533
26357
|
var size = _ref.size;
|
|
25534
26358
|
return size;
|
|
25535
26359
|
}, function (_ref2) {
|
|
@@ -25538,19 +26362,36 @@ var SpinnerSvgAnimation = styled__default.svg.withConfig({
|
|
|
25538
26362
|
}, function (_ref3) {
|
|
25539
26363
|
var color = _ref3.color;
|
|
25540
26364
|
return color;
|
|
26365
|
+
}, function (_ref4) {
|
|
26366
|
+
var centerSpinner = _ref4.centerSpinner;
|
|
26367
|
+
return centerSpinner ? styled.css(["margin:0;"]) : "";
|
|
25541
26368
|
});
|
|
25542
26369
|
var SpinnerContainer$2 = styled__default.div.withConfig({
|
|
25543
26370
|
displayName: "Spinner__SpinnerContainer",
|
|
25544
26371
|
componentId: "sc-vhupl9-1"
|
|
25545
|
-
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;"])
|
|
26372
|
+
})(["width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;line-height:1;", ""], function (_ref5) {
|
|
26373
|
+
var centerSpinner = _ref5.centerSpinner,
|
|
26374
|
+
size = _ref5.size;
|
|
26375
|
+
return centerSpinner ? styled.css(["width:", "px;height:", "px;"], size, size) : "";
|
|
26376
|
+
});
|
|
26377
|
+
/*
|
|
26378
|
+
`centerSpinner` prop alters existing styling of spinner to allow it to properly center itself within
|
|
26379
|
+
containers. Default is false to preserve legacy behavior for past uses.
|
|
26380
|
+
*/
|
|
25546
26381
|
|
|
25547
|
-
var Spinner$1 = function Spinner(
|
|
25548
|
-
var
|
|
25549
|
-
size =
|
|
25550
|
-
|
|
25551
|
-
|
|
26382
|
+
var Spinner$1 = function Spinner(_ref6) {
|
|
26383
|
+
var _ref6$size = _ref6.size,
|
|
26384
|
+
size = _ref6$size === void 0 ? "24" : _ref6$size,
|
|
26385
|
+
_ref6$centerSpinner = _ref6.centerSpinner,
|
|
26386
|
+
centerSpinner = _ref6$centerSpinner === void 0 ? false : _ref6$centerSpinner,
|
|
26387
|
+
themeValues = _ref6.themeValues;
|
|
26388
|
+
return /*#__PURE__*/React__default.createElement(SpinnerContainer$2, {
|
|
26389
|
+
centerSpinner: centerSpinner,
|
|
26390
|
+
size: size
|
|
26391
|
+
}, /*#__PURE__*/React__default.createElement(SpinnerSvgAnimation, {
|
|
25552
26392
|
size: size,
|
|
25553
|
-
color: themeValues.color
|
|
26393
|
+
color: themeValues.color,
|
|
26394
|
+
centerSpinner: centerSpinner
|
|
25554
26395
|
}, /*#__PURE__*/React__default.createElement("circle", {
|
|
25555
26396
|
className: "path",
|
|
25556
26397
|
cx: "50",
|
|
@@ -25561,7 +26402,7 @@ var Spinner$1 = function Spinner(_ref4) {
|
|
|
25561
26402
|
})));
|
|
25562
26403
|
};
|
|
25563
26404
|
|
|
25564
|
-
var Spinner$2 = themeComponent
|
|
26405
|
+
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$r);
|
|
25565
26406
|
|
|
25566
26407
|
var Loading = function Loading() {
|
|
25567
26408
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
@@ -25936,7 +26777,7 @@ var Placeholder = function Placeholder(_ref2) {
|
|
|
25936
26777
|
}, text)))))))))));
|
|
25937
26778
|
};
|
|
25938
26779
|
|
|
25939
|
-
var Placeholder$1 = themeComponent
|
|
26780
|
+
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$s, "default");
|
|
25940
26781
|
|
|
25941
26782
|
var backgroundColor$4 = {
|
|
25942
26783
|
"default": "".concat(WHITE)
|
|
@@ -25969,15 +26810,7 @@ var ProcessingFee = function ProcessingFee(_ref) {
|
|
|
25969
26810
|
}));
|
|
25970
26811
|
};
|
|
25971
26812
|
|
|
25972
|
-
var ProcessingFee$1 = themeComponent
|
|
25973
|
-
|
|
25974
|
-
|
|
25975
|
-
|
|
25976
|
-
var index$5 = /*#__PURE__*/Object.freeze({
|
|
25977
|
-
__proto__: null,
|
|
25978
|
-
colors: colors,
|
|
25979
|
-
fontWeights: style_constants
|
|
25980
|
-
});
|
|
26813
|
+
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$t, "default");
|
|
25981
26814
|
|
|
25982
26815
|
var HiddenRadioInput = styled__default.input.withConfig({
|
|
25983
26816
|
displayName: "RadioButtonWithLabel__HiddenRadioInput",
|
|
@@ -26067,6 +26900,8 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
26067
26900
|
name = _ref2.name,
|
|
26068
26901
|
_ref2$disabled = _ref2.disabled,
|
|
26069
26902
|
disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
|
|
26903
|
+
_ref2$ariaDescribedBy = _ref2.ariaDescribedBy,
|
|
26904
|
+
ariaDescribedBy = _ref2$ariaDescribedBy === void 0 ? "" : _ref2$ariaDescribedBy,
|
|
26070
26905
|
themeValues = _ref2.themeValues;
|
|
26071
26906
|
var buttonBorder = {
|
|
26072
26907
|
onFocused: {
|
|
@@ -26118,6 +26953,7 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
26118
26953
|
"aria-label": name,
|
|
26119
26954
|
disabled: disabled,
|
|
26120
26955
|
onClick: toggleRadio,
|
|
26956
|
+
"aria-describedby": ariaDescribedBy,
|
|
26121
26957
|
tabIndex: "-1"
|
|
26122
26958
|
}), /*#__PURE__*/React__default.createElement(Motion, {
|
|
26123
26959
|
borderWidth: "1px",
|
|
@@ -26135,7 +26971,7 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
26135
26971
|
})));
|
|
26136
26972
|
};
|
|
26137
26973
|
|
|
26138
|
-
var RadioButton$2 = themeComponent
|
|
26974
|
+
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$u);
|
|
26139
26975
|
|
|
26140
26976
|
var border$2 = {
|
|
26141
26977
|
"default": "1px solid #caced8"
|
|
@@ -26217,7 +27053,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
26217
27053
|
}))));
|
|
26218
27054
|
};
|
|
26219
27055
|
|
|
26220
|
-
var SearchableSelect$1 = themeComponent
|
|
27056
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$v, "default");
|
|
26221
27057
|
|
|
26222
27058
|
var borderColor$2 = {
|
|
26223
27059
|
"default": "".concat(GREY_CHATEAU)
|
|
@@ -26242,7 +27078,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
26242
27078
|
});
|
|
26243
27079
|
};
|
|
26244
27080
|
|
|
26245
|
-
var SolidDivider$1 = themeComponent
|
|
27081
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$w, "default");
|
|
26246
27082
|
|
|
26247
27083
|
var placeHolderOptionUS = {
|
|
26248
27084
|
text: "Please select state",
|
|
@@ -37002,7 +37838,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
|
37002
37838
|
}, label))));
|
|
37003
37839
|
};
|
|
37004
37840
|
|
|
37005
|
-
var ToggleSwitch$1 = themeComponent
|
|
37841
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$x);
|
|
37006
37842
|
|
|
37007
37843
|
var background$1 = "".concat(ATHENS_GREY);
|
|
37008
37844
|
var white$1 = "".concat(WHITE);
|
|
@@ -37099,7 +37935,7 @@ var CardText = function CardText(_ref) {
|
|
|
37099
37935
|
color: themeValues.textColor
|
|
37100
37936
|
}, text))));
|
|
37101
37937
|
};
|
|
37102
|
-
var CardText$1 = themeComponent
|
|
37938
|
+
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$z);
|
|
37103
37939
|
|
|
37104
37940
|
var CardHeader = function CardHeader(_ref) {
|
|
37105
37941
|
var backgroundColor = _ref.backgroundColor,
|
|
@@ -37157,11 +37993,10 @@ var Card = function Card(_ref) {
|
|
|
37157
37993
|
minWidth: width,
|
|
37158
37994
|
extraStyles: extraStyles
|
|
37159
37995
|
}, /*#__PURE__*/React__default.createElement(Cover, {
|
|
37160
|
-
singleChild: true
|
|
37161
|
-
fillCenter: true
|
|
37996
|
+
singleChild: true
|
|
37162
37997
|
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
37163
37998
|
fullHeight: true,
|
|
37164
|
-
childGap: "
|
|
37999
|
+
childGap: "1.5rem",
|
|
37165
38000
|
bottomItem: numberOfChildren
|
|
37166
38001
|
}, headerText && /*#__PURE__*/React__default.createElement(CardHeader, {
|
|
37167
38002
|
headerText: headerText,
|
|
@@ -37171,7 +38006,10 @@ var Card = function Card(_ref) {
|
|
|
37171
38006
|
borderRadius: borderRadius,
|
|
37172
38007
|
padding: padding,
|
|
37173
38008
|
as: headerAs
|
|
37174
|
-
}),
|
|
38009
|
+
}), /*#__PURE__*/React__default.createElement(Stack, {
|
|
38010
|
+
direction: "row",
|
|
38011
|
+
childGap: "0"
|
|
38012
|
+
}, Image && !imgSrc && /*#__PURE__*/React__default.createElement(Box, {
|
|
37175
38013
|
minHeight: imgHeight,
|
|
37176
38014
|
padding: "0",
|
|
37177
38015
|
background: themeValues.imageBackgroundColor
|
|
@@ -37188,15 +38026,19 @@ var Card = function Card(_ref) {
|
|
|
37188
38026
|
backgroundColor: themeValues.imageBackgroundColor,
|
|
37189
38027
|
src: imgSrc,
|
|
37190
38028
|
alt: imgAltText
|
|
37191
|
-
}),
|
|
38029
|
+
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
38030
|
+
padding: "0",
|
|
38031
|
+
width: "100%",
|
|
38032
|
+
extraStyles: "flex-basis: 100%;"
|
|
38033
|
+
}, text && /*#__PURE__*/React__default.createElement(CardText$1, {
|
|
37192
38034
|
padding: padding,
|
|
37193
38035
|
titleText: titleText,
|
|
37194
38036
|
text: text,
|
|
37195
38037
|
titleVariant: titleVariant
|
|
37196
|
-
}), children)));
|
|
38038
|
+
}), children)))));
|
|
37197
38039
|
};
|
|
37198
38040
|
|
|
37199
|
-
var Card$1 = themeComponent
|
|
38041
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$y);
|
|
37200
38042
|
|
|
37201
38043
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
37202
38044
|
var activeColor$6 = MATISSE_BLUE;
|
|
@@ -37234,7 +38076,7 @@ var NavTab = function NavTab(_ref) {
|
|
|
37234
38076
|
}, label));
|
|
37235
38077
|
};
|
|
37236
38078
|
|
|
37237
|
-
var NavTab$1 = themeComponent
|
|
38079
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$A);
|
|
37238
38080
|
|
|
37239
38081
|
var NavTabs = function NavTabs(_ref) {
|
|
37240
38082
|
var tabsConfig = _ref.tabsConfig,
|
|
@@ -37258,6 +38100,14 @@ var NavTabs = function NavTabs(_ref) {
|
|
|
37258
38100
|
}, tabs)));
|
|
37259
38101
|
};
|
|
37260
38102
|
|
|
38103
|
+
|
|
38104
|
+
|
|
38105
|
+
var index$5 = /*#__PURE__*/Object.freeze({
|
|
38106
|
+
__proto__: null,
|
|
38107
|
+
colors: colors,
|
|
38108
|
+
fontWeights: style_constants
|
|
38109
|
+
});
|
|
38110
|
+
|
|
37261
38111
|
var shineFrames = styled.keyframes(["{0{background-position:0 0;}20%{background-position:100% 100%;}100%{background-position:100% 100%;}}"]);
|
|
37262
38112
|
var LoadingPill = styled__default.div.withConfig({
|
|
37263
38113
|
displayName: "LoadingPillstyled__LoadingPill",
|
|
@@ -37391,7 +38241,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
37391
38241
|
}, props), children);
|
|
37392
38242
|
};
|
|
37393
38243
|
|
|
37394
|
-
var TableRow$1 = themeComponent
|
|
38244
|
+
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$C);
|
|
37395
38245
|
|
|
37396
38246
|
var TableHead = function TableHead(_ref) {
|
|
37397
38247
|
var children = _ref.children,
|
|
@@ -37407,7 +38257,7 @@ var TableHead = function TableHead(_ref) {
|
|
|
37407
38257
|
}, children));
|
|
37408
38258
|
};
|
|
37409
38259
|
|
|
37410
|
-
var TableHead$1 = themeComponent
|
|
38260
|
+
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$B);
|
|
37411
38261
|
|
|
37412
38262
|
var TableHeading_styled = styled__default.th.withConfig({
|
|
37413
38263
|
displayName: "TableHeadingstyled",
|
|
@@ -39380,7 +40230,7 @@ var Banner = function Banner(_ref) {
|
|
|
39380
40230
|
}, /*#__PURE__*/React__default.createElement(Image, null))));
|
|
39381
40231
|
};
|
|
39382
40232
|
|
|
39383
|
-
var Banner$1 = themeComponent
|
|
40233
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$D);
|
|
39384
40234
|
|
|
39385
40235
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
39386
40236
|
var _newPasswordErrorMess;
|
|
@@ -39553,7 +40403,9 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
39553
40403
|
_ref$name = _ref.name,
|
|
39554
40404
|
name = _ref$name === void 0 ? "" : _ref$name,
|
|
39555
40405
|
_ref$index = _ref.index,
|
|
39556
|
-
index = _ref$index === void 0 ? 1 : _ref$index
|
|
40406
|
+
index = _ref$index === void 0 ? 1 : _ref$index,
|
|
40407
|
+
_ref$extraStyles = _ref.extraStyles,
|
|
40408
|
+
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
|
|
39557
40409
|
|
|
39558
40410
|
var handleKeyDown = function handleKeyDown(e) {
|
|
39559
40411
|
if (e.keyCode === 13) {
|
|
@@ -39613,7 +40465,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
39613
40465
|
hoverStyles: "cursor: pointer;",
|
|
39614
40466
|
tabIndex: "0",
|
|
39615
40467
|
onKeyDown: handleKeyDown,
|
|
39616
|
-
extraStyles: "z-index: 25;",
|
|
40468
|
+
extraStyles: "z-index: 25; ".concat(extraStyles),
|
|
39617
40469
|
role: "button",
|
|
39618
40470
|
"aria-expanded": isOpen.toString(),
|
|
39619
40471
|
"aria-controls": id,
|
|
@@ -39649,7 +40501,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
39649
40501
|
}, children))));
|
|
39650
40502
|
};
|
|
39651
40503
|
|
|
39652
|
-
var CollapsibleSection$1 = themeComponent
|
|
40504
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$E);
|
|
39653
40505
|
|
|
39654
40506
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
39655
40507
|
var themeValues = _ref.themeValues;
|
|
@@ -39683,7 +40535,7 @@ var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
|
39683
40535
|
})));
|
|
39684
40536
|
};
|
|
39685
40537
|
|
|
39686
|
-
var ClipboardIcon$1 = themeComponent
|
|
40538
|
+
var ClipboardIcon$1 = themeComponent(ClipboardIcon, "Icons", fallbackValues$3, "primary");
|
|
39687
40539
|
|
|
39688
40540
|
/*
|
|
39689
40541
|
This component will render `content` and a clipboard icon.
|
|
@@ -39940,13 +40792,16 @@ var EditableList = function EditableList(_ref) {
|
|
|
39940
40792
|
autoPayMethods = _ref.autoPayMethods,
|
|
39941
40793
|
_ref$as = _ref.as,
|
|
39942
40794
|
as = _ref$as === void 0 ? "p" : _ref$as,
|
|
40795
|
+
_ref$listPadding = _ref.listPadding,
|
|
40796
|
+
listPadding = _ref$listPadding === void 0 ? "0rem 0rem 1.5rem 0rem" : _ref$listPadding,
|
|
39943
40797
|
qaPrefix = _ref.qaPrefix,
|
|
39944
40798
|
ariaLabel = _ref.ariaLabel;
|
|
39945
40799
|
var addText = "Add a".concat(itemName[0].match(/[aieouAIEOU]/) ? "n" : "", " ").concat(itemName);
|
|
39946
40800
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
39947
|
-
padding:
|
|
40801
|
+
padding: listPadding,
|
|
39948
40802
|
as: "section",
|
|
39949
|
-
"aria-labelledby": "
|
|
40803
|
+
"aria-labelledby": typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : "",
|
|
40804
|
+
"aria-label": !title && typeof itemName === "string" ? "editable-list-".concat(createIdFromString(itemName)) : ""
|
|
39950
40805
|
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
39951
40806
|
childGap: "0rem"
|
|
39952
40807
|
}, title !== "" && /*#__PURE__*/React__default.createElement(Box, {
|
|
@@ -39955,7 +40810,8 @@ var EditableList = function EditableList(_ref) {
|
|
|
39955
40810
|
as: as,
|
|
39956
40811
|
weight: titleWeight,
|
|
39957
40812
|
color: CHARADE_GREY,
|
|
39958
|
-
extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;"
|
|
40813
|
+
extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;",
|
|
40814
|
+
id: typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : ""
|
|
39959
40815
|
}, title)), /*#__PURE__*/React__default.createElement(Box, {
|
|
39960
40816
|
padding: "0",
|
|
39961
40817
|
borderRadius: "4px",
|
|
@@ -40267,7 +41123,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
40267
41123
|
}));
|
|
40268
41124
|
};
|
|
40269
41125
|
|
|
40270
|
-
var FooterWithSubfooter$1 = themeComponent
|
|
41126
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$F);
|
|
40271
41127
|
|
|
40272
41128
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
40273
41129
|
var _EmailErrorMessages;
|
|
@@ -40379,7 +41235,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
40379
41235
|
}), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
|
|
40380
41236
|
};
|
|
40381
41237
|
|
|
40382
|
-
var HighlightTabRow$1 = themeComponent
|
|
41238
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$G);
|
|
40383
41239
|
|
|
40384
41240
|
var AccountBillIcon = function AccountBillIcon() {
|
|
40385
41241
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -45599,7 +46455,7 @@ var Module = function Module(_ref) {
|
|
|
45599
46455
|
}, children)));
|
|
45600
46456
|
};
|
|
45601
46457
|
|
|
45602
|
-
var Module$1 = /*#__PURE__*/React.memo(themeComponent
|
|
46458
|
+
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$H, "default"));
|
|
45603
46459
|
|
|
45604
46460
|
var backgroundColor$a = {
|
|
45605
46461
|
profile: "#3b414d",
|
|
@@ -45650,7 +46506,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
45650
46506
|
}, menuContent));
|
|
45651
46507
|
};
|
|
45652
46508
|
|
|
45653
|
-
var NavMenuDesktop$1 = themeComponent
|
|
46509
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$I, "profile");
|
|
45654
46510
|
|
|
45655
46511
|
var menu = posed.div({
|
|
45656
46512
|
invisible: {
|
|
@@ -45685,19 +46541,25 @@ var menu = posed.div({
|
|
|
45685
46541
|
var ImposterMenu = styled__default(menu).withConfig({
|
|
45686
46542
|
displayName: "NavMenuMobile__ImposterMenu",
|
|
45687
46543
|
componentId: "sc-1pf0qp7-0"
|
|
45688
|
-
})(["position:fixed;top:
|
|
46544
|
+
})(["position:fixed;top:", ";"], function (_ref) {
|
|
46545
|
+
var headerSize = _ref.headerSize;
|
|
46546
|
+
return headerSize;
|
|
46547
|
+
});
|
|
45689
46548
|
|
|
45690
|
-
var NavMenuMobile = function NavMenuMobile(
|
|
45691
|
-
var id =
|
|
45692
|
-
|
|
45693
|
-
menuContent =
|
|
45694
|
-
|
|
45695
|
-
visible =
|
|
45696
|
-
|
|
46549
|
+
var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
46550
|
+
var id = _ref2.id,
|
|
46551
|
+
_ref2$menuContent = _ref2.menuContent,
|
|
46552
|
+
menuContent = _ref2$menuContent === void 0 ? [] : _ref2$menuContent,
|
|
46553
|
+
_ref2$visible = _ref2.visible,
|
|
46554
|
+
visible = _ref2$visible === void 0 ? false : _ref2$visible,
|
|
46555
|
+
_ref2$headerSize = _ref2.headerSize,
|
|
46556
|
+
headerSize = _ref2$headerSize === void 0 ? "72px" : _ref2$headerSize,
|
|
46557
|
+
themeValues = _ref2.themeValues;
|
|
45697
46558
|
return /*#__PURE__*/React__default.createElement(ImposterMenu, {
|
|
45698
46559
|
id: id,
|
|
45699
46560
|
initialPose: "invisible",
|
|
45700
|
-
pose: visible ? "visible" : "invisible"
|
|
46561
|
+
pose: visible ? "visible" : "invisible",
|
|
46562
|
+
headerSize: headerSize
|
|
45701
46563
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
45702
46564
|
width: "100vw",
|
|
45703
46565
|
padding: "1rem 0.5rem",
|
|
@@ -45706,7 +46568,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
|
|
|
45706
46568
|
}, menuContent));
|
|
45707
46569
|
};
|
|
45708
46570
|
|
|
45709
|
-
var NavMenuMobile$1 = themeComponent
|
|
46571
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$I, "profile");
|
|
45710
46572
|
|
|
45711
46573
|
var ACH_METHOD = "BANK_ACCOUNT";
|
|
45712
46574
|
var CC_METHOD = "CREDIT_CARD";
|
|
@@ -45800,7 +46662,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
45800
46662
|
var allowsCard = allowedPaymentInstruments.includes(CC_METHOD);
|
|
45801
46663
|
var allowsACH = allowedPaymentInstruments.includes(ACH_METHOD);
|
|
45802
46664
|
var methodRequired = allowsCard && !allowsACH ? "debit or credit card payment method" : !allowsCard && allowsACH ? "checking account payment method" : "payment method";
|
|
45803
|
-
return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address
|
|
46665
|
+
return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address. Do you want to save these now?");
|
|
45804
46666
|
};
|
|
45805
46667
|
|
|
45806
46668
|
var plan = isPaymentPlan ? "your payment plan" : "autopay";
|
|
@@ -45811,7 +46673,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
45811
46673
|
var modalExtraProps = {
|
|
45812
46674
|
modalHeaderText: autoPayActive ? titleCaseString(deactivateText) : titleCaseString(activateText),
|
|
45813
46675
|
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),
|
|
45814
|
-
continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add
|
|
46676
|
+
continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add",
|
|
45815
46677
|
useDangerButton: autoPayActive,
|
|
45816
46678
|
continueAction: autoPayActive ? function () {
|
|
45817
46679
|
deactivatePaymentSchedule(isPaymentPlan ? paymentPlanSchedule : autoPaySchedule, isPaymentPlan);
|
|
@@ -45893,7 +46755,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
45893
46755
|
}, modalExtraProps), renderAutoPayControl());
|
|
45894
46756
|
};
|
|
45895
46757
|
|
|
45896
|
-
var AutopayModalModule = themeComponent
|
|
46758
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$J);
|
|
45897
46759
|
|
|
45898
46760
|
var AmountModule = function AmountModule(_ref) {
|
|
45899
46761
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -46119,7 +46981,7 @@ var RemoveAccountModalModule = function RemoveAccountModalModule(_ref) {
|
|
|
46119
46981
|
},
|
|
46120
46982
|
modalOpen: modalIsOpen,
|
|
46121
46983
|
modalHeaderText: "Remove ".concat(accountType),
|
|
46122
|
-
modalBodyText: "Are you sure you want to remove the ".concat(identifier, " ").concat(accounts, "
|
|
46984
|
+
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."),
|
|
46123
46985
|
continueButtonText: "Remove",
|
|
46124
46986
|
continueAction: function continueAction() {
|
|
46125
46987
|
removeAccount();
|
|
@@ -46459,6 +47321,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46459
47321
|
maximum = _ref.maximum,
|
|
46460
47322
|
_ref$minimum = _ref.minimum,
|
|
46461
47323
|
minimum = _ref$minimum === void 0 ? 1 : _ref$minimum,
|
|
47324
|
+
blockPartialPaymentOverpay = _ref.blockPartialPaymentOverpay,
|
|
46462
47325
|
clearOnDismount = _ref.clearOnDismount,
|
|
46463
47326
|
fields = _ref.fields,
|
|
46464
47327
|
actions = _ref.actions,
|
|
@@ -46474,6 +47337,18 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46474
47337
|
}
|
|
46475
47338
|
|
|
46476
47339
|
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);
|
|
47340
|
+
|
|
47341
|
+
var getPartialAmountFormErrors = function getPartialAmountFormErrors(itemAmount) {
|
|
47342
|
+
var errorMessages = amountErrors;
|
|
47343
|
+
|
|
47344
|
+
if (blockPartialPaymentOverpay) {
|
|
47345
|
+
var maxAmountError = "There is a maximum payment of ".concat(displayCurrency(itemAmount));
|
|
47346
|
+
return _objectSpread2(_objectSpread2({}, errorMessages), {}, _defineProperty({}, numberLessThanOrEqualTo.error, maxAmountError));
|
|
47347
|
+
}
|
|
47348
|
+
|
|
47349
|
+
return errorMessages;
|
|
47350
|
+
};
|
|
47351
|
+
|
|
46477
47352
|
var lineItemsNew = Array.isArray(lineItems) ? lineItems : [];
|
|
46478
47353
|
return /*#__PURE__*/React__default.createElement(FormContainer$1, {
|
|
46479
47354
|
variant: variant,
|
|
@@ -46492,7 +47367,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46492
47367
|
field: fields[li.id],
|
|
46493
47368
|
fieldActions: actions.fields[li.id],
|
|
46494
47369
|
showErrors: showErrors,
|
|
46495
|
-
errorMessages:
|
|
47370
|
+
errorMessages: getPartialAmountFormErrors(li.amount),
|
|
46496
47371
|
style: {
|
|
46497
47372
|
textAlign: "right"
|
|
46498
47373
|
},
|
|
@@ -46511,6 +47386,7 @@ var PartialAmountForm = function PartialAmountForm(_ref) {
|
|
|
46511
47386
|
|
|
46512
47387
|
var createPartialAmountFormState = function createPartialAmountFormState(lineItems, maximum) {
|
|
46513
47388
|
var minimum = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;
|
|
47389
|
+
var blockPartialPaymentOverpay = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
|
|
46514
47390
|
var formConfig = lineItems.reduce(function (acc, item) {
|
|
46515
47391
|
var validators = [required(), validateSum(numberGreaterThanOrEqualTo(minimum), lineItems.filter(function (lineItem) {
|
|
46516
47392
|
return lineItem != item;
|
|
@@ -46526,6 +47402,10 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
|
|
|
46526
47402
|
}, [])));
|
|
46527
47403
|
}
|
|
46528
47404
|
|
|
47405
|
+
if (blockPartialPaymentOverpay) {
|
|
47406
|
+
validators.push(numberLessThanOrEqualTo(item.amount));
|
|
47407
|
+
}
|
|
47408
|
+
|
|
46529
47409
|
return _objectSpread2(_objectSpread2({}, acc), {}, _defineProperty({}, item.id, {
|
|
46530
47410
|
validators: validators,
|
|
46531
47411
|
constraints: [onlyNaturals()],
|
|
@@ -46758,10 +47638,12 @@ var Pagination = function Pagination(_ref3) {
|
|
|
46758
47638
|
}));
|
|
46759
47639
|
};
|
|
46760
47640
|
|
|
46761
|
-
var Pagination$1 = themeComponent
|
|
47641
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$K);
|
|
46762
47642
|
|
|
46763
47643
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
46764
|
-
var _ref$
|
|
47644
|
+
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
47645
|
+
isForwardButtonDisabled = _ref$isForwardButtonD === void 0 ? false : _ref$isForwardButtonD,
|
|
47646
|
+
_ref$forwardButtonTex = _ref.forwardButtonText,
|
|
46765
47647
|
forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
|
|
46766
47648
|
forwardButtonAction = _ref.forwardButtonAction,
|
|
46767
47649
|
forwardButtonLoading = _ref.forwardButtonLoading,
|
|
@@ -46778,7 +47660,9 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46778
47660
|
redirectText = _ref$redirectText === void 0 ? "Return" : _ref$redirectText,
|
|
46779
47661
|
buttonFlexOverride = _ref.buttonFlexOverride,
|
|
46780
47662
|
_ref$hideForwardButto = _ref.hideForwardButton,
|
|
46781
|
-
hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto
|
|
47663
|
+
hideForwardButton = _ref$hideForwardButto === void 0 ? false : _ref$hideForwardButto,
|
|
47664
|
+
_ref$hideBackButton = _ref.hideBackButton,
|
|
47665
|
+
hideBackButton = _ref$hideBackButton === void 0 ? false : _ref$hideBackButton;
|
|
46782
47666
|
|
|
46783
47667
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
46784
47668
|
isMobile = _useContext.isMobile;
|
|
@@ -46801,14 +47685,16 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46801
47685
|
text: redirectText,
|
|
46802
47686
|
variant: forwardButtonVariant,
|
|
46803
47687
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46804
|
-
dataQa: redirectText
|
|
47688
|
+
dataQa: redirectText,
|
|
47689
|
+
disabled: isForwardButtonDisabled
|
|
46805
47690
|
}) : forwardButtonAction && /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
46806
47691
|
text: forwardButtonText,
|
|
46807
47692
|
variant: forwardButtonVariant,
|
|
46808
47693
|
action: forwardButtonAction,
|
|
46809
47694
|
isLoading: forwardButtonLoading,
|
|
46810
47695
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46811
|
-
dataQa: forwardButtonText
|
|
47696
|
+
dataQa: forwardButtonText,
|
|
47697
|
+
disabled: isForwardButtonDisabled
|
|
46812
47698
|
});
|
|
46813
47699
|
return /*#__PURE__*/React__default.createElement(React.Fragment, null, /*#__PURE__*/React__default.createElement(Box, {
|
|
46814
47700
|
padding: "1.25rem 0"
|
|
@@ -46817,7 +47703,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46817
47703
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
46818
47704
|
justify: buttonFlexOverride ? buttonFlexOverride : !!backButton ? "space-between" : "flex-end",
|
|
46819
47705
|
align: "center"
|
|
46820
|
-
}, backButton, !hideForwardButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, forwardButton))));
|
|
47706
|
+
}, !hideBackButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, backButton), !hideForwardButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, forwardButton))));
|
|
46821
47707
|
};
|
|
46822
47708
|
|
|
46823
47709
|
var backgroundColor$b = {
|
|
@@ -46885,7 +47771,7 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
|
46885
47771
|
},
|
|
46886
47772
|
text: "Void",
|
|
46887
47773
|
padding: "0",
|
|
46888
|
-
extraStyles: "\n min-width: 65px
|
|
47774
|
+
extraStyles: "\n min-width: 65px;\n margin: 0px;\n min-height: 0px;\n ",
|
|
46889
47775
|
textExtraStyles: "font-weight: ".concat(FONT_WEIGHT_REGULAR, "; font-size: 14px;")
|
|
46890
47776
|
})), /*#__PURE__*/React__default.createElement(Box, {
|
|
46891
47777
|
padding: "0",
|
|
@@ -46913,12 +47799,69 @@ var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
|
46913
47799
|
}));
|
|
46914
47800
|
};
|
|
46915
47801
|
|
|
47802
|
+
var LoadingDetails = function LoadingDetails() {
|
|
47803
|
+
return /*#__PURE__*/React__default.createElement(Box, {
|
|
47804
|
+
padding: "0",
|
|
47805
|
+
background: GRECIAN_GREY,
|
|
47806
|
+
borderRadius: "4px",
|
|
47807
|
+
minHeight: "196px"
|
|
47808
|
+
}, /*#__PURE__*/React__default.createElement(Cover, {
|
|
47809
|
+
minHeight: "196px",
|
|
47810
|
+
singleChild: true,
|
|
47811
|
+
fillCenter: true
|
|
47812
|
+
}, /*#__PURE__*/React__default.createElement(Center, {
|
|
47813
|
+
intrinsic: true
|
|
47814
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
47815
|
+
padding: "0",
|
|
47816
|
+
extraStyles: "flex-grow: 1; display: flex; justify-content: center; align-items: center;"
|
|
47817
|
+
}, /*#__PURE__*/React__default.createElement(Spinner$2, {
|
|
47818
|
+
size: "100",
|
|
47819
|
+
centerSpinner: true
|
|
47820
|
+
})))));
|
|
47821
|
+
};
|
|
47822
|
+
|
|
47823
|
+
var ErrorDetails = function ErrorDetails() {
|
|
47824
|
+
return /*#__PURE__*/React__default.createElement(Box, {
|
|
47825
|
+
padding: "0"
|
|
47826
|
+
}, /*#__PURE__*/React__default.createElement(Alert$1, {
|
|
47827
|
+
variant: "error",
|
|
47828
|
+
heading: "Error Loading Payment",
|
|
47829
|
+
text: "Please go back and try again.",
|
|
47830
|
+
showQuitLink: false,
|
|
47831
|
+
noBorder: true,
|
|
47832
|
+
enableBoxShadow: true,
|
|
47833
|
+
enableSmallText: true,
|
|
47834
|
+
innerContentPadding: "0 0 0 0.75rem",
|
|
47835
|
+
iconPadding: "0 0 0 0",
|
|
47836
|
+
height: "67px",
|
|
47837
|
+
minHeight: "67px",
|
|
47838
|
+
padding: "0.75rem"
|
|
47839
|
+
}));
|
|
47840
|
+
};
|
|
47841
|
+
|
|
47842
|
+
var getLoadingOrErrorContent = function getLoadingOrErrorContent() {
|
|
47843
|
+
var isLoading = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
|
47844
|
+
var isError = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
|
47845
|
+
|
|
47846
|
+
if (isLoading) {
|
|
47847
|
+
return /*#__PURE__*/React__default.createElement(LoadingDetails, null);
|
|
47848
|
+
} else if (isError) {
|
|
47849
|
+
return /*#__PURE__*/React__default.createElement(ErrorDetails, null);
|
|
47850
|
+
}
|
|
47851
|
+
|
|
47852
|
+
return /*#__PURE__*/React__default.createElement(React.Fragment, null);
|
|
47853
|
+
};
|
|
47854
|
+
|
|
46916
47855
|
var Collapsible = function Collapsible(_ref2) {
|
|
46917
47856
|
var content = _ref2.content,
|
|
46918
47857
|
title = _ref2.title,
|
|
46919
47858
|
supportsTouch = _ref2.supportsTouch,
|
|
46920
47859
|
isOpen = _ref2.isOpen,
|
|
46921
|
-
setIsOpen = _ref2.setIsOpen
|
|
47860
|
+
setIsOpen = _ref2.setIsOpen,
|
|
47861
|
+
_ref2$isLoading = _ref2.isLoading,
|
|
47862
|
+
isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
|
|
47863
|
+
_ref2$isError = _ref2.isError,
|
|
47864
|
+
isError = _ref2$isError === void 0 ? false : _ref2$isError;
|
|
46922
47865
|
return /*#__PURE__*/React__default.createElement(CollapsibleSection$1, {
|
|
46923
47866
|
isMobile: true,
|
|
46924
47867
|
supportsTouch: supportsTouch,
|
|
@@ -46941,13 +47884,17 @@ var Collapsible = function Collapsible(_ref2) {
|
|
|
46941
47884
|
},
|
|
46942
47885
|
positionTransition: true,
|
|
46943
47886
|
initial: "closed"
|
|
46944
|
-
}, content));
|
|
47887
|
+
}, isLoading || isError ? getLoadingOrErrorContent(isLoading, isError) : content));
|
|
46945
47888
|
};
|
|
46946
47889
|
|
|
46947
47890
|
var NonCollapsible = function NonCollapsible(_ref3) {
|
|
46948
47891
|
var title = _ref3.title,
|
|
46949
|
-
content = _ref3.content
|
|
46950
|
-
|
|
47892
|
+
content = _ref3.content,
|
|
47893
|
+
_ref3$isLoading = _ref3.isLoading,
|
|
47894
|
+
isLoading = _ref3$isLoading === void 0 ? false : _ref3$isLoading,
|
|
47895
|
+
_ref3$isError = _ref3.isError,
|
|
47896
|
+
isError = _ref3$isError === void 0 ? false : _ref3$isError;
|
|
47897
|
+
return /*#__PURE__*/React__default.createElement(Stack, null, title, isLoading || isError ? getLoadingOrErrorContent(isLoading, isError) : content);
|
|
46951
47898
|
};
|
|
46952
47899
|
|
|
46953
47900
|
var PaymentDetails = function PaymentDetails(_ref4) {
|
|
@@ -46977,7 +47924,11 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
46977
47924
|
_ref4$voidableAmountP = _ref4.voidableAmountPaid,
|
|
46978
47925
|
voidableAmountPaid = _ref4$voidableAmountP === void 0 ? 0 : _ref4$voidableAmountP,
|
|
46979
47926
|
_ref4$remainingBalanc = _ref4.remainingBalance,
|
|
46980
|
-
remainingBalance = _ref4$remainingBalanc === void 0 ? false : _ref4$remainingBalanc
|
|
47927
|
+
remainingBalance = _ref4$remainingBalanc === void 0 ? false : _ref4$remainingBalanc,
|
|
47928
|
+
_ref4$isLoading = _ref4.isLoading,
|
|
47929
|
+
isLoading = _ref4$isLoading === void 0 ? false : _ref4$isLoading,
|
|
47930
|
+
_ref4$isError = _ref4.isError,
|
|
47931
|
+
isError = _ref4$isError === void 0 ? false : _ref4$isError;
|
|
46981
47932
|
|
|
46982
47933
|
var _useState = React.useState(initiallyOpen),
|
|
46983
47934
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -47080,14 +48031,18 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
47080
48031
|
isOpen: isOpen,
|
|
47081
48032
|
setIsOpen: setIsOpen,
|
|
47082
48033
|
isMobile: isMobile,
|
|
47083
|
-
supportsTouch: supportsTouch
|
|
48034
|
+
supportsTouch: supportsTouch,
|
|
48035
|
+
isLoading: isLoading,
|
|
48036
|
+
isError: isError
|
|
47084
48037
|
}) : /*#__PURE__*/React__default.createElement(NonCollapsible, {
|
|
47085
48038
|
title: title,
|
|
47086
|
-
content: content
|
|
48039
|
+
content: content,
|
|
48040
|
+
isLoading: isLoading,
|
|
48041
|
+
isError: isError
|
|
47087
48042
|
});
|
|
47088
48043
|
};
|
|
47089
48044
|
|
|
47090
|
-
var PaymentDetails$1 = themeComponent
|
|
48045
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$L, "default");
|
|
47091
48046
|
|
|
47092
48047
|
var linkColor$5 = {
|
|
47093
48048
|
"default": "#3176AA"
|
|
@@ -47163,7 +48118,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
47163
48118
|
}, link));
|
|
47164
48119
|
};
|
|
47165
48120
|
|
|
47166
|
-
var AccountAndRoutingModal$1 = themeComponent
|
|
48121
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$M, "default");
|
|
47167
48122
|
|
|
47168
48123
|
var backgroundColor$c = {
|
|
47169
48124
|
"default": "#ffffff",
|
|
@@ -47230,7 +48185,8 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47230
48185
|
background: themeValues.backgroundColor,
|
|
47231
48186
|
border: "1px solid ".concat(themeValues.border),
|
|
47232
48187
|
borderRadius: "3px",
|
|
47233
|
-
extraStyles: "overflow: scroll; max-height: 20rem;"
|
|
48188
|
+
extraStyles: "overflow: scroll; max-height: 20rem;",
|
|
48189
|
+
id: "terms-body-text"
|
|
47234
48190
|
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
47235
48191
|
variant: "p",
|
|
47236
48192
|
extraStyles: "& a { text-decoration: underline; }"
|
|
@@ -47258,7 +48214,175 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47258
48214
|
}, link));
|
|
47259
48215
|
};
|
|
47260
48216
|
|
|
47261
|
-
var TermsAndConditionsModal$1 = themeComponent
|
|
48217
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$N, "default");
|
|
48218
|
+
|
|
48219
|
+
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48220
|
+
var onCheck = _ref.onCheck,
|
|
48221
|
+
isChecked = _ref.isChecked,
|
|
48222
|
+
html = _ref.html,
|
|
48223
|
+
terms = _ref.terms,
|
|
48224
|
+
_ref$error = _ref.error,
|
|
48225
|
+
error = _ref$error === void 0 ? false : _ref$error,
|
|
48226
|
+
linkVariant = _ref.linkVariant;
|
|
48227
|
+
|
|
48228
|
+
var _useState = React.useState(false),
|
|
48229
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
48230
|
+
showTerms = _useState2[0],
|
|
48231
|
+
toggleShowTerms = _useState2[1];
|
|
48232
|
+
|
|
48233
|
+
return /*#__PURE__*/React__default.createElement(DisplayBox$1, null, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
48234
|
+
name: "terms",
|
|
48235
|
+
title: "Terms and Conditions",
|
|
48236
|
+
error: error,
|
|
48237
|
+
checked: isChecked,
|
|
48238
|
+
onChange: onCheck
|
|
48239
|
+
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
48240
|
+
padding: "0 0 0 58px"
|
|
48241
|
+
}, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Box, {
|
|
48242
|
+
padding: "0"
|
|
48243
|
+
}, html), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
|
|
48244
|
+
link: "Learn More",
|
|
48245
|
+
terms: terms,
|
|
48246
|
+
isOpen: showTerms,
|
|
48247
|
+
toggleOpen: toggleShowTerms,
|
|
48248
|
+
linkVariant: linkVariant
|
|
48249
|
+
})))));
|
|
48250
|
+
};
|
|
48251
|
+
|
|
48252
|
+
/*
|
|
48253
|
+
Hook that takes an ID selector for an element on the screen
|
|
48254
|
+
And optionally values for top position, left position, smooth behavior
|
|
48255
|
+
Finds element on screen and scrolls it to the provided coordinates
|
|
48256
|
+
|
|
48257
|
+
(string, number, number, string, number) => undefined;
|
|
48258
|
+
*/
|
|
48259
|
+
var useScrollTo = function useScrollTo(id) {
|
|
48260
|
+
var top = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
|
|
48261
|
+
var left = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
|
|
48262
|
+
var behavior = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : "auto";
|
|
48263
|
+
var delay = arguments.length > 4 ? arguments[4] : undefined;
|
|
48264
|
+
var scrollItem;
|
|
48265
|
+
|
|
48266
|
+
if (delay) {
|
|
48267
|
+
setTimeout(function () {
|
|
48268
|
+
var _scrollItem;
|
|
48269
|
+
|
|
48270
|
+
scrollItem = document.getElementById(id);
|
|
48271
|
+
(_scrollItem = scrollItem) === null || _scrollItem === void 0 ? void 0 : _scrollItem.scrollTo({
|
|
48272
|
+
top: top,
|
|
48273
|
+
left: left,
|
|
48274
|
+
behavior: behavior
|
|
48275
|
+
});
|
|
48276
|
+
}, delay);
|
|
48277
|
+
} else {
|
|
48278
|
+
var _scrollItem2;
|
|
48279
|
+
|
|
48280
|
+
scrollItem = document.getElementById(id);
|
|
48281
|
+
(_scrollItem2 = scrollItem) === null || _scrollItem2 === void 0 ? void 0 : _scrollItem2.scrollTo({
|
|
48282
|
+
top: top,
|
|
48283
|
+
left: left,
|
|
48284
|
+
behavior: behavior
|
|
48285
|
+
});
|
|
48286
|
+
}
|
|
48287
|
+
};
|
|
48288
|
+
|
|
48289
|
+
var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
48290
|
+
var _ref$showCheckbox = _ref.showCheckbox,
|
|
48291
|
+
showCheckbox = _ref$showCheckbox === void 0 ? true : _ref$showCheckbox,
|
|
48292
|
+
onCheck = _ref.onCheck,
|
|
48293
|
+
isChecked = _ref.isChecked,
|
|
48294
|
+
hasError = _ref.hasError,
|
|
48295
|
+
_ref$errorMessage = _ref.errorMessage,
|
|
48296
|
+
errorMessage = _ref$errorMessage === void 0 ? "Please accept Terms and Conditions" : _ref$errorMessage,
|
|
48297
|
+
_ref$description = _ref.description,
|
|
48298
|
+
description = _ref$description === void 0 ? "" : _ref$description,
|
|
48299
|
+
_ref$linkText = _ref.linkText,
|
|
48300
|
+
linkText = _ref$linkText === void 0 ? "Terms and Conditions" : _ref$linkText,
|
|
48301
|
+
html = _ref.html,
|
|
48302
|
+
terms = _ref.terms,
|
|
48303
|
+
_ref$id = _ref.id,
|
|
48304
|
+
id = _ref$id === void 0 ? "terms-and-conditions" : _ref$id,
|
|
48305
|
+
_ref$displayInline = _ref.displayInline,
|
|
48306
|
+
displayInline = _ref$displayInline === void 0 ? true : _ref$displayInline,
|
|
48307
|
+
_ref$modalVariant = _ref.modalVariant,
|
|
48308
|
+
modalVariant = _ref$modalVariant === void 0 ? "default" : _ref$modalVariant,
|
|
48309
|
+
_ref$containerBackgro = _ref.containerBackground,
|
|
48310
|
+
containerBackground = _ref$containerBackgro === void 0 ? ATHENS_GREY : _ref$containerBackgro,
|
|
48311
|
+
_ref$checkboxMargin = _ref.checkboxMargin,
|
|
48312
|
+
checkboxMargin = _ref$checkboxMargin === void 0 ? "4px 8px 4px 4px" : _ref$checkboxMargin,
|
|
48313
|
+
_ref$modalTitle = _ref.modalTitle,
|
|
48314
|
+
modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle;
|
|
48315
|
+
|
|
48316
|
+
var _useState = React.useState(false),
|
|
48317
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
48318
|
+
showTerms = _useState2[0],
|
|
48319
|
+
toggleShowTerms = _useState2[1];
|
|
48320
|
+
|
|
48321
|
+
var standardBoxShadow = generateShadows().standard.base;
|
|
48322
|
+
|
|
48323
|
+
var toggleTerms = function toggleTerms(termsOpen) {
|
|
48324
|
+
toggleShowTerms(termsOpen);
|
|
48325
|
+
|
|
48326
|
+
if (termsOpen) {
|
|
48327
|
+
useScrollTo("terms-body-text", 0, 0, "smooth", 100);
|
|
48328
|
+
}
|
|
48329
|
+
};
|
|
48330
|
+
|
|
48331
|
+
return /*#__PURE__*/React__default.createElement(Box, {
|
|
48332
|
+
padding: displayInline ? "0" : "1.5rem",
|
|
48333
|
+
minWidth: displayInline ? "0" : "100%",
|
|
48334
|
+
background: displayInline ? "transparent" : containerBackground,
|
|
48335
|
+
boxShadow: displayInline ? "none" : standardBoxShadow,
|
|
48336
|
+
borderRadius: displayInline ? "0" : "4px"
|
|
48337
|
+
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
48338
|
+
childGap: "0"
|
|
48339
|
+
}, html && /*#__PURE__*/React__default.createElement(Box, {
|
|
48340
|
+
padding: "0"
|
|
48341
|
+
}, html), /*#__PURE__*/React__default.createElement(Cluster, {
|
|
48342
|
+
justify: "flex-start",
|
|
48343
|
+
align: "center",
|
|
48344
|
+
nowrap: true
|
|
48345
|
+
}, showCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
48346
|
+
name: id,
|
|
48347
|
+
error: hasError,
|
|
48348
|
+
checked: isChecked,
|
|
48349
|
+
onChange: onCheck,
|
|
48350
|
+
checkboxMargin: checkboxMargin,
|
|
48351
|
+
extraStyles: "align-self: flex-start;"
|
|
48352
|
+
}), /*#__PURE__*/React__default.createElement(Stack, {
|
|
48353
|
+
childGap: "0.25rem",
|
|
48354
|
+
fullHeight: true
|
|
48355
|
+
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
48356
|
+
justify: "flex-start",
|
|
48357
|
+
align: "center",
|
|
48358
|
+
nowrap: true,
|
|
48359
|
+
extraStyles: "padding-right: 2px; > div > * { margin: 4px 2px; };"
|
|
48360
|
+
}, description && /*#__PURE__*/React__default.createElement(Text$1, {
|
|
48361
|
+
color: CHARADE_GREY
|
|
48362
|
+
}, description), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
|
|
48363
|
+
link: linkText,
|
|
48364
|
+
terms: terms,
|
|
48365
|
+
isOpen: showTerms,
|
|
48366
|
+
toggleOpen: toggleTerms,
|
|
48367
|
+
linkVariant: modalVariant,
|
|
48368
|
+
title: modalTitle
|
|
48369
|
+
})), showCheckbox && hasError && /*#__PURE__*/React__default.createElement(Text$1, {
|
|
48370
|
+
variant: "pXS",
|
|
48371
|
+
color: ERROR_COLOR,
|
|
48372
|
+
id: "".concat(id, "-error-message")
|
|
48373
|
+
}, errorMessage)))));
|
|
48374
|
+
};
|
|
48375
|
+
|
|
48376
|
+
var _excluded$y = ["version"];
|
|
48377
|
+
|
|
48378
|
+
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
48379
|
+
var _ref$version = _ref.version,
|
|
48380
|
+
version = _ref$version === void 0 ? "v1" : _ref$version,
|
|
48381
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
48382
|
+
|
|
48383
|
+
var TermsAndConditionsControl = version === "v1" ? TermsAndConditionsControlV1 : TermsAndConditionsControlV2;
|
|
48384
|
+
return /*#__PURE__*/React__default.createElement(TermsAndConditionsControl, rest);
|
|
48385
|
+
};
|
|
47262
48386
|
|
|
47263
48387
|
var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
47264
48388
|
var _routingNumberErrors, _accountNumberErrors;
|
|
@@ -47279,9 +48403,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47279
48403
|
showWalletCheckbox = _ref.showWalletCheckbox,
|
|
47280
48404
|
saveToWallet = _ref.saveToWallet,
|
|
47281
48405
|
walletCheckboxMarked = _ref.walletCheckboxMarked,
|
|
47282
|
-
termsContent = _ref.termsContent
|
|
47283
|
-
_ref$termsTitle = _ref.termsTitle,
|
|
47284
|
-
termsTitle = _ref$termsTitle === void 0 ? "Terms & Conditions" : _ref$termsTitle;
|
|
48406
|
+
termsContent = _ref.termsContent;
|
|
47285
48407
|
|
|
47286
48408
|
if (clearOnDismount) {
|
|
47287
48409
|
React.useEffect(function () {
|
|
@@ -47301,13 +48423,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47301
48423
|
showAccount = _useState4[0],
|
|
47302
48424
|
toggleShowAccount = _useState4[1];
|
|
47303
48425
|
|
|
47304
|
-
var _useState5 = React.useState(false),
|
|
47305
|
-
_useState6 = _slicedToArray(_useState5, 2),
|
|
47306
|
-
termsModalOpen = _useState6[0],
|
|
47307
|
-
setTermsModalOpen = _useState6[1];
|
|
47308
|
-
|
|
47309
48426
|
var showTerms = !!termsContent;
|
|
47310
|
-
var showTermsLinkVariant = showWalletCheckbox ? "p" : "pS";
|
|
47311
48427
|
|
|
47312
48428
|
var nameErrors = _defineProperty({}, required.error, "Name is required");
|
|
47313
48429
|
|
|
@@ -47418,7 +48534,8 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47418
48534
|
checked: defaultMethod.value,
|
|
47419
48535
|
hidden: hideDefaultPayment
|
|
47420
48536
|
}), (showWalletCheckbox || showTerms) && /*#__PURE__*/React__default.createElement(Cluster, {
|
|
47421
|
-
childGap: "4px"
|
|
48537
|
+
childGap: "4px",
|
|
48538
|
+
align: "center"
|
|
47422
48539
|
}, showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
47423
48540
|
name: "bank checkbox",
|
|
47424
48541
|
title: "Save checking account to wallet.",
|
|
@@ -47426,18 +48543,12 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
47426
48543
|
onChange: saveToWallet
|
|
47427
48544
|
}), showTerms && /*#__PURE__*/React__default.createElement(Cover, {
|
|
47428
48545
|
singleChild: true
|
|
47429
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
47430
|
-
|
|
47431
|
-
|
|
47432
|
-
|
|
47433
|
-
|
|
47434
|
-
|
|
47435
|
-
linkVariant: showTermsLinkVariant,
|
|
47436
|
-
terms: termsContent,
|
|
47437
|
-
title: termsTitle,
|
|
47438
|
-
isOpen: termsModalOpen,
|
|
47439
|
-
toggleOpen: setTermsModalOpen
|
|
47440
|
-
}))))));
|
|
48546
|
+
}, /*#__PURE__*/React__default.createElement(TermsAndConditions, {
|
|
48547
|
+
version: "v2",
|
|
48548
|
+
showCheckbox: false,
|
|
48549
|
+
description: "View",
|
|
48550
|
+
terms: termsContent
|
|
48551
|
+
})))));
|
|
47441
48552
|
};
|
|
47442
48553
|
|
|
47443
48554
|
var formConfig$6 = {
|
|
@@ -47492,20 +48603,12 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
47492
48603
|
saveToWallet = _ref.saveToWallet,
|
|
47493
48604
|
walletCheckboxMarked = _ref.walletCheckboxMarked,
|
|
47494
48605
|
deniedCards = _ref.deniedCards,
|
|
47495
|
-
termsContent = _ref.termsContent
|
|
47496
|
-
_ref$termsTitle = _ref.termsTitle,
|
|
47497
|
-
termsTitle = _ref$termsTitle === void 0 ? "Terms & Conditions" : _ref$termsTitle;
|
|
48606
|
+
termsContent = _ref.termsContent;
|
|
47498
48607
|
|
|
47499
48608
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
47500
48609
|
isMobile = _useContext.isMobile;
|
|
47501
48610
|
|
|
47502
|
-
var _useState = React.useState(false),
|
|
47503
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
47504
|
-
termsModalOpen = _useState2[0],
|
|
47505
|
-
setTermsModalOpen = _useState2[1];
|
|
47506
|
-
|
|
47507
48611
|
var showTerms = !!termsContent;
|
|
47508
|
-
var showTermsLinkVariant = showWalletCheckbox ? "p" : "pS";
|
|
47509
48612
|
React.useEffect(function () {
|
|
47510
48613
|
if (deniedCards) {
|
|
47511
48614
|
deniedCards.map(function (card) {
|
|
@@ -47615,7 +48718,8 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
47615
48718
|
},
|
|
47616
48719
|
autocomplete: "billing postal-code"
|
|
47617
48720
|
})), (showWalletCheckbox || showTerms) && /*#__PURE__*/React__default.createElement(Cluster, {
|
|
47618
|
-
childGap: "4px"
|
|
48721
|
+
childGap: "4px",
|
|
48722
|
+
align: "center"
|
|
47619
48723
|
}, showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
47620
48724
|
name: "credit card checkbox",
|
|
47621
48725
|
title: "Save credit card to wallet.",
|
|
@@ -47623,18 +48727,12 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
47623
48727
|
onChange: saveToWallet
|
|
47624
48728
|
}), showTerms && /*#__PURE__*/React__default.createElement(Cover, {
|
|
47625
48729
|
singleChild: true
|
|
47626
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
47627
|
-
|
|
47628
|
-
|
|
47629
|
-
|
|
47630
|
-
|
|
47631
|
-
|
|
47632
|
-
linkVariant: showTermsLinkVariant,
|
|
47633
|
-
terms: termsContent,
|
|
47634
|
-
title: termsTitle,
|
|
47635
|
-
isOpen: termsModalOpen,
|
|
47636
|
-
toggleOpen: setTermsModalOpen
|
|
47637
|
-
}))))));
|
|
48730
|
+
}, /*#__PURE__*/React__default.createElement(TermsAndConditions, {
|
|
48731
|
+
version: "v2",
|
|
48732
|
+
showCheckbox: false,
|
|
48733
|
+
description: "View",
|
|
48734
|
+
terms: termsContent
|
|
48735
|
+
})))));
|
|
47638
48736
|
};
|
|
47639
48737
|
|
|
47640
48738
|
var PaymentFormCard$1 = withWindowSize(PaymentFormCard);
|
|
@@ -47960,7 +49058,8 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
47960
49058
|
_ref$initiallyOpen = _ref.initiallyOpen,
|
|
47961
49059
|
initiallyOpen = _ref$initiallyOpen === void 0 ? true : _ref$initiallyOpen,
|
|
47962
49060
|
_ref$openHeight = _ref.openHeight,
|
|
47963
|
-
openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight
|
|
49061
|
+
openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight,
|
|
49062
|
+
ariaDescribedBy = _ref.ariaDescribedBy;
|
|
47964
49063
|
|
|
47965
49064
|
var handleKeyDown = function handleKeyDown(id, e) {
|
|
47966
49065
|
if ((e === null || e === void 0 ? void 0 : e.keyCode) === 13) {
|
|
@@ -48037,7 +49136,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48037
49136
|
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
48038
49137
|
childGap: "0"
|
|
48039
49138
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
48040
|
-
padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem
|
|
49139
|
+
padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem",
|
|
48041
49140
|
background: section.disabled ? themeValues.headingDisabledColor : themeValues.headingBackgroundColor,
|
|
48042
49141
|
onClick: isMobile && supportsTouch || section.disabled ? noop : function () {
|
|
48043
49142
|
return toggleOpenSection(section.id);
|
|
@@ -48054,7 +49153,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48054
49153
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
48055
49154
|
justify: "space-between",
|
|
48056
49155
|
align: "center",
|
|
48057
|
-
childGap: "
|
|
49156
|
+
childGap: "1px",
|
|
48058
49157
|
nowrap: true
|
|
48059
49158
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
48060
49159
|
justify: "flex-start",
|
|
@@ -48063,7 +49162,8 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48063
49162
|
}, !section.hideRadioButton && /*#__PURE__*/React__default.createElement(Box, {
|
|
48064
49163
|
padding: "0"
|
|
48065
49164
|
}, /*#__PURE__*/React__default.createElement(RadioButton$2, {
|
|
48066
|
-
name: section.id,
|
|
49165
|
+
name: typeof section.title === "string" ? createIdFromString(section.title) : section.id,
|
|
49166
|
+
ariaDescribedBy: ariaDescribedBy,
|
|
48067
49167
|
radioOn: openSection === section.id,
|
|
48068
49168
|
radioFocused: focused === section.id,
|
|
48069
49169
|
toggleRadio: section.disabled ? noop : function () {
|
|
@@ -48103,7 +49203,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
48103
49203
|
})));
|
|
48104
49204
|
};
|
|
48105
49205
|
|
|
48106
|
-
var RadioSection$1 = themeComponent
|
|
49206
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$O);
|
|
48107
49207
|
|
|
48108
49208
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
48109
49209
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -48479,7 +49579,7 @@ var Tabs = function Tabs(_ref) {
|
|
|
48479
49579
|
}))));
|
|
48480
49580
|
};
|
|
48481
49581
|
|
|
48482
|
-
var Tabs$1 = themeComponent
|
|
49582
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$P);
|
|
48483
49583
|
|
|
48484
49584
|
var activeTabBackground$1 = "#FFFFFF";
|
|
48485
49585
|
var activeTabAccent$1 = "#15749D";
|
|
@@ -48540,40 +49640,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
48540
49640
|
})));
|
|
48541
49641
|
};
|
|
48542
49642
|
|
|
48543
|
-
var TabSidebar$1 = themeComponent
|
|
48544
|
-
|
|
48545
|
-
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
48546
|
-
var onCheck = _ref.onCheck,
|
|
48547
|
-
isChecked = _ref.isChecked,
|
|
48548
|
-
html = _ref.html,
|
|
48549
|
-
terms = _ref.terms,
|
|
48550
|
-
_ref$error = _ref.error,
|
|
48551
|
-
error = _ref$error === void 0 ? false : _ref$error,
|
|
48552
|
-
linkVariant = _ref.linkVariant;
|
|
48553
|
-
|
|
48554
|
-
var _useState = React.useState(false),
|
|
48555
|
-
_useState2 = _slicedToArray(_useState, 2),
|
|
48556
|
-
showTerms = _useState2[0],
|
|
48557
|
-
toggleShowTerms = _useState2[1];
|
|
48558
|
-
|
|
48559
|
-
return /*#__PURE__*/React__default.createElement(DisplayBox$1, null, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
48560
|
-
name: "terms",
|
|
48561
|
-
title: "Terms and Conditions",
|
|
48562
|
-
error: error,
|
|
48563
|
-
checked: isChecked,
|
|
48564
|
-
onChange: onCheck
|
|
48565
|
-
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
48566
|
-
padding: "0 0 0 58px"
|
|
48567
|
-
}, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Box, {
|
|
48568
|
-
padding: "0"
|
|
48569
|
-
}, html), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
|
|
48570
|
-
link: "Learn More",
|
|
48571
|
-
terms: terms,
|
|
48572
|
-
isOpen: showTerms,
|
|
48573
|
-
toggleOpen: toggleShowTerms,
|
|
48574
|
-
linkVariant: linkVariant
|
|
48575
|
-
})))));
|
|
48576
|
-
};
|
|
49643
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Q);
|
|
48577
49644
|
|
|
48578
49645
|
var Timeout = function Timeout(_ref) {
|
|
48579
49646
|
var onLogout = _ref.onLogout;
|
|
@@ -48664,7 +49731,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
48664
49731
|
})))));
|
|
48665
49732
|
};
|
|
48666
49733
|
|
|
48667
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent
|
|
49734
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$R));
|
|
48668
49735
|
|
|
48669
49736
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
48670
49737
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -48736,13 +49803,15 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
48736
49803
|
_ref$centeredMobileCo = _ref.centeredMobileContent,
|
|
48737
49804
|
centeredMobileContent = _ref$centeredMobileCo === void 0 ? false : _ref$centeredMobileCo,
|
|
48738
49805
|
content = _ref.content,
|
|
49806
|
+
_ref$backgroundColor = _ref.backgroundColor,
|
|
49807
|
+
backgroundColor = _ref$backgroundColor === void 0 ? COOL_GREY_05 : _ref$backgroundColor,
|
|
48739
49808
|
themeValues = _ref.themeValues;
|
|
48740
49809
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
48741
49810
|
var isMobile = themeContext.isMobile;
|
|
48742
49811
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
48743
49812
|
padding: "0",
|
|
48744
49813
|
minWidth: "100%",
|
|
48745
|
-
background:
|
|
49814
|
+
background: backgroundColor,
|
|
48746
49815
|
extraStyles: "flex-grow: 1;"
|
|
48747
49816
|
}, /*#__PURE__*/React__default.createElement(Cover, {
|
|
48748
49817
|
centerOverride: isMobile && !centeredMobileContent
|
|
@@ -48766,7 +49835,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
48766
49835
|
})));
|
|
48767
49836
|
};
|
|
48768
49837
|
|
|
48769
|
-
var CenterSingle$1 = withWindowSize(themeComponent
|
|
49838
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$S));
|
|
48770
49839
|
|
|
48771
49840
|
var CenterStack = function CenterStack(_ref) {
|
|
48772
49841
|
var header = _ref.header,
|
|
@@ -48808,7 +49877,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
48808
49877
|
})));
|
|
48809
49878
|
};
|
|
48810
49879
|
|
|
48811
|
-
var CenterStack$1 = withWindowSize(themeComponent
|
|
49880
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$S));
|
|
48812
49881
|
|
|
48813
49882
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
48814
49883
|
var header = _ref.header,
|
|
@@ -48853,7 +49922,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
48853
49922
|
})));
|
|
48854
49923
|
};
|
|
48855
49924
|
|
|
48856
|
-
var DefaultPageTemplate = withWindowSize(themeComponent
|
|
49925
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$S));
|
|
48857
49926
|
|
|
48858
49927
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
48859
49928
|
var header = _ref.header,
|
|
@@ -48907,7 +49976,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
48907
49976
|
})));
|
|
48908
49977
|
};
|
|
48909
49978
|
|
|
48910
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent
|
|
49979
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$S));
|
|
48911
49980
|
|
|
48912
49981
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
48913
49982
|
var header = _ref.header,
|
|
@@ -48978,7 +50047,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
48978
50047
|
})));
|
|
48979
50048
|
};
|
|
48980
50049
|
|
|
48981
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent
|
|
50050
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$S));
|
|
48982
50051
|
|
|
48983
50052
|
exports.AccountNumberImage = AccountNumberImage;
|
|
48984
50053
|
exports.AccountsAddIcon = AccountsAddIcon$1;
|
|
@@ -49073,6 +50142,7 @@ exports.ImageBox = ImageBox;
|
|
|
49073
50142
|
exports.Imposter = Imposter;
|
|
49074
50143
|
exports.InternalLink = InternalLink;
|
|
49075
50144
|
exports.Jumbo = Jumbo$1;
|
|
50145
|
+
exports.KioskImage = KioskImage;
|
|
49076
50146
|
exports.LabeledAmount = LabeledAmount$1;
|
|
49077
50147
|
exports.LineItem = LineItem$1;
|
|
49078
50148
|
exports.Loading = Loading;
|
|
@@ -49103,11 +50173,13 @@ exports.PaymentMethodAddIcon = PaymentMethodAddIcon$1;
|
|
|
49103
50173
|
exports.PaymentMethodIcon = PaymentMethodIcon$1;
|
|
49104
50174
|
exports.PaymentSearchIcon = PaymentSearchIcon;
|
|
49105
50175
|
exports.PaymentsIconSmall = PaymentsIconSmall$1;
|
|
50176
|
+
exports.PencilIcon = PencilIcon$1;
|
|
49106
50177
|
exports.PendingIcon = PendingIcon;
|
|
49107
50178
|
exports.PeriscopeDashboardIframe = PeriscopeDashboardIframe;
|
|
49108
50179
|
exports.PeriscopeFailedIcon = PeriscopeFailedIcon;
|
|
49109
50180
|
exports.PhoneForm = PhoneForm;
|
|
49110
50181
|
exports.Placeholder = Placeholder$1;
|
|
50182
|
+
exports.PointOfSaleImage = PointOfSaleImage;
|
|
49111
50183
|
exports.Popover = Popover$1;
|
|
49112
50184
|
exports.ProcessingFee = ProcessingFee$1;
|
|
49113
50185
|
exports.ProfileIcon = ProfileIcon$1;
|