@elementor/editor-editing-panel 3.32.0-67 → 3.32.0-69
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 +11 -2
- package/dist/index.d.ts +11 -2
- package/dist/index.js +19 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +19 -19
- package/src/components/style-sections/effects-section/effects-section.tsx +6 -1
- package/src/components/style-sections/position-section/dimensions-field.tsx +6 -1
- package/src/components/style-sections/spacing-section/spacing-section.tsx +1 -0
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
|
|
@@ -4182,7 +4189,15 @@ var DimensionField = ({
|
|
|
4182
4189
|
side,
|
|
4183
4190
|
label,
|
|
4184
4191
|
rowRef
|
|
4185
|
-
}) => /* @__PURE__ */ React59.createElement(StylesField, { bind: side, propDisplayName: label }, /* @__PURE__ */ React59.createElement(Grid3, { container: true, gap: 0.75, alignItems: "center" }, /* @__PURE__ */ React59.createElement(Grid3, { item: true, xs: 12 }, /* @__PURE__ */ React59.createElement(ControlLabel, null, label)), /* @__PURE__ */ React59.createElement(Grid3, { item: true, xs: 12 }, /* @__PURE__ */ React59.createElement(
|
|
4192
|
+
}) => /* @__PURE__ */ React59.createElement(StylesField, { bind: side, propDisplayName: label }, /* @__PURE__ */ React59.createElement(Grid3, { container: true, gap: 0.75, alignItems: "center" }, /* @__PURE__ */ React59.createElement(Grid3, { item: true, xs: 12 }, /* @__PURE__ */ React59.createElement(ControlLabel, null, label)), /* @__PURE__ */ React59.createElement(Grid3, { item: true, xs: 12 }, /* @__PURE__ */ React59.createElement(
|
|
4193
|
+
SizeControl4,
|
|
4194
|
+
{
|
|
4195
|
+
startIcon: sideIcons[side],
|
|
4196
|
+
extendedOptions: ["auto"],
|
|
4197
|
+
anchorRef: rowRef,
|
|
4198
|
+
min: -Number.MAX_SAFE_INTEGER
|
|
4199
|
+
}
|
|
4200
|
+
))));
|
|
4186
4201
|
|
|
4187
4202
|
// src/components/style-sections/position-section/offset-field.tsx
|
|
4188
4203
|
import * as React60 from "react";
|
|
@@ -4452,7 +4467,8 @@ var SpacingSection = () => {
|
|
|
4452
4467
|
{
|
|
4453
4468
|
label: MARGIN_LABEL,
|
|
4454
4469
|
isSiteRtl,
|
|
4455
|
-
extendedOptions: ["auto"]
|
|
4470
|
+
extendedOptions: ["auto"],
|
|
4471
|
+
min: -Number.MAX_SAFE_INTEGER
|
|
4456
4472
|
}
|
|
4457
4473
|
)), /* @__PURE__ */ React69.createElement(PanelDivider, null), /* @__PURE__ */ React69.createElement(StylesField, { bind: "padding", propDisplayName: PADDING_LABEL }, /* @__PURE__ */ React69.createElement(LinkedDimensionsControl, { label: PADDING_LABEL, isSiteRtl })));
|
|
4458
4474
|
};
|