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