angular-dynamic-forms-lite
Version:
Efficient dynamic and customizable Angular 7+ forms.
13 lines (12 loc) • 523 B
TypeScript
import { InlineForm } from "./inline-form";
import { FormFieldSettings } from "../../form-settings/form-field-settings";
import { FormComponentsByType } from "../../form-field/form-field-type";
export declare class InlineSettingsResolver {
private defaultFormComponents?;
private readonly resolvers;
constructor(defaultFormComponents?: FormComponentsByType);
resolve(inlineForm: InlineForm): FormFieldSettings;
private resolveSettings;
private createPartialSetting;
private componentResolver;
}