@ambuj.bhaskar/react-component-library 0.15.0-alpha → 0.16.1-alpha

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
@@ -5,6 +5,7 @@ import { JSX as JSX_2 } from 'react/jsx-runtime';
5
5
  import * as React_2 from 'react';
6
6
  import { ReactNode } from 'react';
7
7
  import { SetStateAction } from 'react';
8
+ import { TableProps as TableProps_2 } from 'antd';
8
9
  import { TimeRangePickerProps } from 'antd';
9
10
 
10
11
  export declare const Badge: React.FC<BadgeProps>;
@@ -51,6 +52,7 @@ export declare type ButtonGroupProps = {
51
52
  onChange?: (value: string | number) => void;
52
53
  color?: Color;
53
54
  gap?: CSSstring;
55
+ width?: CSSstring;
54
56
  };
55
57
 
56
58
  export declare type ButtonProps = HTMLButtonProps & {
@@ -388,6 +390,15 @@ export declare type SwitchProps = {
388
390
  disabledBackgroundColor?: Color;
389
391
  };
390
392
 
393
+ export declare const Table: default_2.FC<TableProps>;
394
+
395
+ export declare type TableProps = TableProps_2 & {
396
+ headerBackgroundColor?: Color;
397
+ bodyBackgroundColor?: Color;
398
+ titleBackgroundColor?: Color;
399
+ footerBackgroundColor?: Color;
400
+ };
401
+
391
402
  declare type TextSize = "xs" | "s" | "m" | "l" | "xl";
392
403
 
393
404
  export declare type ThemeObject = {