ngx-sp-infra 6.5.16 → 6.5.17
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,
|
|
1
|
+
import { AfterViewInit, 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,7 +32,6 @@ 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;
|
|
36
35
|
protected textoPesquisa: string;
|
|
37
36
|
protected get ariaExpanded(): boolean;
|
|
38
37
|
protected set ariaExpanded(value: boolean);
|
|
@@ -126,7 +125,7 @@ export declare class LibComboboxComponent implements OnInit, AfterViewInit, OnDe
|
|
|
126
125
|
showSearchInput: boolean;
|
|
127
126
|
/** Foca no input de pesquisa interna, levando em consideração se ele está escondido ou não. */
|
|
128
127
|
focusSearchInput(): void;
|
|
129
|
-
constructor(
|
|
128
|
+
constructor();
|
|
130
129
|
ngOnInit(): void;
|
|
131
130
|
ngAfterViewInit(): void;
|
|
132
131
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -65,7 +65,6 @@ export declare class LibComboboxReworkComponent<T = RecordCombobox> implements C
|
|
|
65
65
|
registerOnTouched(fn: () => void): void;
|
|
66
66
|
setDisabledState?(isDisabled: boolean): void;
|
|
67
67
|
toggleDropdown(): void;
|
|
68
|
-
openDropdown(): void;
|
|
69
68
|
closeDropdown(): void;
|
|
70
69
|
onBlurOutside(event: FocusEvent): void;
|
|
71
70
|
/** Define a largura máxima em pixels com base na largura do container pai
|