vrfi-design-system 1.0.62 → 1.0.63

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
@@ -95,6 +95,7 @@ import { TableProps } from 'antd';
95
95
  import { TableProps as TableProps_2 } from 'rc-table/lib/Table';
96
96
  import { TableType } from '../../enums/tableType.enum';
97
97
  import { TableType as TableType_2 } from '../../../enums/tableType.enum';
98
+ import { TabsProps as TabsProps_2 } from 'antd';
98
99
  import { TextAreaProps as TextAreaProps_2 } from 'antd/es/input';
99
100
  import { TitleHeaderStatus } from '../../enums/titleHeaderStatus.enum';
100
101
  import { TitleHeaderStatus as TitleHeaderStatus_2 } from '../../../enums/titleHeaderStatus.enum';
@@ -726,7 +727,7 @@ export { TableType }
726
727
 
727
728
  export declare const Tabs: FC<TabsProps>;
728
729
 
729
- export declare interface TabsProps {
730
+ export declare interface TabsProps extends TabsProps_2 {
730
731
  activeKey?: string;
731
732
  addIcon?: ReactNode;
732
733
  centered?: boolean;
@@ -736,10 +737,9 @@ export declare interface TabsProps {
736
737
  moreIcon?: ReactNode;
737
738
  tabBarGutter?: number;
738
739
  tabBarStyle?: CSSProperties;
739
- tabPosition?: "top" | "bottom" | "right" | "left";
740
- type?: "line" | "card" | "editable-card";
740
+ tabPosition?: 'top' | 'bottom' | 'right' | 'left';
741
+ type?: 'line' | 'card' | 'editable-card';
741
742
  onEdit?: () => void;
742
- onChange?: (activeKey: string) => void;
743
743
  }
744
744
 
745
745
  export declare const TextArea: ({ className, label, value, required, ...props }: TextAreaProps) => default_2.JSX.Element;