dfh-ui-library 1.2.51 → 1.2.52

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.
@@ -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
  }