@hybr1d-tech/charizard 0.7.18 → 0.7.20
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 +1401 -1384
- package/dist/hybr1d-ui.umd.cjs +8 -8
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2669,7 +2669,7 @@ declare interface TagProps {
|
|
|
2669
2669
|
customStyles?: React.CSSProperties;
|
|
2670
2670
|
}
|
|
2671
2671
|
|
|
2672
|
-
export declare function TaskCards({ headers, data, isLoading, isError, emptyText, paginationConfig, }: TaskCardsProps): JSX_2.Element;
|
|
2672
|
+
export declare function TaskCards({ headers, data, isLoading, isError, emptyText, paginationConfig, onClicks, }: TaskCardsProps): JSX_2.Element;
|
|
2673
2673
|
|
|
2674
2674
|
export declare interface TaskCardsProps {
|
|
2675
2675
|
headers: string[];
|
|
@@ -2688,6 +2688,7 @@ export declare interface TaskCardsProps {
|
|
|
2688
2688
|
limit: number;
|
|
2689
2689
|
setLimit: (limit: number) => void;
|
|
2690
2690
|
};
|
|
2691
|
+
onClicks?: any[];
|
|
2691
2692
|
}
|
|
2692
2693
|
|
|
2693
2694
|
/**
|