hplx-react-elements-dev 1.1.65 → 1.1.66

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, handleValChange, onDropdownClick, allowDuplicates, getInputValue, }: InputTagProps) => JSX.Element;
3
+ declare const InputTag: ({ inputProps, className, dropdownClassName, options, tagList, tagString, tagClassName, handleValChange, onDropdownClick, allowDuplicates, getInputValue, shouldModifyTextCase, }: InputTagProps) => JSX.Element;
4
4
  export default InputTag;
@@ -477,6 +477,7 @@ export interface InputTagProps {
477
477
  className?: string;
478
478
  tagList?: Array<string>;
479
479
  tagString?: string;
480
+ tagClassName?: string;
480
481
  dropdownClassName?: string;
481
482
  onDropdownClick?: (value: any, index?: number, searchString?: string) => void;
482
483
  options?: Array<DropdownItemsProps>;
@@ -484,6 +485,7 @@ export interface InputTagProps {
484
485
  handleValChange?: (value: any, _currentInputValue?: string, fromEvent?: fromEventType) => void;
485
486
  allowDuplicates?: boolean;
486
487
  getInputValue?: (value: string) => void;
488
+ shouldModifyTextCase?: boolean;
487
489
  }
488
490
  export interface CarouselProps {
489
491
  leftIconClassName?: string;
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.1.65",
12
+ "version": "1.1.66",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",