sigesp 0.8.98-20220615 → 0.8.101-20220727

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.
@@ -17,7 +17,6 @@ export declare class TableSelectComponent implements AfterViewInit {
17
17
  selections: any[];
18
18
  names: string[];
19
19
  loaded: boolean;
20
- disableMasterToggle: boolean;
21
20
  constructor(dialogRef: MatDialogRef<TableSelectComponent>, dialogData: ISelect);
22
21
  ngAfterViewInit(): void;
23
22
  isAllSelected(): boolean;
@@ -33,6 +32,5 @@ interface ISelect {
33
32
  dataSource: any[];
34
33
  title: string;
35
34
  columnNames?: string[];
36
- disableMasterToggle: boolean;
37
35
  }
38
36
  export {};
@@ -320,7 +320,6 @@ export declare class SigespService {
320
320
  openDialogMultiSelect(columns: string[], title: string, dataSource: any[], columnNames?: string[], width?: string, options?: {
321
321
  hasBackdrop?: boolean;
322
322
  disableClose?: boolean;
323
- disableMasterToggle?: boolean;
324
323
  }): Promise<any[]>;
325
324
  /**
326
325
  * @description Abre el dialog de las comunidades
@@ -366,12 +365,13 @@ export declare class SigespService {
366
365
  */
367
366
  getAbstractControl(formGroup: FormGroup, name: string): AbstractControl;
368
367
  /**
369
- * @description Función para escribir solo decimales (Usar en evento keypress)
368
+ * @description Previene que se escriban letras en el input (Usar en keypress)
370
369
  * @param event Evento del teclado
371
370
  * @return boolean
372
371
  * @author Miguel Ramírez
372
+ * @modificado como onlyNumero para corregir codigo, usar currency-input si quiere usar decimales
373
373
  */
374
- onlyDecimal(event: any): boolean;
374
+ onlyDecimal(event?: any): boolean;
375
375
  /**
376
376
  * @description Previene que se escriban letras en el input (Usar en keypress)
377
377
  * @param event Evento del teclado
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigesp",
3
- "version": "0.8.98-20220615",
3
+ "version": "0.8.101-20220727",
4
4
  "dependencies": {
5
5
  "tslib": "^2.0.0"
6
6
  },