docs(changeset): Search String and Better GoAPI functionality

This commit is contained in:
Hein
2025-10-29 16:26:38 +02:00
parent b977308e54
commit 57c72e656f
6 changed files with 83 additions and 19 deletions

View File

@@ -90,6 +90,7 @@ export interface GridlerProps extends PropsWithChildren {
rowHeight?: number;
scrollToRowKey?: number;
searchStr?: string;
sections?: {
bottom?: React.ReactNode;
left?: React.ReactNode;
@@ -106,8 +107,8 @@ export interface GridlerProps extends PropsWithChildren {
title?: string;
tooltipBarProps?: React.HTMLAttributes<HTMLDivElement>;
total_rows?: number;
uniqueid: string;
uniqueid: string;
values?: Array<Record<string, any>>;
width?: number | string;
}