@thecb/components 8.4.10 → 8.4.11-beta.2
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 +71 -52
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +71 -52
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/checkbox/Checkbox.js +1 -1
- package/src/components/atoms/country-dropdown/CountryDropdown.js +4 -1
- package/src/components/atoms/dropdown/Dropdown.js +5 -3
- package/src/components/atoms/form-layouts/FormInput.js +1 -1
- package/src/components/atoms/form-select/FormSelect.js +24 -23
- package/src/components/molecules/address-form/AddressForm.js +15 -6
package/dist/index.cjs.js
CHANGED
|
@@ -22150,7 +22150,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
22150
22150
|
onChange: onChange,
|
|
22151
22151
|
tabIndex: "-1",
|
|
22152
22152
|
"aria-invalid": error,
|
|
22153
|
-
"aria-
|
|
22153
|
+
"aria-describedBy": error ? "".concat(name, "-error-message") : ""
|
|
22154
22154
|
}), /*#__PURE__*/React__default.createElement(StyledCheckbox, {
|
|
22155
22155
|
error: error,
|
|
22156
22156
|
disabled: disabled,
|
|
@@ -23992,7 +23992,10 @@ var Dropdown = function Dropdown(_ref8) {
|
|
|
23992
23992
|
"aria-labelledby": ariaLabelledby,
|
|
23993
23993
|
"aria-describedby": ariaDescribedby,
|
|
23994
23994
|
"aria-expanded": isOpen,
|
|
23995
|
-
|
|
23995
|
+
"aria-live": "assertive",
|
|
23996
|
+
role: "combobox",
|
|
23997
|
+
disabled: disabled,
|
|
23998
|
+
autoComplete: autocompleteValue,
|
|
23996
23999
|
background: isOpen ? themeValues.hoverColor : WHITE,
|
|
23997
24000
|
borderRadius: "2px",
|
|
23998
24001
|
borderSize: "1px",
|
|
@@ -24012,7 +24015,6 @@ var Dropdown = function Dropdown(_ref8) {
|
|
|
24012
24015
|
},
|
|
24013
24016
|
padding: "12px",
|
|
24014
24017
|
placeholder: getSelection(),
|
|
24015
|
-
role: "combobox",
|
|
24016
24018
|
themeValues: themeValues,
|
|
24017
24019
|
title: hasTitles ? getSelection() : null,
|
|
24018
24020
|
type: "text",
|
|
@@ -24043,7 +24045,7 @@ var Dropdown = function Dropdown(_ref8) {
|
|
|
24043
24045
|
id: focusedRef === optionRefs.current[i] ? "focused_option" : choice.value,
|
|
24044
24046
|
key: choice.value,
|
|
24045
24047
|
ref: optionRefs.current[i],
|
|
24046
|
-
tabIndex:
|
|
24048
|
+
tabIndex: 0,
|
|
24047
24049
|
onClick: function onClick(e) {
|
|
24048
24050
|
return handleItemSelection(e, choice, i);
|
|
24049
24051
|
},
|
|
@@ -24155,6 +24157,8 @@ var fallbackValues$g = {
|
|
|
24155
24157
|
hoverFocusStyles: hoverFocusStyles
|
|
24156
24158
|
};
|
|
24157
24159
|
|
|
24160
|
+
var _excluded$o = ["fieldActions", "labelTextWhenNoError", "errorMessages", "options", "field", "showErrors", "onChange", "dropdownMaxHeight", "disabledValues", "disabled", "themeValues", "hasTitles", "autocompleteValue", "smoothScroll"];
|
|
24161
|
+
|
|
24158
24162
|
var FormSelect = function FormSelect(_ref) {
|
|
24159
24163
|
var fieldActions = _ref.fieldActions,
|
|
24160
24164
|
labelTextWhenNoError = _ref.labelTextWhenNoError,
|
|
@@ -24171,7 +24175,8 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
24171
24175
|
hasTitles = _ref$hasTitles === void 0 ? false : _ref$hasTitles,
|
|
24172
24176
|
autocompleteValue = _ref.autocompleteValue,
|
|
24173
24177
|
_ref$smoothScroll = _ref.smoothScroll,
|
|
24174
|
-
smoothScroll = _ref$smoothScroll === void 0 ? true : _ref$smoothScroll
|
|
24178
|
+
smoothScroll = _ref$smoothScroll === void 0 ? true : _ref$smoothScroll,
|
|
24179
|
+
rest = _objectWithoutProperties(_ref, _excluded$o);
|
|
24175
24180
|
|
|
24176
24181
|
var _useState = React.useState(false),
|
|
24177
24182
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -24192,10 +24197,10 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
24192
24197
|
document.removeEventListener("mousedown", handleClickAway);
|
|
24193
24198
|
};
|
|
24194
24199
|
});
|
|
24195
|
-
return /*#__PURE__*/React__default.createElement(SelectContainer, {
|
|
24200
|
+
return /*#__PURE__*/React__default.createElement(SelectContainer, _extends({
|
|
24196
24201
|
ref: dropdownRef,
|
|
24197
24202
|
disabled: disabled
|
|
24198
|
-
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
24203
|
+
}, rest), /*#__PURE__*/React__default.createElement(Box, {
|
|
24199
24204
|
padding: "0",
|
|
24200
24205
|
minWidth: "100%"
|
|
24201
24206
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
@@ -24209,8 +24214,8 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
24209
24214
|
extraStyles: "word-break: break-word;\n font-family: Public Sans;\n &::first-letter {\n text-transform: uppercase;\n }",
|
|
24210
24215
|
id: createIdFromString(labelTextWhenNoError)
|
|
24211
24216
|
}, labelTextWhenNoError))), /*#__PURE__*/React__default.createElement(Dropdown$1, {
|
|
24212
|
-
|
|
24213
|
-
|
|
24217
|
+
"aria-labelledBy": createIdFromString(labelTextWhenNoError),
|
|
24218
|
+
"aria-describedBy": createIdFromString(labelTextWhenNoError, "error message"),
|
|
24214
24219
|
maxHeight: dropdownMaxHeight,
|
|
24215
24220
|
hasTitles: hasTitles,
|
|
24216
24221
|
placeholder: options[0] ? options[0].text : "",
|
|
@@ -24227,22 +24232,22 @@ var FormSelect = function FormSelect(_ref) {
|
|
|
24227
24232
|
onClick: function onClick() {
|
|
24228
24233
|
return setOpen(!open);
|
|
24229
24234
|
},
|
|
24230
|
-
disabled: disabled,
|
|
24235
|
+
"aria-disabled": disabled,
|
|
24231
24236
|
autocompleteValue: autocompleteValue,
|
|
24232
|
-
smoothScroll: smoothScroll
|
|
24237
|
+
smoothScroll: smoothScroll,
|
|
24238
|
+
required: options.required
|
|
24233
24239
|
}), /*#__PURE__*/React__default.createElement(Stack, {
|
|
24234
24240
|
direction: "row",
|
|
24235
24241
|
justify: "space-between",
|
|
24236
|
-
"aria-live": "
|
|
24237
|
-
},
|
|
24242
|
+
"aria-live": "assertive"
|
|
24243
|
+
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
24238
24244
|
color: ERROR_COLOR,
|
|
24239
24245
|
variant: "pXS",
|
|
24240
24246
|
weight: themeValues.fontWeight,
|
|
24241
|
-
extraStyles: "word-break: break-word;\n
|
|
24242
|
-
id: createIdFromString(labelTextWhenNoError, "error message")
|
|
24243
|
-
|
|
24244
|
-
|
|
24245
|
-
})));
|
|
24247
|
+
extraStyles: "word-break: break-word;\n font-family: Public Sans;\n &::first-letter {\n text-transform: uppercase;\n }",
|
|
24248
|
+
id: createIdFromString(labelTextWhenNoError, "error message"),
|
|
24249
|
+
"aria-live": "assertive"
|
|
24250
|
+
}, field.hasErrors && field.dirty || field.hasErrors && showErrors ? errorMessages[field.errors[0]] : "")));
|
|
24246
24251
|
};
|
|
24247
24252
|
|
|
24248
24253
|
var FormSelect$1 = themeComponent(FormSelect, "FormSelect", fallbackValues$g, "default");
|
|
@@ -24990,14 +24995,18 @@ var options = [{
|
|
|
24990
24995
|
value: "ZW"
|
|
24991
24996
|
}];
|
|
24992
24997
|
|
|
24998
|
+
var _excluded$p = ["labelTextWhenNoError", "errorMessages", "field", "fieldActions", "showErrors", "onChange"];
|
|
24999
|
+
|
|
24993
25000
|
var CountryDropdown = function CountryDropdown(_ref) {
|
|
24994
25001
|
var labelTextWhenNoError = _ref.labelTextWhenNoError,
|
|
24995
25002
|
errorMessages = _ref.errorMessages,
|
|
24996
25003
|
field = _ref.field,
|
|
24997
25004
|
fieldActions = _ref.fieldActions,
|
|
24998
25005
|
showErrors = _ref.showErrors,
|
|
24999
|
-
onChange = _ref.onChange
|
|
25000
|
-
|
|
25006
|
+
onChange = _ref.onChange,
|
|
25007
|
+
rest = _objectWithoutProperties(_ref, _excluded$p);
|
|
25008
|
+
|
|
25009
|
+
return /*#__PURE__*/React__default.createElement(FormSelect$1, _extends({
|
|
25001
25010
|
options: options,
|
|
25002
25011
|
field: field,
|
|
25003
25012
|
fieldActions: fieldActions,
|
|
@@ -25005,8 +25014,9 @@ var CountryDropdown = function CountryDropdown(_ref) {
|
|
|
25005
25014
|
errorMessages: errorMessages,
|
|
25006
25015
|
showErrors: showErrors,
|
|
25007
25016
|
onChange: onChange,
|
|
25008
|
-
autocompleteValue: "country-name"
|
|
25009
|
-
|
|
25017
|
+
autocompleteValue: "country-name",
|
|
25018
|
+
autoComplete: "country-name"
|
|
25019
|
+
}, rest));
|
|
25010
25020
|
};
|
|
25011
25021
|
|
|
25012
25022
|
var DetailText = styled__default.p.withConfig({
|
|
@@ -25072,7 +25082,7 @@ var mobileFallbackValues$1 = {
|
|
|
25072
25082
|
};
|
|
25073
25083
|
var MOBILE_BREAKPOINT$1 = 768;
|
|
25074
25084
|
|
|
25075
|
-
var _excluded$
|
|
25085
|
+
var _excluded$q = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
25076
25086
|
/*
|
|
25077
25087
|
New responsive text component for Detail elements
|
|
25078
25088
|
(Block level text elements which are smaller than "Title" elements)
|
|
@@ -25122,7 +25132,7 @@ var Detail = function Detail(_ref) {
|
|
|
25122
25132
|
as = _ref$as === void 0 ? "p" : _ref$as,
|
|
25123
25133
|
dataQa = _ref.dataQa,
|
|
25124
25134
|
children = _ref.children,
|
|
25125
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
25135
|
+
rest = _objectWithoutProperties(_ref, _excluded$q);
|
|
25126
25136
|
|
|
25127
25137
|
return /*#__PURE__*/React__default.createElement(DetailText, _extends({
|
|
25128
25138
|
variant: variant,
|
|
@@ -25846,7 +25856,7 @@ var fallbackValues$k = {
|
|
|
25846
25856
|
formFooterPanel: formFooterPanel
|
|
25847
25857
|
};
|
|
25848
25858
|
|
|
25849
|
-
var _excluded$
|
|
25859
|
+
var _excluded$r = ["showErrors", "themeValues"],
|
|
25850
25860
|
_excluded2 = ["type", "labelTextWhenNoError", "errorMessages", "isNum", "isEmail", "helperModal", "field", "fieldActions", "showErrors", "formatter", "decorator", "themeValues", "background", "customHeight", "autocomplete", "extraStyles", "removeFromValue"];
|
|
25851
25861
|
var InputField = styled__default.input.withConfig({
|
|
25852
25862
|
displayName: "FormInput__InputField",
|
|
@@ -25880,7 +25890,7 @@ var InputField = styled__default.input.withConfig({
|
|
|
25880
25890
|
var FormattedInputField = styled__default(function (_ref8) {
|
|
25881
25891
|
var showErrors = _ref8.showErrors,
|
|
25882
25892
|
themeValues = _ref8.themeValues,
|
|
25883
|
-
props = _objectWithoutProperties(_ref8, _excluded$
|
|
25893
|
+
props = _objectWithoutProperties(_ref8, _excluded$r);
|
|
25884
25894
|
|
|
25885
25895
|
return /*#__PURE__*/React__default.createElement(FormattedInput, props);
|
|
25886
25896
|
}).withConfig({
|
|
@@ -26040,7 +26050,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
26040
26050
|
}, props))), /*#__PURE__*/React__default.createElement(Stack, {
|
|
26041
26051
|
direction: "row",
|
|
26042
26052
|
justify: "space-between",
|
|
26043
|
-
|
|
26053
|
+
role: "alert"
|
|
26044
26054
|
}, field.hasErrors && field.dirty || field.hasErrors && showErrors ? /*#__PURE__*/React__default.createElement(Text$1, {
|
|
26045
26055
|
color: ERROR_COLOR,
|
|
26046
26056
|
variant: "pXS",
|
|
@@ -26056,7 +26066,7 @@ var FormInput = function FormInput(_ref15) {
|
|
|
26056
26066
|
|
|
26057
26067
|
var FormInput$1 = themeComponent(FormInput, "FormInput", fallbackValues$k, "default");
|
|
26058
26068
|
|
|
26059
|
-
var _excluded$
|
|
26069
|
+
var _excluded$s = ["breakpoint", "childGap", "largeChild", "largeChildSize", "children"];
|
|
26060
26070
|
|
|
26061
26071
|
var FormInputRow = function FormInputRow(_ref) {
|
|
26062
26072
|
var _ref$breakpoint = _ref.breakpoint,
|
|
@@ -26066,7 +26076,7 @@ var FormInputRow = function FormInputRow(_ref) {
|
|
|
26066
26076
|
largeChild = _ref.largeChild,
|
|
26067
26077
|
largeChildSize = _ref.largeChildSize,
|
|
26068
26078
|
children = _ref.children,
|
|
26069
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26079
|
+
rest = _objectWithoutProperties(_ref, _excluded$s);
|
|
26070
26080
|
|
|
26071
26081
|
return /*#__PURE__*/React__default.createElement(Box, _extends({
|
|
26072
26082
|
padding: "0"
|
|
@@ -26078,14 +26088,14 @@ var FormInputRow = function FormInputRow(_ref) {
|
|
|
26078
26088
|
}, children));
|
|
26079
26089
|
};
|
|
26080
26090
|
|
|
26081
|
-
var _excluded$
|
|
26091
|
+
var _excluded$t = ["childGap", "bottomItem", "children"];
|
|
26082
26092
|
|
|
26083
26093
|
var FormInputColumn = function FormInputColumn(_ref) {
|
|
26084
26094
|
var _ref$childGap = _ref.childGap,
|
|
26085
26095
|
childGap = _ref$childGap === void 0 ? "0.5rem" : _ref$childGap,
|
|
26086
26096
|
bottomItem = _ref.bottomItem,
|
|
26087
26097
|
children = _ref.children,
|
|
26088
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26098
|
+
rest = _objectWithoutProperties(_ref, _excluded$t);
|
|
26089
26099
|
|
|
26090
26100
|
return /*#__PURE__*/React__default.createElement(Stack, _extends({
|
|
26091
26101
|
childGap: childGap,
|
|
@@ -26093,12 +26103,12 @@ var FormInputColumn = function FormInputColumn(_ref) {
|
|
|
26093
26103
|
}, rest), children);
|
|
26094
26104
|
};
|
|
26095
26105
|
|
|
26096
|
-
var _excluded$
|
|
26106
|
+
var _excluded$u = ["themeValues", "children"];
|
|
26097
26107
|
|
|
26098
26108
|
var FormContainer = function FormContainer(_ref) {
|
|
26099
26109
|
var themeValues = _ref.themeValues,
|
|
26100
26110
|
children = _ref.children,
|
|
26101
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26111
|
+
rest = _objectWithoutProperties(_ref, _excluded$u);
|
|
26102
26112
|
|
|
26103
26113
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
26104
26114
|
isMobile = _useContext.isMobile;
|
|
@@ -26363,7 +26373,7 @@ var fallbackValues$o = {
|
|
|
26363
26373
|
fontSize: fontSize$8
|
|
26364
26374
|
};
|
|
26365
26375
|
|
|
26366
|
-
var _excluded$
|
|
26376
|
+
var _excluded$v = ["themeValues", "weight", "color", "margin", "textAlign", "extraStyles", "className", "variant", "as", "dataQa", "children"];
|
|
26367
26377
|
|
|
26368
26378
|
var Heading = function Heading(_ref) {
|
|
26369
26379
|
var themeValues = _ref.themeValues,
|
|
@@ -26383,7 +26393,7 @@ var Heading = function Heading(_ref) {
|
|
|
26383
26393
|
as = _ref$as === void 0 ? variant : _ref$as,
|
|
26384
26394
|
dataQa = _ref.dataQa,
|
|
26385
26395
|
children = _ref.children,
|
|
26386
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26396
|
+
rest = _objectWithoutProperties(_ref, _excluded$v);
|
|
26387
26397
|
|
|
26388
26398
|
return /*#__PURE__*/React__default.createElement(HeadingText, _extends({
|
|
26389
26399
|
variant: variant,
|
|
@@ -26674,7 +26684,7 @@ var Loading = function Loading() {
|
|
|
26674
26684
|
})))));
|
|
26675
26685
|
};
|
|
26676
26686
|
|
|
26677
|
-
var _excluded$
|
|
26687
|
+
var _excluded$w = ["leftContent", "rightContent", "footerMinHeight", "backgroundColor", "largeSide", "largeSideSize", "footerPadding", "isMobile", "footerWidth"];
|
|
26678
26688
|
|
|
26679
26689
|
var NavFooter = function NavFooter(_ref) {
|
|
26680
26690
|
var leftContent = _ref.leftContent,
|
|
@@ -26690,7 +26700,7 @@ var NavFooter = function NavFooter(_ref) {
|
|
|
26690
26700
|
footerPadding = _ref$footerPadding === void 0 ? "1.5rem 1rem" : _ref$footerPadding,
|
|
26691
26701
|
isMobile = _ref.isMobile,
|
|
26692
26702
|
footerWidth = _ref.footerWidth,
|
|
26693
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26703
|
+
rest = _objectWithoutProperties(_ref, _excluded$w);
|
|
26694
26704
|
|
|
26695
26705
|
return /*#__PURE__*/React__default.createElement(Box, _extends({
|
|
26696
26706
|
padding: footerPadding,
|
|
@@ -26722,7 +26732,7 @@ var NavFooter = function NavFooter(_ref) {
|
|
|
26722
26732
|
}, rightContent)))))));
|
|
26723
26733
|
};
|
|
26724
26734
|
|
|
26725
|
-
var _excluded$
|
|
26735
|
+
var _excluded$x = ["leftContent", "rightContent", "headerHeight", "isMobile", "backgroundColor", "headerWidth"];
|
|
26726
26736
|
|
|
26727
26737
|
var NavHeader = function NavHeader(_ref) {
|
|
26728
26738
|
var leftContent = _ref.leftContent,
|
|
@@ -26732,7 +26742,7 @@ var NavHeader = function NavHeader(_ref) {
|
|
|
26732
26742
|
isMobile = _ref.isMobile,
|
|
26733
26743
|
backgroundColor = _ref.backgroundColor,
|
|
26734
26744
|
headerWidth = _ref.headerWidth,
|
|
26735
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
26745
|
+
rest = _objectWithoutProperties(_ref, _excluded$x);
|
|
26736
26746
|
|
|
26737
26747
|
return /*#__PURE__*/React__default.createElement(Box, _extends({
|
|
26738
26748
|
padding: "0 16px 4px",
|
|
@@ -38507,7 +38517,7 @@ var TableRowWrapper = styled__default.tr.withConfig({
|
|
|
38507
38517
|
return extraStyles;
|
|
38508
38518
|
});
|
|
38509
38519
|
|
|
38510
|
-
var _excluded$
|
|
38520
|
+
var _excluded$y = ["children", "extraStyles", "hoverCursor", "hoverEffect", "onClick", "themeValues"];
|
|
38511
38521
|
|
|
38512
38522
|
var TableRow = function TableRow(_ref) {
|
|
38513
38523
|
var children = _ref.children,
|
|
@@ -38517,7 +38527,7 @@ var TableRow = function TableRow(_ref) {
|
|
|
38517
38527
|
hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
|
|
38518
38528
|
onClick = _ref.onClick,
|
|
38519
38529
|
themeValues = _ref.themeValues,
|
|
38520
|
-
props = _objectWithoutProperties(_ref, _excluded$
|
|
38530
|
+
props = _objectWithoutProperties(_ref, _excluded$y);
|
|
38521
38531
|
|
|
38522
38532
|
return /*#__PURE__*/React__default.createElement(TableRowWrapper, _extends({
|
|
38523
38533
|
onClick: onClick,
|
|
@@ -40371,17 +40381,20 @@ var AddressForm = function AddressForm(_ref) {
|
|
|
40371
40381
|
actions.fields.zip.set("");
|
|
40372
40382
|
}
|
|
40373
40383
|
},
|
|
40374
|
-
showErrors: showErrors
|
|
40384
|
+
showErrors: showErrors,
|
|
40385
|
+
"aria-label": "country"
|
|
40375
40386
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
40376
40387
|
labelTextWhenNoError: "Address",
|
|
40377
40388
|
errorMessages: street1ErrorMessages,
|
|
40389
|
+
required: true,
|
|
40378
40390
|
field: fields.street1,
|
|
40379
40391
|
fieldActions: actions.fields.street1,
|
|
40380
40392
|
showErrors: showErrors,
|
|
40381
40393
|
onKeyDown: function onKeyDown(e) {
|
|
40382
40394
|
return e.key === "Enter" && handleSubmit(e);
|
|
40383
40395
|
},
|
|
40384
|
-
|
|
40396
|
+
autoComplete: "address-line1",
|
|
40397
|
+
"aria-label": "address line 1"
|
|
40385
40398
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
40386
40399
|
labelTextWhenNoError: "Apt, Suite, Unit, Floor, etc. (Optional)",
|
|
40387
40400
|
field: fields.street2,
|
|
@@ -40390,9 +40403,11 @@ var AddressForm = function AddressForm(_ref) {
|
|
|
40390
40403
|
onKeyDown: function onKeyDown(e) {
|
|
40391
40404
|
return e.key === "Enter" && handleSubmit(e);
|
|
40392
40405
|
},
|
|
40393
|
-
|
|
40406
|
+
autoComplete: "address-line2",
|
|
40407
|
+
"aria-label": "address line 2"
|
|
40394
40408
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
40395
40409
|
labelTextWhenNoError: "City",
|
|
40410
|
+
required: true,
|
|
40396
40411
|
errorMessages: cityErrorMessages,
|
|
40397
40412
|
field: fields.city,
|
|
40398
40413
|
fieldActions: actions.fields.city,
|
|
@@ -40400,7 +40415,8 @@ var AddressForm = function AddressForm(_ref) {
|
|
|
40400
40415
|
onKeyDown: function onKeyDown(e) {
|
|
40401
40416
|
return e.key === "Enter" && handleSubmit(e);
|
|
40402
40417
|
},
|
|
40403
|
-
|
|
40418
|
+
autoComplete: "locality",
|
|
40419
|
+
"aria-label": "city"
|
|
40404
40420
|
}), /*#__PURE__*/React__default.createElement(FormStateDropdown, {
|
|
40405
40421
|
labelTextWhenNoError: isUS ? "State" : "State or Province",
|
|
40406
40422
|
errorMessages: stateProvinceErrorMessages,
|
|
@@ -40411,7 +40427,9 @@ var AddressForm = function AddressForm(_ref) {
|
|
|
40411
40427
|
onKeyDown: function onKeyDown(e) {
|
|
40412
40428
|
return e.key === "Enter" && handleSubmit(e);
|
|
40413
40429
|
},
|
|
40414
|
-
|
|
40430
|
+
autoComplete: "administrative-area",
|
|
40431
|
+
"aria-label": isUS ? "state" : "state or province",
|
|
40432
|
+
required: true
|
|
40415
40433
|
}), /*#__PURE__*/React__default.createElement(FormInput$1, {
|
|
40416
40434
|
isNum: isUS,
|
|
40417
40435
|
formatter: isUS ? zipFormat : null,
|
|
@@ -40423,10 +40441,11 @@ var AddressForm = function AddressForm(_ref) {
|
|
|
40423
40441
|
onKeyDown: function onKeyDown(e) {
|
|
40424
40442
|
return e.key === "Enter" && handleSubmit(e);
|
|
40425
40443
|
},
|
|
40426
|
-
|
|
40444
|
+
"aria-label": "zip code",
|
|
40445
|
+
autoComplete: "postal-code"
|
|
40427
40446
|
}), showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
40428
40447
|
name: "address checkbox",
|
|
40429
|
-
title: "Save address to
|
|
40448
|
+
title: "Save address to Wallet",
|
|
40430
40449
|
checked: walletCheckboxMarked,
|
|
40431
40450
|
onChange: saveToWallet
|
|
40432
40451
|
})));
|
|
@@ -48142,7 +48161,7 @@ var fallbackValues$N = {
|
|
|
48142
48161
|
labeledAmountTotal: labeledAmountTotal
|
|
48143
48162
|
};
|
|
48144
48163
|
|
|
48145
|
-
var _excluded$
|
|
48164
|
+
var _excluded$z = ["amount"],
|
|
48146
48165
|
_excluded2$1 = ["amount"];
|
|
48147
48166
|
|
|
48148
48167
|
var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
@@ -48352,7 +48371,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48352
48371
|
return fee.amount > 0;
|
|
48353
48372
|
}).map(function (_ref5) {
|
|
48354
48373
|
var amount = _ref5.amount,
|
|
48355
|
-
rest = _objectWithoutProperties(_ref5, _excluded$
|
|
48374
|
+
rest = _objectWithoutProperties(_ref5, _excluded$z);
|
|
48356
48375
|
|
|
48357
48376
|
return _objectSpread2(_objectSpread2({}, rest), {}, {
|
|
48358
48377
|
amount: displayCurrency(amount)
|
|
@@ -48786,12 +48805,12 @@ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
|
48786
48805
|
}, errorMessage)))));
|
|
48787
48806
|
};
|
|
48788
48807
|
|
|
48789
|
-
var _excluded$
|
|
48808
|
+
var _excluded$A = ["version"];
|
|
48790
48809
|
|
|
48791
48810
|
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
48792
48811
|
var _ref$version = _ref.version,
|
|
48793
48812
|
version = _ref$version === void 0 ? "v1" : _ref$version,
|
|
48794
|
-
rest = _objectWithoutProperties(_ref, _excluded$
|
|
48813
|
+
rest = _objectWithoutProperties(_ref, _excluded$A);
|
|
48795
48814
|
|
|
48796
48815
|
var TermsAndConditionsControl = version === "v1" ? TermsAndConditionsControlV1 : TermsAndConditionsControlV2;
|
|
48797
48816
|
return /*#__PURE__*/React__default.createElement(TermsAndConditionsControl, rest);
|