sigesp 1.0.3-20240419 → 1.0.4-20240424

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.
@@ -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(filterValue: any): void;
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(filterValue: any): void;
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "1.0.3-20240419",
3
+ "version": "1.0.4-20240424",
4
4
  "dependencies": {
5
5
  "tslib": "^2.6.2"
6
6
  },