@thecb/components 7.13.0 → 7.13.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +7 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +3 -0
- /package/src/components/atoms/icons/{ExternalLinkIcon.js → ExternalLinkicon.js} +0 -0
package/dist/index.esm.js
CHANGED
|
@@ -46822,7 +46822,9 @@ var Pagination = function Pagination(_ref3) {
|
|
|
46822
46822
|
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$J);
|
|
46823
46823
|
|
|
46824
46824
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
46825
|
-
var _ref$
|
|
46825
|
+
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
46826
|
+
isForwardButtonDisabled = _ref$isForwardButtonD === void 0 ? false : _ref$isForwardButtonD,
|
|
46827
|
+
_ref$forwardButtonTex = _ref.forwardButtonText,
|
|
46826
46828
|
forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
|
|
46827
46829
|
forwardButtonAction = _ref.forwardButtonAction,
|
|
46828
46830
|
forwardButtonLoading = _ref.forwardButtonLoading,
|
|
@@ -46864,14 +46866,16 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46864
46866
|
text: redirectText,
|
|
46865
46867
|
variant: forwardButtonVariant,
|
|
46866
46868
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46867
|
-
dataQa: redirectText
|
|
46869
|
+
dataQa: redirectText,
|
|
46870
|
+
disabled: isForwardButtonDisabled
|
|
46868
46871
|
}) : forwardButtonAction && /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
46869
46872
|
text: forwardButtonText,
|
|
46870
46873
|
variant: forwardButtonVariant,
|
|
46871
46874
|
action: forwardButtonAction,
|
|
46872
46875
|
isLoading: forwardButtonLoading,
|
|
46873
46876
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46874
|
-
dataQa: forwardButtonText
|
|
46877
|
+
dataQa: forwardButtonText,
|
|
46878
|
+
disabled: isForwardButtonDisabled
|
|
46875
46879
|
});
|
|
46876
46880
|
return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Box, {
|
|
46877
46881
|
padding: "1.25rem 0"
|