@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/dist/index.mjs
CHANGED
|
@@ -2368,6 +2368,7 @@ import {
|
|
|
2368
2368
|
bindTrigger as bindTrigger2,
|
|
2369
2369
|
Box as Box5,
|
|
2370
2370
|
Divider as Divider7,
|
|
2371
|
+
Grid as Grid26,
|
|
2371
2372
|
IconButton as IconButton3,
|
|
2372
2373
|
Paper,
|
|
2373
2374
|
Popover as Popover2,
|
|
@@ -2679,7 +2680,7 @@ var Control3 = ({ control }) => {
|
|
|
2679
2680
|
if (!getControlByType(control.type)) {
|
|
2680
2681
|
return null;
|
|
2681
2682
|
}
|
|
2682
|
-
return /* @__PURE__ */ React67.createElement(DynamicControl, { bind: control.bind }, control.label ? /* @__PURE__ */ React67.createElement(ControlLabel31, null, control.label) : null, /* @__PURE__ */ React67.createElement(Control, { type: control.type, props: control.props }));
|
|
2683
|
+
return /* @__PURE__ */ React67.createElement(DynamicControl, { bind: control.bind }, /* @__PURE__ */ React67.createElement(Grid26, { container: true, gap: 1 }, control.label ? /* @__PURE__ */ React67.createElement(Grid26, { item: true, xs: 12 }, /* @__PURE__ */ React67.createElement(ControlLabel31, null, control.label)) : null, /* @__PURE__ */ React67.createElement(Grid26, { item: true, xs: 12 }, /* @__PURE__ */ React67.createElement(Control, { type: control.type, props: control.props }))));
|
|
2683
2684
|
};
|
|
2684
2685
|
|
|
2685
2686
|
// src/dynamics/hooks/use-prop-dynamic-action.tsx
|