src/app/core/entity/entity-field-edit/dynamic-edit/edit-component.interface.ts
Interface for custom edit components. The inputs are passed on by the DynamicEditComponent.
Properties |
|
| entity |
entity:
|
Type : InputSignal<Entity | undefined>
|
| Optional |
| formFieldConfig |
formFieldConfig:
|
Type : InputSignal<FormFieldConfig | undefined>
|
| Optional |
import { InputSignal } from "@angular/core";
import { Entity } from "#src/app/core/entity/model/entity";
import { FormFieldConfig } from "#src/app/core/common-components/entity-form/FormConfig";
/**
* Interface for custom edit components.
* The inputs are passed on by the DynamicEditComponent.
*/
export interface EditComponent {
formFieldConfig?: InputSignal<FormFieldConfig | undefined>;
entity?: InputSignal<Entity | undefined>;
}