Lib: Add table component

This commit is contained in:
2024-12-18 15:00:05 +01:00
parent 05e32b5ffb
commit 1a95317a74
3 changed files with 84 additions and 15 deletions

View File

@ -0,0 +1,10 @@
export interface TableColumn {
/** The name of the property containing the value. */
data_value_name: string;
/** The columnname for this property. */
label: string;
/** Any function to further customize the displayed value. May return HTML. */
valuefun?: (value: any) => string;
}