@bigbinary/neeto-rules-frontend 1.1.0 → 1.1.1
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 +5 -5
package/dist/index.js
CHANGED
|
@@ -9794,15 +9794,17 @@ var RulesTable = function RulesTable(_ref) {
|
|
|
9794
9794
|
url: url,
|
|
9795
9795
|
payload: payload
|
|
9796
9796
|
}, {
|
|
9797
|
-
onSuccess:
|
|
9797
|
+
onSuccess: function onSuccess() {
|
|
9798
|
+
return onUpdateSuccess === null || onUpdateSuccess === void 0 ? void 0 : onUpdateSuccess();
|
|
9799
|
+
}
|
|
9798
9800
|
});
|
|
9799
9801
|
};
|
|
9800
9802
|
var handleCloneSuccess = function handleCloneSuccess() {
|
|
9801
|
-
onCloneSuccess();
|
|
9803
|
+
onCloneSuccess === null || onCloneSuccess === void 0 || onCloneSuccess();
|
|
9802
9804
|
hidePreviewPane();
|
|
9803
9805
|
};
|
|
9804
9806
|
var handleDeleteSuccess = function handleDeleteSuccess() {
|
|
9805
|
-
onDeleteSuccess();
|
|
9807
|
+
onDeleteSuccess === null || onDeleteSuccess === void 0 || onDeleteSuccess();
|
|
9806
9808
|
hidePreviewPane();
|
|
9807
9809
|
setSelectedRule(null);
|
|
9808
9810
|
};
|