1 | import { AfterContentInit, OnDestroy, QueryList } from '@angular/core';
|
2 | import { Subject } from 'rxjs';
|
3 | import { NbBooleanInput } from '../helpers';
|
4 | import { NbOptionComponent } from './option.component';
|
5 | import * as i0 from "@angular/core";
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 | export declare class NbOptionGroupComponent implements AfterContentInit, OnDestroy {
|
19 | protected destroy$: Subject<void>;
|
20 | title: string;
|
21 | get disabled(): boolean;
|
22 | set disabled(value: boolean);
|
23 | protected _disabled: boolean;
|
24 | static ngAcceptInputType_disabled: NbBooleanInput;
|
25 | get disabledAttribute(): '' | null;
|
26 | options: QueryList<NbOptionComponent<any>>;
|
27 | ngAfterContentInit(): void;
|
28 | ngOnDestroy(): void;
|
29 | |
30 |
|
31 |
|
32 | protected updateOptionsDisabledState(): void;
|
33 | |
34 |
|
35 |
|
36 |
|
37 |
|
38 | protected asyncUpdateOptionsDisabledState(): void;
|
39 | static ɵfac: i0.ɵɵFactoryDeclaration<NbOptionGroupComponent, never>;
|
40 | static ɵcmp: i0.ɵɵComponentDeclaration<NbOptionGroupComponent, "nb-option-group", never, { "title": { "alias": "title"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, ["options"], ["nb-option, ng-container"], false, never>;
|
41 | }
|