vrfi-design-system 1.0.15 → 1.0.16

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
@@ -41,6 +41,7 @@ import { SidebarMenuProps } from '../types/SidebarRouteProps';
41
41
  import { SizeType } from 'antd/lib/config-provider/SizeContext';
42
42
  import { SkeletonProps } from 'antd';
43
43
  import { SorterResult } from 'antd/lib/table/interface';
44
+ import { default as Space } from 'antd/lib/space';
44
45
  import { StepProps } from 'antd';
45
46
  import { StepsProps } from 'antd';
46
47
  import { default as Switch } from 'antd/lib/switch';
@@ -50,6 +51,7 @@ import { TablePaginationConfig } from 'antd';
50
51
  import { TableProps } from 'antd/lib/table';
51
52
  import { TableProps as TableProps_2 } from 'rc-table/lib/Table';
52
53
  import { TableProps as TableProps_3 } from 'antd';
54
+ import { TitleHeaderStatus } from '../../enums/titleHeaderStatus.enum';
53
55
  import { tooltipPosition } from '../../../enums/tooltipPosition';
54
56
  import { UploadFile } from 'antd/lib/upload/interface';
55
57
 
@@ -97,11 +99,12 @@ export declare interface ButtonProps {
97
99
  moduleClassName?: string;
98
100
  icon?: any;
99
101
  disabled?: boolean;
100
- size?: "small" | "medium" | "large";
102
+ size?: SizeType;
101
103
  loading?: boolean;
102
104
  name?: string;
103
105
  target?: string;
104
106
  href?: string;
107
+ block?: boolean;
105
108
  }
106
109
 
107
110
  export { ButtonType }
@@ -391,6 +394,8 @@ export { SidebarMenuProps }
391
394
 
392
395
  export declare const Skeleton: FC<SkeletonProps>;
393
396
 
397
+ export { Space }
398
+
394
399
  declare interface StepItem extends StepProps {
395
400
  component?: default_2.ReactElement;
396
401
  }
@@ -440,6 +445,14 @@ export declare interface TitleHeaderProps {
440
445
  subHeading?: string;
441
446
  icon?: JSX.Element;
442
447
  description?: string;
448
+ active?: TitleHeaderStatus_2;
449
+ }
450
+
451
+ export { TitleHeaderStatus }
452
+
453
+ declare enum TitleHeaderStatus_2{
454
+ ACTIVE='active',
455
+ INACTIVE='inactive',
443
456
  }
444
457
 
445
458
  export declare const Tooltip: FC<TooltipProps>;