@koalarx/ui
Version:
Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.
21 lines (20 loc) • 1.08 kB
TypeScript
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
import { UntypedFormGroup } from '@angular/forms';
import { ThemePalette } from '@angular/material/core';
import { BehaviorSubject } from 'rxjs';
import * as i0 from "@angular/core";
export declare class BtnSubmitComponent implements OnInit, OnChanges {
fg: UntypedFormGroup;
color: ThemePalette;
btnLabel: string;
btnSubmitDisabled: boolean;
loader: BehaviorSubject<boolean>;
iconButton: boolean;
icon: string;
iconColor: 'blue' | 'red' | 'yellow' | 'black' | 'green';
disabled: BehaviorSubject<boolean>;
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
static ɵfac: i0.ɵɵFactoryDeclaration<BtnSubmitComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<BtnSubmitComponent, "koala-submit", never, { "fg": "fg"; "color": "color"; "btnLabel": "btnLabel"; "btnSubmitDisabled": "btnSubmitDisabled"; "loader": "loader"; "iconButton": "iconButton"; "icon": "icon"; "iconColor": "iconColor"; }, {}, never, never, false>;
}