@thecb/components 4.3.2 → 4.3.5
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 +586 -164
- package/package.json +1 -1
- package/src/components/atoms/checkbox/Checkbox.js +15 -5
- package/src/components/atoms/checkbox/Checkbox.theme.js +10 -2
- package/src/components/atoms/dropdown/Dropdown.js +23 -5
- package/src/components/atoms/form-layouts/FormInput.js +14 -0
- package/src/components/atoms/form-select/FormSelect.js +3 -1
- package/src/components/atoms/index.js +1 -0
- package/src/components/atoms/password-requirements/PasswordRequirements.js +4 -4
- package/src/components/atoms/searchable-select/SearchableSelect.js +85 -0
- package/src/components/atoms/searchable-select/SearchableSelect.theme.js +7 -0
- package/src/components/atoms/searchable-select/index.js +3 -0
- package/src/components/molecules/change-password-form/ChangePasswordForm.js +92 -38
- package/src/components/molecules/index.js +1 -0
- package/src/components/molecules/internal-user-info-form/InternalUserInfoForm.js +261 -0
- package/src/components/molecules/internal-user-info-form/InternalUserInfoForm.state.js +26 -0
- package/src/components/molecules/internal-user-info-form/index.js +11 -0
package/dist/index.cjs.js
CHANGED
|
@@ -18581,7 +18581,7 @@ var textColor = {
|
|
|
18581
18581
|
"default": "".concat(CHARADE_GREY)
|
|
18582
18582
|
};
|
|
18583
18583
|
var disabledCheckColor = {
|
|
18584
|
-
"default": "".concat(
|
|
18584
|
+
"default": "".concat(WHITE, ";")
|
|
18585
18585
|
};
|
|
18586
18586
|
var checkColor = {
|
|
18587
18587
|
"default": "".concat(WHITE, ";")
|
|
@@ -18592,6 +18592,9 @@ var errorStyles = {
|
|
|
18592
18592
|
var focusedStyles = {
|
|
18593
18593
|
"default": "box-shadow: 0 0 5px 0 ".concat(MATISSE_BLUE, ";")
|
|
18594
18594
|
};
|
|
18595
|
+
var disabledCheckedStyles = {
|
|
18596
|
+
"default": "\n background: #6d717e;\n border: 1px solid #6d717e;\n"
|
|
18597
|
+
};
|
|
18595
18598
|
var disabledStyles = {
|
|
18596
18599
|
"default": "\n background: ".concat(SEASHELL_WHITE, ";\n border: 1px solid ").concat(GHOST_GREY, ";\n")
|
|
18597
18600
|
};
|
|
@@ -18613,7 +18616,8 @@ var fallbackValues$c = {
|
|
|
18613
18616
|
focusedStyles: focusedStyles,
|
|
18614
18617
|
disabledStyles: disabledStyles,
|
|
18615
18618
|
checkedStyles: checkedStyles,
|
|
18616
|
-
defaultStyles: defaultStyles
|
|
18619
|
+
defaultStyles: defaultStyles,
|
|
18620
|
+
disabledCheckedStyles: disabledCheckedStyles
|
|
18617
18621
|
};
|
|
18618
18622
|
|
|
18619
18623
|
function _templateObject11() {
|
|
@@ -18748,8 +18752,9 @@ var StyledCheckbox = styled__default.div(_templateObject7$1(), CheckboxIcon, fun
|
|
|
18748
18752
|
checkedStyles = _ref3.checkedStyles,
|
|
18749
18753
|
focusedStyles = _ref3.focusedStyles,
|
|
18750
18754
|
errorStyles = _ref3.errorStyles,
|
|
18751
|
-
disabledStyles = _ref3.disabledStyles
|
|
18752
|
-
|
|
18755
|
+
disabledStyles = _ref3.disabledStyles,
|
|
18756
|
+
disabledCheckedStyles = _ref3.disabledCheckedStyles;
|
|
18757
|
+
return error ? styled.css(_templateObject8(), errorStyles, focused && focusedStyles) : disabled ? styled.css(_templateObject9(), checked ? disabledCheckedStyles : disabledStyles) : checked ? styled.css(_templateObject10(), checkedStyles, focused && focusedStyles) : styled.css(_templateObject11(), defaultStyles, focused && focusedStyles);
|
|
18753
18758
|
});
|
|
18754
18759
|
|
|
18755
18760
|
var Checkbox = function Checkbox(_ref4) {
|
|
@@ -18764,7 +18769,9 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
18764
18769
|
_ref4$hidden = _ref4.hidden,
|
|
18765
18770
|
hidden = _ref4$hidden === void 0 ? false : _ref4$hidden,
|
|
18766
18771
|
_ref4$error = _ref4.error,
|
|
18767
|
-
error = _ref4$error === void 0 ? false : _ref4$error
|
|
18772
|
+
error = _ref4$error === void 0 ? false : _ref4$error,
|
|
18773
|
+
extraStyles = _ref4.extraStyles,
|
|
18774
|
+
textExtraStyles = _ref4.textExtraStyles;
|
|
18768
18775
|
|
|
18769
18776
|
var _useState = React.useState(false),
|
|
18770
18777
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -18791,7 +18798,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
18791
18798
|
},
|
|
18792
18799
|
hiddenStyles: hidden,
|
|
18793
18800
|
background: themeValues.backgroundColor,
|
|
18794
|
-
extraStyles: "outline: none;"
|
|
18801
|
+
extraStyles: "outline: none; ".concat(extraStyles)
|
|
18795
18802
|
}, /*#__PURE__*/React__default.createElement(CheckboxLabelContainer, null, /*#__PURE__*/React__default.createElement(CheckboxContainer, {
|
|
18796
18803
|
"data-qa": "Checkbox"
|
|
18797
18804
|
}, /*#__PURE__*/React__default.createElement(HiddenCheckbox, {
|
|
@@ -18811,6 +18818,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
18811
18818
|
checkedStyles: themeValues.checkedStyles,
|
|
18812
18819
|
errorStyles: themeValues.errorStyles,
|
|
18813
18820
|
disabledStyles: themeValues.disabledStyles,
|
|
18821
|
+
disabledCheckedStyles: themeValues.disabledCheckedStyles,
|
|
18814
18822
|
focusedStyles: themeValues.focusedStyles
|
|
18815
18823
|
}, /*#__PURE__*/React__default.createElement(CheckboxIcon, {
|
|
18816
18824
|
viewBox: "0 0 24 24",
|
|
@@ -18823,7 +18831,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
18823
18831
|
variant: "p",
|
|
18824
18832
|
weight: themeValues.textFontWeight,
|
|
18825
18833
|
color: themeValues.textColor,
|
|
18826
|
-
extraStyles: "margin-left: 1rem"
|
|
18834
|
+
extraStyles: textExtraStyles ? "".concat(textExtraStyles, " ").concat(disabled && "color: #6e727e; background-color: #f7f7f7;", " ") : "margin-left: 1rem ".concat(disabled && "color: #6e727e; background-color: #f7f7f7;")
|
|
18827
18835
|
}, title)));
|
|
18828
18836
|
};
|
|
18829
18837
|
|
|
@@ -19123,7 +19131,7 @@ function _templateObject2$b() {
|
|
|
19123
19131
|
}
|
|
19124
19132
|
|
|
19125
19133
|
function _templateObject$n() {
|
|
19126
|
-
var data = _taggedTemplateLiteral(["\n display: flex;\n
|
|
19134
|
+
var data = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n justify-content: center;\n transition: transform 0.3s ease;\n ", "\n"]);
|
|
19127
19135
|
|
|
19128
19136
|
_templateObject$n = function _templateObject() {
|
|
19129
19137
|
return data;
|
|
@@ -19181,7 +19189,8 @@ var Dropdown = function Dropdown(_ref9) {
|
|
|
19181
19189
|
themeValues = _ref9.themeValues,
|
|
19182
19190
|
maxHeight = _ref9.maxHeight,
|
|
19183
19191
|
_ref9$widthFitOptions = _ref9.widthFitOptions,
|
|
19184
|
-
widthFitOptions = _ref9$widthFitOptions === void 0 ? false : _ref9$widthFitOptions
|
|
19192
|
+
widthFitOptions = _ref9$widthFitOptions === void 0 ? false : _ref9$widthFitOptions,
|
|
19193
|
+
disabled = _ref9.disabled;
|
|
19185
19194
|
|
|
19186
19195
|
var _useState = React.useState(""),
|
|
19187
19196
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -19317,7 +19326,8 @@ var Dropdown = function Dropdown(_ref9) {
|
|
|
19317
19326
|
padding: "0",
|
|
19318
19327
|
width: "100%",
|
|
19319
19328
|
hoverStyles: "background-color: ".concat(themeValues.hoverColor, ";"),
|
|
19320
|
-
"aria-expanded": isOpen
|
|
19329
|
+
"aria-expanded": isOpen,
|
|
19330
|
+
extraStyles: disabled && "color: #6e727e;\n background-color: #f7f7f7;\n pointer-events: none;"
|
|
19321
19331
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
19322
19332
|
as: "button",
|
|
19323
19333
|
background: isOpen ? themeValues.hoverColor : WHITE,
|
|
@@ -19328,8 +19338,8 @@ var Dropdown = function Dropdown(_ref9) {
|
|
|
19328
19338
|
borderColor: isError ? ERROR_COLOR : isOpen ? themeValues.selectedColor : GREY_CHATEAU,
|
|
19329
19339
|
borderRadius: "2px",
|
|
19330
19340
|
tabIndex: 0,
|
|
19331
|
-
|
|
19332
|
-
|
|
19341
|
+
dataQa: placeholder,
|
|
19342
|
+
extraStyles: "height: 48px;\n ".concat(disabled && "color: #6e727e;\n background-color: #f7f7f7;\n pointer-events: none;", "\n ")
|
|
19333
19343
|
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
19334
19344
|
direction: "row",
|
|
19335
19345
|
bottomItem: 2
|
|
@@ -19339,7 +19349,8 @@ var Dropdown = function Dropdown(_ref9) {
|
|
|
19339
19349
|
onChange: noop,
|
|
19340
19350
|
themeValues: themeValues
|
|
19341
19351
|
}) : /*#__PURE__*/React__default.createElement(Text$1, {
|
|
19342
|
-
variant: "p"
|
|
19352
|
+
variant: "p",
|
|
19353
|
+
extraStyles: disabled && "color: #6e727e;\n background-color: #f7f7f7;\n pointer-events: none;"
|
|
19343
19354
|
}, value ? (_options$find = options.find(function (option) {
|
|
19344
19355
|
return option.value === value;
|
|
19345
19356
|
})) === null || _options$find === void 0 ? void 0 : _options$find.text : placeholder), /*#__PURE__*/React__default.createElement(IconWrapper, {
|
|
@@ -19490,6 +19501,7 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
19490
19501
|
onChange = _ref.onChange,
|
|
19491
19502
|
dropdownMaxHeight = _ref.dropdownMaxHeight,
|
|
19492
19503
|
disabledValues = _ref.disabledValues,
|
|
19504
|
+
disabled = _ref.disabled,
|
|
19493
19505
|
themeValues = _ref.themeValues;
|
|
19494
19506
|
|
|
19495
19507
|
var _useState = React.useState(false),
|
|
@@ -19512,7 +19524,8 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
19512
19524
|
};
|
|
19513
19525
|
});
|
|
19514
19526
|
return /*#__PURE__*/React__default.createElement(SelectContainer, {
|
|
19515
|
-
ref: dropdownRef
|
|
19527
|
+
ref: dropdownRef,
|
|
19528
|
+
disabled: disabled
|
|
19516
19529
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
19517
19530
|
padding: "0",
|
|
19518
19531
|
minWidth: "100%"
|
|
@@ -19542,7 +19555,8 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
19542
19555
|
},
|
|
19543
19556
|
onClick: function onClick() {
|
|
19544
19557
|
return setOpen(!open);
|
|
19545
|
-
}
|
|
19558
|
+
},
|
|
19559
|
+
disabled: disabled
|
|
19546
19560
|
}), /*#__PURE__*/React__default.createElement(Stack, {
|
|
19547
19561
|
direction: "row",
|
|
19548
19562
|
justify: "space-between"
|
|
@@ -20753,9 +20767,29 @@ var fallbackValues$h = {
|
|
|
20753
20767
|
formFooterPanel: formFooterPanel
|
|
20754
20768
|
};
|
|
20755
20769
|
|
|
20756
|
-
function
|
|
20770
|
+
function _templateObject6$2() {
|
|
20757
20771
|
var data = _taggedTemplateLiteral(["\n ", "\n "]);
|
|
20758
20772
|
|
|
20773
|
+
_templateObject6$2 = function _templateObject6() {
|
|
20774
|
+
return data;
|
|
20775
|
+
};
|
|
20776
|
+
|
|
20777
|
+
return data;
|
|
20778
|
+
}
|
|
20779
|
+
|
|
20780
|
+
function _templateObject5$2() {
|
|
20781
|
+
var data = _taggedTemplateLiteral(["\n color: #6e727e;\n background-color: #f7f7f7;\n "]);
|
|
20782
|
+
|
|
20783
|
+
_templateObject5$2 = function _templateObject5() {
|
|
20784
|
+
return data;
|
|
20785
|
+
};
|
|
20786
|
+
|
|
20787
|
+
return data;
|
|
20788
|
+
}
|
|
20789
|
+
|
|
20790
|
+
function _templateObject4$3() {
|
|
20791
|
+
var data = _taggedTemplateLiteral(["\n border: 1px solid\n ", ";\n border-radius: 2px;\n height: ", ";\n width: 100%;\n padding: 1rem;\n min-width: 100px;\n margin: 0;\n box-sizing: border-box;\n position: relative;\n font-size: 1.1rem;\n line-height: 2rem;\n font-weight: ", ";\n background-color: ", ";\n color: ", ";\n box-shadow: none;\n\n &:focus {\n outline: 3px solid ", ";\n outline-offset: 2px;\n }\n\n ", "\n\n ", "\n"]);
|
|
20792
|
+
|
|
20759
20793
|
_templateObject4$3 = function _templateObject4() {
|
|
20760
20794
|
return data;
|
|
20761
20795
|
};
|
|
@@ -20764,7 +20798,7 @@ function _templateObject4$3() {
|
|
|
20764
20798
|
}
|
|
20765
20799
|
|
|
20766
20800
|
function _templateObject3$7() {
|
|
20767
|
-
var data = _taggedTemplateLiteral(["\n
|
|
20801
|
+
var data = _taggedTemplateLiteral(["\n ", "\n "]);
|
|
20768
20802
|
|
|
20769
20803
|
_templateObject3$7 = function _templateObject3() {
|
|
20770
20804
|
return data;
|
|
@@ -20774,7 +20808,7 @@ function _templateObject3$7() {
|
|
|
20774
20808
|
}
|
|
20775
20809
|
|
|
20776
20810
|
function _templateObject2$d() {
|
|
20777
|
-
var data = _taggedTemplateLiteral(["\n
|
|
20811
|
+
var data = _taggedTemplateLiteral(["\n color: #6e727e;\n background-color: #f7f7f7;\n "]);
|
|
20778
20812
|
|
|
20779
20813
|
_templateObject2$d = function _templateObject2() {
|
|
20780
20814
|
return data;
|
|
@@ -20784,7 +20818,7 @@ function _templateObject2$d() {
|
|
|
20784
20818
|
}
|
|
20785
20819
|
|
|
20786
20820
|
function _templateObject$p() {
|
|
20787
|
-
var data = _taggedTemplateLiteral(["\n border: 1px solid\n ", ";\n border-radius: 2px;\n height: ", ";\n width: 100%;\n padding: 1rem;\n min-width: 100px;\n margin: 0;\n box-sizing: border-box;\n position: relative;\n font-size: 1.1rem;\n font-family: Public Sans;\n line-height: 2rem;\n font-weight: ", ";\n background-color: ", ";\n color: ", ";\n box-shadow: none;\n ", "\n transition: background 0.3s ease;\n\n &:focus {\n outline: 3px solid ", ";\n outline-offset: 2px;\n }\n\n ", "\n"]);
|
|
20821
|
+
var data = _taggedTemplateLiteral(["\n border: 1px solid\n ", ";\n border-radius: 2px;\n height: ", ";\n width: 100%;\n padding: 1rem;\n min-width: 100px;\n margin: 0;\n box-sizing: border-box;\n position: relative;\n font-size: 1.1rem;\n font-family: Public Sans;\n line-height: 2rem;\n font-weight: ", ";\n background-color: ", ";\n color: ", ";\n box-shadow: none;\n ", "\n transition: background 0.3s ease;\n\n &:focus {\n outline: 3px solid ", ";\n outline-offset: 2px;\n }\n\n ", "\n\n ", "\n"]);
|
|
20788
20822
|
|
|
20789
20823
|
_templateObject$p = function _templateObject() {
|
|
20790
20824
|
return data;
|
|
@@ -20811,58 +20845,64 @@ var InputField = styled__default.input(_templateObject$p(), function (_ref) {
|
|
|
20811
20845
|
themeValues = _ref5.themeValues;
|
|
20812
20846
|
return background && "background: ".concat(themeValues.inputBackgroundColor, " url(").concat(background, ") no-repeat right 0.5rem center;");
|
|
20813
20847
|
}, ROYAL_BLUE, function (_ref6) {
|
|
20814
|
-
var
|
|
20815
|
-
return styled.css(_templateObject2$d()
|
|
20848
|
+
var disabled = _ref6.disabled;
|
|
20849
|
+
return disabled && styled.css(_templateObject2$d());
|
|
20850
|
+
}, function (_ref7) {
|
|
20851
|
+
var extraStyles = _ref7.extraStyles;
|
|
20852
|
+
return styled.css(_templateObject3$7(), extraStyles);
|
|
20816
20853
|
}); // eslint-disable-next-line no-unused-vars
|
|
20817
20854
|
|
|
20818
|
-
var FormattedInputField = styled__default(function (
|
|
20819
|
-
var showErrors =
|
|
20820
|
-
themeValues =
|
|
20821
|
-
props = _objectWithoutProperties(
|
|
20855
|
+
var FormattedInputField = styled__default(function (_ref8) {
|
|
20856
|
+
var showErrors = _ref8.showErrors,
|
|
20857
|
+
themeValues = _ref8.themeValues,
|
|
20858
|
+
props = _objectWithoutProperties(_ref8, ["showErrors", "themeValues"]);
|
|
20822
20859
|
|
|
20823
20860
|
return /*#__PURE__*/React__default.createElement(src_1, props);
|
|
20824
|
-
})(
|
|
20825
|
-
var field =
|
|
20826
|
-
showErrors =
|
|
20827
|
-
themeValues =
|
|
20861
|
+
})(_templateObject4$3(), function (_ref9) {
|
|
20862
|
+
var field = _ref9.field,
|
|
20863
|
+
showErrors = _ref9.showErrors,
|
|
20864
|
+
themeValues = _ref9.themeValues;
|
|
20828
20865
|
return field.dirty && field.hasErrors || field.hasErrors && showErrors ? ERROR_COLOR : themeValues.borderColor;
|
|
20829
|
-
}, function (
|
|
20830
|
-
var customHeight =
|
|
20866
|
+
}, function (_ref10) {
|
|
20867
|
+
var customHeight = _ref10.customHeight;
|
|
20831
20868
|
return customHeight ? customHeight : "48px";
|
|
20832
|
-
}, FONT_WEIGHT_REGULAR, function (
|
|
20833
|
-
var themeValues = _ref10.themeValues;
|
|
20834
|
-
return themeValues.inputBackgroundColor && themeValues.inputBackgroundColor;
|
|
20835
|
-
}, function (_ref11) {
|
|
20869
|
+
}, FONT_WEIGHT_REGULAR, function (_ref11) {
|
|
20836
20870
|
var themeValues = _ref11.themeValues;
|
|
20871
|
+
return themeValues.inputBackgroundColor && themeValues.inputBackgroundColor;
|
|
20872
|
+
}, function (_ref12) {
|
|
20873
|
+
var themeValues = _ref12.themeValues;
|
|
20837
20874
|
return themeValues.color && themeValues.color;
|
|
20838
|
-
}, ROYAL_BLUE, function (
|
|
20839
|
-
var
|
|
20840
|
-
return styled.css(
|
|
20875
|
+
}, ROYAL_BLUE, function (_ref13) {
|
|
20876
|
+
var disabled = _ref13.disabled;
|
|
20877
|
+
return disabled && styled.css(_templateObject5$2());
|
|
20878
|
+
}, function (_ref14) {
|
|
20879
|
+
var extraStyles = _ref14.extraStyles;
|
|
20880
|
+
return styled.css(_templateObject6$2(), extraStyles);
|
|
20841
20881
|
});
|
|
20842
20882
|
|
|
20843
|
-
var FormInput = function FormInput(
|
|
20844
|
-
var
|
|
20845
|
-
type =
|
|
20846
|
-
|
|
20847
|
-
labelTextWhenNoError =
|
|
20848
|
-
errorMessages =
|
|
20849
|
-
|
|
20850
|
-
isNum =
|
|
20851
|
-
|
|
20852
|
-
isEmail =
|
|
20853
|
-
|
|
20854
|
-
helperModal =
|
|
20855
|
-
field =
|
|
20856
|
-
fieldActions =
|
|
20857
|
-
showErrors =
|
|
20858
|
-
|
|
20859
|
-
formatter =
|
|
20860
|
-
decorator =
|
|
20861
|
-
themeValues =
|
|
20862
|
-
background =
|
|
20863
|
-
customHeight =
|
|
20864
|
-
extraStyles =
|
|
20865
|
-
props = _objectWithoutProperties(
|
|
20883
|
+
var FormInput = function FormInput(_ref15) {
|
|
20884
|
+
var _ref15$type = _ref15.type,
|
|
20885
|
+
type = _ref15$type === void 0 ? "text" : _ref15$type,
|
|
20886
|
+
_ref15$labelTextWhenN = _ref15.labelTextWhenNoError,
|
|
20887
|
+
labelTextWhenNoError = _ref15$labelTextWhenN === void 0 ? "" : _ref15$labelTextWhenN,
|
|
20888
|
+
errorMessages = _ref15.errorMessages,
|
|
20889
|
+
_ref15$isNum = _ref15.isNum,
|
|
20890
|
+
isNum = _ref15$isNum === void 0 ? false : _ref15$isNum,
|
|
20891
|
+
_ref15$isEmail = _ref15.isEmail,
|
|
20892
|
+
isEmail = _ref15$isEmail === void 0 ? false : _ref15$isEmail,
|
|
20893
|
+
_ref15$helperModal = _ref15.helperModal,
|
|
20894
|
+
helperModal = _ref15$helperModal === void 0 ? false : _ref15$helperModal,
|
|
20895
|
+
field = _ref15.field,
|
|
20896
|
+
fieldActions = _ref15.fieldActions,
|
|
20897
|
+
showErrors = _ref15.showErrors,
|
|
20898
|
+
_ref15$formatter = _ref15.formatter,
|
|
20899
|
+
formatter = _ref15$formatter === void 0 ? null : _ref15$formatter,
|
|
20900
|
+
decorator = _ref15.decorator,
|
|
20901
|
+
themeValues = _ref15.themeValues,
|
|
20902
|
+
background = _ref15.background,
|
|
20903
|
+
customHeight = _ref15.customHeight,
|
|
20904
|
+
extraStyles = _ref15.extraStyles,
|
|
20905
|
+
props = _objectWithoutProperties(_ref15, ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "extraStyles"]);
|
|
20866
20906
|
|
|
20867
20907
|
var _useState = React.useState(false),
|
|
20868
20908
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -21636,20 +21676,20 @@ function _templateObject7$2() {
|
|
|
21636
21676
|
return data;
|
|
21637
21677
|
}
|
|
21638
21678
|
|
|
21639
|
-
function _templateObject6$
|
|
21679
|
+
function _templateObject6$3() {
|
|
21640
21680
|
var data = _taggedTemplateLiteral(["", " needs a number"]);
|
|
21641
21681
|
|
|
21642
|
-
_templateObject6$
|
|
21682
|
+
_templateObject6$3 = function _templateObject6() {
|
|
21643
21683
|
return data;
|
|
21644
21684
|
};
|
|
21645
21685
|
|
|
21646
21686
|
return data;
|
|
21647
21687
|
}
|
|
21648
21688
|
|
|
21649
|
-
function _templateObject5$
|
|
21689
|
+
function _templateObject5$3() {
|
|
21650
21690
|
var data = _taggedTemplateLiteral(["", " is not a valid email address"]);
|
|
21651
21691
|
|
|
21652
|
-
_templateObject5$
|
|
21692
|
+
_templateObject5$3 = function _templateObject5() {
|
|
21653
21693
|
return data;
|
|
21654
21694
|
};
|
|
21655
21695
|
|
|
@@ -21735,7 +21775,7 @@ with interpolation.
|
|
|
21735
21775
|
*/
|
|
21736
21776
|
|
|
21737
21777
|
|
|
21738
|
-
var DEFAULT_ERROR_MESSAGES = (_DEFAULT_ERROR_MESSAG = {}, _defineProperty(_DEFAULT_ERROR_MESSAG, MIN_LENGTH_ERROR, genErrorMessage(_templateObject$t(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, MAX_LENGTH_ERROR, genErrorMessage(_templateObject2$h(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, EXACT_LENGTH_ERROR, genErrorMessage(_templateObject3$9(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, MULTIPLE_LENGTHS_ERROR, genErrorMessage(_templateObject4$4(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, EMAIL_ERROR, genErrorMessage(_templateObject5$
|
|
21778
|
+
var DEFAULT_ERROR_MESSAGES = (_DEFAULT_ERROR_MESSAG = {}, _defineProperty(_DEFAULT_ERROR_MESSAG, MIN_LENGTH_ERROR, genErrorMessage(_templateObject$t(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, MAX_LENGTH_ERROR, genErrorMessage(_templateObject2$h(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, EXACT_LENGTH_ERROR, genErrorMessage(_templateObject3$9(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, MULTIPLE_LENGTHS_ERROR, genErrorMessage(_templateObject4$4(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, EMAIL_ERROR, genErrorMessage(_templateObject5$3(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, HAS_NUMBER_ERROR, genErrorMessage(_templateObject6$3(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, HAS_UPPERCASE_LETTER_ERROR, genErrorMessage(_templateObject7$2(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, HAS_LOWERCASE_LETTER_ERROR, genErrorMessage(_templateObject8$1(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, HAS_SPECIAL_CHARACTER_ERROR, genErrorMessage(_templateObject9$1(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, ONLY_NUMBERS_ERROR, genErrorMessage(_templateObject10$1(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, ONLY_LETTERS_ERROR, genErrorMessage(_templateObject11$1(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, REQUIRED_FIELD_ERROR, genErrorMessage(_templateObject12(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, NUM_GREATER_THAN_ERROR, genErrorMessage(_templateObject13(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, NUM_LESS_THAN_ERROR, genErrorMessage(_templateObject14(), "fieldLabel")), _defineProperty(_DEFAULT_ERROR_MESSAG, MATCHES_FIELD_ERROR, genErrorMessage(_templateObject15(), "fieldLabel", "matchField")), _defineProperty(_DEFAULT_ERROR_MESSAG, VALID_SELECT_OPTION_ERROR, genErrorMessage(_templateObject16(), "fieldLabel")), _DEFAULT_ERROR_MESSAG); // Constants to represent an input's state
|
|
21739
21779
|
// Neutral - has not been validated
|
|
21740
21780
|
// Invalid - has been validated and has an error
|
|
21741
21781
|
// Valid - has been validated and has no error
|
|
@@ -21778,17 +21818,17 @@ var PasswordRequirements = function PasswordRequirements(_ref) {
|
|
|
21778
21818
|
isMobile = _ref.isMobile;
|
|
21779
21819
|
var iconMap = (_iconMap = {}, _defineProperty(_iconMap, INPUT_STATE_NEUTRAL, {
|
|
21780
21820
|
icon: /*#__PURE__*/React__default.createElement(IconNeutral, {
|
|
21781
|
-
margin: "0
|
|
21821
|
+
margin: "0 0.5rem 0 0"
|
|
21782
21822
|
}),
|
|
21783
21823
|
color: MINESHAFT_GREY
|
|
21784
21824
|
}), _defineProperty(_iconMap, INPUT_STATE_INVALID, {
|
|
21785
21825
|
icon: /*#__PURE__*/React__default.createElement(IconInvalid, {
|
|
21786
|
-
margin: "0
|
|
21826
|
+
margin: "0 0.5rem 0 0"
|
|
21787
21827
|
}),
|
|
21788
21828
|
color: RAZZMATAZZ_RED
|
|
21789
21829
|
}), _defineProperty(_iconMap, INPUT_STATE_VALID, {
|
|
21790
21830
|
icon: /*#__PURE__*/React__default.createElement(IconValid, {
|
|
21791
|
-
margin: "0
|
|
21831
|
+
margin: "0 0.5rem 0 0"
|
|
21792
21832
|
}),
|
|
21793
21833
|
color: FOREST_GREEN
|
|
21794
21834
|
}), _iconMap);
|
|
@@ -21838,7 +21878,7 @@ var PasswordRequirements = function PasswordRequirements(_ref) {
|
|
|
21838
21878
|
onRight: true,
|
|
21839
21879
|
childGap: "0rem"
|
|
21840
21880
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
21841
|
-
padding: "
|
|
21881
|
+
padding: "0.15rem 0 0 0"
|
|
21842
21882
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
21843
21883
|
justify: "flex-start",
|
|
21844
21884
|
align: "center"
|
|
@@ -22088,13 +22128,91 @@ var RadioButton$1 = function RadioButton(_ref2) {
|
|
|
22088
22128
|
|
|
22089
22129
|
var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$p);
|
|
22090
22130
|
|
|
22131
|
+
var border$2 = {
|
|
22132
|
+
"default": "1px solid #caced8"
|
|
22133
|
+
};
|
|
22134
|
+
var fallbackValues$q = {
|
|
22135
|
+
border: border$2
|
|
22136
|
+
};
|
|
22137
|
+
|
|
22138
|
+
var SELECT_ALL = "Select All";
|
|
22139
|
+
|
|
22140
|
+
var SearchableSelect = function SearchableSelect(_ref) {
|
|
22141
|
+
var items = _ref.items,
|
|
22142
|
+
selectedItems = _ref.selectedItems,
|
|
22143
|
+
allSelected = _ref.allSelected,
|
|
22144
|
+
toggleSelectAllItems = _ref.toggleSelectAllItems,
|
|
22145
|
+
selectItem = _ref.selectItem,
|
|
22146
|
+
fields = _ref.fields,
|
|
22147
|
+
actions = _ref.actions,
|
|
22148
|
+
disabled = _ref.disabled,
|
|
22149
|
+
themeValues = _ref.themeValues;
|
|
22150
|
+
|
|
22151
|
+
var _useState = React.useState([]),
|
|
22152
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
22153
|
+
itemList = _useState2[0],
|
|
22154
|
+
setItemList = _useState2[1];
|
|
22155
|
+
|
|
22156
|
+
React.useEffect(function () {
|
|
22157
|
+
return setItemList(items);
|
|
22158
|
+
}, [items, selectedItems]);
|
|
22159
|
+
React.useEffect(function () {
|
|
22160
|
+
var filteredItems = items.filter(function (item) {
|
|
22161
|
+
var _item$name, _fields$searchTerm, _fields$searchTerm$ra;
|
|
22162
|
+
|
|
22163
|
+
return item === null || item === void 0 ? void 0 : (_item$name = item.name) === null || _item$name === void 0 ? void 0 : _item$name.toLowerCase().includes(fields === null || fields === void 0 ? void 0 : (_fields$searchTerm = fields.searchTerm) === null || _fields$searchTerm === void 0 ? void 0 : (_fields$searchTerm$ra = _fields$searchTerm.rawValue) === null || _fields$searchTerm$ra === void 0 ? void 0 : _fields$searchTerm$ra.toLowerCase());
|
|
22164
|
+
});
|
|
22165
|
+
setItemList(filteredItems);
|
|
22166
|
+
}, [fields.searchTerm.rawValue]);
|
|
22167
|
+
|
|
22168
|
+
var handleSelect = function handleSelect(value) {
|
|
22169
|
+
if (value.name === SELECT_ALL) {
|
|
22170
|
+
allSelected ? toggleSelectAllItems(false) : toggleSelectAllItems(true);
|
|
22171
|
+
} else {
|
|
22172
|
+
selectItem(value);
|
|
22173
|
+
}
|
|
22174
|
+
};
|
|
22175
|
+
|
|
22176
|
+
return /*#__PURE__*/React__default.createElement(Box, {
|
|
22177
|
+
padding: "1rem",
|
|
22178
|
+
border: themeValues.border,
|
|
22179
|
+
extraStyles: disabled && "color: #6e727e; background-color: #f7f7f7; pointer-events: none;"
|
|
22180
|
+
}, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
22181
|
+
errorMessages: {},
|
|
22182
|
+
field: fields.searchTerm,
|
|
22183
|
+
fieldActions: actions.fields.searchTerm,
|
|
22184
|
+
placeholder: "Search agencies",
|
|
22185
|
+
disabled: disabled
|
|
22186
|
+
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
22187
|
+
padding: "0.5rem 0",
|
|
22188
|
+
extraStyles: "overflow-y: scroll; height: 250px;"
|
|
22189
|
+
}, /*#__PURE__*/React__default.createElement(Stack, null, itemList.map(function (value) {
|
|
22190
|
+
return /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
22191
|
+
key: value.name,
|
|
22192
|
+
title: value.name,
|
|
22193
|
+
name: value.name,
|
|
22194
|
+
checked: selectedItems.find(function (item) {
|
|
22195
|
+
return item.name === value.name;
|
|
22196
|
+
}),
|
|
22197
|
+
onChange: function onChange() {
|
|
22198
|
+
return handleSelect(value);
|
|
22199
|
+
},
|
|
22200
|
+
textExtraStyles: "margin: 0;",
|
|
22201
|
+
disabled: disabled,
|
|
22202
|
+
extraStyles: "margin: 0 0.5rem;"
|
|
22203
|
+
});
|
|
22204
|
+
})))));
|
|
22205
|
+
};
|
|
22206
|
+
|
|
22207
|
+
var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$q, "default");
|
|
22208
|
+
|
|
22091
22209
|
var borderColor$2 = {
|
|
22092
22210
|
"default": "".concat(GREY_CHATEAU)
|
|
22093
22211
|
};
|
|
22094
22212
|
var borderSize = {
|
|
22095
22213
|
"default": "1px"
|
|
22096
22214
|
};
|
|
22097
|
-
var fallbackValues$
|
|
22215
|
+
var fallbackValues$r = {
|
|
22098
22216
|
borderColor: borderColor$2,
|
|
22099
22217
|
borderSize: borderSize
|
|
22100
22218
|
};
|
|
@@ -22111,7 +22229,7 @@ var SolidDivider = function SolidDivider(_ref) {
|
|
|
22111
22229
|
});
|
|
22112
22230
|
};
|
|
22113
22231
|
|
|
22114
|
-
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$
|
|
22232
|
+
var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$r, "default");
|
|
22115
22233
|
|
|
22116
22234
|
var placeHolderOptionUS = {
|
|
22117
22235
|
text: "Please select state",
|
|
@@ -32693,7 +32811,7 @@ var offBackground = "".concat(REGENT_GREY);
|
|
|
32693
32811
|
var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
|
|
32694
32812
|
var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
|
|
32695
32813
|
var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
|
|
32696
|
-
var fallbackValues$
|
|
32814
|
+
var fallbackValues$s = {
|
|
32697
32815
|
onBackground: onBackground,
|
|
32698
32816
|
disabledBackground: disabledBackground,
|
|
32699
32817
|
white: white,
|
|
@@ -32895,7 +33013,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
|
|
|
32895
33013
|
}, label))));
|
|
32896
33014
|
};
|
|
32897
33015
|
|
|
32898
|
-
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$
|
|
33016
|
+
var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$s);
|
|
32899
33017
|
|
|
32900
33018
|
var background$1 = "".concat(ATHENS_GREY);
|
|
32901
33019
|
var white$1 = "".concat(WHITE);
|
|
@@ -34733,7 +34851,11 @@ var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
|
34733
34851
|
_ref$handleSubmit = _ref.handleSubmit,
|
|
34734
34852
|
handleSubmit = _ref$handleSubmit === void 0 ? noop : _ref$handleSubmit,
|
|
34735
34853
|
showErrors = _ref.showErrors,
|
|
34736
|
-
isMobile = _ref.isMobile
|
|
34854
|
+
isMobile = _ref.isMobile,
|
|
34855
|
+
revenueManagement = _ref.revenueManagement,
|
|
34856
|
+
closeForm = _ref.closeForm,
|
|
34857
|
+
firstName = _ref.firstName,
|
|
34858
|
+
lastName = _ref.lastName;
|
|
34737
34859
|
|
|
34738
34860
|
if (clearOnDismount) {
|
|
34739
34861
|
React.useEffect(function () {
|
|
@@ -34751,7 +34873,29 @@ var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
|
34751
34873
|
|
|
34752
34874
|
return /*#__PURE__*/React__default.createElement(FormContainer$1, {
|
|
34753
34875
|
role: "form",
|
|
34754
|
-
"aria-label": "Change password"
|
|
34876
|
+
"aria-label": "Change password",
|
|
34877
|
+
extraStyles: "padding: 0;"
|
|
34878
|
+
}, revenueManagement && /*#__PURE__*/React__default.createElement(Box, {
|
|
34879
|
+
padding: "1.5rem",
|
|
34880
|
+
borderColor: GHOST_GREY,
|
|
34881
|
+
borderSize: "1px",
|
|
34882
|
+
borderWidthOverride: "0 0 1px 0"
|
|
34883
|
+
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
34884
|
+
justify: "flex-start",
|
|
34885
|
+
align: "center"
|
|
34886
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
34887
|
+
padding: "1.25rem",
|
|
34888
|
+
borderRadius: "50%",
|
|
34889
|
+
background: "#CACED8"
|
|
34890
|
+
}, /*#__PURE__*/React__default.createElement(Heading$1, {
|
|
34891
|
+
variant: "h4",
|
|
34892
|
+
weight: "700"
|
|
34893
|
+
}, firstName.charAt(0).toUpperCase(), lastName.charAt(0).toUpperCase())), /*#__PURE__*/React__default.createElement(Text$1, {
|
|
34894
|
+
variant: "p",
|
|
34895
|
+
weight: "700",
|
|
34896
|
+
extraStyles: "padding-left: 1rem;"
|
|
34897
|
+
}, firstName, " ", lastName))), /*#__PURE__*/React__default.createElement(Box, {
|
|
34898
|
+
padding: "1.5rem"
|
|
34755
34899
|
}, /*#__PURE__*/React__default.createElement(FormInputColumn, null, /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
34756
34900
|
labelTextWhenNoError: "Current password",
|
|
34757
34901
|
errorMessages: currentPasswordErrorMessages,
|
|
@@ -34790,7 +34934,25 @@ var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
|
34790
34934
|
}, /*#__PURE__*/React__default.createElement(PasswordRequirements, {
|
|
34791
34935
|
password: fields.newPassword,
|
|
34792
34936
|
isMobile: isMobile
|
|
34793
|
-
})))
|
|
34937
|
+
}))), revenueManagement && /*#__PURE__*/React__default.createElement(Box, {
|
|
34938
|
+
padding: "1.5rem 0 0"
|
|
34939
|
+
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
34940
|
+
childGap: "1rem",
|
|
34941
|
+
direction: "row",
|
|
34942
|
+
justify: "flex-end"
|
|
34943
|
+
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
34944
|
+
text: "Cancel",
|
|
34945
|
+
action: closeForm,
|
|
34946
|
+
variant: "secondary",
|
|
34947
|
+
dataQa: "Cancel",
|
|
34948
|
+
extraStyles: "margin: 0rem; padding: 0.75rem 1.5rem; border-radius: 4px;"
|
|
34949
|
+
}), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
34950
|
+
text: "Save",
|
|
34951
|
+
action: handleSubmit,
|
|
34952
|
+
variant: "primary",
|
|
34953
|
+
dataQa: "Save",
|
|
34954
|
+
extraStyles: "margin: 0rem; padding: 0.75rem 1.5rem; border-radius: 4px;"
|
|
34955
|
+
})))));
|
|
34794
34956
|
};
|
|
34795
34957
|
|
|
34796
34958
|
var formConfig$1 = {
|
|
@@ -34817,7 +34979,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
34817
34979
|
var titleColor = "#292A33";
|
|
34818
34980
|
var headingBackgroundColor = "transparent";
|
|
34819
34981
|
var bodyBackgroundColor = "transparent";
|
|
34820
|
-
var fallbackValues$
|
|
34982
|
+
var fallbackValues$t = {
|
|
34821
34983
|
titleColor: titleColor,
|
|
34822
34984
|
headingBackgroundColor: headingBackgroundColor,
|
|
34823
34985
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -34924,7 +35086,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
34924
35086
|
}, children))));
|
|
34925
35087
|
};
|
|
34926
35088
|
|
|
34927
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
35089
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$t);
|
|
34928
35090
|
|
|
34929
35091
|
var EditNameForm = function EditNameForm(_ref) {
|
|
34930
35092
|
var fields = _ref.fields,
|
|
@@ -35154,20 +35316,20 @@ function _templateObject7$3() {
|
|
|
35154
35316
|
return data;
|
|
35155
35317
|
}
|
|
35156
35318
|
|
|
35157
|
-
function _templateObject6$
|
|
35319
|
+
function _templateObject6$4() {
|
|
35158
35320
|
var data = _taggedTemplateLiteral(["\n display: flex;\n align-self: center;\n justify-content: flex-end;\n ", ";\n flex: 1;\n"]);
|
|
35159
35321
|
|
|
35160
|
-
_templateObject6$
|
|
35322
|
+
_templateObject6$4 = function _templateObject6() {
|
|
35161
35323
|
return data;
|
|
35162
35324
|
};
|
|
35163
35325
|
|
|
35164
35326
|
return data;
|
|
35165
35327
|
}
|
|
35166
35328
|
|
|
35167
|
-
function _templateObject5$
|
|
35329
|
+
function _templateObject5$4() {
|
|
35168
35330
|
var data = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n flex: 1;\n width: 100%;\n border-bottom: 1px solid ", ";\n"]);
|
|
35169
35331
|
|
|
35170
|
-
_templateObject5$
|
|
35332
|
+
_templateObject5$4 = function _templateObject5() {
|
|
35171
35333
|
return data;
|
|
35172
35334
|
};
|
|
35173
35335
|
|
|
@@ -35235,8 +35397,8 @@ var EditableListAction = styled__default.div(_templateObject4$6(), MATISSE_BLUE,
|
|
|
35235
35397
|
var hide = _ref6.hide;
|
|
35236
35398
|
return hide ? "none" : "flex";
|
|
35237
35399
|
});
|
|
35238
|
-
var ItemWrapper = styled__default.div(_templateObject5$
|
|
35239
|
-
var ActionWrapper = styled__default.div(_templateObject6$
|
|
35400
|
+
var ItemWrapper = styled__default.div(_templateObject5$4(), GHOST_GREY);
|
|
35401
|
+
var ActionWrapper = styled__default.div(_templateObject6$4(), function (_ref7) {
|
|
35240
35402
|
var isMobile = _ref7.isMobile;
|
|
35241
35403
|
return isMobile && "display: none";
|
|
35242
35404
|
});
|
|
@@ -35440,7 +35602,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
|
35440
35602
|
|
|
35441
35603
|
var textColor$2 = "#ffffff";
|
|
35442
35604
|
var backgroundColor$5 = "#182848";
|
|
35443
|
-
var fallbackValues$
|
|
35605
|
+
var fallbackValues$u = {
|
|
35444
35606
|
textColor: textColor$2,
|
|
35445
35607
|
backgroundColor: backgroundColor$5
|
|
35446
35608
|
};
|
|
@@ -35486,7 +35648,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
35486
35648
|
}), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
|
|
35487
35649
|
};
|
|
35488
35650
|
|
|
35489
|
-
var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
35651
|
+
var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$u));
|
|
35490
35652
|
|
|
35491
35653
|
var AccountBillIcon = function AccountBillIcon() {
|
|
35492
35654
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -36939,6 +37101,264 @@ var PROPERTIES_COMMERCIAL_AUTO_ICON = "PROPERTIES_COMMERCIAL_AUTO";
|
|
|
36939
37101
|
var MISC_BILL_ICON = "MISC_SINGLE_BILL";
|
|
36940
37102
|
var iconsMap = (_iconsMap = {}, _defineProperty(_iconsMap, ACCOUNTS_GENERIC_ICON, AccountGenericIcon), _defineProperty(_iconsMap, ACCOUNTS_CONSTRUCTION_ICON, AccountConstructionIcon), _defineProperty(_iconsMap, ACCOUNTS_HEALTH_ICON, AccountMedicalIcon), _defineProperty(_iconsMap, ACCOUNTS_DENTAL_ICON, AccountDentalIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_ELECTRIC_ICON, AccountElectricIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_GARBAGE_ICON, AccountGarbageIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_GAS_ICON, AccountGasIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_WATER_ICON, AccountWaterIcon), _defineProperty(_iconsMap, PROPERTIES_PERSONAL_ICON, PropertyPersonalIcon), _defineProperty(_iconsMap, PROPERTIES_GARAGE_ICON, PropertyGarageIcon), _defineProperty(_iconsMap, PROPERTIES_BUSINESS_ICON, PropertyBusinessIcon), _defineProperty(_iconsMap, PROPERTIES_STOREFRONT_ICON, PropertyStorefrontIcon), _defineProperty(_iconsMap, PROPERTIES_APARTMENT_ICON, PropertyApartmentIcon), _defineProperty(_iconsMap, PROPERTIES_LAND_ICON, PropertyLandIcon), _defineProperty(_iconsMap, PROPERTIES_CAR_ICON, PropertyCarIcon), _defineProperty(_iconsMap, PROPERTIES_MOTORCYCLE_ICON, PropertyMotorcycleIcon), _defineProperty(_iconsMap, PROPERTIES_COMMERCIAL_AUTO_ICON, PropertyCommercialVehicleIcon), _defineProperty(_iconsMap, MISC_BILL_ICON, AccountBillIcon), _iconsMap);
|
|
36941
37103
|
|
|
37104
|
+
var _roleDescriptions;
|
|
37105
|
+
var RESEARCHER = "RESEARCHER";
|
|
37106
|
+
var AGENCY_ADMIN = "AGENCY_ADMIN";
|
|
37107
|
+
var CLIENT_ADMIN = "CLIENT_ADMIN";
|
|
37108
|
+
var SUPERVISOR = "SUPERVISOR";
|
|
37109
|
+
var CB_ADMIN = "CITYBASE_ADMIN";
|
|
37110
|
+
var CREATE_CLIENT_ADMIN = "CREATE_CLIENT_ADMIN";
|
|
37111
|
+
var PROFILE = "PROFILE";
|
|
37112
|
+
var ADD = "ADD";
|
|
37113
|
+
var EDIT = "EDIT";
|
|
37114
|
+
var roleDescriptions = (_roleDescriptions = {}, _defineProperty(_roleDescriptions, RESEARCHER, "Researcher"), _defineProperty(_roleDescriptions, AGENCY_ADMIN, "Agency admin"), _defineProperty(_roleDescriptions, CLIENT_ADMIN, "Client admin"), _defineProperty(_roleDescriptions, SUPERVISOR, "Supervisor"), _defineProperty(_roleDescriptions, CB_ADMIN, "Citybase admin"), _roleDescriptions);
|
|
37115
|
+
|
|
37116
|
+
var InternalUserInfoForm = function InternalUserInfoForm(_ref) {
|
|
37117
|
+
var _ref$variant = _ref.variant,
|
|
37118
|
+
variant = _ref$variant === void 0 ? "default" : _ref$variant,
|
|
37119
|
+
fields = _ref.fields,
|
|
37120
|
+
actions = _ref.actions,
|
|
37121
|
+
clearOnDismount = _ref.clearOnDismount,
|
|
37122
|
+
showErrors = _ref.showErrors,
|
|
37123
|
+
_ref$handleSubmit = _ref.handleSubmit,
|
|
37124
|
+
handleSubmit = _ref$handleSubmit === void 0 ? noop : _ref$handleSubmit,
|
|
37125
|
+
closeForm = _ref.closeForm,
|
|
37126
|
+
allAgencyOptions = _ref.allAgencyOptions,
|
|
37127
|
+
selectedAgencies = _ref.selectedAgencies,
|
|
37128
|
+
allSelected = _ref.allSelected,
|
|
37129
|
+
_ref$toggleSelectAllA = _ref.toggleSelectAllAgencies,
|
|
37130
|
+
toggleSelectAllAgencies = _ref$toggleSelectAllA === void 0 ? noop : _ref$toggleSelectAllA,
|
|
37131
|
+
selectAgency = _ref.selectAgency,
|
|
37132
|
+
roleOptions = _ref.roleOptions,
|
|
37133
|
+
clientOptions = _ref.clientOptions,
|
|
37134
|
+
disabled = _ref.disabled,
|
|
37135
|
+
emailDisabled = _ref.emailDisabled,
|
|
37136
|
+
roleDisabled = _ref.roleDisabled,
|
|
37137
|
+
formType = _ref.formType,
|
|
37138
|
+
isOktaUser = _ref.isOktaUser,
|
|
37139
|
+
openChangePasswordForm = _ref.openChangePasswordForm,
|
|
37140
|
+
firstName = _ref.firstName,
|
|
37141
|
+
lastName = _ref.lastName;
|
|
37142
|
+
React.useEffect(function () {
|
|
37143
|
+
if (formType === CREATE_CLIENT_ADMIN) {
|
|
37144
|
+
actions.fields.client.addValidator(required());
|
|
37145
|
+
}
|
|
37146
|
+
|
|
37147
|
+
if (formType !== PROFILE) {
|
|
37148
|
+
actions.fields.email.addValidator(required());
|
|
37149
|
+
actions.fields.role.addValidator(required());
|
|
37150
|
+
}
|
|
37151
|
+
}, []);
|
|
37152
|
+
|
|
37153
|
+
if (clearOnDismount) {
|
|
37154
|
+
React.useEffect(function () {
|
|
37155
|
+
return function () {
|
|
37156
|
+
return actions.form.clear();
|
|
37157
|
+
};
|
|
37158
|
+
}, []);
|
|
37159
|
+
}
|
|
37160
|
+
|
|
37161
|
+
var clientErrorMessages = _defineProperty({}, required.error, "Client is required");
|
|
37162
|
+
|
|
37163
|
+
var firstNameErrorMessages = _defineProperty({}, required.error, "First name is required");
|
|
37164
|
+
|
|
37165
|
+
var lastNameErrorMessages = _defineProperty({}, required.error, "Last name is required");
|
|
37166
|
+
|
|
37167
|
+
var emailErrorMessages = _defineProperty({}, required.error, "Email is required");
|
|
37168
|
+
|
|
37169
|
+
var roleErrorMessages = _defineProperty({}, required.error, "Role is required");
|
|
37170
|
+
|
|
37171
|
+
return /*#__PURE__*/React__default.createElement(FormContainer$1, {
|
|
37172
|
+
variant: variant,
|
|
37173
|
+
role: "form",
|
|
37174
|
+
"aria-label": "user-info-form",
|
|
37175
|
+
extraStyles: "padding: 0;"
|
|
37176
|
+
}, formType === PROFILE && /*#__PURE__*/React__default.createElement(Box, {
|
|
37177
|
+
padding: "1.5rem"
|
|
37178
|
+
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
37179
|
+
justify: "flex-start",
|
|
37180
|
+
align: "center"
|
|
37181
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
37182
|
+
padding: "1.25rem",
|
|
37183
|
+
borderRadius: "50%",
|
|
37184
|
+
background: "#CACED8"
|
|
37185
|
+
}, /*#__PURE__*/React__default.createElement(Heading$1, {
|
|
37186
|
+
variant: "h4",
|
|
37187
|
+
weight: "700"
|
|
37188
|
+
}, firstName.charAt(0).toUpperCase(), lastName.charAt(0).toUpperCase())), /*#__PURE__*/React__default.createElement(Text$1, {
|
|
37189
|
+
variant: "p",
|
|
37190
|
+
weight: "700",
|
|
37191
|
+
extraStyles: "padding-left: 1rem;"
|
|
37192
|
+
}, firstName, " ", lastName))), formType === CREATE_CLIENT_ADMIN && /*#__PURE__*/React__default.createElement(Box, {
|
|
37193
|
+
padding: "1.5rem 1.5rem 0.5rem",
|
|
37194
|
+
borderColor: GHOST_GREY,
|
|
37195
|
+
borderSize: "1px",
|
|
37196
|
+
borderWidthOverride: "0 0 1px 0"
|
|
37197
|
+
}, /*#__PURE__*/React__default.createElement(FormInputColumn, null, /*#__PURE__*/React__default.createElement(Heading$1, {
|
|
37198
|
+
variant: "h6",
|
|
37199
|
+
weight: "700",
|
|
37200
|
+
margin: "0 0 1rem"
|
|
37201
|
+
}, "Select Client"), /*#__PURE__*/React__default.createElement(FormSelect$1, {
|
|
37202
|
+
labelTextWhenNoError: "Client",
|
|
37203
|
+
errorMessages: clientErrorMessages,
|
|
37204
|
+
options: clientOptions.map(function (client) {
|
|
37205
|
+
return {
|
|
37206
|
+
text: client,
|
|
37207
|
+
value: client,
|
|
37208
|
+
id: client
|
|
37209
|
+
};
|
|
37210
|
+
}),
|
|
37211
|
+
field: fields.client,
|
|
37212
|
+
fieldActions: actions.fields.client,
|
|
37213
|
+
showErrors: showErrors,
|
|
37214
|
+
onKeyDown: function onKeyDown(e) {
|
|
37215
|
+
return e.key === "Enter" && handleSubmit(e);
|
|
37216
|
+
}
|
|
37217
|
+
}))), /*#__PURE__*/React__default.createElement(Box, {
|
|
37218
|
+
padding: formType === PROFILE ? "1.5rem 1.5rem 0" : "1.5rem 1.5rem 0.5rem",
|
|
37219
|
+
borderColor: GHOST_GREY,
|
|
37220
|
+
borderSize: "1px",
|
|
37221
|
+
borderWidthOverride: formType === PROFILE ? "1px 0 0" : "0 0 1px 0"
|
|
37222
|
+
}, /*#__PURE__*/React__default.createElement(FormInputColumn, null, /*#__PURE__*/React__default.createElement(Heading$1, {
|
|
37223
|
+
variant: "h6",
|
|
37224
|
+
weight: "700",
|
|
37225
|
+
margin: "0 0 1rem"
|
|
37226
|
+
}, "Personal Information"), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
37227
|
+
labelTextWhenNoError: "First Name",
|
|
37228
|
+
errorMessages: firstNameErrorMessages,
|
|
37229
|
+
field: fields.firstName,
|
|
37230
|
+
fieldActions: actions.fields.firstName,
|
|
37231
|
+
showErrors: showErrors,
|
|
37232
|
+
onKeyDown: function onKeyDown(e) {
|
|
37233
|
+
return e.key === "Enter" && handleSubmit(e);
|
|
37234
|
+
}
|
|
37235
|
+
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
37236
|
+
labelTextWhenNoError: "Last Name",
|
|
37237
|
+
errorMessages: lastNameErrorMessages,
|
|
37238
|
+
field: fields.lastName,
|
|
37239
|
+
fieldActions: actions.fields.lastName,
|
|
37240
|
+
showErrors: showErrors,
|
|
37241
|
+
onKeyDown: function onKeyDown(e) {
|
|
37242
|
+
return e.key === "Enter" && handleSubmit(e);
|
|
37243
|
+
}
|
|
37244
|
+
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
37245
|
+
labelTextWhenNoError: "Email",
|
|
37246
|
+
errorMessages: emailErrorMessages,
|
|
37247
|
+
field: fields.email,
|
|
37248
|
+
fieldActions: actions.fields.email,
|
|
37249
|
+
showErrors: showErrors,
|
|
37250
|
+
onKeyDown: function onKeyDown(e) {
|
|
37251
|
+
return e.key === "Enter" && handleSubmit(e);
|
|
37252
|
+
},
|
|
37253
|
+
disabled: disabled || emailDisabled
|
|
37254
|
+
}), formType === PROFILE && !isOktaUser && /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
37255
|
+
labelTextWhenNoError: "Password",
|
|
37256
|
+
errorMessages: {},
|
|
37257
|
+
field: {
|
|
37258
|
+
rawValue: "•••••••••••••"
|
|
37259
|
+
},
|
|
37260
|
+
disabled: true,
|
|
37261
|
+
decorator: /*#__PURE__*/React__default.createElement(Text$1, {
|
|
37262
|
+
variant: "pS",
|
|
37263
|
+
color: "#15749D",
|
|
37264
|
+
onClick: openChangePasswordForm,
|
|
37265
|
+
extraStyles: "cursor: pointer;"
|
|
37266
|
+
}, "Change Password")
|
|
37267
|
+
}))), /*#__PURE__*/React__default.createElement(Box, {
|
|
37268
|
+
padding: "1.5rem"
|
|
37269
|
+
}, formType !== PROFILE && /*#__PURE__*/React__default.createElement(Box, {
|
|
37270
|
+
padding: "0 0 0.5rem"
|
|
37271
|
+
}, /*#__PURE__*/React__default.createElement(FormInputColumn, null, /*#__PURE__*/React__default.createElement(Heading$1, {
|
|
37272
|
+
variant: "h6",
|
|
37273
|
+
weight: "700",
|
|
37274
|
+
margin: "0 0 1rem"
|
|
37275
|
+
}, "User Settings"), /*#__PURE__*/React__default.createElement(FormSelect$1, {
|
|
37276
|
+
labelTextWhenNoError: "User Role",
|
|
37277
|
+
errorMessages: roleErrorMessages,
|
|
37278
|
+
options: roleOptions.map(function (role) {
|
|
37279
|
+
return {
|
|
37280
|
+
text: roleDescriptions[role],
|
|
37281
|
+
value: role,
|
|
37282
|
+
id: role
|
|
37283
|
+
};
|
|
37284
|
+
}),
|
|
37285
|
+
field: fields.role,
|
|
37286
|
+
fieldActions: actions.fields.role,
|
|
37287
|
+
showErrors: showErrors,
|
|
37288
|
+
onKeyDown: function onKeyDown(e) {
|
|
37289
|
+
return e.key === "Enter" && handleSubmit(e);
|
|
37290
|
+
},
|
|
37291
|
+
disabled: disabled || roleDisabled
|
|
37292
|
+
}))), (formType === ADD || formType === EDIT) && /*#__PURE__*/React__default.createElement(Box, {
|
|
37293
|
+
padding: "0.5rem 0 1.5rem"
|
|
37294
|
+
}, /*#__PURE__*/React__default.createElement(FormInputColumn, null, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
37295
|
+
variant: "p"
|
|
37296
|
+
}, "Select which agencies the user can view"), /*#__PURE__*/React__default.createElement(SearchableSelect$1, {
|
|
37297
|
+
actions: actions,
|
|
37298
|
+
fields: fields,
|
|
37299
|
+
items: allAgencyOptions,
|
|
37300
|
+
selectedItems: selectedAgencies,
|
|
37301
|
+
allSelected: allSelected,
|
|
37302
|
+
toggleSelectAllItems: toggleSelectAllAgencies,
|
|
37303
|
+
selectItem: selectAgency,
|
|
37304
|
+
disabled: disabled
|
|
37305
|
+
}))), /*#__PURE__*/React__default.createElement(Box, {
|
|
37306
|
+
padding: "0"
|
|
37307
|
+
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
37308
|
+
childGap: "1rem",
|
|
37309
|
+
direction: "row",
|
|
37310
|
+
justify: "flex-end"
|
|
37311
|
+
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
37312
|
+
text: "Cancel",
|
|
37313
|
+
action: function action() {
|
|
37314
|
+
if (formType !== CREATE_CLIENT_ADMIN) {
|
|
37315
|
+
toggleSelectAllAgencies(false);
|
|
37316
|
+
}
|
|
37317
|
+
|
|
37318
|
+
closeForm();
|
|
37319
|
+
},
|
|
37320
|
+
variant: "secondary",
|
|
37321
|
+
dataQa: "Cancel",
|
|
37322
|
+
extraStyles: "margin: 0rem; padding: 0.75rem 1.5rem; border-radius: 4px;"
|
|
37323
|
+
}), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
37324
|
+
text: "Save",
|
|
37325
|
+
action: handleSubmit,
|
|
37326
|
+
variant: "primary",
|
|
37327
|
+
dataQa: "Save",
|
|
37328
|
+
extraStyles: "margin: 0rem; padding: 0.75rem 1.5rem; border-radius: 4px;"
|
|
37329
|
+
})))));
|
|
37330
|
+
};
|
|
37331
|
+
|
|
37332
|
+
var formConfig$5 = {
|
|
37333
|
+
client: {
|
|
37334
|
+
validators: []
|
|
37335
|
+
},
|
|
37336
|
+
firstName: {
|
|
37337
|
+
validators: [required()]
|
|
37338
|
+
},
|
|
37339
|
+
lastName: {
|
|
37340
|
+
validators: [required()]
|
|
37341
|
+
},
|
|
37342
|
+
email: {
|
|
37343
|
+
validators: [isProbablyEmail()]
|
|
37344
|
+
},
|
|
37345
|
+
role: {
|
|
37346
|
+
validators: []
|
|
37347
|
+
},
|
|
37348
|
+
searchTerm: {
|
|
37349
|
+
validators: []
|
|
37350
|
+
}
|
|
37351
|
+
};
|
|
37352
|
+
|
|
37353
|
+
var _createFormState$5 = createFormState(formConfig$5),
|
|
37354
|
+
reducer$5 = _createFormState$5.reducer,
|
|
37355
|
+
mapStateToProps$6 = _createFormState$5.mapStateToProps,
|
|
37356
|
+
mapDispatchToProps$5 = _createFormState$5.mapDispatchToProps;
|
|
37357
|
+
|
|
37358
|
+
InternalUserInfoForm.reducer = reducer$5;
|
|
37359
|
+
InternalUserInfoForm.mapStateToProps = mapStateToProps$6;
|
|
37360
|
+
InternalUserInfoForm.mapDispatchToProps = mapDispatchToProps$5;
|
|
37361
|
+
|
|
36942
37362
|
var LoginForm = function LoginForm(_ref) {
|
|
36943
37363
|
var _emailErrorMessages;
|
|
36944
37364
|
|
|
@@ -36988,7 +37408,7 @@ var LoginForm = function LoginForm(_ref) {
|
|
|
36988
37408
|
}));
|
|
36989
37409
|
};
|
|
36990
37410
|
|
|
36991
|
-
var formConfig$
|
|
37411
|
+
var formConfig$6 = {
|
|
36992
37412
|
email: {
|
|
36993
37413
|
validators: [required(), isProbablyEmail()]
|
|
36994
37414
|
},
|
|
@@ -36997,14 +37417,14 @@ var formConfig$5 = {
|
|
|
36997
37417
|
}
|
|
36998
37418
|
};
|
|
36999
37419
|
|
|
37000
|
-
var _createFormState$
|
|
37001
|
-
reducer$
|
|
37002
|
-
mapStateToProps$
|
|
37003
|
-
mapDispatchToProps$
|
|
37420
|
+
var _createFormState$6 = createFormState(formConfig$6),
|
|
37421
|
+
reducer$6 = _createFormState$6.reducer,
|
|
37422
|
+
mapStateToProps$7 = _createFormState$6.mapStateToProps,
|
|
37423
|
+
mapDispatchToProps$6 = _createFormState$6.mapDispatchToProps;
|
|
37004
37424
|
|
|
37005
|
-
LoginForm.reducer = reducer$
|
|
37006
|
-
LoginForm.mapStateToProps = mapStateToProps$
|
|
37007
|
-
LoginForm.mapDispatchToProps = mapDispatchToProps$
|
|
37425
|
+
LoginForm.reducer = reducer$6;
|
|
37426
|
+
LoginForm.mapStateToProps = mapStateToProps$7;
|
|
37427
|
+
LoginForm.mapDispatchToProps = mapDispatchToProps$6;
|
|
37008
37428
|
|
|
37009
37429
|
var candidateSelectors = [
|
|
37010
37430
|
'input',
|
|
@@ -38311,7 +38731,7 @@ var backgroundColor$6 = {
|
|
|
38311
38731
|
"default": WHITE,
|
|
38312
38732
|
largeTitle: WHITE
|
|
38313
38733
|
};
|
|
38314
|
-
var fallbackValues$
|
|
38734
|
+
var fallbackValues$v = {
|
|
38315
38735
|
fontSize: fontSize$8,
|
|
38316
38736
|
fontWeight: fontWeight$5,
|
|
38317
38737
|
fontColor: fontColor,
|
|
@@ -38352,7 +38772,7 @@ var Module = function Module(_ref) {
|
|
|
38352
38772
|
}, children)));
|
|
38353
38773
|
};
|
|
38354
38774
|
|
|
38355
|
-
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$
|
|
38775
|
+
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$v, "default"));
|
|
38356
38776
|
|
|
38357
38777
|
var backgroundColor$7 = {
|
|
38358
38778
|
profile: "#3b414d",
|
|
@@ -38362,7 +38782,7 @@ var shadowColor = {
|
|
|
38362
38782
|
profile: "#292A33",
|
|
38363
38783
|
cms: "#292A33"
|
|
38364
38784
|
};
|
|
38365
|
-
var fallbackValues$
|
|
38785
|
+
var fallbackValues$w = {
|
|
38366
38786
|
backgroundColor: backgroundColor$7,
|
|
38367
38787
|
shadowColor: shadowColor
|
|
38368
38788
|
};
|
|
@@ -38403,7 +38823,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
38403
38823
|
}, menuContent));
|
|
38404
38824
|
};
|
|
38405
38825
|
|
|
38406
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
38826
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$w, "profile");
|
|
38407
38827
|
|
|
38408
38828
|
function _templateObject$z() {
|
|
38409
38829
|
var data = _taggedTemplateLiteral(["\n position: fixed;\n top: 72px;\n"]);
|
|
@@ -38465,7 +38885,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
|
|
|
38465
38885
|
}, menuContent));
|
|
38466
38886
|
};
|
|
38467
38887
|
|
|
38468
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
38888
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$w, "profile");
|
|
38469
38889
|
|
|
38470
38890
|
var IconsModule = function IconsModule(_ref) {
|
|
38471
38891
|
var icon = _ref.icon,
|
|
@@ -38519,7 +38939,7 @@ var activeColor$5 = "#0E506D";
|
|
|
38519
38939
|
var linkColor$3 = "#357fb8";
|
|
38520
38940
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
38521
38941
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
38522
|
-
var fallbackValues$
|
|
38942
|
+
var fallbackValues$x = {
|
|
38523
38943
|
color: color$a,
|
|
38524
38944
|
hoverColor: hoverColor$4,
|
|
38525
38945
|
activeColor: activeColor$5,
|
|
@@ -38602,7 +39022,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
38602
39022
|
}, "".concat(planType, " ").concat(nextAutopayDate)))));
|
|
38603
39023
|
};
|
|
38604
39024
|
|
|
38605
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
39025
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$x);
|
|
38606
39026
|
|
|
38607
39027
|
var AmountModule = function AmountModule(_ref) {
|
|
38608
39028
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -39170,7 +39590,7 @@ var labeledAmountTotal = {
|
|
|
39170
39590
|
"default": "h6",
|
|
39171
39591
|
small: "pL"
|
|
39172
39592
|
};
|
|
39173
|
-
var fallbackValues$
|
|
39593
|
+
var fallbackValues$y = {
|
|
39174
39594
|
backgroundColor: backgroundColor$8,
|
|
39175
39595
|
lineItem: lineItem,
|
|
39176
39596
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -39346,7 +39766,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
39346
39766
|
});
|
|
39347
39767
|
};
|
|
39348
39768
|
|
|
39349
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
39769
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$y, "default");
|
|
39350
39770
|
|
|
39351
39771
|
var linkColor$4 = {
|
|
39352
39772
|
"default": "#357fb8"
|
|
@@ -39363,7 +39783,7 @@ var fontWeight$7 = {
|
|
|
39363
39783
|
var modalLinkHoverFocus$1 = {
|
|
39364
39784
|
"default": "outline: none; text-decoration: underline;"
|
|
39365
39785
|
};
|
|
39366
|
-
var fallbackValues$
|
|
39786
|
+
var fallbackValues$z = {
|
|
39367
39787
|
linkColor: linkColor$4,
|
|
39368
39788
|
fontSize: fontSize$9,
|
|
39369
39789
|
lineHeight: lineHeight$5,
|
|
@@ -39422,7 +39842,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
39422
39842
|
}, link));
|
|
39423
39843
|
};
|
|
39424
39844
|
|
|
39425
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
39845
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$z, "default");
|
|
39426
39846
|
|
|
39427
39847
|
var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
39428
39848
|
var _routingNumberErrors, _accountNumberErrors;
|
|
@@ -39577,7 +39997,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
39577
39997
|
})));
|
|
39578
39998
|
};
|
|
39579
39999
|
|
|
39580
|
-
var formConfig$
|
|
40000
|
+
var formConfig$7 = {
|
|
39581
40001
|
name: {
|
|
39582
40002
|
validators: [required()]
|
|
39583
40003
|
},
|
|
@@ -39603,14 +40023,14 @@ var formConfig$6 = {
|
|
|
39603
40023
|
}
|
|
39604
40024
|
};
|
|
39605
40025
|
|
|
39606
|
-
var _createFormState$
|
|
39607
|
-
reducer$
|
|
39608
|
-
mapStateToProps$
|
|
39609
|
-
mapDispatchToProps$
|
|
40026
|
+
var _createFormState$7 = createFormState(formConfig$7),
|
|
40027
|
+
reducer$7 = _createFormState$7.reducer,
|
|
40028
|
+
mapStateToProps$8 = _createFormState$7.mapStateToProps,
|
|
40029
|
+
mapDispatchToProps$7 = _createFormState$7.mapDispatchToProps;
|
|
39610
40030
|
|
|
39611
|
-
PaymentFormACH.reducer = reducer$
|
|
39612
|
-
PaymentFormACH.mapStateToProps = mapStateToProps$
|
|
39613
|
-
PaymentFormACH.mapDispatchToProps = mapDispatchToProps$
|
|
40031
|
+
PaymentFormACH.reducer = reducer$7;
|
|
40032
|
+
PaymentFormACH.mapStateToProps = mapStateToProps$8;
|
|
40033
|
+
PaymentFormACH.mapDispatchToProps = mapDispatchToProps$7;
|
|
39614
40034
|
|
|
39615
40035
|
var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
39616
40036
|
var _creditCardNumberErro, _expirationDateErrors, _cvvErrors, _zipCodeErrors;
|
|
@@ -39738,7 +40158,7 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
39738
40158
|
})));
|
|
39739
40159
|
};
|
|
39740
40160
|
|
|
39741
|
-
var formConfig$
|
|
40161
|
+
var formConfig$8 = {
|
|
39742
40162
|
country: {
|
|
39743
40163
|
defaultValue: "US",
|
|
39744
40164
|
validators: [required()]
|
|
@@ -39764,14 +40184,14 @@ var formConfig$7 = {
|
|
|
39764
40184
|
}
|
|
39765
40185
|
};
|
|
39766
40186
|
|
|
39767
|
-
var _createFormState$
|
|
39768
|
-
reducer$
|
|
39769
|
-
mapStateToProps$
|
|
39770
|
-
mapDispatchToProps$
|
|
40187
|
+
var _createFormState$8 = createFormState(formConfig$8),
|
|
40188
|
+
reducer$8 = _createFormState$8.reducer,
|
|
40189
|
+
mapStateToProps$9 = _createFormState$8.mapStateToProps,
|
|
40190
|
+
mapDispatchToProps$8 = _createFormState$8.mapDispatchToProps;
|
|
39771
40191
|
|
|
39772
|
-
PaymentFormCard.reducer = reducer$
|
|
39773
|
-
PaymentFormCard.mapStateToProps = mapStateToProps$
|
|
39774
|
-
PaymentFormCard.mapDispatchToProps = mapDispatchToProps$
|
|
40192
|
+
PaymentFormCard.reducer = reducer$8;
|
|
40193
|
+
PaymentFormCard.mapStateToProps = mapStateToProps$9;
|
|
40194
|
+
PaymentFormCard.mapDispatchToProps = mapDispatchToProps$8;
|
|
39775
40195
|
|
|
39776
40196
|
var PhoneForm = function PhoneForm(_ref) {
|
|
39777
40197
|
var _phoneErrorMessage;
|
|
@@ -39820,28 +40240,28 @@ var PhoneForm = function PhoneForm(_ref) {
|
|
|
39820
40240
|
})));
|
|
39821
40241
|
};
|
|
39822
40242
|
|
|
39823
|
-
var formConfig$
|
|
40243
|
+
var formConfig$9 = {
|
|
39824
40244
|
phone: {
|
|
39825
40245
|
validators: [required(), hasLength(10, 10)],
|
|
39826
40246
|
constraints: [onlyIntegers(), hasLength(0, 10)]
|
|
39827
40247
|
}
|
|
39828
40248
|
};
|
|
39829
40249
|
|
|
39830
|
-
var _createFormState$
|
|
39831
|
-
reducer$
|
|
39832
|
-
mapStateToProps$
|
|
39833
|
-
mapDispatchToProps$
|
|
40250
|
+
var _createFormState$9 = createFormState(formConfig$9),
|
|
40251
|
+
reducer$9 = _createFormState$9.reducer,
|
|
40252
|
+
mapStateToProps$a = _createFormState$9.mapStateToProps,
|
|
40253
|
+
mapDispatchToProps$9 = _createFormState$9.mapDispatchToProps;
|
|
39834
40254
|
|
|
39835
|
-
PhoneForm.reducer = reducer$
|
|
39836
|
-
PhoneForm.mapStateToProps = mapStateToProps$
|
|
39837
|
-
PhoneForm.mapDispatchToProps = mapDispatchToProps$
|
|
40255
|
+
PhoneForm.reducer = reducer$9;
|
|
40256
|
+
PhoneForm.mapStateToProps = mapStateToProps$a;
|
|
40257
|
+
PhoneForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
39838
40258
|
|
|
39839
40259
|
var headingBackgroundColor$1 = "".concat(WHITE);
|
|
39840
40260
|
var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
39841
40261
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
39842
40262
|
var borderColor$3 = "".concat(GREY_CHATEAU);
|
|
39843
40263
|
var focusStyles = "outline: none;";
|
|
39844
|
-
var fallbackValues$
|
|
40264
|
+
var fallbackValues$A = {
|
|
39845
40265
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
39846
40266
|
headingDisabledColor: headingDisabledColor,
|
|
39847
40267
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -40064,7 +40484,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
40064
40484
|
})));
|
|
40065
40485
|
};
|
|
40066
40486
|
|
|
40067
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
40487
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$A);
|
|
40068
40488
|
|
|
40069
40489
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
40070
40490
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -40154,7 +40574,7 @@ var RegistrationForm = function RegistrationForm(_ref) {
|
|
|
40154
40574
|
})));
|
|
40155
40575
|
};
|
|
40156
40576
|
|
|
40157
|
-
var formConfig$
|
|
40577
|
+
var formConfig$a = {
|
|
40158
40578
|
firstName: {
|
|
40159
40579
|
validators: [required()]
|
|
40160
40580
|
},
|
|
@@ -40172,14 +40592,14 @@ var formConfig$9 = {
|
|
|
40172
40592
|
}
|
|
40173
40593
|
};
|
|
40174
40594
|
|
|
40175
|
-
var _createFormState$
|
|
40176
|
-
reducer$
|
|
40177
|
-
mapStateToProps$
|
|
40178
|
-
mapDispatchToProps$
|
|
40595
|
+
var _createFormState$a = createFormState(formConfig$a),
|
|
40596
|
+
reducer$a = _createFormState$a.reducer,
|
|
40597
|
+
mapStateToProps$b = _createFormState$a.mapStateToProps,
|
|
40598
|
+
mapDispatchToProps$a = _createFormState$a.mapDispatchToProps;
|
|
40179
40599
|
|
|
40180
|
-
RegistrationForm.reducer = reducer$
|
|
40181
|
-
RegistrationForm.mapStateToProps = mapStateToProps$
|
|
40182
|
-
RegistrationForm.mapDispatchToProps = mapDispatchToProps$
|
|
40600
|
+
RegistrationForm.reducer = reducer$a;
|
|
40601
|
+
RegistrationForm.mapStateToProps = mapStateToProps$b;
|
|
40602
|
+
RegistrationForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
40183
40603
|
|
|
40184
40604
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
40185
40605
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
@@ -40284,7 +40704,7 @@ var ResetPasswordForm = function ResetPasswordForm(_ref) {
|
|
|
40284
40704
|
})));
|
|
40285
40705
|
};
|
|
40286
40706
|
|
|
40287
|
-
var formConfig$
|
|
40707
|
+
var formConfig$b = {
|
|
40288
40708
|
password: {
|
|
40289
40709
|
validators: [required(), hasLength(8, 100), hasNumber(), hasLowercaseLetter(), hasUppercaseLetter(), hasSpecialCharacter()]
|
|
40290
40710
|
},
|
|
@@ -40293,14 +40713,14 @@ var formConfig$a = {
|
|
|
40293
40713
|
}
|
|
40294
40714
|
};
|
|
40295
40715
|
|
|
40296
|
-
var _createFormState$
|
|
40297
|
-
reducer$
|
|
40298
|
-
mapStateToProps$
|
|
40299
|
-
mapDispatchToProps$
|
|
40716
|
+
var _createFormState$b = createFormState(formConfig$b),
|
|
40717
|
+
reducer$b = _createFormState$b.reducer,
|
|
40718
|
+
mapStateToProps$c = _createFormState$b.mapStateToProps,
|
|
40719
|
+
mapDispatchToProps$b = _createFormState$b.mapDispatchToProps;
|
|
40300
40720
|
|
|
40301
|
-
ResetPasswordForm.reducer = reducer$
|
|
40302
|
-
ResetPasswordForm.mapStateToProps = mapStateToProps$
|
|
40303
|
-
ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$
|
|
40721
|
+
ResetPasswordForm.reducer = reducer$b;
|
|
40722
|
+
ResetPasswordForm.mapStateToProps = mapStateToProps$c;
|
|
40723
|
+
ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$b;
|
|
40304
40724
|
|
|
40305
40725
|
var ResetConfirmationForm$2 = function ResetConfirmationForm() {
|
|
40306
40726
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
@@ -40354,7 +40774,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
40354
40774
|
var activeTabBackground = "#FFFFFF";
|
|
40355
40775
|
var activeTabAccent = "#15749D";
|
|
40356
40776
|
var activeTabHover = "#B8D5E1";
|
|
40357
|
-
var fallbackValues$
|
|
40777
|
+
var fallbackValues$B = {
|
|
40358
40778
|
activeTabBackground: activeTabBackground,
|
|
40359
40779
|
activeTabAccent: activeTabAccent,
|
|
40360
40780
|
activeTabHover: activeTabHover
|
|
@@ -40431,12 +40851,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
40431
40851
|
}))));
|
|
40432
40852
|
};
|
|
40433
40853
|
|
|
40434
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
40854
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$B);
|
|
40435
40855
|
|
|
40436
40856
|
var activeTabBackground$1 = "#FFFFFF";
|
|
40437
40857
|
var activeTabAccent$1 = "#15749D";
|
|
40438
40858
|
var activeTabHover$1 = "#B8D5E1";
|
|
40439
|
-
var fallbackValues$
|
|
40859
|
+
var fallbackValues$C = {
|
|
40440
40860
|
activeTabBackground: activeTabBackground$1,
|
|
40441
40861
|
activeTabAccent: activeTabAccent$1,
|
|
40442
40862
|
activeTabHover: activeTabHover$1
|
|
@@ -40492,7 +40912,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
40492
40912
|
})));
|
|
40493
40913
|
};
|
|
40494
40914
|
|
|
40495
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
40915
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$C);
|
|
40496
40916
|
|
|
40497
40917
|
var backgroundColor$9 = {
|
|
40498
40918
|
"default": "#ffffff",
|
|
@@ -40502,7 +40922,7 @@ var linkColor$5 = {
|
|
|
40502
40922
|
"default": "#357fb8",
|
|
40503
40923
|
footer: "#ffffff"
|
|
40504
40924
|
};
|
|
40505
|
-
var border$
|
|
40925
|
+
var border$3 = {
|
|
40506
40926
|
"default": "#cdcdcd",
|
|
40507
40927
|
footer: "#cdcdcd"
|
|
40508
40928
|
};
|
|
@@ -40526,10 +40946,10 @@ var accessibilityColor = {
|
|
|
40526
40946
|
"default": "#3181E3",
|
|
40527
40947
|
footer: "#3181E3"
|
|
40528
40948
|
};
|
|
40529
|
-
var fallbackValues$
|
|
40949
|
+
var fallbackValues$D = {
|
|
40530
40950
|
backgroundColor: backgroundColor$9,
|
|
40531
40951
|
linkColor: linkColor$5,
|
|
40532
|
-
border: border$
|
|
40952
|
+
border: border$3,
|
|
40533
40953
|
fontSize: fontSize$a,
|
|
40534
40954
|
lineHeight: lineHeight$6,
|
|
40535
40955
|
fontWeight: fontWeight$8,
|
|
@@ -40588,7 +41008,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
40588
41008
|
}, link));
|
|
40589
41009
|
};
|
|
40590
41010
|
|
|
40591
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
41011
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$D, "default");
|
|
40592
41012
|
|
|
40593
41013
|
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
40594
41014
|
var onCheck = _ref.onCheck,
|
|
@@ -40663,7 +41083,7 @@ var fontColor$1 = WHITE;
|
|
|
40663
41083
|
var textAlign$1 = "left";
|
|
40664
41084
|
var headerBackgroundColor = BRIGHT_GREY;
|
|
40665
41085
|
var imageBackgroundColor = MATISSE_BLUE;
|
|
40666
|
-
var fallbackValues$
|
|
41086
|
+
var fallbackValues$E = {
|
|
40667
41087
|
fontWeight: fontWeight$9,
|
|
40668
41088
|
fontColor: fontColor$1,
|
|
40669
41089
|
textAlign: textAlign$1,
|
|
@@ -40716,7 +41136,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
40716
41136
|
})))));
|
|
40717
41137
|
};
|
|
40718
41138
|
|
|
40719
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
41139
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$E));
|
|
40720
41140
|
|
|
40721
41141
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
40722
41142
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -40764,7 +41184,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
40764
41184
|
};
|
|
40765
41185
|
|
|
40766
41186
|
var pageBackground = "#F6F6F9";
|
|
40767
|
-
var fallbackValues$
|
|
41187
|
+
var fallbackValues$F = {
|
|
40768
41188
|
pageBackground: pageBackground
|
|
40769
41189
|
};
|
|
40770
41190
|
|
|
@@ -40811,7 +41231,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
40811
41231
|
})));
|
|
40812
41232
|
};
|
|
40813
41233
|
|
|
40814
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
41234
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$F));
|
|
40815
41235
|
|
|
40816
41236
|
var CenterStack = function CenterStack(_ref) {
|
|
40817
41237
|
var header = _ref.header,
|
|
@@ -40853,7 +41273,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
40853
41273
|
})));
|
|
40854
41274
|
};
|
|
40855
41275
|
|
|
40856
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
41276
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$F));
|
|
40857
41277
|
|
|
40858
41278
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
40859
41279
|
var header = _ref.header,
|
|
@@ -40893,7 +41313,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
40893
41313
|
})));
|
|
40894
41314
|
};
|
|
40895
41315
|
|
|
40896
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
41316
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$F));
|
|
40897
41317
|
|
|
40898
41318
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
40899
41319
|
var header = _ref.header,
|
|
@@ -40947,7 +41367,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
40947
41367
|
})));
|
|
40948
41368
|
};
|
|
40949
41369
|
|
|
40950
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
41370
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$F));
|
|
40951
41371
|
|
|
40952
41372
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
40953
41373
|
var header = _ref.header,
|
|
@@ -41018,7 +41438,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
41018
41438
|
})));
|
|
41019
41439
|
};
|
|
41020
41440
|
|
|
41021
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
41441
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$F));
|
|
41022
41442
|
|
|
41023
41443
|
|
|
41024
41444
|
|
|
@@ -41105,6 +41525,7 @@ exports.IconAdd = IconAdd;
|
|
|
41105
41525
|
exports.IconQuitLarge = IconQuitLarge;
|
|
41106
41526
|
exports.Imposter = Imposter;
|
|
41107
41527
|
exports.InternalLink = InternalLink;
|
|
41528
|
+
exports.InternalUserInfoForm = InternalUserInfoForm;
|
|
41108
41529
|
exports.Jumbo = Jumbo$1;
|
|
41109
41530
|
exports.LabeledAmount = LabeledAmount$1;
|
|
41110
41531
|
exports.LineItem = LineItem$1;
|
|
@@ -41152,6 +41573,7 @@ exports.ResetPasswordForm = ResetPasswordForm;
|
|
|
41152
41573
|
exports.ResetPasswordSuccess = ResetPasswordSuccess;
|
|
41153
41574
|
exports.RoutingNumberImage = RoutingNumberImage;
|
|
41154
41575
|
exports.SearchIcon = SearchIcon;
|
|
41576
|
+
exports.SearchableSelect = SearchableSelect$1;
|
|
41155
41577
|
exports.SettingsIconSmall = SettingsIconSmall$1;
|
|
41156
41578
|
exports.ShoppingCartIcon = ShoppingCartIcon;
|
|
41157
41579
|
exports.Sidebar = Sidebar;
|