hplx-react-elements-dev 1.1.69 → 1.1.70
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { InputTagProps } from "../types";
|
|
3
|
-
declare const InputTag: ({ inputProps, className, dropdownClassName, options, tagList, tagString, tagClassName, handleValChange, onDropdownClick, allowDuplicates, getInputValue, shouldModifyTextCase, }: InputTagProps) => JSX.Element;
|
|
3
|
+
declare const InputTag: ({ inputProps, className, dropdownClassName, options, tagList, tagString, tagClassName, handleValChange, onDropdownClick, allowDuplicates, getInputValue, shouldModifyTextCase, isScrollUp, elemID, }: InputTagProps) => JSX.Element;
|
|
4
4
|
export default InputTag;
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -495,6 +495,8 @@ export interface InputTagProps {
|
|
|
495
495
|
allowDuplicates?: boolean;
|
|
496
496
|
getInputValue?: (value: string) => void;
|
|
497
497
|
shouldModifyTextCase?: boolean;
|
|
498
|
+
isScrollUp?: boolean;
|
|
499
|
+
elemID?: string;
|
|
498
500
|
}
|
|
499
501
|
export interface CarouselProps {
|
|
500
502
|
leftIconClassName?: string;
|