vrfi-design-system 1.1.32 → 1.1.35

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
@@ -92,6 +92,8 @@ import { Size } from '../../enums/size.enum';
92
92
  import { Size as Size_2 } from '../../../enums/size.enum';
93
93
  import { SizeType } from 'antd/lib/config-provider/SizeContext';
94
94
  import { SizeType as SizeType_2 } from 'antd/es/config-provider/SizeContext';
95
+ import { default as Skeleton } from 'antd/lib/skeleton';
96
+ import { SkeletonProps } from 'antd/lib/skeleton';
95
97
  import { SliderRangeProps } from 'antd/lib/slider';
96
98
  import { SliderSingleProps } from 'antd';
97
99
  import { SorterResult } from 'antd/lib/table/interface';
@@ -227,13 +229,15 @@ export declare interface AvatarCardProps {
227
229
 
228
230
  export declare interface AvatarProps {
229
231
  names: string[];
232
+ className?: string;
233
+ minCount?: number;
230
234
  }
231
235
 
232
236
  export { AvatarSize }
233
237
 
234
238
  export declare function AvatarWithDetailsCard(props: AvatarCardProps): default_2.JSX.Element;
235
239
 
236
- export declare const AvatarWithInitials: ({ names }: AvatarProps) => default_2.JSX.Element;
240
+ export declare const AvatarWithInitials: ({ names, className, minCount, }: AvatarProps) => default_2.JSX.Element;
237
241
 
238
242
  export declare const Badge: FC<BadgeProps>;
239
243
 
@@ -318,7 +322,7 @@ export declare interface CheckboxSelectFieldProps extends SelectPropsBase {
318
322
  handleCheckboxChange?: (value: string) => void;
319
323
  }
320
324
 
321
- export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
325
+ export declare const CheckBoxWithFormWrapper: ({ name, onCheckboxChange, group, children, singleSelectionMode, customOptionDisplay, options, defaultValue, ...props }: CheckBoxWithFormWrapperProps) => default_2.JSX.Element;
322
326
 
323
327
  declare interface CheckBoxWithFormWrapperProps {
324
328
  children?: default_2.ReactNode;
@@ -331,6 +335,7 @@ declare interface CheckBoxWithFormWrapperProps {
331
335
  className?: string;
332
336
  singleSelectionMode?: boolean;
333
337
  customOptionDisplay?: boolean;
338
+ defaultValue?: boolean;
334
339
  }
335
340
 
336
341
  export { Col }
@@ -516,6 +521,7 @@ export declare interface EllipsisWithTooltipProps {
516
521
  textClassName?: string;
517
522
  copyText?: boolean;
518
523
  userId?: string;
524
+ lineClamp?: number;
519
525
  }
520
526
 
521
527
  declare type EmployerDataType = {
@@ -879,6 +885,17 @@ export declare interface RateProps extends Omit<RateProps_2, "characterRender" |
879
885
  isCandidate?: boolean;
880
886
  }
881
887
 
888
+ export declare const RatingCard: (props: RatingCardProps) => default_2.JSX.Element;
889
+
890
+ export declare interface RatingCardProps {
891
+ rating: string;
892
+ candidateNames: string[];
893
+ ratingStars: number;
894
+ date?: string;
895
+ time?: string;
896
+ className?: string;
897
+ }
898
+
882
899
  export declare const RoleManagement: (props: RoleManagementProps) => default_2.JSX.Element;
883
900
 
884
901
  export declare interface RoleManagementProps {
@@ -941,6 +958,10 @@ export declare interface SidebarProps {
941
958
 
942
959
  export { Size }
943
960
 
961
+ export { Skeleton }
962
+
963
+ export { SkeletonProps }
964
+
944
965
  export declare const Slider: default_2.FC<SliderProps>;
945
966
 
946
967
  export declare interface SliderProps extends SliderSingleProps {