@elementor/editor-editing-panel 3.32.0-66 → 3.32.0-68
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
|
@@ -3387,7 +3387,14 @@ var BACKDROP_FILTER_LABEL = __21("Backdrop filters", "elementor");
|
|
|
3387
3387
|
var TRANSITIONS_LABEL = __21("Transitions", "elementor");
|
|
3388
3388
|
var EffectsSection = () => {
|
|
3389
3389
|
const { element } = useSelectedElement();
|
|
3390
|
-
|
|
3390
|
+
const { meta } = useStyle();
|
|
3391
|
+
return /* @__PURE__ */ React46.createElement(SectionContent, null, /* @__PURE__ */ React46.createElement(OpacityControlField, null), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "box-shadow", propDisplayName: BOX_SHADOW_LABEL }, /* @__PURE__ */ React46.createElement(BoxShadowRepeaterControl, null)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "transform", propDisplayName: TRANSFORM_LABEL }, /* @__PURE__ */ React46.createElement(TransformRepeaterControl, null)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "transition", propDisplayName: TRANSITIONS_LABEL }, /* @__PURE__ */ React46.createElement(
|
|
3392
|
+
TransitionRepeaterControl,
|
|
3393
|
+
{
|
|
3394
|
+
currentStyleState: meta.state,
|
|
3395
|
+
recentlyUsedList: getRecentlyUsedList(element?.id)
|
|
3396
|
+
}
|
|
3397
|
+
)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "filter", propDisplayName: FILTER_LABEL }, /* @__PURE__ */ React46.createElement(FilterRepeaterControl, null)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "backdrop-filter", propDisplayName: BACKDROP_FILTER_LABEL }, /* @__PURE__ */ React46.createElement(FilterRepeaterControl, { filterPropName: "backdrop-filter" })));
|
|
3391
3398
|
};
|
|
3392
3399
|
|
|
3393
3400
|
// src/components/style-sections/layout-section/layout-section.tsx
|