vrfi-design-system 1.0.11 → 1.0.13
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 +32 -0
- package/dist/main.es.js +15053 -13564
- package/dist/main.umd.js +118 -102
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,15 +16,20 @@ import { DrawerProps as DrawerProps_2 } from 'antd';
|
|
|
16
16
|
import { FC } from 'react';
|
|
17
17
|
import { FieldValues } from 'react-hook-form';
|
|
18
18
|
import { FilterValue } from 'antd/lib/table/interface';
|
|
19
|
+
import { FooterDetailsProps } from '../types/footerDetails';
|
|
20
|
+
import { FooterDetailsProps as FooterDetailsProps_2 } from '../../types/footerDetails';
|
|
19
21
|
import { InputProps } from 'antd/lib';
|
|
20
22
|
import { JSX as JSX_2 } from 'react';
|
|
21
23
|
import { LoaderSizes } from '../../../enums/LoaderSizes';
|
|
24
|
+
import { MenuItemType } from 'antd/lib/menu/interface';
|
|
22
25
|
import { ModalProps as ModalProps_2 } from 'antd/lib/modal';
|
|
23
26
|
import { MouseEvent as MouseEvent_2 } from 'react';
|
|
24
27
|
import { Radio as Radio_2 } from 'antd';
|
|
25
28
|
import { ReactElement } from 'react';
|
|
26
29
|
import { ReactNode } from 'react';
|
|
27
30
|
import { SelectProps } from 'antd';
|
|
31
|
+
import { SidebarMenuProps } from '../types/SidebarRouteProps';
|
|
32
|
+
import { SidebarMenuProps as SidebarMenuProps_2 } from '../..//types/SidebarRouteProps';
|
|
28
33
|
import { SizeType } from 'antd/lib/config-provider/SizeContext';
|
|
29
34
|
import { SkeletonProps } from 'antd';
|
|
30
35
|
import { SorterResult } from 'antd/lib/table/interface';
|
|
@@ -188,6 +193,8 @@ export declare interface FloatingLabelProps {
|
|
|
188
193
|
value: string;
|
|
189
194
|
}
|
|
190
195
|
|
|
196
|
+
export { FooterDetailsProps }
|
|
197
|
+
|
|
191
198
|
declare interface FormDropdown extends Omit<ComponentProps<typeof Dropdown>, "onChange"> {
|
|
192
199
|
control: any;
|
|
193
200
|
rules: any;
|
|
@@ -243,6 +250,8 @@ export declare interface OfflineProps {
|
|
|
243
250
|
isOffline: boolean;
|
|
244
251
|
}
|
|
245
252
|
|
|
253
|
+
export declare const PasswordValidation: default_2.FC;
|
|
254
|
+
|
|
246
255
|
export declare const Radio: ({ label, ...props }: RadioProps) => default_2.JSX.Element;
|
|
247
256
|
|
|
248
257
|
declare interface RadioButtonProps {
|
|
@@ -260,8 +269,31 @@ export declare interface SearchComponentProps {
|
|
|
260
269
|
|
|
261
270
|
export declare const SearchField: FC<SearchComponentProps>;
|
|
262
271
|
|
|
272
|
+
export declare const Sidebar: default_2.FC<SidebarProps>;
|
|
273
|
+
|
|
274
|
+
export { SidebarMenuProps }
|
|
275
|
+
|
|
276
|
+
declare interface SidebarProps {
|
|
277
|
+
activeMenu: string;
|
|
278
|
+
menus: SidebarMenuProps_2[];
|
|
279
|
+
footerDetails: FooterDetailsProps_2;
|
|
280
|
+
popoverContent: default_2.ReactNode;
|
|
281
|
+
onClick: MenuItemType["onClick"];
|
|
282
|
+
}
|
|
283
|
+
|
|
263
284
|
export declare const Skeleton: FC<SkeletonProps>;
|
|
264
285
|
|
|
286
|
+
declare interface Stats {
|
|
287
|
+
label: string;
|
|
288
|
+
value: string | number;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
export declare const StatsBanner: default_2.FC<StatsBannerProps>;
|
|
292
|
+
|
|
293
|
+
declare interface StatsBannerProps {
|
|
294
|
+
stats: Stats[];
|
|
295
|
+
}
|
|
296
|
+
|
|
265
297
|
declare interface StepItem extends StepProps {
|
|
266
298
|
component?: default_2.ReactElement;
|
|
267
299
|
}
|