@bigbinary/neeto-rules-frontend 1.2.0-beta2 → 1.2.0-beta3
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/README.md +4 -4
- package/dist/index.cjs.js +5 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9796,15 +9796,17 @@ var RulesTable = function RulesTable(_ref) {
|
|
|
9796
9796
|
url: url,
|
|
9797
9797
|
payload: payload
|
|
9798
9798
|
}, {
|
|
9799
|
-
onSuccess:
|
|
9799
|
+
onSuccess: function onSuccess() {
|
|
9800
|
+
return onUpdateSuccess === null || onUpdateSuccess === void 0 ? void 0 : onUpdateSuccess();
|
|
9801
|
+
}
|
|
9800
9802
|
});
|
|
9801
9803
|
};
|
|
9802
9804
|
var handleCloneSuccess = function handleCloneSuccess() {
|
|
9803
|
-
onCloneSuccess();
|
|
9805
|
+
onCloneSuccess === null || onCloneSuccess === void 0 || onCloneSuccess();
|
|
9804
9806
|
hidePreviewPane();
|
|
9805
9807
|
};
|
|
9806
9808
|
var handleDeleteSuccess = function handleDeleteSuccess() {
|
|
9807
|
-
onDeleteSuccess();
|
|
9809
|
+
onDeleteSuccess === null || onDeleteSuccess === void 0 || onDeleteSuccess();
|
|
9808
9810
|
hidePreviewPane();
|
|
9809
9811
|
setSelectedRule(null);
|
|
9810
9812
|
};
|