@ambuj.bhaskar/react-component-library 0.15.0-alpha → 0.16.0-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/assets/index.css +1 -1
- package/dist/index.cjs +222 -99
- package/dist/index.d.ts +10 -0
- package/dist/index.js +33905 -19825
- package/dist/index.umd.js +221 -98
- package/package.json +1 -1
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>;
|
|
@@ -388,6 +389,15 @@ export declare type SwitchProps = {
|
|
|
388
389
|
disabledBackgroundColor?: Color;
|
|
389
390
|
};
|
|
390
391
|
|
|
392
|
+
export declare const Table: default_2.FC<TableProps>;
|
|
393
|
+
|
|
394
|
+
export declare type TableProps = TableProps_2 & {
|
|
395
|
+
headerBackgroundColor?: Color;
|
|
396
|
+
bodyBackgroundColor?: Color;
|
|
397
|
+
titleBackgroundColor?: Color;
|
|
398
|
+
footerBackgroundColor?: Color;
|
|
399
|
+
};
|
|
400
|
+
|
|
391
401
|
declare type TextSize = "xs" | "s" | "m" | "l" | "xl";
|
|
392
402
|
|
|
393
403
|
export declare type ThemeObject = {
|