@thecb/components 10.9.0 → 10.10.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +354 -276
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +26 -1
- package/dist/index.esm.js +351 -276
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/icons/CaretArrowDown.d.ts +9 -0
- package/src/components/atoms/icons/CaretArrowDown.js +22 -0
- package/src/components/atoms/icons/CaretArrowUp.d.ts +9 -0
- package/src/components/atoms/icons/CaretArrowUp.js +22 -0
- package/src/components/atoms/icons/CarrotIcon.js +2 -0
- package/src/components/atoms/icons/icons.stories.js +4 -0
- package/src/components/atoms/icons/index.d.ts +2 -0
- package/src/components/atoms/icons/index.js +4 -0
- package/src/components/atoms/index.d.ts +1 -0
- package/src/components/atoms/index.js +1 -0
- package/src/components/atoms/search/Search.js +1 -1
- package/src/components/atoms/sortable-table-heading/SortableTableHeading.js +49 -0
- package/src/components/atoms/sortable-table-heading/SortableTableHeading.stories.js +18 -0
- package/src/components/atoms/sortable-table-heading/SortableTableHeading.theme.js +9 -0
- package/src/components/atoms/sortable-table-heading/index.d.ts +13 -0
- package/src/components/atoms/sortable-table-heading/index.js +3 -0
- package/src/components/atoms/table/Table.stories.js +81 -0
package/dist/index.esm.js
CHANGED
|
@@ -15217,6 +15217,42 @@ var StatusUnknownIcon = function StatusUnknownIcon() {
|
|
|
15217
15217
|
}))));
|
|
15218
15218
|
};
|
|
15219
15219
|
|
|
15220
|
+
var CaretArrowDown = function CaretArrowDown(_ref) {
|
|
15221
|
+
var color = _ref.color;
|
|
15222
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
15223
|
+
width: "10",
|
|
15224
|
+
height: "7",
|
|
15225
|
+
viewBox: "0 0 10 7",
|
|
15226
|
+
fill: "none",
|
|
15227
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
15228
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15229
|
+
fillRule: "evenodd",
|
|
15230
|
+
clipRule: "evenodd",
|
|
15231
|
+
d: "M9.01563 1.11612C8.82037 0.920857 8.50379 0.920857 8.30853 1.11612L4.94977 4.47488L1.59101 1.11612C1.39575 0.920857 1.07917 0.920856 0.883904 1.11612L0.353574 1.64645C0.158312 1.84171 0.158312 2.15829 0.353574 2.35356L4.06588 6.06587L4.59621 6.5962C4.79148 6.79146 5.10806 6.79146 5.30332 6.5962L5.83365 6.06587L9.54596 2.35356C9.74122 2.15829 9.74122 1.84171 9.54596 1.64645L9.01563 1.11612Z",
|
|
15232
|
+
fill: color
|
|
15233
|
+
}));
|
|
15234
|
+
};
|
|
15235
|
+
var CaretArrowDown$1 = themeComponent(CaretArrowDown, "Icons", fallbackValues$2);
|
|
15236
|
+
|
|
15237
|
+
var CaretArrowUp = function CaretArrowUp(_ref) {
|
|
15238
|
+
var color = _ref.color;
|
|
15239
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
15240
|
+
width: "10",
|
|
15241
|
+
height: "7",
|
|
15242
|
+
viewBox: "0 0 10 7",
|
|
15243
|
+
fill: "none",
|
|
15244
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
15245
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
15246
|
+
fillRule: "evenodd",
|
|
15247
|
+
clipRule: "evenodd",
|
|
15248
|
+
d: "M0.883904 5.88388C1.07917 6.07914 1.39575 6.07914 1.59101 5.88388L4.94977 2.52512L8.30853 5.88388C8.50379 6.07914 8.82037 6.07914 9.01563 5.88388L9.54596 5.35355C9.74122 5.15829 9.74122 4.84171 9.54596 4.64644L5.83365 0.934134L5.30332 0.403804C5.10806 0.208542 4.79148 0.208542 4.59621 0.403804L4.06588 0.934134L0.353574 4.64644C0.158312 4.84171 0.158312 5.15829 0.353574 5.35355L0.883904 5.88388Z",
|
|
15249
|
+
fill: color
|
|
15250
|
+
}));
|
|
15251
|
+
};
|
|
15252
|
+
var CaretArrowUp$1 = themeComponent(CaretArrowUp, "Icons", fallbackValues$2);
|
|
15253
|
+
|
|
15254
|
+
// This differs from CaretArrowUp and CaretArrowDown in that it completes a triangular shape. It is used in the header on Navigate.
|
|
15255
|
+
|
|
15220
15256
|
var CarrotIcon = function CarrotIcon(_ref) {
|
|
15221
15257
|
var themeValues = _ref.themeValues;
|
|
15222
15258
|
return /*#__PURE__*/React.createElement("svg", {
|
|
@@ -23456,6 +23492,177 @@ var CheckboxList = function CheckboxList(_ref2) {
|
|
|
23456
23492
|
};
|
|
23457
23493
|
var CheckboxList$1 = themeComponent(CheckboxList, "CheckboxList", fallbackValues$e, "default");
|
|
23458
23494
|
|
|
23495
|
+
var inactiveColor = MANATEE_GREY;
|
|
23496
|
+
var activeColor$4 = CHARADE_GREY;
|
|
23497
|
+
var fallbackValues$f = {
|
|
23498
|
+
inactiveColor: inactiveColor,
|
|
23499
|
+
activeColor: activeColor$4
|
|
23500
|
+
};
|
|
23501
|
+
|
|
23502
|
+
var Table_styled = styled.table.withConfig({
|
|
23503
|
+
displayName: "Tablestyled",
|
|
23504
|
+
componentId: "sc-mveye7-0"
|
|
23505
|
+
})(["width:100%;table-layout:auto;border-collapse:collapse;", ""], function (_ref) {
|
|
23506
|
+
var extraStyles = _ref.extraStyles;
|
|
23507
|
+
return extraStyles;
|
|
23508
|
+
});
|
|
23509
|
+
|
|
23510
|
+
var TableBody_styled = styled.tbody.withConfig({
|
|
23511
|
+
displayName: "TableBodystyled",
|
|
23512
|
+
componentId: "sc-wk5osr-0"
|
|
23513
|
+
})(["", ""], function (_ref) {
|
|
23514
|
+
var extraStyles = _ref.extraStyles;
|
|
23515
|
+
return extraStyles;
|
|
23516
|
+
});
|
|
23517
|
+
|
|
23518
|
+
var TableCell_styled = styled.td.withConfig({
|
|
23519
|
+
displayName: "TableCellstyled",
|
|
23520
|
+
componentId: "sc-iqndn8-0"
|
|
23521
|
+
})(["padding:", ";font-size:", " white-space:nowrap;max-width:", ";overflow:hidden;text-overflow:ellipsis;&:last-child{text-align:right;}", ";"], function (_ref) {
|
|
23522
|
+
var _ref$padding = _ref.padding,
|
|
23523
|
+
padding = _ref$padding === void 0 ? "24px" : _ref$padding;
|
|
23524
|
+
return padding;
|
|
23525
|
+
}, function (_ref2) {
|
|
23526
|
+
var _ref2$fontSize = _ref2.fontSize,
|
|
23527
|
+
fontSize = _ref2$fontSize === void 0 ? "0.875rem" : _ref2$fontSize;
|
|
23528
|
+
return fontSize;
|
|
23529
|
+
}, function (_ref3) {
|
|
23530
|
+
var _ref3$maxWidth = _ref3.maxWidth,
|
|
23531
|
+
maxWidth = _ref3$maxWidth === void 0 ? "250px" : _ref3$maxWidth;
|
|
23532
|
+
return maxWidth;
|
|
23533
|
+
}, function (_ref4) {
|
|
23534
|
+
var extraStyles = _ref4.extraStyles;
|
|
23535
|
+
return extraStyles;
|
|
23536
|
+
});
|
|
23537
|
+
|
|
23538
|
+
var backgroundColor$3 = ALABASTER_WHITE;
|
|
23539
|
+
var borderColor = GREY_CHATEAU;
|
|
23540
|
+
var fallbackValues$g = {
|
|
23541
|
+
backgroundColor: backgroundColor$3,
|
|
23542
|
+
borderColor: borderColor
|
|
23543
|
+
};
|
|
23544
|
+
|
|
23545
|
+
var StyledTableHead = styled.thead.withConfig({
|
|
23546
|
+
displayName: "TableHeadstyled",
|
|
23547
|
+
componentId: "sc-j8e6c1-0"
|
|
23548
|
+
})(["background-color:", ";border-bottom:", ";font-size:", ";"], function (_ref) {
|
|
23549
|
+
var backgroundColor = _ref.backgroundColor;
|
|
23550
|
+
return backgroundColor;
|
|
23551
|
+
}, function (_ref2) {
|
|
23552
|
+
var borderColor = _ref2.borderColor;
|
|
23553
|
+
return "1px solid ".concat(borderColor);
|
|
23554
|
+
}, function (_ref3) {
|
|
23555
|
+
var _ref3$fontSize = _ref3.fontSize,
|
|
23556
|
+
fontSize = _ref3$fontSize === void 0 ? "0.875rem" : _ref3$fontSize;
|
|
23557
|
+
return fontSize;
|
|
23558
|
+
});
|
|
23559
|
+
|
|
23560
|
+
var borderColor$1 = GREY_CHATEAU;
|
|
23561
|
+
var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
|
|
23562
|
+
var fallbackValues$h = {
|
|
23563
|
+
borderColor: borderColor$1,
|
|
23564
|
+
hoverBackgroundColor: hoverBackgroundColor$1
|
|
23565
|
+
};
|
|
23566
|
+
|
|
23567
|
+
var TableRowWrapper = styled.tr.withConfig({
|
|
23568
|
+
displayName: "TableRowstyled",
|
|
23569
|
+
componentId: "sc-1tc0sav-0"
|
|
23570
|
+
})(["&:not(:last-child){border-bottom:", ";}", " ", ""], function (_ref) {
|
|
23571
|
+
var borderColor = _ref.borderColor;
|
|
23572
|
+
return "1px solid ".concat(borderColor);
|
|
23573
|
+
}, function (_ref2) {
|
|
23574
|
+
var hoverCursor = _ref2.hoverCursor,
|
|
23575
|
+
hoverEffect = _ref2.hoverEffect,
|
|
23576
|
+
hoverBackgroundColor = _ref2.hoverBackgroundColor;
|
|
23577
|
+
return hoverEffect && "&:hover {\n ".concat(hoverCursor && "cursor: pointer", ";\n background-color: ").concat(hoverBackgroundColor, ";\n }");
|
|
23578
|
+
}, function (_ref3) {
|
|
23579
|
+
var extraStyles = _ref3.extraStyles;
|
|
23580
|
+
return extraStyles;
|
|
23581
|
+
});
|
|
23582
|
+
|
|
23583
|
+
var _excluded$r = ["children", "extraStyles", "hoverCursor", "hoverEffect", "onClick", "themeValues"];
|
|
23584
|
+
var TableRow = function TableRow(_ref) {
|
|
23585
|
+
var children = _ref.children,
|
|
23586
|
+
extraStyles = _ref.extraStyles,
|
|
23587
|
+
_ref$hoverCursor = _ref.hoverCursor,
|
|
23588
|
+
_ref$hoverEffect = _ref.hoverEffect,
|
|
23589
|
+
hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
|
|
23590
|
+
onClick = _ref.onClick,
|
|
23591
|
+
themeValues = _ref.themeValues,
|
|
23592
|
+
props = _objectWithoutProperties(_ref, _excluded$r);
|
|
23593
|
+
return /*#__PURE__*/React.createElement(TableRowWrapper, _extends({
|
|
23594
|
+
onClick: onClick,
|
|
23595
|
+
hoverEffect: hoverEffect,
|
|
23596
|
+
extraStyles: extraStyles,
|
|
23597
|
+
borderColor: themeValues.borderColor,
|
|
23598
|
+
hoverBackgroundColor: themeValues.hoverBackgroundColor
|
|
23599
|
+
}, props), children);
|
|
23600
|
+
};
|
|
23601
|
+
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$h);
|
|
23602
|
+
|
|
23603
|
+
var TableHead = function TableHead(_ref) {
|
|
23604
|
+
var children = _ref.children,
|
|
23605
|
+
_ref$extraStyles = _ref.extraStyles,
|
|
23606
|
+
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
23607
|
+
themeValues = _ref.themeValues;
|
|
23608
|
+
return /*#__PURE__*/React.createElement(StyledTableHead, {
|
|
23609
|
+
backgroundColor: themeValues.backgroundColor,
|
|
23610
|
+
borderColor: themeValues.borderColor
|
|
23611
|
+
}, /*#__PURE__*/React.createElement(TableRow$1, {
|
|
23612
|
+
extraStyles: extraStyles,
|
|
23613
|
+
hoverEffect: false
|
|
23614
|
+
}, children));
|
|
23615
|
+
};
|
|
23616
|
+
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$g);
|
|
23617
|
+
|
|
23618
|
+
var TableHeading = styled.th.withConfig({
|
|
23619
|
+
displayName: "TableHeadingstyled",
|
|
23620
|
+
componentId: "sc-1ggk38d-0"
|
|
23621
|
+
})(["padding:", ";min-width:", ";text-align:left;&:last-child{text-align:right;}", ""], function (_ref) {
|
|
23622
|
+
var _ref$padding = _ref.padding,
|
|
23623
|
+
padding = _ref$padding === void 0 ? "24px" : _ref$padding;
|
|
23624
|
+
return padding;
|
|
23625
|
+
}, function (_ref2) {
|
|
23626
|
+
var _ref2$minWidth = _ref2.minWidth,
|
|
23627
|
+
minWidth = _ref2$minWidth === void 0 ? "initial" : _ref2$minWidth;
|
|
23628
|
+
return minWidth;
|
|
23629
|
+
}, function (_ref3) {
|
|
23630
|
+
var extraStyles = _ref3.extraStyles;
|
|
23631
|
+
return extraStyles;
|
|
23632
|
+
});
|
|
23633
|
+
|
|
23634
|
+
var SortableTableHeading = function SortableTableHeading(_ref) {
|
|
23635
|
+
var ariaControlsId = _ref.ariaControlsId,
|
|
23636
|
+
displayName = _ref.displayName,
|
|
23637
|
+
onSortChange = _ref.onSortChange,
|
|
23638
|
+
_ref$sortOrder = _ref.sortOrder,
|
|
23639
|
+
sortOrder = _ref$sortOrder === void 0 ? null : _ref$sortOrder,
|
|
23640
|
+
themeValues = _ref.themeValues;
|
|
23641
|
+
var getCaretColor = function getCaretColor(order) {
|
|
23642
|
+
if (sortOrder === order) {
|
|
23643
|
+
return themeValues.activeColor;
|
|
23644
|
+
}
|
|
23645
|
+
return themeValues.inactiveColor;
|
|
23646
|
+
};
|
|
23647
|
+
return /*#__PURE__*/React.createElement(TableHeading, {
|
|
23648
|
+
extraStyles: "cursor: pointer;",
|
|
23649
|
+
onClick: onSortChange,
|
|
23650
|
+
"aria-controls": ariaControlsId
|
|
23651
|
+
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
23652
|
+
justify: "space-between"
|
|
23653
|
+
}, displayName, /*#__PURE__*/React.createElement(Stack, {
|
|
23654
|
+
justify: "center",
|
|
23655
|
+
childGap: "2px"
|
|
23656
|
+
}, /*#__PURE__*/React.createElement(CaretArrowUp$1, {
|
|
23657
|
+
color: getCaretColor("asc"),
|
|
23658
|
+
activeColor: themeValues.activeColor
|
|
23659
|
+
}), /*#__PURE__*/React.createElement(CaretArrowDown$1, {
|
|
23660
|
+
color: getCaretColor("desc"),
|
|
23661
|
+
activeColor: themeValues.activeColor
|
|
23662
|
+
}))));
|
|
23663
|
+
};
|
|
23664
|
+
var SortableTableHeading$1 = themeComponent(SortableTableHeading, "SortableTableHeading", fallbackValues$f);
|
|
23665
|
+
|
|
23459
23666
|
var DropdownIcon = function DropdownIcon() {
|
|
23460
23667
|
return /*#__PURE__*/React.createElement("svg", {
|
|
23461
23668
|
version: "1.2",
|
|
@@ -24791,7 +24998,7 @@ exportTypedArrayMethod$1('at', function at(index) {
|
|
|
24791
24998
|
var selectedColor = "".concat(MATISSE_BLUE);
|
|
24792
24999
|
var hoverColor$3 = "".concat(HOVER_LIGHT_BLUE);
|
|
24793
25000
|
var focusColor = "".concat(MATISSE_BLUE_DARK);
|
|
24794
|
-
var fallbackValues$
|
|
25001
|
+
var fallbackValues$i = {
|
|
24795
25002
|
selectedColor: selectedColor,
|
|
24796
25003
|
hoverColor: hoverColor$3,
|
|
24797
25004
|
focusColor: focusColor
|
|
@@ -25192,7 +25399,7 @@ var Dropdown = function Dropdown(_ref13) {
|
|
|
25192
25399
|
}, choice.text)));
|
|
25193
25400
|
}))) : /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
25194
25401
|
};
|
|
25195
|
-
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$
|
|
25402
|
+
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$i);
|
|
25196
25403
|
|
|
25197
25404
|
var SelectContainer = styled.div.withConfig({
|
|
25198
25405
|
displayName: "FormSelectstyled__SelectContainer",
|
|
@@ -25239,7 +25446,7 @@ var labelColor = {
|
|
|
25239
25446
|
"default": "".concat(CHARADE_GREY),
|
|
25240
25447
|
disabled: "".concat(CHARADE_GREY)
|
|
25241
25448
|
};
|
|
25242
|
-
var borderColor = {
|
|
25449
|
+
var borderColor$2 = {
|
|
25243
25450
|
"default": "".concat(GREY_CHATEAU),
|
|
25244
25451
|
disabled: "".concat(GREY_CHATEAU)
|
|
25245
25452
|
};
|
|
@@ -25263,13 +25470,13 @@ var hoverFocusStyles = {
|
|
|
25263
25470
|
"default": "color: #0E506D; outline: none; text-decoration: underline; ",
|
|
25264
25471
|
disabled: "color: #6D717E;"
|
|
25265
25472
|
};
|
|
25266
|
-
var fallbackValues$
|
|
25473
|
+
var fallbackValues$j = {
|
|
25267
25474
|
linkColor: linkColor$1,
|
|
25268
25475
|
formBackgroundColor: formBackgroundColor,
|
|
25269
25476
|
inputBackgroundColor: inputBackgroundColor,
|
|
25270
25477
|
color: color$6,
|
|
25271
25478
|
labelColor: labelColor,
|
|
25272
|
-
borderColor: borderColor,
|
|
25479
|
+
borderColor: borderColor$2,
|
|
25273
25480
|
lineHeight: lineHeight$1,
|
|
25274
25481
|
fontSize: fontSize$4,
|
|
25275
25482
|
errorFontSize: errorFontSize,
|
|
@@ -25375,7 +25582,7 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
25375
25582
|
extraStyles: "height: ".concat(themeValues.lineHeight, ";")
|
|
25376
25583
|
})));
|
|
25377
25584
|
};
|
|
25378
|
-
var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$
|
|
25585
|
+
var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$j, "default");
|
|
25379
25586
|
|
|
25380
25587
|
var options = [{
|
|
25381
25588
|
text: "Afghanistan",
|
|
@@ -26198,7 +26405,7 @@ var mobileFontSize$1 = {
|
|
|
26198
26405
|
// 12px
|
|
26199
26406
|
extraSmall: "0.71428rem" // 10px
|
|
26200
26407
|
};
|
|
26201
|
-
var fallbackValues$
|
|
26408
|
+
var fallbackValues$k = {
|
|
26202
26409
|
fontFamily: fontFamily$4,
|
|
26203
26410
|
fontSize: fontSize$5
|
|
26204
26411
|
};
|
|
@@ -26208,7 +26415,7 @@ var mobileFallbackValues$1 = {
|
|
|
26208
26415
|
};
|
|
26209
26416
|
var MOBILE_BREAKPOINT$1 = 768;
|
|
26210
26417
|
|
|
26211
|
-
var _excluded$
|
|
26418
|
+
var _excluded$s = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
26212
26419
|
|
|
26213
26420
|
/*
|
|
26214
26421
|
New responsive text component for Detail elements
|
|
@@ -26239,7 +26446,7 @@ var _excluded$r = ["themeValues", "weight", "color", "margin", "textAlign", "ext
|
|
|
26239
26446
|
var isBelowBreakpoint$1 = window.innerWidth < MOBILE_BREAKPOINT$1;
|
|
26240
26447
|
var isTouchDevice$2 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
|
|
26241
26448
|
var mobileDeviceDetected$1 = isBelowBreakpoint$1 && isTouchDevice$2;
|
|
26242
|
-
var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$
|
|
26449
|
+
var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$k;
|
|
26243
26450
|
var Detail = function Detail(_ref) {
|
|
26244
26451
|
var themeValues = _ref.themeValues,
|
|
26245
26452
|
_ref$weight = _ref.weight,
|
|
@@ -26258,7 +26465,7 @@ var Detail = function Detail(_ref) {
|
|
|
26258
26465
|
as = _ref$as === void 0 ? "p" : _ref$as,
|
|
26259
26466
|
dataQa = _ref.dataQa,
|
|
26260
26467
|
children = _ref.children,
|
|
26261
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26468
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
26262
26469
|
return /*#__PURE__*/React.createElement(DetailText, _extends({
|
|
26263
26470
|
variant: variant,
|
|
26264
26471
|
as: as,
|
|
@@ -26275,10 +26482,10 @@ var Detail = function Detail(_ref) {
|
|
|
26275
26482
|
};
|
|
26276
26483
|
var Detail$1 = themeComponent(Detail, "Detail", fallbacks$1, "regular");
|
|
26277
26484
|
|
|
26278
|
-
var backgroundColor$
|
|
26485
|
+
var backgroundColor$4 = WHITE;
|
|
26279
26486
|
var boxShadow = "0px 2px 14px 0px ".concat(ATHENS_GREY, ", 0px 3px 8px 0px ").concat(GHOST_GREY);
|
|
26280
|
-
var fallbackValues$
|
|
26281
|
-
backgroundColor: backgroundColor$
|
|
26487
|
+
var fallbackValues$l = {
|
|
26488
|
+
backgroundColor: backgroundColor$4,
|
|
26282
26489
|
boxShadow: boxShadow
|
|
26283
26490
|
};
|
|
26284
26491
|
|
|
@@ -26300,7 +26507,7 @@ var DisplayBox = function DisplayBox(_ref) {
|
|
|
26300
26507
|
dataQa: dataQa
|
|
26301
26508
|
}, children));
|
|
26302
26509
|
};
|
|
26303
|
-
var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$
|
|
26510
|
+
var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$l);
|
|
26304
26511
|
|
|
26305
26512
|
/*
|
|
26306
26513
|
Hook that assigns a click event listener to the main document element
|
|
@@ -26418,11 +26625,11 @@ var index$5 = /*#__PURE__*/Object.freeze({
|
|
|
26418
26625
|
});
|
|
26419
26626
|
|
|
26420
26627
|
var hoverColor$4 = "#116285";
|
|
26421
|
-
var activeColor$
|
|
26628
|
+
var activeColor$5 = "#0E506D";
|
|
26422
26629
|
var popoverTriggerColor = "#15749D";
|
|
26423
|
-
var fallbackValues$
|
|
26630
|
+
var fallbackValues$m = {
|
|
26424
26631
|
hoverColor: hoverColor$4,
|
|
26425
|
-
activeColor: activeColor$
|
|
26632
|
+
activeColor: activeColor$5,
|
|
26426
26633
|
popoverTriggerColor: popoverTriggerColor
|
|
26427
26634
|
};
|
|
26428
26635
|
|
|
@@ -26570,7 +26777,7 @@ var Popover = function Popover(_ref) {
|
|
|
26570
26777
|
extraStyles: "\n position: absolute;\n content: \"\";\n width: 0;\n height: 0;\n ".concat(arrowBorder(borderColor, arrowDirection, "8px"), ";\n filter: drop-shadow(2px 8px 14px black);\n bottom: ").concat(arrowBottom, ";\n right: ").concat(arrowRight, ";\n top: ").concat(arrowTop, ";\n left: ").concat(arrowLeft, ";\n ")
|
|
26571
26778
|
})));
|
|
26572
26779
|
};
|
|
26573
|
-
var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$
|
|
26780
|
+
var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$m);
|
|
26574
26781
|
|
|
26575
26782
|
var DisplayCard = function DisplayCard(_ref) {
|
|
26576
26783
|
var title = _ref.title,
|
|
@@ -26943,7 +27150,7 @@ var labelColor$1 = {
|
|
|
26943
27150
|
"default": "".concat(CHARADE_GREY),
|
|
26944
27151
|
disabled: "".concat(CHARADE_GREY)
|
|
26945
27152
|
};
|
|
26946
|
-
var borderColor$
|
|
27153
|
+
var borderColor$3 = {
|
|
26947
27154
|
"default": "".concat(STORM_GREY),
|
|
26948
27155
|
disabled: "".concat(STORM_GREY)
|
|
26949
27156
|
};
|
|
@@ -26970,13 +27177,13 @@ var hoverFocusStyles$1 = {
|
|
|
26970
27177
|
var formFooterPanel = {
|
|
26971
27178
|
"default": "".concat(INFO_BLUE)
|
|
26972
27179
|
};
|
|
26973
|
-
var fallbackValues$
|
|
27180
|
+
var fallbackValues$n = {
|
|
26974
27181
|
linkColor: linkColor$2,
|
|
26975
27182
|
formBackgroundColor: formBackgroundColor$1,
|
|
26976
27183
|
inputBackgroundColor: inputBackgroundColor$1,
|
|
26977
27184
|
color: color$7,
|
|
26978
27185
|
labelColor: labelColor$1,
|
|
26979
|
-
borderColor: borderColor$
|
|
27186
|
+
borderColor: borderColor$3,
|
|
26980
27187
|
lineHeight: lineHeight$2,
|
|
26981
27188
|
fontSize: fontSize$6,
|
|
26982
27189
|
errorFontSize: errorFontSize$1,
|
|
@@ -26985,7 +27192,7 @@ var fallbackValues$k = {
|
|
|
26985
27192
|
formFooterPanel: formFooterPanel
|
|
26986
27193
|
};
|
|
26987
27194
|
|
|
26988
|
-
var _excluded$
|
|
27195
|
+
var _excluded$t = ["showErrors", "themeValues"],
|
|
26989
27196
|
_excluded2 = ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "autocompleteValue", "extraStyles", "removeFromValue", "dataQa", "isRequired"];
|
|
26990
27197
|
var InputField = styled.input.withConfig({
|
|
26991
27198
|
displayName: "FormInput__InputField",
|
|
@@ -27020,7 +27227,7 @@ var InputField = styled.input.withConfig({
|
|
|
27020
27227
|
var FormattedInputField = styled(function (_ref8) {
|
|
27021
27228
|
var showErrors = _ref8.showErrors,
|
|
27022
27229
|
themeValues = _ref8.themeValues,
|
|
27023
|
-
props = _objectWithoutProperties(_ref8, _excluded$
|
|
27230
|
+
props = _objectWithoutProperties(_ref8, _excluded$t);
|
|
27024
27231
|
return /*#__PURE__*/React.createElement(FormattedInput, props);
|
|
27025
27232
|
}).withConfig({
|
|
27026
27233
|
displayName: "FormInput__FormattedInputField",
|
|
@@ -27216,9 +27423,9 @@ var FormInput = function FormInput(_ref15) {
|
|
|
27216
27423
|
padding: "0 0 0 auto"
|
|
27217
27424
|
}, decorator)));
|
|
27218
27425
|
};
|
|
27219
|
-
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$
|
|
27426
|
+
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$n, "default");
|
|
27220
27427
|
|
|
27221
|
-
var _excluded$
|
|
27428
|
+
var _excluded$u = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
|
|
27222
27429
|
var FormInputRow = function FormInputRow(_ref) {
|
|
27223
27430
|
var _ref$breakpoint = _ref.breakpoint,
|
|
27224
27431
|
breakpoint = _ref$breakpoint === void 0 ? "30rem" : _ref$breakpoint,
|
|
@@ -27227,7 +27434,7 @@ var FormInputRow = function FormInputRow(_ref) {
|
|
|
27227
27434
|
largeChild = _ref.largeChild,
|
|
27228
27435
|
largeChildSize = _ref.largeChildSize,
|
|
27229
27436
|
children = _ref.children,
|
|
27230
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27437
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
27231
27438
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
27232
27439
|
padding: "0"
|
|
27233
27440
|
}, rest), /*#__PURE__*/React.createElement(Switcher, {
|
|
@@ -27238,24 +27445,24 @@ var FormInputRow = function FormInputRow(_ref) {
|
|
|
27238
27445
|
}, children));
|
|
27239
27446
|
};
|
|
27240
27447
|
|
|
27241
|
-
var _excluded$
|
|
27448
|
+
var _excluded$v = ["childGap", "bottomItem", "children"];
|
|
27242
27449
|
var FormInputColumn = function FormInputColumn(_ref) {
|
|
27243
27450
|
var _ref$childGap = _ref.childGap,
|
|
27244
27451
|
childGap = _ref$childGap === void 0 ? "0.5rem" : _ref$childGap,
|
|
27245
27452
|
bottomItem = _ref.bottomItem,
|
|
27246
27453
|
children = _ref.children,
|
|
27247
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27454
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
27248
27455
|
return /*#__PURE__*/React.createElement(Stack, _extends({
|
|
27249
27456
|
childGap: childGap,
|
|
27250
27457
|
bottomItem: bottomItem
|
|
27251
27458
|
}, rest), children);
|
|
27252
27459
|
};
|
|
27253
27460
|
|
|
27254
|
-
var _excluded$
|
|
27461
|
+
var _excluded$w = ["themeValues", "children"];
|
|
27255
27462
|
var FormContainer = function FormContainer(_ref) {
|
|
27256
27463
|
var themeValues = _ref.themeValues,
|
|
27257
27464
|
children = _ref.children,
|
|
27258
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27465
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
27259
27466
|
var _useContext = useContext(ThemeContext),
|
|
27260
27467
|
isMobile = _useContext.isMobile;
|
|
27261
27468
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
@@ -27264,7 +27471,7 @@ var FormContainer = function FormContainer(_ref) {
|
|
|
27264
27471
|
borderRadius: "4px"
|
|
27265
27472
|
}, rest), children);
|
|
27266
27473
|
};
|
|
27267
|
-
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$
|
|
27474
|
+
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$n, "default");
|
|
27268
27475
|
|
|
27269
27476
|
var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
27270
27477
|
var themeValues = _ref.themeValues,
|
|
@@ -27285,7 +27492,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
|
27285
27492
|
text: linkText
|
|
27286
27493
|
})));
|
|
27287
27494
|
};
|
|
27288
|
-
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$
|
|
27495
|
+
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$n, "default");
|
|
27289
27496
|
|
|
27290
27497
|
var fontSize$7 = {
|
|
27291
27498
|
"default": "1rem",
|
|
@@ -27299,7 +27506,7 @@ var color$8 = {
|
|
|
27299
27506
|
"default": "".concat(CHARADE_GREY),
|
|
27300
27507
|
radio: "".concat(MINESHAFT_GREY)
|
|
27301
27508
|
};
|
|
27302
|
-
var fallbackValues$
|
|
27509
|
+
var fallbackValues$o = {
|
|
27303
27510
|
fontSize: fontSize$7,
|
|
27304
27511
|
padding: padding$1,
|
|
27305
27512
|
color: color$8
|
|
@@ -27341,11 +27548,11 @@ var FormattedAddress = function FormattedAddress(_ref) {
|
|
|
27341
27548
|
dataQa: "".concat(qaPrefix, "-3")
|
|
27342
27549
|
}, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
|
|
27343
27550
|
};
|
|
27344
|
-
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$
|
|
27551
|
+
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$o, "default");
|
|
27345
27552
|
|
|
27346
27553
|
var textColor$1 = "".concat(CHARADE_GREY);
|
|
27347
27554
|
var autopayTextColor = "".concat(REGENT_GREY);
|
|
27348
|
-
var fallbackValues$
|
|
27555
|
+
var fallbackValues$p = {
|
|
27349
27556
|
textColor: textColor$1,
|
|
27350
27557
|
autopayTextColor: autopayTextColor
|
|
27351
27558
|
};
|
|
@@ -27383,11 +27590,11 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
|
|
|
27383
27590
|
extraStyles: "font-style: italic;"
|
|
27384
27591
|
}, "Autopay Enabled")));
|
|
27385
27592
|
};
|
|
27386
|
-
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$
|
|
27593
|
+
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$p);
|
|
27387
27594
|
|
|
27388
27595
|
var textColor$2 = "".concat(CHARADE_GREY);
|
|
27389
27596
|
var autopayTextColor$1 = "".concat(REGENT_GREY);
|
|
27390
|
-
var fallbackValues$
|
|
27597
|
+
var fallbackValues$q = {
|
|
27391
27598
|
textColor: textColor$2,
|
|
27392
27599
|
autopayTextColor: autopayTextColor$1
|
|
27393
27600
|
};
|
|
@@ -27479,7 +27686,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
27479
27686
|
extraStyles: "font-style: italic;"
|
|
27480
27687
|
}, "Autopay Enabled")));
|
|
27481
27688
|
};
|
|
27482
|
-
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$
|
|
27689
|
+
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$q);
|
|
27483
27690
|
|
|
27484
27691
|
var Hamburger = styled.button.withConfig({
|
|
27485
27692
|
displayName: "HamburgerButton__Hamburger",
|
|
@@ -27560,12 +27767,12 @@ var fontSize$8 = {
|
|
|
27560
27767
|
h5: "1.375rem",
|
|
27561
27768
|
h6: "1.25rem"
|
|
27562
27769
|
};
|
|
27563
|
-
var fallbackValues$
|
|
27770
|
+
var fallbackValues$r = {
|
|
27564
27771
|
fontFamily: fontFamily$5,
|
|
27565
27772
|
fontSize: fontSize$8
|
|
27566
27773
|
};
|
|
27567
27774
|
|
|
27568
|
-
var _excluded$
|
|
27775
|
+
var _excluded$x = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
27569
27776
|
var Heading = function Heading(_ref) {
|
|
27570
27777
|
var themeValues = _ref.themeValues,
|
|
27571
27778
|
_ref$weight = _ref.weight,
|
|
@@ -27584,7 +27791,7 @@ var Heading = function Heading(_ref) {
|
|
|
27584
27791
|
as = _ref$as === void 0 ? variant : _ref$as,
|
|
27585
27792
|
dataQa = _ref.dataQa,
|
|
27586
27793
|
children = _ref.children,
|
|
27587
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27794
|
+
rest = _objectWithoutProperties(_ref, _excluded$x);
|
|
27588
27795
|
return /*#__PURE__*/React.createElement(HeadingText, _extends({
|
|
27589
27796
|
variant: variant,
|
|
27590
27797
|
as: as,
|
|
@@ -27599,7 +27806,7 @@ var Heading = function Heading(_ref) {
|
|
|
27599
27806
|
"data-qa": dataQa
|
|
27600
27807
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
27601
27808
|
};
|
|
27602
|
-
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$
|
|
27809
|
+
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$r, "h1");
|
|
27603
27810
|
|
|
27604
27811
|
var Image = styled.img.withConfig({
|
|
27605
27812
|
displayName: "ImageBoxstyled__Image",
|
|
@@ -27734,7 +27941,7 @@ var fontWeight$4 = {
|
|
|
27734
27941
|
// fontsize Detail regular
|
|
27735
27942
|
large: "700" // fontsize Title small
|
|
27736
27943
|
};
|
|
27737
|
-
var fallbackValues$
|
|
27944
|
+
var fallbackValues$s = {
|
|
27738
27945
|
fontWeight: fontWeight$4
|
|
27739
27946
|
};
|
|
27740
27947
|
|
|
@@ -27785,15 +27992,15 @@ var LabeledAmountV2 = function LabeledAmountV2(_ref) {
|
|
|
27785
27992
|
}, /*#__PURE__*/React.createElement("span", null, label), /*#__PURE__*/React.createElement("span", null, amount));
|
|
27786
27993
|
};
|
|
27787
27994
|
|
|
27788
|
-
var _excluded$
|
|
27995
|
+
var _excluded$y = ["version"];
|
|
27789
27996
|
var LabeledAmount = function LabeledAmount(_ref) {
|
|
27790
27997
|
var _ref$version = _ref.version,
|
|
27791
27998
|
version = _ref$version === void 0 ? "v1" : _ref$version,
|
|
27792
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27999
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
27793
28000
|
var LabeledAmountComponent = version === "v1" ? LabeledAmountV1 : LabeledAmountV2;
|
|
27794
28001
|
return /*#__PURE__*/React.createElement(LabeledAmountComponent, rest);
|
|
27795
28002
|
};
|
|
27796
|
-
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$
|
|
28003
|
+
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$s, "default");
|
|
27797
28004
|
|
|
27798
28005
|
var weightTitle = {
|
|
27799
28006
|
"default": "600",
|
|
@@ -27803,7 +28010,7 @@ var detailVariant = {
|
|
|
27803
28010
|
"default": "large",
|
|
27804
28011
|
small: "small"
|
|
27805
28012
|
};
|
|
27806
|
-
var fallbackValues$
|
|
28013
|
+
var fallbackValues$t = {
|
|
27807
28014
|
weightTitle: weightTitle,
|
|
27808
28015
|
detailVariant: detailVariant
|
|
27809
28016
|
};
|
|
@@ -27851,10 +28058,10 @@ var LineItem = function LineItem(_ref) {
|
|
|
27851
28058
|
childGap: "0.25rem"
|
|
27852
28059
|
}, visibleCustomAttrs));
|
|
27853
28060
|
};
|
|
27854
|
-
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$
|
|
28061
|
+
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$t, "default");
|
|
27855
28062
|
|
|
27856
28063
|
var color$9 = "#15749D";
|
|
27857
|
-
var fallbackValues$
|
|
28064
|
+
var fallbackValues$u = {
|
|
27858
28065
|
color: color$9
|
|
27859
28066
|
};
|
|
27860
28067
|
|
|
@@ -27918,7 +28125,7 @@ var Spinner$1 = function Spinner(_ref6) {
|
|
|
27918
28125
|
strokeWidth: strokeWidth
|
|
27919
28126
|
})));
|
|
27920
28127
|
};
|
|
27921
|
-
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$
|
|
28128
|
+
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$u);
|
|
27922
28129
|
|
|
27923
28130
|
var Loading = function Loading() {
|
|
27924
28131
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -27934,7 +28141,7 @@ var Loading = function Loading() {
|
|
|
27934
28141
|
})))));
|
|
27935
28142
|
};
|
|
27936
28143
|
|
|
27937
|
-
var _excluded$
|
|
28144
|
+
var _excluded$z = ["leftContent", "rightContent", "footerMinHeight", "backgroundColor", "largeSide", "largeSideSize", "footerPadding", "isMobile", "footerWidth"];
|
|
27938
28145
|
var NavFooter = function NavFooter(_ref) {
|
|
27939
28146
|
var leftContent = _ref.leftContent,
|
|
27940
28147
|
rightContent = _ref.rightContent,
|
|
@@ -27949,7 +28156,7 @@ var NavFooter = function NavFooter(_ref) {
|
|
|
27949
28156
|
footerPadding = _ref$footerPadding === void 0 ? "1.5rem 1rem" : _ref$footerPadding,
|
|
27950
28157
|
isMobile = _ref.isMobile,
|
|
27951
28158
|
footerWidth = _ref.footerWidth,
|
|
27952
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
28159
|
+
rest = _objectWithoutProperties(_ref, _excluded$z);
|
|
27953
28160
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
27954
28161
|
padding: footerPadding,
|
|
27955
28162
|
background: backgroundColor,
|
|
@@ -27980,7 +28187,7 @@ var NavFooter = function NavFooter(_ref) {
|
|
|
27980
28187
|
}, rightContent)))))));
|
|
27981
28188
|
};
|
|
27982
28189
|
|
|
27983
|
-
var _excluded$
|
|
28190
|
+
var _excluded$A = ["leftContent", "rightContent", "headerHeight", "isMobile", "backgroundColor", "headerWidth"];
|
|
27984
28191
|
var NavHeader = function NavHeader(_ref) {
|
|
27985
28192
|
var leftContent = _ref.leftContent,
|
|
27986
28193
|
rightContent = _ref.rightContent,
|
|
@@ -27989,7 +28196,7 @@ var NavHeader = function NavHeader(_ref) {
|
|
|
27989
28196
|
isMobile = _ref.isMobile,
|
|
27990
28197
|
backgroundColor = _ref.backgroundColor,
|
|
27991
28198
|
headerWidth = _ref.headerWidth,
|
|
27992
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
28199
|
+
rest = _objectWithoutProperties(_ref, _excluded$A);
|
|
27993
28200
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
27994
28201
|
padding: "0 16px 4px",
|
|
27995
28202
|
background: backgroundColor,
|
|
@@ -28178,7 +28385,7 @@ var height$1 = {
|
|
|
28178
28385
|
"default": "3rem",
|
|
28179
28386
|
large: "192px"
|
|
28180
28387
|
};
|
|
28181
|
-
var fallbackValues$
|
|
28388
|
+
var fallbackValues$v = {
|
|
28182
28389
|
color: color$a,
|
|
28183
28390
|
height: height$1
|
|
28184
28391
|
};
|
|
@@ -28320,13 +28527,13 @@ var Placeholder = function Placeholder(_ref4) {
|
|
|
28320
28527
|
extraStyles: "padding: 0 0 0 8px; text-align: center;"
|
|
28321
28528
|
}, text)))))))))));
|
|
28322
28529
|
};
|
|
28323
|
-
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$
|
|
28530
|
+
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$v, "default");
|
|
28324
28531
|
|
|
28325
|
-
var backgroundColor$
|
|
28532
|
+
var backgroundColor$5 = {
|
|
28326
28533
|
"default": "".concat(WHITE)
|
|
28327
28534
|
};
|
|
28328
|
-
var fallbackValues$
|
|
28329
|
-
backgroundColor: backgroundColor$
|
|
28535
|
+
var fallbackValues$w = {
|
|
28536
|
+
backgroundColor: backgroundColor$5
|
|
28330
28537
|
};
|
|
28331
28538
|
|
|
28332
28539
|
var ProcessingFee = function ProcessingFee(_ref) {
|
|
@@ -28352,13 +28559,13 @@ var ProcessingFee = function ProcessingFee(_ref) {
|
|
|
28352
28559
|
showQuitLink: false
|
|
28353
28560
|
}));
|
|
28354
28561
|
};
|
|
28355
|
-
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$
|
|
28562
|
+
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$w, "default");
|
|
28356
28563
|
|
|
28357
|
-
var activeColor$
|
|
28564
|
+
var activeColor$6 = MATISSE_BLUE;
|
|
28358
28565
|
var inactiveBorderColor = GREY_CHATEAU;
|
|
28359
|
-
var fallbackValues$
|
|
28566
|
+
var fallbackValues$x = {
|
|
28360
28567
|
inactiveBorderColor: inactiveBorderColor,
|
|
28361
|
-
activeColor: activeColor$
|
|
28568
|
+
activeColor: activeColor$6
|
|
28362
28569
|
};
|
|
28363
28570
|
|
|
28364
28571
|
var HiddenRadioInput = styled.input.withConfig({
|
|
@@ -28439,13 +28646,13 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
|
|
|
28439
28646
|
inactiveBorderColor: themeValues.inactiveBorderColor
|
|
28440
28647
|
}), labelText));
|
|
28441
28648
|
};
|
|
28442
|
-
var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$
|
|
28649
|
+
var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$x);
|
|
28443
28650
|
|
|
28444
|
-
var activeColor$
|
|
28445
|
-
var inactiveColor = "".concat(STORM_GREY);
|
|
28446
|
-
var fallbackValues$
|
|
28447
|
-
activeColor: activeColor$
|
|
28448
|
-
inactiveColor: inactiveColor
|
|
28651
|
+
var activeColor$7 = "".concat(MATISSE_BLUE);
|
|
28652
|
+
var inactiveColor$1 = "".concat(STORM_GREY);
|
|
28653
|
+
var fallbackValues$y = {
|
|
28654
|
+
activeColor: activeColor$7,
|
|
28655
|
+
inactiveColor: inactiveColor$1
|
|
28449
28656
|
};
|
|
28450
28657
|
|
|
28451
28658
|
var HiddenRadioButton = styled.input.withConfig({
|
|
@@ -28548,11 +28755,11 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
28548
28755
|
borderRadius: "8px"
|
|
28549
28756
|
})));
|
|
28550
28757
|
};
|
|
28551
|
-
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$
|
|
28758
|
+
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$y);
|
|
28552
28759
|
|
|
28553
28760
|
var searchIconColor = WHITE;
|
|
28554
28761
|
var searchIconBackgroundColor = MATISSE_BLUE;
|
|
28555
|
-
var fallbackValues$
|
|
28762
|
+
var fallbackValues$z = {
|
|
28556
28763
|
searchIconColor: searchIconColor,
|
|
28557
28764
|
searchIconBackgroundColor: searchIconBackgroundColor
|
|
28558
28765
|
};
|
|
@@ -28648,12 +28855,12 @@ var Search = function Search(_ref) {
|
|
|
28648
28855
|
size: 24
|
|
28649
28856
|
})));
|
|
28650
28857
|
};
|
|
28651
|
-
var Search$1 = themeComponent(Search, "Search", fallbackValues$
|
|
28858
|
+
var Search$1 = themeComponent(Search, "Search", fallbackValues$z);
|
|
28652
28859
|
|
|
28653
28860
|
var border$2 = {
|
|
28654
28861
|
"default": "1px solid #caced8"
|
|
28655
28862
|
};
|
|
28656
|
-
var fallbackValues$
|
|
28863
|
+
var fallbackValues$A = {
|
|
28657
28864
|
border: border$2
|
|
28658
28865
|
};
|
|
28659
28866
|
|
|
@@ -28726,16 +28933,16 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
28726
28933
|
});
|
|
28727
28934
|
}))));
|
|
28728
28935
|
};
|
|
28729
|
-
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$
|
|
28936
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$A, "default");
|
|
28730
28937
|
|
|
28731
|
-
var borderColor$
|
|
28938
|
+
var borderColor$4 = {
|
|
28732
28939
|
"default": "".concat(GREY_CHATEAU)
|
|
28733
28940
|
};
|
|
28734
28941
|
var borderSize = {
|
|
28735
28942
|
"default": "1px"
|
|
28736
28943
|
};
|
|
28737
|
-
var fallbackValues$
|
|
28738
|
-
borderColor: borderColor$
|
|
28944
|
+
var fallbackValues$B = {
|
|
28945
|
+
borderColor: borderColor$4,
|
|
28739
28946
|
borderSize: borderSize
|
|
28740
28947
|
};
|
|
28741
28948
|
|
|
@@ -28752,7 +28959,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
28752
28959
|
borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
|
|
28753
28960
|
});
|
|
28754
28961
|
};
|
|
28755
|
-
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$
|
|
28962
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$B, "default");
|
|
28756
28963
|
|
|
28757
28964
|
var placeHolderOptionUS = {
|
|
28758
28965
|
text: "Please select state",
|
|
@@ -39338,7 +39545,7 @@ var white = "".concat(WHITE);
|
|
|
39338
39545
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
39339
39546
|
var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
|
|
39340
39547
|
var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
|
|
39341
|
-
var fallbackValues$
|
|
39548
|
+
var fallbackValues$C = {
|
|
39342
39549
|
onBackground: onBackground,
|
|
39343
39550
|
disabledBackground: disabledBackground,
|
|
39344
39551
|
disabledBackgroundLight: disabledBackgroundLight,
|
|
@@ -39515,7 +39722,7 @@ var ToggleSwitch = function ToggleSwitch(_ref10) {
|
|
|
39515
39722
|
padding: "0"
|
|
39516
39723
|
}, label))));
|
|
39517
39724
|
};
|
|
39518
|
-
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$
|
|
39725
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$C);
|
|
39519
39726
|
|
|
39520
39727
|
var background$2 = "".concat(ATHENS_GREY);
|
|
39521
39728
|
var white$1 = "".concat(WHITE);
|
|
@@ -39557,12 +39764,12 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
|
|
|
39557
39764
|
}));
|
|
39558
39765
|
};
|
|
39559
39766
|
|
|
39560
|
-
var backgroundColor$
|
|
39767
|
+
var backgroundColor$6 = WHITE;
|
|
39561
39768
|
var imageBackgroundColor = INFO_BLUE;
|
|
39562
39769
|
var headerBackgroundColor = STORM_GREY;
|
|
39563
39770
|
var headerColor = WHITE;
|
|
39564
|
-
var fallbackValues$
|
|
39565
|
-
backgroundColor: backgroundColor$
|
|
39771
|
+
var fallbackValues$D = {
|
|
39772
|
+
backgroundColor: backgroundColor$6,
|
|
39566
39773
|
imageBackgroundColor: imageBackgroundColor,
|
|
39567
39774
|
headerBackgroundColor: headerBackgroundColor,
|
|
39568
39775
|
headerColor: headerColor
|
|
@@ -39585,7 +39792,7 @@ var CardImage = styled.img.withConfig({
|
|
|
39585
39792
|
var titleColor = BRIGHT_GREY;
|
|
39586
39793
|
var titleWeight = FONT_WEIGHT_BOLD;
|
|
39587
39794
|
var textColor$3 = BRIGHT_GREY;
|
|
39588
|
-
var fallbackValues$
|
|
39795
|
+
var fallbackValues$E = {
|
|
39589
39796
|
titleColor: titleColor,
|
|
39590
39797
|
titleWeight: titleWeight,
|
|
39591
39798
|
textColor: textColor$3
|
|
@@ -39609,7 +39816,7 @@ var CardText = function CardText(_ref) {
|
|
|
39609
39816
|
color: themeValues.textColor
|
|
39610
39817
|
}, text))));
|
|
39611
39818
|
};
|
|
39612
|
-
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$
|
|
39819
|
+
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$E);
|
|
39613
39820
|
|
|
39614
39821
|
var CardHeader = function CardHeader(_ref) {
|
|
39615
39822
|
var backgroundColor = _ref.backgroundColor,
|
|
@@ -39711,14 +39918,14 @@ var Card = function Card(_ref) {
|
|
|
39711
39918
|
titleVariant: titleVariant
|
|
39712
39919
|
}), children)))));
|
|
39713
39920
|
};
|
|
39714
|
-
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$
|
|
39921
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$D);
|
|
39715
39922
|
|
|
39716
39923
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
39717
|
-
var activeColor$
|
|
39924
|
+
var activeColor$8 = MATISSE_BLUE;
|
|
39718
39925
|
var linkColor$3 = CHARADE_GREY;
|
|
39719
|
-
var fallbackValues$
|
|
39926
|
+
var fallbackValues$F = {
|
|
39720
39927
|
fontFamily: fontFamily$6,
|
|
39721
|
-
activeColor: activeColor$
|
|
39928
|
+
activeColor: activeColor$8,
|
|
39722
39929
|
linkColor: linkColor$3
|
|
39723
39930
|
};
|
|
39724
39931
|
|
|
@@ -39745,7 +39952,7 @@ var NavTab = function NavTab(_ref) {
|
|
|
39745
39952
|
extraStyles: "\n border-bottom: 3px solid transparent;\n font-family: ".concat(themeValues.fontFamily, ";\n text-decoration: none;\n ").concat(isActive && !isMobile ? border : "none", ";\n &:hover {\n text-decoration: none;\n color: ").concat(themeValues.activeColor, ";\n ").concat(isMobile ? "" : "".concat(border), "\n };\n padding: 1.25rem 0;\n ")
|
|
39746
39953
|
}, label));
|
|
39747
39954
|
};
|
|
39748
|
-
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$
|
|
39955
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$F);
|
|
39749
39956
|
|
|
39750
39957
|
var NavTabs = function NavTabs(_ref) {
|
|
39751
39958
|
var tabsConfig = _ref.tabsConfig,
|
|
@@ -39843,12 +40050,12 @@ var borderRadius = {
|
|
|
39843
40050
|
largeTitle: "0.25rem",
|
|
39844
40051
|
small: "0.25rem"
|
|
39845
40052
|
};
|
|
39846
|
-
var backgroundColor$
|
|
40053
|
+
var backgroundColor$7 = {
|
|
39847
40054
|
"default": WHITE,
|
|
39848
40055
|
largeTitle: WHITE,
|
|
39849
40056
|
small: WHITE
|
|
39850
40057
|
};
|
|
39851
|
-
var fallbackValues$
|
|
40058
|
+
var fallbackValues$G = {
|
|
39852
40059
|
fontSize: fontSize$9,
|
|
39853
40060
|
fontWeight: fontWeight$5,
|
|
39854
40061
|
fontColor: fontColor,
|
|
@@ -39858,7 +40065,7 @@ var fallbackValues$D = {
|
|
|
39858
40065
|
titleSpacing: titleSpacing,
|
|
39859
40066
|
boxShadow: boxShadow$1,
|
|
39860
40067
|
borderRadius: borderRadius,
|
|
39861
|
-
backgroundColor: backgroundColor$
|
|
40068
|
+
backgroundColor: backgroundColor$7
|
|
39862
40069
|
};
|
|
39863
40070
|
|
|
39864
40071
|
/*
|
|
@@ -39928,7 +40135,7 @@ var Module = function Module(_ref) {
|
|
|
39928
40135
|
boxShadow: themeValues.boxShadow
|
|
39929
40136
|
}, children)));
|
|
39930
40137
|
};
|
|
39931
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$
|
|
40138
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$G, "default"));
|
|
39932
40139
|
|
|
39933
40140
|
var WalletName = function WalletName(_ref) {
|
|
39934
40141
|
var mainText = _ref.mainText,
|
|
@@ -39995,138 +40202,6 @@ var WalletName = function WalletName(_ref) {
|
|
|
39995
40202
|
})));
|
|
39996
40203
|
};
|
|
39997
40204
|
|
|
39998
|
-
var Table_styled = styled.table.withConfig({
|
|
39999
|
-
displayName: "Tablestyled",
|
|
40000
|
-
componentId: "sc-mveye7-0"
|
|
40001
|
-
})(["width:100%;table-layout:auto;border-collapse:collapse;", ""], function (_ref) {
|
|
40002
|
-
var extraStyles = _ref.extraStyles;
|
|
40003
|
-
return extraStyles;
|
|
40004
|
-
});
|
|
40005
|
-
|
|
40006
|
-
var TableBody_styled = styled.tbody.withConfig({
|
|
40007
|
-
displayName: "TableBodystyled",
|
|
40008
|
-
componentId: "sc-wk5osr-0"
|
|
40009
|
-
})(["", ""], function (_ref) {
|
|
40010
|
-
var extraStyles = _ref.extraStyles;
|
|
40011
|
-
return extraStyles;
|
|
40012
|
-
});
|
|
40013
|
-
|
|
40014
|
-
var TableCell_styled = styled.td.withConfig({
|
|
40015
|
-
displayName: "TableCellstyled",
|
|
40016
|
-
componentId: "sc-iqndn8-0"
|
|
40017
|
-
})(["padding:", ";font-size:", " white-space:nowrap;max-width:", ";overflow:hidden;text-overflow:ellipsis;&:last-child{text-align:right;}", ";"], function (_ref) {
|
|
40018
|
-
var _ref$padding = _ref.padding,
|
|
40019
|
-
padding = _ref$padding === void 0 ? "24px" : _ref$padding;
|
|
40020
|
-
return padding;
|
|
40021
|
-
}, function (_ref2) {
|
|
40022
|
-
var _ref2$fontSize = _ref2.fontSize,
|
|
40023
|
-
fontSize = _ref2$fontSize === void 0 ? "0.875rem" : _ref2$fontSize;
|
|
40024
|
-
return fontSize;
|
|
40025
|
-
}, function (_ref3) {
|
|
40026
|
-
var _ref3$maxWidth = _ref3.maxWidth,
|
|
40027
|
-
maxWidth = _ref3$maxWidth === void 0 ? "250px" : _ref3$maxWidth;
|
|
40028
|
-
return maxWidth;
|
|
40029
|
-
}, function (_ref4) {
|
|
40030
|
-
var extraStyles = _ref4.extraStyles;
|
|
40031
|
-
return extraStyles;
|
|
40032
|
-
});
|
|
40033
|
-
|
|
40034
|
-
var backgroundColor$7 = ALABASTER_WHITE;
|
|
40035
|
-
var borderColor$3 = GREY_CHATEAU;
|
|
40036
|
-
var fallbackValues$E = {
|
|
40037
|
-
backgroundColor: backgroundColor$7,
|
|
40038
|
-
borderColor: borderColor$3
|
|
40039
|
-
};
|
|
40040
|
-
|
|
40041
|
-
var StyledTableHead = styled.thead.withConfig({
|
|
40042
|
-
displayName: "TableHeadstyled",
|
|
40043
|
-
componentId: "sc-j8e6c1-0"
|
|
40044
|
-
})(["background-color:", ";border-bottom:", ";font-size:", ";"], function (_ref) {
|
|
40045
|
-
var backgroundColor = _ref.backgroundColor;
|
|
40046
|
-
return backgroundColor;
|
|
40047
|
-
}, function (_ref2) {
|
|
40048
|
-
var borderColor = _ref2.borderColor;
|
|
40049
|
-
return "1px solid ".concat(borderColor);
|
|
40050
|
-
}, function (_ref3) {
|
|
40051
|
-
var _ref3$fontSize = _ref3.fontSize,
|
|
40052
|
-
fontSize = _ref3$fontSize === void 0 ? "0.875rem" : _ref3$fontSize;
|
|
40053
|
-
return fontSize;
|
|
40054
|
-
});
|
|
40055
|
-
|
|
40056
|
-
var borderColor$4 = GREY_CHATEAU;
|
|
40057
|
-
var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
|
|
40058
|
-
var fallbackValues$F = {
|
|
40059
|
-
borderColor: borderColor$4,
|
|
40060
|
-
hoverBackgroundColor: hoverBackgroundColor$1
|
|
40061
|
-
};
|
|
40062
|
-
|
|
40063
|
-
var TableRowWrapper = styled.tr.withConfig({
|
|
40064
|
-
displayName: "TableRowstyled",
|
|
40065
|
-
componentId: "sc-1tc0sav-0"
|
|
40066
|
-
})(["&:not(:last-child){border-bottom:", ";}", " ", ""], function (_ref) {
|
|
40067
|
-
var borderColor = _ref.borderColor;
|
|
40068
|
-
return "1px solid ".concat(borderColor);
|
|
40069
|
-
}, function (_ref2) {
|
|
40070
|
-
var hoverCursor = _ref2.hoverCursor,
|
|
40071
|
-
hoverEffect = _ref2.hoverEffect,
|
|
40072
|
-
hoverBackgroundColor = _ref2.hoverBackgroundColor;
|
|
40073
|
-
return hoverEffect && "&:hover {\n ".concat(hoverCursor && "cursor: pointer", ";\n background-color: ").concat(hoverBackgroundColor, ";\n }");
|
|
40074
|
-
}, function (_ref3) {
|
|
40075
|
-
var extraStyles = _ref3.extraStyles;
|
|
40076
|
-
return extraStyles;
|
|
40077
|
-
});
|
|
40078
|
-
|
|
40079
|
-
var _excluded$A = ["children", "extraStyles", "hoverCursor", "hoverEffect", "onClick", "themeValues"];
|
|
40080
|
-
var TableRow = function TableRow(_ref) {
|
|
40081
|
-
var children = _ref.children,
|
|
40082
|
-
extraStyles = _ref.extraStyles,
|
|
40083
|
-
_ref$hoverCursor = _ref.hoverCursor,
|
|
40084
|
-
_ref$hoverEffect = _ref.hoverEffect,
|
|
40085
|
-
hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
|
|
40086
|
-
onClick = _ref.onClick,
|
|
40087
|
-
themeValues = _ref.themeValues,
|
|
40088
|
-
props = _objectWithoutProperties(_ref, _excluded$A);
|
|
40089
|
-
return /*#__PURE__*/React.createElement(TableRowWrapper, _extends({
|
|
40090
|
-
onClick: onClick,
|
|
40091
|
-
hoverEffect: hoverEffect,
|
|
40092
|
-
extraStyles: extraStyles,
|
|
40093
|
-
borderColor: themeValues.borderColor,
|
|
40094
|
-
hoverBackgroundColor: themeValues.hoverBackgroundColor
|
|
40095
|
-
}, props), children);
|
|
40096
|
-
};
|
|
40097
|
-
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$F);
|
|
40098
|
-
|
|
40099
|
-
var TableHead = function TableHead(_ref) {
|
|
40100
|
-
var children = _ref.children,
|
|
40101
|
-
_ref$extraStyles = _ref.extraStyles,
|
|
40102
|
-
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
40103
|
-
themeValues = _ref.themeValues;
|
|
40104
|
-
return /*#__PURE__*/React.createElement(StyledTableHead, {
|
|
40105
|
-
backgroundColor: themeValues.backgroundColor,
|
|
40106
|
-
borderColor: themeValues.borderColor
|
|
40107
|
-
}, /*#__PURE__*/React.createElement(TableRow$1, {
|
|
40108
|
-
extraStyles: extraStyles,
|
|
40109
|
-
hoverEffect: false
|
|
40110
|
-
}, children));
|
|
40111
|
-
};
|
|
40112
|
-
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$E);
|
|
40113
|
-
|
|
40114
|
-
var TableHeading_styled = styled.th.withConfig({
|
|
40115
|
-
displayName: "TableHeadingstyled",
|
|
40116
|
-
componentId: "sc-1ggk38d-0"
|
|
40117
|
-
})(["padding:", ";min-width:", ";text-align:left;&:last-child{text-align:right;}", ""], function (_ref) {
|
|
40118
|
-
var _ref$padding = _ref.padding,
|
|
40119
|
-
padding = _ref$padding === void 0 ? "24px" : _ref$padding;
|
|
40120
|
-
return padding;
|
|
40121
|
-
}, function (_ref2) {
|
|
40122
|
-
var _ref2$minWidth = _ref2.minWidth,
|
|
40123
|
-
minWidth = _ref2$minWidth === void 0 ? "initial" : _ref2$minWidth;
|
|
40124
|
-
return minWidth;
|
|
40125
|
-
}, function (_ref3) {
|
|
40126
|
-
var extraStyles = _ref3.extraStyles;
|
|
40127
|
-
return extraStyles;
|
|
40128
|
-
});
|
|
40129
|
-
|
|
40130
40205
|
const validatorToPredicate =
|
|
40131
40206
|
(validatorFn, emptyCase) =>
|
|
40132
40207
|
(value, ...rest) =>
|
|
@@ -40944,7 +41019,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
|
|
|
40944
41019
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
40945
41020
|
|
|
40946
41021
|
var backgroundColor$8 = "#ebeffb";
|
|
40947
|
-
var fallbackValues$
|
|
41022
|
+
var fallbackValues$H = {
|
|
40948
41023
|
backgroundColor: backgroundColor$8
|
|
40949
41024
|
};
|
|
40950
41025
|
|
|
@@ -40993,7 +41068,7 @@ var Banner = function Banner(_ref) {
|
|
|
40993
41068
|
extraStyles: isMobile && "> svg { width: 176px; }"
|
|
40994
41069
|
}, /*#__PURE__*/React.createElement(Image, null))));
|
|
40995
41070
|
};
|
|
40996
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
41071
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$H);
|
|
40997
41072
|
|
|
40998
41073
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
40999
41074
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -41127,7 +41202,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
41127
41202
|
var titleColor$1 = "#292A33";
|
|
41128
41203
|
var headingBackgroundColor = "transparent";
|
|
41129
41204
|
var bodyBackgroundColor = "transparent";
|
|
41130
|
-
var fallbackValues$
|
|
41205
|
+
var fallbackValues$I = {
|
|
41131
41206
|
titleColor: titleColor$1,
|
|
41132
41207
|
headingBackgroundColor: headingBackgroundColor,
|
|
41133
41208
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -41252,7 +41327,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
41252
41327
|
"aria-labelledby": "".concat(id, "-button")
|
|
41253
41328
|
}, children))));
|
|
41254
41329
|
};
|
|
41255
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
41330
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$I);
|
|
41256
41331
|
|
|
41257
41332
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
41258
41333
|
var themeValues = _ref.themeValues;
|
|
@@ -41832,7 +41907,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
41832
41907
|
|
|
41833
41908
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
41834
41909
|
var subfooterBackgroundColor = STORM_GREY;
|
|
41835
|
-
var fallbackValues$
|
|
41910
|
+
var fallbackValues$J = {
|
|
41836
41911
|
footerBackgroundColor: footerBackgroundColor,
|
|
41837
41912
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
41838
41913
|
};
|
|
@@ -41863,7 +41938,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
41863
41938
|
rightContent: rightSubfooterContent
|
|
41864
41939
|
}));
|
|
41865
41940
|
};
|
|
41866
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
41941
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$J);
|
|
41867
41942
|
|
|
41868
41943
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
41869
41944
|
var fields = _ref.fields,
|
|
@@ -41910,7 +41985,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
|
41910
41985
|
|
|
41911
41986
|
var textColor$4 = "#ffffff";
|
|
41912
41987
|
var backgroundColor$9 = "#182848";
|
|
41913
|
-
var fallbackValues$
|
|
41988
|
+
var fallbackValues$K = {
|
|
41914
41989
|
textColor: textColor$4,
|
|
41915
41990
|
backgroundColor: backgroundColor$9
|
|
41916
41991
|
};
|
|
@@ -41969,7 +42044,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
41969
42044
|
}, t));
|
|
41970
42045
|
}), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
|
|
41971
42046
|
};
|
|
41972
|
-
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
42047
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$K);
|
|
41973
42048
|
|
|
41974
42049
|
var AccountBillIcon = function AccountBillIcon(_ref) {
|
|
41975
42050
|
var color = _ref.color;
|
|
@@ -42385,7 +42460,7 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
|
42385
42460
|
var backgroundColor$a = LINK_WATER;
|
|
42386
42461
|
var borderColor$5 = MOON_RAKER;
|
|
42387
42462
|
var color$b = ROYAL_BLUE_VIVID;
|
|
42388
|
-
var fallbackValues$
|
|
42463
|
+
var fallbackValues$L = {
|
|
42389
42464
|
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
42390
42465
|
disabledBorderColor: disabledBorderColor$1,
|
|
42391
42466
|
disabledColor: disabledColor$1,
|
|
@@ -42506,7 +42581,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
42506
42581
|
extraStyles: "margin-right: auto;"
|
|
42507
42582
|
}), showRight && !!rightContent && rightContent))));
|
|
42508
42583
|
};
|
|
42509
|
-
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$
|
|
42584
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$L, "primary");
|
|
42510
42585
|
|
|
42511
42586
|
var LoginForm = function LoginForm(_ref) {
|
|
42512
42587
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -46511,7 +46586,7 @@ var shadowColor = {
|
|
|
46511
46586
|
profile: "#292A33",
|
|
46512
46587
|
cms: "#292A33"
|
|
46513
46588
|
};
|
|
46514
|
-
var fallbackValues$
|
|
46589
|
+
var fallbackValues$M = {
|
|
46515
46590
|
backgroundColor: backgroundColor$b,
|
|
46516
46591
|
shadowColor: shadowColor
|
|
46517
46592
|
};
|
|
@@ -46551,7 +46626,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
46551
46626
|
onBlur: onBlur
|
|
46552
46627
|
}, menuContent));
|
|
46553
46628
|
};
|
|
46554
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46629
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$M, "profile");
|
|
46555
46630
|
|
|
46556
46631
|
var menu = posed.div({
|
|
46557
46632
|
invisible: {
|
|
@@ -46611,7 +46686,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
46611
46686
|
background: themeValues.backgroundColor
|
|
46612
46687
|
}, menuContent));
|
|
46613
46688
|
};
|
|
46614
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46689
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$M, "profile");
|
|
46615
46690
|
|
|
46616
46691
|
var IconsModule = function IconsModule(_ref) {
|
|
46617
46692
|
var icon = _ref.icon,
|
|
@@ -47138,7 +47213,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
47138
47213
|
};
|
|
47139
47214
|
|
|
47140
47215
|
var iconColor = ROYAL_BLUE_VIVID;
|
|
47141
|
-
var fallbackValues$
|
|
47216
|
+
var fallbackValues$N = {
|
|
47142
47217
|
iconColor: iconColor
|
|
47143
47218
|
};
|
|
47144
47219
|
|
|
@@ -47360,7 +47435,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
47360
47435
|
}))));
|
|
47361
47436
|
return inactive ? inactiveObligation : activeObligation;
|
|
47362
47437
|
};
|
|
47363
|
-
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$
|
|
47438
|
+
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$N);
|
|
47364
47439
|
|
|
47365
47440
|
var PartialAmountField = function PartialAmountField(_ref) {
|
|
47366
47441
|
var lineItem = _ref.lineItem,
|
|
@@ -47497,9 +47572,9 @@ var arrowColor = WHITE;
|
|
|
47497
47572
|
var numberColor = MATISSE_BLUE;
|
|
47498
47573
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47499
47574
|
var activeBackgroundColor$2 = WHITE;
|
|
47500
|
-
var activeColor$
|
|
47501
|
-
var fallbackValues$
|
|
47502
|
-
activeColor: activeColor$
|
|
47575
|
+
var activeColor$9 = MATISSE_BLUE;
|
|
47576
|
+
var fallbackValues$O = {
|
|
47577
|
+
activeColor: activeColor$9,
|
|
47503
47578
|
activeBackgroundColor: activeBackgroundColor$2,
|
|
47504
47579
|
arrowColor: arrowColor,
|
|
47505
47580
|
hoverBackgroundColor: hoverBackgroundColor$2,
|
|
@@ -47692,7 +47767,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47692
47767
|
buttonWidth: buttonWidth
|
|
47693
47768
|
}));
|
|
47694
47769
|
};
|
|
47695
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
47770
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$O);
|
|
47696
47771
|
|
|
47697
47772
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
47698
47773
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -47793,7 +47868,7 @@ var labeledAmountTotal = {
|
|
|
47793
47868
|
"default": "large",
|
|
47794
47869
|
small: "small"
|
|
47795
47870
|
};
|
|
47796
|
-
var fallbackValues$
|
|
47871
|
+
var fallbackValues$P = {
|
|
47797
47872
|
backgroundColor: backgroundColor$c,
|
|
47798
47873
|
lineItem: lineItem,
|
|
47799
47874
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -48162,7 +48237,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48162
48237
|
isError: isError
|
|
48163
48238
|
});
|
|
48164
48239
|
};
|
|
48165
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48240
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$P, "default");
|
|
48166
48241
|
|
|
48167
48242
|
var linkColor$4 = {
|
|
48168
48243
|
"default": "#3176AA"
|
|
@@ -48182,7 +48257,7 @@ var modalLinkHoverFocus = {
|
|
|
48182
48257
|
var linkTextDecoration = {
|
|
48183
48258
|
"default": LINK_TEXT_DECORATION
|
|
48184
48259
|
};
|
|
48185
|
-
var fallbackValues$
|
|
48260
|
+
var fallbackValues$Q = {
|
|
48186
48261
|
linkColor: linkColor$4,
|
|
48187
48262
|
fontSize: fontSize$a,
|
|
48188
48263
|
lineHeight: lineHeight$4,
|
|
@@ -48246,7 +48321,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48246
48321
|
}, link)
|
|
48247
48322
|
}));
|
|
48248
48323
|
};
|
|
48249
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
48324
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$Q, "default");
|
|
48250
48325
|
|
|
48251
48326
|
var backgroundColor$d = {
|
|
48252
48327
|
"default": "#ffffff",
|
|
@@ -48281,7 +48356,7 @@ var modalLinkTextDecoration = {
|
|
|
48281
48356
|
"default": LINK_TEXT_DECORATION,
|
|
48282
48357
|
footer: "none"
|
|
48283
48358
|
};
|
|
48284
|
-
var fallbackValues$
|
|
48359
|
+
var fallbackValues$R = {
|
|
48285
48360
|
backgroundColor: backgroundColor$d,
|
|
48286
48361
|
linkColor: linkColor$5,
|
|
48287
48362
|
border: border$3,
|
|
@@ -48353,7 +48428,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
48353
48428
|
className: "modal-trigger"
|
|
48354
48429
|
}, link));
|
|
48355
48430
|
};
|
|
48356
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48431
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$R, "default");
|
|
48357
48432
|
|
|
48358
48433
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48359
48434
|
var onCheck = _ref.onCheck,
|
|
@@ -49119,7 +49194,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
49119
49194
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49120
49195
|
var borderColor$6 = "".concat(GHOST_GREY);
|
|
49121
49196
|
var focusStyles = "outline: none;";
|
|
49122
|
-
var fallbackValues$
|
|
49197
|
+
var fallbackValues$S = {
|
|
49123
49198
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49124
49199
|
headingDisabledColor: headingDisabledColor,
|
|
49125
49200
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -49422,7 +49497,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49422
49497
|
});
|
|
49423
49498
|
})));
|
|
49424
49499
|
};
|
|
49425
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49500
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$S);
|
|
49426
49501
|
|
|
49427
49502
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49428
49503
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -49542,13 +49617,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
|
49542
49617
|
|
|
49543
49618
|
var GRECIAN_GREY$1 = GRECIAN_GREY;
|
|
49544
49619
|
var bannerBackgroundColor = GRECIAN_GREY$1;
|
|
49545
|
-
var fallbackValues$
|
|
49620
|
+
var fallbackValues$T = {
|
|
49546
49621
|
bannerBackgroundColor: bannerBackgroundColor
|
|
49547
49622
|
};
|
|
49548
49623
|
|
|
49549
49624
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
49550
49625
|
var themeContext = useContext(ThemeContext);
|
|
49551
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49626
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetConfirmationForm");
|
|
49552
49627
|
var isMobile = themeContext.isMobile;
|
|
49553
49628
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49554
49629
|
padding: "0",
|
|
@@ -49663,13 +49738,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
|
49663
49738
|
|
|
49664
49739
|
var GRECIAN_GREY$2 = GRECIAN_GREY;
|
|
49665
49740
|
var bannerBackgroundColor$1 = GRECIAN_GREY$2;
|
|
49666
|
-
var fallbackValues$
|
|
49741
|
+
var fallbackValues$U = {
|
|
49667
49742
|
bannerBackgroundColor: bannerBackgroundColor$1
|
|
49668
49743
|
};
|
|
49669
49744
|
|
|
49670
49745
|
var ResetPasswordSuccess = function ResetPasswordSuccess() {
|
|
49671
49746
|
var themeContext = useContext(ThemeContext);
|
|
49672
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49747
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$U, "ResetPasswordSuccess");
|
|
49673
49748
|
var isMobile = themeContext.isMobile;
|
|
49674
49749
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49675
49750
|
padding: "0",
|
|
@@ -49718,7 +49793,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
|
|
|
49718
49793
|
var activeTabBackground = "#FFFFFF";
|
|
49719
49794
|
var activeTabAccent = "#15749D";
|
|
49720
49795
|
var activeTabHover = "#B8D5E1";
|
|
49721
|
-
var fallbackValues$
|
|
49796
|
+
var fallbackValues$V = {
|
|
49722
49797
|
activeTabBackground: activeTabBackground,
|
|
49723
49798
|
activeTabAccent: activeTabAccent,
|
|
49724
49799
|
activeTabHover: activeTabHover
|
|
@@ -49786,12 +49861,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49786
49861
|
}, tab.content);
|
|
49787
49862
|
}))));
|
|
49788
49863
|
};
|
|
49789
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49864
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$V);
|
|
49790
49865
|
|
|
49791
49866
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49792
49867
|
var activeTabAccent$1 = "#15749D";
|
|
49793
49868
|
var activeTabHover$1 = "#B8D5E1";
|
|
49794
|
-
var fallbackValues$
|
|
49869
|
+
var fallbackValues$W = {
|
|
49795
49870
|
activeTabBackground: activeTabBackground$1,
|
|
49796
49871
|
activeTabAccent: activeTabAccent$1,
|
|
49797
49872
|
activeTabHover: activeTabHover$1
|
|
@@ -49846,7 +49921,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49846
49921
|
}, text)))));
|
|
49847
49922
|
})));
|
|
49848
49923
|
};
|
|
49849
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49924
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$W);
|
|
49850
49925
|
|
|
49851
49926
|
var Timeout = function Timeout(_ref) {
|
|
49852
49927
|
var onLogout = _ref.onLogout;
|
|
@@ -49967,7 +50042,7 @@ var fontColor$1 = WHITE;
|
|
|
49967
50042
|
var textAlign$1 = "left";
|
|
49968
50043
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49969
50044
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49970
|
-
var fallbackValues$
|
|
50045
|
+
var fallbackValues$X = {
|
|
49971
50046
|
fontWeight: fontWeight$8,
|
|
49972
50047
|
fontColor: fontColor$1,
|
|
49973
50048
|
textAlign: textAlign$1,
|
|
@@ -50012,7 +50087,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
50012
50087
|
src: welcomeImage
|
|
50013
50088
|
})))));
|
|
50014
50089
|
};
|
|
50015
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
50090
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$X));
|
|
50016
50091
|
|
|
50017
50092
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
50018
50093
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -50072,7 +50147,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
50072
50147
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
50073
50148
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
50074
50149
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
50075
|
-
var fallbackValues$
|
|
50150
|
+
var fallbackValues$Y = {
|
|
50076
50151
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
50077
50152
|
menuItemColor: menuItemColor,
|
|
50078
50153
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -50139,15 +50214,15 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
50139
50214
|
extraStyles: textExtraStyles
|
|
50140
50215
|
}, text)));
|
|
50141
50216
|
};
|
|
50142
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
50217
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$Y);
|
|
50143
50218
|
|
|
50144
50219
|
var hoverColor$5 = "#116285";
|
|
50145
|
-
var activeColor$
|
|
50220
|
+
var activeColor$a = "#0E506D";
|
|
50146
50221
|
var menuTriggerColor = "#15749D";
|
|
50147
50222
|
var backgroundColor$e = "white";
|
|
50148
|
-
var fallbackValues$
|
|
50223
|
+
var fallbackValues$Z = {
|
|
50149
50224
|
hoverColor: hoverColor$5,
|
|
50150
|
-
activeColor: activeColor$
|
|
50225
|
+
activeColor: activeColor$a,
|
|
50151
50226
|
menuTriggerColor: menuTriggerColor,
|
|
50152
50227
|
backgroundColor: backgroundColor$e
|
|
50153
50228
|
};
|
|
@@ -50281,10 +50356,10 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
50281
50356
|
}, item));
|
|
50282
50357
|
})));
|
|
50283
50358
|
};
|
|
50284
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$
|
|
50359
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Z);
|
|
50285
50360
|
|
|
50286
50361
|
var pageBackground = "#FBFCFD";
|
|
50287
|
-
var fallbackValues$
|
|
50362
|
+
var fallbackValues$_ = {
|
|
50288
50363
|
pageBackground: pageBackground
|
|
50289
50364
|
};
|
|
50290
50365
|
|
|
@@ -50332,7 +50407,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
50332
50407
|
padding: "0"
|
|
50333
50408
|
})));
|
|
50334
50409
|
};
|
|
50335
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50410
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$_));
|
|
50336
50411
|
|
|
50337
50412
|
var CenterStack = function CenterStack(_ref) {
|
|
50338
50413
|
var header = _ref.header,
|
|
@@ -50375,7 +50450,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
50375
50450
|
padding: "0"
|
|
50376
50451
|
})));
|
|
50377
50452
|
};
|
|
50378
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50453
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$_));
|
|
50379
50454
|
|
|
50380
50455
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
50381
50456
|
var header = _ref.header,
|
|
@@ -50421,7 +50496,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50421
50496
|
padding: "0"
|
|
50422
50497
|
})));
|
|
50423
50498
|
};
|
|
50424
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50499
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$_));
|
|
50425
50500
|
|
|
50426
50501
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50427
50502
|
var header = _ref.header,
|
|
@@ -50474,7 +50549,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50474
50549
|
padding: "0"
|
|
50475
50550
|
})));
|
|
50476
50551
|
};
|
|
50477
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50552
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$_));
|
|
50478
50553
|
|
|
50479
50554
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50480
50555
|
var header = _ref.header,
|
|
@@ -50544,7 +50619,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50544
50619
|
key: "footer-box"
|
|
50545
50620
|
})));
|
|
50546
50621
|
};
|
|
50547
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50622
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$_));
|
|
50548
50623
|
|
|
50549
50624
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
50550
50625
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -50576,5 +50651,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
|
|
|
50576
50651
|
useToastNotification: useToastNotification
|
|
50577
50652
|
});
|
|
50578
50653
|
|
|
50579
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead,
|
|
50654
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, SortableTableHeading$1 as SortableTableHeading, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
|
|
50580
50655
|
//# sourceMappingURL=index.esm.js.map
|