@litigiovirtual/ius-design-components 1.0.113 → 1.0.115
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/esm2022/lib/input-select/input-select.component.mjs +14 -2
- package/esm2022/lib/input-select-filter/input-select-filter.component.mjs +15 -28
- package/fesm2022/litigiovirtual-ius-design-components.mjs +27 -28
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/input-select-filter/input-select-filter.component.d.ts +6 -6
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { DoCheck, EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export type FilterData = {
|
|
4
4
|
title: string;
|
|
@@ -9,10 +9,8 @@ export type FilterItemInputList = {
|
|
|
9
9
|
text: string;
|
|
10
10
|
checked: boolean;
|
|
11
11
|
};
|
|
12
|
-
export declare class InputSelectFilterComponent {
|
|
13
|
-
|
|
14
|
-
set filterData(value: FilterData[] | undefined);
|
|
15
|
-
get filterData(): FilterData[] | undefined;
|
|
12
|
+
export declare class InputSelectFilterComponent implements DoCheck {
|
|
13
|
+
filterData?: FilterData[];
|
|
16
14
|
filterDataSelected?: FilterData;
|
|
17
15
|
itemSelected?: FilterItemInputList;
|
|
18
16
|
isFocused: boolean;
|
|
@@ -34,6 +32,9 @@ export declare class InputSelectFilterComponent {
|
|
|
34
32
|
items: FilterItemInputList[];
|
|
35
33
|
}>;
|
|
36
34
|
onEnterKey: EventEmitter<string>;
|
|
35
|
+
/** Firma de los ítems seleccionados para detectar cambios externos (reset, etc.) */
|
|
36
|
+
private lastSelectedSignature;
|
|
37
|
+
ngDoCheck(): void;
|
|
37
38
|
onClickOutside(event: Event): void;
|
|
38
39
|
closeList(event?: Event): void;
|
|
39
40
|
onInput(): void;
|
|
@@ -44,7 +45,6 @@ export declare class InputSelectFilterComponent {
|
|
|
44
45
|
onDragOverBlock(event: DragEvent): void;
|
|
45
46
|
selectedData(data: FilterData): void;
|
|
46
47
|
selectedItem(data: FilterItemInputList): void;
|
|
47
|
-
updateTextInputFromSelected(): FilterItemInputList[];
|
|
48
48
|
getSelectedItems(): FilterItemInputList[];
|
|
49
49
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputSelectFilterComponent, never>;
|
|
50
50
|
static ɵcmp: i0.ɵɵComponentDeclaration<InputSelectFilterComponent, "ius-input-select-filter", never, { "filterData": { "alias": "filterData"; "required": false; }; "componentId": { "alias": "componentId"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "labelSuperior": { "alias": "labelSuperior"; "required": false; }; "labelInput": { "alias": "labelInput"; "required": false; }; "iconInput": { "alias": "iconInput"; "required": false; }; "textInput": { "alias": "textInput"; "required": false; }; "maxlenght": { "alias": "maxlenght"; "required": false; }; "inputType": { "alias": "inputType"; "required": false; }; }, { "onChangesValueEvent": "onChangesValueEvent"; "onEnterKey": "onEnterKey"; }, never, never, true, never>;
|