@progress/kendo-angular-label
Version:
Kendo UI Label for Angular
22 lines (21 loc) • 961 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Observable } from 'rxjs';
import { NgControl } from '@angular/forms';
import { EventEmitter } from '@angular/core';
/**
* @hidden
*/
export declare class FloatingLabelInputAdapter {
private component;
onFocus: Observable<any> | EventEmitter<any>;
onBlur: Observable<any> | EventEmitter<any>;
autoFillStart: Observable<any> | EventEmitter<any>;
autoFillEnd: Observable<any> | EventEmitter<any>;
onValueChange: Observable<any> | EventEmitter<any>;
get focusableId(): string;
set focusableId(value: string);
constructor(component: any, formControl?: NgControl);
}