dfh-ui-library 1.13.53 → 1.13.55

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 +1,3 @@
1
1
  export { default } from "./Select";
2
+ export { default as SelectV2 } from "./SelectV2";
3
+ export { default as Select } from "./Select";
@@ -2,7 +2,7 @@ export { default as CheckBox } from './CheckBox';
2
2
  export { default as InputValidation } from './InputValidation';
3
3
  export { default as Input } from './Input';
4
4
  export { default as Label } from './Label';
5
- export { default as Select } from './Select';
5
+ export * from './Select';
6
6
  export { default as RadioButton } from './RadioButton';
7
7
  export { Textarea, TextareaWithCount, TextareaWithCountV2 } from './Textarea';
8
8
  export { default as IconInput } from './IconInput';
@@ -3,7 +3,7 @@ export { default as Button } from './Button';
3
3
  export { default as ButtonV2 } from './Button/ButtonV2';
4
4
  export { default as Typhography } from './Typhography';
5
5
  export { default as TyphographyFormGen } from './TyphographyFormGen';
6
- export { Input, Select, CheckBox, Label, InputValidation, Textarea, RadioButton, IconInput, ImageInput, } from './FormElements';
6
+ export { Input, Select, SelectV2, CheckBox, Label, InputValidation, Textarea, RadioButton, IconInput, ImageInput, } from './FormElements';
7
7
  export { default as Card } from './Card';
8
8
  export { default as ComboBox } from './ComboBox';
9
9
  export { default as ComponentProvider } from './ComponentProvider';
@@ -107,7 +107,7 @@ export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputEleme
107
107
  */
108
108
  labelName?: string;
109
109
  isCrossIcon?: boolean;
110
- isCrossIconHandler?: () => void;
110
+ isCrossIconHandler?: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
111
111
  /**
112
112
  * Set the Label Type
113
113
  */