@thecb/components 9.2.10-beta.9 → 9.2.11-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +40 -85
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +40 -85
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/checkbox/Checkbox.js +9 -5
- package/src/components/atoms/checkbox/Checkbox.stories.js +1 -0
- package/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.js +0 -3
- package/src/components/molecules/modal/Modal.js +1 -16
- package/src/components/molecules/payment-form-ach/PaymentFormACH.js +0 -1
- package/src/components/molecules/payment-form-card/PaymentFormCard.js +0 -1
- package/src/components/molecules/terms-and-conditions/TermsAndConditions.stories.js +5 -21
- package/src/components/molecules/terms-and-conditions/TermsAndConditionsControlV1.js +2 -20
- package/src/components/molecules/terms-and-conditions/TermsAndConditionsControlV2.js +15 -32
- package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +1 -5
- package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.stories.js +3 -8
- package/dist/src/apps/checkout/pages/payment/sub-pages/payment-amount/PaymentAmount_old.js +0 -49322
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/icons/.DS_Store +0 -0
package/dist/index.cjs.js
CHANGED
|
@@ -22145,6 +22145,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
22145
22145
|
checkboxMargin = _ref4$checkboxMargin === void 0 ? "0 16px 0 0" : _ref4$checkboxMargin,
|
|
22146
22146
|
extraStyles = _ref4.extraStyles,
|
|
22147
22147
|
textExtraStyles = _ref4.textExtraStyles,
|
|
22148
|
+
labelledById = _ref4.labelledById,
|
|
22148
22149
|
_ref4$dataQa = _ref4.dataQa,
|
|
22149
22150
|
dataQa = _ref4$dataQa === void 0 ? null : _ref4$dataQa;
|
|
22150
22151
|
|
|
@@ -22159,6 +22160,9 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
22159
22160
|
}
|
|
22160
22161
|
};
|
|
22161
22162
|
|
|
22163
|
+
var titleId = title ? "checkboxlabel-".concat(name) : undefined;
|
|
22164
|
+
var ariaLabelledById = labelledById !== null && labelledById !== void 0 ? labelledById : titleId;
|
|
22165
|
+
var ariaLabel = ariaLabelledById ? undefined : name;
|
|
22162
22166
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
22163
22167
|
padding: "0",
|
|
22164
22168
|
tabIndex: "0",
|
|
@@ -22175,14 +22179,15 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
22175
22179
|
background: themeValues.backgroundColor,
|
|
22176
22180
|
extraStyles: "outline: none; ".concat(extraStyles, "; margin: ").concat(checkboxMargin, ";")
|
|
22177
22181
|
}, /*#__PURE__*/React__default.createElement(CheckboxLabelContainer, {
|
|
22178
|
-
"data-qa": dataQa
|
|
22179
|
-
id: "".concat(id, "_label_container")
|
|
22182
|
+
"data-qa": dataQa
|
|
22180
22183
|
}, /*#__PURE__*/React__default.createElement(CheckboxContainer, {
|
|
22181
22184
|
"data-qa": "Checkbox"
|
|
22182
22185
|
}, /*#__PURE__*/React__default.createElement(HiddenCheckbox, {
|
|
22183
22186
|
id: "checkbox-".concat(name),
|
|
22184
22187
|
disabled: disabled,
|
|
22185
22188
|
name: name,
|
|
22189
|
+
"aria-label": ariaLabel,
|
|
22190
|
+
"aria-labelledby": ariaLabelledById,
|
|
22186
22191
|
checked: checked,
|
|
22187
22192
|
onChange: onChange,
|
|
22188
22193
|
tabIndex: "-1",
|
|
@@ -22200,8 +22205,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
22200
22205
|
errorStyles: themeValues.errorStyles,
|
|
22201
22206
|
disabledStyles: themeValues.disabledStyles,
|
|
22202
22207
|
disabledCheckedStyles: themeValues.disabledCheckedStyles,
|
|
22203
|
-
focusedStyles: themeValues.focusedStyles
|
|
22204
|
-
"aria-labelledby": title ? "".concat(name, "_title_id") : "".concat(id, "_label_container")
|
|
22208
|
+
focusedStyles: themeValues.focusedStyles
|
|
22205
22209
|
}, /*#__PURE__*/React__default.createElement(CheckboxIcon, {
|
|
22206
22210
|
viewBox: "0 0 24 24",
|
|
22207
22211
|
disabled: disabled,
|
|
@@ -22210,10 +22214,10 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
22210
22214
|
}, /*#__PURE__*/React__default.createElement("polyline", {
|
|
22211
22215
|
points: "20 6 9 17 4 12"
|
|
22212
22216
|
})))), title && /*#__PURE__*/React__default.createElement(Text$1, {
|
|
22217
|
+
id: titleId,
|
|
22213
22218
|
variant: "p",
|
|
22214
22219
|
weight: themeValues.textFontWeight,
|
|
22215
22220
|
color: themeValues.textColor,
|
|
22216
|
-
id: "".concat(name, "_title_id"),
|
|
22217
22221
|
extraStyles: textExtraStyles ? "".concat(textExtraStyles, " ").concat(disabled && "color: #6e727e; background-color: #f7f7f7;", " ") : "margin-left: 1rem ".concat(disabled && "color: #6e727e; background-color: #f7f7f7;")
|
|
22218
22222
|
}, title)));
|
|
22219
22223
|
};
|
|
@@ -22717,12 +22721,12 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
|
|
|
22717
22721
|
return hasOwnProperty(toObject(it), key);
|
|
22718
22722
|
};
|
|
22719
22723
|
|
|
22720
|
-
var id
|
|
22724
|
+
var id = 0;
|
|
22721
22725
|
var postfix = Math.random();
|
|
22722
22726
|
var toString$3 = functionUncurryThis(1.0.toString);
|
|
22723
22727
|
|
|
22724
22728
|
var uid = function (key) {
|
|
22725
|
-
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id
|
|
22729
|
+
return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$3(++id + postfix, 36);
|
|
22726
22730
|
};
|
|
22727
22731
|
|
|
22728
22732
|
var WellKnownSymbolsStore = shared('wks');
|
|
@@ -45767,9 +45771,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
45767
45771
|
buttonExtraStyles = _ref.buttonExtraStyles,
|
|
45768
45772
|
children = _ref.children,
|
|
45769
45773
|
_ref$dataQa = _ref.dataQa,
|
|
45770
|
-
dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa
|
|
45771
|
-
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
45772
|
-
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele;
|
|
45774
|
+
dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa;
|
|
45773
45775
|
|
|
45774
45776
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
45775
45777
|
isMobile = _useContext.isMobile;
|
|
@@ -45796,11 +45798,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
45796
45798
|
width: customWidth || "615px",
|
|
45797
45799
|
overflow: "auto"
|
|
45798
45800
|
},
|
|
45799
|
-
underlayClickExits: underlayClickExits
|
|
45800
|
-
"aria-modal": true,
|
|
45801
|
-
initialFocus: initialFocusSelector,
|
|
45802
|
-
focusDialog: !initialFocusSelector // Focus the dialogue box itself if no selector for initial focus was provided
|
|
45803
|
-
|
|
45801
|
+
underlayClickExits: underlayClickExits
|
|
45804
45802
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
45805
45803
|
padding: "0",
|
|
45806
45804
|
borderRadius: "2px",
|
|
@@ -45847,9 +45845,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
45847
45845
|
text: cancelButtonText,
|
|
45848
45846
|
dataQa: cancelButtonText,
|
|
45849
45847
|
extraStyles: buttonExtraStyles,
|
|
45850
|
-
className: "modal-cancel-button"
|
|
45851
|
-
role: "button",
|
|
45852
|
-
name: cancelButtonText
|
|
45848
|
+
className: "modal-cancel-button"
|
|
45853
45849
|
})), /*#__PURE__*/React__default.createElement(Box, {
|
|
45854
45850
|
width: "100%",
|
|
45855
45851
|
padding: "0"
|
|
@@ -45861,9 +45857,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
45861
45857
|
isLoading: isLoading,
|
|
45862
45858
|
disabled: isContinueActionDisabled,
|
|
45863
45859
|
extraStyles: buttonExtraStyles,
|
|
45864
|
-
className: "modal-continue-button"
|
|
45865
|
-
role: "button",
|
|
45866
|
-
name: continueButtonText
|
|
45860
|
+
className: "modal-continue-button"
|
|
45867
45861
|
}))) : /*#__PURE__*/React__default.createElement(Stack, {
|
|
45868
45862
|
childGap: "1rem",
|
|
45869
45863
|
direction: "row",
|
|
@@ -45874,9 +45868,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
45874
45868
|
text: cancelButtonText,
|
|
45875
45869
|
dataQa: cancelButtonText,
|
|
45876
45870
|
extraStyles: buttonExtraStyles,
|
|
45877
|
-
className: "modal-cancel-button"
|
|
45878
|
-
role: "button",
|
|
45879
|
-
name: cancelButtonText
|
|
45871
|
+
className: "modal-cancel-button"
|
|
45880
45872
|
}), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
45881
45873
|
variant: useDangerButton ? "danger" : "primary",
|
|
45882
45874
|
action: continueAction,
|
|
@@ -45885,9 +45877,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
45885
45877
|
isLoading: isLoading,
|
|
45886
45878
|
disabled: isContinueActionDisabled,
|
|
45887
45879
|
extraStyles: buttonExtraStyles,
|
|
45888
|
-
className: "modal-continue-button"
|
|
45889
|
-
role: "button",
|
|
45890
|
-
name: continueButtonText
|
|
45880
|
+
className: "modal-continue-button"
|
|
45891
45881
|
}))) : /*#__PURE__*/React__default.createElement(Box, {
|
|
45892
45882
|
padding: "0.5rem"
|
|
45893
45883
|
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
@@ -45896,9 +45886,7 @@ var Modal$1 = function Modal(_ref) {
|
|
|
45896
45886
|
text: closeButtonText,
|
|
45897
45887
|
dataQa: closeButtonText,
|
|
45898
45888
|
extraStyles: buttonExtraStyles,
|
|
45899
|
-
className: "modal-close-button"
|
|
45900
|
-
role: "button",
|
|
45901
|
-
name: closeButtonText
|
|
45889
|
+
className: "modal-close-button"
|
|
45902
45890
|
}))))))))), children);
|
|
45903
45891
|
};
|
|
45904
45892
|
|
|
@@ -47730,8 +47718,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
47730
47718
|
continueAction: function continueAction() {
|
|
47731
47719
|
toggleAccepted(true);
|
|
47732
47720
|
toggleOpen(false);
|
|
47733
|
-
}
|
|
47734
|
-
initialFocusSelector: "[name='Close']"
|
|
47721
|
+
}
|
|
47735
47722
|
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
47736
47723
|
variant: "pS",
|
|
47737
47724
|
onClick: function onClick() {
|
|
@@ -47744,9 +47731,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
47744
47731
|
color: themeValues.linkColor,
|
|
47745
47732
|
weight: themeValues.fontWeight,
|
|
47746
47733
|
hoverStyles: themeValues.modalLinkHoverFocus,
|
|
47747
|
-
extraStyles: "cursor: pointer;"
|
|
47748
|
-
role: "button",
|
|
47749
|
-
className: "modal-trigger"
|
|
47734
|
+
extraStyles: "cursor: pointer;"
|
|
47750
47735
|
}, link));
|
|
47751
47736
|
};
|
|
47752
47737
|
|
|
@@ -47803,9 +47788,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47803
47788
|
variant = _ref.variant,
|
|
47804
47789
|
_ref$linkVariant = _ref.linkVariant,
|
|
47805
47790
|
linkVariant = _ref$linkVariant === void 0 ? "p" : _ref$linkVariant,
|
|
47806
|
-
themeValues = _ref.themeValues
|
|
47807
|
-
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
47808
|
-
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele;
|
|
47791
|
+
themeValues = _ref.themeValues;
|
|
47809
47792
|
return /*#__PURE__*/React__default.createElement(Modal$1, {
|
|
47810
47793
|
modalOpen: isOpen,
|
|
47811
47794
|
hideModal: function hideModal() {
|
|
@@ -47831,8 +47814,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47831
47814
|
continueAction: function continueAction() {
|
|
47832
47815
|
toggleAccepted(true);
|
|
47833
47816
|
toggleOpen(false);
|
|
47834
|
-
}
|
|
47835
|
-
initialFocusSelector: initialFocusSelector
|
|
47817
|
+
}
|
|
47836
47818
|
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
47837
47819
|
variant: linkVariant,
|
|
47838
47820
|
onClick: function onClick() {
|
|
@@ -47845,10 +47827,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47845
47827
|
color: themeValues.linkColor,
|
|
47846
47828
|
weight: themeValues.fontWeight,
|
|
47847
47829
|
hoverStyles: themeValues.modalLinkHoverFocus,
|
|
47848
|
-
extraStyles: "display: inline-block; width: fit-content; cursor: pointer"
|
|
47849
|
-
role: "button" // This should always be a "button" since it opens a modal
|
|
47850
|
-
,
|
|
47851
|
-
className: "modal-trigger"
|
|
47830
|
+
extraStyles: "display: inline-block; width: fit-content; cursor: pointer"
|
|
47852
47831
|
}, link));
|
|
47853
47832
|
};
|
|
47854
47833
|
|
|
@@ -47861,15 +47840,7 @@ var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
|
47861
47840
|
terms = _ref.terms,
|
|
47862
47841
|
_ref$error = _ref.error,
|
|
47863
47842
|
error = _ref$error === void 0 ? false : _ref$error,
|
|
47864
|
-
linkVariant = _ref.linkVariant
|
|
47865
|
-
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
47866
|
-
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele,
|
|
47867
|
-
_ref$id = _ref.id,
|
|
47868
|
-
id = _ref$id === void 0 ? "terms-and-conditions" : _ref$id,
|
|
47869
|
-
_ref$screenReaderChec = _ref.screenReaderCheckboxLabel,
|
|
47870
|
-
screenReaderCheckboxLabel = _ref$screenReaderChec === void 0 ? "" : _ref$screenReaderChec,
|
|
47871
|
-
_ref$ariaLabelledBy = _ref.ariaLabelledBy,
|
|
47872
|
-
ariaLabelledBy = _ref$ariaLabelledBy === void 0 ? "" : _ref$ariaLabelledBy;
|
|
47843
|
+
linkVariant = _ref.linkVariant;
|
|
47873
47844
|
|
|
47874
47845
|
var _useState = React.useState(false),
|
|
47875
47846
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -47881,26 +47852,22 @@ var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
|
47881
47852
|
title: "Terms and Conditions",
|
|
47882
47853
|
error: error,
|
|
47883
47854
|
checked: isChecked,
|
|
47884
|
-
onChange: onCheck
|
|
47885
|
-
"aria-labelledby": ariaLabelledBy || (screenReaderCheckboxLabel ? "".concat(id, "_sr_only_label") : "".concat(id, "_html_label"))
|
|
47855
|
+
onChange: onCheck
|
|
47886
47856
|
}), /*#__PURE__*/React__default.createElement(Box, {
|
|
47887
47857
|
padding: "0 0 0 58px"
|
|
47888
|
-
},
|
|
47889
|
-
|
|
47890
|
-
id: "".concat(id, "_sr_only_label")
|
|
47891
|
-
}, screenReaderCheckboxLabel), /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Box, {
|
|
47892
|
-
padding: "0",
|
|
47893
|
-
id: "".concat(id, "_html_label")
|
|
47858
|
+
}, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Box, {
|
|
47859
|
+
padding: "0"
|
|
47894
47860
|
}, html), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
|
|
47895
47861
|
link: "Learn More",
|
|
47896
47862
|
terms: terms,
|
|
47897
47863
|
isOpen: showTerms,
|
|
47898
47864
|
toggleOpen: toggleShowTerms,
|
|
47899
|
-
linkVariant: linkVariant
|
|
47900
|
-
initialFocusSelector: initialFocusSelector
|
|
47865
|
+
linkVariant: linkVariant
|
|
47901
47866
|
})))));
|
|
47902
47867
|
};
|
|
47903
47868
|
|
|
47869
|
+
var TermsAndConditionsTitleDivId = "terms-and-conditions-title";
|
|
47870
|
+
|
|
47904
47871
|
var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
47905
47872
|
var _ref$showCheckbox = _ref.showCheckbox,
|
|
47906
47873
|
showCheckbox = _ref$showCheckbox === void 0 ? true : _ref$showCheckbox,
|
|
@@ -47926,13 +47893,7 @@ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
|
47926
47893
|
_ref$checkboxMargin = _ref.checkboxMargin,
|
|
47927
47894
|
checkboxMargin = _ref$checkboxMargin === void 0 ? "4px 8px 4px 4px" : _ref$checkboxMargin,
|
|
47928
47895
|
_ref$modalTitle = _ref.modalTitle,
|
|
47929
|
-
modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle
|
|
47930
|
-
_ref$initialFocusSele = _ref.initialFocusSelector,
|
|
47931
|
-
initialFocusSelector = _ref$initialFocusSele === void 0 ? "" : _ref$initialFocusSele,
|
|
47932
|
-
_ref$screenReaderChec = _ref.screenReaderCheckboxLabel,
|
|
47933
|
-
screenReaderCheckboxLabel = _ref$screenReaderChec === void 0 ? "" : _ref$screenReaderChec,
|
|
47934
|
-
_ref$ariaLabelledBy = _ref.ariaLabelledBy,
|
|
47935
|
-
ariaLabelledBy = _ref$ariaLabelledBy === void 0 ? "" : _ref$ariaLabelledBy;
|
|
47896
|
+
modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle;
|
|
47936
47897
|
|
|
47937
47898
|
var _useState = React.useState(false),
|
|
47938
47899
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -47958,31 +47919,28 @@ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
|
47958
47919
|
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
47959
47920
|
childGap: "0"
|
|
47960
47921
|
}, html && /*#__PURE__*/React__default.createElement(Box, {
|
|
47961
|
-
padding: "0"
|
|
47962
|
-
id: "".concat(id, "_html_label")
|
|
47922
|
+
padding: "0"
|
|
47963
47923
|
}, html), /*#__PURE__*/React__default.createElement(Cluster, {
|
|
47964
47924
|
justify: "flex-start",
|
|
47965
47925
|
align: "center",
|
|
47966
47926
|
nowrap: true
|
|
47967
|
-
}, showCheckbox && /*#__PURE__*/React__default.createElement(
|
|
47927
|
+
}, showCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
|
|
47968
47928
|
name: id,
|
|
47969
47929
|
error: hasError,
|
|
47970
47930
|
checked: isChecked,
|
|
47971
47931
|
onChange: onCheck,
|
|
47972
47932
|
checkboxMargin: checkboxMargin,
|
|
47973
47933
|
extraStyles: "align-self: flex-start;",
|
|
47974
|
-
|
|
47975
|
-
}),
|
|
47976
|
-
className: "sr-only-text",
|
|
47977
|
-
id: "".concat(id, "_sr_only_label")
|
|
47978
|
-
}, screenReaderCheckboxLabel)), /*#__PURE__*/React__default.createElement(Stack, {
|
|
47934
|
+
labelledById: TermsAndConditionsTitleDivId
|
|
47935
|
+
}), /*#__PURE__*/React__default.createElement(Stack, {
|
|
47979
47936
|
childGap: "0.25rem",
|
|
47980
47937
|
fullHeight: true
|
|
47981
47938
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
47982
47939
|
justify: "flex-start",
|
|
47983
47940
|
align: "center",
|
|
47984
47941
|
nowrap: true,
|
|
47985
|
-
extraStyles: "padding-right: 2px; > div > * { margin: 4px 2px; };"
|
|
47942
|
+
extraStyles: "padding-right: 2px; > div > * { margin: 4px 2px; };",
|
|
47943
|
+
id: TermsAndConditionsTitleDivId
|
|
47986
47944
|
}, description && /*#__PURE__*/React__default.createElement(Text$1, {
|
|
47987
47945
|
color: CHARADE_GREY
|
|
47988
47946
|
}, description), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
|
|
@@ -47991,8 +47949,7 @@ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
|
47991
47949
|
isOpen: showTerms,
|
|
47992
47950
|
toggleOpen: toggleTerms,
|
|
47993
47951
|
linkVariant: modalVariant,
|
|
47994
|
-
title: modalTitle
|
|
47995
|
-
initialFocusSelector: initialFocusSelector
|
|
47952
|
+
title: modalTitle
|
|
47996
47953
|
})), /*#__PURE__*/React__default.createElement("div", {
|
|
47997
47954
|
"aria-live": "polite",
|
|
47998
47955
|
"aria-atomic": true
|
|
@@ -48193,8 +48150,7 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
|
48193
48150
|
version: "v2",
|
|
48194
48151
|
showCheckbox: false,
|
|
48195
48152
|
description: "View",
|
|
48196
|
-
terms: termsContent
|
|
48197
|
-
initialFocusSelector: ".modal-close-button"
|
|
48153
|
+
terms: termsContent
|
|
48198
48154
|
})))));
|
|
48199
48155
|
};
|
|
48200
48156
|
|
|
@@ -48390,8 +48346,7 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
|
|
|
48390
48346
|
version: "v2",
|
|
48391
48347
|
showCheckbox: false,
|
|
48392
48348
|
description: "View",
|
|
48393
|
-
terms: termsContent
|
|
48394
|
-
initialFocusSelector: ".modal-close-button"
|
|
48349
|
+
terms: termsContent
|
|
48395
48350
|
})))));
|
|
48396
48351
|
};
|
|
48397
48352
|
|