@thecb/components 10.9.0 → 10.10.0-beta.0
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 +352 -276
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +30 -1
- package/dist/index.esm.js +349 -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 +44 -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 +17 -0
- package/src/components/atoms/sortable-table-heading/index.js +3 -0
- package/src/components/atoms/table/Table.stories.js +80 -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,175 @@ 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 headingConfig = _ref.headingConfig,
|
|
23636
|
+
_ref$sortOrder = _ref.sortOrder,
|
|
23637
|
+
sortOrder = _ref$sortOrder === void 0 ? null : _ref$sortOrder,
|
|
23638
|
+
onSortChange = _ref.onSortChange,
|
|
23639
|
+
themeValues = _ref.themeValues;
|
|
23640
|
+
var getCaretColor = function getCaretColor(order) {
|
|
23641
|
+
if (sortOrder === order) {
|
|
23642
|
+
return themeValues.activeColor;
|
|
23643
|
+
}
|
|
23644
|
+
return themeValues.inactiveColor;
|
|
23645
|
+
};
|
|
23646
|
+
return /*#__PURE__*/React.createElement(TableHeading, {
|
|
23647
|
+
extraStyles: "cursor: pointer;",
|
|
23648
|
+
onClick: onSortChange
|
|
23649
|
+
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
23650
|
+
justify: "space-between"
|
|
23651
|
+
}, headingConfig.displayName, /*#__PURE__*/React.createElement(Stack, {
|
|
23652
|
+
justify: "center",
|
|
23653
|
+
childGap: "2px"
|
|
23654
|
+
}, /*#__PURE__*/React.createElement(CaretArrowUp$1, {
|
|
23655
|
+
color: getCaretColor("asc"),
|
|
23656
|
+
activeColor: themeValues.activeColor
|
|
23657
|
+
}), /*#__PURE__*/React.createElement(CaretArrowDown$1, {
|
|
23658
|
+
color: getCaretColor("desc"),
|
|
23659
|
+
activeColor: themeValues.activeColor
|
|
23660
|
+
}))));
|
|
23661
|
+
};
|
|
23662
|
+
var SortableTableHeading$1 = themeComponent(SortableTableHeading, "SortableTableHeading", fallbackValues$f);
|
|
23663
|
+
|
|
23459
23664
|
var DropdownIcon = function DropdownIcon() {
|
|
23460
23665
|
return /*#__PURE__*/React.createElement("svg", {
|
|
23461
23666
|
version: "1.2",
|
|
@@ -24791,7 +24996,7 @@ exportTypedArrayMethod$1('at', function at(index) {
|
|
|
24791
24996
|
var selectedColor = "".concat(MATISSE_BLUE);
|
|
24792
24997
|
var hoverColor$3 = "".concat(HOVER_LIGHT_BLUE);
|
|
24793
24998
|
var focusColor = "".concat(MATISSE_BLUE_DARK);
|
|
24794
|
-
var fallbackValues$
|
|
24999
|
+
var fallbackValues$i = {
|
|
24795
25000
|
selectedColor: selectedColor,
|
|
24796
25001
|
hoverColor: hoverColor$3,
|
|
24797
25002
|
focusColor: focusColor
|
|
@@ -25192,7 +25397,7 @@ var Dropdown = function Dropdown(_ref13) {
|
|
|
25192
25397
|
}, choice.text)));
|
|
25193
25398
|
}))) : /*#__PURE__*/React.createElement(Fragment$1, null)));
|
|
25194
25399
|
};
|
|
25195
|
-
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$
|
|
25400
|
+
var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$i);
|
|
25196
25401
|
|
|
25197
25402
|
var SelectContainer = styled.div.withConfig({
|
|
25198
25403
|
displayName: "FormSelectstyled__SelectContainer",
|
|
@@ -25239,7 +25444,7 @@ var labelColor = {
|
|
|
25239
25444
|
"default": "".concat(CHARADE_GREY),
|
|
25240
25445
|
disabled: "".concat(CHARADE_GREY)
|
|
25241
25446
|
};
|
|
25242
|
-
var borderColor = {
|
|
25447
|
+
var borderColor$2 = {
|
|
25243
25448
|
"default": "".concat(GREY_CHATEAU),
|
|
25244
25449
|
disabled: "".concat(GREY_CHATEAU)
|
|
25245
25450
|
};
|
|
@@ -25263,13 +25468,13 @@ var hoverFocusStyles = {
|
|
|
25263
25468
|
"default": "color: #0E506D; outline: none; text-decoration: underline; ",
|
|
25264
25469
|
disabled: "color: #6D717E;"
|
|
25265
25470
|
};
|
|
25266
|
-
var fallbackValues$
|
|
25471
|
+
var fallbackValues$j = {
|
|
25267
25472
|
linkColor: linkColor$1,
|
|
25268
25473
|
formBackgroundColor: formBackgroundColor,
|
|
25269
25474
|
inputBackgroundColor: inputBackgroundColor,
|
|
25270
25475
|
color: color$6,
|
|
25271
25476
|
labelColor: labelColor,
|
|
25272
|
-
borderColor: borderColor,
|
|
25477
|
+
borderColor: borderColor$2,
|
|
25273
25478
|
lineHeight: lineHeight$1,
|
|
25274
25479
|
fontSize: fontSize$4,
|
|
25275
25480
|
errorFontSize: errorFontSize,
|
|
@@ -25375,7 +25580,7 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
25375
25580
|
extraStyles: "height: ".concat(themeValues.lineHeight, ";")
|
|
25376
25581
|
})));
|
|
25377
25582
|
};
|
|
25378
|
-
var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$
|
|
25583
|
+
var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$j, "default");
|
|
25379
25584
|
|
|
25380
25585
|
var options = [{
|
|
25381
25586
|
text: "Afghanistan",
|
|
@@ -26198,7 +26403,7 @@ var mobileFontSize$1 = {
|
|
|
26198
26403
|
// 12px
|
|
26199
26404
|
extraSmall: "0.71428rem" // 10px
|
|
26200
26405
|
};
|
|
26201
|
-
var fallbackValues$
|
|
26406
|
+
var fallbackValues$k = {
|
|
26202
26407
|
fontFamily: fontFamily$4,
|
|
26203
26408
|
fontSize: fontSize$5
|
|
26204
26409
|
};
|
|
@@ -26208,7 +26413,7 @@ var mobileFallbackValues$1 = {
|
|
|
26208
26413
|
};
|
|
26209
26414
|
var MOBILE_BREAKPOINT$1 = 768;
|
|
26210
26415
|
|
|
26211
|
-
var _excluded$
|
|
26416
|
+
var _excluded$s = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
26212
26417
|
|
|
26213
26418
|
/*
|
|
26214
26419
|
New responsive text component for Detail elements
|
|
@@ -26239,7 +26444,7 @@ var _excluded$r = ["themeValues", "weight", "color", "margin", "textAlign", "ext
|
|
|
26239
26444
|
var isBelowBreakpoint$1 = window.innerWidth < MOBILE_BREAKPOINT$1;
|
|
26240
26445
|
var isTouchDevice$2 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
|
|
26241
26446
|
var mobileDeviceDetected$1 = isBelowBreakpoint$1 && isTouchDevice$2;
|
|
26242
|
-
var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$
|
|
26447
|
+
var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$k;
|
|
26243
26448
|
var Detail = function Detail(_ref) {
|
|
26244
26449
|
var themeValues = _ref.themeValues,
|
|
26245
26450
|
_ref$weight = _ref.weight,
|
|
@@ -26258,7 +26463,7 @@ var Detail = function Detail(_ref) {
|
|
|
26258
26463
|
as = _ref$as === void 0 ? "p" : _ref$as,
|
|
26259
26464
|
dataQa = _ref.dataQa,
|
|
26260
26465
|
children = _ref.children,
|
|
26261
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26466
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
26262
26467
|
return /*#__PURE__*/React.createElement(DetailText, _extends({
|
|
26263
26468
|
variant: variant,
|
|
26264
26469
|
as: as,
|
|
@@ -26275,10 +26480,10 @@ var Detail = function Detail(_ref) {
|
|
|
26275
26480
|
};
|
|
26276
26481
|
var Detail$1 = themeComponent(Detail, "Detail", fallbacks$1, "regular");
|
|
26277
26482
|
|
|
26278
|
-
var backgroundColor$
|
|
26483
|
+
var backgroundColor$4 = WHITE;
|
|
26279
26484
|
var boxShadow = "0px 2px 14px 0px ".concat(ATHENS_GREY, ", 0px 3px 8px 0px ").concat(GHOST_GREY);
|
|
26280
|
-
var fallbackValues$
|
|
26281
|
-
backgroundColor: backgroundColor$
|
|
26485
|
+
var fallbackValues$l = {
|
|
26486
|
+
backgroundColor: backgroundColor$4,
|
|
26282
26487
|
boxShadow: boxShadow
|
|
26283
26488
|
};
|
|
26284
26489
|
|
|
@@ -26300,7 +26505,7 @@ var DisplayBox = function DisplayBox(_ref) {
|
|
|
26300
26505
|
dataQa: dataQa
|
|
26301
26506
|
}, children));
|
|
26302
26507
|
};
|
|
26303
|
-
var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$
|
|
26508
|
+
var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$l);
|
|
26304
26509
|
|
|
26305
26510
|
/*
|
|
26306
26511
|
Hook that assigns a click event listener to the main document element
|
|
@@ -26418,11 +26623,11 @@ var index$5 = /*#__PURE__*/Object.freeze({
|
|
|
26418
26623
|
});
|
|
26419
26624
|
|
|
26420
26625
|
var hoverColor$4 = "#116285";
|
|
26421
|
-
var activeColor$
|
|
26626
|
+
var activeColor$5 = "#0E506D";
|
|
26422
26627
|
var popoverTriggerColor = "#15749D";
|
|
26423
|
-
var fallbackValues$
|
|
26628
|
+
var fallbackValues$m = {
|
|
26424
26629
|
hoverColor: hoverColor$4,
|
|
26425
|
-
activeColor: activeColor$
|
|
26630
|
+
activeColor: activeColor$5,
|
|
26426
26631
|
popoverTriggerColor: popoverTriggerColor
|
|
26427
26632
|
};
|
|
26428
26633
|
|
|
@@ -26570,7 +26775,7 @@ var Popover = function Popover(_ref) {
|
|
|
26570
26775
|
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
26776
|
})));
|
|
26572
26777
|
};
|
|
26573
|
-
var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$
|
|
26778
|
+
var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$m);
|
|
26574
26779
|
|
|
26575
26780
|
var DisplayCard = function DisplayCard(_ref) {
|
|
26576
26781
|
var title = _ref.title,
|
|
@@ -26943,7 +27148,7 @@ var labelColor$1 = {
|
|
|
26943
27148
|
"default": "".concat(CHARADE_GREY),
|
|
26944
27149
|
disabled: "".concat(CHARADE_GREY)
|
|
26945
27150
|
};
|
|
26946
|
-
var borderColor$
|
|
27151
|
+
var borderColor$3 = {
|
|
26947
27152
|
"default": "".concat(STORM_GREY),
|
|
26948
27153
|
disabled: "".concat(STORM_GREY)
|
|
26949
27154
|
};
|
|
@@ -26970,13 +27175,13 @@ var hoverFocusStyles$1 = {
|
|
|
26970
27175
|
var formFooterPanel = {
|
|
26971
27176
|
"default": "".concat(INFO_BLUE)
|
|
26972
27177
|
};
|
|
26973
|
-
var fallbackValues$
|
|
27178
|
+
var fallbackValues$n = {
|
|
26974
27179
|
linkColor: linkColor$2,
|
|
26975
27180
|
formBackgroundColor: formBackgroundColor$1,
|
|
26976
27181
|
inputBackgroundColor: inputBackgroundColor$1,
|
|
26977
27182
|
color: color$7,
|
|
26978
27183
|
labelColor: labelColor$1,
|
|
26979
|
-
borderColor: borderColor$
|
|
27184
|
+
borderColor: borderColor$3,
|
|
26980
27185
|
lineHeight: lineHeight$2,
|
|
26981
27186
|
fontSize: fontSize$6,
|
|
26982
27187
|
errorFontSize: errorFontSize$1,
|
|
@@ -26985,7 +27190,7 @@ var fallbackValues$k = {
|
|
|
26985
27190
|
formFooterPanel: formFooterPanel
|
|
26986
27191
|
};
|
|
26987
27192
|
|
|
26988
|
-
var _excluded$
|
|
27193
|
+
var _excluded$t = ["showErrors", "themeValues"],
|
|
26989
27194
|
_excluded2 = ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "autocompleteValue", "extraStyles", "removeFromValue", "dataQa", "isRequired"];
|
|
26990
27195
|
var InputField = styled.input.withConfig({
|
|
26991
27196
|
displayName: "FormInput__InputField",
|
|
@@ -27020,7 +27225,7 @@ var InputField = styled.input.withConfig({
|
|
|
27020
27225
|
var FormattedInputField = styled(function (_ref8) {
|
|
27021
27226
|
var showErrors = _ref8.showErrors,
|
|
27022
27227
|
themeValues = _ref8.themeValues,
|
|
27023
|
-
props = _objectWithoutProperties(_ref8, _excluded$
|
|
27228
|
+
props = _objectWithoutProperties(_ref8, _excluded$t);
|
|
27024
27229
|
return /*#__PURE__*/React.createElement(FormattedInput, props);
|
|
27025
27230
|
}).withConfig({
|
|
27026
27231
|
displayName: "FormInput__FormattedInputField",
|
|
@@ -27216,9 +27421,9 @@ var FormInput = function FormInput(_ref15) {
|
|
|
27216
27421
|
padding: "0 0 0 auto"
|
|
27217
27422
|
}, decorator)));
|
|
27218
27423
|
};
|
|
27219
|
-
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$
|
|
27424
|
+
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$n, "default");
|
|
27220
27425
|
|
|
27221
|
-
var _excluded$
|
|
27426
|
+
var _excluded$u = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
|
|
27222
27427
|
var FormInputRow = function FormInputRow(_ref) {
|
|
27223
27428
|
var _ref$breakpoint = _ref.breakpoint,
|
|
27224
27429
|
breakpoint = _ref$breakpoint === void 0 ? "30rem" : _ref$breakpoint,
|
|
@@ -27227,7 +27432,7 @@ var FormInputRow = function FormInputRow(_ref) {
|
|
|
27227
27432
|
largeChild = _ref.largeChild,
|
|
27228
27433
|
largeChildSize = _ref.largeChildSize,
|
|
27229
27434
|
children = _ref.children,
|
|
27230
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27435
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
27231
27436
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
27232
27437
|
padding: "0"
|
|
27233
27438
|
}, rest), /*#__PURE__*/React.createElement(Switcher, {
|
|
@@ -27238,24 +27443,24 @@ var FormInputRow = function FormInputRow(_ref) {
|
|
|
27238
27443
|
}, children));
|
|
27239
27444
|
};
|
|
27240
27445
|
|
|
27241
|
-
var _excluded$
|
|
27446
|
+
var _excluded$v = ["childGap", "bottomItem", "children"];
|
|
27242
27447
|
var FormInputColumn = function FormInputColumn(_ref) {
|
|
27243
27448
|
var _ref$childGap = _ref.childGap,
|
|
27244
27449
|
childGap = _ref$childGap === void 0 ? "0.5rem" : _ref$childGap,
|
|
27245
27450
|
bottomItem = _ref.bottomItem,
|
|
27246
27451
|
children = _ref.children,
|
|
27247
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27452
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
27248
27453
|
return /*#__PURE__*/React.createElement(Stack, _extends({
|
|
27249
27454
|
childGap: childGap,
|
|
27250
27455
|
bottomItem: bottomItem
|
|
27251
27456
|
}, rest), children);
|
|
27252
27457
|
};
|
|
27253
27458
|
|
|
27254
|
-
var _excluded$
|
|
27459
|
+
var _excluded$w = ["themeValues", "children"];
|
|
27255
27460
|
var FormContainer = function FormContainer(_ref) {
|
|
27256
27461
|
var themeValues = _ref.themeValues,
|
|
27257
27462
|
children = _ref.children,
|
|
27258
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27463
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
27259
27464
|
var _useContext = useContext(ThemeContext),
|
|
27260
27465
|
isMobile = _useContext.isMobile;
|
|
27261
27466
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
@@ -27264,7 +27469,7 @@ var FormContainer = function FormContainer(_ref) {
|
|
|
27264
27469
|
borderRadius: "4px"
|
|
27265
27470
|
}, rest), children);
|
|
27266
27471
|
};
|
|
27267
|
-
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$
|
|
27472
|
+
var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$n, "default");
|
|
27268
27473
|
|
|
27269
27474
|
var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
27270
27475
|
var themeValues = _ref.themeValues,
|
|
@@ -27285,7 +27490,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
|
|
|
27285
27490
|
text: linkText
|
|
27286
27491
|
})));
|
|
27287
27492
|
};
|
|
27288
|
-
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$
|
|
27493
|
+
var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$n, "default");
|
|
27289
27494
|
|
|
27290
27495
|
var fontSize$7 = {
|
|
27291
27496
|
"default": "1rem",
|
|
@@ -27299,7 +27504,7 @@ var color$8 = {
|
|
|
27299
27504
|
"default": "".concat(CHARADE_GREY),
|
|
27300
27505
|
radio: "".concat(MINESHAFT_GREY)
|
|
27301
27506
|
};
|
|
27302
|
-
var fallbackValues$
|
|
27507
|
+
var fallbackValues$o = {
|
|
27303
27508
|
fontSize: fontSize$7,
|
|
27304
27509
|
padding: padding$1,
|
|
27305
27510
|
color: color$8
|
|
@@ -27341,11 +27546,11 @@ var FormattedAddress = function FormattedAddress(_ref) {
|
|
|
27341
27546
|
dataQa: "".concat(qaPrefix, "-3")
|
|
27342
27547
|
}, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
|
|
27343
27548
|
};
|
|
27344
|
-
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$
|
|
27549
|
+
var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$o, "default");
|
|
27345
27550
|
|
|
27346
27551
|
var textColor$1 = "".concat(CHARADE_GREY);
|
|
27347
27552
|
var autopayTextColor = "".concat(REGENT_GREY);
|
|
27348
|
-
var fallbackValues$
|
|
27553
|
+
var fallbackValues$p = {
|
|
27349
27554
|
textColor: textColor$1,
|
|
27350
27555
|
autopayTextColor: autopayTextColor
|
|
27351
27556
|
};
|
|
@@ -27383,11 +27588,11 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
|
|
|
27383
27588
|
extraStyles: "font-style: italic;"
|
|
27384
27589
|
}, "Autopay Enabled")));
|
|
27385
27590
|
};
|
|
27386
|
-
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$
|
|
27591
|
+
var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$p);
|
|
27387
27592
|
|
|
27388
27593
|
var textColor$2 = "".concat(CHARADE_GREY);
|
|
27389
27594
|
var autopayTextColor$1 = "".concat(REGENT_GREY);
|
|
27390
|
-
var fallbackValues$
|
|
27595
|
+
var fallbackValues$q = {
|
|
27391
27596
|
textColor: textColor$2,
|
|
27392
27597
|
autopayTextColor: autopayTextColor$1
|
|
27393
27598
|
};
|
|
@@ -27479,7 +27684,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
|
|
|
27479
27684
|
extraStyles: "font-style: italic;"
|
|
27480
27685
|
}, "Autopay Enabled")));
|
|
27481
27686
|
};
|
|
27482
|
-
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$
|
|
27687
|
+
var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$q);
|
|
27483
27688
|
|
|
27484
27689
|
var Hamburger = styled.button.withConfig({
|
|
27485
27690
|
displayName: "HamburgerButton__Hamburger",
|
|
@@ -27560,12 +27765,12 @@ var fontSize$8 = {
|
|
|
27560
27765
|
h5: "1.375rem",
|
|
27561
27766
|
h6: "1.25rem"
|
|
27562
27767
|
};
|
|
27563
|
-
var fallbackValues$
|
|
27768
|
+
var fallbackValues$r = {
|
|
27564
27769
|
fontFamily: fontFamily$5,
|
|
27565
27770
|
fontSize: fontSize$8
|
|
27566
27771
|
};
|
|
27567
27772
|
|
|
27568
|
-
var _excluded$
|
|
27773
|
+
var _excluded$x = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
27569
27774
|
var Heading = function Heading(_ref) {
|
|
27570
27775
|
var themeValues = _ref.themeValues,
|
|
27571
27776
|
_ref$weight = _ref.weight,
|
|
@@ -27584,7 +27789,7 @@ var Heading = function Heading(_ref) {
|
|
|
27584
27789
|
as = _ref$as === void 0 ? variant : _ref$as,
|
|
27585
27790
|
dataQa = _ref.dataQa,
|
|
27586
27791
|
children = _ref.children,
|
|
27587
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27792
|
+
rest = _objectWithoutProperties(_ref, _excluded$x);
|
|
27588
27793
|
return /*#__PURE__*/React.createElement(HeadingText, _extends({
|
|
27589
27794
|
variant: variant,
|
|
27590
27795
|
as: as,
|
|
@@ -27599,7 +27804,7 @@ var Heading = function Heading(_ref) {
|
|
|
27599
27804
|
"data-qa": dataQa
|
|
27600
27805
|
}, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
|
|
27601
27806
|
};
|
|
27602
|
-
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$
|
|
27807
|
+
var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$r, "h1");
|
|
27603
27808
|
|
|
27604
27809
|
var Image = styled.img.withConfig({
|
|
27605
27810
|
displayName: "ImageBoxstyled__Image",
|
|
@@ -27734,7 +27939,7 @@ var fontWeight$4 = {
|
|
|
27734
27939
|
// fontsize Detail regular
|
|
27735
27940
|
large: "700" // fontsize Title small
|
|
27736
27941
|
};
|
|
27737
|
-
var fallbackValues$
|
|
27942
|
+
var fallbackValues$s = {
|
|
27738
27943
|
fontWeight: fontWeight$4
|
|
27739
27944
|
};
|
|
27740
27945
|
|
|
@@ -27785,15 +27990,15 @@ var LabeledAmountV2 = function LabeledAmountV2(_ref) {
|
|
|
27785
27990
|
}, /*#__PURE__*/React.createElement("span", null, label), /*#__PURE__*/React.createElement("span", null, amount));
|
|
27786
27991
|
};
|
|
27787
27992
|
|
|
27788
|
-
var _excluded$
|
|
27993
|
+
var _excluded$y = ["version"];
|
|
27789
27994
|
var LabeledAmount = function LabeledAmount(_ref) {
|
|
27790
27995
|
var _ref$version = _ref.version,
|
|
27791
27996
|
version = _ref$version === void 0 ? "v1" : _ref$version,
|
|
27792
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
27997
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
27793
27998
|
var LabeledAmountComponent = version === "v1" ? LabeledAmountV1 : LabeledAmountV2;
|
|
27794
27999
|
return /*#__PURE__*/React.createElement(LabeledAmountComponent, rest);
|
|
27795
28000
|
};
|
|
27796
|
-
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$
|
|
28001
|
+
var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$s, "default");
|
|
27797
28002
|
|
|
27798
28003
|
var weightTitle = {
|
|
27799
28004
|
"default": "600",
|
|
@@ -27803,7 +28008,7 @@ var detailVariant = {
|
|
|
27803
28008
|
"default": "large",
|
|
27804
28009
|
small: "small"
|
|
27805
28010
|
};
|
|
27806
|
-
var fallbackValues$
|
|
28011
|
+
var fallbackValues$t = {
|
|
27807
28012
|
weightTitle: weightTitle,
|
|
27808
28013
|
detailVariant: detailVariant
|
|
27809
28014
|
};
|
|
@@ -27851,10 +28056,10 @@ var LineItem = function LineItem(_ref) {
|
|
|
27851
28056
|
childGap: "0.25rem"
|
|
27852
28057
|
}, visibleCustomAttrs));
|
|
27853
28058
|
};
|
|
27854
|
-
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$
|
|
28059
|
+
var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$t, "default");
|
|
27855
28060
|
|
|
27856
28061
|
var color$9 = "#15749D";
|
|
27857
|
-
var fallbackValues$
|
|
28062
|
+
var fallbackValues$u = {
|
|
27858
28063
|
color: color$9
|
|
27859
28064
|
};
|
|
27860
28065
|
|
|
@@ -27918,7 +28123,7 @@ var Spinner$1 = function Spinner(_ref6) {
|
|
|
27918
28123
|
strokeWidth: strokeWidth
|
|
27919
28124
|
})));
|
|
27920
28125
|
};
|
|
27921
|
-
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$
|
|
28126
|
+
var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$u);
|
|
27922
28127
|
|
|
27923
28128
|
var Loading = function Loading() {
|
|
27924
28129
|
return /*#__PURE__*/React.createElement(Box, {
|
|
@@ -27934,7 +28139,7 @@ var Loading = function Loading() {
|
|
|
27934
28139
|
})))));
|
|
27935
28140
|
};
|
|
27936
28141
|
|
|
27937
|
-
var _excluded$
|
|
28142
|
+
var _excluded$z = ["leftContent", "rightContent", "footerMinHeight", "backgroundColor", "largeSide", "largeSideSize", "footerPadding", "isMobile", "footerWidth"];
|
|
27938
28143
|
var NavFooter = function NavFooter(_ref) {
|
|
27939
28144
|
var leftContent = _ref.leftContent,
|
|
27940
28145
|
rightContent = _ref.rightContent,
|
|
@@ -27949,7 +28154,7 @@ var NavFooter = function NavFooter(_ref) {
|
|
|
27949
28154
|
footerPadding = _ref$footerPadding === void 0 ? "1.5rem 1rem" : _ref$footerPadding,
|
|
27950
28155
|
isMobile = _ref.isMobile,
|
|
27951
28156
|
footerWidth = _ref.footerWidth,
|
|
27952
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
28157
|
+
rest = _objectWithoutProperties(_ref, _excluded$z);
|
|
27953
28158
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
27954
28159
|
padding: footerPadding,
|
|
27955
28160
|
background: backgroundColor,
|
|
@@ -27980,7 +28185,7 @@ var NavFooter = function NavFooter(_ref) {
|
|
|
27980
28185
|
}, rightContent)))))));
|
|
27981
28186
|
};
|
|
27982
28187
|
|
|
27983
|
-
var _excluded$
|
|
28188
|
+
var _excluded$A = ["leftContent", "rightContent", "headerHeight", "isMobile", "backgroundColor", "headerWidth"];
|
|
27984
28189
|
var NavHeader = function NavHeader(_ref) {
|
|
27985
28190
|
var leftContent = _ref.leftContent,
|
|
27986
28191
|
rightContent = _ref.rightContent,
|
|
@@ -27989,7 +28194,7 @@ var NavHeader = function NavHeader(_ref) {
|
|
|
27989
28194
|
isMobile = _ref.isMobile,
|
|
27990
28195
|
backgroundColor = _ref.backgroundColor,
|
|
27991
28196
|
headerWidth = _ref.headerWidth,
|
|
27992
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
28197
|
+
rest = _objectWithoutProperties(_ref, _excluded$A);
|
|
27993
28198
|
return /*#__PURE__*/React.createElement(Box, _extends({
|
|
27994
28199
|
padding: "0 16px 4px",
|
|
27995
28200
|
background: backgroundColor,
|
|
@@ -28178,7 +28383,7 @@ var height$1 = {
|
|
|
28178
28383
|
"default": "3rem",
|
|
28179
28384
|
large: "192px"
|
|
28180
28385
|
};
|
|
28181
|
-
var fallbackValues$
|
|
28386
|
+
var fallbackValues$v = {
|
|
28182
28387
|
color: color$a,
|
|
28183
28388
|
height: height$1
|
|
28184
28389
|
};
|
|
@@ -28320,13 +28525,13 @@ var Placeholder = function Placeholder(_ref4) {
|
|
|
28320
28525
|
extraStyles: "padding: 0 0 0 8px; text-align: center;"
|
|
28321
28526
|
}, text)))))))))));
|
|
28322
28527
|
};
|
|
28323
|
-
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$
|
|
28528
|
+
var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$v, "default");
|
|
28324
28529
|
|
|
28325
|
-
var backgroundColor$
|
|
28530
|
+
var backgroundColor$5 = {
|
|
28326
28531
|
"default": "".concat(WHITE)
|
|
28327
28532
|
};
|
|
28328
|
-
var fallbackValues$
|
|
28329
|
-
backgroundColor: backgroundColor$
|
|
28533
|
+
var fallbackValues$w = {
|
|
28534
|
+
backgroundColor: backgroundColor$5
|
|
28330
28535
|
};
|
|
28331
28536
|
|
|
28332
28537
|
var ProcessingFee = function ProcessingFee(_ref) {
|
|
@@ -28352,13 +28557,13 @@ var ProcessingFee = function ProcessingFee(_ref) {
|
|
|
28352
28557
|
showQuitLink: false
|
|
28353
28558
|
}));
|
|
28354
28559
|
};
|
|
28355
|
-
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$
|
|
28560
|
+
var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$w, "default");
|
|
28356
28561
|
|
|
28357
|
-
var activeColor$
|
|
28562
|
+
var activeColor$6 = MATISSE_BLUE;
|
|
28358
28563
|
var inactiveBorderColor = GREY_CHATEAU;
|
|
28359
|
-
var fallbackValues$
|
|
28564
|
+
var fallbackValues$x = {
|
|
28360
28565
|
inactiveBorderColor: inactiveBorderColor,
|
|
28361
|
-
activeColor: activeColor$
|
|
28566
|
+
activeColor: activeColor$6
|
|
28362
28567
|
};
|
|
28363
28568
|
|
|
28364
28569
|
var HiddenRadioInput = styled.input.withConfig({
|
|
@@ -28439,13 +28644,13 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
|
|
|
28439
28644
|
inactiveBorderColor: themeValues.inactiveBorderColor
|
|
28440
28645
|
}), labelText));
|
|
28441
28646
|
};
|
|
28442
|
-
var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$
|
|
28647
|
+
var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$x);
|
|
28443
28648
|
|
|
28444
|
-
var activeColor$
|
|
28445
|
-
var inactiveColor = "".concat(STORM_GREY);
|
|
28446
|
-
var fallbackValues$
|
|
28447
|
-
activeColor: activeColor$
|
|
28448
|
-
inactiveColor: inactiveColor
|
|
28649
|
+
var activeColor$7 = "".concat(MATISSE_BLUE);
|
|
28650
|
+
var inactiveColor$1 = "".concat(STORM_GREY);
|
|
28651
|
+
var fallbackValues$y = {
|
|
28652
|
+
activeColor: activeColor$7,
|
|
28653
|
+
inactiveColor: inactiveColor$1
|
|
28449
28654
|
};
|
|
28450
28655
|
|
|
28451
28656
|
var HiddenRadioButton = styled.input.withConfig({
|
|
@@ -28548,11 +28753,11 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
28548
28753
|
borderRadius: "8px"
|
|
28549
28754
|
})));
|
|
28550
28755
|
};
|
|
28551
|
-
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$
|
|
28756
|
+
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$y);
|
|
28552
28757
|
|
|
28553
28758
|
var searchIconColor = WHITE;
|
|
28554
28759
|
var searchIconBackgroundColor = MATISSE_BLUE;
|
|
28555
|
-
var fallbackValues$
|
|
28760
|
+
var fallbackValues$z = {
|
|
28556
28761
|
searchIconColor: searchIconColor,
|
|
28557
28762
|
searchIconBackgroundColor: searchIconBackgroundColor
|
|
28558
28763
|
};
|
|
@@ -28648,12 +28853,12 @@ var Search = function Search(_ref) {
|
|
|
28648
28853
|
size: 24
|
|
28649
28854
|
})));
|
|
28650
28855
|
};
|
|
28651
|
-
var Search$1 = themeComponent(Search, "Search", fallbackValues$
|
|
28856
|
+
var Search$1 = themeComponent(Search, "Search", fallbackValues$z);
|
|
28652
28857
|
|
|
28653
28858
|
var border$2 = {
|
|
28654
28859
|
"default": "1px solid #caced8"
|
|
28655
28860
|
};
|
|
28656
|
-
var fallbackValues$
|
|
28861
|
+
var fallbackValues$A = {
|
|
28657
28862
|
border: border$2
|
|
28658
28863
|
};
|
|
28659
28864
|
|
|
@@ -28726,16 +28931,16 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
28726
28931
|
});
|
|
28727
28932
|
}))));
|
|
28728
28933
|
};
|
|
28729
|
-
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$
|
|
28934
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$A, "default");
|
|
28730
28935
|
|
|
28731
|
-
var borderColor$
|
|
28936
|
+
var borderColor$4 = {
|
|
28732
28937
|
"default": "".concat(GREY_CHATEAU)
|
|
28733
28938
|
};
|
|
28734
28939
|
var borderSize = {
|
|
28735
28940
|
"default": "1px"
|
|
28736
28941
|
};
|
|
28737
|
-
var fallbackValues$
|
|
28738
|
-
borderColor: borderColor$
|
|
28942
|
+
var fallbackValues$B = {
|
|
28943
|
+
borderColor: borderColor$4,
|
|
28739
28944
|
borderSize: borderSize
|
|
28740
28945
|
};
|
|
28741
28946
|
|
|
@@ -28752,7 +28957,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
28752
28957
|
borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
|
|
28753
28958
|
});
|
|
28754
28959
|
};
|
|
28755
|
-
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$
|
|
28960
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$B, "default");
|
|
28756
28961
|
|
|
28757
28962
|
var placeHolderOptionUS = {
|
|
28758
28963
|
text: "Please select state",
|
|
@@ -39338,7 +39543,7 @@ var white = "".concat(WHITE);
|
|
|
39338
39543
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
39339
39544
|
var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
|
|
39340
39545
|
var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
|
|
39341
|
-
var fallbackValues$
|
|
39546
|
+
var fallbackValues$C = {
|
|
39342
39547
|
onBackground: onBackground,
|
|
39343
39548
|
disabledBackground: disabledBackground,
|
|
39344
39549
|
disabledBackgroundLight: disabledBackgroundLight,
|
|
@@ -39515,7 +39720,7 @@ var ToggleSwitch = function ToggleSwitch(_ref10) {
|
|
|
39515
39720
|
padding: "0"
|
|
39516
39721
|
}, label))));
|
|
39517
39722
|
};
|
|
39518
|
-
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$
|
|
39723
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$C);
|
|
39519
39724
|
|
|
39520
39725
|
var background$2 = "".concat(ATHENS_GREY);
|
|
39521
39726
|
var white$1 = "".concat(WHITE);
|
|
@@ -39557,12 +39762,12 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
|
|
|
39557
39762
|
}));
|
|
39558
39763
|
};
|
|
39559
39764
|
|
|
39560
|
-
var backgroundColor$
|
|
39765
|
+
var backgroundColor$6 = WHITE;
|
|
39561
39766
|
var imageBackgroundColor = INFO_BLUE;
|
|
39562
39767
|
var headerBackgroundColor = STORM_GREY;
|
|
39563
39768
|
var headerColor = WHITE;
|
|
39564
|
-
var fallbackValues$
|
|
39565
|
-
backgroundColor: backgroundColor$
|
|
39769
|
+
var fallbackValues$D = {
|
|
39770
|
+
backgroundColor: backgroundColor$6,
|
|
39566
39771
|
imageBackgroundColor: imageBackgroundColor,
|
|
39567
39772
|
headerBackgroundColor: headerBackgroundColor,
|
|
39568
39773
|
headerColor: headerColor
|
|
@@ -39585,7 +39790,7 @@ var CardImage = styled.img.withConfig({
|
|
|
39585
39790
|
var titleColor = BRIGHT_GREY;
|
|
39586
39791
|
var titleWeight = FONT_WEIGHT_BOLD;
|
|
39587
39792
|
var textColor$3 = BRIGHT_GREY;
|
|
39588
|
-
var fallbackValues$
|
|
39793
|
+
var fallbackValues$E = {
|
|
39589
39794
|
titleColor: titleColor,
|
|
39590
39795
|
titleWeight: titleWeight,
|
|
39591
39796
|
textColor: textColor$3
|
|
@@ -39609,7 +39814,7 @@ var CardText = function CardText(_ref) {
|
|
|
39609
39814
|
color: themeValues.textColor
|
|
39610
39815
|
}, text))));
|
|
39611
39816
|
};
|
|
39612
|
-
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$
|
|
39817
|
+
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$E);
|
|
39613
39818
|
|
|
39614
39819
|
var CardHeader = function CardHeader(_ref) {
|
|
39615
39820
|
var backgroundColor = _ref.backgroundColor,
|
|
@@ -39711,14 +39916,14 @@ var Card = function Card(_ref) {
|
|
|
39711
39916
|
titleVariant: titleVariant
|
|
39712
39917
|
}), children)))));
|
|
39713
39918
|
};
|
|
39714
|
-
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$
|
|
39919
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$D);
|
|
39715
39920
|
|
|
39716
39921
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
39717
|
-
var activeColor$
|
|
39922
|
+
var activeColor$8 = MATISSE_BLUE;
|
|
39718
39923
|
var linkColor$3 = CHARADE_GREY;
|
|
39719
|
-
var fallbackValues$
|
|
39924
|
+
var fallbackValues$F = {
|
|
39720
39925
|
fontFamily: fontFamily$6,
|
|
39721
|
-
activeColor: activeColor$
|
|
39926
|
+
activeColor: activeColor$8,
|
|
39722
39927
|
linkColor: linkColor$3
|
|
39723
39928
|
};
|
|
39724
39929
|
|
|
@@ -39745,7 +39950,7 @@ var NavTab = function NavTab(_ref) {
|
|
|
39745
39950
|
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
39951
|
}, label));
|
|
39747
39952
|
};
|
|
39748
|
-
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$
|
|
39953
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$F);
|
|
39749
39954
|
|
|
39750
39955
|
var NavTabs = function NavTabs(_ref) {
|
|
39751
39956
|
var tabsConfig = _ref.tabsConfig,
|
|
@@ -39843,12 +40048,12 @@ var borderRadius = {
|
|
|
39843
40048
|
largeTitle: "0.25rem",
|
|
39844
40049
|
small: "0.25rem"
|
|
39845
40050
|
};
|
|
39846
|
-
var backgroundColor$
|
|
40051
|
+
var backgroundColor$7 = {
|
|
39847
40052
|
"default": WHITE,
|
|
39848
40053
|
largeTitle: WHITE,
|
|
39849
40054
|
small: WHITE
|
|
39850
40055
|
};
|
|
39851
|
-
var fallbackValues$
|
|
40056
|
+
var fallbackValues$G = {
|
|
39852
40057
|
fontSize: fontSize$9,
|
|
39853
40058
|
fontWeight: fontWeight$5,
|
|
39854
40059
|
fontColor: fontColor,
|
|
@@ -39858,7 +40063,7 @@ var fallbackValues$D = {
|
|
|
39858
40063
|
titleSpacing: titleSpacing,
|
|
39859
40064
|
boxShadow: boxShadow$1,
|
|
39860
40065
|
borderRadius: borderRadius,
|
|
39861
|
-
backgroundColor: backgroundColor$
|
|
40066
|
+
backgroundColor: backgroundColor$7
|
|
39862
40067
|
};
|
|
39863
40068
|
|
|
39864
40069
|
/*
|
|
@@ -39928,7 +40133,7 @@ var Module = function Module(_ref) {
|
|
|
39928
40133
|
boxShadow: themeValues.boxShadow
|
|
39929
40134
|
}, children)));
|
|
39930
40135
|
};
|
|
39931
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$
|
|
40136
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$G, "default"));
|
|
39932
40137
|
|
|
39933
40138
|
var WalletName = function WalletName(_ref) {
|
|
39934
40139
|
var mainText = _ref.mainText,
|
|
@@ -39995,138 +40200,6 @@ var WalletName = function WalletName(_ref) {
|
|
|
39995
40200
|
})));
|
|
39996
40201
|
};
|
|
39997
40202
|
|
|
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
40203
|
const validatorToPredicate =
|
|
40131
40204
|
(validatorFn, emptyCase) =>
|
|
40132
40205
|
(value, ...rest) =>
|
|
@@ -40944,7 +41017,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
|
|
|
40944
41017
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
40945
41018
|
|
|
40946
41019
|
var backgroundColor$8 = "#ebeffb";
|
|
40947
|
-
var fallbackValues$
|
|
41020
|
+
var fallbackValues$H = {
|
|
40948
41021
|
backgroundColor: backgroundColor$8
|
|
40949
41022
|
};
|
|
40950
41023
|
|
|
@@ -40993,7 +41066,7 @@ var Banner = function Banner(_ref) {
|
|
|
40993
41066
|
extraStyles: isMobile && "> svg { width: 176px; }"
|
|
40994
41067
|
}, /*#__PURE__*/React.createElement(Image, null))));
|
|
40995
41068
|
};
|
|
40996
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
41069
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$H);
|
|
40997
41070
|
|
|
40998
41071
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
40999
41072
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -41127,7 +41200,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
41127
41200
|
var titleColor$1 = "#292A33";
|
|
41128
41201
|
var headingBackgroundColor = "transparent";
|
|
41129
41202
|
var bodyBackgroundColor = "transparent";
|
|
41130
|
-
var fallbackValues$
|
|
41203
|
+
var fallbackValues$I = {
|
|
41131
41204
|
titleColor: titleColor$1,
|
|
41132
41205
|
headingBackgroundColor: headingBackgroundColor,
|
|
41133
41206
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -41252,7 +41325,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
41252
41325
|
"aria-labelledby": "".concat(id, "-button")
|
|
41253
41326
|
}, children))));
|
|
41254
41327
|
};
|
|
41255
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
41328
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$I);
|
|
41256
41329
|
|
|
41257
41330
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
41258
41331
|
var themeValues = _ref.themeValues;
|
|
@@ -41832,7 +41905,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
41832
41905
|
|
|
41833
41906
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
41834
41907
|
var subfooterBackgroundColor = STORM_GREY;
|
|
41835
|
-
var fallbackValues$
|
|
41908
|
+
var fallbackValues$J = {
|
|
41836
41909
|
footerBackgroundColor: footerBackgroundColor,
|
|
41837
41910
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
41838
41911
|
};
|
|
@@ -41863,7 +41936,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
41863
41936
|
rightContent: rightSubfooterContent
|
|
41864
41937
|
}));
|
|
41865
41938
|
};
|
|
41866
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
41939
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$J);
|
|
41867
41940
|
|
|
41868
41941
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
41869
41942
|
var fields = _ref.fields,
|
|
@@ -41910,7 +41983,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
|
41910
41983
|
|
|
41911
41984
|
var textColor$4 = "#ffffff";
|
|
41912
41985
|
var backgroundColor$9 = "#182848";
|
|
41913
|
-
var fallbackValues$
|
|
41986
|
+
var fallbackValues$K = {
|
|
41914
41987
|
textColor: textColor$4,
|
|
41915
41988
|
backgroundColor: backgroundColor$9
|
|
41916
41989
|
};
|
|
@@ -41969,7 +42042,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
41969
42042
|
}, t));
|
|
41970
42043
|
}), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
|
|
41971
42044
|
};
|
|
41972
|
-
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
42045
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$K);
|
|
41973
42046
|
|
|
41974
42047
|
var AccountBillIcon = function AccountBillIcon(_ref) {
|
|
41975
42048
|
var color = _ref.color;
|
|
@@ -42385,7 +42458,7 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
|
42385
42458
|
var backgroundColor$a = LINK_WATER;
|
|
42386
42459
|
var borderColor$5 = MOON_RAKER;
|
|
42387
42460
|
var color$b = ROYAL_BLUE_VIVID;
|
|
42388
|
-
var fallbackValues$
|
|
42461
|
+
var fallbackValues$L = {
|
|
42389
42462
|
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
42390
42463
|
disabledBorderColor: disabledBorderColor$1,
|
|
42391
42464
|
disabledColor: disabledColor$1,
|
|
@@ -42506,7 +42579,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
42506
42579
|
extraStyles: "margin-right: auto;"
|
|
42507
42580
|
}), showRight && !!rightContent && rightContent))));
|
|
42508
42581
|
};
|
|
42509
|
-
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$
|
|
42582
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$L, "primary");
|
|
42510
42583
|
|
|
42511
42584
|
var LoginForm = function LoginForm(_ref) {
|
|
42512
42585
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -46511,7 +46584,7 @@ var shadowColor = {
|
|
|
46511
46584
|
profile: "#292A33",
|
|
46512
46585
|
cms: "#292A33"
|
|
46513
46586
|
};
|
|
46514
|
-
var fallbackValues$
|
|
46587
|
+
var fallbackValues$M = {
|
|
46515
46588
|
backgroundColor: backgroundColor$b,
|
|
46516
46589
|
shadowColor: shadowColor
|
|
46517
46590
|
};
|
|
@@ -46551,7 +46624,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
46551
46624
|
onBlur: onBlur
|
|
46552
46625
|
}, menuContent));
|
|
46553
46626
|
};
|
|
46554
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46627
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$M, "profile");
|
|
46555
46628
|
|
|
46556
46629
|
var menu = posed.div({
|
|
46557
46630
|
invisible: {
|
|
@@ -46611,7 +46684,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
46611
46684
|
background: themeValues.backgroundColor
|
|
46612
46685
|
}, menuContent));
|
|
46613
46686
|
};
|
|
46614
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46687
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$M, "profile");
|
|
46615
46688
|
|
|
46616
46689
|
var IconsModule = function IconsModule(_ref) {
|
|
46617
46690
|
var icon = _ref.icon,
|
|
@@ -47138,7 +47211,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
47138
47211
|
};
|
|
47139
47212
|
|
|
47140
47213
|
var iconColor = ROYAL_BLUE_VIVID;
|
|
47141
|
-
var fallbackValues$
|
|
47214
|
+
var fallbackValues$N = {
|
|
47142
47215
|
iconColor: iconColor
|
|
47143
47216
|
};
|
|
47144
47217
|
|
|
@@ -47360,7 +47433,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
47360
47433
|
}))));
|
|
47361
47434
|
return inactive ? inactiveObligation : activeObligation;
|
|
47362
47435
|
};
|
|
47363
|
-
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$
|
|
47436
|
+
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$N);
|
|
47364
47437
|
|
|
47365
47438
|
var PartialAmountField = function PartialAmountField(_ref) {
|
|
47366
47439
|
var lineItem = _ref.lineItem,
|
|
@@ -47497,9 +47570,9 @@ var arrowColor = WHITE;
|
|
|
47497
47570
|
var numberColor = MATISSE_BLUE;
|
|
47498
47571
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47499
47572
|
var activeBackgroundColor$2 = WHITE;
|
|
47500
|
-
var activeColor$
|
|
47501
|
-
var fallbackValues$
|
|
47502
|
-
activeColor: activeColor$
|
|
47573
|
+
var activeColor$9 = MATISSE_BLUE;
|
|
47574
|
+
var fallbackValues$O = {
|
|
47575
|
+
activeColor: activeColor$9,
|
|
47503
47576
|
activeBackgroundColor: activeBackgroundColor$2,
|
|
47504
47577
|
arrowColor: arrowColor,
|
|
47505
47578
|
hoverBackgroundColor: hoverBackgroundColor$2,
|
|
@@ -47692,7 +47765,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47692
47765
|
buttonWidth: buttonWidth
|
|
47693
47766
|
}));
|
|
47694
47767
|
};
|
|
47695
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
47768
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$O);
|
|
47696
47769
|
|
|
47697
47770
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
47698
47771
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -47793,7 +47866,7 @@ var labeledAmountTotal = {
|
|
|
47793
47866
|
"default": "large",
|
|
47794
47867
|
small: "small"
|
|
47795
47868
|
};
|
|
47796
|
-
var fallbackValues$
|
|
47869
|
+
var fallbackValues$P = {
|
|
47797
47870
|
backgroundColor: backgroundColor$c,
|
|
47798
47871
|
lineItem: lineItem,
|
|
47799
47872
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -48162,7 +48235,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48162
48235
|
isError: isError
|
|
48163
48236
|
});
|
|
48164
48237
|
};
|
|
48165
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48238
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$P, "default");
|
|
48166
48239
|
|
|
48167
48240
|
var linkColor$4 = {
|
|
48168
48241
|
"default": "#3176AA"
|
|
@@ -48182,7 +48255,7 @@ var modalLinkHoverFocus = {
|
|
|
48182
48255
|
var linkTextDecoration = {
|
|
48183
48256
|
"default": LINK_TEXT_DECORATION
|
|
48184
48257
|
};
|
|
48185
|
-
var fallbackValues$
|
|
48258
|
+
var fallbackValues$Q = {
|
|
48186
48259
|
linkColor: linkColor$4,
|
|
48187
48260
|
fontSize: fontSize$a,
|
|
48188
48261
|
lineHeight: lineHeight$4,
|
|
@@ -48246,7 +48319,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48246
48319
|
}, link)
|
|
48247
48320
|
}));
|
|
48248
48321
|
};
|
|
48249
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
48322
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$Q, "default");
|
|
48250
48323
|
|
|
48251
48324
|
var backgroundColor$d = {
|
|
48252
48325
|
"default": "#ffffff",
|
|
@@ -48281,7 +48354,7 @@ var modalLinkTextDecoration = {
|
|
|
48281
48354
|
"default": LINK_TEXT_DECORATION,
|
|
48282
48355
|
footer: "none"
|
|
48283
48356
|
};
|
|
48284
|
-
var fallbackValues$
|
|
48357
|
+
var fallbackValues$R = {
|
|
48285
48358
|
backgroundColor: backgroundColor$d,
|
|
48286
48359
|
linkColor: linkColor$5,
|
|
48287
48360
|
border: border$3,
|
|
@@ -48353,7 +48426,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
48353
48426
|
className: "modal-trigger"
|
|
48354
48427
|
}, link));
|
|
48355
48428
|
};
|
|
48356
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48429
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$R, "default");
|
|
48357
48430
|
|
|
48358
48431
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48359
48432
|
var onCheck = _ref.onCheck,
|
|
@@ -49119,7 +49192,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
49119
49192
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49120
49193
|
var borderColor$6 = "".concat(GHOST_GREY);
|
|
49121
49194
|
var focusStyles = "outline: none;";
|
|
49122
|
-
var fallbackValues$
|
|
49195
|
+
var fallbackValues$S = {
|
|
49123
49196
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49124
49197
|
headingDisabledColor: headingDisabledColor,
|
|
49125
49198
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -49422,7 +49495,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49422
49495
|
});
|
|
49423
49496
|
})));
|
|
49424
49497
|
};
|
|
49425
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49498
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$S);
|
|
49426
49499
|
|
|
49427
49500
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49428
49501
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -49542,13 +49615,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
|
49542
49615
|
|
|
49543
49616
|
var GRECIAN_GREY$1 = GRECIAN_GREY;
|
|
49544
49617
|
var bannerBackgroundColor = GRECIAN_GREY$1;
|
|
49545
|
-
var fallbackValues$
|
|
49618
|
+
var fallbackValues$T = {
|
|
49546
49619
|
bannerBackgroundColor: bannerBackgroundColor
|
|
49547
49620
|
};
|
|
49548
49621
|
|
|
49549
49622
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
49550
49623
|
var themeContext = useContext(ThemeContext);
|
|
49551
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49624
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetConfirmationForm");
|
|
49552
49625
|
var isMobile = themeContext.isMobile;
|
|
49553
49626
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49554
49627
|
padding: "0",
|
|
@@ -49663,13 +49736,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
|
49663
49736
|
|
|
49664
49737
|
var GRECIAN_GREY$2 = GRECIAN_GREY;
|
|
49665
49738
|
var bannerBackgroundColor$1 = GRECIAN_GREY$2;
|
|
49666
|
-
var fallbackValues$
|
|
49739
|
+
var fallbackValues$U = {
|
|
49667
49740
|
bannerBackgroundColor: bannerBackgroundColor$1
|
|
49668
49741
|
};
|
|
49669
49742
|
|
|
49670
49743
|
var ResetPasswordSuccess = function ResetPasswordSuccess() {
|
|
49671
49744
|
var themeContext = useContext(ThemeContext);
|
|
49672
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49745
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$U, "ResetPasswordSuccess");
|
|
49673
49746
|
var isMobile = themeContext.isMobile;
|
|
49674
49747
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49675
49748
|
padding: "0",
|
|
@@ -49718,7 +49791,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
|
|
|
49718
49791
|
var activeTabBackground = "#FFFFFF";
|
|
49719
49792
|
var activeTabAccent = "#15749D";
|
|
49720
49793
|
var activeTabHover = "#B8D5E1";
|
|
49721
|
-
var fallbackValues$
|
|
49794
|
+
var fallbackValues$V = {
|
|
49722
49795
|
activeTabBackground: activeTabBackground,
|
|
49723
49796
|
activeTabAccent: activeTabAccent,
|
|
49724
49797
|
activeTabHover: activeTabHover
|
|
@@ -49786,12 +49859,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49786
49859
|
}, tab.content);
|
|
49787
49860
|
}))));
|
|
49788
49861
|
};
|
|
49789
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49862
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$V);
|
|
49790
49863
|
|
|
49791
49864
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49792
49865
|
var activeTabAccent$1 = "#15749D";
|
|
49793
49866
|
var activeTabHover$1 = "#B8D5E1";
|
|
49794
|
-
var fallbackValues$
|
|
49867
|
+
var fallbackValues$W = {
|
|
49795
49868
|
activeTabBackground: activeTabBackground$1,
|
|
49796
49869
|
activeTabAccent: activeTabAccent$1,
|
|
49797
49870
|
activeTabHover: activeTabHover$1
|
|
@@ -49846,7 +49919,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49846
49919
|
}, text)))));
|
|
49847
49920
|
})));
|
|
49848
49921
|
};
|
|
49849
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49922
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$W);
|
|
49850
49923
|
|
|
49851
49924
|
var Timeout = function Timeout(_ref) {
|
|
49852
49925
|
var onLogout = _ref.onLogout;
|
|
@@ -49967,7 +50040,7 @@ var fontColor$1 = WHITE;
|
|
|
49967
50040
|
var textAlign$1 = "left";
|
|
49968
50041
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49969
50042
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49970
|
-
var fallbackValues$
|
|
50043
|
+
var fallbackValues$X = {
|
|
49971
50044
|
fontWeight: fontWeight$8,
|
|
49972
50045
|
fontColor: fontColor$1,
|
|
49973
50046
|
textAlign: textAlign$1,
|
|
@@ -50012,7 +50085,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
50012
50085
|
src: welcomeImage
|
|
50013
50086
|
})))));
|
|
50014
50087
|
};
|
|
50015
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
50088
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$X));
|
|
50016
50089
|
|
|
50017
50090
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
50018
50091
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -50072,7 +50145,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
50072
50145
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
50073
50146
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
50074
50147
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
50075
|
-
var fallbackValues$
|
|
50148
|
+
var fallbackValues$Y = {
|
|
50076
50149
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
50077
50150
|
menuItemColor: menuItemColor,
|
|
50078
50151
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -50139,15 +50212,15 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
50139
50212
|
extraStyles: textExtraStyles
|
|
50140
50213
|
}, text)));
|
|
50141
50214
|
};
|
|
50142
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
50215
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$Y);
|
|
50143
50216
|
|
|
50144
50217
|
var hoverColor$5 = "#116285";
|
|
50145
|
-
var activeColor$
|
|
50218
|
+
var activeColor$a = "#0E506D";
|
|
50146
50219
|
var menuTriggerColor = "#15749D";
|
|
50147
50220
|
var backgroundColor$e = "white";
|
|
50148
|
-
var fallbackValues$
|
|
50221
|
+
var fallbackValues$Z = {
|
|
50149
50222
|
hoverColor: hoverColor$5,
|
|
50150
|
-
activeColor: activeColor$
|
|
50223
|
+
activeColor: activeColor$a,
|
|
50151
50224
|
menuTriggerColor: menuTriggerColor,
|
|
50152
50225
|
backgroundColor: backgroundColor$e
|
|
50153
50226
|
};
|
|
@@ -50281,10 +50354,10 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
50281
50354
|
}, item));
|
|
50282
50355
|
})));
|
|
50283
50356
|
};
|
|
50284
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$
|
|
50357
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Z);
|
|
50285
50358
|
|
|
50286
50359
|
var pageBackground = "#FBFCFD";
|
|
50287
|
-
var fallbackValues$
|
|
50360
|
+
var fallbackValues$_ = {
|
|
50288
50361
|
pageBackground: pageBackground
|
|
50289
50362
|
};
|
|
50290
50363
|
|
|
@@ -50332,7 +50405,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
50332
50405
|
padding: "0"
|
|
50333
50406
|
})));
|
|
50334
50407
|
};
|
|
50335
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50408
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$_));
|
|
50336
50409
|
|
|
50337
50410
|
var CenterStack = function CenterStack(_ref) {
|
|
50338
50411
|
var header = _ref.header,
|
|
@@ -50375,7 +50448,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
50375
50448
|
padding: "0"
|
|
50376
50449
|
})));
|
|
50377
50450
|
};
|
|
50378
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50451
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$_));
|
|
50379
50452
|
|
|
50380
50453
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
50381
50454
|
var header = _ref.header,
|
|
@@ -50421,7 +50494,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50421
50494
|
padding: "0"
|
|
50422
50495
|
})));
|
|
50423
50496
|
};
|
|
50424
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50497
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$_));
|
|
50425
50498
|
|
|
50426
50499
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50427
50500
|
var header = _ref.header,
|
|
@@ -50474,7 +50547,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50474
50547
|
padding: "0"
|
|
50475
50548
|
})));
|
|
50476
50549
|
};
|
|
50477
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50550
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$_));
|
|
50478
50551
|
|
|
50479
50552
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50480
50553
|
var header = _ref.header,
|
|
@@ -50544,7 +50617,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50544
50617
|
key: "footer-box"
|
|
50545
50618
|
})));
|
|
50546
50619
|
};
|
|
50547
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50620
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$_));
|
|
50548
50621
|
|
|
50549
50622
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
50550
50623
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -50576,5 +50649,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
|
|
|
50576
50649
|
useToastNotification: useToastNotification
|
|
50577
50650
|
});
|
|
50578
50651
|
|
|
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,
|
|
50652
|
+
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
50653
|
//# sourceMappingURL=index.esm.js.map
|