@bizdoc/core 2.3.20 → 2.3.21

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.
@@ -51,7 +51,7 @@ export declare class BrowseItemsComponent implements OnInit, OnChanges, OnDestro
51
51
  private _pendingItems;
52
52
  private readonly _destroy;
53
53
  private readonly _loading$;
54
- enableAnalysis: boolean;
54
+ enableViews: boolean;
55
55
  /** browse ctor */
56
56
  constructor(_mailbox: MailboxService, _accounts: AccountService, _cube: CubeService, _session: SessionService, _sb: PromptService, _translate: TranslateService, _cd: ChangeDetectorRef, _router: RouterImpl, _messaging: HubService, _config: BizDocConfig);
57
57
  ngOnInit(): void;
@@ -6,7 +6,6 @@ import { ComposeFormComponent } from './form.component';
6
6
  import { ViewMode } from '../core/base';
7
7
  import { MailboxService } from '../core/mailbox.service';
8
8
  import { SessionService } from '../core/session.service';
9
- import { BizDocConfig } from '../core/configuration';
10
9
  import * as i0 from "@angular/core";
11
10
  export declare class ComposePaneComponent implements OnInit, OnDestroy {
12
11
  private _session;
@@ -22,11 +21,13 @@ export declare class ComposePaneComponent implements OnInit, OnDestroy {
22
21
  valid: boolean;
23
22
  mode: ViewMode;
24
23
  expendable: boolean;
24
+ showToolbar: boolean;
25
25
  readonly enableAnalysis: boolean;
26
+ private _previousTop;
26
27
  private readonly _dragDrop;
27
28
  private readonly _destroy;
28
29
  /** compose ctor */
29
- constructor(_session: SessionService, _mailbox: MailboxService, _pane: PaneRef<ComposePaneComponent>, _router: PanesRouter, config: BizDocConfig);
30
+ constructor(_session: SessionService, _mailbox: MailboxService, _pane: PaneRef<ComposePaneComponent>, _router: PanesRouter);
30
31
  ngOnInit(): void;
31
32
  close(): void;
32
33
  edit(): void;
@@ -37,6 +38,7 @@ export declare class ComposePaneComponent implements OnInit, OnDestroy {
37
38
  navComments(): void;
38
39
  navTrace(): void;
39
40
  private _navigate;
41
+ onScroll(event: MouseEvent): void;
40
42
  handleDocumentDrop(event: KeyboardEvent): void;
41
43
  handleDrop(event: DragEvent): void;
42
44
  handleEnter(event: DragEvent): void;
@@ -144,6 +144,7 @@ export declare const STRINGS: {
144
144
  ContinueEditing: string;
145
145
  Close: string;
146
146
  View: string;
147
+ Views: string;
147
148
  FirstPage: string;
148
149
  LastPage: string;
149
150
  NextPage: string;
@@ -620,6 +621,7 @@ export declare const STRINGS: {
620
621
  ContinueEditingMale: string;
621
622
  ContinueEditingFemale: string;
622
623
  View: string;
624
+ Views: string;
623
625
  Close: string;
624
626
  FirstPage: string;
625
627
  LastPage: string;
@@ -22,7 +22,7 @@ export declare abstract class CubeBase<O extends Options> implements DocumentVie
22
22
  cube: Cube;
23
23
  hasdata: boolean;
24
24
  title: string;
25
- private _consolidateData;
25
+ private _consolidatedAxes;
26
26
  constructor(_viewRef: DocumentViewRef<O>, _service: CubeService, _session: SessionService, _none?: boolean);
27
27
  onBind(model: DocumentModel<any>): void;
28
28
  abstract onViewBind(): any;
@@ -24,7 +24,6 @@ export declare class TimelineViewComponent implements DocumentViewComponent {
24
24
  dateFormat: string;
25
25
  holidays: HolidayModel[];
26
26
  width: number;
27
- readonly selectionSettings: SelectionSettingsModel;
28
27
  tasks: Task[];
29
28
  /** timeline-view ctor */
30
29
  constructor(_ps: PromptService, viewRef: DocumentViewRef<Options>, config: BizDocConfig, _users: AccountService, _session: SessionService, _translate: TranslateService, _router: RouterImpl, _element: ElementRef);
@@ -32,8 +31,17 @@ export declare class TimelineViewComponent implements DocumentViewComponent {
32
31
  private _draw;
33
32
  queryTaskbarInfo(evt: IQueryTaskbarInfoEventArgs): void;
34
33
  private _prepare;
35
- rowSelecting(r: any): void;
34
+ /**
35
+ *
36
+ * @param row
37
+ */
38
+ rowSelecting(row: any): void;
39
+ /**
40
+ *
41
+ * @param task
42
+ */
36
43
  _compare(task: Task): void;
44
+ readonly selectionSettings: SelectionSettingsModel;
37
45
  readonly taskFields: TaskFieldsModel;
38
46
  columns: ColumnModel[];
39
47
  readonly tooltipSettings: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "2.3.20",
3
+ "version": "2.3.21",
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",