@pelcro/react-pelcro-js 3.22.0-beta.10 → 3.22.0-beta.11
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
|
@@ -17986,11 +17986,12 @@ const PaymentMethodContainer = props => {
|
|
|
17986
17986
|
}, /*#__PURE__*/React__default['default'].createElement(es_11, null, /*#__PURE__*/React__default['default'].createElement(UnwrappedForm, Object.assign({
|
|
17987
17987
|
store: store$k
|
|
17988
17988
|
}, props))));
|
|
17989
|
-
} else {
|
|
17989
|
+
} else if (cardProcessor !== "stripe") {
|
|
17990
17990
|
return /*#__PURE__*/React__default['default'].createElement(PaymentMethodContainerWithoutStripe, Object.assign({
|
|
17991
17991
|
store: store$k
|
|
17992
17992
|
}, props));
|
|
17993
17993
|
}
|
|
17994
|
+
return null;
|
|
17994
17995
|
};
|
|
17995
17996
|
|
|
17996
17997
|
const StripeInputStyle = {
|
package/dist/index.esm.js
CHANGED
|
@@ -17956,11 +17956,12 @@ const PaymentMethodContainer = props => {
|
|
|
17956
17956
|
}, /*#__PURE__*/React__default.createElement(es_11, null, /*#__PURE__*/React__default.createElement(UnwrappedForm, Object.assign({
|
|
17957
17957
|
store: store$k
|
|
17958
17958
|
}, props))));
|
|
17959
|
-
} else {
|
|
17959
|
+
} else if (cardProcessor !== "stripe") {
|
|
17960
17960
|
return /*#__PURE__*/React__default.createElement(PaymentMethodContainerWithoutStripe, Object.assign({
|
|
17961
17961
|
store: store$k
|
|
17962
17962
|
}, props));
|
|
17963
17963
|
}
|
|
17964
|
+
return null;
|
|
17964
17965
|
};
|
|
17965
17966
|
|
|
17966
17967
|
const StripeInputStyle = {
|