ngx-sp-infra 6.5.14 → 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;
|
|
@@ -8,14 +8,14 @@ export declare class LibComboboxReworkComponent<T = RecordCombobox> implements C
|
|
|
8
8
|
private _elementRef;
|
|
9
9
|
private mutationObserver;
|
|
10
10
|
/** Valor interno do componente */
|
|
11
|
+
private _list;
|
|
11
12
|
private _value;
|
|
12
13
|
private _search$;
|
|
13
14
|
private _onTouched;
|
|
14
15
|
private _onChange;
|
|
15
16
|
private _destroy$;
|
|
16
|
-
private _list;
|
|
17
|
-
set list(value: T[]);
|
|
18
17
|
get list(): T[];
|
|
18
|
+
set list(value: T[]);
|
|
19
19
|
placeholder: string;
|
|
20
20
|
searchPlaceholder: string;
|
|
21
21
|
noResultsText: string;
|
|
@@ -55,7 +55,7 @@ export declare class LibComboboxReworkComponent<T = RecordCombobox> implements C
|
|
|
55
55
|
/**
|
|
56
56
|
* "Harmoniza" um valor primitivo de "ID" e encontra o seu item correspondente na lista
|
|
57
57
|
* @param val Valor a ser resolvido
|
|
58
|
-
* @returns O item correspondente ou null
|
|
58
|
+
* @returns O valor infromado, o item correspondente encontrado ou null
|
|
59
59
|
*/
|
|
60
60
|
private resolveValue;
|
|
61
61
|
/** Formata o valor de retorno com base na configuração de retorno */
|