@elementor/editor-controls 3.33.0-239 → 3.33.0-241
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.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -15
- package/src/controls/inline-editing-control.tsx +2 -2
package/dist/index.mjs
CHANGED
|
@@ -5770,7 +5770,7 @@ var DateTimeControl = createControl(({ inputDisabled }) => {
|
|
|
5770
5770
|
|
|
5771
5771
|
// src/controls/inline-editing-control.tsx
|
|
5772
5772
|
import * as React98 from "react";
|
|
5773
|
-
import {
|
|
5773
|
+
import { htmlPropTypeUtil } from "@elementor/editor-props";
|
|
5774
5774
|
|
|
5775
5775
|
// src/components/inline-editor.tsx
|
|
5776
5776
|
import * as React97 from "react";
|
|
@@ -5841,7 +5841,7 @@ var InlineEditor = React97.forwardRef(
|
|
|
5841
5841
|
|
|
5842
5842
|
// src/controls/inline-editing-control.tsx
|
|
5843
5843
|
var InlineEditingControl = createControl(() => {
|
|
5844
|
-
const { value, setValue } = useBoundProp(
|
|
5844
|
+
const { value, setValue } = useBoundProp(htmlPropTypeUtil);
|
|
5845
5845
|
const handleChange = (newValue) => setValue(newValue);
|
|
5846
5846
|
return /* @__PURE__ */ React98.createElement(ControlActions, null, /* @__PURE__ */ React98.createElement(InlineEditor, { value: value || "", setValue: handleChange }));
|
|
5847
5847
|
});
|