@elementor/editor-controls 4.2.0-863 → 4.2.0-865
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
|
@@ -2788,7 +2788,7 @@ var SplitButtonGroup = ({
|
|
|
2788
2788
|
mt: 0.5
|
|
2789
2789
|
}
|
|
2790
2790
|
},
|
|
2791
|
-
items2.map(({ label, value: buttonValue }) => /* @__PURE__ */ React54.createElement(
|
|
2791
|
+
items2.filter((item) => item.value !== previewButton.value).map(({ label, value: buttonValue }) => /* @__PURE__ */ React54.createElement(
|
|
2792
2792
|
MenuItem,
|
|
2793
2793
|
{
|
|
2794
2794
|
key: buttonValue,
|
|
@@ -8273,7 +8273,7 @@ var GridSpanControl = createControl(
|
|
|
8273
8273
|
}) => {
|
|
8274
8274
|
const { value, setValue, disabled, placeholder: boundPlaceholder } = useBoundProp(spanPropTypeUtil);
|
|
8275
8275
|
const handleChange = (event) => setValue(event.target.value);
|
|
8276
|
-
const placeholder = propPlaceholder ?? boundPlaceholder ??
|
|
8276
|
+
const placeholder = propPlaceholder ?? boundPlaceholder ?? `e.g: 'span 2' or '1 / 3'`;
|
|
8277
8277
|
return /* @__PURE__ */ React118.createElement(ControlActions, null, /* @__PURE__ */ React118.createElement(
|
|
8278
8278
|
TextField11,
|
|
8279
8279
|
{
|