@thecb/components 7.12.2-beta.21 → 7.12.2-beta.22
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.esm.js
CHANGED
|
@@ -46910,7 +46910,9 @@ var Pagination = function Pagination(_ref3) {
|
|
|
46910
46910
|
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$J);
|
|
46911
46911
|
|
|
46912
46912
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
46913
|
-
var _ref$
|
|
46913
|
+
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
46914
|
+
isForwardButtonDisabled = _ref$isForwardButtonD === void 0 ? false : _ref$isForwardButtonD,
|
|
46915
|
+
_ref$forwardButtonTex = _ref.forwardButtonText,
|
|
46914
46916
|
forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
|
|
46915
46917
|
forwardButtonAction = _ref.forwardButtonAction,
|
|
46916
46918
|
forwardButtonLoading = _ref.forwardButtonLoading,
|
|
@@ -46952,14 +46954,16 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
46952
46954
|
text: redirectText,
|
|
46953
46955
|
variant: forwardButtonVariant,
|
|
46954
46956
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46955
|
-
dataQa: redirectText
|
|
46957
|
+
dataQa: redirectText,
|
|
46958
|
+
disabled: isForwardButtonDisabled
|
|
46956
46959
|
}) : forwardButtonAction && /*#__PURE__*/React.createElement(ButtonWithAction, {
|
|
46957
46960
|
text: forwardButtonText,
|
|
46958
46961
|
variant: forwardButtonVariant,
|
|
46959
46962
|
action: forwardButtonAction,
|
|
46960
46963
|
isLoading: forwardButtonLoading,
|
|
46961
46964
|
extraStyles: isMobile && "flex-grow: 1",
|
|
46962
|
-
dataQa: forwardButtonText
|
|
46965
|
+
dataQa: forwardButtonText,
|
|
46966
|
+
disabled: isForwardButtonDisabled
|
|
46963
46967
|
});
|
|
46964
46968
|
return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Box, {
|
|
46965
46969
|
padding: "1.25rem 0"
|