@bizdoc/core 1.17.1 → 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.
Files changed (115) hide show
  1. package/assets/themes/brown.min.css +1 -1
  2. package/assets/themes/dark.min.css +1 -1
  3. package/assets/themes/deep-purple-light-blue.min.css +1 -1
  4. package/assets/themes/deep-purple-teal.min.css +1 -1
  5. package/assets/themes/default.min.css +1 -1
  6. package/assets/themes/green.min.css +1 -1
  7. package/assets/themes/indigo.min.css +1 -1
  8. package/esm2020/lib/admin/architecture/cube-axes-filter.component.mjs +3 -3
  9. package/esm2020/lib/admin/architecture/declarations.mjs +11 -4
  10. package/esm2020/lib/admin/architecture/designer-element.component.mjs +3 -3
  11. package/esm2020/lib/admin/architecture/designer-privileges.component.mjs +12 -8
  12. package/esm2020/lib/admin/architecture/designer.base.mjs +2 -1
  13. package/esm2020/lib/admin/architecture/designer.component.mjs +12 -6
  14. package/esm2020/lib/admin/architecture/elements/action.component.mjs +2 -2
  15. package/esm2020/lib/admin/architecture/elements/analysis-view.component.mjs +5 -4
  16. package/esm2020/lib/admin/architecture/elements/analysis-widget.component.mjs +5 -4
  17. package/esm2020/lib/admin/architecture/elements/attribute.component.mjs +5 -4
  18. package/esm2020/lib/admin/architecture/elements/control.component.mjs +7 -5
  19. package/esm2020/lib/admin/architecture/elements/cube-index-utility.component.mjs +5 -4
  20. package/esm2020/lib/admin/architecture/elements/cube-view.component.mjs +5 -4
  21. package/esm2020/lib/admin/architecture/elements/cube.component.mjs +3 -3
  22. package/esm2020/lib/admin/architecture/elements/documents-report.component.mjs +5 -4
  23. package/esm2020/lib/admin/architecture/elements/documents-widget.component.mjs +5 -4
  24. package/esm2020/lib/admin/architecture/elements/explore-view.component.mjs +5 -4
  25. package/esm2020/lib/admin/architecture/elements/feedback-widget.component.mjs +7 -6
  26. package/esm2020/lib/admin/architecture/elements/folder.component.mjs +5 -4
  27. package/esm2020/lib/admin/architecture/elements/form-invite.dialog.mjs +44 -33
  28. package/esm2020/lib/admin/architecture/elements/form.component.mjs +10 -8
  29. package/esm2020/lib/admin/architecture/elements/matrix-view.component.mjs +5 -4
  30. package/esm2020/lib/admin/architecture/elements/parallel-view.component.mjs +5 -4
  31. package/esm2020/lib/admin/architecture/elements/performance-report.component.mjs +5 -4
  32. package/esm2020/lib/admin/architecture/elements/performance-widget.component.mjs +5 -4
  33. package/esm2020/lib/admin/architecture/elements/pivot-view.component.mjs +5 -4
  34. package/esm2020/lib/admin/architecture/elements/report.component.mjs +5 -4
  35. package/esm2020/lib/admin/architecture/elements/rule.component.mjs +1 -1
  36. package/esm2020/lib/admin/architecture/elements/state.component.mjs +2 -2
  37. package/esm2020/lib/admin/architecture/elements/sum-view.component.mjs +5 -4
  38. package/esm2020/lib/admin/architecture/elements/tasks-report.component.mjs +5 -4
  39. package/esm2020/lib/admin/architecture/elements/usage-report.component.mjs +5 -4
  40. package/esm2020/lib/admin/architecture/elements/widget.component.mjs +5 -4
  41. package/esm2020/lib/admin/core/localized-string.component.mjs +1 -1
  42. package/esm2020/lib/admin/form/designer/box-designer.component.mjs +4 -5
  43. package/esm2020/lib/admin/form/designer/properties.component.mjs +3 -2
  44. package/esm2020/lib/admin/form/designer/section.component.mjs +3 -3
  45. package/esm2020/lib/admin/patterns/patterns.component.mjs +3 -3
  46. package/esm2020/lib/admin/system.service.mjs +1 -1
  47. package/esm2020/lib/compose/box/box.component.mjs +5 -5
  48. package/esm2020/lib/core/fields/autocomplete.field.mjs +4 -4
  49. package/esm2020/lib/core/fields/checklist.designer.mjs +11 -11
  50. package/esm2020/lib/core/fields/checklist.field.mjs +17 -24
  51. package/esm2020/lib/core/fields/localized-string.field.mjs +21 -0
  52. package/esm2020/lib/core/fields/options.base.mjs +41 -0
  53. package/esm2020/lib/core/fields/options.component.mjs +3 -3
  54. package/esm2020/lib/core/fields/radio-button.designer.mjs +13 -10
  55. package/esm2020/lib/core/fields/radio-button.field.mjs +16 -23
  56. package/esm2020/lib/core/fields/select.designer.mjs +16 -15
  57. package/esm2020/lib/core/fields/select.field.mjs +18 -31
  58. package/esm2020/lib/core/fields/signature.designer.mjs +3 -1
  59. package/esm2020/lib/core/fields/signature.field.mjs +3 -3
  60. package/esm2020/lib/core/fields/yesno.designer.mjs +6 -5
  61. package/esm2020/lib/core/layout.component.mjs +5 -1
  62. package/esm2020/lib/core/models.mjs +2 -1
  63. package/esm2020/lib/core/slots/slots.component.mjs +3 -3
  64. package/esm2020/lib/core/translations.mjs +28 -108
  65. package/esm2020/lib/cube/filter/filter.component.mjs +3 -3
  66. package/esm2020/lib/dashboard/cube/cube-analysis.base.mjs +36 -13
  67. package/esm2020/lib/dashboard/cube/cube-analysis.widget.mjs +1 -1
  68. package/esm2020/lib/notifications/types/commented.notification.mjs +1 -1
  69. package/esm2020/lib/notifications/types/escalated.notification.mjs +1 -1
  70. package/esm2020/lib/notifications/types/invite.notification.mjs +11 -3
  71. package/esm2020/lib/notifications/types/liked.notification.mjs +1 -1
  72. package/esm2020/lib/notifications/types/long-running-task.notification.mjs +3 -3
  73. package/esm2020/lib/notifications/types/nudge.notification.mjs +1 -1
  74. package/esm2020/lib/notifications/types/state-changed.notification.mjs +2 -2
  75. package/esm2020/lib/notifications/types/tagged.notification.mjs +2 -2
  76. package/esm2020/lib/notifications/types/upcoming-event.notification.mjs +1 -1
  77. package/esm2020/lib/reports/arguments-component.mjs +1 -1
  78. package/esm2020/lib/reports/report-ref.mjs +4 -2
  79. package/esm2020/lib/reports/report-viewer.component.mjs +4 -2
  80. package/esm2020/lib/system.module.mjs +110 -9
  81. package/fesm2015/bizdoc-core.mjs +1133 -1016
  82. package/fesm2015/bizdoc-core.mjs.map +1 -1
  83. package/fesm2020/bizdoc-core.mjs +1127 -1010
  84. package/fesm2020/bizdoc-core.mjs.map +1 -1
  85. package/lib/admin/architecture/declarations.d.ts +4 -3
  86. package/lib/admin/architecture/designer.component.d.ts +1 -0
  87. package/lib/admin/architecture/elements/control.component.d.ts +1 -0
  88. package/lib/admin/architecture/elements/cube.component.d.ts +1 -1
  89. package/lib/admin/architecture/elements/form-invite.dialog.d.ts +6 -5
  90. package/lib/admin/architecture/elements/rule.component.d.ts +1 -2
  91. package/lib/admin/core/localized-string.component.d.ts +2 -2
  92. package/lib/admin/system.service.d.ts +7 -1
  93. package/lib/core/fields/checklist.designer.d.ts +7 -10
  94. package/lib/core/fields/checklist.field.d.ts +2 -13
  95. package/lib/core/fields/localized-string.field.d.ts +16 -0
  96. package/lib/core/fields/options.base.d.ts +28 -0
  97. package/lib/core/fields/radio-button.designer.d.ts +6 -6
  98. package/lib/core/fields/radio-button.field.d.ts +2 -13
  99. package/lib/core/fields/select.designer.d.ts +5 -6
  100. package/lib/core/fields/select.field.d.ts +2 -16
  101. package/lib/core/models.d.ts +4 -0
  102. package/lib/core/translations.d.ts +19 -99
  103. package/lib/dashboard/cube/cube-analysis.widget.d.ts +2 -1
  104. package/lib/notifications/types/commented.notification.d.ts +0 -1
  105. package/lib/notifications/types/escalated.notification.d.ts +0 -1
  106. package/lib/notifications/types/invite.notification.d.ts +4 -5
  107. package/lib/notifications/types/liked.notification.d.ts +0 -1
  108. package/lib/notifications/types/long-running-task.notification.d.ts +1 -1
  109. package/lib/notifications/types/nudge.notification.d.ts +0 -1
  110. package/lib/notifications/types/state-changed.notification.d.ts +0 -2
  111. package/lib/notifications/types/tagged.notification.d.ts +0 -2
  112. package/lib/notifications/types/upcoming-event.notification.d.ts +0 -1
  113. package/lib/reports/report-ref.d.ts +3 -1
  114. package/lib/system.module.d.ts +35 -34
  115. package/package.json +1 -1
@@ -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
- PatternErr: string;
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
- CompleteFillNotification: string;
534
- Description: string;
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
- CompleteFillNotification: string;
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
- PatternErr: string;
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
- PhoneNumber: string;
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: any, args?: any): void;
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
  }
@@ -21,6 +21,5 @@ export declare class CommentedNotification extends NotificationBase implements O
21
21
  interface Commented extends Notification {
22
22
  userIds: string[];
23
23
  text: string;
24
- number: string;
25
24
  }
26
25
  export {};
@@ -20,6 +20,5 @@ interface Escalated extends Notification {
20
20
  substituteId: string;
21
21
  role?: string;
22
22
  duration: number;
23
- number: string;
24
23
  }
25
24
  export {};
@@ -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(e: MouseEvent): void;
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
- formId: string;
19
- recipientId?: number;
20
- documentId?: number;
19
+ due?: Date;
21
20
  }
22
21
  export {};
@@ -20,6 +20,5 @@ export declare class LikedNotification extends NotificationBase implements OnIni
20
20
  interface Liked extends Notification {
21
21
  userIds: string[];
22
22
  voted?: number;
23
- number: string;
24
23
  }
25
24
  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
- report: string;
18
+ name: string;
19
19
  value: number;
20
20
  }
21
21
  export {};
@@ -18,6 +18,5 @@ export declare class NudgeNotification extends NotificationBase implements OnIni
18
18
  }
19
19
  interface Nudge extends Notification {
20
20
  expire: Date;
21
- number: string;
22
21
  }
23
22
  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 {};
@@ -20,7 +20,5 @@ export declare class TaggedNotification extends NotificationBase implements OnIn
20
20
  }
21
21
  interface Tagged extends Notification {
22
22
  who: string;
23
- form: string;
24
- number: string;
25
23
  }
26
24
  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 {};
@@ -7,7 +7,8 @@ export declare class ReportRef<O = any> {
7
7
  private _configuration;
8
8
  private _hub;
9
9
  readonly _resize: BehaviorSubject<Dimentions>;
10
- constructor(_configuration: Report, _hub: HubService, dim: Dimentions);
10
+ readonly _args: BehaviorSubject<O>;
11
+ constructor(_configuration: Report, args: O, _hub: HubService, dim: Dimentions);
11
12
  readonly _exporting: Subject<ExportEventArgs>;
12
13
  /** intercept user export */
13
14
  exporting(): Observable<ExportEventArgs>;
@@ -18,6 +19,7 @@ export declare class ReportRef<O = any> {
18
19
  get options(): O;
19
20
  /** configuration name */
20
21
  get name(): string;
22
+ get arguments(): O;
21
23
  _destroy(): void;
22
24
  }
23
25
  export interface ExportEventArgs {
@@ -42,42 +42,43 @@ import * as i39 from "./admin/architecture/elements/parallel-view.component";
42
42
  import * as i40 from "./admin/architecture/elements/sum-view.component";
43
43
  import * as i41 from "./admin/architecture/elements/matrix-view.component";
44
44
  import * as i42 from "./admin/architecture/elements/analysis-view.component";
45
- import * as i43 from "./admin/architecture/designer.component";
46
- import * as i44 from "./admin/form/designer/box-designer.component";
47
- import * as i45 from "./admin/form/designer/section.component";
48
- import * as i46 from "./admin/form/designer/settings.component";
49
- import * as i47 from "./admin/form/designer/properties.component";
50
- import * as i48 from "./admin/permissions/permissions.component";
51
- import * as i49 from "./admin/indices/manage-cube-index.component";
52
- import * as i50 from "./admin/profiler/outofoffice.component";
53
- import * as i51 from "./admin/utility-wrapper.component";
54
- import * as i52 from "./admin/utility.pane.component";
55
- import * as i53 from "./admin/core/search.input";
56
- import * as i54 from "./admin/core/color-picker.input";
57
- import * as i55 from "./admin/document-trace/reassign.dialog";
58
- import * as i56 from "./admin/diff/configuration-diff.component";
59
- import * as i57 from "./admin/document-trace/document-trace.component";
60
- import * as i58 from "./admin/document-trace/trace-element.component";
61
- import * as i59 from "./admin/profiler/profiler.component";
62
- import * as i60 from "./admin/positions/positions.component";
63
- import * as i61 from "./admin/positions/positions-popup.component";
64
- import * as i62 from "./admin/form/workflow/workflow.component";
65
- import * as i63 from "./admin/form/workflow/node.component";
66
- import * as i64 from "./admin/form/workflow/role-node.component";
67
- import * as i65 from "./admin/patterns/patterns.component";
68
- import * as i66 from "@angular/common";
69
- import * as i67 from "@angular/common/http";
70
- import * as i68 from "@angular/forms";
71
- import * as i69 from "@angular/flex-layout";
72
- import * as i70 from "@angular/router";
73
- import * as i71 from "@angular/cdk/scrolling";
74
- import * as i72 from "./modules/diagram.module";
75
- import * as i73 from "./modules/chart.module";
76
- import * as i74 from "./shared.module";
77
- import * as i75 from "./designer.module";
45
+ import * as i43 from "./core/fields/localized-string.field";
46
+ import * as i44 from "./admin/architecture/designer.component";
47
+ import * as i45 from "./admin/form/designer/box-designer.component";
48
+ import * as i46 from "./admin/form/designer/section.component";
49
+ import * as i47 from "./admin/form/designer/settings.component";
50
+ import * as i48 from "./admin/form/designer/properties.component";
51
+ import * as i49 from "./admin/permissions/permissions.component";
52
+ import * as i50 from "./admin/indices/manage-cube-index.component";
53
+ import * as i51 from "./admin/profiler/outofoffice.component";
54
+ import * as i52 from "./admin/utility-wrapper.component";
55
+ import * as i53 from "./admin/utility.pane.component";
56
+ import * as i54 from "./admin/core/search.input";
57
+ import * as i55 from "./admin/core/color-picker.input";
58
+ import * as i56 from "./admin/document-trace/reassign.dialog";
59
+ import * as i57 from "./admin/diff/configuration-diff.component";
60
+ import * as i58 from "./admin/document-trace/document-trace.component";
61
+ import * as i59 from "./admin/document-trace/trace-element.component";
62
+ import * as i60 from "./admin/profiler/profiler.component";
63
+ import * as i61 from "./admin/positions/positions.component";
64
+ import * as i62 from "./admin/positions/positions-popup.component";
65
+ import * as i63 from "./admin/form/workflow/workflow.component";
66
+ import * as i64 from "./admin/form/workflow/node.component";
67
+ import * as i65 from "./admin/form/workflow/role-node.component";
68
+ import * as i66 from "./admin/patterns/patterns.component";
69
+ import * as i67 from "@angular/common";
70
+ import * as i68 from "@angular/common/http";
71
+ import * as i69 from "@angular/forms";
72
+ import * as i70 from "@angular/flex-layout";
73
+ import * as i71 from "@angular/router";
74
+ import * as i72 from "@angular/cdk/scrolling";
75
+ import * as i73 from "./modules/diagram.module";
76
+ import * as i74 from "./modules/chart.module";
77
+ import * as i75 from "./shared.module";
78
+ import * as i76 from "./designer.module";
78
79
  export declare class SystemModule {
79
80
  static forChild(): ModuleWithProviders<SystemModule>;
80
81
  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.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.RuleDesignComponent, typeof i15.ReportDesignerComponent, typeof i16.FolderDesignComponent, typeof i17.UtilityDesignComponent, typeof i18.FormDesignComponent, typeof i19.WidgetDesignComponent, typeof i20.CubeDesignComponent, typeof i21.ActionDesignerComponent, typeof i15.ReportDesignerComponent, typeof i22.ViewDesignComponent, typeof i23.TypeDesignComponent, typeof i24.DesignerCubeFilterComponent, typeof i25.CubeIndexDesignComponent, typeof i26.ConfigurationDatasourceDesignComponent, typeof i27.ReturnToRoleActionDesignComponent, typeof i28.PivotViewDesignComponent, typeof i29.CubeViewDesignComponent, typeof i30.BoxFormDesignComponent, typeof i31.AnomalyRuleDesignComponent, typeof i32.UsageReportDesignComponent, typeof i33.DocumentsWidgetDesignComponent, typeof i34.PerformanceWidgetDesignComponent, typeof i35.DocumentsReportDesignComponent, typeof i36.TasksReportDesignComponent, typeof i37.ExploreViewDesignComponent, typeof i38.AnalysisWidgetDesignComponent, typeof i39.ParallelViewDesignComponent, typeof i40.SumViewDesignComponent, typeof i41.MatrixViewDesignComponent, typeof i42.ChartViewDesignComponent, typeof i43.ConfigurationDesignerComponent, typeof i5.DesignerItemComponent, typeof i5.DesignerItemOptionsComponent, typeof i44.FormDesignerComponent, typeof i45.SectionPropertiesComponent, typeof i46.BoxSettingsComponent, typeof i44.DesignControlComponent, typeof i47.ControlPropertiesComponent, typeof i48.PermissionsUtility, typeof i49.ManageCubeIndexUtility, typeof i50.ProfileSettingsDialog, typeof i51.UtilityWrapperComponent, typeof i52.UtilityPaneComponent, typeof i53.SearchInput, typeof i54.ColorPicker, typeof i55.ReassignDialog, typeof i56.SystemDiffComponent, typeof i57.DocumentTraceComponent, typeof i58.TraceElementComponent, typeof i59.ProfilerComponent, typeof i60.PositionsComponent, typeof i61.PositionsPopup, typeof i62.WorkflowComponent, typeof i63.WorkflowNodeComponent, typeof i64.RoleNodeComponent, typeof i65.PatternsComponent], [typeof i66.CommonModule, typeof i67.HttpClientModule, typeof i68.ReactiveFormsModule, typeof i69.FlexLayoutModule, typeof i70.RouterModule, typeof i71.ScrollingModule, typeof i72.SyncfusionDiagramModule, typeof i73.SyncfusionChartModule, typeof i74.SharedModule, typeof i75.DesignerModule], [typeof i48.PermissionsUtility, typeof i49.ManageCubeIndexUtility, typeof i51.UtilityWrapperComponent, typeof i52.UtilityPaneComponent, typeof i56.SystemDiffComponent, typeof i57.DocumentTraceComponent, typeof i59.ProfilerComponent, typeof i60.PositionsComponent, typeof i62.WorkflowComponent, typeof i64.RoleNodeComponent, typeof i65.PatternsComponent]>;
82
+ 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.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.RuleDesignComponent, typeof i15.ReportDesignerComponent, typeof i16.FolderDesignComponent, typeof i17.UtilityDesignComponent, typeof i18.FormDesignComponent, typeof i19.WidgetDesignComponent, typeof i20.CubeDesignComponent, typeof i21.ActionDesignerComponent, typeof i15.ReportDesignerComponent, typeof i22.ViewDesignComponent, typeof i23.TypeDesignComponent, typeof i24.DesignerCubeFilterComponent, typeof i25.CubeIndexDesignComponent, typeof i26.ConfigurationDatasourceDesignComponent, typeof i27.ReturnToRoleActionDesignComponent, typeof i28.PivotViewDesignComponent, typeof i29.CubeViewDesignComponent, typeof i30.BoxFormDesignComponent, typeof i31.AnomalyRuleDesignComponent, typeof i32.UsageReportDesignComponent, typeof i33.DocumentsWidgetDesignComponent, typeof i34.PerformanceWidgetDesignComponent, typeof i35.DocumentsReportDesignComponent, typeof i36.TasksReportDesignComponent, typeof i37.ExploreViewDesignComponent, typeof i38.AnalysisWidgetDesignComponent, typeof i39.ParallelViewDesignComponent, typeof i40.SumViewDesignComponent, typeof i41.MatrixViewDesignComponent, typeof i42.ChartViewDesignComponent, typeof i43.LocalizedStringField, typeof i44.ConfigurationDesignerComponent, typeof i5.DesignerItemComponent, typeof i5.DesignerItemOptionsComponent, typeof i45.FormDesignerComponent, typeof i46.SectionPropertiesComponent, typeof i47.BoxSettingsComponent, typeof i45.DesignControlComponent, typeof i48.ControlPropertiesComponent, typeof i49.PermissionsUtility, typeof i50.ManageCubeIndexUtility, typeof i51.ProfileSettingsDialog, typeof i52.UtilityWrapperComponent, typeof i53.UtilityPaneComponent, typeof i54.SearchInput, typeof i55.ColorPicker, typeof i56.ReassignDialog, typeof i57.SystemDiffComponent, typeof i58.DocumentTraceComponent, typeof i59.TraceElementComponent, typeof i60.ProfilerComponent, typeof i61.PositionsComponent, typeof i62.PositionsPopup, typeof i63.WorkflowComponent, typeof i64.WorkflowNodeComponent, typeof i65.RoleNodeComponent, typeof i66.PatternsComponent], [typeof i67.CommonModule, typeof i68.HttpClientModule, typeof i69.ReactiveFormsModule, typeof i70.FlexLayoutModule, typeof i71.RouterModule, typeof i72.ScrollingModule, typeof i73.SyncfusionDiagramModule, typeof i74.SyncfusionChartModule, typeof i75.SharedModule, typeof i76.DesignerModule], [typeof i49.PermissionsUtility, typeof i50.ManageCubeIndexUtility, typeof i52.UtilityWrapperComponent, typeof i53.UtilityPaneComponent, typeof i57.SystemDiffComponent, typeof i58.DocumentTraceComponent, typeof i60.ProfilerComponent, typeof i61.PositionsComponent, typeof i63.WorkflowComponent, typeof i65.RoleNodeComponent, typeof i66.PatternsComponent]>;
82
83
  static ɵinj: i0.ɵɵInjectorDeclaration<SystemModule>;
83
84
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizdoc/core",
3
- "version": "1.17.1",
3
+ "version": "1.17.5",
4
4
  "author": "Moding Ltd.",
5
5
  "homepage": "https://github.com/moding-il/bizdoc.core",
6
6
  "license": "https://github.com/moding-il/bizdoc.core/blob/master/License.md",