@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 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,175 @@ 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 headingConfig = _ref.headingConfig,
23644
+ _ref$sortOrder = _ref.sortOrder,
23645
+ sortOrder = _ref$sortOrder === void 0 ? null : _ref$sortOrder,
23646
+ onSortChange = _ref.onSortChange,
23647
+ themeValues = _ref.themeValues;
23648
+ var getCaretColor = function getCaretColor(order) {
23649
+ if (sortOrder === order) {
23650
+ return themeValues.activeColor;
23651
+ }
23652
+ return themeValues.inactiveColor;
23653
+ };
23654
+ return /*#__PURE__*/React__default.createElement(TableHeading, {
23655
+ extraStyles: "cursor: pointer;",
23656
+ onClick: onSortChange
23657
+ }, /*#__PURE__*/React__default.createElement(Cluster, {
23658
+ justify: "space-between"
23659
+ }, headingConfig.displayName, /*#__PURE__*/React__default.createElement(Stack, {
23660
+ justify: "center",
23661
+ childGap: "2px"
23662
+ }, /*#__PURE__*/React__default.createElement(CaretArrowUp$1, {
23663
+ color: getCaretColor("asc"),
23664
+ activeColor: themeValues.activeColor
23665
+ }), /*#__PURE__*/React__default.createElement(CaretArrowDown$1, {
23666
+ color: getCaretColor("desc"),
23667
+ activeColor: themeValues.activeColor
23668
+ }))));
23669
+ };
23670
+ var SortableTableHeading$1 = themeComponent(SortableTableHeading, "SortableTableHeading", fallbackValues$f);
23671
+
23467
23672
  var DropdownIcon = function DropdownIcon() {
23468
23673
  return /*#__PURE__*/React__default.createElement("svg", {
23469
23674
  version: "1.2",
@@ -24799,7 +25004,7 @@ exportTypedArrayMethod$1('at', function at(index) {
24799
25004
  var selectedColor = "".concat(MATISSE_BLUE);
24800
25005
  var hoverColor$3 = "".concat(HOVER_LIGHT_BLUE);
24801
25006
  var focusColor = "".concat(MATISSE_BLUE_DARK);
24802
- var fallbackValues$f = {
25007
+ var fallbackValues$i = {
24803
25008
  selectedColor: selectedColor,
24804
25009
  hoverColor: hoverColor$3,
24805
25010
  focusColor: focusColor
@@ -25200,7 +25405,7 @@ var Dropdown = function Dropdown(_ref13) {
25200
25405
  }, choice.text)));
25201
25406
  }))) : /*#__PURE__*/React__default.createElement(React.Fragment, null)));
25202
25407
  };
25203
- var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$f);
25408
+ var Dropdown$1 = themeComponent(Dropdown, "Dropdown", fallbackValues$i);
25204
25409
 
25205
25410
  var SelectContainer = styled__default.div.withConfig({
25206
25411
  displayName: "FormSelectstyled__SelectContainer",
@@ -25247,7 +25452,7 @@ var labelColor = {
25247
25452
  "default": "".concat(CHARADE_GREY),
25248
25453
  disabled: "".concat(CHARADE_GREY)
25249
25454
  };
25250
- var borderColor = {
25455
+ var borderColor$2 = {
25251
25456
  "default": "".concat(GREY_CHATEAU),
25252
25457
  disabled: "".concat(GREY_CHATEAU)
25253
25458
  };
@@ -25271,13 +25476,13 @@ var hoverFocusStyles = {
25271
25476
  "default": "color: #0E506D; outline: none; text-decoration: underline; ",
25272
25477
  disabled: "color: #6D717E;"
25273
25478
  };
25274
- var fallbackValues$g = {
25479
+ var fallbackValues$j = {
25275
25480
  linkColor: linkColor$1,
25276
25481
  formBackgroundColor: formBackgroundColor,
25277
25482
  inputBackgroundColor: inputBackgroundColor,
25278
25483
  color: color$6,
25279
25484
  labelColor: labelColor,
25280
- borderColor: borderColor,
25485
+ borderColor: borderColor$2,
25281
25486
  lineHeight: lineHeight$1,
25282
25487
  fontSize: fontSize$4,
25283
25488
  errorFontSize: errorFontSize,
@@ -25383,7 +25588,7 @@ var FormSelect = function FormSelect(_ref) {
25383
25588
  extraStyles: "height: ".concat(themeValues.lineHeight, ";")
25384
25589
  })));
25385
25590
  };
25386
- var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$g, "default");
25591
+ var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$j, "default");
25387
25592
 
25388
25593
  var options = [{
25389
25594
  text: "Afghanistan",
@@ -26206,7 +26411,7 @@ var mobileFontSize$1 = {
26206
26411
  // 12px
26207
26412
  extraSmall: "0.71428rem" // 10px
26208
26413
  };
26209
- var fallbackValues$h = {
26414
+ var fallbackValues$k = {
26210
26415
  fontFamily: fontFamily$4,
26211
26416
  fontSize: fontSize$5
26212
26417
  };
@@ -26216,7 +26421,7 @@ var mobileFallbackValues$1 = {
26216
26421
  };
26217
26422
  var MOBILE_BREAKPOINT$1 = 768;
26218
26423
 
26219
- var _excluded$r = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
26424
+ var _excluded$s = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
26220
26425
 
26221
26426
  /*
26222
26427
  New responsive text component for Detail elements
@@ -26247,7 +26452,7 @@ var _excluded$r = ["themeValues", "weight", "color", "margin", "textAlign", "ext
26247
26452
  var isBelowBreakpoint$1 = window.innerWidth < MOBILE_BREAKPOINT$1;
26248
26453
  var isTouchDevice$2 = "ontouchstart" in window || navigator.maxTouchPoints > 1;
26249
26454
  var mobileDeviceDetected$1 = isBelowBreakpoint$1 && isTouchDevice$2;
26250
- var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$h;
26455
+ var fallbacks$1 = mobileDeviceDetected$1 ? mobileFallbackValues$1 : fallbackValues$k;
26251
26456
  var Detail = function Detail(_ref) {
26252
26457
  var themeValues = _ref.themeValues,
26253
26458
  _ref$weight = _ref.weight,
@@ -26266,7 +26471,7 @@ var Detail = function Detail(_ref) {
26266
26471
  as = _ref$as === void 0 ? "p" : _ref$as,
26267
26472
  dataQa = _ref.dataQa,
26268
26473
  children = _ref.children,
26269
- rest = _objectWithoutProperties(_ref, _excluded$r);
26474
+ rest = _objectWithoutProperties(_ref, _excluded$s);
26270
26475
  return /*#__PURE__*/React__default.createElement(DetailText, _extends({
26271
26476
  variant: variant,
26272
26477
  as: as,
@@ -26283,10 +26488,10 @@ var Detail = function Detail(_ref) {
26283
26488
  };
26284
26489
  var Detail$1 = themeComponent(Detail, "Detail", fallbacks$1, "regular");
26285
26490
 
26286
- var backgroundColor$3 = WHITE;
26491
+ var backgroundColor$4 = WHITE;
26287
26492
  var boxShadow = "0px 2px 14px 0px ".concat(ATHENS_GREY, ", 0px 3px 8px 0px ").concat(GHOST_GREY);
26288
- var fallbackValues$i = {
26289
- backgroundColor: backgroundColor$3,
26493
+ var fallbackValues$l = {
26494
+ backgroundColor: backgroundColor$4,
26290
26495
  boxShadow: boxShadow
26291
26496
  };
26292
26497
 
@@ -26308,7 +26513,7 @@ var DisplayBox = function DisplayBox(_ref) {
26308
26513
  dataQa: dataQa
26309
26514
  }, children));
26310
26515
  };
26311
- var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$i);
26516
+ var DisplayBox$1 = themeComponent(DisplayBox, "DisplayBox", fallbackValues$l);
26312
26517
 
26313
26518
  /*
26314
26519
  Hook that assigns a click event listener to the main document element
@@ -26426,11 +26631,11 @@ var index$5 = /*#__PURE__*/Object.freeze({
26426
26631
  });
26427
26632
 
26428
26633
  var hoverColor$4 = "#116285";
26429
- var activeColor$4 = "#0E506D";
26634
+ var activeColor$5 = "#0E506D";
26430
26635
  var popoverTriggerColor = "#15749D";
26431
- var fallbackValues$j = {
26636
+ var fallbackValues$m = {
26432
26637
  hoverColor: hoverColor$4,
26433
- activeColor: activeColor$4,
26638
+ activeColor: activeColor$5,
26434
26639
  popoverTriggerColor: popoverTriggerColor
26435
26640
  };
26436
26641
 
@@ -26578,7 +26783,7 @@ var Popover = function Popover(_ref) {
26578
26783
  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
26784
  })));
26580
26785
  };
26581
- var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$j);
26786
+ var Popover$1 = themeComponent(Popover, "Popover", fallbackValues$m);
26582
26787
 
26583
26788
  var DisplayCard = function DisplayCard(_ref) {
26584
26789
  var title = _ref.title,
@@ -26951,7 +27156,7 @@ var labelColor$1 = {
26951
27156
  "default": "".concat(CHARADE_GREY),
26952
27157
  disabled: "".concat(CHARADE_GREY)
26953
27158
  };
26954
- var borderColor$1 = {
27159
+ var borderColor$3 = {
26955
27160
  "default": "".concat(STORM_GREY),
26956
27161
  disabled: "".concat(STORM_GREY)
26957
27162
  };
@@ -26978,13 +27183,13 @@ var hoverFocusStyles$1 = {
26978
27183
  var formFooterPanel = {
26979
27184
  "default": "".concat(INFO_BLUE)
26980
27185
  };
26981
- var fallbackValues$k = {
27186
+ var fallbackValues$n = {
26982
27187
  linkColor: linkColor$2,
26983
27188
  formBackgroundColor: formBackgroundColor$1,
26984
27189
  inputBackgroundColor: inputBackgroundColor$1,
26985
27190
  color: color$7,
26986
27191
  labelColor: labelColor$1,
26987
- borderColor: borderColor$1,
27192
+ borderColor: borderColor$3,
26988
27193
  lineHeight: lineHeight$2,
26989
27194
  fontSize: fontSize$6,
26990
27195
  errorFontSize: errorFontSize$1,
@@ -26993,7 +27198,7 @@ var fallbackValues$k = {
26993
27198
  formFooterPanel: formFooterPanel
26994
27199
  };
26995
27200
 
26996
- var _excluded$s = ["showErrors", "themeValues"],
27201
+ var _excluded$t = ["showErrors", "themeValues"],
26997
27202
  _excluded2 = ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "autocompleteValue", "extraStyles", "removeFromValue", "dataQa", "isRequired"];
26998
27203
  var InputField = styled__default.input.withConfig({
26999
27204
  displayName: "FormInput__InputField",
@@ -27028,7 +27233,7 @@ var InputField = styled__default.input.withConfig({
27028
27233
  var FormattedInputField = styled__default(function (_ref8) {
27029
27234
  var showErrors = _ref8.showErrors,
27030
27235
  themeValues = _ref8.themeValues,
27031
- props = _objectWithoutProperties(_ref8, _excluded$s);
27236
+ props = _objectWithoutProperties(_ref8, _excluded$t);
27032
27237
  return /*#__PURE__*/React__default.createElement(FormattedInput, props);
27033
27238
  }).withConfig({
27034
27239
  displayName: "FormInput__FormattedInputField",
@@ -27224,9 +27429,9 @@ var FormInput = function FormInput(_ref15) {
27224
27429
  padding: "0 0 0 auto"
27225
27430
  }, decorator)));
27226
27431
  };
27227
- var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$k, "default");
27432
+ var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$n, "default");
27228
27433
 
27229
- var _excluded$t = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
27434
+ var _excluded$u = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
27230
27435
  var FormInputRow = function FormInputRow(_ref) {
27231
27436
  var _ref$breakpoint = _ref.breakpoint,
27232
27437
  breakpoint = _ref$breakpoint === void 0 ? "30rem" : _ref$breakpoint,
@@ -27235,7 +27440,7 @@ var FormInputRow = function FormInputRow(_ref) {
27235
27440
  largeChild = _ref.largeChild,
27236
27441
  largeChildSize = _ref.largeChildSize,
27237
27442
  children = _ref.children,
27238
- rest = _objectWithoutProperties(_ref, _excluded$t);
27443
+ rest = _objectWithoutProperties(_ref, _excluded$u);
27239
27444
  return /*#__PURE__*/React__default.createElement(Box, _extends({
27240
27445
  padding: "0"
27241
27446
  }, rest), /*#__PURE__*/React__default.createElement(Switcher, {
@@ -27246,24 +27451,24 @@ var FormInputRow = function FormInputRow(_ref) {
27246
27451
  }, children));
27247
27452
  };
27248
27453
 
27249
- var _excluded$u = ["childGap", "bottomItem", "children"];
27454
+ var _excluded$v = ["childGap", "bottomItem", "children"];
27250
27455
  var FormInputColumn = function FormInputColumn(_ref) {
27251
27456
  var _ref$childGap = _ref.childGap,
27252
27457
  childGap = _ref$childGap === void 0 ? "0.5rem" : _ref$childGap,
27253
27458
  bottomItem = _ref.bottomItem,
27254
27459
  children = _ref.children,
27255
- rest = _objectWithoutProperties(_ref, _excluded$u);
27460
+ rest = _objectWithoutProperties(_ref, _excluded$v);
27256
27461
  return /*#__PURE__*/React__default.createElement(Stack, _extends({
27257
27462
  childGap: childGap,
27258
27463
  bottomItem: bottomItem
27259
27464
  }, rest), children);
27260
27465
  };
27261
27466
 
27262
- var _excluded$v = ["themeValues", "children"];
27467
+ var _excluded$w = ["themeValues", "children"];
27263
27468
  var FormContainer = function FormContainer(_ref) {
27264
27469
  var themeValues = _ref.themeValues,
27265
27470
  children = _ref.children,
27266
- rest = _objectWithoutProperties(_ref, _excluded$v);
27471
+ rest = _objectWithoutProperties(_ref, _excluded$w);
27267
27472
  var _useContext = React.useContext(styled.ThemeContext),
27268
27473
  isMobile = _useContext.isMobile;
27269
27474
  return /*#__PURE__*/React__default.createElement(Box, _extends({
@@ -27272,7 +27477,7 @@ var FormContainer = function FormContainer(_ref) {
27272
27477
  borderRadius: "4px"
27273
27478
  }, rest), children);
27274
27479
  };
27275
- var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$k, "default");
27480
+ var FormContainer$1 = themeComponent(withWindowSize(FormContainer), "FormContainer", fallbackValues$n, "default");
27276
27481
 
27277
27482
  var FormFooterPanel = function FormFooterPanel(_ref) {
27278
27483
  var themeValues = _ref.themeValues,
@@ -27293,7 +27498,7 @@ var FormFooterPanel = function FormFooterPanel(_ref) {
27293
27498
  text: linkText
27294
27499
  })));
27295
27500
  };
27296
- var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$k, "default");
27501
+ var FormFooterPanel$1 = themeComponent(withWindowSize(FormFooterPanel), "FormFooterPanel", fallbackValues$n, "default");
27297
27502
 
27298
27503
  var fontSize$7 = {
27299
27504
  "default": "1rem",
@@ -27307,7 +27512,7 @@ var color$8 = {
27307
27512
  "default": "".concat(CHARADE_GREY),
27308
27513
  radio: "".concat(MINESHAFT_GREY)
27309
27514
  };
27310
- var fallbackValues$l = {
27515
+ var fallbackValues$o = {
27311
27516
  fontSize: fontSize$7,
27312
27517
  padding: padding$1,
27313
27518
  color: color$8
@@ -27349,11 +27554,11 @@ var FormattedAddress = function FormattedAddress(_ref) {
27349
27554
  dataQa: "".concat(qaPrefix, "-3")
27350
27555
  }, city, ", ", stateProvince, " ".concat(zip), country ? " ".concat(country) : "")));
27351
27556
  };
27352
- var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$l, "default");
27557
+ var FormattedAddress$1 = themeComponent(FormattedAddress, "FormattedAddress", fallbackValues$o, "default");
27353
27558
 
27354
27559
  var textColor$1 = "".concat(CHARADE_GREY);
27355
27560
  var autopayTextColor = "".concat(REGENT_GREY);
27356
- var fallbackValues$m = {
27561
+ var fallbackValues$p = {
27357
27562
  textColor: textColor$1,
27358
27563
  autopayTextColor: autopayTextColor
27359
27564
  };
@@ -27391,11 +27596,11 @@ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
27391
27596
  extraStyles: "font-style: italic;"
27392
27597
  }, "Autopay Enabled")));
27393
27598
  };
27394
- var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$m);
27599
+ var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$p);
27395
27600
 
27396
27601
  var textColor$2 = "".concat(CHARADE_GREY);
27397
27602
  var autopayTextColor$1 = "".concat(REGENT_GREY);
27398
- var fallbackValues$n = {
27603
+ var fallbackValues$q = {
27399
27604
  textColor: textColor$2,
27400
27605
  autopayTextColor: autopayTextColor$1
27401
27606
  };
@@ -27487,7 +27692,7 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
27487
27692
  extraStyles: "font-style: italic;"
27488
27693
  }, "Autopay Enabled")));
27489
27694
  };
27490
- var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$n);
27695
+ var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$q);
27491
27696
 
27492
27697
  var Hamburger = styled__default.button.withConfig({
27493
27698
  displayName: "HamburgerButton__Hamburger",
@@ -27568,12 +27773,12 @@ var fontSize$8 = {
27568
27773
  h5: "1.375rem",
27569
27774
  h6: "1.25rem"
27570
27775
  };
27571
- var fallbackValues$o = {
27776
+ var fallbackValues$r = {
27572
27777
  fontFamily: fontFamily$5,
27573
27778
  fontSize: fontSize$8
27574
27779
  };
27575
27780
 
27576
- var _excluded$w = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
27781
+ var _excluded$x = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
27577
27782
  var Heading = function Heading(_ref) {
27578
27783
  var themeValues = _ref.themeValues,
27579
27784
  _ref$weight = _ref.weight,
@@ -27592,7 +27797,7 @@ var Heading = function Heading(_ref) {
27592
27797
  as = _ref$as === void 0 ? variant : _ref$as,
27593
27798
  dataQa = _ref.dataQa,
27594
27799
  children = _ref.children,
27595
- rest = _objectWithoutProperties(_ref, _excluded$w);
27800
+ rest = _objectWithoutProperties(_ref, _excluded$x);
27596
27801
  return /*#__PURE__*/React__default.createElement(HeadingText, _extends({
27597
27802
  variant: variant,
27598
27803
  as: as,
@@ -27607,7 +27812,7 @@ var Heading = function Heading(_ref) {
27607
27812
  "data-qa": dataQa
27608
27813
  }, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
27609
27814
  };
27610
- var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$o, "h1");
27815
+ var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$r, "h1");
27611
27816
 
27612
27817
  var Image = styled__default.img.withConfig({
27613
27818
  displayName: "ImageBoxstyled__Image",
@@ -27742,7 +27947,7 @@ var fontWeight$4 = {
27742
27947
  // fontsize Detail regular
27743
27948
  large: "700" // fontsize Title small
27744
27949
  };
27745
- var fallbackValues$p = {
27950
+ var fallbackValues$s = {
27746
27951
  fontWeight: fontWeight$4
27747
27952
  };
27748
27953
 
@@ -27793,15 +27998,15 @@ var LabeledAmountV2 = function LabeledAmountV2(_ref) {
27793
27998
  }, /*#__PURE__*/React__default.createElement("span", null, label), /*#__PURE__*/React__default.createElement("span", null, amount));
27794
27999
  };
27795
28000
 
27796
- var _excluded$x = ["version"];
28001
+ var _excluded$y = ["version"];
27797
28002
  var LabeledAmount = function LabeledAmount(_ref) {
27798
28003
  var _ref$version = _ref.version,
27799
28004
  version = _ref$version === void 0 ? "v1" : _ref$version,
27800
- rest = _objectWithoutProperties(_ref, _excluded$x);
28005
+ rest = _objectWithoutProperties(_ref, _excluded$y);
27801
28006
  var LabeledAmountComponent = version === "v1" ? LabeledAmountV1 : LabeledAmountV2;
27802
28007
  return /*#__PURE__*/React__default.createElement(LabeledAmountComponent, rest);
27803
28008
  };
27804
- var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$p, "default");
28009
+ var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$s, "default");
27805
28010
 
27806
28011
  var weightTitle = {
27807
28012
  "default": "600",
@@ -27811,7 +28016,7 @@ var detailVariant = {
27811
28016
  "default": "large",
27812
28017
  small: "small"
27813
28018
  };
27814
- var fallbackValues$q = {
28019
+ var fallbackValues$t = {
27815
28020
  weightTitle: weightTitle,
27816
28021
  detailVariant: detailVariant
27817
28022
  };
@@ -27859,10 +28064,10 @@ var LineItem = function LineItem(_ref) {
27859
28064
  childGap: "0.25rem"
27860
28065
  }, visibleCustomAttrs));
27861
28066
  };
27862
- var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$q, "default");
28067
+ var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$t, "default");
27863
28068
 
27864
28069
  var color$9 = "#15749D";
27865
- var fallbackValues$r = {
28070
+ var fallbackValues$u = {
27866
28071
  color: color$9
27867
28072
  };
27868
28073
 
@@ -27926,7 +28131,7 @@ var Spinner$1 = function Spinner(_ref6) {
27926
28131
  strokeWidth: strokeWidth
27927
28132
  })));
27928
28133
  };
27929
- var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$r);
28134
+ var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$u);
27930
28135
 
27931
28136
  var Loading = function Loading() {
27932
28137
  return /*#__PURE__*/React__default.createElement(Box, {
@@ -27942,7 +28147,7 @@ var Loading = function Loading() {
27942
28147
  })))));
27943
28148
  };
27944
28149
 
27945
- var _excluded$y = ["leftContent", "rightContent", "footerMinHeight", "backgroundColor", "largeSide", "largeSideSize", "footerPadding", "isMobile", "footerWidth"];
28150
+ var _excluded$z = ["leftContent", "rightContent", "footerMinHeight", "backgroundColor", "largeSide", "largeSideSize", "footerPadding", "isMobile", "footerWidth"];
27946
28151
  var NavFooter = function NavFooter(_ref) {
27947
28152
  var leftContent = _ref.leftContent,
27948
28153
  rightContent = _ref.rightContent,
@@ -27957,7 +28162,7 @@ var NavFooter = function NavFooter(_ref) {
27957
28162
  footerPadding = _ref$footerPadding === void 0 ? "1.5rem 1rem" : _ref$footerPadding,
27958
28163
  isMobile = _ref.isMobile,
27959
28164
  footerWidth = _ref.footerWidth,
27960
- rest = _objectWithoutProperties(_ref, _excluded$y);
28165
+ rest = _objectWithoutProperties(_ref, _excluded$z);
27961
28166
  return /*#__PURE__*/React__default.createElement(Box, _extends({
27962
28167
  padding: footerPadding,
27963
28168
  background: backgroundColor,
@@ -27988,7 +28193,7 @@ var NavFooter = function NavFooter(_ref) {
27988
28193
  }, rightContent)))))));
27989
28194
  };
27990
28195
 
27991
- var _excluded$z = ["leftContent", "rightContent", "headerHeight", "isMobile", "backgroundColor", "headerWidth"];
28196
+ var _excluded$A = ["leftContent", "rightContent", "headerHeight", "isMobile", "backgroundColor", "headerWidth"];
27992
28197
  var NavHeader = function NavHeader(_ref) {
27993
28198
  var leftContent = _ref.leftContent,
27994
28199
  rightContent = _ref.rightContent,
@@ -27997,7 +28202,7 @@ var NavHeader = function NavHeader(_ref) {
27997
28202
  isMobile = _ref.isMobile,
27998
28203
  backgroundColor = _ref.backgroundColor,
27999
28204
  headerWidth = _ref.headerWidth,
28000
- rest = _objectWithoutProperties(_ref, _excluded$z);
28205
+ rest = _objectWithoutProperties(_ref, _excluded$A);
28001
28206
  return /*#__PURE__*/React__default.createElement(Box, _extends({
28002
28207
  padding: "0 16px 4px",
28003
28208
  background: backgroundColor,
@@ -28186,7 +28391,7 @@ var height$1 = {
28186
28391
  "default": "3rem",
28187
28392
  large: "192px"
28188
28393
  };
28189
- var fallbackValues$s = {
28394
+ var fallbackValues$v = {
28190
28395
  color: color$a,
28191
28396
  height: height$1
28192
28397
  };
@@ -28328,13 +28533,13 @@ var Placeholder = function Placeholder(_ref4) {
28328
28533
  extraStyles: "padding: 0 0 0 8px; text-align: center;"
28329
28534
  }, text)))))))))));
28330
28535
  };
28331
- var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$s, "default");
28536
+ var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$v, "default");
28332
28537
 
28333
- var backgroundColor$4 = {
28538
+ var backgroundColor$5 = {
28334
28539
  "default": "".concat(WHITE)
28335
28540
  };
28336
- var fallbackValues$t = {
28337
- backgroundColor: backgroundColor$4
28541
+ var fallbackValues$w = {
28542
+ backgroundColor: backgroundColor$5
28338
28543
  };
28339
28544
 
28340
28545
  var ProcessingFee = function ProcessingFee(_ref) {
@@ -28360,13 +28565,13 @@ var ProcessingFee = function ProcessingFee(_ref) {
28360
28565
  showQuitLink: false
28361
28566
  }));
28362
28567
  };
28363
- var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$t, "default");
28568
+ var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$w, "default");
28364
28569
 
28365
- var activeColor$5 = MATISSE_BLUE;
28570
+ var activeColor$6 = MATISSE_BLUE;
28366
28571
  var inactiveBorderColor = GREY_CHATEAU;
28367
- var fallbackValues$u = {
28572
+ var fallbackValues$x = {
28368
28573
  inactiveBorderColor: inactiveBorderColor,
28369
- activeColor: activeColor$5
28574
+ activeColor: activeColor$6
28370
28575
  };
28371
28576
 
28372
28577
  var HiddenRadioInput = styled__default.input.withConfig({
@@ -28447,13 +28652,13 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref5) {
28447
28652
  inactiveBorderColor: themeValues.inactiveBorderColor
28448
28653
  }), labelText));
28449
28654
  };
28450
- var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$u);
28655
+ var RadioButtonWithLabel$1 = themeComponent(RadioButtonWithLabel, "RadioButtonWithLabel", fallbackValues$x);
28451
28656
 
28452
- var activeColor$6 = "".concat(MATISSE_BLUE);
28453
- var inactiveColor = "".concat(STORM_GREY);
28454
- var fallbackValues$v = {
28455
- activeColor: activeColor$6,
28456
- inactiveColor: inactiveColor
28657
+ var activeColor$7 = "".concat(MATISSE_BLUE);
28658
+ var inactiveColor$1 = "".concat(STORM_GREY);
28659
+ var fallbackValues$y = {
28660
+ activeColor: activeColor$7,
28661
+ inactiveColor: inactiveColor$1
28457
28662
  };
28458
28663
 
28459
28664
  var HiddenRadioButton = styled__default.input.withConfig({
@@ -28556,11 +28761,11 @@ var RadioButton$1 = function RadioButton(_ref2) {
28556
28761
  borderRadius: "8px"
28557
28762
  })));
28558
28763
  };
28559
- var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$v);
28764
+ var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$y);
28560
28765
 
28561
28766
  var searchIconColor = WHITE;
28562
28767
  var searchIconBackgroundColor = MATISSE_BLUE;
28563
- var fallbackValues$w = {
28768
+ var fallbackValues$z = {
28564
28769
  searchIconColor: searchIconColor,
28565
28770
  searchIconBackgroundColor: searchIconBackgroundColor
28566
28771
  };
@@ -28656,12 +28861,12 @@ var Search = function Search(_ref) {
28656
28861
  size: 24
28657
28862
  })));
28658
28863
  };
28659
- var Search$1 = themeComponent(Search, "Search", fallbackValues$w);
28864
+ var Search$1 = themeComponent(Search, "Search", fallbackValues$z);
28660
28865
 
28661
28866
  var border$2 = {
28662
28867
  "default": "1px solid #caced8"
28663
28868
  };
28664
- var fallbackValues$x = {
28869
+ var fallbackValues$A = {
28665
28870
  border: border$2
28666
28871
  };
28667
28872
 
@@ -28734,16 +28939,16 @@ var SearchableSelect = function SearchableSelect(_ref) {
28734
28939
  });
28735
28940
  }))));
28736
28941
  };
28737
- var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$x, "default");
28942
+ var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$A, "default");
28738
28943
 
28739
- var borderColor$2 = {
28944
+ var borderColor$4 = {
28740
28945
  "default": "".concat(GREY_CHATEAU)
28741
28946
  };
28742
28947
  var borderSize = {
28743
28948
  "default": "1px"
28744
28949
  };
28745
- var fallbackValues$y = {
28746
- borderColor: borderColor$2,
28950
+ var fallbackValues$B = {
28951
+ borderColor: borderColor$4,
28747
28952
  borderSize: borderSize
28748
28953
  };
28749
28954
 
@@ -28760,7 +28965,7 @@ var SolidDivider = function SolidDivider(_ref) {
28760
28965
  borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
28761
28966
  });
28762
28967
  };
28763
- var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$y, "default");
28968
+ var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$B, "default");
28764
28969
 
28765
28970
  var placeHolderOptionUS = {
28766
28971
  text: "Please select state",
@@ -39346,7 +39551,7 @@ var white = "".concat(WHITE);
39346
39551
  var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
39347
39552
  var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
39348
39553
  var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
39349
- var fallbackValues$z = {
39554
+ var fallbackValues$C = {
39350
39555
  onBackground: onBackground,
39351
39556
  disabledBackground: disabledBackground,
39352
39557
  disabledBackgroundLight: disabledBackgroundLight,
@@ -39523,7 +39728,7 @@ var ToggleSwitch = function ToggleSwitch(_ref10) {
39523
39728
  padding: "0"
39524
39729
  }, label))));
39525
39730
  };
39526
- var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$z);
39731
+ var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$C);
39527
39732
 
39528
39733
  var background$2 = "".concat(ATHENS_GREY);
39529
39734
  var white$1 = "".concat(WHITE);
@@ -39565,12 +39770,12 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
39565
39770
  }));
39566
39771
  };
39567
39772
 
39568
- var backgroundColor$5 = WHITE;
39773
+ var backgroundColor$6 = WHITE;
39569
39774
  var imageBackgroundColor = INFO_BLUE;
39570
39775
  var headerBackgroundColor = STORM_GREY;
39571
39776
  var headerColor = WHITE;
39572
- var fallbackValues$A = {
39573
- backgroundColor: backgroundColor$5,
39777
+ var fallbackValues$D = {
39778
+ backgroundColor: backgroundColor$6,
39574
39779
  imageBackgroundColor: imageBackgroundColor,
39575
39780
  headerBackgroundColor: headerBackgroundColor,
39576
39781
  headerColor: headerColor
@@ -39593,7 +39798,7 @@ var CardImage = styled__default.img.withConfig({
39593
39798
  var titleColor = BRIGHT_GREY;
39594
39799
  var titleWeight = FONT_WEIGHT_BOLD;
39595
39800
  var textColor$3 = BRIGHT_GREY;
39596
- var fallbackValues$B = {
39801
+ var fallbackValues$E = {
39597
39802
  titleColor: titleColor,
39598
39803
  titleWeight: titleWeight,
39599
39804
  textColor: textColor$3
@@ -39617,7 +39822,7 @@ var CardText = function CardText(_ref) {
39617
39822
  color: themeValues.textColor
39618
39823
  }, text))));
39619
39824
  };
39620
- var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$B);
39825
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$E);
39621
39826
 
39622
39827
  var CardHeader = function CardHeader(_ref) {
39623
39828
  var backgroundColor = _ref.backgroundColor,
@@ -39719,14 +39924,14 @@ var Card = function Card(_ref) {
39719
39924
  titleVariant: titleVariant
39720
39925
  }), children)))));
39721
39926
  };
39722
- var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$A);
39927
+ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$D);
39723
39928
 
39724
39929
  var fontFamily$6 = "Public Sans, sans-serif";
39725
- var activeColor$7 = MATISSE_BLUE;
39930
+ var activeColor$8 = MATISSE_BLUE;
39726
39931
  var linkColor$3 = CHARADE_GREY;
39727
- var fallbackValues$C = {
39932
+ var fallbackValues$F = {
39728
39933
  fontFamily: fontFamily$6,
39729
- activeColor: activeColor$7,
39934
+ activeColor: activeColor$8,
39730
39935
  linkColor: linkColor$3
39731
39936
  };
39732
39937
 
@@ -39753,7 +39958,7 @@ var NavTab = function NavTab(_ref) {
39753
39958
  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
39959
  }, label));
39755
39960
  };
39756
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$C);
39961
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$F);
39757
39962
 
39758
39963
  var NavTabs = function NavTabs(_ref) {
39759
39964
  var tabsConfig = _ref.tabsConfig,
@@ -39851,12 +40056,12 @@ var borderRadius = {
39851
40056
  largeTitle: "0.25rem",
39852
40057
  small: "0.25rem"
39853
40058
  };
39854
- var backgroundColor$6 = {
40059
+ var backgroundColor$7 = {
39855
40060
  "default": WHITE,
39856
40061
  largeTitle: WHITE,
39857
40062
  small: WHITE
39858
40063
  };
39859
- var fallbackValues$D = {
40064
+ var fallbackValues$G = {
39860
40065
  fontSize: fontSize$9,
39861
40066
  fontWeight: fontWeight$5,
39862
40067
  fontColor: fontColor,
@@ -39866,7 +40071,7 @@ var fallbackValues$D = {
39866
40071
  titleSpacing: titleSpacing,
39867
40072
  boxShadow: boxShadow$1,
39868
40073
  borderRadius: borderRadius,
39869
- backgroundColor: backgroundColor$6
40074
+ backgroundColor: backgroundColor$7
39870
40075
  };
39871
40076
 
39872
40077
  /*
@@ -39936,7 +40141,7 @@ var Module = function Module(_ref) {
39936
40141
  boxShadow: themeValues.boxShadow
39937
40142
  }, children)));
39938
40143
  };
39939
- var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
40144
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$G, "default"));
39940
40145
 
39941
40146
  var WalletName = function WalletName(_ref) {
39942
40147
  var mainText = _ref.mainText,
@@ -40003,138 +40208,6 @@ var WalletName = function WalletName(_ref) {
40003
40208
  })));
40004
40209
  };
40005
40210
 
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
40211
  const validatorToPredicate =
40139
40212
  (validatorFn, emptyCase) =>
40140
40213
  (value, ...rest) =>
@@ -40952,7 +41025,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
40952
41025
  AddressForm.mapDispatchToProps = mapDispatchToProps;
40953
41026
 
40954
41027
  var backgroundColor$8 = "#ebeffb";
40955
- var fallbackValues$G = {
41028
+ var fallbackValues$H = {
40956
41029
  backgroundColor: backgroundColor$8
40957
41030
  };
40958
41031
 
@@ -41001,7 +41074,7 @@ var Banner = function Banner(_ref) {
41001
41074
  extraStyles: isMobile && "> svg { width: 176px; }"
41002
41075
  }, /*#__PURE__*/React__default.createElement(Image, null))));
41003
41076
  };
41004
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$G);
41077
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$H);
41005
41078
 
41006
41079
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
41007
41080
  var clearOnDismount = _ref.clearOnDismount,
@@ -41135,7 +41208,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
41135
41208
  var titleColor$1 = "#292A33";
41136
41209
  var headingBackgroundColor = "transparent";
41137
41210
  var bodyBackgroundColor = "transparent";
41138
- var fallbackValues$H = {
41211
+ var fallbackValues$I = {
41139
41212
  titleColor: titleColor$1,
41140
41213
  headingBackgroundColor: headingBackgroundColor,
41141
41214
  bodyBackgroundColor: bodyBackgroundColor
@@ -41260,7 +41333,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
41260
41333
  "aria-labelledby": "".concat(id, "-button")
41261
41334
  }, children))));
41262
41335
  };
41263
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$H);
41336
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$I);
41264
41337
 
41265
41338
  var ClipboardIcon = function ClipboardIcon(_ref) {
41266
41339
  var themeValues = _ref.themeValues;
@@ -41840,7 +41913,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
41840
41913
 
41841
41914
  var footerBackgroundColor = BRIGHT_GREY;
41842
41915
  var subfooterBackgroundColor = STORM_GREY;
41843
- var fallbackValues$I = {
41916
+ var fallbackValues$J = {
41844
41917
  footerBackgroundColor: footerBackgroundColor,
41845
41918
  subfooterBackgroundColor: subfooterBackgroundColor
41846
41919
  };
@@ -41871,7 +41944,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
41871
41944
  rightContent: rightSubfooterContent
41872
41945
  }));
41873
41946
  };
41874
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$I);
41947
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$J);
41875
41948
 
41876
41949
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
41877
41950
  var fields = _ref.fields,
@@ -41918,7 +41991,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
41918
41991
 
41919
41992
  var textColor$4 = "#ffffff";
41920
41993
  var backgroundColor$9 = "#182848";
41921
- var fallbackValues$J = {
41994
+ var fallbackValues$K = {
41922
41995
  textColor: textColor$4,
41923
41996
  backgroundColor: backgroundColor$9
41924
41997
  };
@@ -41977,7 +42050,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
41977
42050
  }, t));
41978
42051
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
41979
42052
  };
41980
- var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$J);
42053
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$K);
41981
42054
 
41982
42055
  var AccountBillIcon = function AccountBillIcon(_ref) {
41983
42056
  var color = _ref.color;
@@ -42393,7 +42466,7 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
42393
42466
  var backgroundColor$a = LINK_WATER;
42394
42467
  var borderColor$5 = MOON_RAKER;
42395
42468
  var color$b = ROYAL_BLUE_VIVID;
42396
- var fallbackValues$K = {
42469
+ var fallbackValues$L = {
42397
42470
  disabledBackgroundColor: disabledBackgroundColor$1,
42398
42471
  disabledBorderColor: disabledBorderColor$1,
42399
42472
  disabledColor: disabledColor$1,
@@ -42514,7 +42587,7 @@ var LinkCard = function LinkCard(_ref) {
42514
42587
  extraStyles: "margin-right: auto;"
42515
42588
  }), showRight && !!rightContent && rightContent))));
42516
42589
  };
42517
- var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$K, "primary");
42590
+ var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$L, "primary");
42518
42591
 
42519
42592
  var LoginForm = function LoginForm(_ref) {
42520
42593
  var clearOnDismount = _ref.clearOnDismount,
@@ -46519,7 +46592,7 @@ var shadowColor = {
46519
46592
  profile: "#292A33",
46520
46593
  cms: "#292A33"
46521
46594
  };
46522
- var fallbackValues$L = {
46595
+ var fallbackValues$M = {
46523
46596
  backgroundColor: backgroundColor$b,
46524
46597
  shadowColor: shadowColor
46525
46598
  };
@@ -46559,7 +46632,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
46559
46632
  onBlur: onBlur
46560
46633
  }, menuContent));
46561
46634
  };
46562
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$L, "profile");
46635
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$M, "profile");
46563
46636
 
46564
46637
  var menu = posed.div({
46565
46638
  invisible: {
@@ -46619,7 +46692,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
46619
46692
  background: themeValues.backgroundColor
46620
46693
  }, menuContent));
46621
46694
  };
46622
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$L, "profile");
46695
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$M, "profile");
46623
46696
 
46624
46697
  var IconsModule = function IconsModule(_ref) {
46625
46698
  var icon = _ref.icon,
@@ -47146,7 +47219,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
47146
47219
  };
47147
47220
 
47148
47221
  var iconColor = ROYAL_BLUE_VIVID;
47149
- var fallbackValues$M = {
47222
+ var fallbackValues$N = {
47150
47223
  iconColor: iconColor
47151
47224
  };
47152
47225
 
@@ -47368,7 +47441,7 @@ var Obligation = function Obligation(_ref) {
47368
47441
  }))));
47369
47442
  return inactive ? inactiveObligation : activeObligation;
47370
47443
  };
47371
- var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$M);
47444
+ var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$N);
47372
47445
 
47373
47446
  var PartialAmountField = function PartialAmountField(_ref) {
47374
47447
  var lineItem = _ref.lineItem,
@@ -47505,9 +47578,9 @@ var arrowColor = WHITE;
47505
47578
  var numberColor = MATISSE_BLUE;
47506
47579
  var hoverBackgroundColor$2 = ALABASTER_WHITE;
47507
47580
  var activeBackgroundColor$2 = WHITE;
47508
- var activeColor$8 = MATISSE_BLUE;
47509
- var fallbackValues$N = {
47510
- activeColor: activeColor$8,
47581
+ var activeColor$9 = MATISSE_BLUE;
47582
+ var fallbackValues$O = {
47583
+ activeColor: activeColor$9,
47511
47584
  activeBackgroundColor: activeBackgroundColor$2,
47512
47585
  arrowColor: arrowColor,
47513
47586
  hoverBackgroundColor: hoverBackgroundColor$2,
@@ -47700,7 +47773,7 @@ var Pagination = function Pagination(_ref3) {
47700
47773
  buttonWidth: buttonWidth
47701
47774
  }));
47702
47775
  };
47703
- var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$N);
47776
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$O);
47704
47777
 
47705
47778
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
47706
47779
  var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
@@ -47801,7 +47874,7 @@ var labeledAmountTotal = {
47801
47874
  "default": "large",
47802
47875
  small: "small"
47803
47876
  };
47804
- var fallbackValues$O = {
47877
+ var fallbackValues$P = {
47805
47878
  backgroundColor: backgroundColor$c,
47806
47879
  lineItem: lineItem,
47807
47880
  labeledAmountSubtotal: labeledAmountSubtotal,
@@ -48170,7 +48243,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
48170
48243
  isError: isError
48171
48244
  });
48172
48245
  };
48173
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$O, "default");
48246
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$P, "default");
48174
48247
 
48175
48248
  var linkColor$4 = {
48176
48249
  "default": "#3176AA"
@@ -48190,7 +48263,7 @@ var modalLinkHoverFocus = {
48190
48263
  var linkTextDecoration = {
48191
48264
  "default": LINK_TEXT_DECORATION
48192
48265
  };
48193
- var fallbackValues$P = {
48266
+ var fallbackValues$Q = {
48194
48267
  linkColor: linkColor$4,
48195
48268
  fontSize: fontSize$a,
48196
48269
  lineHeight: lineHeight$4,
@@ -48254,7 +48327,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
48254
48327
  }, link)
48255
48328
  }));
48256
48329
  };
48257
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$P, "default");
48330
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$Q, "default");
48258
48331
 
48259
48332
  var backgroundColor$d = {
48260
48333
  "default": "#ffffff",
@@ -48289,7 +48362,7 @@ var modalLinkTextDecoration = {
48289
48362
  "default": LINK_TEXT_DECORATION,
48290
48363
  footer: "none"
48291
48364
  };
48292
- var fallbackValues$Q = {
48365
+ var fallbackValues$R = {
48293
48366
  backgroundColor: backgroundColor$d,
48294
48367
  linkColor: linkColor$5,
48295
48368
  border: border$3,
@@ -48361,7 +48434,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48361
48434
  className: "modal-trigger"
48362
48435
  }, link));
48363
48436
  };
48364
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$Q, "default");
48437
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$R, "default");
48365
48438
 
48366
48439
  var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48367
48440
  var onCheck = _ref.onCheck,
@@ -49127,7 +49200,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
49127
49200
  var bodyBackgroundColor$1 = "#eeeeee";
49128
49201
  var borderColor$6 = "".concat(GHOST_GREY);
49129
49202
  var focusStyles = "outline: none;";
49130
- var fallbackValues$R = {
49203
+ var fallbackValues$S = {
49131
49204
  headingBackgroundColor: headingBackgroundColor$1,
49132
49205
  headingDisabledColor: headingDisabledColor,
49133
49206
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -49430,7 +49503,7 @@ var RadioSection = function RadioSection(_ref) {
49430
49503
  });
49431
49504
  })));
49432
49505
  };
49433
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$R);
49506
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$S);
49434
49507
 
49435
49508
  var RegistrationForm = function RegistrationForm(_ref) {
49436
49509
  var clearOnDismount = _ref.clearOnDismount,
@@ -49550,13 +49623,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
49550
49623
 
49551
49624
  var GRECIAN_GREY$1 = GRECIAN_GREY;
49552
49625
  var bannerBackgroundColor = GRECIAN_GREY$1;
49553
- var fallbackValues$S = {
49626
+ var fallbackValues$T = {
49554
49627
  bannerBackgroundColor: bannerBackgroundColor
49555
49628
  };
49556
49629
 
49557
49630
  var ResetConfirmationForm = function ResetConfirmationForm() {
49558
49631
  var themeContext = React.useContext(styled.ThemeContext);
49559
- var themeValues = createThemeValues(themeContext, fallbackValues$S, "ResetConfirmationForm");
49632
+ var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetConfirmationForm");
49560
49633
  var isMobile = themeContext.isMobile;
49561
49634
  return /*#__PURE__*/React__default.createElement(Box, {
49562
49635
  padding: "0",
@@ -49671,13 +49744,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
49671
49744
 
49672
49745
  var GRECIAN_GREY$2 = GRECIAN_GREY;
49673
49746
  var bannerBackgroundColor$1 = GRECIAN_GREY$2;
49674
- var fallbackValues$T = {
49747
+ var fallbackValues$U = {
49675
49748
  bannerBackgroundColor: bannerBackgroundColor$1
49676
49749
  };
49677
49750
 
49678
49751
  var ResetPasswordSuccess = function ResetPasswordSuccess() {
49679
49752
  var themeContext = React.useContext(styled.ThemeContext);
49680
- var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetPasswordSuccess");
49753
+ var themeValues = createThemeValues(themeContext, fallbackValues$U, "ResetPasswordSuccess");
49681
49754
  var isMobile = themeContext.isMobile;
49682
49755
  return /*#__PURE__*/React__default.createElement(Box, {
49683
49756
  padding: "0",
@@ -49726,7 +49799,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
49726
49799
  var activeTabBackground = "#FFFFFF";
49727
49800
  var activeTabAccent = "#15749D";
49728
49801
  var activeTabHover = "#B8D5E1";
49729
- var fallbackValues$U = {
49802
+ var fallbackValues$V = {
49730
49803
  activeTabBackground: activeTabBackground,
49731
49804
  activeTabAccent: activeTabAccent,
49732
49805
  activeTabHover: activeTabHover
@@ -49794,12 +49867,12 @@ var Tabs = function Tabs(_ref) {
49794
49867
  }, tab.content);
49795
49868
  }))));
49796
49869
  };
49797
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$U);
49870
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$V);
49798
49871
 
49799
49872
  var activeTabBackground$1 = "#FFFFFF";
49800
49873
  var activeTabAccent$1 = "#15749D";
49801
49874
  var activeTabHover$1 = "#B8D5E1";
49802
- var fallbackValues$V = {
49875
+ var fallbackValues$W = {
49803
49876
  activeTabBackground: activeTabBackground$1,
49804
49877
  activeTabAccent: activeTabAccent$1,
49805
49878
  activeTabHover: activeTabHover$1
@@ -49854,7 +49927,7 @@ var TabSidebar = function TabSidebar(_ref) {
49854
49927
  }, text)))));
49855
49928
  })));
49856
49929
  };
49857
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$V);
49930
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$W);
49858
49931
 
49859
49932
  var Timeout = function Timeout(_ref) {
49860
49933
  var onLogout = _ref.onLogout;
@@ -49975,7 +50048,7 @@ var fontColor$1 = WHITE;
49975
50048
  var textAlign$1 = "left";
49976
50049
  var headerBackgroundColor$1 = BRIGHT_GREY;
49977
50050
  var imageBackgroundColor$1 = MATISSE_BLUE;
49978
- var fallbackValues$W = {
50051
+ var fallbackValues$X = {
49979
50052
  fontWeight: fontWeight$8,
49980
50053
  fontColor: fontColor$1,
49981
50054
  textAlign: textAlign$1,
@@ -50020,7 +50093,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
50020
50093
  src: welcomeImage
50021
50094
  })))));
50022
50095
  };
50023
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$W));
50096
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$X));
50024
50097
 
50025
50098
  var WorkflowTile = function WorkflowTile(_ref) {
50026
50099
  var _ref$workflowName = _ref.workflowName,
@@ -50080,7 +50153,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
50080
50153
  var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
50081
50154
  var menuItemHoverBackgroundColorDelete = BLUSH_RED;
50082
50155
  var menuItemHoverColor = ROYAL_BLUE_VIVID;
50083
- var fallbackValues$X = {
50156
+ var fallbackValues$Y = {
50084
50157
  menuItemBackgroundColor: menuItemBackgroundColor,
50085
50158
  menuItemColor: menuItemColor,
50086
50159
  menuItemColorDelete: menuItemColorDelete,
@@ -50147,15 +50220,15 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
50147
50220
  extraStyles: textExtraStyles
50148
50221
  }, text)));
50149
50222
  };
50150
- var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$X);
50223
+ var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$Y);
50151
50224
 
50152
50225
  var hoverColor$5 = "#116285";
50153
- var activeColor$9 = "#0E506D";
50226
+ var activeColor$a = "#0E506D";
50154
50227
  var menuTriggerColor = "#15749D";
50155
50228
  var backgroundColor$e = "white";
50156
- var fallbackValues$Y = {
50229
+ var fallbackValues$Z = {
50157
50230
  hoverColor: hoverColor$5,
50158
- activeColor: activeColor$9,
50231
+ activeColor: activeColor$a,
50159
50232
  menuTriggerColor: menuTriggerColor,
50160
50233
  backgroundColor: backgroundColor$e
50161
50234
  };
@@ -50289,10 +50362,10 @@ var PopupMenu = function PopupMenu(_ref) {
50289
50362
  }, item));
50290
50363
  })));
50291
50364
  };
50292
- var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Y);
50365
+ var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Z);
50293
50366
 
50294
50367
  var pageBackground = "#FBFCFD";
50295
- var fallbackValues$Z = {
50368
+ var fallbackValues$_ = {
50296
50369
  pageBackground: pageBackground
50297
50370
  };
50298
50371
 
@@ -50340,7 +50413,7 @@ var CenterSingle = function CenterSingle(_ref) {
50340
50413
  padding: "0"
50341
50414
  })));
50342
50415
  };
50343
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Z));
50416
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$_));
50344
50417
 
50345
50418
  var CenterStack = function CenterStack(_ref) {
50346
50419
  var header = _ref.header,
@@ -50383,7 +50456,7 @@ var CenterStack = function CenterStack(_ref) {
50383
50456
  padding: "0"
50384
50457
  })));
50385
50458
  };
50386
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Z));
50459
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$_));
50387
50460
 
50388
50461
  var CenterSingle$2 = function CenterSingle(_ref) {
50389
50462
  var header = _ref.header,
@@ -50429,7 +50502,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
50429
50502
  padding: "0"
50430
50503
  })));
50431
50504
  };
50432
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Z));
50505
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$_));
50433
50506
 
50434
50507
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
50435
50508
  var header = _ref.header,
@@ -50482,7 +50555,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
50482
50555
  padding: "0"
50483
50556
  })));
50484
50557
  };
50485
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Z));
50558
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$_));
50486
50559
 
50487
50560
  var SidebarStackContent = function SidebarStackContent(_ref) {
50488
50561
  var header = _ref.header,
@@ -50552,7 +50625,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50552
50625
  key: "footer-box"
50553
50626
  })));
50554
50627
  };
50555
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Z));
50628
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$_));
50556
50629
 
50557
50630
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
50558
50631
  var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
@@ -50613,6 +50686,8 @@ exports.ButtonWithAction = ButtonWithAction;
50613
50686
  exports.ButtonWithLink = ButtonWithLink;
50614
50687
  exports.CalendarIcon = CalendarIcon;
50615
50688
  exports.Card = Card$1;
50689
+ exports.CaretArrowDown = CaretArrowDown$1;
50690
+ exports.CaretArrowUp = CaretArrowUp$1;
50616
50691
  exports.CarrotIcon = CarrotIcon$1;
50617
50692
  exports.CashIcon = CashIcon;
50618
50693
  exports.Center = Center;
@@ -50764,6 +50839,7 @@ exports.Sidebar = Sidebar;
50764
50839
  exports.SidebarSingleContent = SidebarSingleContent$1;
50765
50840
  exports.SidebarStackContent = SidebarStackContent$1;
50766
50841
  exports.SolidDivider = SolidDivider$1;
50842
+ exports.SortableTableHeading = SortableTableHeading$1;
50767
50843
  exports.Spinner = Spinner$2;
50768
50844
  exports.Stack = Stack;
50769
50845
  exports.StandardCheckoutImage = StandardCheckoutImage;
@@ -50778,7 +50854,7 @@ exports.Table = Table_styled;
50778
50854
  exports.TableBody = TableBody_styled;
50779
50855
  exports.TableCell = TableCell_styled;
50780
50856
  exports.TableHead = TableHead$1;
50781
- exports.TableHeading = TableHeading_styled;
50857
+ exports.TableHeading = TableHeading;
50782
50858
  exports.TableListItem = TableListItem;
50783
50859
  exports.TableRow = TableRow$1;
50784
50860
  exports.Tabs = Tabs$1;