@bizdoc/core 1.14.1 → 1.14.5

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 (35) hide show
  1. package/assets/themes/brown.min.css +1 -1
  2. package/assets/themes/dark.min.css +1 -1
  3. package/assets/themes/deep-purple-light-blue.min.css +1 -1
  4. package/assets/themes/deep-purple-teal.min.css +1 -1
  5. package/assets/themes/default.min.css +1 -1
  6. package/assets/themes/green.min.css +1 -1
  7. package/assets/themes/indigo.min.css +1 -1
  8. package/esm2020/lib/admin/document-trace/document-trace.component.mjs +6 -4
  9. package/esm2020/lib/admin/profiler/outofoffice.component.mjs +155 -0
  10. package/esm2020/lib/admin/profiler/profiler.component.mjs +75 -46
  11. package/esm2020/lib/compose/version-compare/version-compare.directive.mjs +3 -3
  12. package/esm2020/lib/core/models.mjs +1 -1
  13. package/esm2020/lib/core/slots/pane-ref.mjs +46 -28
  14. package/esm2020/lib/core/slots/slots.component.mjs +28 -25
  15. package/esm2020/lib/core/translations.mjs +4 -2
  16. package/esm2020/lib/cube/cube-info.service.mjs +2 -2
  17. package/esm2020/lib/cube/explore/explore-items.component.mjs +2 -2
  18. package/esm2020/lib/options/options.component.mjs +37 -16
  19. package/esm2020/lib/reports/report-viewer.component.mjs +2 -2
  20. package/esm2020/lib/system.module.mjs +8 -6
  21. package/esm2020/public-api.mjs +2 -2
  22. package/fesm2015/bizdoc-core.mjs +341 -134
  23. package/fesm2015/bizdoc-core.mjs.map +1 -1
  24. package/fesm2020/bizdoc-core.mjs +331 -130
  25. package/fesm2020/bizdoc-core.mjs.map +1 -1
  26. package/lib/admin/profiler/outofoffice.component.d.ts +48 -0
  27. package/lib/admin/profiler/profiler.component.d.ts +20 -11
  28. package/lib/core/models.d.ts +2 -2
  29. package/lib/core/slots/pane-ref.d.ts +32 -12
  30. package/lib/core/slots/slots.component.d.ts +1 -1
  31. package/lib/core/translations.d.ts +2 -0
  32. package/lib/options/options.component.d.ts +4 -3
  33. package/lib/system.module.d.ts +24 -23
  34. package/package.json +16 -16
  35. package/public-api.d.ts +1 -1
@@ -0,0 +1,48 @@
1
+ import { OnInit } from "@angular/core";
2
+ import { FormBuilder, FormGroup } from "@angular/forms";
3
+ import { MatAutocompleteSelectedEvent } from "@angular/material/autocomplete";
4
+ import { MatChipInput } from "@angular/material/chips";
5
+ import { MatDialogRef } from "@angular/material/dialog";
6
+ import { MatInput } from "@angular/material/input";
7
+ import { Observable } from "rxjs";
8
+ import { AccountService } from "../../core/account.service";
9
+ import { OutOfOfficeSettings, GrantSettings, UserInfo } from "../../core/models";
10
+ import * as i0 from "@angular/core";
11
+ export interface OutOfOfficeData {
12
+ userId: string;
13
+ outOfOffice: OutOfOfficeSettings;
14
+ grantAccess: GrantSettings;
15
+ }
16
+ export declare class ProfileSettingsDialog implements OnInit {
17
+ private _accounts;
18
+ private _dialogRef;
19
+ private _fb;
20
+ model: OutOfOfficeData;
21
+ readonly separatorKeysCodes: number[];
22
+ readonly substitute: import("@angular/forms").FormControl;
23
+ readonly grants: import("@angular/forms").FormControl;
24
+ substitueInput: MatInput;
25
+ grantInput: MatChipInput;
26
+ readonly outOfOffice: FormGroup;
27
+ readonly grantAccess: FormGroup;
28
+ readonly form: FormGroup;
29
+ ousers$: Observable<UserInfo[]>;
30
+ gusers$: Observable<UserInfo[]>;
31
+ constructor(_accounts: AccountService, _dialogRef: MatDialogRef<ProfileSettingsDialog>, _fb: FormBuilder, model: OutOfOfficeData);
32
+ ngOnInit(): void;
33
+ userDisplay: (item: UserInfo) => string;
34
+ setId(event: MatAutocompleteSelectedEvent): void;
35
+ /**
36
+ *
37
+ * @param id
38
+ */
39
+ removeGrant(id: string): void;
40
+ /**
41
+ *
42
+ * @param inp
43
+ * @param event
44
+ */
45
+ addGrant(inp: HTMLInputElement, event: MatAutocompleteSelectedEvent): void;
46
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileSettingsDialog, never>;
47
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProfileSettingsDialog, "ng-component", never, {}, {}, never, never>;
48
+ }
@@ -1,11 +1,11 @@
1
- import { OnInit, OnDestroy, TemplateRef, ElementRef } from '@angular/core';
1
+ import { OnInit, OnDestroy, TemplateRef, ElementRef, ChangeDetectorRef } from '@angular/core';
2
2
  import { FormBuilder } from '@angular/forms';
3
3
  import { MatDialog } from '@angular/material/dialog';
4
4
  import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
5
5
  import { MediaObserver } from '@angular/flex-layout';
6
6
  import { AxisModel, BorderModel, ChartComponent, IPointEventArgs, ITooltipRenderEventArgs, LegendSeriesModel, MarkerOptionsModel, TooltipSettingsModel, ZoomSettingsModel } from '@syncfusion/ej2-angular-charts';
7
7
  import { Observable } from 'rxjs';
8
- import { UserInfo } from '../../core/models';
8
+ import { GrantSettings, OutOfOfficeSettings, UserInfo } from '../../core/models';
9
9
  import { UtilityRef } from '../utility-ref';
10
10
  import { PromptService } from '../../core/prompt.service';
11
11
  import { AccountService } from '../../core/account.service';
@@ -26,14 +26,15 @@ export declare class ProfilerComponent implements OnInit, OnDestroy {
26
26
  private _chat;
27
27
  private _guide;
28
28
  private _router;
29
- private _slot;
29
+ private _cd;
30
+ private _pane;
30
31
  private _translate;
31
32
  private _accounts;
32
33
  private _fb;
33
34
  readonly search: import("@angular/forms").FormControl;
34
35
  chart: ChartComponent;
35
36
  chartElement: ElementRef;
36
- assign: TemplateRef<any>;
37
+ assignTpl: TemplateRef<any>;
37
38
  readonly who: import("@angular/forms").FormControl;
38
39
  readonly primaryXAxis: AxisModel;
39
40
  readonly primaryYAxis: AxisModel;
@@ -49,8 +50,9 @@ export declare class ProfilerComponent implements OnInit, OnDestroy {
49
50
  data: ProfileInfo;
50
51
  cols: number;
51
52
  private readonly _destroy;
53
+ readonly separatorKeysCodes: number[];
52
54
  /** ctor */
53
- constructor(_sb: PromptService, _utilityRef: UtilityRef<boolean, ReassignModel, ProfileInfo, string>, _session: SessionService, _dialog: MatDialog, _documentInfo: DocumentInfo, media: MediaObserver, _chat: ChatInfo, _guide: GuideService, _router: PanesRouter, _slot: PaneRef<ProfilerComponent>, _translate: TranslateService, _accounts: AccountService, _fb: FormBuilder);
55
+ constructor(_sb: PromptService, _utilityRef: UtilityRef<boolean, ProfilerModel, ProfileInfo, string>, _session: SessionService, _dialog: MatDialog, _documentInfo: DocumentInfo, media: MediaObserver, _chat: ChatInfo, _guide: GuideService, _router: PanesRouter, _cd: ChangeDetectorRef, _pane: PaneRef<ProfilerComponent>, _translate: TranslateService, _accounts: AccountService, _fb: FormBuilder);
54
56
  ngOnInit(): void;
55
57
  guide(evt?: Event | KeyboardEvent): void;
56
58
  change(evt: MatAutocompleteSelectedEvent): void;
@@ -64,10 +66,11 @@ export declare class ProfilerComponent implements OnInit, OnDestroy {
64
66
  private _actionName;
65
67
  resize(): void;
66
68
  pointClick(evt: IPointEventArgs): void;
67
- display(item: UserInfo): string;
69
+ userDisplay(item: UserInfo): string;
68
70
  trace(id: number): void;
69
- chat(userId: any): void;
71
+ chat(): void;
70
72
  reassign(position?: PositionInfo): void;
73
+ settings(): void;
71
74
  /** */
72
75
  private _reassign;
73
76
  tooltipRender(e: ITooltipRenderEventArgs): void;
@@ -76,6 +79,8 @@ export declare class ProfilerComponent implements OnInit, OnDestroy {
76
79
  static ɵcmp: i0.ɵɵComponentDeclaration<ProfilerComponent, "ng-component", never, {}, {}, never, never>;
77
80
  }
78
81
  interface ProfileInfo {
82
+ outOfOffice: OutOfOfficeSettings;
83
+ grantAccess: GrantSettings;
79
84
  positions: PositionInfo[];
80
85
  activity: {
81
86
  [action: string]: {
@@ -99,10 +104,14 @@ interface PositionInfo {
99
104
  value: string;
100
105
  role: string;
101
106
  }
102
- interface ReassignModel {
107
+ interface ProfilerModel {
108
+ outOfOffice?: OutOfOfficeSettings;
109
+ grantAccess?: GrantSettings;
103
110
  userId: string;
104
- who: string;
105
- role?: string;
106
- key?: any;
111
+ reassign?: {
112
+ who: string;
113
+ role?: string;
114
+ key?: any;
115
+ };
107
116
  }
108
117
  export {};
@@ -456,7 +456,7 @@ export interface Options {
456
456
  notificationsView?: Date;
457
457
  tags?: string[];
458
458
  }
459
- interface GrantSettings {
459
+ export interface GrantSettings {
460
460
  active: boolean;
461
461
  users?: string[];
462
462
  }
@@ -625,7 +625,7 @@ export declare type ChartType = 'Pie' |
625
625
  'Radar' |
626
626
  /** Define the Pareto series */
627
627
  'Pareto' | 'Doughnut' | 'HalfDoughnut' | 'Funnel' | 'Pyramid' | 'StackingStepArea';
628
- interface OutOfOfficeSettings {
628
+ export interface OutOfOfficeSettings {
629
629
  from?: Date;
630
630
  to?: Date;
631
631
  active: boolean;
@@ -6,6 +6,8 @@ import { Dimentions } from "../models";
6
6
  export declare const QUERY_CHAR = ":", PATH_CHAR = ";", ARG_CHAR = "&", PANE_CHAR = "~";
7
7
  export declare const PANES_DATA: InjectionToken<PaneRoute[]>;
8
8
  export declare abstract class NavigationBase {
9
+ _preventDefault: boolean;
10
+ preventDefault(): void;
9
11
  }
10
12
  export declare class CollapseNavigation extends NavigationBase {
11
13
  }
@@ -22,14 +24,29 @@ export declare class NavigationSelected extends NavigationPaneBase {
22
24
  }
23
25
  export declare class NavigationEnd extends NavigationPaneBase {
24
26
  }
27
+ export declare class NavigationMode extends NavigationPaneBase {
28
+ readonly mode: PaneMode;
29
+ constructor(mode: PaneMode, pane: PaneRef<any>);
30
+ }
31
+ export declare class NavigationFullscreen extends NavigationPaneBase {
32
+ readonly fullscreen: boolean;
33
+ constructor(fullscreen: boolean, pane: PaneRef<any>);
34
+ }
35
+ export declare class NavigationResize extends NavigationPaneBase {
36
+ readonly dimentions: Dimentions;
37
+ constructor(dimentions: Dimentions, pane: PaneRef<any>);
38
+ }
39
+ export declare class NavigationClose extends NavigationPaneBase {
40
+ }
25
41
  export declare class ParamNavigation extends NavigationPaneBase {
26
42
  readonly params: ParamMap;
27
- constructor(params: ParamMap, slot: PaneRef<any>);
43
+ constructor(params: ParamMap, pane: PaneRef<any>);
28
44
  }
29
45
  export declare class QueryParamNavigation extends NavigationPaneBase {
30
46
  readonly queryParams: ParamMap;
31
- constructor(queryParams: ParamMap, slot: PaneRef<any>);
47
+ constructor(queryParams: ParamMap, pane: PaneRef<any>);
32
48
  }
49
+ export declare type PaneMode = 'tab' | 'pane';
33
50
  export interface PaneOptions {
34
51
  title?: string;
35
52
  group?: string;
@@ -39,18 +56,16 @@ export interface PaneOptions {
39
56
  };
40
57
  openPolicy?: OpenPolicy;
41
58
  }
42
- export declare type PaneAction = 'expand' | 'focus' | 'close' | 'refresh';
59
+ export declare type CallbackFunction = 'expand' | 'focus' | 'close' | 'refresh';
43
60
  export declare class PaneRef<T = any> {
44
61
  component: Type<any>;
45
62
  private _options;
46
- readonly _comm$: Subject<string>;
63
+ readonly _comm$: Subject<CallbackFunction>;
47
64
  /** */
48
65
  readonly _data$: BehaviorSubject<ParamMap>;
49
66
  readonly _params$: BehaviorSubject<ParamMap>;
50
67
  readonly _queryParams$: BehaviorSubject<ParamMap>;
51
- readonly _resize$: BehaviorSubject<Dimentions>;
52
- _fullscreen$: BehaviorSubject<boolean>;
53
- _mode$: BehaviorSubject<'tab' | 'pane'>;
68
+ readonly _events$: Subject<NavigationBase>;
54
69
  title: string;
55
70
  icon?: string;
56
71
  guide?: string;
@@ -60,34 +75,39 @@ export declare class PaneRef<T = any> {
60
75
  group: string;
61
76
  help: string;
62
77
  expandable: boolean;
78
+ _fullscreen: boolean;
63
79
  _instance: T;
64
80
  _path: string;
65
81
  _queryString: string;
66
82
  _injector: Injector;
67
83
  _portal: ComponentPortal<T>;
84
+ _mode: PaneMode;
85
+ _stretch: boolean;
68
86
  get injector(): Injector;
69
87
  get fullscreen(): boolean;
70
- get fullscreenChange(): import("rxjs").Observable<boolean>;
71
88
  get fullPath(): string;
72
89
  get instance(): T;
73
90
  get data(): any;
74
91
  get dataChange(): import("rxjs").Observable<ParamMap>;
75
92
  get params(): ParamMap;
76
- get resize(): import("rxjs").Observable<Dimentions>;
93
+ get resize(): import("rxjs").Observable<NavigationBase>;
77
94
  get paramsChange(): import("rxjs").Observable<ParamMap>;
78
95
  get queryString(): string;
79
96
  get queryParams(): ParamMap;
80
97
  get queryParamsChange(): import("rxjs").Observable<ParamMap>;
98
+ get events(): import("rxjs").Observable<NavigationBase>;
99
+ get closing(): import("rxjs").Observable<NavigationBase>;
100
+ get modeChange(): import("rxjs").Observable<NavigationBase>;
101
+ get fullscreenChange(): import("rxjs").Observable<NavigationBase>;
81
102
  get path(): string;
82
- get modeChange(): import("rxjs").Observable<"tab" | "pane">;
83
- get mode(): "tab" | "pane";
103
+ get mode(): PaneMode;
84
104
  get parent(): PaneRef<any>;
85
105
  get stretch(): boolean;
86
106
  set stretch(val: boolean);
87
107
  get dialog(): boolean;
88
108
  get dismissable(): boolean;
89
109
  get route(): PaneRoute;
90
- constructor(component: Type<any>, mode: 'tab' | 'pane', _options: {
110
+ constructor(component: Type<any>, mode: PaneMode, _options: {
91
111
  path?: string;
92
112
  route?: PaneRoute;
93
113
  title?: string;
@@ -150,7 +150,7 @@ export declare class SlotsComponent implements OnInit, OnDestroy {
150
150
  * escape
151
151
  * @param event
152
152
  */
153
- collapse(): void;
153
+ collapse(): Promise<void>;
154
154
  onResize(): void;
155
155
  private _resize;
156
156
  closeTab(position: number): void;
@@ -84,6 +84,7 @@ export declare const STRINGS: {
84
84
  ar: {};
85
85
  ru: {};
86
86
  en: {
87
+ OutOfOfficeHelp: string;
87
88
  LastDay: string;
88
89
  TodayAt: string;
89
90
  Tomorrow: string;
@@ -549,6 +550,7 @@ export declare const STRINGS: {
549
550
  Working: string;
550
551
  };
551
552
  he: {
553
+ OutOfOfficeHelp: string;
552
554
  LastDay: string;
553
555
  TodayAt: string;
554
556
  Tomorrow: string;
@@ -3,13 +3,14 @@ import { FormBuilder, FormGroup } from '@angular/forms';
3
3
  import { Observable } from 'rxjs';
4
4
  import { OverlayRef } from '@angular/cdk/overlay';
5
5
  import { MatExpansionPanel } from '@angular/material/expansion';
6
- import { MatChipInputEvent } from '@angular/material/chips';
6
+ import { MatChipInput, MatChipInputEvent } from '@angular/material/chips';
7
7
  import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
8
8
  import { BizDocConfig } from '../core/configuration';
9
9
  import { Options, UserInfo } from '../core/models';
10
10
  import { AccountService } from '../core/account.service';
11
11
  import { SessionService } from '../core/session.service';
12
12
  import { PromptService } from '../core/prompt.service';
13
+ import { MatInput } from '@angular/material/input';
13
14
  import * as i0 from "@angular/core";
14
15
  export declare type OptionType = 'notifications' | 'outofoffice' | 'emails' | 'grantaccess';
15
16
  export declare const OPTION_PANEL: InjectionToken<OptionData>;
@@ -24,6 +25,8 @@ export declare class OptionsComponent implements OnInit, OnDestroy {
24
25
  private _session;
25
26
  private readonly _destroy;
26
27
  private _requiredValidator;
28
+ substitueInput: MatInput;
29
+ grantInput: MatChipInput;
27
30
  readonly language: import("@angular/forms").FormControl;
28
31
  readonly aRIA: import("@angular/forms").FormControl;
29
32
  readonly languages: string[];
@@ -37,13 +40,11 @@ export declare class OptionsComponent implements OnInit, OnDestroy {
37
40
  readonly separatorKeysCodes: number[];
38
41
  outOfOffice: MatExpansionPanel;
39
42
  notifications: MatExpansionPanel;
40
- private readonly _me;
41
43
  /** options ctor */
42
44
  constructor(_option: OptionData, overlayRef: OverlayRef, _fb: FormBuilder, _accounts: AccountService, _sb: PromptService, _session: SessionService, config: BizDocConfig);
43
45
  ngOnInit(): void;
44
46
  private _toggle;
45
47
  toggleSound(): void;
46
- nameOf(id: string): Observable<string>;
47
48
  display: (item: UserInfo) => string;
48
49
  addTag(event: MatChipInputEvent): void;
49
50
  removeTag(tag: string): void;
@@ -2,32 +2,33 @@ import { ModuleWithProviders } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  import * as i1 from "./admin/permissions/permissions.component";
4
4
  import * as i2 from "./admin/indices/manage-cube-index.component";
5
- import * as i3 from "./admin/utility-wrapper.component";
6
- import * as i4 from "./admin/utility.pane.component";
7
- import * as i5 from "./admin/core/search.input";
8
- import * as i6 from "./admin/document-trace/reassign.dialog";
9
- import * as i7 from "./admin/diff/configuration-diff.component";
10
- import * as i8 from "./admin/document-trace/document-trace.component";
11
- import * as i9 from "./admin/document-trace/trace-element.component";
12
- import * as i10 from "./admin/profiler/profiler.component";
13
- import * as i11 from "./admin/positions/positions.component";
14
- import * as i12 from "./admin/positions/positions-popup.component";
15
- import * as i13 from "./admin/form/workflow/workflow.component";
16
- import * as i14 from "./admin/form/workflow/node.component";
17
- import * as i15 from "./admin/form/workflow/role-node.component";
18
- import * as i16 from "./admin/patterns/patterns.component";
19
- import * as i17 from "@angular/common";
20
- import * as i18 from "@angular/common/http";
21
- import * as i19 from "@angular/forms";
22
- import * as i20 from "@angular/flex-layout";
23
- import * as i21 from "@angular/router";
24
- import * as i22 from "./modules/diagram.module";
25
- import * as i23 from "./modules/chart.module";
26
- import * as i24 from "./shared.module";
5
+ import * as i3 from "./admin/profiler/outofoffice.component";
6
+ import * as i4 from "./admin/utility-wrapper.component";
7
+ import * as i5 from "./admin/utility.pane.component";
8
+ import * as i6 from "./admin/core/search.input";
9
+ import * as i7 from "./admin/document-trace/reassign.dialog";
10
+ import * as i8 from "./admin/diff/configuration-diff.component";
11
+ import * as i9 from "./admin/document-trace/document-trace.component";
12
+ import * as i10 from "./admin/document-trace/trace-element.component";
13
+ import * as i11 from "./admin/profiler/profiler.component";
14
+ import * as i12 from "./admin/positions/positions.component";
15
+ import * as i13 from "./admin/positions/positions-popup.component";
16
+ import * as i14 from "./admin/form/workflow/workflow.component";
17
+ import * as i15 from "./admin/form/workflow/node.component";
18
+ import * as i16 from "./admin/form/workflow/role-node.component";
19
+ import * as i17 from "./admin/patterns/patterns.component";
20
+ import * as i18 from "@angular/common";
21
+ import * as i19 from "@angular/common/http";
22
+ import * as i20 from "@angular/forms";
23
+ import * as i21 from "@angular/flex-layout";
24
+ import * as i22 from "@angular/router";
25
+ import * as i23 from "./modules/diagram.module";
26
+ import * as i24 from "./modules/chart.module";
27
+ import * as i25 from "./shared.module";
27
28
  /** administrative utilities */
28
29
  export declare class SystemModule {
29
30
  static forChild(): ModuleWithProviders<SystemModule>;
30
31
  static ɵfac: i0.ɵɵFactoryDeclaration<SystemModule, never>;
31
- static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.PermissionsUtility, typeof i2.ManageCubeIndexUtility, typeof i3.UtilityWrapperComponent, typeof i4.UtilityPaneComponent, typeof i5.SearchInput, typeof i6.ReassignDialog, typeof i7.SystemDiffComponent, typeof i8.DocumentTraceComponent, typeof i9.TraceElementComponent, typeof i10.ProfilerComponent, typeof i11.PositionsComponent, typeof i12.PositionsPopup, typeof i13.WorkflowComponent, typeof i14.WorkflowNodeComponent, typeof i15.RoleNodeComponent, typeof i16.PatternsComponent], [typeof i17.CommonModule, typeof i18.HttpClientModule, typeof i19.ReactiveFormsModule, typeof i20.FlexLayoutModule, typeof i21.RouterModule, typeof i22.SyncfusionDiagramModule, typeof i23.SyncfusionChartModule, typeof i24.SharedModule], [typeof i1.PermissionsUtility, typeof i2.ManageCubeIndexUtility, typeof i3.UtilityWrapperComponent, typeof i4.UtilityPaneComponent, typeof i7.SystemDiffComponent, typeof i8.DocumentTraceComponent, typeof i9.TraceElementComponent, typeof i10.ProfilerComponent, typeof i11.PositionsComponent, typeof i13.WorkflowComponent, typeof i14.WorkflowNodeComponent, typeof i15.RoleNodeComponent, typeof i16.PatternsComponent]>;
32
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.PermissionsUtility, typeof i2.ManageCubeIndexUtility, typeof i3.ProfileSettingsDialog, typeof i4.UtilityWrapperComponent, typeof i5.UtilityPaneComponent, typeof i6.SearchInput, typeof i7.ReassignDialog, typeof i8.SystemDiffComponent, typeof i9.DocumentTraceComponent, typeof i10.TraceElementComponent, typeof i11.ProfilerComponent, typeof i12.PositionsComponent, typeof i13.PositionsPopup, typeof i14.WorkflowComponent, typeof i15.WorkflowNodeComponent, typeof i16.RoleNodeComponent, typeof i17.PatternsComponent], [typeof i18.CommonModule, typeof i19.HttpClientModule, typeof i20.ReactiveFormsModule, typeof i21.FlexLayoutModule, typeof i22.RouterModule, typeof i23.SyncfusionDiagramModule, typeof i24.SyncfusionChartModule, typeof i25.SharedModule], [typeof i1.PermissionsUtility, typeof i2.ManageCubeIndexUtility, typeof i4.UtilityWrapperComponent, typeof i5.UtilityPaneComponent, typeof i8.SystemDiffComponent, typeof i9.DocumentTraceComponent, typeof i10.TraceElementComponent, typeof i11.ProfilerComponent, typeof i12.PositionsComponent, typeof i14.WorkflowComponent, typeof i15.WorkflowNodeComponent, typeof i16.RoleNodeComponent, typeof i17.PatternsComponent]>;
32
33
  static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
33
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.14.1",
3
+ "version": "1.14.5",
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",
@@ -10,26 +10,26 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@ctrl/ngx-emoji-mart": "^6.2.0",
13
- "@microsoft/signalr": "^6.0.3",
14
- "@syncfusion/ej2": "^20.1.47",
15
- "@syncfusion/ej2-angular-charts": "^20.1.47",
13
+ "@microsoft/signalr": "^6.0.4",
14
+ "@syncfusion/ej2": "^20.1.51",
15
+ "@syncfusion/ej2-angular-charts": "^20.1.51",
16
16
  "@syncfusion/ej2-angular-circulargauge": "^20.1.47",
17
- "@syncfusion/ej2-angular-diagrams": "^20.1.47",
18
- "@syncfusion/ej2-angular-gantt": "^20.1.47",
19
- "@syncfusion/ej2-angular-grids": "^20.1.47",
17
+ "@syncfusion/ej2-angular-diagrams": "^20.1.51",
18
+ "@syncfusion/ej2-angular-gantt": "^20.1.51",
19
+ "@syncfusion/ej2-angular-grids": "^20.1.51",
20
20
  "@syncfusion/ej2-angular-kanban": "^20.1.47",
21
- "@syncfusion/ej2-angular-pivotview": "^20.1.47",
22
- "@syncfusion/ej2-angular-richtexteditor": "^20.1.47",
23
- "@syncfusion/ej2-angular-schedule": "^20.1.47",
24
- "@syncfusion/ej2-angular-spreadsheet": "^20.1.47",
25
- "@syncfusion/ej2-base": "^20.1.47",
21
+ "@syncfusion/ej2-angular-pivotview": "^20.1.48",
22
+ "@syncfusion/ej2-angular-richtexteditor": "^20.1.51",
23
+ "@syncfusion/ej2-angular-schedule": "^20.1.50",
24
+ "@syncfusion/ej2-angular-spreadsheet": "^20.1.51",
25
+ "@syncfusion/ej2-base": "^20.1.50",
26
26
  "@teamhive/lottie-player": "^1.0.0",
27
27
  "brace": "^0.11.1",
28
- "cookie": "^0.4.2",
29
- "dayjs": "^1.11.0",
30
- "firebase": "^9.6.10",
28
+ "cookie": "^0.5.0",
29
+ "dayjs": "^1.11.1",
30
+ "firebase": "^9.6.11",
31
31
  "hammerjs": "~2",
32
- "lottie-web": "^5.9.1",
32
+ "lottie-web": "^5.9.3",
33
33
  "ngx-cookie-service": "13",
34
34
  "zone.js": "^0.11.5",
35
35
  "tslib": "^2.3.0"
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 } from './lib/core/slots/pane-ref';
56
+ export { PaneRef, PaneOptions, QueryParamNavigation, ParamNavigation, NavigationStart, NavigationEnd, NavigationSelected, NavigationResize, NavigationMode, NavigationFullscreen, NavigationClose } 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';