API
This section describes the API of the ui-company-kit library.
Interfaces
FormField
interface FormField {
label?: string;
name?: string;
required?: boolean;
mask?: string;
class?: string;
formGroup?: () => FormGroup<any>;
formControl?: () => FormControl<any>;
group?: FormField[];
AccountCreationField
interface AccountCreationField {
name: string;
label: string;
class?: string;
mask?: string;
}