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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/FormElements/Select/index.d.ts +2 -0
- package/dist/cjs/types/components/FormElements/index.d.ts +1 -1
- package/dist/cjs/types/components/index.d.ts +1 -1
- package/dist/cjs/types/shared/models/components/base.model.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/FormElements/Select/index.d.ts +2 -0
- package/dist/esm/types/components/FormElements/index.d.ts +1 -1
- package/dist/esm/types/components/index.d.ts +1 -1
- package/dist/esm/types/shared/models/components/base.model.d.ts +1 -1
- package/dist/index.d.ts +29 -2
- package/package.json +1 -1
@@ -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
|
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
|
*/
|