dfh-ui-library 1.2.25 → 1.2.27

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.
@@ -0,0 +1 @@
1
+ export { default as Heading } from "./Heading";
@@ -17,3 +17,4 @@ export { Tooltip } from "./Tooltip";
17
17
  export { default as DialogBox } from "../components/core/DialogBox";
18
18
  export { default as Modal } from "../components/Modal";
19
19
  export { default as CustomFileInput } from "./CustomFileInput";
20
+ export { Heading } from "./core/Heading";
@@ -214,7 +214,7 @@ export interface ISelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
214
214
  /**
215
215
  * Set Label type
216
216
  */
217
- labelType?: "default" | "black" | "smallSelect" | "blackSmall";
217
+ labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
218
218
  /**
219
219
  * Set Input label name
220
220
  */
@@ -120,12 +120,41 @@ export interface CustomDatePickerProps {
120
120
  selectedDate: Date | null;
121
121
  onChange: (date: Date | null) => void;
122
122
  label?: string;
123
+ placeHolder?: string;
124
+ error?: string;
125
+ /**
126
+ * Ser Error message
127
+ */
128
+ isBorderedError?: boolean;
129
+ labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
130
+ additionalClasses?: string | undefined;
131
+ readOnly?: boolean;
132
+ type?: InputType;
133
+ /**
134
+ * Set new variant of the input
135
+ */
136
+ inputVariant?: "default" | "large";
123
137
  }
124
138
  export interface PhoneNumberInputProps {
125
139
  value: string;
126
140
  onChange: (value: string) => void;
127
141
  placeholder?: string;
128
142
  additionalClasses?: string | undefined;
143
+ error?: string;
144
+ /**
145
+ * Ser Error message
146
+ */
147
+ isBorderedError?: boolean;
148
+ labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
149
+ readOnly?: boolean;
150
+ type?: InputType;
151
+ /**
152
+ * Set new variant of the input
153
+ */
154
+ inputVariant?: "default" | "large";
155
+ label?: string | undefined;
156
+ additionalErrorClasses?: string;
157
+ isAdditionalErrorInput?: boolean;
129
158
  }
130
159
  export interface ModalProps {
131
160
  children?: React.ReactNode;