vrfi-design-system 1.0.31 → 1.0.32

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/index.d.ts CHANGED
@@ -213,6 +213,7 @@ export declare interface CustomInputProps {
213
213
  placeholder?: string;
214
214
  type?: InputTypes_2;
215
215
  prefix?: ReactNode;
216
+ textLabel?: string;
216
217
  required?: boolean;
217
218
  customOnChange?: (event: default_2.ChangeEvent<HTMLInputElement | HTMLTextAreaElement> | default_3.Dayjs | null, field: ControllerRenderProps<FieldValues, string>) => void;
218
219
  control?: Control<FieldValues>;
@@ -356,7 +357,7 @@ export declare interface INotification {
356
357
  type: string;
357
358
  }
358
359
 
359
- export declare const InputField: ({ label, type, placeholder, prefix, required, ...rest }: CustomInputProps & InputProps) => default_2.JSX.Element;
360
+ export declare const InputField: ({ label, type, placeholder, prefix, required, textLabel, ...rest }: CustomInputProps & InputProps) => default_2.JSX.Element;
360
361
 
361
362
  export { InputTypes }
362
363