@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.d.mts
CHANGED
|
@@ -821,7 +821,7 @@ declare const controlTypes: {
|
|
|
821
821
|
};
|
|
822
822
|
};
|
|
823
823
|
readonly repeatable: {
|
|
824
|
-
readonly component: ControlComponent<({ repeaterLabel, childControlConfig, showDuplicate, showToggle, initialValues, patternLabel, placeholder, propKey, }: {
|
|
824
|
+
readonly component: ControlComponent<({ repeaterLabel, childControlConfig, showDuplicate, showToggle, initialValues, patternLabel, placeholder, propKey, addItemTooltipProps, }: {
|
|
825
825
|
label: string;
|
|
826
826
|
repeaterLabel: string;
|
|
827
827
|
childControlConfig: {
|
|
@@ -836,6 +836,12 @@ declare const controlTypes: {
|
|
|
836
836
|
patternLabel?: string;
|
|
837
837
|
placeholder?: string;
|
|
838
838
|
propKey?: string;
|
|
839
|
+
addItemTooltipProps?: {
|
|
840
|
+
disabled?: boolean;
|
|
841
|
+
enableTooltip?: boolean;
|
|
842
|
+
tooltipContent?: react.ReactNode;
|
|
843
|
+
newItemIndex?: number;
|
|
844
|
+
};
|
|
839
845
|
}) => react.JSX.Element | null>;
|
|
840
846
|
readonly layout: "full";
|
|
841
847
|
readonly propTypeUtil: undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -821,7 +821,7 @@ declare const controlTypes: {
|
|
|
821
821
|
};
|
|
822
822
|
};
|
|
823
823
|
readonly repeatable: {
|
|
824
|
-
readonly component: ControlComponent<({ repeaterLabel, childControlConfig, showDuplicate, showToggle, initialValues, patternLabel, placeholder, propKey, }: {
|
|
824
|
+
readonly component: ControlComponent<({ repeaterLabel, childControlConfig, showDuplicate, showToggle, initialValues, patternLabel, placeholder, propKey, addItemTooltipProps, }: {
|
|
825
825
|
label: string;
|
|
826
826
|
repeaterLabel: string;
|
|
827
827
|
childControlConfig: {
|
|
@@ -836,6 +836,12 @@ declare const controlTypes: {
|
|
|
836
836
|
patternLabel?: string;
|
|
837
837
|
placeholder?: string;
|
|
838
838
|
propKey?: string;
|
|
839
|
+
addItemTooltipProps?: {
|
|
840
|
+
disabled?: boolean;
|
|
841
|
+
enableTooltip?: boolean;
|
|
842
|
+
tooltipContent?: react.ReactNode;
|
|
843
|
+
newItemIndex?: number;
|
|
844
|
+
};
|
|
839
845
|
}) => react.JSX.Element | null>;
|
|
840
846
|
readonly layout: "full";
|
|
841
847
|
readonly propTypeUtil: undefined;
|
package/dist/index.js
CHANGED
|
@@ -3334,7 +3334,14 @@ var BACKDROP_FILTER_LABEL = (0, import_i18n21.__)("Backdrop filters", "elementor
|
|
|
3334
3334
|
var TRANSITIONS_LABEL = (0, import_i18n21.__)("Transitions", "elementor");
|
|
3335
3335
|
var EffectsSection = () => {
|
|
3336
3336
|
const { element } = (0, import_editor_elements10.useSelectedElement)();
|
|
3337
|
-
|
|
3337
|
+
const { meta } = useStyle();
|
|
3338
|
+
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(import_editor_controls18.BoxShadowRepeaterControl, null)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "transform", propDisplayName: TRANSFORM_LABEL }, /* @__PURE__ */ React46.createElement(import_editor_controls18.TransformRepeaterControl, null)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "transition", propDisplayName: TRANSITIONS_LABEL }, /* @__PURE__ */ React46.createElement(
|
|
3339
|
+
import_editor_controls18.TransitionRepeaterControl,
|
|
3340
|
+
{
|
|
3341
|
+
currentStyleState: meta.state,
|
|
3342
|
+
recentlyUsedList: getRecentlyUsedList(element?.id)
|
|
3343
|
+
}
|
|
3344
|
+
)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "filter", propDisplayName: FILTER_LABEL }, /* @__PURE__ */ React46.createElement(import_editor_controls18.FilterRepeaterControl, null)), /* @__PURE__ */ React46.createElement(PanelDivider, null), /* @__PURE__ */ React46.createElement(StylesField, { bind: "backdrop-filter", propDisplayName: BACKDROP_FILTER_LABEL }, /* @__PURE__ */ React46.createElement(import_editor_controls18.FilterRepeaterControl, { filterPropName: "backdrop-filter" })));
|
|
3338
3345
|
};
|
|
3339
3346
|
|
|
3340
3347
|
// src/components/style-sections/layout-section/layout-section.tsx
|