@elementor/editor-controls 3.35.0-426 → 3.35.0-428

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
@@ -3187,6 +3187,7 @@ var Autocomplete = forwardRef8((props, ref) => {
3187
3187
  value = "",
3188
3188
  startAdornment,
3189
3189
  disablePortal = true,
3190
+ inputProps,
3190
3191
  ...restProps
3191
3192
  } = props;
3192
3193
  const optionKeys = factoryFilter(value, options, minInputLength).map(({ id }) => id);
@@ -3228,7 +3229,7 @@ var Autocomplete = forwardRef8((props, ref) => {
3228
3229
  placeholder,
3229
3230
  hasSelectedValue: isValueFromOptions,
3230
3231
  startAdornment,
3231
- extraInputProps: restProps.inputProps
3232
+ extraInputProps: inputProps
3232
3233
  }
3233
3234
  )
3234
3235
  }