@thecb/components 10.4.0-beta.13 → 10.4.0-beta.14
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
CHANGED
|
@@ -46889,19 +46889,13 @@ var AmountModule = function AmountModule(_ref) {
|
|
|
46889
46889
|
subDescription: subDescription,
|
|
46890
46890
|
allowedPaymentInstruments: allowedPaymentInstruments,
|
|
46891
46891
|
disableActions: disableActions,
|
|
46892
|
-
action: disableActions ? function () {
|
|
46893
|
-
return noop$1;
|
|
46894
|
-
} : function () {
|
|
46892
|
+
action: disableActions ? noop$1 : function () {
|
|
46895
46893
|
return toggleModal(true);
|
|
46896
46894
|
},
|
|
46897
|
-
onClick: disableActions ? function () {
|
|
46898
|
-
return noop$1;
|
|
46899
|
-
} : function () {
|
|
46895
|
+
onClick: disableActions ? noop$1 : function () {
|
|
46900
46896
|
toggleModal(true);
|
|
46901
46897
|
},
|
|
46902
|
-
onKeyPress: disableActions ? function () {
|
|
46903
|
-
return noop$1;
|
|
46904
|
-
} : function (e) {
|
|
46898
|
+
onKeyPress: disableActions ? noop$1 : function (e) {
|
|
46905
46899
|
e.key === "Enter" && toggleModal(true);
|
|
46906
46900
|
}
|
|
46907
46901
|
})));
|