vrfi-design-system 1.1.34 → 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 +21 -1
- package/dist/main.es.js +32697 -30236
- package/dist/main.umd.js +207 -185
- package/dist/style.css +1 -1
- package/package.json +1 -1
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
|
|
|
@@ -517,6 +521,7 @@ export declare interface EllipsisWithTooltipProps {
|
|
|
517
521
|
textClassName?: string;
|
|
518
522
|
copyText?: boolean;
|
|
519
523
|
userId?: string;
|
|
524
|
+
lineClamp?: number;
|
|
520
525
|
}
|
|
521
526
|
|
|
522
527
|
declare type EmployerDataType = {
|
|
@@ -880,6 +885,17 @@ export declare interface RateProps extends Omit<RateProps_2, "characterRender" |
|
|
|
880
885
|
isCandidate?: boolean;
|
|
881
886
|
}
|
|
882
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
|
+
|
|
883
899
|
export declare const RoleManagement: (props: RoleManagementProps) => default_2.JSX.Element;
|
|
884
900
|
|
|
885
901
|
export declare interface RoleManagementProps {
|
|
@@ -942,6 +958,10 @@ export declare interface SidebarProps {
|
|
|
942
958
|
|
|
943
959
|
export { Size }
|
|
944
960
|
|
|
961
|
+
export { Skeleton }
|
|
962
|
+
|
|
963
|
+
export { SkeletonProps }
|
|
964
|
+
|
|
945
965
|
export declare const Slider: default_2.FC<SliderProps>;
|
|
946
966
|
|
|
947
967
|
export declare interface SliderProps extends SliderSingleProps {
|