@elementor/editor-editing-panel 3.32.0-86 → 3.32.0-87
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.mjs
CHANGED
|
@@ -2957,7 +2957,7 @@ function TooltipOrInfotip({
|
|
|
2957
2957
|
}
|
|
2958
2958
|
|
|
2959
2959
|
// src/styles-inheritance/components/styles-inheritance-indicator.tsx
|
|
2960
|
-
var disabledControls = ["box-shadow", "background-overlay", "filter", "backdrop-filter", "transform"];
|
|
2960
|
+
var disabledControls = ["box-shadow", "background-overlay", "filter", "backdrop-filter", "transform", "transition"];
|
|
2961
2961
|
var StylesInheritanceIndicator = () => {
|
|
2962
2962
|
const { path, propType } = useBoundProp();
|
|
2963
2963
|
const inheritanceChain = useStylesInheritanceChain(path);
|
|
@@ -5572,8 +5572,9 @@ function initResetStyleProps() {
|
|
|
5572
5572
|
function useResetStyleValueProps() {
|
|
5573
5573
|
const isStyle = useIsStyle();
|
|
5574
5574
|
const { value, setValue, path } = useBoundProp11();
|
|
5575
|
+
const isInRepeater = path?.some((key) => !isNaN(Number(key)));
|
|
5575
5576
|
return {
|
|
5576
|
-
visible: isStyle && value !== null && value !== void 0 &&
|
|
5577
|
+
visible: isStyle && value !== null && value !== void 0 && !isInRepeater,
|
|
5577
5578
|
title: __65("Clear", "elementor"),
|
|
5578
5579
|
icon: BrushBigIcon,
|
|
5579
5580
|
onClick: () => setValue(null)
|