Type schemaOverrides
This commit is contained in:
parent
1714a3cc1d
commit
421cefaa9b
|
@ -9,7 +9,15 @@ interface ConfigStore {
|
|||
initialSortOrder: any
|
||||
initialFilter: any
|
||||
fixedRowHeight: Readable<number>
|
||||
schemaOverrides: any
|
||||
schemaOverrides: Readable<
|
||||
Record<
|
||||
string,
|
||||
{
|
||||
displayName?: string
|
||||
disabled?: boolean
|
||||
}
|
||||
>
|
||||
>
|
||||
notifySuccess: any
|
||||
notifyError: any
|
||||
rowConditions: any
|
||||
|
|
|
@ -27,6 +27,7 @@ export type UIFieldSchema = FieldSchema &
|
|||
related?: { field: string; subField: string }
|
||||
columns?: Record<string, UIRelationSchemaField>
|
||||
cellRenderType?: string
|
||||
disabled?: boolean
|
||||
}
|
||||
|
||||
interface UIRelationSchemaField extends RelationSchemaField {
|
||||
|
|
Loading…
Reference in New Issue