@thecb/components 10.7.8-beta.0 → 10.8.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 +176 -73
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +32 -1
- package/dist/index.esm.js +176 -74
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/icons/SearchIcon.js +4 -3
- package/src/components/atoms/index.d.ts +1 -0
- package/src/components/atoms/index.js +1 -0
- package/src/components/atoms/search/Search.js +125 -0
- package/src/components/atoms/search/Search.stories.js +58 -0
- package/src/components/atoms/search/Search.theme.js +9 -0
- package/src/components/atoms/search/index.d.ts +34 -0
- package/src/components/atoms/search/index.js +3 -0
- package/src/components/molecules/modal/ModalControlV2.js +0 -2
- package/src/components/molecules/modal/__private__/CloseButton.js +1 -2
package/dist/index.esm.js
CHANGED
|
@@ -14706,10 +14706,14 @@ var NotFoundIcon = function NotFoundIcon() {
|
|
|
14706
14706
|
}))))));
|
|
14707
14707
|
};
|
|
14708
14708
|
|
|
14709
|
-
var SearchIcon = function SearchIcon() {
|
|
14709
|
+
var SearchIcon = function SearchIcon(_ref) {
|
|
14710
|
+
var _ref$color = _ref.color,
|
|
14711
|
+
color = _ref$color === void 0 ? CHARADE_GREY : _ref$color,
|
|
14712
|
+
_ref$size = _ref.size,
|
|
14713
|
+
size = _ref$size === void 0 ? "22px" : _ref$size;
|
|
14710
14714
|
return /*#__PURE__*/React.createElement("svg", {
|
|
14711
|
-
width:
|
|
14712
|
-
height:
|
|
14715
|
+
width: size,
|
|
14716
|
+
height: size,
|
|
14713
14717
|
viewBox: "0 0 22 22",
|
|
14714
14718
|
version: "1.1"
|
|
14715
14719
|
}, /*#__PURE__*/React.createElement("g", {
|
|
@@ -14721,7 +14725,7 @@ var SearchIcon = function SearchIcon() {
|
|
|
14721
14725
|
}, /*#__PURE__*/React.createElement("g", {
|
|
14722
14726
|
id: "Debt-Search---Expanded",
|
|
14723
14727
|
transform: "translate(-155.000000, -258.000000)",
|
|
14724
|
-
stroke:
|
|
14728
|
+
stroke: color,
|
|
14725
14729
|
strokeWidth: "2"
|
|
14726
14730
|
}, /*#__PURE__*/React.createElement("g", {
|
|
14727
14731
|
id: "debt-search",
|
|
@@ -28569,10 +28573,113 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
28569
28573
|
};
|
|
28570
28574
|
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$v);
|
|
28571
28575
|
|
|
28576
|
+
var searchIconColor = WHITE;
|
|
28577
|
+
var searchIconBackgroundColor = MATISSE_BLUE;
|
|
28578
|
+
var fallbackValues$w = {
|
|
28579
|
+
searchIconColor: searchIconColor,
|
|
28580
|
+
searchIconBackgroundColor: searchIconBackgroundColor
|
|
28581
|
+
};
|
|
28582
|
+
|
|
28583
|
+
/**
|
|
28584
|
+
* Search accepts a redux-freeform field and actions to use
|
|
28585
|
+
* for its `FormInput` state, as well as a dataset and the keys you wish
|
|
28586
|
+
* to include in your search.
|
|
28587
|
+
*
|
|
28588
|
+
* The `dataset` expected is a one-dimensional array of objects.
|
|
28589
|
+
* Properties within the objects are included in the traversal
|
|
28590
|
+
* when they are present in the ``valuesToSearchFor` prop.
|
|
28591
|
+
*
|
|
28592
|
+
* This component expects implementations of `onSearchCallback` and `onClearCallback`
|
|
28593
|
+
* in the consuming application. For example, if you want to filter a table based on
|
|
28594
|
+
* this search, this would trigger the adjustment of your table data's state in your
|
|
28595
|
+
* consuming application.
|
|
28596
|
+
*/
|
|
28597
|
+
|
|
28598
|
+
var Search = function Search(_ref) {
|
|
28599
|
+
var actions = _ref.actions,
|
|
28600
|
+
fields = _ref.fields,
|
|
28601
|
+
dataset = _ref.dataset,
|
|
28602
|
+
valuesToSearchFor = _ref.valuesToSearchFor,
|
|
28603
|
+
onSearchCallback = _ref.onSearchCallback,
|
|
28604
|
+
onClearCallback = _ref.onClearCallback,
|
|
28605
|
+
disabled = _ref.disabled,
|
|
28606
|
+
_ref$placeholder = _ref.placeholder,
|
|
28607
|
+
placeholder = _ref$placeholder === void 0 ? "Search" : _ref$placeholder,
|
|
28608
|
+
_ref$searchOnKeypress = _ref.searchOnKeypress,
|
|
28609
|
+
searchOnKeypress = _ref$searchOnKeypress === void 0 ? false : _ref$searchOnKeypress,
|
|
28610
|
+
_ref$searchContainerW = _ref.searchContainerWidth,
|
|
28611
|
+
searchContainerWidth = _ref$searchContainerW === void 0 ? null : _ref$searchContainerW,
|
|
28612
|
+
_ref$searchFieldName = _ref.searchFieldName,
|
|
28613
|
+
searchFieldName = _ref$searchFieldName === void 0 ? "searchTerm" : _ref$searchFieldName,
|
|
28614
|
+
autocompleteValue = _ref.autocompleteValue,
|
|
28615
|
+
ariaControlsId = _ref.ariaControlsId,
|
|
28616
|
+
themeValues = _ref.themeValues;
|
|
28617
|
+
var searchTerm = fields[searchFieldName].rawValue;
|
|
28618
|
+
var getFilteredDataset = function getFilteredDataset() {
|
|
28619
|
+
if (!searchTerm) return dataset;
|
|
28620
|
+
return dataset.filter(function (item) {
|
|
28621
|
+
return valuesToSearchFor.some(function (key) {
|
|
28622
|
+
var _item$key;
|
|
28623
|
+
return (_item$key = item[key]) === null || _item$key === void 0 ? void 0 : _item$key.toString().toLowerCase().includes(searchTerm.toLowerCase());
|
|
28624
|
+
});
|
|
28625
|
+
});
|
|
28626
|
+
};
|
|
28627
|
+
var handleSubmit = function handleSubmit() {
|
|
28628
|
+
return onSearchCallback(getFilteredDataset());
|
|
28629
|
+
};
|
|
28630
|
+
return /*#__PURE__*/React.createElement(Cluster, {
|
|
28631
|
+
extraStyles: "overflow: visible;"
|
|
28632
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
28633
|
+
padding: "0",
|
|
28634
|
+
extraStyles: "\n flex-grow: ".concat(searchContainerWidth ? 0 : 1, "; \n width: ").concat(searchContainerWidth, " : auto;")
|
|
28635
|
+
}, /*#__PURE__*/React.createElement(FormInput$1, {
|
|
28636
|
+
id: "searchInput",
|
|
28637
|
+
role: "search",
|
|
28638
|
+
"aria-controls": ariaControlsId,
|
|
28639
|
+
autocompleteValue: autocompleteValue,
|
|
28640
|
+
extraStyles: "border-radius: 2px 0 0 2px;",
|
|
28641
|
+
onKeyDown: function onKeyDown(e) {
|
|
28642
|
+
return searchOnKeypress || e.key === "Enter" ? handleSubmit() : noop;
|
|
28643
|
+
},
|
|
28644
|
+
field: fields[searchFieldName],
|
|
28645
|
+
fieldActions: actions.fields[searchFieldName],
|
|
28646
|
+
placeholder: placeholder,
|
|
28647
|
+
errorMessages: {},
|
|
28648
|
+
disabled: disabled
|
|
28649
|
+
}), searchTerm.length > 0 && /*#__PURE__*/React.createElement(Box, {
|
|
28650
|
+
padding: "0",
|
|
28651
|
+
extraStyles: "\n position: absolute;\n right: 8px;\n top: 10px;\n "
|
|
28652
|
+
}, /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
28653
|
+
extraStyles: "* > span { text-decoration: none; }",
|
|
28654
|
+
type: "reset",
|
|
28655
|
+
variant: "smallGhost",
|
|
28656
|
+
text: "Clear Search",
|
|
28657
|
+
"aria-label": "Clear Search",
|
|
28658
|
+
action: function action() {
|
|
28659
|
+
actions.fields[searchFieldName].set("");
|
|
28660
|
+
onClearCallback();
|
|
28661
|
+
}
|
|
28662
|
+
}))), /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
28663
|
+
type: "submit",
|
|
28664
|
+
"aria-label": "Submit search",
|
|
28665
|
+
minWidth: "0",
|
|
28666
|
+
width: "3rem",
|
|
28667
|
+
padding: ".5rem",
|
|
28668
|
+
extraStyles: "\n height: 48px; \n margin: 4px 0 0;\n border-radius: 0 2px 2px 0;\n background: ".concat(themeValues.searchIconBackgroundColor, ";\n "),
|
|
28669
|
+
variant: "primary",
|
|
28670
|
+
contentOverride: true,
|
|
28671
|
+
action: handleSubmit
|
|
28672
|
+
}, /*#__PURE__*/React.createElement(SearchIcon, {
|
|
28673
|
+
color: themeValues.searchIconColor,
|
|
28674
|
+
size: 24
|
|
28675
|
+
})));
|
|
28676
|
+
};
|
|
28677
|
+
var Search$1 = themeComponent(Search, "Search", fallbackValues$w);
|
|
28678
|
+
|
|
28572
28679
|
var border$2 = {
|
|
28573
28680
|
"default": "1px solid #caced8"
|
|
28574
28681
|
};
|
|
28575
|
-
var fallbackValues$
|
|
28682
|
+
var fallbackValues$x = {
|
|
28576
28683
|
border: border$2
|
|
28577
28684
|
};
|
|
28578
28685
|
|
|
@@ -28645,7 +28752,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
|
|
|
28645
28752
|
});
|
|
28646
28753
|
}))));
|
|
28647
28754
|
};
|
|
28648
|
-
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$
|
|
28755
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$x, "default");
|
|
28649
28756
|
|
|
28650
28757
|
var borderColor$2 = {
|
|
28651
28758
|
"default": "".concat(GREY_CHATEAU)
|
|
@@ -28653,7 +28760,7 @@ var borderColor$2 = {
|
|
|
28653
28760
|
var borderSize = {
|
|
28654
28761
|
"default": "1px"
|
|
28655
28762
|
};
|
|
28656
|
-
var fallbackValues$
|
|
28763
|
+
var fallbackValues$y = {
|
|
28657
28764
|
borderColor: borderColor$2,
|
|
28658
28765
|
borderSize: borderSize
|
|
28659
28766
|
};
|
|
@@ -28671,7 +28778,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
28671
28778
|
borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
|
|
28672
28779
|
});
|
|
28673
28780
|
};
|
|
28674
|
-
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$
|
|
28781
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$y, "default");
|
|
28675
28782
|
|
|
28676
28783
|
var placeHolderOptionUS = {
|
|
28677
28784
|
text: "Please select state",
|
|
@@ -39257,7 +39364,7 @@ var white = "".concat(WHITE);
|
|
|
39257
39364
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
39258
39365
|
var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
|
|
39259
39366
|
var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
|
|
39260
|
-
var fallbackValues$
|
|
39367
|
+
var fallbackValues$z = {
|
|
39261
39368
|
onBackground: onBackground,
|
|
39262
39369
|
disabledBackground: disabledBackground,
|
|
39263
39370
|
disabledBackgroundLight: disabledBackgroundLight,
|
|
@@ -39434,7 +39541,7 @@ var ToggleSwitch = function ToggleSwitch(_ref10) {
|
|
|
39434
39541
|
padding: "0"
|
|
39435
39542
|
}, label))));
|
|
39436
39543
|
};
|
|
39437
|
-
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$
|
|
39544
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$z);
|
|
39438
39545
|
|
|
39439
39546
|
var background$2 = "".concat(ATHENS_GREY);
|
|
39440
39547
|
var white$1 = "".concat(WHITE);
|
|
@@ -39480,7 +39587,7 @@ var backgroundColor$5 = WHITE;
|
|
|
39480
39587
|
var imageBackgroundColor = INFO_BLUE;
|
|
39481
39588
|
var headerBackgroundColor = STORM_GREY;
|
|
39482
39589
|
var headerColor = WHITE;
|
|
39483
|
-
var fallbackValues$
|
|
39590
|
+
var fallbackValues$A = {
|
|
39484
39591
|
backgroundColor: backgroundColor$5,
|
|
39485
39592
|
imageBackgroundColor: imageBackgroundColor,
|
|
39486
39593
|
headerBackgroundColor: headerBackgroundColor,
|
|
@@ -39504,7 +39611,7 @@ var CardImage = styled.img.withConfig({
|
|
|
39504
39611
|
var titleColor = BRIGHT_GREY;
|
|
39505
39612
|
var titleWeight = FONT_WEIGHT_BOLD;
|
|
39506
39613
|
var textColor$3 = BRIGHT_GREY;
|
|
39507
|
-
var fallbackValues$
|
|
39614
|
+
var fallbackValues$B = {
|
|
39508
39615
|
titleColor: titleColor,
|
|
39509
39616
|
titleWeight: titleWeight,
|
|
39510
39617
|
textColor: textColor$3
|
|
@@ -39528,7 +39635,7 @@ var CardText = function CardText(_ref) {
|
|
|
39528
39635
|
color: themeValues.textColor
|
|
39529
39636
|
}, text))));
|
|
39530
39637
|
};
|
|
39531
|
-
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$
|
|
39638
|
+
var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$B);
|
|
39532
39639
|
|
|
39533
39640
|
var CardHeader = function CardHeader(_ref) {
|
|
39534
39641
|
var backgroundColor = _ref.backgroundColor,
|
|
@@ -39630,12 +39737,12 @@ var Card = function Card(_ref) {
|
|
|
39630
39737
|
titleVariant: titleVariant
|
|
39631
39738
|
}), children)))));
|
|
39632
39739
|
};
|
|
39633
|
-
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$
|
|
39740
|
+
var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$A);
|
|
39634
39741
|
|
|
39635
39742
|
var fontFamily$6 = "Public Sans, sans-serif";
|
|
39636
39743
|
var activeColor$7 = MATISSE_BLUE;
|
|
39637
39744
|
var linkColor$3 = CHARADE_GREY;
|
|
39638
|
-
var fallbackValues$
|
|
39745
|
+
var fallbackValues$C = {
|
|
39639
39746
|
fontFamily: fontFamily$6,
|
|
39640
39747
|
activeColor: activeColor$7,
|
|
39641
39748
|
linkColor: linkColor$3
|
|
@@ -39664,7 +39771,7 @@ var NavTab = function NavTab(_ref) {
|
|
|
39664
39771
|
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 ")
|
|
39665
39772
|
}, label));
|
|
39666
39773
|
};
|
|
39667
|
-
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$
|
|
39774
|
+
var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$C);
|
|
39668
39775
|
|
|
39669
39776
|
var NavTabs = function NavTabs(_ref) {
|
|
39670
39777
|
var tabsConfig = _ref.tabsConfig,
|
|
@@ -39767,7 +39874,7 @@ var backgroundColor$6 = {
|
|
|
39767
39874
|
largeTitle: WHITE,
|
|
39768
39875
|
small: WHITE
|
|
39769
39876
|
};
|
|
39770
|
-
var fallbackValues$
|
|
39877
|
+
var fallbackValues$D = {
|
|
39771
39878
|
fontSize: fontSize$9,
|
|
39772
39879
|
fontWeight: fontWeight$5,
|
|
39773
39880
|
fontColor: fontColor,
|
|
@@ -39847,7 +39954,7 @@ var Module = function Module(_ref) {
|
|
|
39847
39954
|
boxShadow: themeValues.boxShadow
|
|
39848
39955
|
}, children)));
|
|
39849
39956
|
};
|
|
39850
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$
|
|
39957
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
|
|
39851
39958
|
|
|
39852
39959
|
var WalletName = function WalletName(_ref) {
|
|
39853
39960
|
var mainText = _ref.mainText,
|
|
@@ -39952,7 +40059,7 @@ var TableCell_styled = styled.td.withConfig({
|
|
|
39952
40059
|
|
|
39953
40060
|
var backgroundColor$7 = ALABASTER_WHITE;
|
|
39954
40061
|
var borderColor$3 = GREY_CHATEAU;
|
|
39955
|
-
var fallbackValues$
|
|
40062
|
+
var fallbackValues$E = {
|
|
39956
40063
|
backgroundColor: backgroundColor$7,
|
|
39957
40064
|
borderColor: borderColor$3
|
|
39958
40065
|
};
|
|
@@ -39974,7 +40081,7 @@ var StyledTableHead = styled.thead.withConfig({
|
|
|
39974
40081
|
|
|
39975
40082
|
var borderColor$4 = GREY_CHATEAU;
|
|
39976
40083
|
var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
|
|
39977
|
-
var fallbackValues$
|
|
40084
|
+
var fallbackValues$F = {
|
|
39978
40085
|
borderColor: borderColor$4,
|
|
39979
40086
|
hoverBackgroundColor: hoverBackgroundColor$1
|
|
39980
40087
|
};
|
|
@@ -40013,7 +40120,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
40013
40120
|
hoverBackgroundColor: themeValues.hoverBackgroundColor
|
|
40014
40121
|
}, props), children);
|
|
40015
40122
|
};
|
|
40016
|
-
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$
|
|
40123
|
+
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$F);
|
|
40017
40124
|
|
|
40018
40125
|
var TableHead = function TableHead(_ref) {
|
|
40019
40126
|
var children = _ref.children,
|
|
@@ -40028,7 +40135,7 @@ var TableHead = function TableHead(_ref) {
|
|
|
40028
40135
|
hoverEffect: false
|
|
40029
40136
|
}, children));
|
|
40030
40137
|
};
|
|
40031
|
-
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$
|
|
40138
|
+
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$E);
|
|
40032
40139
|
|
|
40033
40140
|
var TableHeading_styled = styled.th.withConfig({
|
|
40034
40141
|
displayName: "TableHeadingstyled",
|
|
@@ -40863,7 +40970,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
|
|
|
40863
40970
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
40864
40971
|
|
|
40865
40972
|
var backgroundColor$8 = "#ebeffb";
|
|
40866
|
-
var fallbackValues$
|
|
40973
|
+
var fallbackValues$G = {
|
|
40867
40974
|
backgroundColor: backgroundColor$8
|
|
40868
40975
|
};
|
|
40869
40976
|
|
|
@@ -40912,7 +41019,7 @@ var Banner = function Banner(_ref) {
|
|
|
40912
41019
|
extraStyles: isMobile && "> svg { width: 176px; }"
|
|
40913
41020
|
}, /*#__PURE__*/React.createElement(Image, null))));
|
|
40914
41021
|
};
|
|
40915
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
41022
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$G);
|
|
40916
41023
|
|
|
40917
41024
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
40918
41025
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -41046,7 +41153,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
41046
41153
|
var titleColor$1 = "#292A33";
|
|
41047
41154
|
var headingBackgroundColor = "transparent";
|
|
41048
41155
|
var bodyBackgroundColor = "transparent";
|
|
41049
|
-
var fallbackValues$
|
|
41156
|
+
var fallbackValues$H = {
|
|
41050
41157
|
titleColor: titleColor$1,
|
|
41051
41158
|
headingBackgroundColor: headingBackgroundColor,
|
|
41052
41159
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -41171,7 +41278,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
41171
41278
|
"aria-labelledby": "".concat(id, "-button")
|
|
41172
41279
|
}, children))));
|
|
41173
41280
|
};
|
|
41174
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
41281
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$H);
|
|
41175
41282
|
|
|
41176
41283
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
41177
41284
|
var themeValues = _ref.themeValues;
|
|
@@ -41750,7 +41857,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
41750
41857
|
|
|
41751
41858
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
41752
41859
|
var subfooterBackgroundColor = STORM_GREY;
|
|
41753
|
-
var fallbackValues$
|
|
41860
|
+
var fallbackValues$I = {
|
|
41754
41861
|
footerBackgroundColor: footerBackgroundColor,
|
|
41755
41862
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
41756
41863
|
};
|
|
@@ -41781,7 +41888,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
41781
41888
|
rightContent: rightSubfooterContent
|
|
41782
41889
|
}));
|
|
41783
41890
|
};
|
|
41784
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
41891
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$I);
|
|
41785
41892
|
|
|
41786
41893
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
41787
41894
|
var fields = _ref.fields,
|
|
@@ -41828,7 +41935,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
|
41828
41935
|
|
|
41829
41936
|
var textColor$4 = "#ffffff";
|
|
41830
41937
|
var backgroundColor$9 = "#182848";
|
|
41831
|
-
var fallbackValues$
|
|
41938
|
+
var fallbackValues$J = {
|
|
41832
41939
|
textColor: textColor$4,
|
|
41833
41940
|
backgroundColor: backgroundColor$9
|
|
41834
41941
|
};
|
|
@@ -41887,7 +41994,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
41887
41994
|
}, t));
|
|
41888
41995
|
}), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
|
|
41889
41996
|
};
|
|
41890
|
-
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
41997
|
+
var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$J);
|
|
41891
41998
|
|
|
41892
41999
|
var AccountBillIcon = function AccountBillIcon(_ref) {
|
|
41893
42000
|
var color = _ref.color;
|
|
@@ -42303,7 +42410,7 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
|
42303
42410
|
var backgroundColor$a = LINK_WATER;
|
|
42304
42411
|
var borderColor$5 = MOON_RAKER;
|
|
42305
42412
|
var color$b = ROYAL_BLUE_VIVID;
|
|
42306
|
-
var fallbackValues$
|
|
42413
|
+
var fallbackValues$K = {
|
|
42307
42414
|
disabledBackgroundColor: disabledBackgroundColor$1,
|
|
42308
42415
|
disabledBorderColor: disabledBorderColor$1,
|
|
42309
42416
|
disabledColor: disabledColor$1,
|
|
@@ -42424,7 +42531,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
42424
42531
|
extraStyles: "margin-right: auto;"
|
|
42425
42532
|
}), showRight && !!rightContent && rightContent))));
|
|
42426
42533
|
};
|
|
42427
|
-
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$
|
|
42534
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$K, "primary");
|
|
42428
42535
|
|
|
42429
42536
|
var LoginForm = function LoginForm(_ref) {
|
|
42430
42537
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -46132,8 +46239,6 @@ var CloseButton = function CloseButton(_ref) {
|
|
|
46132
46239
|
buttonExtraStyles = _ref$buttonExtraStyle === void 0 ? "" : _ref$buttonExtraStyle,
|
|
46133
46240
|
_ref$closeButtonText = _ref.closeButtonText,
|
|
46134
46241
|
closeButtonText = _ref$closeButtonText === void 0 ? "" : _ref$closeButtonText,
|
|
46135
|
-
_ref$closeButtonVaria = _ref.closeButtonVariant,
|
|
46136
|
-
closeButtonVariant = _ref$closeButtonVaria === void 0 ? "primary" : _ref$closeButtonVaria,
|
|
46137
46242
|
_ref$hideModal = _ref.hideModal,
|
|
46138
46243
|
hideModal = _ref$hideModal === void 0 ? noop : _ref$hideModal,
|
|
46139
46244
|
_ref$isMobile = _ref.isMobile,
|
|
@@ -46150,7 +46255,7 @@ var CloseButton = function CloseButton(_ref) {
|
|
|
46150
46255
|
role: "button",
|
|
46151
46256
|
text: closeButtonText,
|
|
46152
46257
|
textExtraStyles: "".concat(fontSize),
|
|
46153
|
-
variant:
|
|
46258
|
+
variant: "primary"
|
|
46154
46259
|
});
|
|
46155
46260
|
};
|
|
46156
46261
|
|
|
@@ -46246,8 +46351,6 @@ var Modal$2 = function Modal(_ref) {
|
|
|
46246
46351
|
children = _ref$children === void 0 ? [] : _ref$children,
|
|
46247
46352
|
_ref$closeButtonText = _ref.closeButtonText,
|
|
46248
46353
|
closeButtonText = _ref$closeButtonText === void 0 ? "Close" : _ref$closeButtonText,
|
|
46249
|
-
_ref$closeButtonVaria = _ref.closeButtonVariant,
|
|
46250
|
-
closeButtonVariant = _ref$closeButtonVaria === void 0 ? "primary" : _ref$closeButtonVaria,
|
|
46251
46354
|
_ref$continueAction = _ref.continueAction,
|
|
46252
46355
|
continueAction = _ref$continueAction === void 0 ? noop : _ref$continueAction,
|
|
46253
46356
|
_ref$continueButtonTe = _ref.continueButtonText,
|
|
@@ -46402,7 +46505,6 @@ var Modal$2 = function Modal(_ref) {
|
|
|
46402
46505
|
}), hasCloseButton && /*#__PURE__*/React.createElement(CloseButton, {
|
|
46403
46506
|
buttonExtraStyles: buttonExtraStyles,
|
|
46404
46507
|
closeButtonText: closeButtonText,
|
|
46405
|
-
closeButtonVariant: closeButtonVariant,
|
|
46406
46508
|
hideModal: hideModal,
|
|
46407
46509
|
isMobile: isMobile,
|
|
46408
46510
|
key: "close"
|
|
@@ -46429,7 +46531,7 @@ var shadowColor = {
|
|
|
46429
46531
|
profile: "#292A33",
|
|
46430
46532
|
cms: "#292A33"
|
|
46431
46533
|
};
|
|
46432
|
-
var fallbackValues$
|
|
46534
|
+
var fallbackValues$L = {
|
|
46433
46535
|
backgroundColor: backgroundColor$b,
|
|
46434
46536
|
shadowColor: shadowColor
|
|
46435
46537
|
};
|
|
@@ -46469,7 +46571,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
46469
46571
|
onBlur: onBlur
|
|
46470
46572
|
}, menuContent));
|
|
46471
46573
|
};
|
|
46472
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46574
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$L, "profile");
|
|
46473
46575
|
|
|
46474
46576
|
var menu = posed.div({
|
|
46475
46577
|
invisible: {
|
|
@@ -46529,7 +46631,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
46529
46631
|
background: themeValues.backgroundColor
|
|
46530
46632
|
}, menuContent));
|
|
46531
46633
|
};
|
|
46532
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46634
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$L, "profile");
|
|
46533
46635
|
|
|
46534
46636
|
var IconsModule = function IconsModule(_ref) {
|
|
46535
46637
|
var icon = _ref.icon,
|
|
@@ -47056,7 +47158,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
47056
47158
|
};
|
|
47057
47159
|
|
|
47058
47160
|
var iconColor = ROYAL_BLUE_VIVID;
|
|
47059
|
-
var fallbackValues$
|
|
47161
|
+
var fallbackValues$M = {
|
|
47060
47162
|
iconColor: iconColor
|
|
47061
47163
|
};
|
|
47062
47164
|
|
|
@@ -47278,7 +47380,7 @@ var Obligation = function Obligation(_ref) {
|
|
|
47278
47380
|
}))));
|
|
47279
47381
|
return inactive ? inactiveObligation : activeObligation;
|
|
47280
47382
|
};
|
|
47281
|
-
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$
|
|
47383
|
+
var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$M);
|
|
47282
47384
|
|
|
47283
47385
|
var PartialAmountField = function PartialAmountField(_ref) {
|
|
47284
47386
|
var lineItem = _ref.lineItem,
|
|
@@ -47416,7 +47518,7 @@ var numberColor = MATISSE_BLUE;
|
|
|
47416
47518
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47417
47519
|
var activeBackgroundColor$2 = WHITE;
|
|
47418
47520
|
var activeColor$8 = MATISSE_BLUE;
|
|
47419
|
-
var fallbackValues$
|
|
47521
|
+
var fallbackValues$N = {
|
|
47420
47522
|
activeColor: activeColor$8,
|
|
47421
47523
|
activeBackgroundColor: activeBackgroundColor$2,
|
|
47422
47524
|
arrowColor: arrowColor,
|
|
@@ -47610,7 +47712,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47610
47712
|
buttonWidth: buttonWidth
|
|
47611
47713
|
}));
|
|
47612
47714
|
};
|
|
47613
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
47715
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$N);
|
|
47614
47716
|
|
|
47615
47717
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
47616
47718
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -47711,7 +47813,7 @@ var labeledAmountTotal = {
|
|
|
47711
47813
|
"default": "large",
|
|
47712
47814
|
small: "small"
|
|
47713
47815
|
};
|
|
47714
|
-
var fallbackValues$
|
|
47816
|
+
var fallbackValues$O = {
|
|
47715
47817
|
backgroundColor: backgroundColor$c,
|
|
47716
47818
|
lineItem: lineItem,
|
|
47717
47819
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -48082,7 +48184,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48082
48184
|
isError: isError
|
|
48083
48185
|
});
|
|
48084
48186
|
};
|
|
48085
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48187
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$O, "default");
|
|
48086
48188
|
|
|
48087
48189
|
var linkColor$4 = {
|
|
48088
48190
|
"default": "#3176AA"
|
|
@@ -48102,7 +48204,7 @@ var modalLinkHoverFocus = {
|
|
|
48102
48204
|
var linkTextDecoration = {
|
|
48103
48205
|
"default": LINK_TEXT_DECORATION
|
|
48104
48206
|
};
|
|
48105
|
-
var fallbackValues$
|
|
48207
|
+
var fallbackValues$P = {
|
|
48106
48208
|
linkColor: linkColor$4,
|
|
48107
48209
|
fontSize: fontSize$a,
|
|
48108
48210
|
lineHeight: lineHeight$4,
|
|
@@ -48166,7 +48268,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48166
48268
|
}, link)
|
|
48167
48269
|
}));
|
|
48168
48270
|
};
|
|
48169
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
48271
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$P, "default");
|
|
48170
48272
|
|
|
48171
48273
|
var backgroundColor$d = {
|
|
48172
48274
|
"default": "#ffffff",
|
|
@@ -48201,7 +48303,7 @@ var modalLinkTextDecoration = {
|
|
|
48201
48303
|
"default": LINK_TEXT_DECORATION,
|
|
48202
48304
|
footer: "none"
|
|
48203
48305
|
};
|
|
48204
|
-
var fallbackValues$
|
|
48306
|
+
var fallbackValues$Q = {
|
|
48205
48307
|
backgroundColor: backgroundColor$d,
|
|
48206
48308
|
linkColor: linkColor$5,
|
|
48207
48309
|
border: border$3,
|
|
@@ -48273,7 +48375,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
48273
48375
|
className: "modal-trigger"
|
|
48274
48376
|
}, link));
|
|
48275
48377
|
};
|
|
48276
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48378
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$Q, "default");
|
|
48277
48379
|
|
|
48278
48380
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48279
48381
|
var onCheck = _ref.onCheck,
|
|
@@ -49037,7 +49139,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
49037
49139
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49038
49140
|
var borderColor$6 = "".concat(GHOST_GREY);
|
|
49039
49141
|
var focusStyles = "outline: none;";
|
|
49040
|
-
var fallbackValues$
|
|
49142
|
+
var fallbackValues$R = {
|
|
49041
49143
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49042
49144
|
headingDisabledColor: headingDisabledColor,
|
|
49043
49145
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -49340,7 +49442,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49340
49442
|
});
|
|
49341
49443
|
})));
|
|
49342
49444
|
};
|
|
49343
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49445
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$R);
|
|
49344
49446
|
|
|
49345
49447
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49346
49448
|
var clearOnDismount = _ref.clearOnDismount,
|
|
@@ -49460,13 +49562,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
|
49460
49562
|
|
|
49461
49563
|
var GRECIAN_GREY$1 = GRECIAN_GREY;
|
|
49462
49564
|
var bannerBackgroundColor = GRECIAN_GREY$1;
|
|
49463
|
-
var fallbackValues$
|
|
49565
|
+
var fallbackValues$S = {
|
|
49464
49566
|
bannerBackgroundColor: bannerBackgroundColor
|
|
49465
49567
|
};
|
|
49466
49568
|
|
|
49467
49569
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
49468
49570
|
var themeContext = useContext(ThemeContext);
|
|
49469
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49571
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$S, "ResetConfirmationForm");
|
|
49470
49572
|
var isMobile = themeContext.isMobile;
|
|
49471
49573
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49472
49574
|
padding: "0",
|
|
@@ -49581,13 +49683,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
|
49581
49683
|
|
|
49582
49684
|
var GRECIAN_GREY$2 = GRECIAN_GREY;
|
|
49583
49685
|
var bannerBackgroundColor$1 = GRECIAN_GREY$2;
|
|
49584
|
-
var fallbackValues$
|
|
49686
|
+
var fallbackValues$T = {
|
|
49585
49687
|
bannerBackgroundColor: bannerBackgroundColor$1
|
|
49586
49688
|
};
|
|
49587
49689
|
|
|
49588
49690
|
var ResetPasswordSuccess = function ResetPasswordSuccess() {
|
|
49589
49691
|
var themeContext = useContext(ThemeContext);
|
|
49590
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49692
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetPasswordSuccess");
|
|
49591
49693
|
var isMobile = themeContext.isMobile;
|
|
49592
49694
|
return /*#__PURE__*/React.createElement(Box, {
|
|
49593
49695
|
padding: "0",
|
|
@@ -49636,7 +49738,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
|
|
|
49636
49738
|
var activeTabBackground = "#FFFFFF";
|
|
49637
49739
|
var activeTabAccent = "#15749D";
|
|
49638
49740
|
var activeTabHover = "#B8D5E1";
|
|
49639
|
-
var fallbackValues$
|
|
49741
|
+
var fallbackValues$U = {
|
|
49640
49742
|
activeTabBackground: activeTabBackground,
|
|
49641
49743
|
activeTabAccent: activeTabAccent,
|
|
49642
49744
|
activeTabHover: activeTabHover
|
|
@@ -49704,12 +49806,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49704
49806
|
}, tab.content);
|
|
49705
49807
|
}))));
|
|
49706
49808
|
};
|
|
49707
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49809
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$U);
|
|
49708
49810
|
|
|
49709
49811
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49710
49812
|
var activeTabAccent$1 = "#15749D";
|
|
49711
49813
|
var activeTabHover$1 = "#B8D5E1";
|
|
49712
|
-
var fallbackValues$
|
|
49814
|
+
var fallbackValues$V = {
|
|
49713
49815
|
activeTabBackground: activeTabBackground$1,
|
|
49714
49816
|
activeTabAccent: activeTabAccent$1,
|
|
49715
49817
|
activeTabHover: activeTabHover$1
|
|
@@ -49764,7 +49866,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49764
49866
|
}, text)))));
|
|
49765
49867
|
})));
|
|
49766
49868
|
};
|
|
49767
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49869
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$V);
|
|
49768
49870
|
|
|
49769
49871
|
var Timeout = function Timeout(_ref) {
|
|
49770
49872
|
var onLogout = _ref.onLogout;
|
|
@@ -49885,7 +49987,7 @@ var fontColor$1 = WHITE;
|
|
|
49885
49987
|
var textAlign$1 = "left";
|
|
49886
49988
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49887
49989
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49888
|
-
var fallbackValues$
|
|
49990
|
+
var fallbackValues$W = {
|
|
49889
49991
|
fontWeight: fontWeight$8,
|
|
49890
49992
|
fontColor: fontColor$1,
|
|
49891
49993
|
textAlign: textAlign$1,
|
|
@@ -49930,7 +50032,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
49930
50032
|
src: welcomeImage
|
|
49931
50033
|
})))));
|
|
49932
50034
|
};
|
|
49933
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
50035
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$W));
|
|
49934
50036
|
|
|
49935
50037
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
49936
50038
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -49990,7 +50092,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
49990
50092
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
49991
50093
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
49992
50094
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
49993
|
-
var fallbackValues$
|
|
50095
|
+
var fallbackValues$X = {
|
|
49994
50096
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
49995
50097
|
menuItemColor: menuItemColor,
|
|
49996
50098
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -50057,13 +50159,13 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
50057
50159
|
extraStyles: textExtraStyles
|
|
50058
50160
|
}, text)));
|
|
50059
50161
|
};
|
|
50060
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
50162
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$X);
|
|
50061
50163
|
|
|
50062
50164
|
var hoverColor$5 = "#116285";
|
|
50063
50165
|
var activeColor$9 = "#0E506D";
|
|
50064
50166
|
var menuTriggerColor = "#15749D";
|
|
50065
50167
|
var backgroundColor$e = "white";
|
|
50066
|
-
var fallbackValues$
|
|
50168
|
+
var fallbackValues$Y = {
|
|
50067
50169
|
hoverColor: hoverColor$5,
|
|
50068
50170
|
activeColor: activeColor$9,
|
|
50069
50171
|
menuTriggerColor: menuTriggerColor,
|
|
@@ -50199,10 +50301,10 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
50199
50301
|
}, item));
|
|
50200
50302
|
})));
|
|
50201
50303
|
};
|
|
50202
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$
|
|
50304
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Y);
|
|
50203
50305
|
|
|
50204
50306
|
var pageBackground = "#FBFCFD";
|
|
50205
|
-
var fallbackValues$
|
|
50307
|
+
var fallbackValues$Z = {
|
|
50206
50308
|
pageBackground: pageBackground
|
|
50207
50309
|
};
|
|
50208
50310
|
|
|
@@ -50250,7 +50352,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
50250
50352
|
padding: "0"
|
|
50251
50353
|
})));
|
|
50252
50354
|
};
|
|
50253
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50355
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Z));
|
|
50254
50356
|
|
|
50255
50357
|
var CenterStack = function CenterStack(_ref) {
|
|
50256
50358
|
var header = _ref.header,
|
|
@@ -50293,7 +50395,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
50293
50395
|
padding: "0"
|
|
50294
50396
|
})));
|
|
50295
50397
|
};
|
|
50296
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50398
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Z));
|
|
50297
50399
|
|
|
50298
50400
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
50299
50401
|
var header = _ref.header,
|
|
@@ -50339,7 +50441,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50339
50441
|
padding: "0"
|
|
50340
50442
|
})));
|
|
50341
50443
|
};
|
|
50342
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50444
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Z));
|
|
50343
50445
|
|
|
50344
50446
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50345
50447
|
var header = _ref.header,
|
|
@@ -50392,7 +50494,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50392
50494
|
padding: "0"
|
|
50393
50495
|
})));
|
|
50394
50496
|
};
|
|
50395
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50497
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Z));
|
|
50396
50498
|
|
|
50397
50499
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50398
50500
|
var header = _ref.header,
|
|
@@ -50462,7 +50564,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50462
50564
|
key: "footer-box"
|
|
50463
50565
|
})));
|
|
50464
50566
|
};
|
|
50465
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50567
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Z));
|
|
50466
50568
|
|
|
50467
50569
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
50468
50570
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -50494,5 +50596,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
|
|
|
50494
50596
|
useToastNotification: useToastNotification
|
|
50495
50597
|
});
|
|
50496
50598
|
|
|
50497
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
|
|
50599
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
|
|
50498
50600
|
//# sourceMappingURL=index.esm.js.map
|