@elementor/editor-controls 4.1.0-764 → 4.1.0-765
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -15
- package/src/components/repeater/repeater.tsx +4 -3
package/dist/index.mjs
CHANGED
|
@@ -7776,13 +7776,14 @@ var RepeaterItem = ({
|
|
|
7776
7776
|
actions,
|
|
7777
7777
|
value
|
|
7778
7778
|
}) => {
|
|
7779
|
+
const wrappedOnPopoverClose = onPopoverClose ? () => onPopoverClose(value) : void 0;
|
|
7779
7780
|
const { popoverState, popoverProps, ref, setRef } = usePopover(
|
|
7780
7781
|
openOnMount,
|
|
7781
7782
|
() => {
|
|
7782
7783
|
onOpen();
|
|
7783
7784
|
onPopoverOpen?.(value);
|
|
7784
7785
|
},
|
|
7785
|
-
|
|
7786
|
+
wrappedOnPopoverClose
|
|
7786
7787
|
);
|
|
7787
7788
|
const triggerProps = bindTrigger7(popoverState);
|
|
7788
7789
|
const duplicateLabel = __55("Duplicate", "elementor");
|