fix: update onTab prop type to accept any value for improved flexibility
This commit is contained in:
parent
056f023223
commit
6e0a8b5e4d
|
|
@ -10,7 +10,7 @@ export interface TableUIProps<T extends object> extends TableListProps<T> {
|
||||||
tabHeader?: ((local: any) => React.ReactNode) | React.ReactNode;
|
tabHeader?: ((local: any) => React.ReactNode) | React.ReactNode;
|
||||||
modeTab?: "default" | "only-title";
|
modeTab?: "default" | "only-title";
|
||||||
tab?: { id: string; name: string; count?: number | null }[]; // ✅ Update count menjadi nullable
|
tab?: { id: string; name: string; count?: number | null }[]; // ✅ Update count menjadi nullable
|
||||||
onTab?: (tabId: string | null | undefined) => void;
|
onTab?: (tabId: any) => void;
|
||||||
breadcrumb?: { label: string; href: string }[];
|
breadcrumb?: { label: string; href: string }[];
|
||||||
title?: string;
|
title?: string;
|
||||||
ready?: boolean;
|
ready?: boolean;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue