@bizdoc/core 1.11.4 → 1.12.0-next.1
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/esm2020/lib/compose/action/return-action.component.mjs +11 -5
- package/esm2020/lib/compose/trace/flow.component.mjs +28 -9
- package/esm2020/lib/compose/trace/people.component.mjs +3 -2
- package/esm2020/lib/compose/trace/trace.component.mjs +12 -1
- package/esm2020/lib/core/controls/combination-picker.mjs +3 -3
- package/esm2020/lib/core/controls/file.input.mjs +7 -4
- package/esm2020/lib/core/mailbox.service.mjs +4 -6
- package/esm2020/lib/core/models.mjs +1 -1
- package/esm2020/lib/core/slots/slots.component.mjs +4 -4
- package/esm2020/lib/core/translations.mjs +7 -5
- package/esm2020/lib/cube/explore/explore-items.component.mjs +4 -4
- package/esm2020/lib/cube/explore/explore.pane.component.mjs +5 -4
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +4 -4
- package/esm2020/lib/cube/matrix/matrix.base.mjs +2 -5
- package/esm2020/lib/cube/matrix/matrix.pane.component.mjs +6 -3
- package/esm2020/lib/cube/matrix/popup.component.mjs +3 -3
- package/esm2020/lib/cube/matrix/table.component.mjs +3 -3
- package/esm2020/lib/dashboard/recents/recents.widget.mjs +24 -26
- package/esm2020/lib/home/options/options.component.mjs +4 -3
- package/esm2020/lib/views/cube/explore.component.mjs +7 -4
- package/fesm2015/bizdoc-core.mjs +136 -94
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +135 -94
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/compose/action/return-action.component.d.ts +3 -1
- package/lib/core/models.d.ts +1 -0
- package/lib/core/translations.d.ts +2 -0
- package/lib/cube/explore/explore-items.component.d.ts +1 -1
- package/lib/cube/matrix/matrix.base.d.ts +0 -1
- package/lib/dashboard/recents/recents.widget.d.ts +10 -9
- package/lib/home/options/options.component.d.ts +2 -1
- package/lib/views/cube/explore.component.d.ts +2 -0
- package/package.json +1 -1
@@ -4,11 +4,13 @@ import { Recipient } from '../../core/models';
|
|
4
4
|
import { ActionRef } from './action-ref';
|
5
5
|
import { SessionService } from '../../core/session.service';
|
6
6
|
import { AccountService } from '../../core/account.service';
|
7
|
+
import { OnInit } from '@angular/core';
|
7
8
|
import * as i0 from "@angular/core";
|
8
|
-
export declare class ReturnActionComponent implements ArgumentsComponent {
|
9
|
+
export declare class ReturnActionComponent implements ArgumentsComponent, OnInit {
|
9
10
|
private _fb;
|
10
11
|
readonly recipients: Recipient[];
|
11
12
|
constructor(_fb: FormBuilder, actionRef: ActionRef, session: SessionService, accounts: AccountService);
|
13
|
+
ngOnInit(): void;
|
12
14
|
readonly form: import("@angular/forms").FormGroup;
|
13
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReturnActionComponent, never>;
|
14
16
|
static ɵcmp: i0.ɵɵComponentDeclaration<ReturnActionComponent, "ng-component", never, {}, {}, never, never>;
|
package/lib/core/models.d.ts
CHANGED
@@ -39,7 +39,6 @@ export declare class ExploreItemsComponent implements OnInit, OnChanges, OnDestr
|
|
39
39
|
/** drill-down ctor */
|
40
40
|
constructor(_service: CubeService, _sb: PromptService, _session: SessionService, _translate: TranslateService);
|
41
41
|
ngOnInit(): void;
|
42
|
-
ngOnDestroy(): void;
|
43
42
|
refresh(): void;
|
44
43
|
ngOnChanges(_: SimpleChanges): void;
|
45
44
|
/** */
|
@@ -48,6 +47,7 @@ export declare class ExploreItemsComponent implements OnInit, OnChanges, OnDestr
|
|
48
47
|
private _datasource;
|
49
48
|
expand(item: any): void;
|
50
49
|
exportExcel(): void;
|
50
|
+
ngOnDestroy(): void;
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExploreItemsComponent, never>;
|
52
52
|
static ɵcmp: i0.ɵɵComponentDeclaration<ExploreItemsComponent, "bizdoc-cube-explore", never, { "pageSize": "pageSize"; "cube": "cube"; "index": "index"; "scope": "scope"; "axes": "axes"; "loading": "loading"; }, { "explore": "explore"; "load": "load"; "loadingChange": "loadingChange"; }, never, never>;
|
53
53
|
}
|
@@ -7,33 +7,34 @@ import { FormControl } from '@angular/forms';
|
|
7
7
|
import { BizDocConfig } from '../../core/configuration';
|
8
8
|
import { RouterImpl } from '../../core/router';
|
9
9
|
import { SessionService } from '../../core/session.service';
|
10
|
+
import { PromptService } from '../../core/prompt.service';
|
10
11
|
import * as i0 from "@angular/core";
|
11
|
-
export declare class RecentsWidget implements WidgetComponent<
|
12
|
+
export declare class RecentsWidget implements WidgetComponent<RecipientInfo[]>, OnInit, OnDestroy {
|
12
13
|
private _router;
|
13
14
|
private _service;
|
14
|
-
|
15
|
-
|
15
|
+
private _ps;
|
16
|
+
dataSource: MatTableDataSource<RecipientInfo>;
|
16
17
|
height: string;
|
17
18
|
readonly search: FormControl;
|
18
19
|
readonly enableAnalysis: boolean;
|
19
20
|
readonly columns: string[];
|
20
21
|
private readonly _destroy;
|
21
|
-
|
22
|
-
constructor(_router: RouterImpl, _service: MailboxService, ref: WidgetRef, session: SessionService, config: BizDocConfig);
|
22
|
+
constructor(_router: RouterImpl, _service: MailboxService, _ps: PromptService, ref: WidgetRef, session: SessionService, config: BizDocConfig);
|
23
23
|
ngOnInit(): void;
|
24
|
-
onBind(data:
|
24
|
+
onBind(data: RecipientInfo[]): void;
|
25
25
|
private _navigate;
|
26
|
-
open(item:
|
27
|
-
view(item:
|
26
|
+
open(item: RecipientInfo): void;
|
27
|
+
view(item: RecipientInfo, evt: Event): void;
|
28
28
|
ngOnDestroy(): void;
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<RecentsWidget, never>;
|
30
30
|
static ɵcmp: i0.ɵɵComponentDeclaration<RecentsWidget, "ng-component", never, {}, {}, never, never>;
|
31
31
|
}
|
32
|
-
interface
|
32
|
+
interface RecipientInfo {
|
33
33
|
id: number;
|
34
34
|
formId: string;
|
35
35
|
number?: string;
|
36
36
|
subject?: string;
|
37
37
|
stateId: string;
|
38
|
+
loading?: boolean;
|
38
39
|
}
|
39
40
|
export {};
|
@@ -18,9 +18,10 @@ export declare class QuickOptionsComponent implements OnInit, OnDestroy {
|
|
18
18
|
private _session;
|
19
19
|
private _dialog;
|
20
20
|
readonly name: string;
|
21
|
-
|
21
|
+
readonly by: string;
|
22
22
|
online: boolean;
|
23
23
|
theme: string;
|
24
|
+
available: AvailabilityState;
|
24
25
|
readonly languages: string[];
|
25
26
|
readonly themes: Theme[];
|
26
27
|
readonly guides: Guide[];
|
@@ -21,6 +21,7 @@ export declare class CubeExploreViewComponent extends CubeBase<Options> {
|
|
21
21
|
}[]>;
|
22
22
|
};
|
23
23
|
filters: CubeAxis[];
|
24
|
+
pageSize: number;
|
24
25
|
constructor(viewRef: DocumentViewRef<Options>, _sb: PromptService, _router: RouterImpl, service: CubeService, _ds: DatasourceService, session: SessionService);
|
25
26
|
onViewBind(): void;
|
26
27
|
/**
|
@@ -37,5 +38,6 @@ interface Options {
|
|
37
38
|
aggregate?: string[];
|
38
39
|
filters: string[];
|
39
40
|
scope?: ScopeType;
|
41
|
+
pageSize?: number;
|
40
42
|
}
|
41
43
|
export {};
|
package/package.json
CHANGED