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.
- package/bundles/sigesp.umd.js +18 -54
- package/bundles/sigesp.umd.js.map +1 -1
- package/bundles/sigesp.umd.min.js +2 -2
- package/bundles/sigesp.umd.min.js.map +1 -1
- package/esm2015/lib/core/models/SNO/MAsignacionCargo.model.js +3 -3
- package/esm2015/lib/core/models/SNO/MNominaSimple.model.js +3 -3
- package/esm2015/lib/shared/components/table-select/table-select.component.js +10 -24
- package/esm2015/lib/sigesp.service.js +6 -28
- package/fesm2015/sigesp.js +18 -54
- package/fesm2015/sigesp.js.map +1 -1
- package/lib/shared/components/table-select/table-select.component.d.ts +0 -2
- package/lib/sigesp.service.d.ts +3 -3
- package/package.json +1 -1
- package/sigesp.metadata.json +1 -1
|
@@ -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 {};
|
package/lib/sigesp.service.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
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
|