@hybr1d-tech/charizard 0.7.124 → 0.7.126
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/hybr1d-ui.js +11 -5
- package/dist/hybr1d-ui.umd.cjs +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2600,11 +2600,12 @@ declare type TableCustomColumns = {
|
|
|
2600
2600
|
table_name: string;
|
|
2601
2601
|
};
|
|
2602
2602
|
|
|
2603
|
-
export declare function TableDeviceCell({ device, onClick }: TableDeviceCellProps): JSX_2.Element;
|
|
2603
|
+
export declare function TableDeviceCell({ device, onClick, customStyle }: TableDeviceCellProps): JSX_2.Element;
|
|
2604
2604
|
|
|
2605
2605
|
declare interface TableDeviceCellProps {
|
|
2606
2606
|
device: any;
|
|
2607
2607
|
onClick: any;
|
|
2608
|
+
customStyle?: React.CSSProperties;
|
|
2608
2609
|
}
|
|
2609
2610
|
|
|
2610
2611
|
declare type TableFilters = {
|