sigesp 0.8.99-20220616 → 0.9.0-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 +9 -25
- 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/shared/components/table-select/table-select.component.js +10 -24
- package/esm2015/lib/sigesp.service.js +1 -3
- package/fesm2015/sigesp.js +9 -25
- 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 +0 -1
- 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
|