@bizdoc/core 1.17.2 → 1.17.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.
- package/assets/themes/brown.min.css +1 -1
- package/assets/themes/dark.min.css +1 -1
- package/assets/themes/deep-purple-light-blue.min.css +1 -1
- package/assets/themes/deep-purple-teal.min.css +1 -1
- package/assets/themes/default.min.css +1 -1
- package/assets/themes/green.min.css +1 -1
- package/assets/themes/indigo.min.css +1 -1
- package/esm2020/lib/admin/architecture/cube-axes-filter.component.mjs +3 -3
- package/esm2020/lib/admin/architecture/declarations.mjs +11 -4
- package/esm2020/lib/admin/architecture/designer-element.component.mjs +3 -3
- package/esm2020/lib/admin/architecture/designer-privileges.component.mjs +12 -8
- package/esm2020/lib/admin/architecture/designer.base.mjs +2 -1
- package/esm2020/lib/admin/architecture/designer.component.mjs +12 -6
- package/esm2020/lib/admin/architecture/elements/action.component.mjs +2 -2
- package/esm2020/lib/admin/architecture/elements/analysis-view.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/analysis-widget.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/attribute.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/cube-index-utility.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/cube-view.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/cube.component.mjs +3 -3
- package/esm2020/lib/admin/architecture/elements/documents-report.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/documents-widget.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/explore-view.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/feedback-widget.component.mjs +7 -6
- package/esm2020/lib/admin/architecture/elements/folder.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/form-invite.dialog.mjs +44 -33
- package/esm2020/lib/admin/architecture/elements/form.component.mjs +10 -8
- package/esm2020/lib/admin/architecture/elements/matrix-view.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/parallel-view.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/performance-report.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/performance-widget.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/pivot-view.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/report.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/state.component.mjs +2 -2
- package/esm2020/lib/admin/architecture/elements/sum-view.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/tasks-report.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/usage-report.component.mjs +5 -4
- package/esm2020/lib/admin/architecture/elements/widget.component.mjs +5 -4
- package/esm2020/lib/admin/core/localized-string.component.mjs +1 -1
- package/esm2020/lib/admin/form/designer/box-designer.component.mjs +4 -5
- package/esm2020/lib/admin/form/designer/properties.component.mjs +3 -2
- package/esm2020/lib/admin/form/designer/section.component.mjs +3 -3
- package/esm2020/lib/admin/patterns/patterns.component.mjs +3 -3
- package/esm2020/lib/admin/system.service.mjs +1 -1
- package/esm2020/lib/compose/box/box.component.mjs +5 -5
- package/esm2020/lib/core/fields/autocomplete.field.mjs +4 -4
- package/esm2020/lib/core/fields/checklist.field.mjs +4 -3
- package/esm2020/lib/core/fields/localized-string.field.mjs +21 -0
- package/esm2020/lib/core/fields/options.base.mjs +2 -2
- package/esm2020/lib/core/fields/radio-button.designer.mjs +7 -5
- package/esm2020/lib/core/fields/select.designer.mjs +6 -5
- package/esm2020/lib/core/fields/select.field.mjs +4 -11
- package/esm2020/lib/core/fields/signature.designer.mjs +3 -1
- package/esm2020/lib/core/fields/signature.field.mjs +3 -3
- package/esm2020/lib/core/fields/yesno.designer.mjs +6 -5
- package/esm2020/lib/core/layout.component.mjs +5 -1
- package/esm2020/lib/core/models.mjs +2 -1
- package/esm2020/lib/core/slots/slots.component.mjs +3 -3
- package/esm2020/lib/core/translations.mjs +28 -108
- package/esm2020/lib/cube/filter/filter.component.mjs +3 -3
- package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +36 -13
- package/esm2020/lib/dashboard/cube/cube-analysis.widget.mjs +1 -1
- package/esm2020/lib/notifications/types/commented.notification.mjs +1 -1
- package/esm2020/lib/notifications/types/escalated.notification.mjs +1 -1
- package/esm2020/lib/notifications/types/invite.notification.mjs +11 -3
- package/esm2020/lib/notifications/types/liked.notification.mjs +1 -1
- package/esm2020/lib/notifications/types/long-running-task.notification.mjs +3 -3
- package/esm2020/lib/notifications/types/nudge.notification.mjs +1 -1
- package/esm2020/lib/notifications/types/state-changed.notification.mjs +2 -2
- package/esm2020/lib/notifications/types/tagged.notification.mjs +2 -2
- package/esm2020/lib/notifications/types/upcoming-event.notification.mjs +1 -1
- package/esm2020/lib/system.module.mjs +110 -9
- package/fesm2015/bizdoc-core.mjs +692 -594
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +689 -591
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/lib/admin/architecture/declarations.d.ts +4 -3
- package/lib/admin/architecture/designer.component.d.ts +1 -0
- package/lib/admin/architecture/elements/cube.component.d.ts +1 -1
- package/lib/admin/architecture/elements/form-invite.dialog.d.ts +6 -5
- package/lib/admin/core/localized-string.component.d.ts +2 -2
- package/lib/admin/system.service.d.ts +7 -1
- package/lib/core/fields/localized-string.field.d.ts +16 -0
- package/lib/core/fields/select.field.d.ts +0 -2
- package/lib/core/models.d.ts +4 -0
- package/lib/core/translations.d.ts +19 -99
- package/lib/dashboard/cube/cube-analysis.widget.d.ts +2 -1
- package/lib/notifications/types/commented.notification.d.ts +0 -1
- package/lib/notifications/types/escalated.notification.d.ts +0 -1
- package/lib/notifications/types/invite.notification.d.ts +4 -5
- package/lib/notifications/types/liked.notification.d.ts +0 -1
- package/lib/notifications/types/long-running-task.notification.d.ts +1 -1
- package/lib/notifications/types/nudge.notification.d.ts +0 -1
- package/lib/notifications/types/state-changed.notification.d.ts +0 -2
- package/lib/notifications/types/tagged.notification.d.ts +0 -2
- package/lib/notifications/types/upcoming-event.notification.d.ts +0 -1
- package/lib/system.module.d.ts +35 -34
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import { Injector } from "@angular/core";
|
2
2
|
import { FormGroup } from "@angular/forms";
|
3
3
|
import { ScopeType } from "../../core/configuration";
|
4
|
-
import { AxesMap, ChartType, CubeFilter, FieldInfo, FolderColumn, GuideStep, PositionPolicy, ViewType } from "../../core/models";
|
4
|
+
import { AxesMap, ChartType, CubeFilter, FieldInfo, FolderColumn, GuideStep, LocalizedString, PositionPolicy, ViewType } from "../../core/models";
|
5
5
|
import { Subject } from "rxjs";
|
6
6
|
export declare const FAMILY_SVG: {
|
7
7
|
Azure: string;
|
@@ -92,7 +92,7 @@ export interface ElementModel<T = any> {
|
|
92
92
|
configurationFile?: string;
|
93
93
|
template?: string;
|
94
94
|
icon?: string;
|
95
|
-
|
95
|
+
resourceType?: string;
|
96
96
|
copyOf?: string;
|
97
97
|
family?: string;
|
98
98
|
type?: string;
|
@@ -220,9 +220,10 @@ export interface ElementInfo<T = any> {
|
|
220
220
|
type?: string;
|
221
221
|
key?: string;
|
222
222
|
name: string;
|
223
|
-
title:
|
223
|
+
title: LocalizedString;
|
224
224
|
disabled?: boolean;
|
225
225
|
draft?: boolean;
|
226
226
|
empty?: boolean;
|
227
227
|
options?: T;
|
228
228
|
}
|
229
|
+
export declare function localizeString(value: LocalizedString): string | null;
|
@@ -43,6 +43,7 @@ export declare class ConfigurationDesignerComponent implements UtilityComponent,
|
|
43
43
|
private _createInjector;
|
44
44
|
add(section: Section, menu: MatMenuTrigger, evt: Event): void;
|
45
45
|
create(section: Section, template: TemplateInfo): void;
|
46
|
+
remove(section: Section, element: ElementModel): void;
|
46
47
|
copy(section: Section, element: ElementModel): void;
|
47
48
|
edit(element: ElementModel, section: Section): void;
|
48
49
|
toggleDisabled(element: ElementModel): void;
|
@@ -44,7 +44,7 @@ export declare class CubeDesignComponent extends DesignerTypeElementComponent im
|
|
44
44
|
newAxis(model?: CubeAxisModel): any;
|
45
45
|
newIndex(model?: CubeIndexModel): any;
|
46
46
|
newPattern(model?: PatternModel): any;
|
47
|
-
datatype(name: string):
|
47
|
+
datatype(name: string): import("@bizdoc/core").LocalizedString;
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeDesignComponent, never>;
|
49
49
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeDesignComponent, "ng-component", never, {}, {}, never, never, false>;
|
50
50
|
}
|
@@ -2,7 +2,6 @@ import { OnInit } from "@angular/core";
|
|
2
2
|
import { FormBuilder } from "@angular/forms";
|
3
3
|
import { MatAutocompleteSelectedEvent } from "@angular/material/autocomplete";
|
4
4
|
import { PromptService } from "../../../core/prompt.service";
|
5
|
-
import { SessionService } from "../../../core/session.service";
|
6
5
|
import { PaneRef } from "../../../core/slots/pane-ref";
|
7
6
|
import { InviteDevice, Role, SystemService } from "../../system.service";
|
8
7
|
import { DesignerRef } from "../declarations";
|
@@ -12,22 +11,24 @@ export declare class FormInviteDialog implements OnInit {
|
|
12
11
|
private _service;
|
13
12
|
private _ps;
|
14
13
|
private _ref;
|
15
|
-
private _session;
|
16
14
|
private _pane;
|
17
15
|
readonly separatorKeysCodes: number[];
|
18
|
-
readonly groups: import("@angular/forms").FormControl<any
|
16
|
+
readonly groups: import("@angular/forms").FormControl<any>;
|
19
17
|
readonly devices: InviteDevice[];
|
20
18
|
readonly form: import("@angular/forms").FormGroup<{
|
21
|
-
groups: import("@angular/forms").FormControl<any
|
19
|
+
groups: import("@angular/forms").FormControl<any>;
|
22
20
|
devices: import("@angular/forms").FormControl<InviteDevice[]>;
|
23
21
|
due: import("@angular/forms").FormControl<any>;
|
22
|
+
oneTime: import("@angular/forms").FormControl<boolean>;
|
24
23
|
message: import("@angular/forms").FormControl<string>;
|
25
24
|
}>;
|
25
|
+
private _searchchange;
|
26
|
+
/** all BizDoc roles and user groups */
|
26
27
|
private _roles;
|
27
28
|
roles: Role[];
|
28
29
|
readonly search: import("@angular/forms").FormControl<any>;
|
29
30
|
working: boolean;
|
30
|
-
constructor(_fb: FormBuilder, _service: SystemService, _ps: PromptService, _ref: DesignerRef,
|
31
|
+
constructor(_fb: FormBuilder, _service: SystemService, _ps: PromptService, _ref: DesignerRef, _pane: PaneRef);
|
31
32
|
ngOnInit(): void;
|
32
33
|
/**
|
33
34
|
*
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { OnInit, OnDestroy } from "@angular/core";
|
2
|
-
import {
|
2
|
+
import { FormBuilder, FormControl, NgControl, ControlValueAccessor } from "@angular/forms";
|
3
3
|
import { MatInput } from "@angular/material/input";
|
4
4
|
import { Subject } from "rxjs";
|
5
5
|
import { SessionService } from "../../core/session.service";
|
@@ -13,7 +13,7 @@ export declare class LocalizedStringComponent implements OnInit, ControlValueAcc
|
|
13
13
|
private static nextId;
|
14
14
|
class: string;
|
15
15
|
control: FormControl;
|
16
|
-
readonly group: FormGroup<{}>;
|
16
|
+
readonly group: import("@angular/forms").FormGroup<{}>;
|
17
17
|
readonly languages: string[];
|
18
18
|
multilingual: boolean;
|
19
19
|
controlInput: MatInput;
|
@@ -30,7 +30,13 @@ export declare class SystemService {
|
|
30
30
|
message?: string;
|
31
31
|
devices: InviteDevice[];
|
32
32
|
due?: Date;
|
33
|
-
}): Observable<
|
33
|
+
}): Observable<{
|
34
|
+
target: number;
|
35
|
+
ok: number;
|
36
|
+
im?: number;
|
37
|
+
email?: number;
|
38
|
+
sms?: number;
|
39
|
+
}>;
|
34
40
|
projection(options: {
|
35
41
|
groups: string[];
|
36
42
|
}): Observable<any>;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import { FormControl } from '@angular/forms';
|
3
|
+
import { MatFormFieldAppearance } from '@angular/material/form-field';
|
4
|
+
import { ControlComponent, ViewMode } from '../base';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class LocalizedStringField implements ControlComponent<any>, OnInit {
|
7
|
+
appearance: MatFormFieldAppearance;
|
8
|
+
mode: ViewMode;
|
9
|
+
placeholder?: string;
|
10
|
+
required?: boolean;
|
11
|
+
readonly control: FormControl<any>;
|
12
|
+
focus(): void;
|
13
|
+
ngOnInit(): void;
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizedStringField, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LocalizedStringField, "ng-component", never, {}, {}, never, never, false>;
|
16
|
+
}
|
@@ -3,7 +3,6 @@ import { FormControl } from '@angular/forms';
|
|
3
3
|
import { MatFormFieldAppearance } from '@angular/material/form-field';
|
4
4
|
import { MatSelect } from '@angular/material/select';
|
5
5
|
import { ControlComponent, ViewMode } from '../base';
|
6
|
-
import { TypeSelect } from '../inputs/select.input';
|
7
6
|
import { OptionsControlField } from './options.base';
|
8
7
|
import * as i0 from "@angular/core";
|
9
8
|
export declare class SelectField extends OptionsControlField implements ControlComponent<any>, OnInit {
|
@@ -14,7 +13,6 @@ export declare class SelectField extends OptionsControlField implements ControlC
|
|
14
13
|
hint?: string;
|
15
14
|
label?: string;
|
16
15
|
readonly control: FormControl<any>;
|
17
|
-
input: TypeSelect;
|
18
16
|
select: MatSelect;
|
19
17
|
appearance: MatFormFieldAppearance;
|
20
18
|
mode: ViewMode;
|
package/lib/core/models.d.ts
CHANGED
@@ -213,6 +213,7 @@ export interface CommentVersion {
|
|
213
213
|
};
|
214
214
|
}
|
215
215
|
export interface Notification {
|
216
|
+
number?: string;
|
216
217
|
muted?: boolean;
|
217
218
|
deleted?: boolean;
|
218
219
|
id: number;
|
@@ -221,6 +222,8 @@ export interface Notification {
|
|
221
222
|
read?: boolean;
|
222
223
|
sent: Date;
|
223
224
|
recipientId?: number;
|
225
|
+
documentId?: number;
|
226
|
+
formId?: string;
|
224
227
|
}
|
225
228
|
export declare type NotificationType = 'Commented' | 'CubeAnomaly' | 'Escalated' | 'Liked' | 'StateChanged' | 'Nudge' | 'Invite' | 'TextMessage' | 'UpcomingEvent' | 'JobProgress' | 'Tagged';
|
226
229
|
export interface State {
|
@@ -389,6 +392,7 @@ export declare enum ValidationType {
|
|
389
392
|
Email = "Email"
|
390
393
|
}
|
391
394
|
export declare enum FieldKind {
|
395
|
+
LocalizedString = "LocalizedString",
|
392
396
|
String = "String",
|
393
397
|
Number = "Number",
|
394
398
|
Time = "Time",
|
@@ -84,26 +84,9 @@ export declare const STRINGS: {
|
|
84
84
|
ar: {};
|
85
85
|
ru: {};
|
86
86
|
en: {
|
87
|
-
YesNo: string;
|
88
87
|
Address: string;
|
89
|
-
Accumulative: string;
|
90
|
-
Currency: string;
|
91
|
-
Numeric: string;
|
92
|
-
LastExecution: string;
|
93
|
-
NextExecution: string;
|
94
|
-
LastJobState: string;
|
95
88
|
SettingThingsUp: string;
|
96
89
|
PleaseWait: string;
|
97
|
-
Schedule: string;
|
98
|
-
Past: string;
|
99
|
-
Future: string;
|
100
|
-
Verb: string;
|
101
|
-
Adjective: string;
|
102
|
-
AdjectivePlural: string;
|
103
|
-
AnomalyNotification: string;
|
104
|
-
SecurityGlobalHelp: string;
|
105
|
-
SecurityPositionsHelp: string;
|
106
|
-
SecurityPatternsHelp: string;
|
107
90
|
ReceivedAgo: string;
|
108
91
|
IssuedAgo: string;
|
109
92
|
HelpTip: string;
|
@@ -119,7 +102,6 @@ export declare const STRINGS: {
|
|
119
102
|
CheckedIn: string;
|
120
103
|
DragFile: string;
|
121
104
|
Expand: string;
|
122
|
-
Condition: string;
|
123
105
|
WorkingHome: string;
|
124
106
|
Emoji: string;
|
125
107
|
NextLevel: string;
|
@@ -127,29 +109,19 @@ export declare const STRINGS: {
|
|
127
109
|
CurrentLevel: string;
|
128
110
|
Document: string;
|
129
111
|
Skipped: string;
|
130
|
-
Pan: string;
|
131
|
-
DiagramVersion: string;
|
132
112
|
TimelineMore: string;
|
133
|
-
Cursor: string;
|
134
113
|
Estimate: string;
|
135
114
|
NoEstimate: string;
|
136
115
|
EstimateTime: string;
|
137
116
|
NodeStandardTime: string;
|
138
117
|
EstimateTimeRange: string;
|
139
118
|
Connect: string;
|
140
|
-
Requirments: string;
|
141
|
-
Anyone: string;
|
142
|
-
Everyone: string;
|
143
|
-
Minimum: string;
|
144
|
-
Percent: string;
|
145
|
-
RequirmentsValue: string;
|
146
119
|
ValidateErr: string;
|
147
120
|
Added: string;
|
148
121
|
Deleted: string;
|
149
122
|
Modified: string;
|
150
123
|
TakeMore: string;
|
151
|
-
|
152
|
-
SimplePatternErr: string;
|
124
|
+
AxisPatternErr: string;
|
153
125
|
Usage: string;
|
154
126
|
Dashes: string;
|
155
127
|
Contacts: string;
|
@@ -165,9 +137,6 @@ export declare const STRINGS: {
|
|
165
137
|
FYI: string;
|
166
138
|
AssignFYI: string;
|
167
139
|
AssignNoteHint: string;
|
168
|
-
Welcome: string;
|
169
|
-
WelcomeMsg: string;
|
170
|
-
WelcomeHide: string;
|
171
140
|
Compose: string;
|
172
141
|
Preferences: string;
|
173
142
|
Tags: string;
|
@@ -185,15 +154,7 @@ export declare const STRINGS: {
|
|
185
154
|
Ignore: string;
|
186
155
|
Changed: string;
|
187
156
|
Permission: string;
|
188
|
-
PhoneNumber: string;
|
189
|
-
Surname: string;
|
190
|
-
GivenName: string;
|
191
|
-
NickName: string;
|
192
|
-
Gender: string;
|
193
|
-
Male: string;
|
194
|
-
Female: string;
|
195
157
|
Volume: string;
|
196
|
-
FitToPage: string;
|
197
158
|
Elipsis: string;
|
198
159
|
Note: string;
|
199
160
|
Reassign: string;
|
@@ -214,7 +175,6 @@ export declare const STRINGS: {
|
|
214
175
|
Forget: string;
|
215
176
|
SomeoneTyping: string;
|
216
177
|
Typing: string;
|
217
|
-
Content: string;
|
218
178
|
Time: string;
|
219
179
|
ShowDeleted: string;
|
220
180
|
Notifications: string;
|
@@ -258,10 +218,6 @@ export declare const STRINGS: {
|
|
258
218
|
MinutesPart: string;
|
259
219
|
HoursPart: string;
|
260
220
|
DaysPart: string;
|
261
|
-
True: string;
|
262
|
-
False: string;
|
263
|
-
Case: string;
|
264
|
-
Action: string;
|
265
221
|
Refresh: string;
|
266
222
|
Value: string;
|
267
223
|
By: string;
|
@@ -283,7 +239,6 @@ export declare const STRINGS: {
|
|
283
239
|
SubmitErr: string;
|
284
240
|
SaveErr: string;
|
285
241
|
VersionBy: string;
|
286
|
-
VersionDate: string;
|
287
242
|
VersionErr: string;
|
288
243
|
MailVersionUpdate: string;
|
289
244
|
NewComment: string;
|
@@ -443,7 +398,6 @@ export declare const STRINGS: {
|
|
443
398
|
Task: string;
|
444
399
|
When: string;
|
445
400
|
Details: string;
|
446
|
-
Default: string;
|
447
401
|
Pattern: string;
|
448
402
|
Patterns: string;
|
449
403
|
Title: string;
|
@@ -486,11 +440,6 @@ export declare const STRINGS: {
|
|
486
440
|
TraceElementHelp: string;
|
487
441
|
Positions: string;
|
488
442
|
Actions: string;
|
489
|
-
Activity: string;
|
490
|
-
PositionsHelp: string;
|
491
|
-
ActivityHelp: string;
|
492
|
-
PendingHelp: string;
|
493
|
-
ReassignHelp: string;
|
494
443
|
Exit: string;
|
495
444
|
DashboardHelp: string;
|
496
445
|
Mailbox: string;
|
@@ -506,8 +455,6 @@ export declare const STRINGS: {
|
|
506
455
|
RemoveAsk: string;
|
507
456
|
Comments: string;
|
508
457
|
Remove: string;
|
509
|
-
Connector: string;
|
510
|
-
Connectors: string;
|
511
458
|
SheetN: string;
|
512
459
|
NewFrom: string;
|
513
460
|
OptionalRole: string;
|
@@ -515,8 +462,6 @@ export declare const STRINGS: {
|
|
515
462
|
Watched: string;
|
516
463
|
Date: string;
|
517
464
|
Clear: string;
|
518
|
-
NoRoles: string;
|
519
|
-
CreateRole: string;
|
520
465
|
Others: string;
|
521
466
|
Other: string;
|
522
467
|
History: string;
|
@@ -530,18 +475,27 @@ export declare const STRINGS: {
|
|
530
475
|
Matrix: string;
|
531
476
|
Working: string;
|
532
477
|
FillNotification: string;
|
533
|
-
|
534
|
-
|
478
|
+
FillNotificationTill: string;
|
479
|
+
CompleteNotification: string;
|
480
|
+
CompleteNotificationTill: string;
|
535
481
|
RequiredErr: string;
|
482
|
+
PatternErr: string;
|
536
483
|
EmailErr: string;
|
537
484
|
MinLengthErr: string;
|
538
485
|
MaxLengthErr: string;
|
539
486
|
};
|
540
487
|
he: {
|
488
|
+
PatternErr: string;
|
489
|
+
EmailErr: string;
|
490
|
+
MinLengthErr: string;
|
491
|
+
MaxLengthErr: string;
|
541
492
|
RequiredErr: string;
|
542
|
-
Description: string;
|
543
493
|
FillNotification: string;
|
544
|
-
|
494
|
+
FillNotificationTill: string;
|
495
|
+
FillNotificationTillMale: string;
|
496
|
+
CompleteNotification: string;
|
497
|
+
CompleteNotificationMale: string;
|
498
|
+
CompleteNotificationTill: string;
|
545
499
|
HelpTip: string;
|
546
500
|
HelpTipMale: string;
|
547
501
|
HelpTipFemale: string;
|
@@ -574,7 +528,6 @@ export declare const STRINGS: {
|
|
574
528
|
Version: string;
|
575
529
|
VersionBy: string;
|
576
530
|
Power: string;
|
577
|
-
VersionDate: string;
|
578
531
|
System: string;
|
579
532
|
Votes: string;
|
580
533
|
Delete: string;
|
@@ -586,35 +539,19 @@ export declare const STRINGS: {
|
|
586
539
|
Trace: string;
|
587
540
|
ActiveRoute: string;
|
588
541
|
Everything: string;
|
589
|
-
ProfilerSearchHelp: string;
|
590
|
-
TraceSearchHelp: string;
|
591
|
-
DiagramVersion: string;
|
592
542
|
TimelineMore: string;
|
593
|
-
Pan: string;
|
594
|
-
Cursor: string;
|
595
543
|
Estimate: string;
|
596
544
|
NoEstimate: string;
|
597
545
|
EstimateTime: string;
|
598
546
|
EstimateTimeRange: string;
|
599
547
|
NodeStandardTime: string;
|
600
|
-
True: string;
|
601
|
-
False: string;
|
602
|
-
Case: string;
|
603
548
|
SignIn: string;
|
604
549
|
SignInTo: string;
|
605
|
-
Requirments: string;
|
606
|
-
Anyone: string;
|
607
|
-
Everyone: string;
|
608
|
-
Minimum: string;
|
609
|
-
Percent: string;
|
610
|
-
RequirmentsValue: string;
|
611
550
|
FYI: string;
|
612
551
|
AssignTo: string;
|
613
552
|
AssignFYI: string;
|
614
553
|
AssignNoteHint: string;
|
615
554
|
AssignRoundtrip: string;
|
616
|
-
SkipInRoute: string;
|
617
|
-
StandardTime: string;
|
618
555
|
About: string;
|
619
556
|
Date: string;
|
620
557
|
Clear: string;
|
@@ -623,14 +560,15 @@ export declare const STRINGS: {
|
|
623
560
|
SheetN: string;
|
624
561
|
Connect: string;
|
625
562
|
ValidateErr: string;
|
626
|
-
OptionalRole: string;
|
627
563
|
Optional: string;
|
628
564
|
Added: string;
|
629
565
|
Deleted: string;
|
630
566
|
Modified: string;
|
567
|
+
MinutesPart: string;
|
568
|
+
HoursPart: string;
|
569
|
+
DaysPart: string;
|
631
570
|
TakeMore: string;
|
632
|
-
|
633
|
-
SimplePatternErr: string;
|
571
|
+
AxisPatternErr: string;
|
634
572
|
Usage: string;
|
635
573
|
Contacts: string;
|
636
574
|
Open: string;
|
@@ -693,13 +631,7 @@ export declare const STRINGS: {
|
|
693
631
|
IgnoreMale: string;
|
694
632
|
IgnoreFemale: string;
|
695
633
|
Permission: string;
|
696
|
-
|
697
|
-
Surname: string;
|
698
|
-
GivenName: string;
|
699
|
-
NickName: string;
|
700
|
-
Gender: string;
|
701
|
-
Male: string;
|
702
|
-
Female: string;
|
634
|
+
Username: string;
|
703
635
|
ChangesSaved: string;
|
704
636
|
UploadOk: string;
|
705
637
|
UploadVersionOk: string;
|
@@ -864,16 +796,8 @@ export declare const STRINGS: {
|
|
864
796
|
MarkAsUnreadMale: string;
|
865
797
|
MarkAsUnreadFemale: string;
|
866
798
|
Value: string;
|
867
|
-
Default: string;
|
868
799
|
Patterns: string;
|
869
800
|
Pattern: string;
|
870
|
-
Groups: string;
|
871
|
-
Group: string;
|
872
|
-
Regex: string;
|
873
|
-
Items: string;
|
874
|
-
Values: string;
|
875
|
-
DataType: string;
|
876
|
-
Title: string;
|
877
801
|
Search: string;
|
878
802
|
SearchMale: string;
|
879
803
|
SearchFemale: string;
|
@@ -990,15 +914,11 @@ export declare const STRINGS: {
|
|
990
914
|
Rotate: string;
|
991
915
|
RemoveAsk: string;
|
992
916
|
Remove: string;
|
993
|
-
Positions: string;
|
994
|
-
Activity: string;
|
995
917
|
Download: string;
|
996
918
|
DownloadExcel: string;
|
997
919
|
DownloadExplore: string;
|
998
920
|
Explore: string;
|
999
921
|
Scheduler: string;
|
1000
|
-
Connector: string;
|
1001
|
-
Connectors: string;
|
1002
922
|
Dashboard: string;
|
1003
923
|
Details: string;
|
1004
924
|
Cube: string;
|
@@ -2,6 +2,7 @@ import { ViewContainerRef, OnInit, ComponentFactoryResolver, Injector } from '@a
|
|
2
2
|
import { WidgetRef } from "../widget-ref";
|
3
3
|
import { WidgetComponent } from '../../core/base';
|
4
4
|
import { ChartSettingsModel } from './cube-analysis.base';
|
5
|
+
import { Series } from '../../cube/cube.service';
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
export declare class CubeAnalysisWidget implements WidgetComponent<any>, OnInit {
|
7
8
|
private _ref;
|
@@ -11,7 +12,7 @@ export declare class CubeAnalysisWidget implements WidgetComponent<any>, OnInit
|
|
11
12
|
private _instance;
|
12
13
|
constructor(_ref: WidgetRef<ChartSettingsModel>, _resolver: ComponentFactoryResolver, _injector: Injector, _vc: ViewContainerRef);
|
13
14
|
ngOnInit(): void;
|
14
|
-
onBind(data:
|
15
|
+
onBind(data: Series[], args?: any): void;
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CubeAnalysisWidget, never>;
|
16
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<CubeAnalysisWidget, "ng-component", never, {}, {}, never, never, false>;
|
17
18
|
}
|
@@ -2,6 +2,7 @@ import { MailboxService } from "../../core/mailbox.service";
|
|
2
2
|
import { RouterImpl } from "../../core/router";
|
3
3
|
import { SessionService } from "../../core/session.service";
|
4
4
|
import { TranslateService } from "../../core/translate.service";
|
5
|
+
import { Notification } from "../../core/models";
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
export declare class InviteNotification {
|
7
8
|
private _router;
|
@@ -9,14 +10,12 @@ export declare class InviteNotification {
|
|
9
10
|
notification: Invite;
|
10
11
|
message: string;
|
11
12
|
constructor(_router: RouterImpl, _mailbox: MailboxService, session: SessionService, translate: TranslateService, notification: Invite);
|
12
|
-
open(
|
13
|
+
open(_: MouseEvent): void;
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<InviteNotification, never>;
|
14
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<InviteNotification, "ng-component", never, {}, {}, never, never, false>;
|
15
16
|
}
|
16
|
-
interface Invite {
|
17
|
+
interface Invite extends Notification {
|
17
18
|
message?: string;
|
18
|
-
|
19
|
-
recipientId?: number;
|
20
|
-
documentId?: number;
|
19
|
+
due?: Date;
|
21
20
|
}
|
22
21
|
export {};
|
@@ -15,7 +15,7 @@ export declare class LongRunningTaskNotification implements OnInit {
|
|
15
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<LongRunningTaskNotification, "ng-component", never, {}, {}, never, never, false>;
|
16
16
|
}
|
17
17
|
interface ReportTask extends Notification {
|
18
|
-
|
18
|
+
name: string;
|
19
19
|
value: number;
|
20
20
|
}
|
21
21
|
export {};
|
@@ -15,8 +15,6 @@ export declare class StateChangedNotification extends NotificationBase implement
|
|
15
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<StateChangedNotification, "ng-component", never, {}, {}, never, never, false>;
|
16
16
|
}
|
17
17
|
interface StateChanged extends Notification {
|
18
|
-
number: string;
|
19
|
-
form: string;
|
20
18
|
state: string;
|
21
19
|
}
|
22
20
|
export {};
|
@@ -14,7 +14,6 @@ export declare class UpcomingEventNotification implements OnInit {
|
|
14
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<UpcomingEventNotification, "ng-component", never, {}, {}, never, never, false>;
|
15
15
|
}
|
16
16
|
interface UpcommingEvent extends Notification {
|
17
|
-
number: string;
|
18
17
|
starting: Date;
|
19
18
|
}
|
20
19
|
export {};
|