File

src/app/core/entity/entity-field-edit/dynamic-edit/edit-component.interface.ts

Description

Interface for custom edit components. The inputs are passed on by the DynamicEditComponent.

Index

Properties

Properties

entity
entity: InputSignal<Entity | undefined>
Type : InputSignal<Entity | undefined>
Optional
formFieldConfig
formFieldConfig: InputSignal<FormFieldConfig | undefined>
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>;
}

results matching ""

    No results matching ""