ngx-sp-infra 6.5.15 → 6.5.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AbstractControl, FormControl } from '@angular/forms';
|
|
3
3
|
import { RecordCombobox } from '../../models/combobox/record-combobox';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -32,6 +32,7 @@ import * as i0 from "@angular/core";
|
|
|
32
32
|
* - `onReloadList` (EventEmitter<string>): Evento emitido quando a lista precisa ser recarregada.
|
|
33
33
|
*/
|
|
34
34
|
export declare class LibComboboxComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
|
|
35
|
+
private _cdr;
|
|
35
36
|
protected textoPesquisa: string;
|
|
36
37
|
protected get ariaExpanded(): boolean;
|
|
37
38
|
protected set ariaExpanded(value: boolean);
|
|
@@ -125,7 +126,7 @@ export declare class LibComboboxComponent implements OnInit, AfterViewInit, OnDe
|
|
|
125
126
|
showSearchInput: boolean;
|
|
126
127
|
/** Foca no input de pesquisa interna, levando em consideração se ele está escondido ou não. */
|
|
127
128
|
focusSearchInput(): void;
|
|
128
|
-
constructor();
|
|
129
|
+
constructor(_cdr: ChangeDetectorRef);
|
|
129
130
|
ngOnInit(): void;
|
|
130
131
|
ngAfterViewInit(): void;
|
|
131
132
|
ngOnChanges(changes: SimpleChanges): void;
|