src/app/child-dev-project/notes/note-details/note-details-config.interface.ts
Configuration interface for the NoteDetailsComponent. Defines the three configurable form sections that can be edited in the Admin UI.
Properties |
|
bottomForm |
bottomForm:
|
Type : string[]
|
Optional |
Field names to be displayed in the bottom form section. |
middleForm |
middleForm:
|
Type : string[]
|
Optional |
Field names to be displayed in the middle form section. |
topForm |
topForm:
|
Type : string[]
|
Optional |
Field names to be displayed in the top form section. |
export interface NoteDetailsConfig {
/**
* Field names to be displayed in the top form section.
*/
topForm?: string[];
/**
* Field names to be displayed in the middle form section.
*/
middleForm?: string[];
/**
* Field names to be displayed in the bottom form section.
*/
bottomForm?: string[];
}