xui
Version:
xUI Components for Angular
24 lines (23 loc) • 1.03 kB
TypeScript
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
import { BooleanInput } from '@angular/cdk/coercion';
import { SelectAccessor, SelectValue } from './select.types';
import * as i0 from "@angular/core";
export declare class OptionComponent implements OnInit, AfterViewInit {
private select;
private cdr;
static ngAcceptInputType_disabled: BooleanInput;
value: SelectValue;
disabled: boolean;
contentRef: ElementRef;
get isSelected(): boolean;
get styles(): {
[klass: string]: boolean;
};
get viewValue(): string;
constructor(select: SelectAccessor, cdr: ChangeDetectorRef);
ngOnInit(): void;
ngAfterViewInit(): void;
click(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<OptionComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<OptionComponent, "xui-option", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, ["*"], false, never>;
}