vrfi-design-system 1.1.71 → 1.1.73

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
@@ -41,6 +41,7 @@ import { FieldValues } from 'react-hook-form';
41
41
  import { FilterValue } from 'antd/lib/table/interface';
42
42
  import { FooterDetailsProps } from '../types/footerDetails';
43
43
  import { FooterDetailsProps as FooterDetailsProps_2 } from '../../types/footerDetails';
44
+ import { FormValidationTriggers } from '../../enums/formTriggers.enum';
44
45
  import { GenderProfileEnum } from '../../enums/genderProfile.enum';
45
46
  import { GenderProfileEnum as GenderProfileEnum_2 } from '../../../enums/genderProfile.enum';
46
47
  import { GenderValueEnum } from '../../enums/genderProfile.enum';
@@ -619,6 +620,8 @@ declare interface FormProps<T extends FieldValues> extends UseFormProps<T> {
619
620
  methods?: UseFormReturn<T>;
620
621
  }
621
622
 
623
+ export { FormValidationTriggers }
624
+
622
625
  export { GenderProfileEnum }
623
626
 
624
627
  export { GenderValueEnum }
@@ -982,6 +985,18 @@ export declare interface RatingCardProps {
982
985
  className?: string;
983
986
  }
984
987
 
988
+ export declare const RatingStar: default_2.FC<RatingStarProps>;
989
+
990
+ export declare interface RatingStarProps {
991
+ rating?: number;
992
+ defaultRating?: number;
993
+ max?: number;
994
+ size?: number;
995
+ onChange?: (value: number) => void;
996
+ readOnly?: boolean;
997
+ isCandidate?: boolean;
998
+ }
999
+
985
1000
  export declare const RoleManagement: (props: RoleManagementProps) => default_2.JSX.Element;
986
1001
 
987
1002
  export declare interface RoleManagementProps {