vrfi-design-system 1.0.51 → 1.0.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.
- package/dist/index.d.ts +3 -2
- package/dist/main.es.js +7278 -7264
- package/dist/main.umd.js +123 -123
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -364,7 +364,7 @@ export declare interface FloatingLabelProps {
|
|
|
364
364
|
|
|
365
365
|
export { FooterDetailsProps }
|
|
366
366
|
|
|
367
|
-
export declare function Form<T extends FieldValues>({ onSubmit,
|
|
367
|
+
export declare function Form<T extends FieldValues>({ onSubmit, children, ...rest }: FormProps<T>): default_2.JSX.Element;
|
|
368
368
|
|
|
369
369
|
declare interface FormDropdown extends Omit<ComponentProps<typeof Dropdown>, "onChange"> {
|
|
370
370
|
name: string;
|
|
@@ -373,7 +373,7 @@ declare interface FormDropdown extends Omit<ComponentProps<typeof Dropdown>, "on
|
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
declare interface FormProps<T extends FieldValues> extends UseFormProps<T> {
|
|
376
|
-
children: ReactNode | ((methods: UseFormReturn<T>) => ReactNode);
|
|
376
|
+
children: ReactNode | ((methods: UseFormReturn<T>) => ReactNode | default_2.JSX.Element);
|
|
377
377
|
onSubmit: (data: T, methods: UseFormReturn<T>) => void;
|
|
378
378
|
validationSchema?: Yup.ObjectSchema<T>;
|
|
379
379
|
}
|
|
@@ -765,6 +765,7 @@ export declare interface UserBadgeProps {
|
|
|
765
765
|
modalWidth: number;
|
|
766
766
|
emailSubject?: string;
|
|
767
767
|
emailBody?: string;
|
|
768
|
+
candidateName?: string;
|
|
768
769
|
}
|
|
769
770
|
|
|
770
771
|
export declare function UserStatus(props: UserStatusProps): default_2.JSX.Element;
|