@bizdoc/core 1.14.5 → 1.14.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.
Files changed (40) hide show
  1. package/esm2020/lib/admin/document-trace/document-trace.component.mjs +2 -2
  2. package/esm2020/lib/admin/form/workflow/workflow.component.mjs +2 -2
  3. package/esm2020/lib/admin/profiler/profiler.component.mjs +3 -11
  4. package/esm2020/lib/browse/browse.pane.component.mjs +3 -4
  5. package/esm2020/lib/compose/compose.pane.component.mjs +3 -2
  6. package/esm2020/lib/compose/trace/trace.pane.component.mjs +2 -2
  7. package/esm2020/lib/core/slots/pane-ref.mjs +25 -24
  8. package/esm2020/lib/core/slots/router.directive.mjs +3 -5
  9. package/esm2020/lib/core/slots/router.service.mjs +1 -4
  10. package/esm2020/lib/core/slots/slots.component.mjs +128 -92
  11. package/esm2020/lib/cube/cube-view.component.mjs +2 -2
  12. package/esm2020/lib/cube/matrix/matrix.base.mjs +1 -1
  13. package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +1 -1
  14. package/esm2020/lib/cube/view.pane.component.mjs +5 -5
  15. package/esm2020/lib/dashboard/dashboard.component.mjs +25 -17
  16. package/esm2020/lib/dashboard/widget-item.component.mjs +2 -1
  17. package/esm2020/lib/reports/report-viewer.component.mjs +1 -1
  18. package/esm2020/lib/reports/report.pane.component.mjs +2 -2
  19. package/esm2020/lib/scheduler/scheduler.pane.component.mjs +2 -2
  20. package/esm2020/lib/views/view-item.component.mjs +3 -2
  21. package/esm2020/lib/views/views.component.mjs +11 -3
  22. package/esm2020/lib/views/views.pane.component.mjs +14 -10
  23. package/esm2020/public-api.mjs +2 -2
  24. package/fesm2015/bizdoc-core.mjs +249 -212
  25. package/fesm2015/bizdoc-core.mjs.map +1 -1
  26. package/fesm2020/bizdoc-core.mjs +250 -211
  27. package/fesm2020/bizdoc-core.mjs.map +1 -1
  28. package/lib/admin/profiler/profiler.component.d.ts +0 -1
  29. package/lib/core/slots/pane-ref.d.ts +41 -43
  30. package/lib/core/slots/router.service.d.ts +2 -3
  31. package/lib/core/slots/slots.component.d.ts +21 -14
  32. package/lib/cube/matrix/matrix.base.d.ts +2 -2
  33. package/lib/cube/matrix/matrix.pane.component.d.ts +14 -1
  34. package/lib/dashboard/dashboard.component.d.ts +6 -2
  35. package/lib/dashboard/widget-item.component.d.ts +2 -0
  36. package/lib/views/view-item.component.d.ts +2 -0
  37. package/lib/views/views.component.d.ts +4 -0
  38. package/lib/views/views.pane.component.d.ts +3 -2
  39. package/package.json +1 -1
  40. package/public-api.d.ts +1 -1
@@ -64,7 +64,6 @@ export declare class ProfilerComponent implements OnInit, OnDestroy {
64
64
  /** */
65
65
  private _series;
66
66
  private _actionName;
67
- resize(): void;
68
67
  pointClick(evt: IPointEventArgs): void;
69
68
  userDisplay(item: UserInfo): string;
70
69
  trace(id: number): void;
@@ -1,4 +1,3 @@
1
- import { ComponentPortal } from "@angular/cdk/portal";
2
1
  import { Type, Injector, InjectionToken } from "@angular/core";
3
2
  import { BehaviorSubject, Subject } from "rxjs";
4
3
  import { ParamMap, PaneRoute, OpenPolicy } from "../configuration";
@@ -13,56 +12,55 @@ export declare class CollapseNavigation extends NavigationBase {
13
12
  }
14
13
  export declare class BackNavigation extends NavigationBase {
15
14
  }
16
- export declare abstract class NavigationPaneBase extends NavigationBase {
15
+ export declare abstract class NavigationPaneBase<T = any> extends NavigationBase {
17
16
  private _pane;
18
- constructor(_pane: PaneRef<any>);
19
- get pane(): PaneRef<any>;
17
+ constructor(_pane: PaneRef<T>);
18
+ get pane(): PaneRef<T>;
20
19
  }
21
20
  export declare class NavigationStart extends NavigationPaneBase {
22
21
  }
23
- export declare class NavigationSelected extends NavigationPaneBase {
22
+ /** pane fucus change */
23
+ export declare class NavigationFocus extends NavigationPaneBase {
24
24
  }
25
- export declare class NavigationEnd extends NavigationPaneBase {
25
+ export declare class NavigationEnd<T = any> extends NavigationPaneBase<T> {
26
26
  }
27
- export declare class NavigationMode extends NavigationPaneBase {
27
+ export declare class NavigationMode<T = any> extends NavigationPaneBase<T> {
28
28
  readonly mode: PaneMode;
29
- constructor(mode: PaneMode, pane: PaneRef<any>);
29
+ constructor(mode: PaneMode, pane: PaneRef<T>);
30
30
  }
31
- export declare class NavigationFullscreen extends NavigationPaneBase {
32
- readonly fullscreen: boolean;
33
- constructor(fullscreen: boolean, pane: PaneRef<any>);
31
+ export declare class NavigationExpand<T = any> extends NavigationPaneBase<T> {
32
+ readonly expended: boolean;
33
+ constructor(expended: boolean, pane: PaneRef<T>);
34
34
  }
35
- export declare class NavigationResize extends NavigationPaneBase {
35
+ export declare class NavigationResize<T = any> extends NavigationPaneBase<T> {
36
36
  readonly dimentions: Dimentions;
37
- constructor(dimentions: Dimentions, pane: PaneRef<any>);
37
+ constructor(dimentions: Dimentions, pane: PaneRef<T>);
38
38
  }
39
- export declare class NavigationClose extends NavigationPaneBase {
39
+ export declare class NavigationClose<T = any> extends NavigationPaneBase<T> {
40
40
  }
41
- export declare class ParamNavigation extends NavigationPaneBase {
41
+ export declare class ParamNavigation<T = any> extends NavigationPaneBase<T> {
42
42
  readonly params: ParamMap;
43
- constructor(params: ParamMap, pane: PaneRef<any>);
43
+ constructor(params: ParamMap, pane: PaneRef<T>);
44
44
  }
45
- export declare class QueryParamNavigation extends NavigationPaneBase {
45
+ export declare class QueryParamNavigation<T = any> extends NavigationPaneBase<T> {
46
46
  readonly queryParams: ParamMap;
47
- constructor(queryParams: ParamMap, pane: PaneRef<any>);
47
+ constructor(queryParams: ParamMap, pane: PaneRef<T>);
48
48
  }
49
49
  export declare type PaneMode = 'tab' | 'pane';
50
50
  export interface PaneOptions {
51
51
  title?: string;
52
52
  group?: string;
53
53
  help?: string;
54
- state?: {
55
- [name: string]: any;
56
- };
54
+ state?: any;
57
55
  openPolicy?: OpenPolicy;
58
56
  }
59
- export declare type CallbackFunction = 'expand' | 'focus' | 'close' | 'refresh';
60
- export declare class PaneRef<T = any> {
57
+ export declare type PaneCommand = 'expand' | 'focus' | 'close' | 'refresh';
58
+ export declare class PaneRef<T = any, D = ParamMap> {
61
59
  component: Type<any>;
62
60
  private _options;
63
- readonly _comm$: Subject<CallbackFunction>;
61
+ readonly _comm$: Subject<PaneCommand>;
64
62
  /** */
65
- readonly _data$: BehaviorSubject<ParamMap>;
63
+ readonly _data$: BehaviorSubject<D>;
66
64
  readonly _params$: BehaviorSubject<ParamMap>;
67
65
  readonly _queryParams$: BehaviorSubject<ParamMap>;
68
66
  readonly _events$: Subject<NavigationBase>;
@@ -74,40 +72,39 @@ export declare class PaneRef<T = any> {
74
72
  animation: string;
75
73
  group: string;
76
74
  help: string;
77
- expandable: boolean;
78
- _fullscreen: boolean;
75
+ _expanded: boolean;
79
76
  _instance: T;
80
77
  _path: string;
81
78
  _queryString: string;
82
- _injector: Injector;
83
- _portal: ComponentPortal<T>;
84
79
  _mode: PaneMode;
85
- _stretch: boolean;
80
+ private _injector;
81
+ private _expandable;
82
+ private _stretchable;
83
+ get expandable(): boolean;
86
84
  get injector(): Injector;
87
- get fullscreen(): boolean;
85
+ get expanded(): boolean;
88
86
  get fullPath(): string;
89
87
  get instance(): T;
90
- get data(): any;
91
- get dataChange(): import("rxjs").Observable<ParamMap>;
88
+ get data(): D;
89
+ get dataChange(): import("rxjs").Observable<D>;
92
90
  get params(): ParamMap;
93
- get resize(): import("rxjs").Observable<NavigationBase>;
94
91
  get paramsChange(): import("rxjs").Observable<ParamMap>;
95
92
  get queryString(): string;
96
93
  get queryParams(): ParamMap;
97
94
  get queryParamsChange(): import("rxjs").Observable<ParamMap>;
98
95
  get events(): import("rxjs").Observable<NavigationBase>;
96
+ get resized(): import("rxjs").Observable<NavigationBase>;
99
97
  get closing(): import("rxjs").Observable<NavigationBase>;
100
- get modeChange(): import("rxjs").Observable<NavigationBase>;
101
- get fullscreenChange(): import("rxjs").Observable<NavigationBase>;
98
+ get expandeding(): import("rxjs").Observable<NavigationBase>;
102
99
  get path(): string;
103
100
  get mode(): PaneMode;
104
- get parent(): PaneRef<any>;
105
- get stretch(): boolean;
106
- set stretch(val: boolean);
101
+ get parent(): PaneRef<any, ParamMap>;
102
+ get stretchable(): boolean;
103
+ set stretchable(val: boolean);
107
104
  get dialog(): boolean;
108
105
  get dismissable(): boolean;
109
106
  get route(): PaneRoute;
110
- constructor(component: Type<any>, mode: PaneMode, _options: {
107
+ constructor(component: Type<any>, injector: Injector, _options: {
111
108
  path?: string;
112
109
  route?: PaneRoute;
113
110
  title?: string;
@@ -116,12 +113,13 @@ export declare class PaneRef<T = any> {
116
113
  icon?: string;
117
114
  animation?: string;
118
115
  help?: string;
119
- fullscreen?: boolean;
116
+ mode: PaneMode;
117
+ expanded?: boolean;
120
118
  dialog?: boolean;
121
- stretch?: boolean;
119
+ stretchable?: boolean;
122
120
  parent?: PaneRef<any>;
123
121
  queryString?: string;
124
- data?: ParamMap;
122
+ data?: D;
125
123
  params?: ParamMap;
126
124
  queryParams?: ParamMap;
127
125
  expandable?: boolean;
@@ -3,11 +3,10 @@ import { Subject } from 'rxjs';
3
3
  import { OpenPolicy } from '../configuration';
4
4
  import { NavigationBase, PaneRef } from './pane-ref';
5
5
  import * as i0 from "@angular/core";
6
+ export declare type RouterCommand = 'collapse';
6
7
  export declare class PanesRouter {
7
8
  readonly _events$: Subject<NavigationBase>;
8
- readonly _comm$: Subject<string>;
9
- _active: PaneRef;
10
- get active(): PaneRef;
9
+ readonly _comm$: Subject<"collapse">;
11
10
  readonly _navigate$: Subject<{
12
11
  commands?: any[];
13
12
  component?: ComponentType<any>;
@@ -6,7 +6,7 @@ import { PanesRouter } from './router.service';
6
6
  import { SessionService } from '../session.service';
7
7
  import { CdkScrollable, ComponentType } from '@angular/cdk/overlay';
8
8
  import { WindowTitleService } from '../window-title.service';
9
- import { PaneRoute } from '../configuration';
9
+ import { PaneRoute, ParamMap } from '../configuration';
10
10
  import { GuideService } from '../guide/guide.service';
11
11
  import * as i0 from "@angular/core";
12
12
  declare global {
@@ -49,10 +49,11 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
49
49
  };
50
50
  readonly ripple: RippleConfig;
51
51
  accent: string;
52
- private _navigating;
52
+ private _navigationInProcess;
53
53
  private _repository;
54
54
  private readonly _pending;
55
55
  private readonly _rtl;
56
+ private readonly _resizing;
56
57
  private readonly _destroy;
57
58
  constructor(data: ExtendedRoute[], _session: SessionService, _cd: ChangeDetectorRef, _router: PanesRouter, _title: WindowTitleService, _guide: GuideService, _injector: Injector);
58
59
  ngOnInit(): void;
@@ -83,12 +84,8 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
83
84
  */
84
85
  private _navParams;
85
86
  /** */
86
- private _sync;
87
- /**
88
- *
89
- * @param mode
90
- */
91
- private _history;
87
+ private _syncBrowserHistory;
88
+ private _constructHistoryState;
92
89
  drop(evt: CdkDragDrop<string, string>): void;
93
90
  togglePinned(pane: PaneRef<any>): void;
94
91
  private _queryString;
@@ -121,8 +118,8 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
121
118
  */
122
119
  private _parentstate;
123
120
  private _resolve;
124
- add<T>(component: ComponentType<T>, options?: PaneOptions): PaneRef<T>;
125
- insert<T>(position: number, component: ComponentType<T>, options?: PaneOptions): PaneRef<T>;
121
+ add<T>(component: ComponentType<T>, options?: PaneOptions): PaneRef<T, ParamMap>;
122
+ insert<T>(position: number, component: ComponentType<T>, options?: PaneOptions): PaneRef<T, ParamMap>;
126
123
  private _insertPane;
127
124
  /**
128
125
  *
@@ -138,22 +135,32 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
138
135
  private _insertTab;
139
136
  guide(name: string): void;
140
137
  back(): void;
141
- private _back;
138
+ /**
139
+ *
140
+ * @param steps
141
+ */
142
+ private _navBack;
142
143
  tabBack(): void;
143
144
  /**
144
145
  *
145
- * @param e
146
+ * @param command
146
147
  * @param pane
147
148
  */
148
- private _action;
149
+ private _paneCommand;
149
150
  /**
150
151
  * escape
151
152
  * @param event
152
153
  */
153
154
  collapse(): Promise<void>;
154
155
  onResize(): void;
156
+ /** */
155
157
  private _resize;
156
158
  closeTab(position: number): void;
159
+ /**
160
+ *
161
+ * @param pane
162
+ */
163
+ private _closing;
157
164
  expandPane(): void;
158
165
  private _getHistoryStep;
159
166
  expandTab(): void;
@@ -186,7 +193,7 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
186
193
  scrollTo(index: number): void;
187
194
  private get _children();
188
195
  done(): void;
189
- navigationArrows(_?: Event): void;
196
+ enableNavigationArrows(_?: Event): void;
190
197
  scrollBy(n: number): void;
191
198
  focus(index: any): void;
192
199
  onPaneResize(pane: PaneRef<any>, event: MouseEvent): void;
@@ -10,8 +10,8 @@ export declare abstract class CubeMatrixBase {
10
10
  private _ds;
11
11
  protected _session: SessionService;
12
12
  table: CubeMatrixComponent;
13
- seriesTotalLabel: string;
14
- xAxisTotalLabel: string;
13
+ seriesTotalLabel?: string;
14
+ xAxisTotalLabel?: string;
15
15
  indexAt?: 'series' | 'xAxis';
16
16
  placeAt?: 'leading' | 'trailing';
17
17
  loading: boolean;
@@ -8,16 +8,29 @@ import { AxesMap } from '../../core/models';
8
8
  import { CubeMatrixBase } from './matrix.base';
9
9
  import { TranslateService } from '../../core/translate.service';
10
10
  import { AxisClickEvent } from '../declarations';
11
+ import { SumSettings } from './table.component';
11
12
  import * as i0 from "@angular/core";
12
13
  export declare class CubeMatrixPaneComponent extends CubeMatrixBase implements OnInit {
13
14
  private _pane;
14
15
  private _router;
15
16
  private _translate;
16
17
  /** cube-info ctor */
17
- constructor(_pane: PaneRef<CubeMatrixPaneComponent>, _router: PanesRouter, _translate: TranslateService, service: CubeService, ds: DatasourceService, session: SessionService);
18
+ constructor(_pane: PaneRef<CubeMatrixPaneComponent, Data>, _router: PanesRouter, _translate: TranslateService, service: CubeService, ds: DatasourceService, session: SessionService);
18
19
  ngOnInit(): void;
19
20
  onFilter(queryParams: AxesMap): void;
20
21
  explore(evt: AxisClickEvent): void;
21
22
  static ɵfac: i0.ɵɵFactoryDeclaration<CubeMatrixPaneComponent, never>;
22
23
  static ɵcmp: i0.ɵɵComponentDeclaration<CubeMatrixPaneComponent, "ng-component", never, {}, {}, never, never>;
23
24
  }
25
+ interface Data {
26
+ indices: string | string[];
27
+ /** */
28
+ aggregation: string[];
29
+ sum: SumSettings | SumSettings[];
30
+ indexAt?: 'series' | 'xAxis';
31
+ placeAt?: 'leading' | 'trailing';
32
+ selection?: string | string[];
33
+ xAxisTotalLabel?: string;
34
+ seriesTotalLabel?: string;
35
+ }
36
+ export {};
@@ -5,16 +5,20 @@ import { MediaObserver } from '@angular/flex-layout';
5
5
  import { WindowTitleService } from '../core/window-title.service';
6
6
  import { TranslateService } from '../core/translate.service';
7
7
  import { GuideService } from '../core/guide/guide.service';
8
+ import { WidgetItemComponent } from './widget-item.component';
9
+ import { PaneRef } from '../core/slots/pane-ref';
10
+ import { QueryList } from '@angular/core';
8
11
  import * as i0 from "@angular/core";
9
12
  export declare class DashboardComponent implements OnDestroy {
10
13
  private _guide;
14
+ components: QueryList<WidgetItemComponent>;
11
15
  private readonly _destroy;
12
16
  /** dashboard ctor */
13
17
  readonly widgets: Widget[];
14
18
  cols: number;
15
- constructor(_guide: GuideService, observableMedia: MediaObserver, session: SessionService, title: WindowTitleService, translate: TranslateService);
19
+ constructor(_guide: GuideService, observableMedia: MediaObserver, session: SessionService, pane: PaneRef, title: WindowTitleService, translate: TranslateService);
16
20
  guide(name: string): void;
17
21
  ngOnDestroy(): void;
18
- static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponent, never>;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponent, [null, null, null, { optional: true; }, null, null]>;
19
23
  static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "bizdoc-dashboard", never, {}, {}, never, never>;
20
24
  }
@@ -1,6 +1,7 @@
1
1
  import { ViewContainerRef, OnDestroy, Injector, AfterViewInit, OnInit } from '@angular/core';
2
2
  import { HttpClient } from '@angular/common/http';
3
3
  import { Widget } from '../core/models';
4
+ import { WidgetRef } from "./widget-ref";
4
5
  import { BizDocComponentFactoryResolver } from '../core/component-factory-resolver';
5
6
  import { PromptService } from '../core/prompt.service';
6
7
  import { Popup } from '../core/popup/popup.service';
@@ -20,6 +21,7 @@ export declare class WidgetItemComponent implements OnInit, AfterViewInit, OnDes
20
21
  args: any;
21
22
  constructor(_popup: Popup, _http: HttpClient, _sb: PromptService, _injector: Injector, _vc: ViewContainerRef, _cf: BizDocComponentFactoryResolver);
22
23
  ngOnInit(): void;
24
+ get widgetRef(): WidgetRef<any>;
23
25
  ngAfterViewInit(): void;
24
26
  private _dim;
25
27
  refresh(args?: any): void;
@@ -2,6 +2,7 @@ import { AfterViewInit, Injector, OnDestroy, ViewContainerRef } from "@angular/c
2
2
  import { HttpClient } from "@angular/common/http";
3
3
  import { BizDocComponentFactoryResolver } from "../core/component-factory-resolver";
4
4
  import { DocumentModel, View } from "../core/models";
5
+ import { DocumentViewRef } from "./document-view-ref";
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class ViewItemComponent implements AfterViewInit, OnDestroy {
7
8
  private _http;
@@ -12,6 +13,7 @@ export declare class ViewItemComponent implements AfterViewInit, OnDestroy {
12
13
  view: View;
13
14
  args: any;
14
15
  get hidden(): boolean;
16
+ get viewRef(): DocumentViewRef<unknown, any, any>;
15
17
  private _viewRef;
16
18
  private _instance;
17
19
  private readonly _resizing;
@@ -1,14 +1,18 @@
1
+ import { QueryList } from "@angular/core";
1
2
  import { ChangeDetectorRef, OnChanges, SimpleChanges } from "@angular/core";
2
3
  import { DocumentModel, View } from "../core/models";
3
4
  import { SessionService } from "../core/session.service";
5
+ import { ViewItemComponent } from "./view-item.component";
4
6
  import * as i0 from "@angular/core";
5
7
  export declare class DocumentViewsComponent implements OnChanges {
6
8
  private _cd;
7
9
  private _session;
10
+ components: QueryList<ViewItemComponent>;
8
11
  model: DocumentModel;
9
12
  views: View[];
10
13
  constructor(_cd: ChangeDetectorRef, _session: SessionService);
11
14
  ngOnChanges(_: SimpleChanges): void;
15
+ resize(): void;
12
16
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentViewsComponent, never>;
13
17
  static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewsComponent, "bizdoc-document-views", never, { "model": "model"; }, {}, never, never>;
14
18
  }
@@ -2,11 +2,12 @@ import { DocumentModel } from "../core/models";
2
2
  import { SessionService } from "../core/session.service";
3
3
  import { PaneRef } from "../core/slots/pane-ref";
4
4
  import { TranslateService } from "../core/translate.service";
5
+ import { DocumentViewsComponent } from "./views.component";
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class DocumentViewPaneComponent {
7
- private _pane;
8
+ views: DocumentViewsComponent;
8
9
  model: DocumentModel;
9
- constructor(session: SessionService, translate: TranslateService, _pane: PaneRef);
10
+ constructor(session: SessionService, translate: TranslateService, pane: PaneRef);
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentViewPaneComponent, never>;
11
12
  static ɵcmp: i0.ɵɵComponentDeclaration<DocumentViewPaneComponent, "ng-component", never, {}, {}, never, never>;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.14.5",
3
+ "version": "1.14.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",
package/public-api.d.ts CHANGED
@@ -53,7 +53,7 @@ export { ActionPipe } from './lib/core/pipes/action.pipe';
53
53
  export { StatePipe } from './lib/core/pipes/state.pipe';
54
54
  export { UserNamePipe } from './lib/core/pipes/user-name.pipe';
55
55
  export { DateRangePipe, AgoPipe } from './lib/core/pipes/daterange.pipe';
56
- export { PaneRef, PaneOptions, QueryParamNavigation, ParamNavigation, NavigationStart, NavigationEnd, NavigationSelected, NavigationResize, NavigationMode, NavigationFullscreen, NavigationClose } from './lib/core/slots/pane-ref';
56
+ export { PaneRef, PaneOptions, QueryParamNavigation, ParamNavigation, NavigationStart, NavigationEnd, NavigationFocus, NavigationResize, NavigationMode, NavigationExpand, NavigationClose, CollapseNavigation, BackNavigation } from './lib/core/slots/pane-ref';
57
57
  export { PanesRouter } from './lib/core/slots/router.service';
58
58
  export { SlotRouterDirective } from './lib/core/slots/router.directive';
59
59
  export { Popup } from './lib/core/popup/popup.service';