kui-crm 0.0.283 → 0.0.284
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/cjs/index.js +3 -1
- package/cjs/index.js.map +1 -1
- package/index.d.ts +93 -93
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -3797,7 +3797,9 @@ var ImageCard = React.forwardRef(function (_a) {
|
|
|
3797
3797
|
var handleClick = function () {
|
|
3798
3798
|
onClick(index);
|
|
3799
3799
|
};
|
|
3800
|
-
var handleDelete = function () {
|
|
3800
|
+
var handleDelete = function (e) {
|
|
3801
|
+
e.preventDefault();
|
|
3802
|
+
e.stopPropagation();
|
|
3801
3803
|
if (onDelete)
|
|
3802
3804
|
onDelete(index);
|
|
3803
3805
|
};
|