@pelcro/react-pelcro-js 3.21.3 → 3.21.4
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 +2 -1
- package/dist/index.esm.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -17917,11 +17917,12 @@ const PaymentMethodContainer = props => {
|
|
|
17917
17917
|
}, /*#__PURE__*/React__default['default'].createElement(es_11, null, /*#__PURE__*/React__default['default'].createElement(UnwrappedForm, Object.assign({
|
|
17918
17918
|
store: store$k
|
|
17919
17919
|
}, props))));
|
|
17920
|
-
} else {
|
|
17920
|
+
} else if (cardProcessor !== "stripe") {
|
|
17921
17921
|
return /*#__PURE__*/React__default['default'].createElement(PaymentMethodContainerWithoutStripe, Object.assign({
|
|
17922
17922
|
store: store$k
|
|
17923
17923
|
}, props));
|
|
17924
17924
|
}
|
|
17925
|
+
return null;
|
|
17925
17926
|
};
|
|
17926
17927
|
|
|
17927
17928
|
const StripeInputStyle = {
|
package/dist/index.esm.js
CHANGED
|
@@ -17887,11 +17887,12 @@ const PaymentMethodContainer = props => {
|
|
|
17887
17887
|
}, /*#__PURE__*/React__default.createElement(es_11, null, /*#__PURE__*/React__default.createElement(UnwrappedForm, Object.assign({
|
|
17888
17888
|
store: store$k
|
|
17889
17889
|
}, props))));
|
|
17890
|
-
} else {
|
|
17890
|
+
} else if (cardProcessor !== "stripe") {
|
|
17891
17891
|
return /*#__PURE__*/React__default.createElement(PaymentMethodContainerWithoutStripe, Object.assign({
|
|
17892
17892
|
store: store$k
|
|
17893
17893
|
}, props));
|
|
17894
17894
|
}
|
|
17895
|
+
return null;
|
|
17895
17896
|
};
|
|
17896
17897
|
|
|
17897
17898
|
const StripeInputStyle = {
|