@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 CHANGED
@@ -15225,6 +15225,42 @@ var StatusUnknownIcon = function StatusUnknownIcon() {
15225
15225
  }))));
15226
15226
  };
15227
15227
 
15228
+ var CaretArrowDown = function CaretArrowDown(_ref) {
15229
+ var color = _ref.color;
15230
+ return /*#__PURE__*/React__default.createElement("svg", {
15231
+ width: "10",
15232
+ height: "7",
15233
+ viewBox: "0 0 10 7",
15234
+ fill: "none",
15235
+ xmlns: "http://www.w3.org/2000/svg"
15236
+ }, /*#__PURE__*/React__default.createElement("path", {
15237
+ fillRule: "evenodd",
15238
+ clipRule: "evenodd",
15239
+ 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",
15240
+ fill: color
15241
+ }));
15242
+ };
15243
+ var CaretArrowDown$1 = themeComponent(CaretArrowDown, "Icons", fallbackValues$2);
15244
+
15245
+ var CaretArrowUp = function CaretArrowUp(_ref) {
15246
+ var color = _ref.color;
15247
+ return /*#__PURE__*/React__default.createElement("svg", {
15248
+ width: "10",
15249
+ height: "7",
15250
+ viewBox: "0 0 10 7",
15251
+ fill: "none",
15252
+ xmlns: "http://www.w3.org/2000/svg"
15253
+ }, /*#__PURE__*/React__default.createElement("path", {
15254
+ fillRule: "evenodd",
15255
+ clipRule: "evenodd",
15256
+ 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",
15257
+ fill: color
15258
+ }));
15259
+ };
15260
+ var CaretArrowUp$1 = themeComponent(CaretArrowUp, "Icons", fallbackValues$2);
15261
+
15262
+ // This differs from CaretArrowUp and CaretArrowDown in that it completes a triangular shape. It is used in the header on Navigate.
15263
+
15228
15264
  var CarrotIcon = function CarrotIcon(_ref) {
15229
15265
  var themeValues = _ref.themeValues;
15230
15266
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -23464,6 +23500,177 @@ var CheckboxList = function CheckboxList(_ref2) {
23464
23500
  };
23465
23501
  var CheckboxList$1 = themeComponent(CheckboxList, "CheckboxList", fallbackValues$e, "default");
23466
23502
 
23503
+ var inactiveColor = MANATEE_GREY;
23504
+ var activeColor$4 = CHARADE_GREY;
23505
+ var fallbackValues$f = {
23506
+ inactiveColor: inactiveColor,
23507
+ activeColor: activeColor$4
23508
+ };
23509
+
23510
+ var Table_styled = styled__default.table.withConfig({
23511
+ displayName: "Tablestyled",
23512
+ componentId: "sc-mveye7-0"
23513
+ })(["width:100%;table-layout:auto;border-collapse:collapse;", ""], function (_ref) {
23514
+ var extraStyles = _ref.extraStyles;
23515
+ return extraStyles;
23516
+ });
23517
+
23518
+ var TableBody_styled = styled__default.tbody.withConfig({
23519
+ displayName: "TableBodystyled",
23520
+ componentId: "sc-wk5osr-0"
23521
+ })(["", ""], function (_ref) {
23522
+ var extraStyles = _ref.extraStyles;
23523
+ return extraStyles;
23524
+ });
23525
+
23526
+ var TableCell_styled = styled__default.td.withConfig({
23527
+ displayName: "TableCellstyled",
23528
+ componentId: "sc-iqndn8-0"
23529
+ })(["padding:", ";font-size:", " white-space:nowrap;max-width:", ";overflow:hidden;text-overflow:ellipsis;&:last-child{text-align:right;}", ";"], function (_ref) {
23530
+ var _ref$padding = _ref.padding,
23531
+ padding = _ref$padding === void 0 ? "24px" : _ref$padding;
23532
+ return padding;
23533
+ }, function (_ref2) {
23534
+ var _ref2$fontSize = _ref2.fontSize,
23535
+ fontSize = _ref2$fontSize === void 0 ? "0.875rem" : _ref2$fontSize;
23536
+ return fontSize;
23537
+ }, function (_ref3) {
23538
+ var _ref3$maxWidth = _ref3.maxWidth,
23539
+ maxWidth = _ref3$maxWidth === void 0 ? "250px" : _ref3$maxWidth;
23540
+ return maxWidth;
23541
+ }, function (_ref4) {
23542
+ var extraStyles = _ref4.extraStyles;
23543
+ return extraStyles;
23544
+ });
23545
+
23546
+ var backgroundColor$3 = ALABASTER_WHITE;
23547
+ var borderColor = GREY_CHATEAU;
23548
+ var fallbackValues$g = {
23549
+ backgroundColor: backgroundColor$3,
23550
+ borderColor: borderColor
23551
+ };
23552
+
23553
+ var StyledTableHead = styled__default.thead.withConfig({
23554
+ displayName: "TableHeadstyled",
23555
+ componentId: "sc-j8e6c1-0"
23556
+ })(["background-color:", ";border-bottom:", ";font-size:", ";"], function (_ref) {
23557
+ var backgroundColor = _ref.backgroundColor;
23558
+ return backgroundColor;
23559
+ }, function (_ref2) {
23560
+ var borderColor = _ref2.borderColor;
23561
+ return "1px solid ".concat(borderColor);
23562
+ }, function (_ref3) {
23563
+ var _ref3$fontSize = _ref3.fontSize,
23564
+ fontSize = _ref3$fontSize === void 0 ? "0.875rem" : _ref3$fontSize;
23565
+ return fontSize;
23566
+ });
23567
+
23568
+ var borderColor$1 = GREY_CHATEAU;
23569
+ var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
23570
+ var fallbackValues$h = {
23571
+ borderColor: borderColor$1,
23572
+ hoverBackgroundColor: hoverBackgroundColor$1
23573
+ };
23574
+
23575
+ var TableRowWrapper = styled__default.tr.withConfig({
23576
+ displayName: "TableRowstyled",
23577
+ componentId: "sc-1tc0sav-0"
23578
+ })(["&:not(:last-child){border-bottom:", ";}", " ", ""], function (_ref) {
23579
+ var borderColor = _ref.borderColor;
23580
+ return "1px solid ".concat(borderColor);
23581
+ }, function (_ref2) {
23582
+ var hoverCursor = _ref2.hoverCursor,
23583
+ hoverEffect = _ref2.hoverEffect,
23584
+ hoverBackgroundColor = _ref2.hoverBackgroundColor;
23585
+ return hoverEffect && "&:hover {\n ".concat(hoverCursor && "cursor: pointer", ";\n background-color: ").concat(hoverBackgroundColor, ";\n }");
23586
+ }, function (_ref3) {
23587
+ var extraStyles = _ref3.extraStyles;
23588
+ return extraStyles;
23589
+ });
23590
+
23591
+ var _excluded$r = ["children", "extraStyles", "hoverCursor", "hoverEffect", "onClick", "themeValues"];
23592
+ var TableRow = function TableRow(_ref) {
23593
+ var children = _ref.children,
23594
+ extraStyles = _ref.extraStyles,
23595
+ _ref$hoverCursor = _ref.hoverCursor,
23596
+ _ref$hoverEffect = _ref.hoverEffect,
23597
+ hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
23598
+ onClick = _ref.onClick,
23599
+ themeValues = _ref.themeValues,
23600
+ props = _objectWithoutProperties(_ref, _excluded$r);
23601
+ return /*#__PURE__*/React__default.createElement(TableRowWrapper, _extends({
23602
+ onClick: onClick,
23603
+ hoverEffect: hoverEffect,
23604
+ extraStyles: extraStyles,
23605
+ borderColor: themeValues.borderColor,
23606
+ hoverBackgroundColor: themeValues.hoverBackgroundColor
23607
+ }, props), children);
23608
+ };
23609
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$h);
23610
+
23611
+ var TableHead = function TableHead(_ref) {
23612
+ var children = _ref.children,
23613
+ _ref$extraStyles = _ref.extraStyles,
23614
+ extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
23615
+ themeValues = _ref.themeValues;
23616
+ return /*#__PURE__*/React__default.createElement(StyledTableHead, {
23617
+ backgroundColor: themeValues.backgroundColor,
23618
+ borderColor: themeValues.borderColor
23619
+ }, /*#__PURE__*/React__default.createElement(TableRow$1, {
23620
+ extraStyles: extraStyles,
23621
+ hoverEffect: false
23622
+ }, children));
23623
+ };
23624
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$g);
23625
+
23626
+ var TableHeading = styled__default.th.withConfig({
23627
+ displayName: "TableHeadingstyled",
23628
+ componentId: "sc-1ggk38d-0"
23629
+ })(["padding:", ";min-width:", ";text-align:left;&:last-child{text-align:right;}", ""], function (_ref) {
23630
+ var _ref$padding = _ref.padding,
23631
+ padding = _ref$padding === void 0 ? "24px" : _ref$padding;
23632
+ return padding;
23633
+ }, function (_ref2) {
23634
+ var _ref2$minWidth = _ref2.minWidth,
23635
+ minWidth = _ref2$minWidth === void 0 ? "initial" : _ref2$minWidth;
23636
+ return minWidth;
23637
+ }, function (_ref3) {
23638
+ var extraStyles = _ref3.extraStyles;
23639
+ return extraStyles;
23640
+ });
23641
+
23642
+ var SortableTableHeading = function SortableTableHeading(_ref) {
23643
+ var ariaControlsId = _ref.ariaControlsId,
23644
+ displayName = _ref.displayName,
23645
+ onSortChange = _ref.onSortChange,
23646
+ _ref$sortOrder = _ref.sortOrder,
23647
+ sortOrder = _ref$sortOrder === void 0 ? null : _ref$sortOrder,
23648
+ themeValues = _ref.themeValues;
23649
+ var getCaretColor = function getCaretColor(order) {
23650
+ if (sortOrder === order) {
23651
+ return themeValues.activeColor;
23652
+ }
23653
+ return themeValues.inactiveColor;
23654
+ };
23655
+ return /*#__PURE__*/React__default.createElement(TableHeading, {
23656
+ extraStyles: "cursor: pointer;",
23657
+ onClick: onSortChange,
23658
+ "aria-controls": ariaControlsId
23659
+ }, /*#__PURE__*/React__default.createElement(Cluster, {
23660
+ justify: "space-between"
23661
+ }, displayName, /*#__PURE__*/React__default.createElement(Stack, {
23662
+ justify: "center",
23663
+ childGap: "2px"
23664
+ }, /*#__PURE__*/React__default.createElement(CaretArrowUp$1, {
23665
+ color: getCaretColor("asc"),
23666
+ activeColor: themeValues.activeColor
23667
+ }), /*#__PURE__*/React__default.createElement(CaretArrowDown$1, {
23668
+ color: getCaretColor("desc"),
23669
+ activeColor: themeValues.activeColor
23670
+ }))));
23671
+ };
23672
+ var SortableTableHeading$1 = themeComponent(SortableTableHeading, "SortableTableHeading", fallbackValues$f);
23673
+
23467
23674
  var DropdownIcon = function DropdownIcon() {
23468
23675
  return /*#__PURE__*/React__default.createElement("svg", {
23469
23676
  version: "1.2",
@@ -24799,7 +25006,7 @@ exportTypedArrayMethod$1('at', function at(index) {
24799
25006
  var selectedColor = "".concat(MATISSE_BLUE);
24800
25007
  var hoverColor$3 = "".concat(HOVER_LIGHT_BLUE);
24801
25008
  var focusColor = "".concat(MATISSE_BLUE_DARK);
24802
- var fallbackValues$f = {
25009
+ var fallbackValues$i = {
24803
25010
  selectedColor: selectedColor,
24804
25011
  hoverColor: hoverColor$3,
24805
25012
  focusColor: focusColor
@@ -25200,7 +25407,7 @@ var Dropdown = function Dropdown(_ref13) {
25200
25407
  }, choice.text)));
25201
25408
  }))) : /*#__PURE__*/React__default.createElement(React.Fragment, null)));
25202
25409
  };
25203
- var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$f);
25410
+ var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$i);
25204
25411
 
25205
25412
  var SelectContainer = styled__default.div.withConfig({
25206
25413
  displayName: "FormSelectstyled__SelectContainer",
@@ -25247,7 +25454,7 @@ var labelColor = {
25247
25454
  "default": "".concat(CHARADE_GREY),
25248
25455
  disabled: "".concat(CHARADE_GREY)
25249
25456
  };
25250
- var borderColor = {
25457
+ var borderColor$2 = {
25251
25458
  "default": "".concat(GREY_CHATEAU),
25252
25459
  disabled: "".concat(GREY_CHATEAU)
25253
25460
  };
@@ -25271,13 +25478,13 @@ var hoverFocusStyles = {
25271
25478
  "default": "color: #0E506D; outline: none; text-decoration: underline; ",
25272
25479
  disabled: "color: #6D717E;"
25273
25480
  };
25274
- var fallbackValues$g = {
25481
+ var fallbackValues$j = {
25275
25482
  linkColor: linkColor$1,
25276
25483
  formBackgroundColor: formBackgroundColor,
25277
25484
  inputBackgroundColor: inputBackgroundColor,
25278
25485
  color: color$6,
25279
25486
  labelColor: labelColor,
25280
- borderColor: borderColor,
25487
+ borderColor: borderColor$2,
25281
25488
  lineHeight: lineHeight$1,
25282
25489
  fontSize: fontSize$4,
25283
25490
  errorFontSize: errorFontSize,
@@ -25383,7 +25590,7 @@ var FormSelect = function FormSelect(_ref) {
25383
25590
  extraStyles: "height: ".concat(themeValues.lineHeight, ";")
25384
25591
  })));
25385
25592
  };
25386
- var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$g, "default");
25593
+ var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$j, "default");
25387
25594
 
25388
25595
  var options = [{
25389
25596
  text: "Afghanistan",
@@ -26206,7 +26413,7 @@ var mobileFontSize$1 = {
26206
26413
  // 12px
26207
26414
  extraSmall: "0.71428rem" // 10px
26208
26415
  };
26209
- var fallbackValues$h = {
26416
+ var fallbackValues$k = {
26210
26417
  fontFamily: fontFamily$4,
26211
26418
  fontSize: fontSize$5
26212
26419
  };
@@ -26216,7 +26423,7 @@ var mobileFallbackValues$1 = {
26216
26423
  };
26217
26424
  var MOBILE_BREAKPOINT$1 = 768;
26218
26425
 
26219
- var _excluded$r = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
26426
+ var _excluded$s = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
26220
26427
 
26221
26428
  /*
26222
26429
  New responsive text component for Detail elements
@@ -26247,7 +26454,7 @@ var _excluded$r = ["themeValues", "weight", "color", "margin", "textAlign", "ext
26247
26454
  var isBelowBreakpoint$1 = window.innerWidth < MOBILE_BREAKPOINT$1;
26248
26455
  var isTouchDevice$2 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
26249
26456
  var mobileDeviceDetected$1 = isBelowBreakpoint$1 && isTouchDevice$2;
26250
- var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$h;
26457
+ var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$k;
26251
26458
  var Detail = function Detail(_ref) {
26252
26459
  var themeValues = _ref.themeValues,
26253
26460
  _ref$weight = _ref.weight,
@@ -26266,7 +26473,7 @@ var Detail = function Detail(_ref) {
26266
26473
  as = _ref$as === void 0 ? "p" : _ref$as,
26267
26474
  dataQa = _ref.dataQa,
26268
26475
  children = _ref.children,
26269
- rest = _objectWithoutProperties(_ref, _excluded$r);
26476
+ rest = _objectWithoutProperties(_ref, _excluded$s);
26270
26477
  return /*#__PURE__*/React__default.createElement(DetailText, _extends({
26271
26478
  variant: variant,
26272
26479
  as: as,
@@ -26283,10 +26490,10 @@ var Detail = function Detail(_ref) {
26283
26490
  };
26284
26491
  var Detail$1 = themeComponent(Detail, "Detail", fallbacks$1, "regular");
26285
26492
 
26286
- var backgroundColor$3 = WHITE;
26493
+ var backgroundColor$4 = WHITE;
26287
26494
  var boxShadow = "0px 2px 14px 0px ".concat(ATHENS_GREY, ", 0px 3px 8px 0px ").concat(GHOST_GREY);
26288
- var fallbackValues$i = {
26289
- backgroundColor: backgroundColor$3,
26495
+ var fallbackValues$l = {
26496
+ backgroundColor: backgroundColor$4,
26290
26497
  boxShadow: boxShadow
26291
26498
  };
26292
26499
 
@@ -26308,7 +26515,7 @@ var DisplayBox = function DisplayBox(_ref) {
26308
26515
  dataQa: dataQa
26309
26516
  }, children));
26310
26517
  };
26311
- var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$i);
26518
+ var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$l);
26312
26519
 
26313
26520
  /*
26314
26521
  Hook that assigns a click event listener to the main document element
@@ -26426,11 +26633,11 @@ var index$5 = /*#__PURE__*/Object.freeze({
26426
26633
  });
26427
26634
 
26428
26635
  var hoverColor$4 = "#116285";
26429
- var activeColor$4 = "#0E506D";
26636
+ var activeColor$5 = "#0E506D";
26430
26637
  var popoverTriggerColor = "#15749D";
26431
- var fallbackValues$j = {
26638
+ var fallbackValues$m = {
26432
26639
  hoverColor: hoverColor$4,
26433
- activeColor: activeColor$4,
26640
+ activeColor: activeColor$5,
26434
26641
  popoverTriggerColor: popoverTriggerColor
26435
26642
  };
26436
26643
 
@@ -26578,7 +26785,7 @@ var Popover = function Popover(_ref) {
26578
26785
  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 ")
26579
26786
  })));
26580
26787
  };
26581
- var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$j);
26788
+ var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$m);
26582
26789
 
26583
26790
  var DisplayCard = function DisplayCard(_ref) {
26584
26791
  var title = _ref.title,
@@ -26951,7 +27158,7 @@ var labelColor$1 = {
26951
27158
  "default": "".concat(CHARADE_GREY),
26952
27159
  disabled: "".concat(CHARADE_GREY)
26953
27160
  };
26954
- var borderColor$1 = {
27161
+ var borderColor$3 = {
26955
27162
  "default": "".concat(STORM_GREY),
26956
27163
  disabled: "".concat(STORM_GREY)
26957
27164
  };
@@ -26978,13 +27185,13 @@ var hoverFocusStyles$1 = {
26978
27185
  var formFooterPanel = {
26979
27186
  "default": "".concat(INFO_BLUE)
26980
27187
  };
26981
- var fallbackValues$k = {
27188
+ var fallbackValues$n = {
26982
27189
  linkColor: linkColor$2,
26983
27190
  formBackgroundColor: formBackgroundColor$1,
26984
27191
  inputBackgroundColor: inputBackgroundColor$1,
26985
27192
  color: color$7,
26986
27193
  labelColor: labelColor$1,
26987
- borderColor: borderColor$1,
27194
+ borderColor: borderColor$3,
26988
27195
  lineHeight: lineHeight$2,
26989
27196
  fontSize: fontSize$6,
26990
27197
  errorFontSize: errorFontSize$1,
@@ -26993,7 +27200,7 @@ var fallbackValues$k = {
26993
27200
  formFooterPanel: formFooterPanel
26994
27201
  };
26995
27202
 
26996
- var _excluded$s = ["showErrors", "themeValues"],
27203
+ var _excluded$t = ["showErrors", "themeValues"],
26997
27204
  _excluded2 = ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "autocompleteValue", "extraStyles", "removeFromValue", "dataQa", "isRequired"];
26998
27205
  var InputField = styled__default.input.withConfig({
26999
27206
  displayName: "FormInput__InputField",
@@ -27028,7 +27235,7 @@ var InputField = styled__default.input.withConfig({
27028
27235
  var FormattedInputField = styled__default(function (_ref8) {
27029
27236
  var showErrors = _ref8.showErrors,
27030
27237
  themeValues = _ref8.themeValues,
27031
- props = _objectWithoutProperties(_ref8, _excluded$s);
27238
+ props = _objectWithoutProperties(_ref8, _excluded$t);
27032
27239
  return /*#__PURE__*/React__default.createElement(FormattedInput, props);
27033
27240
  }).withConfig({
27034
27241
  displayName: "FormInput__FormattedInputField",
@@ -27224,9 +27431,9 @@ var FormInput = function FormInput(_ref15) {
27224
27431
  padding: "0 0 0 auto"
27225
27432
  }, decorator)));
27226
27433
  };
27227
- var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$k, "default");
27434
+ var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$n, "default");
27228
27435
 
27229
- var _excluded$t = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
27436
+ var _excluded$u = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
27230
27437
  var FormInputRow = function FormInputRow(_ref) {
27231
27438
  var _ref$breakpoint = _ref.breakpoint,
27232
27439
  breakpoint = _ref$breakpoint === void 0 ? "30rem" : _ref$breakpoint,
@@ -27235,7 +27442,7 @@ var FormInputRow = function FormInputRow(_ref) {
27235
27442
  largeChild = _ref.largeChild,
27236
27443
  largeChildSize = _ref.largeChildSize,
27237
27444
  children = _ref.children,
27238
- rest = _objectWithoutProperties(_ref, _excluded$t);
27445
+ rest = _objectWithoutProperties(_ref, _excluded$u);
27239
27446
  return /*#__PURE__*/React__default.createElement(Box, _extends({
27240
27447
  padding: "0"
27241
27448
  }, rest), /*#__PURE__*/React__default.createElement(Switcher, {
@@ -27246,24 +27453,24 @@ var FormInputRow = function FormInputRow(_ref) {
27246
27453
  }, children));
27247
27454
  };
27248
27455
 
27249
- var _excluded$u = ["childGap", "bottomItem", "children"];
27456
+ var _excluded$v = ["childGap", "bottomItem", "children"];
27250
27457
  var FormInputColumn = function FormInputColumn(_ref) {
27251
27458
  var _ref$childGap = _ref.childGap,
27252
27459
  childGap = _ref$childGap === void 0 ? "0.5rem" : _ref$childGap,
27253
27460
  bottomItem = _ref.bottomItem,
27254
27461
  children = _ref.children,
27255
- rest = _objectWithoutProperties(_ref, _excluded$u);
27462
+ rest = _objectWithoutProperties(_ref, _excluded$v);
27256
27463
  return /*#__PURE__*/React__default.createElement(Stack, _extends({
27257
27464
  childGap: childGap,
27258
27465
  bottomItem: bottomItem
27259
27466
  }, rest), children);
27260
27467
  };
27261
27468
 
27262
- var _excluded$v = ["themeValues", "children"];
27469
+ var _excluded$w = ["themeValues", "children"];
27263
27470
  var FormContainer = function FormContainer(_ref) {
27264
27471
  var themeValues = _ref.themeValues,
27265
27472
  children = _ref.children,
27266
- rest = _objectWithoutProperties(_ref, _excluded$v);
27473
+ rest = _objectWithoutProperties(_ref, _excluded$w);
27267
27474
  var _useContext = React.useContext(styled.ThemeContext),
27268
27475
  isMobile = _useContext.isMobile;
27269
27476
  return /*#__PURE__*/React__default.createElement(Box, _extends({
@@ -27272,7 +27479,7 @@ var FormContainer = function FormContainer(_ref) {
27272
27479
  borderRadius: "4px"
27273
27480
  }, rest), children);
27274
27481
  };
27275
- var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$k, "default");
27482
+ var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$n, "default");
27276
27483
 
27277
27484
  var FormFooterPanel = function FormFooterPanel(_ref) {
27278
27485
  var themeValues = _ref.themeValues,
@@ -27293,7 +27500,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
27293
27500
  text: linkText
27294
27501
  })));
27295
27502
  };
27296
- var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$k, "default");
27503
+ var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$n, "default");
27297
27504
 
27298
27505
  var fontSize$7 = {
27299
27506
  "default": "1rem",
@@ -27307,7 +27514,7 @@ var color$8 = {
27307
27514
  "default": "".concat(CHARADE_GREY),
27308
27515
  radio: "".concat(MINESHAFT_GREY)
27309
27516
  };
27310
- var fallbackValues$l = {
27517
+ var fallbackValues$o = {
27311
27518
  fontSize: fontSize$7,
27312
27519
  padding: padding$1,
27313
27520
  color: color$8
@@ -27349,11 +27556,11 @@ var FormattedAddress = function FormattedAddress(_ref) {
27349
27556
  dataQa: "".concat(qaPrefix, "-3")
27350
27557
  }, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
27351
27558
  };
27352
- var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$l, "default");
27559
+ var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$o, "default");
27353
27560
 
27354
27561
  var textColor$1 = "".concat(CHARADE_GREY);
27355
27562
  var autopayTextColor = "".concat(REGENT_GREY);
27356
- var fallbackValues$m = {
27563
+ var fallbackValues$p = {
27357
27564
  textColor: textColor$1,
27358
27565
  autopayTextColor: autopayTextColor
27359
27566
  };
@@ -27391,11 +27598,11 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
27391
27598
  extraStyles: "font-style: italic;"
27392
27599
  }, "Autopay Enabled")));
27393
27600
  };
27394
- var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$m);
27601
+ var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$p);
27395
27602
 
27396
27603
  var textColor$2 = "".concat(CHARADE_GREY);
27397
27604
  var autopayTextColor$1 = "".concat(REGENT_GREY);
27398
- var fallbackValues$n = {
27605
+ var fallbackValues$q = {
27399
27606
  textColor: textColor$2,
27400
27607
  autopayTextColor: autopayTextColor$1
27401
27608
  };
@@ -27487,7 +27694,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
27487
27694
  extraStyles: "font-style: italic;"
27488
27695
  }, "Autopay Enabled")));
27489
27696
  };
27490
- var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$n);
27697
+ var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$q);
27491
27698
 
27492
27699
  var Hamburger = styled__default.button.withConfig({
27493
27700
  displayName: "HamburgerButton__Hamburger",
@@ -27568,12 +27775,12 @@ var fontSize$8 = {
27568
27775
  h5: "1.375rem",
27569
27776
  h6: "1.25rem"
27570
27777
  };
27571
- var fallbackValues$o = {
27778
+ var fallbackValues$r = {
27572
27779
  fontFamily: fontFamily$5,
27573
27780
  fontSize: fontSize$8
27574
27781
  };
27575
27782
 
27576
- var _excluded$w = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
27783
+ var _excluded$x = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
27577
27784
  var Heading = function Heading(_ref) {
27578
27785
  var themeValues = _ref.themeValues,
27579
27786
  _ref$weight = _ref.weight,
@@ -27592,7 +27799,7 @@ var Heading = function Heading(_ref) {
27592
27799
  as = _ref$as === void 0 ? variant : _ref$as,
27593
27800
  dataQa = _ref.dataQa,
27594
27801
  children = _ref.children,
27595
- rest = _objectWithoutProperties(_ref, _excluded$w);
27802
+ rest = _objectWithoutProperties(_ref, _excluded$x);
27596
27803
  return /*#__PURE__*/React__default.createElement(HeadingText, _extends({
27597
27804
  variant: variant,
27598
27805
  as: as,
@@ -27607,7 +27814,7 @@ var Heading = function Heading(_ref) {
27607
27814
  "data-qa": dataQa
27608
27815
  }, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
27609
27816
  };
27610
- var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$o, "h1");
27817
+ var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$r, "h1");
27611
27818
 
27612
27819
  var Image = styled__default.img.withConfig({
27613
27820
  displayName: "ImageBoxstyled__Image",
@@ -27742,7 +27949,7 @@ var fontWeight$4 = {
27742
27949
  // fontsize Detail regular
27743
27950
  large: "700" // fontsize Title small
27744
27951
  };
27745
- var fallbackValues$p = {
27952
+ var fallbackValues$s = {
27746
27953
  fontWeight: fontWeight$4
27747
27954
  };
27748
27955
 
@@ -27793,15 +28000,15 @@ var LabeledAmountV2 = function LabeledAmountV2(_ref) {
27793
28000
  }, /*#__PURE__*/React__default.createElement("span", null, label), /*#__PURE__*/React__default.createElement("span", null, amount));
27794
28001
  };
27795
28002
 
27796
- var _excluded$x = ["version"];
28003
+ var _excluded$y = ["version"];
27797
28004
  var LabeledAmount = function LabeledAmount(_ref) {
27798
28005
  var _ref$version = _ref.version,
27799
28006
  version = _ref$version === void 0 ? "v1" : _ref$version,
27800
- rest = _objectWithoutProperties(_ref, _excluded$x);
28007
+ rest = _objectWithoutProperties(_ref, _excluded$y);
27801
28008
  var LabeledAmountComponent = version === "v1" ? LabeledAmountV1 : LabeledAmountV2;
27802
28009
  return /*#__PURE__*/React__default.createElement(LabeledAmountComponent, rest);
27803
28010
  };
27804
- var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$p, "default");
28011
+ var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$s, "default");
27805
28012
 
27806
28013
  var weightTitle = {
27807
28014
  "default": "600",
@@ -27811,7 +28018,7 @@ var detailVariant = {
27811
28018
  "default": "large",
27812
28019
  small: "small"
27813
28020
  };
27814
- var fallbackValues$q = {
28021
+ var fallbackValues$t = {
27815
28022
  weightTitle: weightTitle,
27816
28023
  detailVariant: detailVariant
27817
28024
  };
@@ -27859,10 +28066,10 @@ var LineItem = function LineItem(_ref) {
27859
28066
  childGap: "0.25rem"
27860
28067
  }, visibleCustomAttrs));
27861
28068
  };
27862
- var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$q, "default");
28069
+ var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$t, "default");
27863
28070
 
27864
28071
  var color$9 = "#15749D";
27865
- var fallbackValues$r = {
28072
+ var fallbackValues$u = {
27866
28073
  color: color$9
27867
28074
  };
27868
28075
 
@@ -27926,7 +28133,7 @@ var Spinner$1 = function Spinner(_ref6) {
27926
28133
  strokeWidth: strokeWidth
27927
28134
  })));
27928
28135
  };
27929
- var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$r);
28136
+ var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$u);
27930
28137
 
27931
28138
  var Loading = function Loading() {
27932
28139
  return /*#__PURE__*/React__default.createElement(Box, {
@@ -27942,7 +28149,7 @@ var Loading = function Loading() {
27942
28149
  })))));
27943
28150
  };
27944
28151
 
27945
- var _excluded$y = ["leftContent", "rightContent", "footerMinHeight", "backgroundColor", "largeSide", "largeSideSize", "footerPadding", "isMobile", "footerWidth"];
28152
+ var _excluded$z = ["leftContent", "rightContent", "footerMinHeight", "backgroundColor", "largeSide", "largeSideSize", "footerPadding", "isMobile", "footerWidth"];
27946
28153
  var NavFooter = function NavFooter(_ref) {
27947
28154
  var leftContent = _ref.leftContent,
27948
28155
  rightContent = _ref.rightContent,
@@ -27957,7 +28164,7 @@ var NavFooter = function NavFooter(_ref) {
27957
28164
  footerPadding = _ref$footerPadding === void 0 ? "1.5rem 1rem" : _ref$footerPadding,
27958
28165
  isMobile = _ref.isMobile,
27959
28166
  footerWidth = _ref.footerWidth,
27960
- rest = _objectWithoutProperties(_ref, _excluded$y);
28167
+ rest = _objectWithoutProperties(_ref, _excluded$z);
27961
28168
  return /*#__PURE__*/React__default.createElement(Box, _extends({
27962
28169
  padding: footerPadding,
27963
28170
  background: backgroundColor,
@@ -27988,7 +28195,7 @@ var NavFooter = function NavFooter(_ref) {
27988
28195
  }, rightContent)))))));
27989
28196
  };
27990
28197
 
27991
- var _excluded$z = ["leftContent", "rightContent", "headerHeight", "isMobile", "backgroundColor", "headerWidth"];
28198
+ var _excluded$A = ["leftContent", "rightContent", "headerHeight", "isMobile", "backgroundColor", "headerWidth"];
27992
28199
  var NavHeader = function NavHeader(_ref) {
27993
28200
  var leftContent = _ref.leftContent,
27994
28201
  rightContent = _ref.rightContent,
@@ -27997,7 +28204,7 @@ var NavHeader = function NavHeader(_ref) {
27997
28204
  isMobile = _ref.isMobile,
27998
28205
  backgroundColor = _ref.backgroundColor,
27999
28206
  headerWidth = _ref.headerWidth,
28000
- rest = _objectWithoutProperties(_ref, _excluded$z);
28207
+ rest = _objectWithoutProperties(_ref, _excluded$A);
28001
28208
  return /*#__PURE__*/React__default.createElement(Box, _extends({
28002
28209
  padding: "0 16px 4px",
28003
28210
  background: backgroundColor,
@@ -28186,7 +28393,7 @@ var height$1 = {
28186
28393
  "default": "3rem",
28187
28394
  large: "192px"
28188
28395
  };
28189
- var fallbackValues$s = {
28396
+ var fallbackValues$v = {
28190
28397
  color: color$a,
28191
28398
  height: height$1
28192
28399
  };
@@ -28328,13 +28535,13 @@ var Placeholder = function Placeholder(_ref4) {
28328
28535
  extraStyles: "padding: 0 0 0 8px; text-align: center;"
28329
28536
  }, text)))))))))));
28330
28537
  };
28331
- var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$s, "default");
28538
+ var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$v, "default");
28332
28539
 
28333
- var backgroundColor$4 = {
28540
+ var backgroundColor$5 = {
28334
28541
  "default": "".concat(WHITE)
28335
28542
  };
28336
- var fallbackValues$t = {
28337
- backgroundColor: backgroundColor$4
28543
+ var fallbackValues$w = {
28544
+ backgroundColor: backgroundColor$5
28338
28545
  };
28339
28546
 
28340
28547
  var ProcessingFee = function ProcessingFee(_ref) {
@@ -28360,13 +28567,13 @@ var ProcessingFee = function ProcessingFee(_ref) {
28360
28567
  showQuitLink: false
28361
28568
  }));
28362
28569
  };
28363
- var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$t, "default");
28570
+ var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$w, "default");
28364
28571
 
28365
- var activeColor$5 = MATISSE_BLUE;
28572
+ var activeColor$6 = MATISSE_BLUE;
28366
28573
  var inactiveBorderColor = GREY_CHATEAU;
28367
- var fallbackValues$u = {
28574
+ var fallbackValues$x = {
28368
28575
  inactiveBorderColor: inactiveBorderColor,
28369
- activeColor: activeColor$5
28576
+ activeColor: activeColor$6
28370
28577
  };
28371
28578
 
28372
28579
  var HiddenRadioInput = styled__default.input.withConfig({
@@ -28447,13 +28654,13 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
28447
28654
  inactiveBorderColor: themeValues.inactiveBorderColor
28448
28655
  }), labelText));
28449
28656
  };
28450
- var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$u);
28657
+ var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$x);
28451
28658
 
28452
- var activeColor$6 = "".concat(MATISSE_BLUE);
28453
- var inactiveColor = "".concat(STORM_GREY);
28454
- var fallbackValues$v = {
28455
- activeColor: activeColor$6,
28456
- inactiveColor: inactiveColor
28659
+ var activeColor$7 = "".concat(MATISSE_BLUE);
28660
+ var inactiveColor$1 = "".concat(STORM_GREY);
28661
+ var fallbackValues$y = {
28662
+ activeColor: activeColor$7,
28663
+ inactiveColor: inactiveColor$1
28457
28664
  };
28458
28665
 
28459
28666
  var HiddenRadioButton = styled__default.input.withConfig({
@@ -28556,11 +28763,11 @@ var RadioButton$1 = function RadioButton(_ref2) {
28556
28763
  borderRadius: "8px"
28557
28764
  })));
28558
28765
  };
28559
- var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$v);
28766
+ var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$y);
28560
28767
 
28561
28768
  var searchIconColor = WHITE;
28562
28769
  var searchIconBackgroundColor = MATISSE_BLUE;
28563
- var fallbackValues$w = {
28770
+ var fallbackValues$z = {
28564
28771
  searchIconColor: searchIconColor,
28565
28772
  searchIconBackgroundColor: searchIconBackgroundColor
28566
28773
  };
@@ -28656,12 +28863,12 @@ var Search = function Search(_ref) {
28656
28863
  size: 24
28657
28864
  })));
28658
28865
  };
28659
- var Search$1 = themeComponent(Search, "Search", fallbackValues$w);
28866
+ var Search$1 = themeComponent(Search, "Search", fallbackValues$z);
28660
28867
 
28661
28868
  var border$2 = {
28662
28869
  "default": "1px solid #caced8"
28663
28870
  };
28664
- var fallbackValues$x = {
28871
+ var fallbackValues$A = {
28665
28872
  border: border$2
28666
28873
  };
28667
28874
 
@@ -28734,16 +28941,16 @@ var SearchableSelect = function SearchableSelect(_ref) {
28734
28941
  });
28735
28942
  }))));
28736
28943
  };
28737
- var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$x, "default");
28944
+ var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$A, "default");
28738
28945
 
28739
- var borderColor$2 = {
28946
+ var borderColor$4 = {
28740
28947
  "default": "".concat(GREY_CHATEAU)
28741
28948
  };
28742
28949
  var borderSize = {
28743
28950
  "default": "1px"
28744
28951
  };
28745
- var fallbackValues$y = {
28746
- borderColor: borderColor$2,
28952
+ var fallbackValues$B = {
28953
+ borderColor: borderColor$4,
28747
28954
  borderSize: borderSize
28748
28955
  };
28749
28956
 
@@ -28760,7 +28967,7 @@ var SolidDivider = function SolidDivider(_ref) {
28760
28967
  borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
28761
28968
  });
28762
28969
  };
28763
- var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$y, "default");
28970
+ var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$B, "default");
28764
28971
 
28765
28972
  var placeHolderOptionUS = {
28766
28973
  text: "Please select state",
@@ -39346,7 +39553,7 @@ var white = "".concat(WHITE);
39346
39553
  var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
39347
39554
  var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
39348
39555
  var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
39349
- var fallbackValues$z = {
39556
+ var fallbackValues$C = {
39350
39557
  onBackground: onBackground,
39351
39558
  disabledBackground: disabledBackground,
39352
39559
  disabledBackgroundLight: disabledBackgroundLight,
@@ -39523,7 +39730,7 @@ var ToggleSwitch = function ToggleSwitch(_ref10) {
39523
39730
  padding: "0"
39524
39731
  }, label))));
39525
39732
  };
39526
- var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$z);
39733
+ var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$C);
39527
39734
 
39528
39735
  var background$2 = "".concat(ATHENS_GREY);
39529
39736
  var white$1 = "".concat(WHITE);
@@ -39565,12 +39772,12 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
39565
39772
  }));
39566
39773
  };
39567
39774
 
39568
- var backgroundColor$5 = WHITE;
39775
+ var backgroundColor$6 = WHITE;
39569
39776
  var imageBackgroundColor = INFO_BLUE;
39570
39777
  var headerBackgroundColor = STORM_GREY;
39571
39778
  var headerColor = WHITE;
39572
- var fallbackValues$A = {
39573
- backgroundColor: backgroundColor$5,
39779
+ var fallbackValues$D = {
39780
+ backgroundColor: backgroundColor$6,
39574
39781
  imageBackgroundColor: imageBackgroundColor,
39575
39782
  headerBackgroundColor: headerBackgroundColor,
39576
39783
  headerColor: headerColor
@@ -39593,7 +39800,7 @@ var CardImage = styled__default.img.withConfig({
39593
39800
  var titleColor = BRIGHT_GREY;
39594
39801
  var titleWeight = FONT_WEIGHT_BOLD;
39595
39802
  var textColor$3 = BRIGHT_GREY;
39596
- var fallbackValues$B = {
39803
+ var fallbackValues$E = {
39597
39804
  titleColor: titleColor,
39598
39805
  titleWeight: titleWeight,
39599
39806
  textColor: textColor$3
@@ -39617,7 +39824,7 @@ var CardText = function CardText(_ref) {
39617
39824
  color: themeValues.textColor
39618
39825
  }, text))));
39619
39826
  };
39620
- var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$B);
39827
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$E);
39621
39828
 
39622
39829
  var CardHeader = function CardHeader(_ref) {
39623
39830
  var backgroundColor = _ref.backgroundColor,
@@ -39719,14 +39926,14 @@ var Card = function Card(_ref) {
39719
39926
  titleVariant: titleVariant
39720
39927
  }), children)))));
39721
39928
  };
39722
- var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$A);
39929
+ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$D);
39723
39930
 
39724
39931
  var fontFamily$6 = "Public Sans, sans-serif";
39725
- var activeColor$7 = MATISSE_BLUE;
39932
+ var activeColor$8 = MATISSE_BLUE;
39726
39933
  var linkColor$3 = CHARADE_GREY;
39727
- var fallbackValues$C = {
39934
+ var fallbackValues$F = {
39728
39935
  fontFamily: fontFamily$6,
39729
- activeColor: activeColor$7,
39936
+ activeColor: activeColor$8,
39730
39937
  linkColor: linkColor$3
39731
39938
  };
39732
39939
 
@@ -39753,7 +39960,7 @@ var NavTab = function NavTab(_ref) {
39753
39960
  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 ")
39754
39961
  }, label));
39755
39962
  };
39756
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$C);
39963
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$F);
39757
39964
 
39758
39965
  var NavTabs = function NavTabs(_ref) {
39759
39966
  var tabsConfig = _ref.tabsConfig,
@@ -39851,12 +40058,12 @@ var borderRadius = {
39851
40058
  largeTitle: "0.25rem",
39852
40059
  small: "0.25rem"
39853
40060
  };
39854
- var backgroundColor$6 = {
40061
+ var backgroundColor$7 = {
39855
40062
  "default": WHITE,
39856
40063
  largeTitle: WHITE,
39857
40064
  small: WHITE
39858
40065
  };
39859
- var fallbackValues$D = {
40066
+ var fallbackValues$G = {
39860
40067
  fontSize: fontSize$9,
39861
40068
  fontWeight: fontWeight$5,
39862
40069
  fontColor: fontColor,
@@ -39866,7 +40073,7 @@ var fallbackValues$D = {
39866
40073
  titleSpacing: titleSpacing,
39867
40074
  boxShadow: boxShadow$1,
39868
40075
  borderRadius: borderRadius,
39869
- backgroundColor: backgroundColor$6
40076
+ backgroundColor: backgroundColor$7
39870
40077
  };
39871
40078
 
39872
40079
  /*
@@ -39936,7 +40143,7 @@ var Module = function Module(_ref) {
39936
40143
  boxShadow: themeValues.boxShadow
39937
40144
  }, children)));
39938
40145
  };
39939
- var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
40146
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$G, "default"));
39940
40147
 
39941
40148
  var WalletName = function WalletName(_ref) {
39942
40149
  var mainText = _ref.mainText,
@@ -40003,138 +40210,6 @@ var WalletName = function WalletName(_ref) {
40003
40210
  })));
40004
40211
  };
40005
40212
 
40006
- var Table_styled = styled__default.table.withConfig({
40007
- displayName: "Tablestyled",
40008
- componentId: "sc-mveye7-0"
40009
- })(["width:100%;table-layout:auto;border-collapse:collapse;", ""], function (_ref) {
40010
- var extraStyles = _ref.extraStyles;
40011
- return extraStyles;
40012
- });
40013
-
40014
- var TableBody_styled = styled__default.tbody.withConfig({
40015
- displayName: "TableBodystyled",
40016
- componentId: "sc-wk5osr-0"
40017
- })(["", ""], function (_ref) {
40018
- var extraStyles = _ref.extraStyles;
40019
- return extraStyles;
40020
- });
40021
-
40022
- var TableCell_styled = styled__default.td.withConfig({
40023
- displayName: "TableCellstyled",
40024
- componentId: "sc-iqndn8-0"
40025
- })(["padding:", ";font-size:", " white-space:nowrap;max-width:", ";overflow:hidden;text-overflow:ellipsis;&:last-child{text-align:right;}", ";"], function (_ref) {
40026
- var _ref$padding = _ref.padding,
40027
- padding = _ref$padding === void 0 ? "24px" : _ref$padding;
40028
- return padding;
40029
- }, function (_ref2) {
40030
- var _ref2$fontSize = _ref2.fontSize,
40031
- fontSize = _ref2$fontSize === void 0 ? "0.875rem" : _ref2$fontSize;
40032
- return fontSize;
40033
- }, function (_ref3) {
40034
- var _ref3$maxWidth = _ref3.maxWidth,
40035
- maxWidth = _ref3$maxWidth === void 0 ? "250px" : _ref3$maxWidth;
40036
- return maxWidth;
40037
- }, function (_ref4) {
40038
- var extraStyles = _ref4.extraStyles;
40039
- return extraStyles;
40040
- });
40041
-
40042
- var backgroundColor$7 = ALABASTER_WHITE;
40043
- var borderColor$3 = GREY_CHATEAU;
40044
- var fallbackValues$E = {
40045
- backgroundColor: backgroundColor$7,
40046
- borderColor: borderColor$3
40047
- };
40048
-
40049
- var StyledTableHead = styled__default.thead.withConfig({
40050
- displayName: "TableHeadstyled",
40051
- componentId: "sc-j8e6c1-0"
40052
- })(["background-color:", ";border-bottom:", ";font-size:", ";"], function (_ref) {
40053
- var backgroundColor = _ref.backgroundColor;
40054
- return backgroundColor;
40055
- }, function (_ref2) {
40056
- var borderColor = _ref2.borderColor;
40057
- return "1px solid ".concat(borderColor);
40058
- }, function (_ref3) {
40059
- var _ref3$fontSize = _ref3.fontSize,
40060
- fontSize = _ref3$fontSize === void 0 ? "0.875rem" : _ref3$fontSize;
40061
- return fontSize;
40062
- });
40063
-
40064
- var borderColor$4 = GREY_CHATEAU;
40065
- var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
40066
- var fallbackValues$F = {
40067
- borderColor: borderColor$4,
40068
- hoverBackgroundColor: hoverBackgroundColor$1
40069
- };
40070
-
40071
- var TableRowWrapper = styled__default.tr.withConfig({
40072
- displayName: "TableRowstyled",
40073
- componentId: "sc-1tc0sav-0"
40074
- })(["&:not(:last-child){border-bottom:", ";}", " ", ""], function (_ref) {
40075
- var borderColor = _ref.borderColor;
40076
- return "1px solid ".concat(borderColor);
40077
- }, function (_ref2) {
40078
- var hoverCursor = _ref2.hoverCursor,
40079
- hoverEffect = _ref2.hoverEffect,
40080
- hoverBackgroundColor = _ref2.hoverBackgroundColor;
40081
- return hoverEffect && "&:hover {\n ".concat(hoverCursor && "cursor: pointer", ";\n background-color: ").concat(hoverBackgroundColor, ";\n }");
40082
- }, function (_ref3) {
40083
- var extraStyles = _ref3.extraStyles;
40084
- return extraStyles;
40085
- });
40086
-
40087
- var _excluded$A = ["children", "extraStyles", "hoverCursor", "hoverEffect", "onClick", "themeValues"];
40088
- var TableRow = function TableRow(_ref) {
40089
- var children = _ref.children,
40090
- extraStyles = _ref.extraStyles,
40091
- _ref$hoverCursor = _ref.hoverCursor,
40092
- _ref$hoverEffect = _ref.hoverEffect,
40093
- hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
40094
- onClick = _ref.onClick,
40095
- themeValues = _ref.themeValues,
40096
- props = _objectWithoutProperties(_ref, _excluded$A);
40097
- return /*#__PURE__*/React__default.createElement(TableRowWrapper, _extends({
40098
- onClick: onClick,
40099
- hoverEffect: hoverEffect,
40100
- extraStyles: extraStyles,
40101
- borderColor: themeValues.borderColor,
40102
- hoverBackgroundColor: themeValues.hoverBackgroundColor
40103
- }, props), children);
40104
- };
40105
- var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$F);
40106
-
40107
- var TableHead = function TableHead(_ref) {
40108
- var children = _ref.children,
40109
- _ref$extraStyles = _ref.extraStyles,
40110
- extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
40111
- themeValues = _ref.themeValues;
40112
- return /*#__PURE__*/React__default.createElement(StyledTableHead, {
40113
- backgroundColor: themeValues.backgroundColor,
40114
- borderColor: themeValues.borderColor
40115
- }, /*#__PURE__*/React__default.createElement(TableRow$1, {
40116
- extraStyles: extraStyles,
40117
- hoverEffect: false
40118
- }, children));
40119
- };
40120
- var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$E);
40121
-
40122
- var TableHeading_styled = styled__default.th.withConfig({
40123
- displayName: "TableHeadingstyled",
40124
- componentId: "sc-1ggk38d-0"
40125
- })(["padding:", ";min-width:", ";text-align:left;&:last-child{text-align:right;}", ""], function (_ref) {
40126
- var _ref$padding = _ref.padding,
40127
- padding = _ref$padding === void 0 ? "24px" : _ref$padding;
40128
- return padding;
40129
- }, function (_ref2) {
40130
- var _ref2$minWidth = _ref2.minWidth,
40131
- minWidth = _ref2$minWidth === void 0 ? "initial" : _ref2$minWidth;
40132
- return minWidth;
40133
- }, function (_ref3) {
40134
- var extraStyles = _ref3.extraStyles;
40135
- return extraStyles;
40136
- });
40137
-
40138
40213
  const validatorToPredicate =
40139
40214
  (validatorFn, emptyCase) =>
40140
40215
  (value, ...rest) =>
@@ -40952,7 +41027,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
40952
41027
  AddressForm.mapDispatchToProps = mapDispatchToProps;
40953
41028
 
40954
41029
  var backgroundColor$8 = "#ebeffb";
40955
- var fallbackValues$G = {
41030
+ var fallbackValues$H = {
40956
41031
  backgroundColor: backgroundColor$8
40957
41032
  };
40958
41033
 
@@ -41001,7 +41076,7 @@ var Banner = function Banner(_ref) {
41001
41076
  extraStyles: isMobile && "> svg { width: 176px; }"
41002
41077
  }, /*#__PURE__*/React__default.createElement(Image, null))));
41003
41078
  };
41004
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$G);
41079
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$H);
41005
41080
 
41006
41081
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
41007
41082
  var clearOnDismount = _ref.clearOnDismount,
@@ -41135,7 +41210,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
41135
41210
  var titleColor$1 = "#292A33";
41136
41211
  var headingBackgroundColor = "transparent";
41137
41212
  var bodyBackgroundColor = "transparent";
41138
- var fallbackValues$H = {
41213
+ var fallbackValues$I = {
41139
41214
  titleColor: titleColor$1,
41140
41215
  headingBackgroundColor: headingBackgroundColor,
41141
41216
  bodyBackgroundColor: bodyBackgroundColor
@@ -41260,7 +41335,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
41260
41335
  "aria-labelledby": "".concat(id, "-button")
41261
41336
  }, children))));
41262
41337
  };
41263
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$H);
41338
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$I);
41264
41339
 
41265
41340
  var ClipboardIcon = function ClipboardIcon(_ref) {
41266
41341
  var themeValues = _ref.themeValues;
@@ -41840,7 +41915,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
41840
41915
 
41841
41916
  var footerBackgroundColor = BRIGHT_GREY;
41842
41917
  var subfooterBackgroundColor = STORM_GREY;
41843
- var fallbackValues$I = {
41918
+ var fallbackValues$J = {
41844
41919
  footerBackgroundColor: footerBackgroundColor,
41845
41920
  subfooterBackgroundColor: subfooterBackgroundColor
41846
41921
  };
@@ -41871,7 +41946,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
41871
41946
  rightContent: rightSubfooterContent
41872
41947
  }));
41873
41948
  };
41874
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$I);
41949
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$J);
41875
41950
 
41876
41951
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
41877
41952
  var fields = _ref.fields,
@@ -41918,7 +41993,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
41918
41993
 
41919
41994
  var textColor$4 = "#ffffff";
41920
41995
  var backgroundColor$9 = "#182848";
41921
- var fallbackValues$J = {
41996
+ var fallbackValues$K = {
41922
41997
  textColor: textColor$4,
41923
41998
  backgroundColor: backgroundColor$9
41924
41999
  };
@@ -41977,7 +42052,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
41977
42052
  }, t));
41978
42053
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
41979
42054
  };
41980
- var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$J);
42055
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$K);
41981
42056
 
41982
42057
  var AccountBillIcon = function AccountBillIcon(_ref) {
41983
42058
  var color = _ref.color;
@@ -42393,7 +42468,7 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
42393
42468
  var backgroundColor$a = LINK_WATER;
42394
42469
  var borderColor$5 = MOON_RAKER;
42395
42470
  var color$b = ROYAL_BLUE_VIVID;
42396
- var fallbackValues$K = {
42471
+ var fallbackValues$L = {
42397
42472
  disabledBackgroundColor: disabledBackgroundColor$1,
42398
42473
  disabledBorderColor: disabledBorderColor$1,
42399
42474
  disabledColor: disabledColor$1,
@@ -42514,7 +42589,7 @@ var LinkCard = function LinkCard(_ref) {
42514
42589
  extraStyles: "margin-right: auto;"
42515
42590
  }), showRight && !!rightContent && rightContent))));
42516
42591
  };
42517
- var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$K, "primary");
42592
+ var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$L, "primary");
42518
42593
 
42519
42594
  var LoginForm = function LoginForm(_ref) {
42520
42595
  var clearOnDismount = _ref.clearOnDismount,
@@ -46519,7 +46594,7 @@ var shadowColor = {
46519
46594
  profile: "#292A33",
46520
46595
  cms: "#292A33"
46521
46596
  };
46522
- var fallbackValues$L = {
46597
+ var fallbackValues$M = {
46523
46598
  backgroundColor: backgroundColor$b,
46524
46599
  shadowColor: shadowColor
46525
46600
  };
@@ -46559,7 +46634,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
46559
46634
  onBlur: onBlur
46560
46635
  }, menuContent));
46561
46636
  };
46562
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$L, "profile");
46637
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$M, "profile");
46563
46638
 
46564
46639
  var menu = posed.div({
46565
46640
  invisible: {
@@ -46619,7 +46694,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
46619
46694
  background: themeValues.backgroundColor
46620
46695
  }, menuContent));
46621
46696
  };
46622
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$L, "profile");
46697
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$M, "profile");
46623
46698
 
46624
46699
  var IconsModule = function IconsModule(_ref) {
46625
46700
  var icon = _ref.icon,
@@ -47146,7 +47221,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
47146
47221
  };
47147
47222
 
47148
47223
  var iconColor = ROYAL_BLUE_VIVID;
47149
- var fallbackValues$M = {
47224
+ var fallbackValues$N = {
47150
47225
  iconColor: iconColor
47151
47226
  };
47152
47227
 
@@ -47368,7 +47443,7 @@ var Obligation = function Obligation(_ref) {
47368
47443
  }))));
47369
47444
  return inactive ? inactiveObligation : activeObligation;
47370
47445
  };
47371
- var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$M);
47446
+ var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$N);
47372
47447
 
47373
47448
  var PartialAmountField = function PartialAmountField(_ref) {
47374
47449
  var lineItem = _ref.lineItem,
@@ -47505,9 +47580,9 @@ var arrowColor = WHITE;
47505
47580
  var numberColor = MATISSE_BLUE;
47506
47581
  var hoverBackgroundColor$2 = ALABASTER_WHITE;
47507
47582
  var activeBackgroundColor$2 = WHITE;
47508
- var activeColor$8 = MATISSE_BLUE;
47509
- var fallbackValues$N = {
47510
- activeColor: activeColor$8,
47583
+ var activeColor$9 = MATISSE_BLUE;
47584
+ var fallbackValues$O = {
47585
+ activeColor: activeColor$9,
47511
47586
  activeBackgroundColor: activeBackgroundColor$2,
47512
47587
  arrowColor: arrowColor,
47513
47588
  hoverBackgroundColor: hoverBackgroundColor$2,
@@ -47700,7 +47775,7 @@ var Pagination = function Pagination(_ref3) {
47700
47775
  buttonWidth: buttonWidth
47701
47776
  }));
47702
47777
  };
47703
- var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$N);
47778
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$O);
47704
47779
 
47705
47780
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
47706
47781
  var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
@@ -47801,7 +47876,7 @@ var labeledAmountTotal = {
47801
47876
  "default": "large",
47802
47877
  small: "small"
47803
47878
  };
47804
- var fallbackValues$O = {
47879
+ var fallbackValues$P = {
47805
47880
  backgroundColor: backgroundColor$c,
47806
47881
  lineItem: lineItem,
47807
47882
  labeledAmountSubtotal: labeledAmountSubtotal,
@@ -48170,7 +48245,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
48170
48245
  isError: isError
48171
48246
  });
48172
48247
  };
48173
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$O, "default");
48248
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$P, "default");
48174
48249
 
48175
48250
  var linkColor$4 = {
48176
48251
  "default": "#3176AA"
@@ -48190,7 +48265,7 @@ var modalLinkHoverFocus = {
48190
48265
  var linkTextDecoration = {
48191
48266
  "default": LINK_TEXT_DECORATION
48192
48267
  };
48193
- var fallbackValues$P = {
48268
+ var fallbackValues$Q = {
48194
48269
  linkColor: linkColor$4,
48195
48270
  fontSize: fontSize$a,
48196
48271
  lineHeight: lineHeight$4,
@@ -48254,7 +48329,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
48254
48329
  }, link)
48255
48330
  }));
48256
48331
  };
48257
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$P, "default");
48332
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$Q, "default");
48258
48333
 
48259
48334
  var backgroundColor$d = {
48260
48335
  "default": "#ffffff",
@@ -48289,7 +48364,7 @@ var modalLinkTextDecoration = {
48289
48364
  "default": LINK_TEXT_DECORATION,
48290
48365
  footer: "none"
48291
48366
  };
48292
- var fallbackValues$Q = {
48367
+ var fallbackValues$R = {
48293
48368
  backgroundColor: backgroundColor$d,
48294
48369
  linkColor: linkColor$5,
48295
48370
  border: border$3,
@@ -48361,7 +48436,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48361
48436
  className: "modal-trigger"
48362
48437
  }, link));
48363
48438
  };
48364
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$Q, "default");
48439
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$R, "default");
48365
48440
 
48366
48441
  var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48367
48442
  var onCheck = _ref.onCheck,
@@ -49127,7 +49202,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
49127
49202
  var bodyBackgroundColor$1 = "#eeeeee";
49128
49203
  var borderColor$6 = "".concat(GHOST_GREY);
49129
49204
  var focusStyles = "outline: none;";
49130
- var fallbackValues$R = {
49205
+ var fallbackValues$S = {
49131
49206
  headingBackgroundColor: headingBackgroundColor$1,
49132
49207
  headingDisabledColor: headingDisabledColor,
49133
49208
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -49430,7 +49505,7 @@ var RadioSection = function RadioSection(_ref) {
49430
49505
  });
49431
49506
  })));
49432
49507
  };
49433
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$R);
49508
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$S);
49434
49509
 
49435
49510
  var RegistrationForm = function RegistrationForm(_ref) {
49436
49511
  var clearOnDismount = _ref.clearOnDismount,
@@ -49550,13 +49625,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
49550
49625
 
49551
49626
  var GRECIAN_GREY$1 = GRECIAN_GREY;
49552
49627
  var bannerBackgroundColor = GRECIAN_GREY$1;
49553
- var fallbackValues$S = {
49628
+ var fallbackValues$T = {
49554
49629
  bannerBackgroundColor: bannerBackgroundColor
49555
49630
  };
49556
49631
 
49557
49632
  var ResetConfirmationForm = function ResetConfirmationForm() {
49558
49633
  var themeContext = React.useContext(styled.ThemeContext);
49559
- var themeValues = createThemeValues(themeContext, fallbackValues$S, "ResetConfirmationForm");
49634
+ var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetConfirmationForm");
49560
49635
  var isMobile = themeContext.isMobile;
49561
49636
  return /*#__PURE__*/React__default.createElement(Box, {
49562
49637
  padding: "0",
@@ -49671,13 +49746,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
49671
49746
 
49672
49747
  var GRECIAN_GREY$2 = GRECIAN_GREY;
49673
49748
  var bannerBackgroundColor$1 = GRECIAN_GREY$2;
49674
- var fallbackValues$T = {
49749
+ var fallbackValues$U = {
49675
49750
  bannerBackgroundColor: bannerBackgroundColor$1
49676
49751
  };
49677
49752
 
49678
49753
  var ResetPasswordSuccess = function ResetPasswordSuccess() {
49679
49754
  var themeContext = React.useContext(styled.ThemeContext);
49680
- var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetPasswordSuccess");
49755
+ var themeValues = createThemeValues(themeContext, fallbackValues$U, "ResetPasswordSuccess");
49681
49756
  var isMobile = themeContext.isMobile;
49682
49757
  return /*#__PURE__*/React__default.createElement(Box, {
49683
49758
  padding: "0",
@@ -49726,7 +49801,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
49726
49801
  var activeTabBackground = "#FFFFFF";
49727
49802
  var activeTabAccent = "#15749D";
49728
49803
  var activeTabHover = "#B8D5E1";
49729
- var fallbackValues$U = {
49804
+ var fallbackValues$V = {
49730
49805
  activeTabBackground: activeTabBackground,
49731
49806
  activeTabAccent: activeTabAccent,
49732
49807
  activeTabHover: activeTabHover
@@ -49794,12 +49869,12 @@ var Tabs = function Tabs(_ref) {
49794
49869
  }, tab.content);
49795
49870
  }))));
49796
49871
  };
49797
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$U);
49872
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$V);
49798
49873
 
49799
49874
  var activeTabBackground$1 = "#FFFFFF";
49800
49875
  var activeTabAccent$1 = "#15749D";
49801
49876
  var activeTabHover$1 = "#B8D5E1";
49802
- var fallbackValues$V = {
49877
+ var fallbackValues$W = {
49803
49878
  activeTabBackground: activeTabBackground$1,
49804
49879
  activeTabAccent: activeTabAccent$1,
49805
49880
  activeTabHover: activeTabHover$1
@@ -49854,7 +49929,7 @@ var TabSidebar = function TabSidebar(_ref) {
49854
49929
  }, text)))));
49855
49930
  })));
49856
49931
  };
49857
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$V);
49932
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$W);
49858
49933
 
49859
49934
  var Timeout = function Timeout(_ref) {
49860
49935
  var onLogout = _ref.onLogout;
@@ -49975,7 +50050,7 @@ var fontColor$1 = WHITE;
49975
50050
  var textAlign$1 = "left";
49976
50051
  var headerBackgroundColor$1 = BRIGHT_GREY;
49977
50052
  var imageBackgroundColor$1 = MATISSE_BLUE;
49978
- var fallbackValues$W = {
50053
+ var fallbackValues$X = {
49979
50054
  fontWeight: fontWeight$8,
49980
50055
  fontColor: fontColor$1,
49981
50056
  textAlign: textAlign$1,
@@ -50020,7 +50095,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
50020
50095
  src: welcomeImage
50021
50096
  })))));
50022
50097
  };
50023
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$W));
50098
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$X));
50024
50099
 
50025
50100
  var WorkflowTile = function WorkflowTile(_ref) {
50026
50101
  var _ref$workflowName = _ref.workflowName,
@@ -50080,7 +50155,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
50080
50155
  var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
50081
50156
  var menuItemHoverBackgroundColorDelete = BLUSH_RED;
50082
50157
  var menuItemHoverColor = ROYAL_BLUE_VIVID;
50083
- var fallbackValues$X = {
50158
+ var fallbackValues$Y = {
50084
50159
  menuItemBackgroundColor: menuItemBackgroundColor,
50085
50160
  menuItemColor: menuItemColor,
50086
50161
  menuItemColorDelete: menuItemColorDelete,
@@ -50147,15 +50222,15 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
50147
50222
  extraStyles: textExtraStyles
50148
50223
  }, text)));
50149
50224
  };
50150
- var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$X);
50225
+ var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$Y);
50151
50226
 
50152
50227
  var hoverColor$5 = "#116285";
50153
- var activeColor$9 = "#0E506D";
50228
+ var activeColor$a = "#0E506D";
50154
50229
  var menuTriggerColor = "#15749D";
50155
50230
  var backgroundColor$e = "white";
50156
- var fallbackValues$Y = {
50231
+ var fallbackValues$Z = {
50157
50232
  hoverColor: hoverColor$5,
50158
- activeColor: activeColor$9,
50233
+ activeColor: activeColor$a,
50159
50234
  menuTriggerColor: menuTriggerColor,
50160
50235
  backgroundColor: backgroundColor$e
50161
50236
  };
@@ -50289,10 +50364,10 @@ var PopupMenu = function PopupMenu(_ref) {
50289
50364
  }, item));
50290
50365
  })));
50291
50366
  };
50292
- var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Y);
50367
+ var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Z);
50293
50368
 
50294
50369
  var pageBackground = "#FBFCFD";
50295
- var fallbackValues$Z = {
50370
+ var fallbackValues$_ = {
50296
50371
  pageBackground: pageBackground
50297
50372
  };
50298
50373
 
@@ -50340,7 +50415,7 @@ var CenterSingle = function CenterSingle(_ref) {
50340
50415
  padding: "0"
50341
50416
  })));
50342
50417
  };
50343
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Z));
50418
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$_));
50344
50419
 
50345
50420
  var CenterStack = function CenterStack(_ref) {
50346
50421
  var header = _ref.header,
@@ -50383,7 +50458,7 @@ var CenterStack = function CenterStack(_ref) {
50383
50458
  padding: "0"
50384
50459
  })));
50385
50460
  };
50386
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Z));
50461
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$_));
50387
50462
 
50388
50463
  var CenterSingle$2 = function CenterSingle(_ref) {
50389
50464
  var header = _ref.header,
@@ -50429,7 +50504,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
50429
50504
  padding: "0"
50430
50505
  })));
50431
50506
  };
50432
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Z));
50507
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$_));
50433
50508
 
50434
50509
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
50435
50510
  var header = _ref.header,
@@ -50482,7 +50557,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
50482
50557
  padding: "0"
50483
50558
  })));
50484
50559
  };
50485
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Z));
50560
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$_));
50486
50561
 
50487
50562
  var SidebarStackContent = function SidebarStackContent(_ref) {
50488
50563
  var header = _ref.header,
@@ -50552,7 +50627,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50552
50627
  key: "footer-box"
50553
50628
  })));
50554
50629
  };
50555
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Z));
50630
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$_));
50556
50631
 
50557
50632
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
50558
50633
  var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
@@ -50613,6 +50688,8 @@ exports.ButtonWithAction = ButtonWithAction;
50613
50688
  exports.ButtonWithLink = ButtonWithLink;
50614
50689
  exports.CalendarIcon = CalendarIcon;
50615
50690
  exports.Card = Card$1;
50691
+ exports.CaretArrowDown = CaretArrowDown$1;
50692
+ exports.CaretArrowUp = CaretArrowUp$1;
50616
50693
  exports.CarrotIcon = CarrotIcon$1;
50617
50694
  exports.CashIcon = CashIcon;
50618
50695
  exports.Center = Center;
@@ -50764,6 +50841,7 @@ exports.Sidebar = Sidebar;
50764
50841
  exports.SidebarSingleContent = SidebarSingleContent$1;
50765
50842
  exports.SidebarStackContent = SidebarStackContent$1;
50766
50843
  exports.SolidDivider = SolidDivider$1;
50844
+ exports.SortableTableHeading = SortableTableHeading$1;
50767
50845
  exports.Spinner = Spinner$2;
50768
50846
  exports.Stack = Stack;
50769
50847
  exports.StandardCheckoutImage = StandardCheckoutImage;
@@ -50778,7 +50856,7 @@ exports.Table = Table_styled;
50778
50856
  exports.TableBody = TableBody_styled;
50779
50857
  exports.TableCell = TableCell_styled;
50780
50858
  exports.TableHead = TableHead$1;
50781
- exports.TableHeading = TableHeading_styled;
50859
+ exports.TableHeading = TableHeading;
50782
50860
  exports.TableListItem = TableListItem;
50783
50861
  exports.TableRow = TableRow$1;
50784
50862
  exports.Tabs = Tabs$1;