ngx-sp-infra 6.6.8 → 6.7.1
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.
- package/fesm2022/ngx-sp-infra.mjs +12 -14
- package/fesm2022/ngx-sp-infra.mjs.map +1 -1
- package/lib/widgets/combobox-multiple-choice/combobox-multiple-choice.component.d.ts +2 -3
- package/lib/widgets/lib-combobox-rework/lib-combobox-rework.component.d.ts +3 -3
- package/lib/widgets/table/table.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { EventEmitter } from '@angular/core';
|
|
3
|
-
import { RecordCombobox } from '../../models/combobox/record-combobox';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
4
2
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
3
|
+
import { RecordCombobox } from '../../models/combobox/record-combobox';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
export declare class ComboboxMultipleChoiceComponent implements OnInit {
|
|
7
6
|
private _breakpointObserver;
|
|
@@ -29,7 +29,7 @@ export declare class LibComboboxReworkComponent<T = RecordCombobox> implements C
|
|
|
29
29
|
rightButtonTemplate?: TemplateRef<any>;
|
|
30
30
|
toggleButton?: ElementRef<HTMLButtonElement>;
|
|
31
31
|
selectionChange: EventEmitter<any>;
|
|
32
|
-
filterChange: EventEmitter<
|
|
32
|
+
filterChange: EventEmitter<any>;
|
|
33
33
|
filterButtonClick: EventEmitter<string | null>;
|
|
34
34
|
selectedValues: T[] | null;
|
|
35
35
|
get value(): T | T[] | null;
|
|
@@ -50,7 +50,7 @@ export declare class LibComboboxReworkComponent<T = RecordCombobox> implements C
|
|
|
50
50
|
ngOnDestroy(): void;
|
|
51
51
|
onResize(): void;
|
|
52
52
|
private filterItems;
|
|
53
|
-
select(item: T): void;
|
|
53
|
+
select(item: T, emitEvent?: boolean): void;
|
|
54
54
|
isSelected(item: T): boolean;
|
|
55
55
|
/**
|
|
56
56
|
* "Harmoniza" um valor primitivo de "ID" e encontra o seu item correspondente na lista
|
|
@@ -60,7 +60,7 @@ export declare class LibComboboxReworkComponent<T = RecordCombobox> implements C
|
|
|
60
60
|
private resolveValue;
|
|
61
61
|
/** Formata o valor de retorno com base na configuração de retorno */
|
|
62
62
|
private formatReturn;
|
|
63
|
-
writeValue(obj: any): void;
|
|
63
|
+
writeValue(obj: any, emitEvent?: boolean): void;
|
|
64
64
|
registerOnChange(fn: (value: T | T[] | null) => void): void;
|
|
65
65
|
registerOnTouched(fn: () => void): void;
|
|
66
66
|
setDisabledState?(isDisabled: boolean): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { TableHeaderStructure } from '../../models/table/header-structure.model';
|
|
3
2
|
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
3
|
+
import { TableHeaderStructure } from '../../models/table/header-structure.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
/**
|
|
6
6
|
* Componente de Tabela Customizável
|