@povio/ui 2.2.9-rc.39 → 2.2.9-rc.40

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.
@@ -105,7 +105,10 @@ function Autocomplete({ renderStaticInput, ...props }) {
105
105
  value: inputValue,
106
106
  placeholder: isMultiple && shouldRenderPlaceholderAfterValue ? props.placeholder : placeholder ?? void 0,
107
107
  className: clsx("w-full flex-1 bg-transparent outline-none placeholder:text-text-default-3 disabled:text-interactive-text-secondary-disabled", props.inputClassName),
108
- onChange: (event) => replayStaticInputChange(event.target.value),
108
+ onChange: (event) => {
109
+ props?.onMouseEnter?.({});
110
+ replayStaticInputChange(event.target.value);
111
+ },
109
112
  ...dataAttributeProps,
110
113
  "data-rac": true
111
114
  })] })
@@ -107,7 +107,10 @@ function Select({ renderStaticInput, ...props }) {
107
107
  value: inputValue,
108
108
  placeholder: shouldRenderPlaceholderAfterValue ? props.placeholder : placeholder ?? void 0,
109
109
  className: clsx("w-full flex-1 bg-transparent outline-none placeholder:text-text-default-3 disabled:text-interactive-text-secondary-disabled", props.inputClassName),
110
- onChange: (event) => replayStaticInputChange(event.target.value),
110
+ onChange: (event) => {
111
+ props?.onMouseEnter?.({});
112
+ replayStaticInputChange(event.target.value);
113
+ },
111
114
  ...dataAttributeProps,
112
115
  "data-rac": true
113
116
  }) : /* @__PURE__ */ jsx("button", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@povio/ui",
3
- "version": "2.2.9-rc.39",
3
+ "version": "2.2.9-rc.40",
4
4
  "type": "module",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",