dfh-ui-library 1.2.51 → 1.2.53
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/shared/models/components/common.model.d.ts +7 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +7 -1
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
|
@@ -89,7 +89,7 @@ export interface IFormProps {
|
|
|
89
89
|
}
|
|
90
90
|
export interface TabNavigationProps extends AdditionalClassesProp {
|
|
91
91
|
navigationData?: any[];
|
|
92
|
-
navItemClick?: (
|
|
92
|
+
navItemClick?: () => void;
|
|
93
93
|
isEnableLogout?: boolean;
|
|
94
94
|
handleLogout?: () => void;
|
|
95
95
|
userImage?: string;
|
|
@@ -128,6 +128,8 @@ export interface CustomDatePickerProps {
|
|
|
128
128
|
label?: string;
|
|
129
129
|
placeHolder?: string;
|
|
130
130
|
error?: string;
|
|
131
|
+
isAdditionalErrorInput?: boolean;
|
|
132
|
+
additionalErrorClasses?: string;
|
|
131
133
|
/**
|
|
132
134
|
* Ser Error message
|
|
133
135
|
*/
|
|
@@ -161,6 +163,7 @@ export interface PhoneNumberInputProps {
|
|
|
161
163
|
label?: string | undefined;
|
|
162
164
|
additionalErrorClasses?: string;
|
|
163
165
|
isAdditionalErrorInput?: boolean;
|
|
166
|
+
name?: string;
|
|
164
167
|
}
|
|
165
168
|
export interface ModalProps {
|
|
166
169
|
children?: React.ReactNode;
|
|
@@ -231,4 +234,7 @@ export interface ButtonGroupProps {
|
|
|
231
234
|
options: string[];
|
|
232
235
|
onSelect: (selectedOption: string) => void;
|
|
233
236
|
label?: string;
|
|
237
|
+
error?: string;
|
|
238
|
+
isAdditionalErrorInput?: boolean;
|
|
239
|
+
additionalErrorClasses?: string;
|
|
234
240
|
}
|