@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.
- package/assets/themes/brown.min.css +4 -4
- package/assets/themes/dark.min.css +4 -4
- package/assets/themes/deep-purple-light-blue.min.css +4 -4
- package/assets/themes/deep-purple-teal.min.css +4 -4
- package/assets/themes/default.min.css +4 -4
- package/assets/themes/green.min.css +4 -4
- package/assets/themes/indigo.min.css +4 -4
- package/esm2022/lib/browse/browse-items.component.mjs +4 -4
- package/esm2022/lib/browse/filter/filter.component.mjs +3 -3
- package/esm2022/lib/compose/compose.pane.component.mjs +18 -11
- package/esm2022/lib/core/translations.mjs +3 -1
- package/esm2022/lib/cube/sum/sum.component.mjs +8 -6
- package/esm2022/lib/dashboard/recents/recents.widget.mjs +4 -2
- package/esm2022/lib/modules/gantt.module.mjs +3 -3
- package/esm2022/lib/system.module.mjs +2 -2
- package/esm2022/lib/views/cube/cube-base.mjs +11 -6
- package/esm2022/lib/views/cube/matrix.component.mjs +3 -1
- package/esm2022/lib/views/timeline/timeline.component.exp.mjs +39 -39
- package/esm2022/lib/views/views.pane.component.mjs +2 -2
- package/fesm2022/bizdoc-core.mjs +89 -69
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/browse/browse-items.component.d.ts +1 -1
- package/lib/compose/compose.pane.component.d.ts +4 -2
- package/lib/core/translations.d.ts +2 -0
- package/lib/views/cube/cube-base.d.ts +1 -1
- package/lib/views/timeline/timeline.component.exp.d.ts +10 -2
- package/package.json +1 -1
@@ -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
|
-
|
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
|
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
|
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
|
-
|
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: {
|