vrfi-design-system 1.0.45 → 1.0.46
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 +24 -2
- package/dist/main.es.js +3532 -3485
- package/dist/main.umd.js +97 -97
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ import { GenderProfileEnum } from '../../enums/genderProfile.enum';
|
|
|
34
34
|
import { GenderProfileEnum as GenderProfileEnum_2 } from '../../../enums/genderProfile.enum';
|
|
35
35
|
import { HtmlButtonType } from '../../enums/buttonType';
|
|
36
36
|
import { Icons } from '../../enums/icons.enum';
|
|
37
|
+
import { Icons as Icons_2 } from '../../../enums/icons.enum';
|
|
37
38
|
import { InputProps } from 'antd/lib';
|
|
38
39
|
import { InputProps as InputProps_2 } from 'antd';
|
|
39
40
|
import { InputTypes } from '../../enums/inputType.enum';
|
|
@@ -83,6 +84,7 @@ import { TableProps as TableProps_2 } from 'rc-table/lib/Table';
|
|
|
83
84
|
import { TableProps as TableProps_3 } from 'antd';
|
|
84
85
|
import { TableType } from '../../enums/tableType.enum';
|
|
85
86
|
import { TableType as TableType_2 } from '../../../enums/tableType.enum';
|
|
87
|
+
import { TextAreaProps as TextAreaProps_2 } from 'antd/es/input';
|
|
86
88
|
import { TitleHeaderStatus } from '../../enums/titleHeaderStatus.enum';
|
|
87
89
|
import { TitleHeaderStatus as TitleHeaderStatus_2 } from '../../../enums/titleHeaderStatus.enum';
|
|
88
90
|
import { tooltipPosition } from '../../../enums/tooltipPosition';
|
|
@@ -457,13 +459,19 @@ export declare interface PasswordValidationProps {
|
|
|
457
459
|
validationRules: ValidationRuleProps[];
|
|
458
460
|
}
|
|
459
461
|
|
|
462
|
+
export declare const PathIcon: default_2.MemoExoticComponent<({ count, className }: PathIconProps) => default_2.JSX.Element>;
|
|
463
|
+
|
|
464
|
+
declare interface PathIconProps {
|
|
465
|
+
count?: number;
|
|
466
|
+
className: Icons_2;
|
|
467
|
+
}
|
|
468
|
+
|
|
460
469
|
export { Placement }
|
|
461
470
|
|
|
462
471
|
export declare const PreviewCard: default_2.FC<PreviewCardProps>;
|
|
463
472
|
|
|
464
473
|
declare interface PreviewCardProps {
|
|
465
474
|
fileName: string;
|
|
466
|
-
onRemove: () => void;
|
|
467
475
|
url?: string;
|
|
468
476
|
showPreviewIcon?: boolean;
|
|
469
477
|
className?: string;
|
|
@@ -653,8 +661,21 @@ export declare interface TabsProps {
|
|
|
653
661
|
tabPosition?: "top" | "bottom" | "right" | "left";
|
|
654
662
|
type?: "line" | "card" | "editable-card";
|
|
655
663
|
onEdit?: () => void;
|
|
664
|
+
onChange?: (activeKey: string) => void;
|
|
656
665
|
}
|
|
657
666
|
|
|
667
|
+
export declare const TextArea: ({ className, label, value, required, ...props }: TextAreaProps) => default_2.JSX.Element;
|
|
668
|
+
|
|
669
|
+
export declare interface TextAreaProps extends Omit<TextAreaProps_2, "value"> {
|
|
670
|
+
label?: string;
|
|
671
|
+
value?: string;
|
|
672
|
+
required?: boolean;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
export declare const TextAreaWithController: ({ label, type, placeholder, required, ...rest }: TextAreaWithControllerProps) => default_2.JSX.Element;
|
|
676
|
+
|
|
677
|
+
export declare type TextAreaWithControllerProps = CustomInputProps & TextAreaProps_2;
|
|
678
|
+
|
|
658
679
|
export declare const TitleHeader: (props: TitleHeaderProps) => default_2.JSX.Element;
|
|
659
680
|
|
|
660
681
|
export declare interface TitleHeaderProps {
|
|
@@ -708,10 +729,11 @@ export declare interface UserBadgeProps {
|
|
|
708
729
|
address: string;
|
|
709
730
|
inviteLinkIncluded?: boolean;
|
|
710
731
|
inviteLink?: string;
|
|
711
|
-
shareLink?: string;
|
|
712
732
|
onClose: () => void;
|
|
713
733
|
visible: boolean;
|
|
714
734
|
modalWidth: number;
|
|
735
|
+
emailSubject?: string;
|
|
736
|
+
emailBody?: string;
|
|
715
737
|
}
|
|
716
738
|
|
|
717
739
|
export declare function UserStatus(props: UserStatusProps): default_2.JSX.Element;
|