sigesp 1.0.3-20240419 → 1.0.5-20240423
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/esm2020/lib/shared/components/catalogo/catalogo.component.mjs +12 -8
- package/esm2020/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.mjs +10 -6
- package/esm2020/lib/shared/components/catalogo-estructuras/catalogo-estructuras.component.mjs +3 -3
- package/esm2020/lib/shared/components/table-select/table-select.component.mjs +8 -8
- package/esm2020/lib/sigesp.service.mjs +18 -18
- package/fesm2015/sigesp.mjs +46 -38
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +46 -38
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/shared/components/catalogo/catalogo.component.d.ts +2 -1
- package/lib/shared/components/catalogo-doble-input/catalogo-doble-input.component.d.ts +1 -0
- package/lib/shared/components/table-select/table-select.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -15,13 +15,14 @@ export declare class CatalogoComponent implements OnInit {
|
|
|
15
15
|
names: string[];
|
|
16
16
|
constructor(dialogRef: MatDialogRef<CatalogoComponent>, dialogData: ICatalogo);
|
|
17
17
|
ngOnInit(): void;
|
|
18
|
+
ngAfterViewInit(): void;
|
|
18
19
|
/**
|
|
19
20
|
* @description Filtra la tabla de proveedores
|
|
20
21
|
* @param filterValue Palabra clave para filtrar,
|
|
21
22
|
* @return void
|
|
22
23
|
* @author Miguel Ramírez
|
|
23
24
|
*/
|
|
24
|
-
filterTable(
|
|
25
|
+
filterTable(event: any): void;
|
|
25
26
|
/**
|
|
26
27
|
* @description Manda a cerrar el dialog
|
|
27
28
|
* @param data Data que se va a mandar de respuesta
|
|
@@ -19,6 +19,7 @@ export declare class CatalogoDobleInputComponent implements OnInit {
|
|
|
19
19
|
second: string;
|
|
20
20
|
constructor(dialogRef: MatDialogRef<CatalogoComponent>, dialogData: ICatalogo);
|
|
21
21
|
ngOnInit(): void;
|
|
22
|
+
ngAfterViewInit(): void;
|
|
22
23
|
/**
|
|
23
24
|
* @description Filtra la tabla de proveedores
|
|
24
25
|
* @param filterValue Palabra clave para filtrar,
|
|
@@ -25,7 +25,7 @@ export declare class TableSelectComponent implements AfterViewInit {
|
|
|
25
25
|
checkboxLabel(row?: any): string;
|
|
26
26
|
closeDialog(): void;
|
|
27
27
|
cancelDialog(): void;
|
|
28
|
-
filterTable(
|
|
28
|
+
filterTable(event: any): void;
|
|
29
29
|
getFilter(): boolean;
|
|
30
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableSelectComponent, [{ optional: true; }, { optional: true; }]>;
|
|
31
31
|
static ɵcmp: i0.ɵɵComponentDeclaration<TableSelectComponent, "app-table-select", never, {}, {}, never, never, false>;
|