react-autocomplete-input
Advanced tools
Comparing version 1.0.25 to 1.0.26
@@ -0,1 +1,4 @@ | ||
### 12th Octover 2023 - 1.0.26 | ||
- onBlur prop type definition fix (https://github.com/yury-dymov/react-autocomplete-input/pull/111). Props to fabioimpe | ||
### 5th October 2023 - 1.0.25 | ||
@@ -2,0 +5,0 @@ - Fixed wrong suggestion list position when text field is scrolled (https://github.com/yury-dymov/react-autocomplete-input/pull/108). Props to fabioimpe |
declare module 'react-autocomplete-input' { | ||
import React, { ComponentType, KeyboardEvent } from 'react'; | ||
import React, { ComponentType, KeyboardEvent, FocusEventHandler } from 'react'; | ||
@@ -9,3 +9,3 @@ type AutocompleteTextFieldPropsGeneral = { | ||
maxOptions?: number; | ||
onBlur?: () => void; | ||
onBlur?: FocusEventHandler<HTMLTextAreaElement>; | ||
onChange?: (value: string) => void; | ||
@@ -46,2 +46,2 @@ onKeyDown?: (event: KeyboardEvent) => void; | ||
} | ||
{ | ||
"name": "react-autocomplete-input", | ||
"version": "1.0.25", | ||
"version": "1.0.26", | ||
"description": "Autocomplete input field for React", | ||
@@ -5,0 +5,0 @@ "main": "dist/bundle.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
28962