ngx-schema-forms
Version:
New features: - Ajv schema validator. - Angular forms compatible: Property tree is created using FormGroup, FormArray and FormControl classes. - Array now properly loads initial data from model. - WidgetTyep: WidgetRegistry now supports WidgetType, now wo
13 lines (12 loc) • 322 B
TypeScript
import { FieldsetWidget } from '../../base/fieldset.widget';
import { Widget } from '../../base/widget';
export interface Tab {
title: string;
fields: string[];
}
export interface Tabs extends Widget {
tabs: Tab[];
}
export declare class TabsComponent extends FieldsetWidget<Tabs> {
selectedTab: number;
}