@elementor/editor-controls 3.33.0-233 → 3.33.0-234

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
@@ -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 { inlineEditingPropTypeUtil } from "@elementor/editor-props";
5773
+ import { stringPropTypeUtil as stringPropTypeUtil15 } 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(inlineEditingPropTypeUtil);
5844
+ const { value, setValue } = useBoundProp(stringPropTypeUtil15);
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
  });