@bizdoc/core 3.3.5 → 3.3.7
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/bizdoc-schema.json +3 -0
- package/fesm2022/bizdoc-core.mjs +90 -68
- package/fesm2022/bizdoc-core.mjs.map +1 -1
- package/lib/admin/architecture/declarations.d.ts +3 -0
- package/lib/admin/architecture/elements/notification.component.d.ts +9 -0
- package/lib/core/base.d.ts +3 -0
- package/lib/core/models.d.ts +4 -1
- package/lib/core/slots/pane-ref.d.ts +2 -1
- package/lib/core/slots/slots.component.d.ts +1 -0
- package/lib/options/options.component.d.ts +1 -0
- package/lib/shared.module.d.ts +1 -1
- package/lib/system.module.d.ts +56 -56
- package/package.json +1 -1
- /package/lib/notifications/types/{content.notification.d.ts → content-message.notification.d.ts} +0 -0
@@ -58,6 +58,7 @@ export interface DesignerModel {
|
|
58
58
|
cubes: ElementModel<any>[];
|
59
59
|
jobs: ElementModel<any>[];
|
60
60
|
sources: ElementModel<any>[];
|
61
|
+
tSources: TemplateInfo[];
|
61
62
|
tCubes: TemplateInfo[];
|
62
63
|
utilities: ElementModel<any>[];
|
63
64
|
tUtilities: TemplateInfo[];
|
@@ -65,6 +66,8 @@ export interface DesignerModel {
|
|
65
66
|
roles: ElementModel<any>[];
|
66
67
|
rules: ElementModel<any>[];
|
67
68
|
tRules: TemplateInfo[];
|
69
|
+
notifications: ElementModel<any>[];
|
70
|
+
tNotifications: TemplateInfo[];
|
68
71
|
policies: ElementModel<any>[];
|
69
72
|
tPolicies: TemplateInfo[];
|
70
73
|
views: ElementModel<any>[];
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { DesignerTypeElementComponent } from "../designer.base";
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class NotificationDesignComponent extends DesignerTypeElementComponent {
|
4
|
+
readonly form: import("@angular/forms").FormGroup<{
|
5
|
+
settings: import("@angular/forms").FormControl<boolean | null>;
|
6
|
+
}>;
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationDesignComponent, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NotificationDesignComponent, "bizdoc-notification-designer", never, {}, {}, never, never, false, never>;
|
9
|
+
}
|
package/lib/core/base.d.ts
CHANGED
@@ -9,6 +9,9 @@ export interface TagComponent<T> extends ManagedComponent<any> {
|
|
9
9
|
mode: ViewMode;
|
10
10
|
onBind(value: T): void;
|
11
11
|
}
|
12
|
+
export interface NotificationComponent<T> extends ManagedComponent<any> {
|
13
|
+
onBind(value: T): void;
|
14
|
+
}
|
12
15
|
export interface FormComponent<TModel> extends ManagedComponent<TModel> {
|
13
16
|
form: FormGroup;
|
14
17
|
mode: ViewMode;
|
package/lib/core/models.d.ts
CHANGED
@@ -213,9 +213,11 @@ export interface CommentVersion {
|
|
213
213
|
};
|
214
214
|
}
|
215
215
|
export interface Notification {
|
216
|
+
title: string;
|
216
217
|
name: string;
|
217
218
|
template: string;
|
218
|
-
|
219
|
+
settings?: boolean;
|
220
|
+
contentType: string;
|
219
221
|
}
|
220
222
|
export interface Message {
|
221
223
|
number?: string;
|
@@ -446,6 +448,7 @@ export type LicenseMode = 'Evaluation' | 'Valid' | 'Grace' | 'Invalid' | 'Limite
|
|
446
448
|
export interface Action {
|
447
449
|
name: string;
|
448
450
|
title: string;
|
451
|
+
note?: string;
|
449
452
|
verb?: string;
|
450
453
|
you?: string;
|
451
454
|
youMale?: string;
|
@@ -58,6 +58,7 @@ export interface PaneOptions {
|
|
58
58
|
export type PaneCommand = 'expand' | 'focus' | 'close' | 'recycle';
|
59
59
|
/** */
|
60
60
|
export declare class PaneRef<ComponentType = any, DataType = ParamMap> {
|
61
|
+
id: number;
|
61
62
|
private _options;
|
62
63
|
readonly _command$: Subject<PaneCommand>;
|
63
64
|
/** */
|
@@ -107,7 +108,7 @@ export declare class PaneRef<ComponentType = any, DataType = ParamMap> {
|
|
107
108
|
get dialog(): boolean | undefined;
|
108
109
|
get dismissable(): boolean | undefined;
|
109
110
|
get route(): PaneRoute | undefined;
|
110
|
-
constructor(component: Type<any>, injector: Injector, _options: {
|
111
|
+
constructor(component: Type<any>, injector: Injector, id: number, _options: {
|
111
112
|
path?: string;
|
112
113
|
route?: PaneRoute;
|
113
114
|
title?: string;
|
@@ -60,6 +60,7 @@ export declare class OptionsComponent implements OnInit, OnDestroy {
|
|
60
60
|
myDocumentStateChange: import("@angular/forms").FormControl<boolean | null>;
|
61
61
|
cubeAnomaly: import("@angular/forms").FormControl<boolean | null>;
|
62
62
|
sound: import("@angular/forms").FormControl<boolean | null>;
|
63
|
+
extra: FormGroup<{}>;
|
63
64
|
}>;
|
64
65
|
tags: import("@angular/forms").FormControl<string[] | null>;
|
65
66
|
emails: FormGroup<{
|
package/lib/shared.module.d.ts
CHANGED
@@ -113,7 +113,7 @@ import * as i109 from "./notifications/types/tagged.notification";
|
|
113
113
|
import * as i110 from "./notifications/types/commented.notification";
|
114
114
|
import * as i111 from "./notifications/types/nudge.notification";
|
115
115
|
import * as i112 from "./notifications/types/invite.notification";
|
116
|
-
import * as i113 from "./notifications/types/content.notification";
|
116
|
+
import * as i113 from "./notifications/types/content-message.notification";
|
117
117
|
import * as i114 from "./notifications/types/text.notification";
|
118
118
|
import * as i115 from "./notifications/types/cube-anomaly.notification";
|
119
119
|
import * as i116 from "./notifications/types/escalated.notification";
|
package/lib/system.module.d.ts
CHANGED
@@ -13,61 +13,61 @@ import * as i10 from "./admin/architecture/elements/role.component";
|
|
13
13
|
import * as i11 from "./admin/architecture/elements/guide.component";
|
14
14
|
import * as i12 from "./admin/architecture/elements/control.component";
|
15
15
|
import * as i13 from "./admin/architecture/elements/attribute.component";
|
16
|
-
import * as i14 from "./admin/architecture/elements/
|
17
|
-
import * as i15 from "./admin/architecture/elements/
|
18
|
-
import * as i16 from "./admin/architecture/elements/
|
19
|
-
import * as i17 from "./admin/architecture/elements/
|
20
|
-
import * as i18 from "./admin/architecture/elements/
|
21
|
-
import * as i19 from "./admin/architecture/elements/
|
22
|
-
import * as i20 from "./admin/architecture/elements/
|
23
|
-
import * as i21 from "./admin/architecture/elements/
|
24
|
-
import * as i22 from "./admin/architecture/elements/
|
25
|
-
import * as i23 from "./admin/architecture/elements/
|
26
|
-
import * as i24 from "./admin/architecture/elements/
|
27
|
-
import * as i25 from "./admin/architecture/elements/
|
28
|
-
import * as i26 from "./admin/architecture/elements/
|
29
|
-
import * as i27 from "./admin/architecture/elements/
|
30
|
-
import * as i28 from "./admin/architecture/elements/
|
31
|
-
import * as i29 from "./admin/architecture/elements/
|
32
|
-
import * as i30 from "./admin/architecture/elements/
|
33
|
-
import * as i31 from "./admin/architecture/elements/
|
34
|
-
import * as i32 from "./admin/architecture/elements/
|
35
|
-
import * as i33 from "./admin/architecture/elements/
|
36
|
-
import * as i34 from "./admin/architecture/elements/
|
37
|
-
import * as i35 from "./admin/architecture/elements/
|
38
|
-
import * as i36 from "./admin/architecture/elements/
|
39
|
-
import * as i37 from "./admin/architecture/elements/
|
40
|
-
import * as i38 from "./admin/architecture/elements/
|
41
|
-
import * as i39 from "./admin/architecture/elements/
|
42
|
-
import * as i40 from "./admin/architecture/elements/
|
43
|
-
import * as i41 from "./admin/architecture/elements/
|
44
|
-
import * as i42 from "./admin/architecture/elements/
|
45
|
-
import * as i43 from "./admin/architecture/elements/
|
46
|
-
import * as i44 from "./
|
47
|
-
import * as i45 from "./
|
48
|
-
import * as i46 from "./admin/
|
49
|
-
import * as i47 from "./admin/form/designer/
|
50
|
-
import * as i48 from "./admin/form/designer/
|
51
|
-
import * as i49 from "./admin/form/designer/
|
52
|
-
import * as i50 from "./admin/form/designer/
|
53
|
-
import * as i51 from "./admin/
|
54
|
-
import * as i52 from "./admin/
|
55
|
-
import * as i53 from "./admin/
|
56
|
-
import * as i54 from "./admin/
|
57
|
-
import * as i55 from "./admin/utility.
|
58
|
-
import * as i56 from "./admin/
|
59
|
-
import * as i57 from "./admin/
|
60
|
-
import * as i58 from "./admin/
|
61
|
-
import * as i59 from "./admin/document-trace/trace
|
62
|
-
import * as i60 from "./admin/
|
63
|
-
import * as i61 from "./admin/
|
64
|
-
import * as i62 from "./admin/positions/positions
|
65
|
-
import * as i63 from "./admin/
|
66
|
-
import * as i64 from "./admin/form/workflow/
|
67
|
-
import * as i65 from "./admin/form/workflow/
|
68
|
-
import * as i66 from "./admin/
|
69
|
-
import * as i67 from "
|
70
|
-
import * as i68 from "@angular/common
|
16
|
+
import * as i14 from "./admin/architecture/elements/notification.component";
|
17
|
+
import * as i15 from "./admin/architecture/elements/rule.component";
|
18
|
+
import * as i16 from "./admin/architecture/elements/report.component";
|
19
|
+
import * as i17 from "./admin/architecture/elements/folder.component";
|
20
|
+
import * as i18 from "./admin/architecture/elements/utility.component";
|
21
|
+
import * as i19 from "./admin/architecture/elements/form.component";
|
22
|
+
import * as i20 from "./admin/architecture/elements/widget.component";
|
23
|
+
import * as i21 from "./admin/architecture/elements/source.component";
|
24
|
+
import * as i22 from "./admin/architecture/elements/job.component";
|
25
|
+
import * as i23 from "./admin/architecture/elements/cube.component";
|
26
|
+
import * as i24 from "./admin/architecture/elements/action.component";
|
27
|
+
import * as i25 from "./admin/architecture/elements/view.component";
|
28
|
+
import * as i26 from "./admin/architecture/elements/type.component";
|
29
|
+
import * as i27 from "./admin/architecture/elements/cube-index-utility.component";
|
30
|
+
import * as i28 from "./admin/architecture/elements/configuration-datasource.component";
|
31
|
+
import * as i29 from "./admin/architecture/elements/return-to-role-action.component";
|
32
|
+
import * as i30 from "./admin/architecture/elements/pivot-view.component";
|
33
|
+
import * as i31 from "./admin/architecture/elements/cube-view.component";
|
34
|
+
import * as i32 from "./admin/architecture/elements/box-form.component";
|
35
|
+
import * as i33 from "./admin/architecture/elements/anomaly-rule.component";
|
36
|
+
import * as i34 from "./admin/architecture/elements/usage-report.component";
|
37
|
+
import * as i35 from "./admin/architecture/elements/documents-widget.component";
|
38
|
+
import * as i36 from "./admin/architecture/elements/performance-widget.component";
|
39
|
+
import * as i37 from "./admin/architecture/elements/documents-report.component";
|
40
|
+
import * as i38 from "./admin/architecture/elements/tasks-report.component";
|
41
|
+
import * as i39 from "./admin/architecture/elements/explore-view.component";
|
42
|
+
import * as i40 from "./admin/architecture/elements/analysis-widget.component";
|
43
|
+
import * as i41 from "./admin/architecture/elements/parallel-view.component";
|
44
|
+
import * as i42 from "./admin/architecture/elements/sum-view.component";
|
45
|
+
import * as i43 from "./admin/architecture/elements/matrix-view.component";
|
46
|
+
import * as i44 from "./admin/architecture/elements/analysis-view.component";
|
47
|
+
import * as i45 from "./core/fields/localized-string.field";
|
48
|
+
import * as i46 from "./admin/architecture/designer.component";
|
49
|
+
import * as i47 from "./admin/form/designer/box-designer.component";
|
50
|
+
import * as i48 from "./admin/form/designer/section.component";
|
51
|
+
import * as i49 from "./admin/form/designer/settings.component";
|
52
|
+
import * as i50 from "./admin/form/designer/design-control.component";
|
53
|
+
import * as i51 from "./admin/form/designer/properties.component";
|
54
|
+
import * as i52 from "./admin/permissions/permissions.component";
|
55
|
+
import * as i53 from "./admin/indices/manage-cube-index.component";
|
56
|
+
import * as i54 from "./admin/profiler/outofoffice.component";
|
57
|
+
import * as i55 from "./admin/utility-wrapper.component";
|
58
|
+
import * as i56 from "./admin/utility.pane.component";
|
59
|
+
import * as i57 from "./admin/document-trace/reassign.dialog";
|
60
|
+
import * as i58 from "./admin/diff/configuration-diff.component";
|
61
|
+
import * as i59 from "./admin/document-trace/document-trace.component";
|
62
|
+
import * as i60 from "./admin/document-trace/trace-element.component";
|
63
|
+
import * as i61 from "./admin/profiler/profiler.component";
|
64
|
+
import * as i62 from "./admin/positions/positions.component";
|
65
|
+
import * as i63 from "./admin/positions/positions-popup.component";
|
66
|
+
import * as i64 from "./admin/form/workflow/workflow.component";
|
67
|
+
import * as i65 from "./admin/form/workflow/node.component";
|
68
|
+
import * as i66 from "./admin/form/workflow/role-node.component";
|
69
|
+
import * as i67 from "./admin/patterns/patterns.component";
|
70
|
+
import * as i68 from "@angular/common";
|
71
71
|
import * as i69 from "@angular/forms";
|
72
72
|
import * as i70 from "@angular/router";
|
73
73
|
import * as i71 from "@angular/cdk/scrolling";
|
@@ -78,6 +78,6 @@ import * as i75 from "./designer.module";
|
|
78
78
|
export declare class SystemModule {
|
79
79
|
static forChild(): ModuleWithProviders<SystemModule>;
|
80
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemModule, never>;
|
81
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.FormInviteDialog, typeof i2.PerformanceReportDesignComponent, typeof i3.NodeDesignerComponent, typeof i4.DesignerPrivilegesComponent, typeof i5.AddContentDirective, typeof i6.IconPickerComponent, typeof i5.CustomContentDirective, typeof i5.EditContentDirective, typeof i5.WidgetContentDirective, typeof i7.DocumentStateWidgetDesignComponent, typeof i8.PolicyDesignComponent, typeof i9.StateDesignComponent, typeof i10.RoleDesignComponent, typeof i11.GuideDesignComponent, typeof i12.ControlDesignComponent, typeof i13.AttributeDesignComponent, typeof i14.
|
81
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SystemModule, [typeof i1.FormInviteDialog, typeof i2.PerformanceReportDesignComponent, typeof i3.NodeDesignerComponent, typeof i4.DesignerPrivilegesComponent, typeof i5.AddContentDirective, typeof i6.IconPickerComponent, typeof i5.CustomContentDirective, typeof i5.EditContentDirective, typeof i5.WidgetContentDirective, typeof i7.DocumentStateWidgetDesignComponent, typeof i8.PolicyDesignComponent, typeof i9.StateDesignComponent, typeof i10.RoleDesignComponent, typeof i11.GuideDesignComponent, typeof i12.ControlDesignComponent, typeof i13.AttributeDesignComponent, typeof i14.NotificationDesignComponent, typeof i15.RuleDesignComponent, typeof i16.ReportDesignerComponent, typeof i17.FolderDesignComponent, typeof i18.UtilityDesignComponent, typeof i19.FormDesignComponent, typeof i20.WidgetDesignComponent, typeof i21.SourceDesignComponent, typeof i22.JobDesignComponent, typeof i23.CubeDesignComponent, typeof i24.ActionDesignerComponent, typeof i16.ReportDesignerComponent, typeof i25.ViewDesignComponent, typeof i26.TypeDesignComponent, typeof i27.CubeIndexDesignComponent, typeof i28.ConfigurationDatasourceDesignComponent, typeof i29.ReturnToRoleActionDesignComponent, typeof i30.PivotViewDesignComponent, typeof i31.CubeViewDesignComponent, typeof i32.BoxFormDesignComponent, typeof i33.AnomalyRuleDesignComponent, typeof i34.UsageReportDesignComponent, typeof i35.DocumentsWidgetDesignComponent, typeof i36.PerformanceWidgetDesignComponent, typeof i37.DocumentsReportDesignComponent, typeof i38.TasksReportDesignComponent, typeof i39.ExploreViewDesignComponent, typeof i40.AnalysisWidgetDesignComponent, typeof i41.ParallelViewDesignComponent, typeof i42.SumViewDesignComponent, typeof i43.MatrixViewDesignComponent, typeof i44.ChartViewDesignComponent, typeof i45.LocalizedStringField, typeof i46.ConfigurationDesignerComponent, typeof i5.DesignerItemComponent, typeof i47.FormDesignerComponent, typeof i48.SectionPropertiesComponent, typeof i49.BoxSettingsComponent, typeof i50.DesignControlComponent, typeof i51.ControlPropertiesComponent, typeof i52.PermissionsUtility, typeof i53.ManageCubeIndexUtility, typeof i54.ProfileSettingsDialog, typeof i55.UtilityWrapperComponent, typeof i56.UtilityPaneComponent, typeof i57.ReassignDialog, typeof i58.SystemDiffComponent, typeof i59.DocumentTraceComponent, typeof i60.TraceElementComponent, typeof i61.ProfilerComponent, typeof i62.PositionsComponent, typeof i63.PositionsPopup, typeof i64.WorkflowComponent, typeof i65.WorkflowNodeComponent, typeof i66.RoleNodeComponent, typeof i67.PatternsComponent], [typeof i68.CommonModule, typeof i69.ReactiveFormsModule, typeof i70.RouterModule, typeof i71.ScrollingModule, typeof i72.SyncfusionDiagramModule, typeof i73.SyncfusionChartModule, typeof i74.SharedModule, typeof i75.DesignerModule], [typeof i52.PermissionsUtility, typeof i53.ManageCubeIndexUtility, typeof i55.UtilityWrapperComponent, typeof i56.UtilityPaneComponent, typeof i58.SystemDiffComponent, typeof i59.DocumentTraceComponent, typeof i61.ProfilerComponent, typeof i62.PositionsComponent, typeof i64.WorkflowComponent, typeof i66.RoleNodeComponent, typeof i67.PatternsComponent]>;
|
82
82
|
static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
|
83
83
|
}
|
package/package.json
CHANGED
/package/lib/notifications/types/{content.notification.d.ts → content-message.notification.d.ts}
RENAMED
File without changes
|