@ng-flexy/form-bootstrap
Version:
Flexy components and tools to build Angular 8+ applications
20 lines (19 loc) • 898 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import { FormControl } from '@angular/forms';
import * as i0 from "@angular/core";
export declare class FlexyControlPercentComponent implements OnInit {
control: FormControl;
default: string;
min: number;
max: number;
step: number;
readonly: boolean;
focused: EventEmitter<Event>;
clicked: EventEmitter<Event>;
changed: EventEmitter<Event>;
percentValue: number;
ngOnInit(): void;
onChange(event: any): void;
static ɵfac: i0.ɵɵFactoryDef<FlexyControlPercentComponent, never>;
static ɵcmp: i0.ɵɵComponentDefWithMeta<FlexyControlPercentComponent, "flexy-control-percent", never, { "control": "control"; "default": "default"; "min": "min"; "max": "max"; "step": "step"; "readonly": "readonly"; }, { "focused": "focused"; "clicked": "clicked"; "changed": "changed"; }, never, never>;
}