@bizdoc/core 1.13.5 → 1.13.6
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/admin/document-trace/trace-element.component.mjs +3 -3
- package/esm2020/lib/browse/browse-items.component.mjs +5 -3
- package/esm2020/lib/compose/compose.pane.component.mjs +4 -3
- package/esm2020/lib/core/configuration.mjs +2 -1
- package/esm2020/lib/core/slots/router.service.mjs +4 -16
- package/esm2020/lib/core/slots/slots.component.mjs +6 -4
- package/esm2020/lib/cube/explore/explore-items.component.mjs +19 -35
- package/esm2020/lib/cube/pivot/pivot.component.mjs +76 -78
- package/esm2020/lib/routes.desktop.mjs +2 -2
- package/fesm2015/bizdoc-core.mjs +112 -128
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +111 -135
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/core/configuration.d.ts +2 -1
- package/lib/core/slots/router.service.d.ts +0 -4
- package/lib/cube/explore/explore-items.component.d.ts +0 -1
- package/lib/cube/pivot/pivot.component.d.ts +2 -1
- package/package.json +1 -1
@@ -1,5 +1,4 @@
|
|
1
1
|
import { ComponentType } from '@angular/cdk/portal';
|
2
|
-
import { Type } from '@angular/core';
|
3
2
|
import { Subject } from 'rxjs';
|
4
3
|
import { OpenPolicy } from '../configuration';
|
5
4
|
import { NavigationBase, PaneRef } from './pane-ref';
|
@@ -12,11 +11,8 @@ export declare class PanesRouter {
|
|
12
11
|
readonly _navigate$: Subject<{
|
13
12
|
commands?: any[];
|
14
13
|
component?: ComponentType<any>;
|
15
|
-
toggle?: boolean;
|
16
14
|
} & NavigationOptions>;
|
17
15
|
constructor();
|
18
|
-
toggle(commands: any[] | Type<any>, options?: NavigationOptions): Promise<PaneRef<any>>;
|
19
|
-
replace(url: string): void;
|
20
16
|
navigate(commands: any[] | ComponentType<any>, options?: NavigationOptions): Promise<PaneRef<any>>;
|
21
17
|
get events(): import("rxjs").Observable<NavigationBase>;
|
22
18
|
collapse(): void;
|
@@ -92,7 +92,8 @@ export declare class CubePivotComponent implements CubeViewerComponent, OnInit,
|
|
92
92
|
* @param e
|
93
93
|
*/
|
94
94
|
pointClick(e: IPointEventArgs): void;
|
95
|
-
exportToExcel(title: string):
|
95
|
+
exportToExcel(title: string): Promise<void>;
|
96
|
+
private _exportExcel;
|
96
97
|
private _draw;
|
97
98
|
dataBound(_: any): void;
|
98
99
|
resize(): void;
|