vrfi-design-system 1.1.62 → 1.1.64
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 +18 -3
- package/dist/main.es.js +6119 -6110
- package/dist/main.umd.js +111 -111
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -35,6 +35,7 @@ import { DocumentStatusEnum as DocumentStatusEnum_2 } from '../../../enums/docum
|
|
|
35
35
|
import { DocVerificationStatus } from '../../enums/docVerificationStatus.enum';
|
|
36
36
|
import { DOM_ELEMENT_ROLE } from './../../enums/domElementRole.enum';
|
|
37
37
|
import { DrawerProps as DrawerProps_2 } from 'antd';
|
|
38
|
+
import { Dropdown } from 'antd';
|
|
38
39
|
import { FC } from 'react';
|
|
39
40
|
import { FieldValues } from 'react-hook-form';
|
|
40
41
|
import { FilterValue } from 'antd/lib/table/interface';
|
|
@@ -61,7 +62,10 @@ import { JSX as JSX_2 } from 'react';
|
|
|
61
62
|
import { Justify } from '../../enums/justify.enum';
|
|
62
63
|
import { LabelType } from './../../enums/labelType.enum';
|
|
63
64
|
import { LabelType as LabelType_2 } from '../../../enums/labelType.enum';
|
|
65
|
+
import { Layout } from 'antd';
|
|
64
66
|
import { LoaderSizes } from '../../../enums/LoaderSizes';
|
|
67
|
+
import { Menu } from 'antd';
|
|
68
|
+
import { MenuMode } from '../../enums/menuMode';
|
|
65
69
|
import { MenuProps } from 'antd/lib';
|
|
66
70
|
import { MobileInputValue } from '../types/mobileInputValue.type';
|
|
67
71
|
import { MobileInputValue as MobileInputValue_2 } from '../../../types/mobileInputValue.type';
|
|
@@ -537,6 +541,8 @@ export declare interface DrawerProps extends DrawerProps_2 {
|
|
|
537
541
|
subHeading?: string;
|
|
538
542
|
}
|
|
539
543
|
|
|
544
|
+
export { Dropdown }
|
|
545
|
+
|
|
540
546
|
export declare const EllipsisWithTooltip: default_2.FC<EllipsisWithTooltipProps>;
|
|
541
547
|
|
|
542
548
|
export declare interface EllipsisWithTooltipProps {
|
|
@@ -594,6 +600,7 @@ export declare interface FloatingLabelProps {
|
|
|
594
600
|
type?: LabelType_2;
|
|
595
601
|
customInput?: boolean;
|
|
596
602
|
className?: string;
|
|
603
|
+
manualFocus?: boolean;
|
|
597
604
|
}
|
|
598
605
|
|
|
599
606
|
export { FooterDetailsProps }
|
|
@@ -694,6 +701,8 @@ export declare interface LabelProps {
|
|
|
694
701
|
|
|
695
702
|
export { LabelType }
|
|
696
703
|
|
|
704
|
+
export { Layout }
|
|
705
|
+
|
|
697
706
|
export declare const ListingTableHeader: (props: ListingTableHeaderProps) => default_2.JSX.Element;
|
|
698
707
|
|
|
699
708
|
export declare interface ListingTableHeaderProps {
|
|
@@ -738,8 +747,14 @@ declare interface LooseMessage {
|
|
|
738
747
|
createdAt?: string;
|
|
739
748
|
}
|
|
740
749
|
|
|
750
|
+
export { Menu }
|
|
751
|
+
|
|
741
752
|
export declare type MenuItem = Required<MenuProps>["items"][number];
|
|
742
753
|
|
|
754
|
+
export { MenuMode }
|
|
755
|
+
|
|
756
|
+
export { MenuProps }
|
|
757
|
+
|
|
743
758
|
export { MobileInputValue }
|
|
744
759
|
|
|
745
760
|
export declare const Modal: default_2.FC<ModalProps>;
|
|
@@ -1170,16 +1185,16 @@ declare interface TabsProps extends TabsProps_2 {
|
|
|
1170
1185
|
innerRef?: default_2.RefObject<HTMLDivElement> | null;
|
|
1171
1186
|
}
|
|
1172
1187
|
|
|
1173
|
-
export declare const TextArea: ({ className, label,
|
|
1188
|
+
export declare const TextArea: ({ className, label, required, customInput, defaultValue, ...props }: TextAreaProps) => default_2.JSX.Element;
|
|
1174
1189
|
|
|
1175
1190
|
export declare interface TextAreaProps extends Omit<TextAreaProps_2, "value"> {
|
|
1176
1191
|
label?: string;
|
|
1177
|
-
value?: string;
|
|
1178
1192
|
required?: boolean;
|
|
1179
1193
|
customInput?: boolean;
|
|
1194
|
+
defaultValue?: string;
|
|
1180
1195
|
}
|
|
1181
1196
|
|
|
1182
|
-
export declare const TextAreaWithController: ({ label, placeholder, required, name, customInput, ...rest }: TextAreaWithControllerProps) => default_2.JSX.Element;
|
|
1197
|
+
export declare const TextAreaWithController: ({ label, placeholder, required, name, customInput, defaultValue, ...rest }: TextAreaWithControllerProps) => default_2.JSX.Element;
|
|
1183
1198
|
|
|
1184
1199
|
export declare type TextAreaWithControllerProps = CustomInputProps & TextAreaProps_2;
|
|
1185
1200
|
|