@elementor/editor-editing-panel 1.14.0 → 1.15.0
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/CHANGELOG.md +6 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dynamics/components/dynamic-selection-control.tsx +11 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2624,7 +2624,7 @@ var Control3 = ({ control }) => {
|
|
|
2624
2624
|
if (!getControlByType(control.type)) {
|
|
2625
2625
|
return null;
|
|
2626
2626
|
}
|
|
2627
|
-
return /* @__PURE__ */ React67.createElement(DynamicControl, { bind: control.bind }, control.label ? /* @__PURE__ */ React67.createElement(import_editor_controls46.ControlLabel, null, control.label) : null, /* @__PURE__ */ React67.createElement(Control, { type: control.type, props: control.props }));
|
|
2627
|
+
return /* @__PURE__ */ React67.createElement(DynamicControl, { bind: control.bind }, /* @__PURE__ */ React67.createElement(import_ui51.Grid, { container: true, gap: 1 }, control.label ? /* @__PURE__ */ React67.createElement(import_ui51.Grid, { item: true, xs: 12 }, /* @__PURE__ */ React67.createElement(import_editor_controls46.ControlLabel, null, control.label)) : null, /* @__PURE__ */ React67.createElement(import_ui51.Grid, { item: true, xs: 12 }, /* @__PURE__ */ React67.createElement(Control, { type: control.type, props: control.props }))));
|
|
2628
2628
|
};
|
|
2629
2629
|
|
|
2630
2630
|
// src/dynamics/hooks/use-prop-dynamic-action.tsx
|