@bizdoc/core 1.13.10 → 1.13.11
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/form.component.mjs +18 -5
- package/esm2020/lib/core/controls/combination-pool.mjs +10 -14
- package/esm2020/lib/core/hub.service.mjs +4 -1
- package/esm2020/lib/core/layout/file.field.mjs +47 -0
- package/esm2020/lib/core/layout/layout.component.mjs +5 -1
- package/esm2020/lib/core/mailbox.service.mjs +5 -2
- package/esm2020/lib/core/translations.mjs +5 -1
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +3 -8
- package/esm2020/lib/reports/cube/usage-base.mjs +1 -4
- package/esm2020/lib/shared.module.mjs +4 -3
- package/fesm2015/bizdoc-core.mjs +19836 -19784
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +19509 -19457
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/compose/form.component.d.ts +8 -4
- package/lib/core/hub.service.d.ts +21 -16
- package/lib/core/layout/file.field.d.ts +14 -0
- package/lib/core/mailbox.service.d.ts +2 -1
- package/lib/core/translations.d.ts +4 -0
- package/lib/cube/grid/spreadsheet.component.d.ts +2 -1
- package/lib/reports/cube/usage-base.d.ts +0 -2
- package/lib/shared.module.d.ts +125 -124
- package/package.json +1 -1
@@ -1,4 +1,6 @@
|
|
1
1
|
import { Injector, OnDestroy, ElementRef, ViewContainerRef, OnChanges, SimpleChanges, EventEmitter, OnInit } from '@angular/core';
|
2
|
+
import { MatDialog } from '@angular/material/dialog';
|
3
|
+
import { MatSnackBar } from '@angular/material/snack-bar';
|
2
4
|
import { Observable } from 'rxjs';
|
3
5
|
import { RecipientModel, Form, Action } from '../core/models';
|
4
6
|
import { ViewMode } from '../core/base';
|
@@ -8,16 +10,15 @@ import { PromptService } from '../core/prompt.service';
|
|
8
10
|
import { HubService } from '../core/hub.service';
|
9
11
|
import { GuideService } from '../core/guide/guide.service';
|
10
12
|
import { AccountService } from '../core/account.service';
|
13
|
+
import { TranslateService } from '../core/translate.service';
|
11
14
|
import { BizDocComponentFactoryResolver } from '../core/component-factory-resolver';
|
12
15
|
import { AttachmentsComponent } from './attachments/attachments.component';
|
13
16
|
import { Popup } from '../core/popup/popup.service';
|
14
17
|
import { RouterImpl } from "../core/router";
|
15
|
-
import { MatSnackBar } from '@angular/material/snack-bar';
|
16
|
-
import { TranslateService } from '../core/translate.service';
|
17
|
-
import { MatDialog } from '@angular/material/dialog';
|
18
18
|
import * as i0 from "@angular/core";
|
19
|
+
export declare const REPORT_EDITING_DELAY = 2000,
|
19
20
|
/** save draft ms */
|
20
|
-
|
21
|
+
AUTO_SAVE_DELAY = 5000, EDITING_MESSAGE_DELAY = 3000;
|
21
22
|
export declare class ComposeFormComponent implements OnDestroy, OnInit, OnChanges {
|
22
23
|
private _popup;
|
23
24
|
private _mailbox;
|
@@ -46,14 +47,17 @@ export declare class ComposeFormComponent implements OnDestroy, OnInit, OnChange
|
|
46
47
|
actions: Action[];
|
47
48
|
page: string | number;
|
48
49
|
help: string;
|
50
|
+
editing: string;
|
49
51
|
_fileElement: ElementRef<HTMLInputElement>;
|
50
52
|
attachments: AttachmentsComponent;
|
51
53
|
_container: ViewContainerRef;
|
52
54
|
private _formRef;
|
53
55
|
private _instance;
|
56
|
+
private _editingTask;
|
54
57
|
private readonly _destroy;
|
55
58
|
constructor(_popup: Popup, _mailbox: MailboxService, _accounts: AccountService, _router: RouterImpl, _dialog: MatDialog, _sb: PromptService, _session: SessionService, _injector: Injector, _snackbar: MatSnackBar, _cf: BizDocComponentFactoryResolver, _guide: GuideService, _translate: TranslateService, _messaging: HubService);
|
56
59
|
ngOnInit(): void;
|
60
|
+
private _editing;
|
57
61
|
ngOnChanges(_changes: SimpleChanges): void;
|
58
62
|
private _fileChangeListener;
|
59
63
|
private _applyChanges;
|
@@ -20,6 +20,7 @@ export declare class HubService {
|
|
20
20
|
private readonly _newNotify;
|
21
21
|
private readonly _updateNotify;
|
22
22
|
private readonly _profileChange;
|
23
|
+
private readonly _editing;
|
23
24
|
private readonly _commentTyping;
|
24
25
|
private readonly _chatTyping;
|
25
26
|
private readonly _chatWathermark;
|
@@ -35,6 +36,7 @@ export declare class HubService {
|
|
35
36
|
readonly chatTyping$: import("rxjs").Observable<ChatTypingEvent>;
|
36
37
|
readonly chatWatermark$: import("rxjs").Observable<ChatWatermarkEvent>;
|
37
38
|
readonly commentTyping$: import("rxjs").Observable<CommentTypingEvent>;
|
39
|
+
readonly editing$: import("rxjs").Observable<EditingEvent>;
|
38
40
|
readonly commentUpdate$: import("rxjs").Observable<CommentEvent>;
|
39
41
|
readonly commentDelete$: import("rxjs").Observable<CommentDeleteEvent>;
|
40
42
|
/** new notification */
|
@@ -57,65 +59,69 @@ export declare class HubService {
|
|
57
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<HubService, never>;
|
58
60
|
static ɵprov: i0.ɵɵInjectableDeclaration<HubService>;
|
59
61
|
}
|
60
|
-
interface NewMailEvent {
|
62
|
+
export interface NewMailEvent {
|
61
63
|
userId: string;
|
62
64
|
model: RecipientModel<any>;
|
63
65
|
}
|
64
|
-
interface MailUpdateEvent {
|
66
|
+
export interface MailUpdateEvent {
|
65
67
|
model: RecipientModel<any>;
|
66
68
|
userId: string;
|
67
69
|
time: Date;
|
68
70
|
originalRead?: boolean;
|
69
71
|
}
|
70
|
-
interface ChatEvent {
|
72
|
+
export interface ChatEvent {
|
71
73
|
contactId: string;
|
72
74
|
model: Chat;
|
73
75
|
}
|
74
|
-
interface ChatTypingEvent {
|
76
|
+
export interface ChatTypingEvent {
|
75
77
|
contactId: string;
|
76
78
|
}
|
77
|
-
interface ChatWatermarkEvent {
|
79
|
+
export interface ChatWatermarkEvent {
|
78
80
|
contactId: string;
|
79
81
|
time: Date;
|
80
82
|
}
|
81
|
-
interface CommentTypingEvent {
|
83
|
+
export interface CommentTypingEvent {
|
82
84
|
id: number;
|
83
85
|
userId: string;
|
84
86
|
}
|
85
|
-
interface
|
87
|
+
export interface EditingEvent {
|
88
|
+
id: number;
|
89
|
+
userId: string;
|
90
|
+
}
|
91
|
+
export interface MailDeleteEvent {
|
86
92
|
id: number;
|
87
93
|
}
|
88
|
-
interface CommentEvent {
|
94
|
+
export interface CommentEvent {
|
89
95
|
id: number;
|
90
96
|
model: Comment;
|
91
97
|
}
|
92
|
-
interface CommentDeleteEvent {
|
98
|
+
export interface CommentDeleteEvent {
|
93
99
|
id: number;
|
94
100
|
commentId: number;
|
95
101
|
}
|
96
|
-
interface VoteEvent {
|
102
|
+
export interface VoteEvent {
|
97
103
|
id: number;
|
98
104
|
commentId: number;
|
99
105
|
votes?: number;
|
100
106
|
userId: string;
|
101
107
|
vote?: number;
|
102
108
|
}
|
103
|
-
interface NotificationEvent {
|
109
|
+
export interface NotificationEvent {
|
104
110
|
originalRead?: boolean;
|
105
111
|
model: Notification;
|
106
112
|
}
|
107
|
-
interface UserInfoEvent {
|
113
|
+
export interface UserInfoEvent {
|
108
114
|
userId: string;
|
109
115
|
mode: AvailabilityState;
|
110
116
|
}
|
111
|
-
interface CallbackEvent {
|
117
|
+
export interface CallbackEvent {
|
112
118
|
message: any;
|
113
119
|
}
|
114
|
-
interface JobProgressEvent {
|
120
|
+
export interface JobProgressEvent {
|
115
121
|
jobId: string;
|
116
122
|
event: JobProgress;
|
117
123
|
}
|
118
|
-
interface ReportProgressEvent {
|
124
|
+
export interface ReportProgressEvent {
|
119
125
|
name: string;
|
120
126
|
progress: number;
|
121
127
|
}
|
@@ -125,4 +131,3 @@ export interface JobProgress {
|
|
125
131
|
message?: string;
|
126
132
|
buferringValue?: number;
|
127
133
|
}
|
128
|
-
export {};
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import { FormControl } from '@angular/forms';
|
3
|
+
import { FileInput } from '../controls/file.input';
|
4
|
+
import { FieldBase } from './input.base';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class FileField extends FieldBase implements OnInit {
|
7
|
+
readonly control: FormControl;
|
8
|
+
multiple: boolean;
|
9
|
+
input: FileInput;
|
10
|
+
type: string;
|
11
|
+
ngOnInit(): void;
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FileField, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileField, "ng-component", never, {}, {}, never, never>;
|
14
|
+
}
|
@@ -53,7 +53,8 @@ export declare class MailboxService {
|
|
53
53
|
viewedcomments(id: number): Observable<{
|
54
54
|
time: Date;
|
55
55
|
}>;
|
56
|
-
typing(id: number):
|
56
|
+
typing(id: number): Promise<any>;
|
57
|
+
editing(id: number): Promise<any>;
|
57
58
|
copy(id: number): Observable<RecipientModel<any>>;
|
58
59
|
/**
|
59
60
|
*
|
@@ -78,6 +78,7 @@ export declare const SYNCFUSION_L18N: {
|
|
78
78
|
};
|
79
79
|
export declare const STRINGS: {
|
80
80
|
'en-US': {
|
81
|
+
Editing: string;
|
81
82
|
CheckOut: string;
|
82
83
|
CheckIn: string;
|
83
84
|
CheckedOut: string;
|
@@ -531,6 +532,9 @@ export declare const STRINGS: {
|
|
531
532
|
Working: string;
|
532
533
|
};
|
533
534
|
'he-IL': {
|
535
|
+
Editing: string;
|
536
|
+
EditingMale: string;
|
537
|
+
EditingFemale: string;
|
534
538
|
Condition: string;
|
535
539
|
DragFile: string;
|
536
540
|
DragFileMale: string;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { EventEmitter, OnInit, ElementRef, OnDestroy, SimpleChanges, OnChanges } from "@angular/core";
|
2
|
-
import { ColumnModel, RowModel, Spreadsheet, CellStyleModel, SelectEventArgs, AutoFillSettingsModel } from "@syncfusion/ej2-angular-spreadsheet";
|
2
|
+
import { ColumnModel, RowModel, Spreadsheet, CellStyleModel, SelectEventArgs, AutoFillSettingsModel, ScrollSettingsModel } from "@syncfusion/ej2-angular-spreadsheet";
|
3
3
|
import { AxisClickEvent, CubeViewerComponent } from "../declarations";
|
4
4
|
import { AxesMap, YAxis } from "../../core/models";
|
5
5
|
import { CubeService } from "../cube.service";
|
@@ -32,6 +32,7 @@ export declare class CubeSpreadsheetComponent implements OnInit, CubeViewerCompo
|
|
32
32
|
spreadsheet: Spreadsheet;
|
33
33
|
dataSource: RowModel[];
|
34
34
|
columns: ColumnModel[];
|
35
|
+
readonly scrollSettings: ScrollSettingsModel;
|
35
36
|
readonly numberStyle: CellStyleModel;
|
36
37
|
readonly autoFillSettings: AutoFillSettingsModel;
|
37
38
|
private _xAxis;
|
@@ -35,7 +35,6 @@ export declare abstract class UsageReportBase<O extends UsageOptions> implements
|
|
35
35
|
protected readonly _fractionDigits: number;
|
36
36
|
protected _data: {}[];
|
37
37
|
private _args;
|
38
|
-
private _ddInstance;
|
39
38
|
protected readonly _destroy: Subject<void>;
|
40
39
|
constructor(_reportRef: ReportRef<O>, _type: DatasourceService, _service: CubeService, _session: SessionService, _router: RouterImpl, _sb: PromptService, _dir: Directionality, _translate: TranslateService);
|
41
40
|
ngOnInit(): void;
|
@@ -43,7 +42,6 @@ export declare abstract class UsageReportBase<O extends UsageOptions> implements
|
|
43
42
|
abstract onResize(dim?: Dimentions): any;
|
44
43
|
abstract onData(data: Item[]): any;
|
45
44
|
onBind(result: Item[], args?: Args): void;
|
46
|
-
exportExplore(): void;
|
47
45
|
protected browse(paxes: {
|
48
46
|
[axis: string]: AxisType;
|
49
47
|
}, index?: string): void;
|
package/lib/shared.module.d.ts
CHANGED
@@ -53,132 +53,133 @@ import * as i49 from "./core/pipes/sort.pipe";
|
|
53
53
|
import * as i50 from "./core/pipes/user-name.pipe";
|
54
54
|
import * as i51 from "./core/layout/layout.component";
|
55
55
|
import * as i52 from "./core/layout/html.field";
|
56
|
-
import * as i53 from "./core/layout/
|
57
|
-
import * as i54 from "./core/layout/
|
58
|
-
import * as i55 from "./core/layout/
|
59
|
-
import * as i56 from "./core/layout/
|
60
|
-
import * as i57 from "./core/layout/date
|
61
|
-
import * as i58 from "./core/layout/
|
62
|
-
import * as i59 from "./core/layout/
|
63
|
-
import * as i60 from "./core/layout/
|
64
|
-
import * as i61 from "./core/layout/
|
65
|
-
import * as i62 from "./core/layout/
|
66
|
-
import * as i63 from "./core/layout/
|
67
|
-
import * as i64 from "./
|
68
|
-
import * as i65 from "./compose/action/
|
69
|
-
import * as i66 from "./
|
70
|
-
import * as i67 from "./
|
71
|
-
import * as i68 from "./
|
72
|
-
import * as i69 from "./core/
|
73
|
-
import * as i70 from "./core/
|
74
|
-
import * as i71 from "./
|
75
|
-
import * as i72 from "./cube/
|
76
|
-
import * as i73 from "./cube/
|
77
|
-
import * as i74 from "./
|
78
|
-
import * as i75 from "./
|
79
|
-
import * as i76 from "./
|
80
|
-
import * as i77 from "./
|
81
|
-
import * as i78 from "./notifications/
|
82
|
-
import * as i79 from "./
|
83
|
-
import * as i80 from "./
|
84
|
-
import * as i81 from "./
|
85
|
-
import * as i82 from "./core/tagging/tagging.directive";
|
86
|
-
import * as i83 from "./core/tagging/
|
87
|
-
import * as i84 from "./core/tagging/
|
88
|
-
import * as i85 from "./
|
89
|
-
import * as i86 from "./
|
90
|
-
import * as i87 from "./notifications/types/
|
91
|
-
import * as i88 from "./notifications/types/
|
92
|
-
import * as i89 from "./notifications/types/
|
93
|
-
import * as i90 from "./notifications/types/
|
94
|
-
import * as i91 from "./notifications/types/
|
95
|
-
import * as i92 from "./notifications/types/
|
96
|
-
import * as i93 from "./notifications/types/
|
97
|
-
import * as i94 from "./notifications/types/
|
98
|
-
import * as i95 from "./notifications/types/
|
99
|
-
import * as i96 from "./
|
100
|
-
import * as i97 from "./
|
101
|
-
import * as i98 from "./
|
102
|
-
import * as i99 from "./
|
103
|
-
import * as i100 from "./compose/
|
104
|
-
import * as i101 from "./compose/attachments/
|
105
|
-
import * as i102 from "./compose/
|
106
|
-
import * as i103 from "./compose/
|
107
|
-
import * as i104 from "./
|
108
|
-
import * as i105 from "./core/
|
109
|
-
import * as i106 from "./
|
110
|
-
import * as i107 from "./compose/
|
111
|
-
import * as i108 from "./
|
112
|
-
import * as i109 from "./
|
113
|
-
import * as i110 from "./
|
114
|
-
import * as i111 from "./compose/
|
115
|
-
import * as i112 from "./compose/comments/
|
116
|
-
import * as i113 from "./compose/comments/
|
117
|
-
import * as i114 from "./compose/comments/
|
118
|
-
import * as i115 from "./compose/comments/
|
119
|
-
import * as i116 from "./
|
120
|
-
import * as i117 from "./browse/
|
121
|
-
import * as i118 from "./browse/
|
122
|
-
import * as i119 from "./
|
123
|
-
import * as i120 from "./
|
124
|
-
import * as i121 from "./cube/
|
125
|
-
import * as i122 from "./cube/
|
126
|
-
import * as i123 from "./cube/
|
127
|
-
import * as i124 from "./cube/
|
128
|
-
import * as i125 from "./cube/
|
129
|
-
import * as i126 from "./cube/grid/
|
130
|
-
import * as i127 from "./
|
131
|
-
import * as i128 from "./reports/
|
132
|
-
import * as i129 from "./reports/
|
133
|
-
import * as i130 from "./
|
134
|
-
import * as i131 from "./dashboard/
|
135
|
-
import * as i132 from "./dashboard/
|
136
|
-
import * as i133 from "./dashboard/cube/
|
137
|
-
import * as i134 from "./dashboard/cube/cube
|
138
|
-
import * as i135 from "./dashboard/cube/cube-
|
139
|
-
import * as i136 from "./dashboard/
|
140
|
-
import * as i137 from "./dashboard/
|
141
|
-
import * as i138 from "./
|
142
|
-
import * as i139 from "./
|
143
|
-
import * as i140 from "./
|
144
|
-
import * as i141 from "./
|
145
|
-
import * as i142 from "./
|
146
|
-
import * as i143 from "./
|
147
|
-
import * as i144 from "./
|
148
|
-
import * as i145 from "./
|
149
|
-
import * as i146 from "./
|
150
|
-
import * as i147 from "./
|
151
|
-
import * as i148 from "./dashboard/score/
|
152
|
-
import * as i149 from "./
|
153
|
-
import * as i150 from "./
|
154
|
-
import * as i151 from "./dashboard/
|
155
|
-
import * as i152 from "./dashboard/score/
|
156
|
-
import * as i153 from "./dashboard/score/
|
157
|
-
import * as i154 from "./
|
158
|
-
import * as i155 from "./reports/cube/usage-
|
159
|
-
import * as i156 from "./reports/cube/usage-
|
160
|
-
import * as i157 from "./
|
161
|
-
import * as i158 from "./core/
|
162
|
-
import * as i159 from "
|
163
|
-
import * as i160 from "@angular/common
|
164
|
-
import * as i161 from "@angular/
|
165
|
-
import * as i162 from "@angular/
|
166
|
-
import * as i163 from "@angular/
|
167
|
-
import * as i164 from "@
|
168
|
-
import * as i165 from "
|
169
|
-
import * as i166 from "./modules/
|
170
|
-
import * as i167 from "./modules/
|
171
|
-
import * as i168 from "./modules/
|
172
|
-
import * as i169 from "./modules/
|
173
|
-
import * as i170 from "./modules/
|
174
|
-
import * as i171 from "./modules/
|
175
|
-
import * as i172 from "./modules/
|
176
|
-
import * as i173 from "
|
177
|
-
import * as i174 from "
|
178
|
-
import * as i175 from "./modules/
|
56
|
+
import * as i53 from "./core/layout/file.field";
|
57
|
+
import * as i54 from "./core/layout/numeric.field";
|
58
|
+
import * as i55 from "./core/layout/autocomplete.field";
|
59
|
+
import * as i56 from "./core/layout/checkbox.field";
|
60
|
+
import * as i57 from "./core/layout/date.field";
|
61
|
+
import * as i58 from "./core/layout/date-range.field";
|
62
|
+
import * as i59 from "./core/layout/expression.field";
|
63
|
+
import * as i60 from "./core/layout/input.field";
|
64
|
+
import * as i61 from "./core/layout/select.field";
|
65
|
+
import * as i62 from "./core/layout/switch.field";
|
66
|
+
import * as i63 from "./core/layout/textarea.field";
|
67
|
+
import * as i64 from "./core/layout/timespan.field";
|
68
|
+
import * as i65 from "./compose/action/return-action.component";
|
69
|
+
import * as i66 from "./compose/action/assign-action.component";
|
70
|
+
import * as i67 from "./core/avatar/avatar.component";
|
71
|
+
import * as i68 from "./compose/trace/people.component";
|
72
|
+
import * as i69 from "./core/tagging/edit-input.component";
|
73
|
+
import * as i70 from "./core/NgComponentOutlet";
|
74
|
+
import * as i71 from "./core/lottie-animation";
|
75
|
+
import * as i72 from "./cube/matrix/table.component";
|
76
|
+
import * as i73 from "./cube/filter/filter-tags.component.exp";
|
77
|
+
import * as i74 from "./cube/explore/explore-items.component";
|
78
|
+
import * as i75 from "./compose/version-compare/version-compare.directive";
|
79
|
+
import * as i76 from "./core/guide/guide.component";
|
80
|
+
import * as i77 from "./home/outofoffice/outofoffice.component";
|
81
|
+
import * as i78 from "./notifications/notifications-table.component";
|
82
|
+
import * as i79 from "./notifications/filter.component";
|
83
|
+
import * as i80 from "./core/tagging/tagging.pipe";
|
84
|
+
import * as i81 from "./compose/privilage.directive";
|
85
|
+
import * as i82 from "./core/tagging/tagging-item.directive";
|
86
|
+
import * as i83 from "./core/tagging/tagging.directive";
|
87
|
+
import * as i84 from "./core/tagging/documents.component";
|
88
|
+
import * as i85 from "./core/tagging/users.component";
|
89
|
+
import * as i86 from "./reports/cube/grid-documents.component";
|
90
|
+
import * as i87 from "./notifications/types/long-running-task.notification";
|
91
|
+
import * as i88 from "./notifications/types/tagged.notification";
|
92
|
+
import * as i89 from "./notifications/types/commented.notification";
|
93
|
+
import * as i90 from "./notifications/types/nudge.notification";
|
94
|
+
import * as i91 from "./notifications/types/text.notification";
|
95
|
+
import * as i92 from "./notifications/types/cube-anomaly.notification";
|
96
|
+
import * as i93 from "./notifications/types/escalated.notification";
|
97
|
+
import * as i94 from "./notifications/types/liked.notification";
|
98
|
+
import * as i95 from "./notifications/types/state-changed.notification";
|
99
|
+
import * as i96 from "./notifications/types/upcoming-event.notification";
|
100
|
+
import * as i97 from "./core/none.component";
|
101
|
+
import * as i98 from "./scheduler/schedule.component";
|
102
|
+
import * as i99 from "./options/options.component";
|
103
|
+
import * as i100 from "./compose/trace/trace.component";
|
104
|
+
import * as i101 from "./compose/attachments/progress-button.directive";
|
105
|
+
import * as i102 from "./compose/attachments/attachments.component";
|
106
|
+
import * as i103 from "./compose/events/events.component";
|
107
|
+
import * as i104 from "./compose/tag/tags.component";
|
108
|
+
import * as i105 from "./core/info/location-info.component";
|
109
|
+
import * as i106 from "./core/prompt/mask/mask.component";
|
110
|
+
import * as i107 from "./compose/save-changes.dialog";
|
111
|
+
import * as i108 from "./compose/trace/flow.component";
|
112
|
+
import * as i109 from "./reports/substitution/substitution.component";
|
113
|
+
import * as i110 from "./core/popup/popup.component";
|
114
|
+
import * as i111 from "./compose/attachments/preview/attachment-preview.component";
|
115
|
+
import * as i112 from "./compose/comments/comments.component";
|
116
|
+
import * as i113 from "./compose/comments/comment.component";
|
117
|
+
import * as i114 from "./compose/comments/edit-comment.component";
|
118
|
+
import * as i115 from "./compose/comments/votes.component";
|
119
|
+
import * as i116 from "./compose/comments/edits.component";
|
120
|
+
import * as i117 from "./browse/browse-items.component";
|
121
|
+
import * as i118 from "./browse/filter/filter.component";
|
122
|
+
import * as i119 from "./browse/expanded-item/expanded-item.component";
|
123
|
+
import * as i120 from "./compose/form.component";
|
124
|
+
import * as i121 from "./cube/cube-view.component";
|
125
|
+
import * as i122 from "./cube/filter/filter.component";
|
126
|
+
import * as i123 from "./cube/accum/accum.component";
|
127
|
+
import * as i124 from "./cube/chart/chart.component";
|
128
|
+
import * as i125 from "./cube/pivot/pivot.component";
|
129
|
+
import * as i126 from "./cube/grid/spreadsheet.component";
|
130
|
+
import * as i127 from "./cube/grid/grid.component";
|
131
|
+
import * as i128 from "./reports/report-viewer.component";
|
132
|
+
import * as i129 from "./reports/table/table-view.component";
|
133
|
+
import * as i130 from "./reports/arguments-component";
|
134
|
+
import * as i131 from "./dashboard/dashboard.component";
|
135
|
+
import * as i132 from "./dashboard/widget-item.component";
|
136
|
+
import * as i133 from "./dashboard/cube/filter/filter.component";
|
137
|
+
import * as i134 from "./dashboard/cube/accum-cube.widget";
|
138
|
+
import * as i135 from "./dashboard/cube/cube-analysis.widget";
|
139
|
+
import * as i136 from "./dashboard/cube/cube-chart.widget";
|
140
|
+
import * as i137 from "./dashboard/actions/actions.widget";
|
141
|
+
import * as i138 from "./dashboard/recents/recents.widget";
|
142
|
+
import * as i139 from "./core/prompt/ask/ask.dialog";
|
143
|
+
import * as i140 from "./home/about/about.dialog";
|
144
|
+
import * as i141 from "./compose/action/action.dialog";
|
145
|
+
import * as i142 from "./impersonate/impersonate.component";
|
146
|
+
import * as i143 from "./chat/conversation.component";
|
147
|
+
import * as i144 from "./cube/matrix/popup.component";
|
148
|
+
import * as i145 from "./compose/version-compare/version-compare.component";
|
149
|
+
import * as i146 from "./cube/explore/document-item.component";
|
150
|
+
import * as i147 from "./reports/tasks/tasks.component";
|
151
|
+
import * as i148 from "./dashboard/score/pending-results.widget";
|
152
|
+
import * as i149 from "./dashboard/score/compare-departments.widget";
|
153
|
+
import * as i150 from "./reports/cube/table-documents.component";
|
154
|
+
import * as i151 from "./dashboard/cube/documents.widget";
|
155
|
+
import * as i152 from "./dashboard/score/personal-score.widget";
|
156
|
+
import * as i153 from "./dashboard/score/activity.widget";
|
157
|
+
import * as i154 from "./dashboard/score/peers-performance.widget";
|
158
|
+
import * as i155 from "./reports/cube/usage-pivot.component";
|
159
|
+
import * as i156 from "./reports/cube/usage-chart.component";
|
160
|
+
import * as i157 from "./reports/cube/usage-args.component";
|
161
|
+
import * as i158 from "./core/tagging/emoji.component";
|
162
|
+
import * as i159 from "./core/popup/tooltip.directive";
|
163
|
+
import * as i160 from "@angular/common";
|
164
|
+
import * as i161 from "@angular/common/http";
|
165
|
+
import * as i162 from "@angular/forms";
|
166
|
+
import * as i163 from "@angular/flex-layout";
|
167
|
+
import * as i164 from "@angular/router";
|
168
|
+
import * as i165 from "@ctrl/ngx-emoji-mart";
|
169
|
+
import * as i166 from "./modules/gantt.module";
|
170
|
+
import * as i167 from "./modules/schedule.module";
|
171
|
+
import * as i168 from "./modules/circular-gauge.module";
|
172
|
+
import * as i169 from "./modules/chart.module";
|
173
|
+
import * as i170 from "./modules/grid.module";
|
174
|
+
import * as i171 from "./modules/texteditor.module";
|
175
|
+
import * as i172 from "./modules/spreadsheet.module";
|
176
|
+
import * as i173 from "./modules/pivot.module";
|
177
|
+
import * as i174 from "@syncfusion/ej2-angular-kanban";
|
178
|
+
import * as i175 from "./modules/diagram.module";
|
179
|
+
import * as i176 from "./modules/material.module";
|
179
180
|
export declare class SharedModule {
|
180
181
|
static forChild(config?: SharedConfig): ModuleWithProviders<SharedModule>;
|
181
182
|
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
182
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.FileInput, typeof i2.DateFormatPipe, typeof i3.CalendarPipe, typeof i4.DifferencePipe, typeof i5.DurationPipe, typeof i6.TimeAgoPipe, typeof i7.CheckboxComponent, typeof i8.CubeParallelComponent, typeof i9.CubeSumComponent, typeof i10.CubeParallelViewComponent, typeof i11.CubeChartViewComponent, typeof i12.CubeExploreViewComponent, typeof i13.CubeDocumentSumComponent, typeof i14.ExploreItemImplComponent, typeof i15.DocumentInfoComponent, typeof i16.DocumentViewsComponent, typeof i17.ViewItemComponent, typeof i18.CubeDocumentMatrixComponent, typeof i19.CubeDocumentViewComponent, typeof i20.CubePivotViewComponent, typeof i21.ActionPicker, typeof i22.HtmlSimplePipe, typeof i23.QuickCommentComponent, typeof i24.DurationFormatPipe, typeof i25.CombinationPicker, typeof i26.CombinationPickerBody, typeof i27.CombinationPool, typeof i28.TimelineViewComponent, typeof i29.MatIconAnimate, typeof i30.DateRangePipe, typeof i30.AgoPipe, typeof i31.ColorPicker, typeof i32.StateDirective, typeof i33.BrokenPage, typeof i34.JoinPipe, typeof i35.TimePicker, typeof i36.TypeValuePipe, typeof i37.TypeSelect, typeof i38.TypeAutocomplete, typeof i39.TranslatePipe, typeof i40.IdentityName, typeof i41.SanitizeHtmlPipe, typeof i42.AceInput, typeof i43.TimespanInput, typeof i44.AddressInput, typeof i45.StatePipe, typeof i46.ActionPipe, typeof i47.RolePipe, typeof i48.FormPipe, typeof i49.FilterPipe, typeof i49.ArraySortPipe, typeof i50.UserNamePipe, typeof i51.LayoutComponent, typeof i52.HtmlField, typeof i53.
|
183
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.FileInput, typeof i2.DateFormatPipe, typeof i3.CalendarPipe, typeof i4.DifferencePipe, typeof i5.DurationPipe, typeof i6.TimeAgoPipe, typeof i7.CheckboxComponent, typeof i8.CubeParallelComponent, typeof i9.CubeSumComponent, typeof i10.CubeParallelViewComponent, typeof i11.CubeChartViewComponent, typeof i12.CubeExploreViewComponent, typeof i13.CubeDocumentSumComponent, typeof i14.ExploreItemImplComponent, typeof i15.DocumentInfoComponent, typeof i16.DocumentViewsComponent, typeof i17.ViewItemComponent, typeof i18.CubeDocumentMatrixComponent, typeof i19.CubeDocumentViewComponent, typeof i20.CubePivotViewComponent, typeof i21.ActionPicker, typeof i22.HtmlSimplePipe, typeof i23.QuickCommentComponent, typeof i24.DurationFormatPipe, typeof i25.CombinationPicker, typeof i26.CombinationPickerBody, typeof i27.CombinationPool, typeof i28.TimelineViewComponent, typeof i29.MatIconAnimate, typeof i30.DateRangePipe, typeof i30.AgoPipe, typeof i31.ColorPicker, typeof i32.StateDirective, typeof i33.BrokenPage, typeof i34.JoinPipe, typeof i35.TimePicker, typeof i36.TypeValuePipe, typeof i37.TypeSelect, typeof i38.TypeAutocomplete, typeof i39.TranslatePipe, typeof i40.IdentityName, typeof i41.SanitizeHtmlPipe, typeof i42.AceInput, typeof i43.TimespanInput, typeof i44.AddressInput, typeof i45.StatePipe, typeof i46.ActionPipe, typeof i47.RolePipe, typeof i48.FormPipe, typeof i49.FilterPipe, typeof i49.ArraySortPipe, typeof i50.UserNamePipe, typeof i51.LayoutComponent, typeof i52.HtmlField, typeof i53.FileField, typeof i54.NumericField, typeof i55.AutocompleteField, typeof i56.CheckField, typeof i57.DateField, typeof i58.DateRangeField, typeof i59.ExpressionField, typeof i60.InputField, typeof i61.SelectField, typeof i62.SwitchField, typeof i63.TextareaField, typeof i64.TimespanField, typeof i65.ReturnActionComponent, typeof i66.AssignActionComponent, typeof i67.AvatarComponent, typeof i68.PeopleComponent, typeof i69.EditInputComponent, typeof i70.NgxComponentOutlet, typeof i33.BizDocApp, typeof i71.LottieAnimation, typeof i22.ContactsComponent, typeof i72.CubeMatrixComponent, typeof i73.FilterTagsComponent, typeof i74.ExploreItemsComponent, typeof i75.CompareNameDirective, typeof i75.CompareGroupDirective, typeof i75.CompareContextDirective, typeof i76.GuideComponent, typeof i77.OutOfOfficeToast, typeof i78.NotificationsTableComponent, typeof i79.NotificationsFilterComponent, typeof i80.TaggingPipe, typeof i81.PrivilegeHiddenDirective, typeof i82.TaggingItemDirective, typeof i83.TaggingDirective, typeof i84.DocumentTaggingComponent, typeof i85.UserTaggingComponent, typeof i81.PrivilegeDisabledDirective, typeof i86.CubeGridDocumentsComponent, typeof i87.LongRunningTaskNotification, typeof i88.TaggedNotification, typeof i89.CommentedNotification, typeof i90.NudgeNotification, typeof i91.TextNotification, typeof i92.CubeAnomalyNotification, typeof i93.EscalatedNotification, typeof i94.LikedNotification, typeof i95.StateChangedNotification, typeof i96.UpcomingEventNotification, typeof i97.NoneComponent, typeof i98.ScheduleViewComponent, typeof i99.OptionsComponent, typeof i100.TraceViewComponent, typeof i101.ProgressDirective, typeof i102.AttachmentsComponent, typeof i103.DocumentEventsComponent, typeof i104.TagsComponent, typeof i105.MapComponent, typeof i106.MaskComponent, typeof i107.SaveChangesDialog, typeof i108.FlowViewComponent, typeof i109.SubstitutionComponent, typeof i110.PopupComponent, typeof i111.AttachmentPreview, typeof i112.CommentsComponent, typeof i113.CommentComponent, typeof i114.EditCommentComponent, typeof i115.CommentLikesComponent, typeof i116.CommentEditsComponent, typeof i117.BrowseItemsComponent, typeof i118.BrowseFilterComponent, typeof i119.ExpandedItemComponent, typeof i120.ComposeFormComponent, typeof i121.CubeViewComponent, typeof i122.CubeFilterComponent, typeof i123.CubeAccumulationChartComponent, typeof i124.CubeChartComponent, typeof i125.CubePivotComponent, typeof i126.CubeSpreadsheetComponent, typeof i127.CubeGridComponent, typeof i128.ReportViewerComponent, typeof i129.TableViewComponent, typeof i130.ReportArgumentsComponent, typeof i131.DashboardComponent, typeof i132.WidgetItemComponent, typeof i133.CubeWidgetFilterComponent, typeof i134.CubeAccumAnalysisWidget, typeof i135.CubeAnalysisWidget, typeof i136.CubeChartAnalysisWidget, typeof i137.ActionsWidget, typeof i138.RecentsWidget, typeof i139.AskDialog, typeof i140.AboutDialog, typeof i141.ActionDialog, typeof i142.ImpersonateDialog, typeof i143.ConversationComponent, typeof i144.CubeMatrixPopupComponent, typeof i145.VersionCompareComponent, typeof i146.ExploreDocumentComponent, typeof i147.TasksComponent, typeof i148.PendingResultsWidget, typeof i149.CompareDepartmentsWidget, typeof i150.CubeDocumentsComponent, typeof i151.CubeDocumentsWidget, typeof i152.PersonalScoreWidget, typeof i153.PersonalActivityWidget, typeof i154.PeersPerformanceWidget, typeof i155.UsagePivotComponent, typeof i156.UsageChartComponent, typeof i157.UsageReportArgs, typeof i158.EmojiHostComponent, typeof i159.TooltipDirective, typeof i159.TooltipComponent], [typeof i160.CommonModule, typeof i161.HttpClientModule, typeof i162.ReactiveFormsModule, typeof i163.FlexLayoutModule, typeof i164.RouterModule, typeof i165.PickerModule, typeof i166.SyncfusionGanttModule, typeof i167.SyncfusionScheduleModule, typeof i168.SyncfusionCircularGaugeModule, typeof i169.SyncfusionChartModule, typeof i166.SyncfusionGanttModule, typeof i170.SyncfusionGridModule, typeof i171.SyncfusionTextEditorModule, typeof i172.SyncfusionSpreadsheetModule, typeof i173.SyncfusionPivotModule, typeof i174.KanbanModule, typeof i175.SyncfusionDiagramModule, typeof i176.MaterialModule], [typeof i1.FileInput, typeof i73.FilterTagsComponent, typeof i2.DateFormatPipe, typeof i3.CalendarPipe, typeof i4.DifferencePipe, typeof i5.DurationPipe, typeof i6.TimeAgoPipe, typeof i7.CheckboxComponent, typeof i8.CubeParallelComponent, typeof i9.CubeSumComponent, typeof i14.ExploreItemImplComponent, typeof i15.DocumentInfoComponent, typeof i16.DocumentViewsComponent, typeof i131.DashboardComponent, typeof i104.TagsComponent, typeof i23.QuickCommentComponent, typeof i176.MaterialModule, typeof i112.CommentsComponent, typeof i33.BrokenPage, typeof i141.ActionDialog, typeof i118.BrowseFilterComponent, typeof i122.CubeFilterComponent, typeof i98.ScheduleViewComponent, typeof i128.ReportViewerComponent, typeof i132.WidgetItemComponent, typeof i121.CubeViewComponent, typeof i74.ExploreItemsComponent, typeof i120.ComposeFormComponent, typeof i117.BrowseItemsComponent, typeof i78.NotificationsTableComponent, typeof i21.ActionPicker, typeof i143.ConversationComponent, typeof i32.StateDirective, typeof i22.ContactsComponent, typeof i72.CubeMatrixComponent, typeof i24.DurationFormatPipe, typeof i25.CombinationPicker, typeof i27.CombinationPool, typeof i35.TimePicker, typeof i159.TooltipDirective, typeof i30.DateRangePipe, typeof i70.NgxComponentOutlet, typeof i29.MatIconAnimate, typeof i42.AceInput, typeof i34.JoinPipe, typeof i36.TypeValuePipe, typeof i37.TypeSelect, typeof i38.TypeAutocomplete, typeof i45.StatePipe, typeof i46.ActionPipe, typeof i47.RolePipe, typeof i48.FormPipe, typeof i49.FilterPipe, typeof i49.ArraySortPipe, typeof i50.UserNamePipe, typeof i41.SanitizeHtmlPipe, typeof i39.TranslatePipe, typeof i40.IdentityName, typeof i44.AddressInput, typeof i67.AvatarComponent, typeof i130.ReportArgumentsComponent, typeof i33.BizDocApp, typeof i111.AttachmentPreview, typeof i81.PrivilegeHiddenDirective, typeof i81.PrivilegeDisabledDirective, typeof i75.CompareGroupDirective, typeof i75.CompareNameDirective, typeof i75.CompareContextDirective, typeof i100.TraceViewComponent, typeof i108.FlowViewComponent, typeof i66.AssignActionComponent, typeof i65.ReturnActionComponent, typeof i146.ExploreDocumentComponent, typeof i137.ActionsWidget, typeof i135.CubeAnalysisWidget, typeof i151.CubeDocumentsWidget, typeof i138.RecentsWidget, typeof i153.PersonalActivityWidget, typeof i149.CompareDepartmentsWidget, typeof i154.PeersPerformanceWidget, typeof i148.PendingResultsWidget, typeof i152.PersonalScoreWidget, typeof i133.CubeWidgetFilterComponent, typeof i150.CubeDocumentsComponent, typeof i86.CubeGridDocumentsComponent, typeof i147.TasksComponent, typeof i157.UsageReportArgs, typeof i156.UsageChartComponent, typeof i155.UsagePivotComponent, typeof i43.TimespanInput, typeof i145.VersionCompareComponent, typeof i71.LottieAnimation, typeof i123.CubeAccumulationChartComponent, typeof i124.CubeChartComponent, typeof i125.CubePivotComponent, typeof i126.CubeSpreadsheetComponent, typeof i127.CubeGridComponent]>;
|
183
184
|
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
184
185
|
}
|
package/package.json
CHANGED