@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.
@@ -32,7 +32,8 @@ export declare enum OpenPolicy {
32
32
  Expandable = 16,
33
33
  Tab = 48,
34
34
  Dialog = 112,
35
- Dismissable = 128
35
+ Dismissable = 128,
36
+ Toggle = 256
36
37
  }
37
38
  export declare const DEFAULT_POLICY: OpenPolicy;
38
39
  export interface BizDocChildConfig {
@@ -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;
@@ -44,7 +44,6 @@ export declare class ExploreItemsComponent implements OnInit, OnChanges, OnDestr
44
44
  ngOnChanges(_: SimpleChanges): void;
45
45
  /** */
46
46
  private _view;
47
- private _index;
48
47
  private _datasource;
49
48
  expand(item: any): void;
50
49
  exportExcel(): 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): any;
95
+ exportToExcel(title: string): Promise<void>;
96
+ private _exportExcel;
96
97
  private _draw;
97
98
  dataBound(_: any): void;
98
99
  resize(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.13.5",
3
+ "version": "1.13.6",
4
4
  "author": "Moding Ltd.",
5
5
  "homepage": "https://github.com/moding-il/bizdoc.core",
6
6
  "license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",