@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.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -15
- package/src/components/autocomplete.tsx +2 -1
package/dist/index.js
CHANGED
|
@@ -3243,6 +3243,7 @@ var Autocomplete = (0, import_react31.forwardRef)((props, ref) => {
|
|
|
3243
3243
|
value = "",
|
|
3244
3244
|
startAdornment,
|
|
3245
3245
|
disablePortal = true,
|
|
3246
|
+
inputProps,
|
|
3246
3247
|
...restProps
|
|
3247
3248
|
} = props;
|
|
3248
3249
|
const optionKeys = factoryFilter(value, options, minInputLength).map(({ id }) => id);
|
|
@@ -3284,7 +3285,7 @@ var Autocomplete = (0, import_react31.forwardRef)((props, ref) => {
|
|
|
3284
3285
|
placeholder,
|
|
3285
3286
|
hasSelectedValue: isValueFromOptions,
|
|
3286
3287
|
startAdornment,
|
|
3287
|
-
extraInputProps:
|
|
3288
|
+
extraInputProps: inputProps
|
|
3288
3289
|
}
|
|
3289
3290
|
)
|
|
3290
3291
|
}
|