@magic-xpa/angular 4.1300.0-dev4130.27 → 4.1300.0-dev4130.271

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.
@@ -1,28 +1,27 @@
1
1
  import { isNullOrUndefined, NString, List, isUndefined, StringBuilder, RefParam } from '@magic-xpa/mscorelib';
2
2
  import * as i0 from '@angular/core';
3
- import { Injectable, Component, Input, Output, Directive, EventEmitter, HostListener, ViewChild, InjectionToken, Inject, Optional, Pipe, forwardRef, NgModule } from '@angular/core';
3
+ import { Injectable, inject, Injector, createNgModule, ViewContainerRef, ChangeDetectionStrategy, Component, Directive, EventEmitter, HostListener, Output, Input, ViewChild, input, output, ElementRef, viewChild, ChangeDetectorRef, InjectionToken, DestroyRef, Renderer2, Pipe, effect, forwardRef, NgModule } from '@angular/core';
4
4
  import * as i1 from '@angular/common';
5
5
  import { DatePipe, CommonModule, formatDate } from '@angular/common';
6
- import * as i2 from '@angular/router';
7
- import { NavigationEnd, RouterModule } from '@angular/router';
6
+ import { ActivatedRoute, Router, NavigationEnd, RouterModule } from '@angular/router';
8
7
  import { FormGroup, FormControl, Validators, NG_VALIDATORS, NG_VALUE_ACCESSOR, CheckboxControlValueAccessor, DefaultValueAccessor, FormsModule, ReactiveFormsModule } from '@angular/forms';
9
- import * as i2$3 from 'ng-dynamic-component';
8
+ import * as i1$1 from 'ng-dynamic-component';
10
9
  import { DynamicModule } from 'ng-dynamic-component';
11
10
  import { InteractiveCommandType, HtmlProperties, OverlayType, Styles, GuiConstants, CommandType, PIC, GuiEnvironment, Events, Modifiers } from '@magic-xpa/gui';
12
11
  import { MagicBridge, getGuiEventObj, CookieService, Environment, LastFocusedManager } from '@magic-xpa/engine';
12
+ import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
13
13
  import { MagicProperties, Logger, StrUtil, StorageAttribute, PICInterface, MsgInterface, BindingLevel, StorageAttributeType, MgControlType } from '@magic-xpa/utils';
14
+ import { Subject, EMPTY, fromEvent, Observable } from 'rxjs';
14
15
  import { filter, map, debounceTime, take } from 'rxjs/operators';
15
- import { Subject, EMPTY, fromEvent } from 'rxjs';
16
- import { __decorate, __metadata } from 'tslib';
17
- import * as i2$1 from '@angular/cdk/drag-drop';
16
+ import * as i2 from '@angular/cdk/drag-drop';
18
17
  import { DragDropModule, CdkDragHandle, CdkDrag } from '@angular/cdk/drag-drop';
19
- import * as i1$1 from '@angular/platform-browser';
20
- import * as i1$2 from '@angular/common/http';
21
- import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
18
+ import { Title } from '@angular/platform-browser';
19
+ import { HttpClient, provideHttpClient, withXhr, withInterceptorsFromDi } from '@angular/common/http';
22
20
  import { maskitoTimeOptionsGenerator } from '@maskito/kit';
23
- import * as i2$2 from '@angular/cdk/platform';
24
- import { MaskitoModule } from '@maskito/angular';
21
+ import { Platform } from '@angular/cdk/platform';
22
+ import { MaskitoDirective } from '@maskito/angular';
25
23
  import { NativeDateAdapter, MAT_DATE_LOCALE, DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
24
+ import { io } from 'socket.io-client';
26
25
 
27
26
  /**
28
27
  * @ignore
@@ -239,6 +238,63 @@ var HtmlClasses;
239
238
  HtmlClasses["HintColor"] = "hintcolor";
240
239
  })(HtmlClasses || (HtmlClasses = {}));
241
240
 
241
+ /**
242
+ * Notifies Angular that Magic state changed outside of its knowledge.
243
+ *
244
+ * The WebClient runs zoneless, so Angular no longer re-renders the application
245
+ * after every asynchronous task. Change detection is triggered only by Angular's
246
+ * own APIs - a template event binding, a signal write, `markForCheck()` and so on.
247
+ *
248
+ * Magic drives the UI from sources Angular cannot observe: DOM listeners registered
249
+ * through `Renderer2`, the engine's event loop, and socket callbacks. Every such
250
+ * source calls {@link notify}, and the Magic components refresh themselves in response.
251
+ *
252
+ * Application code can use this service for the same purpose. Call {@link notify}
253
+ * after changing component state from a callback Angular does not control - a
254
+ * `setTimeout`, a `Promise`, a `fetch` response or a third-party widget event:
255
+ *
256
+ * ```ts
257
+ * export class MyForm extends TaskBaseMagicComponent {
258
+ * private readonly magicChangeDetection = inject(MagicChangeDetectionService);
259
+ *
260
+ * override mgOnLoad(): void {
261
+ * setTimeout(() => {
262
+ * this.statusText = 'Ready';
263
+ * this.magicChangeDetection.notify();
264
+ * }, 1000);
265
+ * }
266
+ * }
267
+ * ```
268
+ *
269
+ * Notifications are coalesced by Angular's scheduler, so calling {@link notify}
270
+ * several times in a row still results in a single refresh.
271
+ */
272
+ class MagicChangeDetectionService {
273
+ /**
274
+ * @ignore
275
+ */
276
+ changedSubject = new Subject();
277
+ /**
278
+ * Emits whenever Magic state changed and the views should be refreshed.
279
+ * Subscribers are expected to mark their view for check.
280
+ */
281
+ changed = this.changedSubject.asObservable();
282
+ /**
283
+ * Notify Angular that state which the templates depend on has changed.
284
+ */
285
+ notify() {
286
+ this.changedSubject.next();
287
+ }
288
+ /** @nocollapse */ static ɵfac = function MagicChangeDetectionService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicChangeDetectionService)(); };
289
+ /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: MagicChangeDetectionService, factory: MagicChangeDetectionService.ɵfac, providedIn: 'root' });
290
+ }
291
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicChangeDetectionService, [{
292
+ type: Injectable,
293
+ args: [{
294
+ providedIn: 'root'
295
+ }]
296
+ }], null, null); })();
297
+
242
298
  /**
243
299
  * @ignore
244
300
  */
@@ -279,6 +335,9 @@ class EngineMagicService {
279
335
  //TODO - unregister
280
336
  refreshDom = new Subject();
281
337
  interactiveCommands = new Subject();
338
+ // Injected as a field rather than a constructor parameter so that the public
339
+ // constructor signature stays unchanged for anyone extending this service.
340
+ magicChangeDetection = inject(MagicChangeDetectionService);
282
341
  startMagicEngine(httpClient, args) {
283
342
  this.magicBridge.registerExecuteCommandsCallback(data => {
284
343
  if (!this.isStub) {
@@ -294,11 +353,17 @@ class EngineMagicService {
294
353
  console.log('moving to stub mode');
295
354
  this.isStub = true;
296
355
  }
356
+ finally {
357
+ // The engine finished a batch of UI commands. Running zoneless, this is the
358
+ // single point where every server-driven change becomes visible to Angular.
359
+ this.magicChangeDetection.notify();
360
+ }
297
361
  }
298
362
  });
299
363
  this.magicBridge.registerInteractiveCallback(data => {
300
364
  if (!this.isStub) {
301
365
  this.interactiveCommands.next(data);
366
+ this.magicChangeDetection.notify();
302
367
  }
303
368
  });
304
369
  this.magicBridge.Initialize(httpClient, args);
@@ -309,6 +374,11 @@ class EngineMagicService {
309
374
  insertEvent(guiEvent) {
310
375
  if (!this.isStub)
311
376
  this.magicBridge.insertEvent(guiEvent);
377
+ // Every Magic UI event - from the DOM listeners registered by MagicDirective and
378
+ // its subclasses, from the accessor service, and from the overlay service - reaches
379
+ // the engine through here. Renderer2 listeners do not notify Angular's scheduler on
380
+ // their own, so this is where an interaction becomes a change-detection trigger.
381
+ this.magicChangeDetection.notify();
312
382
  }
313
383
  GetRangedValue(taskId, controlName, value) {
314
384
  return this.magicBridge.GetRangedValue(taskId, controlName, value);
@@ -430,12 +500,11 @@ class ComponentListMagicService {
430
500
  * @ignore
431
501
  */
432
502
  class CommandsCollectorMagicService {
433
- magic;
434
503
  count = 0;
435
504
  commands = new List();
436
505
  subscription = null;
437
- constructor(magic) {
438
- this.magic = magic;
506
+ magic = inject(EngineMagicService);
507
+ constructor() {
439
508
  }
440
509
  startCollecting() {
441
510
  this.count++;
@@ -460,7 +529,7 @@ class CommandsCollectorMagicService {
460
529
  commands.forEach(command => { this.commands.Remove(command); });
461
530
  return commands;
462
531
  }
463
- /** @nocollapse */ static ɵfac = function CommandsCollectorMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CommandsCollectorMagicService)(i0.ɵɵinject(EngineMagicService)); };
532
+ /** @nocollapse */ static ɵfac = function CommandsCollectorMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CommandsCollectorMagicService)(); };
464
533
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: CommandsCollectorMagicService, factory: CommandsCollectorMagicService.ɵfac, providedIn: 'root' });
465
534
  }
466
535
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CommandsCollectorMagicService, [{
@@ -468,7 +537,7 @@ class CommandsCollectorMagicService {
468
537
  args: [{
469
538
  providedIn: 'root'
470
539
  }]
471
- }], () => [{ type: EngineMagicService }], null); })();
540
+ }], () => [], null); })();
472
541
 
473
542
  /**
474
543
  * @ignore
@@ -522,32 +591,21 @@ class MagicLazyLoaderService {
522
591
  * Service for managing subforms and routing
523
592
  */
524
593
  class SubformMagicService {
525
- task;
526
- activatedRoute;
527
- componentList;
528
- pendingCommandsCollector;
529
- router;
530
- routerCommandsMagicService;
531
- componentListMagicService;
532
- loader;
533
- injector;
534
- compiler;
535
594
  subformsDict /*:{ [x: string]: SubformDefinition }*/ = {};
536
595
  routesDict = {}; // dictionary of router outlet to router path
537
596
  currentRouteDefinition = null;
538
597
  static currentCallerMgSubformServiceRef = null;
539
598
  static routerContainers = new Array();
540
- constructor(task, activatedRoute, componentList, pendingCommandsCollector, router, routerCommandsMagicService, componentListMagicService, loader, injector, compiler) {
541
- this.task = task;
542
- this.activatedRoute = activatedRoute;
543
- this.componentList = componentList;
544
- this.pendingCommandsCollector = pendingCommandsCollector;
545
- this.router = router;
546
- this.routerCommandsMagicService = routerCommandsMagicService;
547
- this.componentListMagicService = componentListMagicService;
548
- this.loader = loader;
549
- this.injector = injector;
550
- this.compiler = compiler;
599
+ task = inject(TaskMagicService);
600
+ activatedRoute = inject(ActivatedRoute);
601
+ componentList = inject(ComponentListMagicService);
602
+ pendingCommandsCollector = inject(CommandsCollectorMagicService);
603
+ router = inject(Router);
604
+ routerCommandsMagicService = inject(RouterCommandsMagicService);
605
+ componentListMagicService = inject(ComponentListMagicService);
606
+ loader = inject(MagicLazyLoaderService);
607
+ injector = inject(Injector);
608
+ constructor() {
551
609
  }
552
610
  /**
553
611
  * Finds and returns the component according to the subform name
@@ -608,8 +666,7 @@ class SubformMagicService {
608
666
  // extract name of module(XX) from 'MagicXXModule'
609
667
  const moduleName = lazyLoadModule.moduleName.slice(Magic.length, -Module.length);
610
668
  this.loader.Load(moduleName).then(m => {
611
- const compiled = this.compiler.compileModuleAndAllComponentsSync(m[lazyLoadModule.moduleName]);
612
- moduleRef = compiled.ngModuleFactory.create(this.injector);
669
+ moduleRef = createNgModule(m[lazyLoadModule.moduleName], this.injector);
613
670
  this.subformsDict[subformControlName] = {
614
671
  formName,
615
672
  parameters: { taskIdParam: taskId, taskDescription: taskDescription }
@@ -749,25 +806,17 @@ class SubformMagicService {
749
806
  }
750
807
  return currentActiveRoute;
751
808
  }
752
- /** @nocollapse */ static ɵfac = function SubformMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SubformMagicService)(i0.ɵɵinject(TaskMagicService), i0.ɵɵinject(i2.ActivatedRoute), i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(CommandsCollectorMagicService), i0.ɵɵinject(i2.Router), i0.ɵɵinject(RouterCommandsMagicService), i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(MagicLazyLoaderService), i0.ɵɵinject(i0.Injector), i0.ɵɵinject(i0.Compiler)); };
809
+ /** @nocollapse */ static ɵfac = function SubformMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SubformMagicService)(); };
753
810
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: SubformMagicService, factory: SubformMagicService.ɵfac });
754
811
  }
755
812
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SubformMagicService, [{
756
813
  type: Injectable
757
- }], () => [{ type: TaskMagicService }, { type: i2.ActivatedRoute }, { type: ComponentListMagicService }, { type: CommandsCollectorMagicService }, { type: i2.Router }, { type: RouterCommandsMagicService }, { type: ComponentListMagicService }, { type: MagicLazyLoaderService }, { type: i0.Injector }, { type: i0.Compiler }], null); })();
814
+ }], () => [], null); })();
758
815
 
759
816
  /**
760
817
  * Mock component, implements routing by connecting the requested URL with the appropriate Magic task
761
818
  */
762
819
  class RouterContainerMagicComponent {
763
- activatedRoute;
764
- router;
765
- magic;
766
- containerTaskService;
767
- viewContainerRef;
768
- componentList;
769
- pendingCommandsCollector;
770
- routerCommandsMagicService;
771
820
  componentRef = null;
772
821
  parentMgSubformService = null;
773
822
  static lastRoute = "/";
@@ -775,6 +824,14 @@ class RouterContainerMagicComponent {
775
824
  static get LastRoute() {
776
825
  return RouterContainerMagicComponent.lastRoute;
777
826
  }
827
+ activatedRoute = inject(ActivatedRoute);
828
+ router = inject(Router);
829
+ magic = inject(EngineMagicService);
830
+ containerTaskService = inject(TaskMagicService);
831
+ viewContainerRef = inject(ViewContainerRef);
832
+ componentList = inject(ComponentListMagicService);
833
+ pendingCommandsCollector = inject(CommandsCollectorMagicService);
834
+ routerCommandsMagicService = inject(RouterCommandsMagicService);
778
835
  /**
779
836
  *
780
837
  * @param changeDetectorRef
@@ -785,16 +842,7 @@ class RouterContainerMagicComponent {
785
842
  * @param componentList
786
843
  * @param pendingCommandsCollector
787
844
  */
788
- constructor(activatedRoute, router, magic, containerTaskService, viewContainerRef, componentList, pendingCommandsCollector, routerCommandsMagicService) {
789
- this.activatedRoute = activatedRoute;
790
- this.router = router;
791
- this.magic = magic;
792
- this.containerTaskService = containerTaskService;
793
- this.viewContainerRef = viewContainerRef;
794
- this.componentList = componentList;
795
- this.pendingCommandsCollector = pendingCommandsCollector;
796
- this.routerCommandsMagicService = routerCommandsMagicService;
797
- }
845
+ constructor() { }
798
846
  /**
799
847
  * Initialization
800
848
  */
@@ -872,8 +920,8 @@ class RouterContainerMagicComponent {
872
920
  getRouterPath() {
873
921
  return this.routePath;
874
922
  }
875
- /** @nocollapse */ static ɵfac = function RouterContainerMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RouterContainerMagicComponent)(i0.ɵɵdirectiveInject(i2.ActivatedRoute), i0.ɵɵdirectiveInject(i2.Router), i0.ɵɵdirectiveInject(EngineMagicService), i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(ComponentListMagicService), i0.ɵɵdirectiveInject(CommandsCollectorMagicService), i0.ɵɵdirectiveInject(RouterCommandsMagicService)); };
876
- /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: RouterContainerMagicComponent, selectors: [["magic-route-outlet"]], standalone: false, decls: 0, vars: 0, template: function RouterContainerMagicComponent_Template(rf, ctx) { }, encapsulation: 2 });
923
+ /** @nocollapse */ static ɵfac = function RouterContainerMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RouterContainerMagicComponent)(); };
924
+ /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: RouterContainerMagicComponent, selectors: [["magic-route-outlet"]], standalone: false, decls: 0, vars: 0, template: function RouterContainerMagicComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 1 });
877
925
  }
878
926
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(RouterContainerMagicComponent, [{
879
927
  type: Component,
@@ -881,10 +929,11 @@ class RouterContainerMagicComponent {
881
929
  selector: 'magic-route-outlet',
882
930
  template: `
883
931
  `,
932
+ changeDetection: ChangeDetectionStrategy.Eager,
884
933
  standalone: false
885
934
  }]
886
- }], () => [{ type: i2.ActivatedRoute }, { type: i2.Router }, { type: EngineMagicService }, { type: TaskMagicService }, { type: i0.ViewContainerRef }, { type: ComponentListMagicService }, { type: CommandsCollectorMagicService }, { type: RouterCommandsMagicService }], null); })();
887
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RouterContainerMagicComponent, { className: "RouterContainerMagicComponent", filePath: "src/ui/router-container.magic.component.ts", lineNumber: 23 }); })();
935
+ }], () => [], null); })();
936
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(RouterContainerMagicComponent, { className: "RouterContainerMagicComponent", filePath: "src/ui/router-container.magic.component.ts", lineNumber: 24 }); })();
888
937
 
889
938
  /**
890
939
  * @ignore
@@ -1003,37 +1052,81 @@ class GuiInteractiveExecutor {
1003
1052
  }
1004
1053
  }
1005
1054
 
1006
- let BaseMagicOverlayContainer = class BaseMagicOverlayContainer {
1007
- };
1008
- __decorate([
1009
- Input(),
1010
- __metadata("design:type", Object)
1011
- ], BaseMagicOverlayContainer.prototype, "ModalComp", void 0);
1012
- __decorate([
1013
- Input(),
1014
- __metadata("design:type", Object)
1015
- ], BaseMagicOverlayContainer.prototype, "ModalCompParameters", void 0);
1016
- __decorate([
1017
- Output(),
1018
- __metadata("design:type", Object)
1019
- ], BaseMagicOverlayContainer.prototype, "onClose", void 0);
1020
- BaseMagicOverlayContainer = __decorate([
1021
- Input(),
1022
- Output()
1023
- ], BaseMagicOverlayContainer);
1055
+ class MagicModalProperties {
1056
+ formName = "overlay";
1057
+ showTitleBar = true;
1058
+ x = 0;
1059
+ y = 0;
1060
+ width = "300px";
1061
+ height = "300px";
1062
+ isCenteredToWindow = true;
1063
+ shouldCloseOnBackgroundClick = true;
1064
+ isResizable = true;
1065
+ isMovable = true;
1066
+ constructor(formName, showTitleBar, x, y, width, height, isCenteredToWindow, shouldCloseOnBackgroundClick, isResizable, isMovable) {
1067
+ this.formName = formName;
1068
+ this.showTitleBar = showTitleBar;
1069
+ this.x = x;
1070
+ this.y = y;
1071
+ this.width = width;
1072
+ this.height = height;
1073
+ this.isCenteredToWindow = isCenteredToWindow;
1074
+ this.shouldCloseOnBackgroundClick = shouldCloseOnBackgroundClick;
1075
+ this.isResizable = isResizable;
1076
+ this.isMovable = isMovable;
1077
+ }
1078
+ X() {
1079
+ return this.x;
1080
+ }
1081
+ Y() {
1082
+ return this.y;
1083
+ }
1084
+ Width() {
1085
+ return this.width;
1086
+ }
1087
+ Height() {
1088
+ return this.height;
1089
+ }
1090
+ IsCenteredToWindow() {
1091
+ return this.isCenteredToWindow;
1092
+ }
1093
+ FormName() {
1094
+ return this.formName;
1095
+ }
1096
+ ShowTitleBar() {
1097
+ return this.showTitleBar;
1098
+ }
1099
+ ShouldCloseOnBackgroundClick() {
1100
+ return this.shouldCloseOnBackgroundClick;
1101
+ }
1102
+ IsResizable() {
1103
+ return this.isResizable;
1104
+ }
1105
+ IsMovable() {
1106
+ return this.isMovable;
1107
+ }
1108
+ }
1109
+
1110
+ /**
1111
+ * Abstract base for Magic overlay container components.
1112
+ * Concrete classes must implement these members using Angular signal APIs (input/output).
1113
+ * The class is kept as an abstract class (not an interface) so that instanceof checks
1114
+ * in MagicOverlayContainerWrapper continue to work at runtime.
1115
+ */
1116
+ class BaseMagicOverlayContainer {
1117
+ }
1024
1118
 
1025
1119
  /**
1026
1120
  * Directive for setting ViewContainerRef on element
1027
1121
  */
1028
1122
  class MagicViewContainerRef {
1029
- vcRef;
1030
- constructor(vcRef) {
1031
- this.vcRef = vcRef;
1123
+ vcRef = inject(ViewContainerRef);
1124
+ constructor() {
1032
1125
  // For angular 10 - find the component from the views
1033
1126
  let comp = (this.vcRef._hostLView).find(v => v != null && !isNullOrUndefined(v.setViewContainerRef));
1034
- comp.setViewContainerRef(vcRef);
1127
+ comp.setViewContainerRef(this.vcRef);
1035
1128
  }
1036
- /** @nocollapse */ static ɵfac = function MagicViewContainerRef_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicViewContainerRef)(i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
1129
+ /** @nocollapse */ static ɵfac = function MagicViewContainerRef_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicViewContainerRef)(); };
1037
1130
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: MagicViewContainerRef, selectors: [["", "magicViewContainerRef", ""]], standalone: false });
1038
1131
  }
1039
1132
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicViewContainerRef, [{
@@ -1042,54 +1135,54 @@ class MagicViewContainerRef {
1042
1135
  selector: '[magicViewContainerRef]',
1043
1136
  standalone: false
1044
1137
  }]
1045
- }], () => [{ type: i0.ViewContainerRef }], null); })();
1138
+ }], () => [], null); })();
1046
1139
 
1047
1140
  const _c0$3 = ["modalheader"];
1048
1141
  const _c1$1 = ["modalForeground"];
1049
1142
  function MagicOverlayContainer_Conditional_2_Template(rf, ctx) { if (rf & 1) {
1050
- const _r2 = i0.ɵɵgetCurrentView();
1143
+ const _r1 = i0.ɵɵgetCurrentView();
1051
1144
  i0.ɵɵelementStart(0, "button", 14);
1052
- i0.ɵɵlistener("click", function MagicOverlayContainer_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r2); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.OnClose()); });
1145
+ i0.ɵɵlistener("click", function MagicOverlayContainer_Conditional_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r1); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.OnClose()); });
1053
1146
  i0.ɵɵtext(1, "X");
1054
1147
  i0.ɵɵelementEnd();
1055
1148
  } }
1056
1149
  function MagicOverlayContainer_Conditional_5_Template(rf, ctx) { if (rf & 1) {
1057
- const _r4 = i0.ɵɵgetCurrentView();
1150
+ const _r3 = i0.ɵɵgetCurrentView();
1058
1151
  i0.ɵɵelementStart(0, "span", 15);
1059
- i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_5_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onResizeStart($event, "right")); });
1152
+ i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_5_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r3); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onResizeStart($event, "right")); });
1060
1153
  i0.ɵɵelementEnd();
1061
1154
  } }
1062
1155
  function MagicOverlayContainer_Conditional_6_Template(rf, ctx) { if (rf & 1) {
1063
- const _r5 = i0.ɵɵgetCurrentView();
1156
+ const _r4 = i0.ɵɵgetCurrentView();
1064
1157
  i0.ɵɵelementStart(0, "span", 16);
1065
- i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_6_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onResizeStart($event, "left")); });
1158
+ i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_6_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r4); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onResizeStart($event, "left")); });
1066
1159
  i0.ɵɵelementEnd();
1067
1160
  } }
1068
1161
  function MagicOverlayContainer_Conditional_7_Template(rf, ctx) { if (rf & 1) {
1069
- const _r6 = i0.ɵɵgetCurrentView();
1162
+ const _r5 = i0.ɵɵgetCurrentView();
1070
1163
  i0.ɵɵelementStart(0, "span", 17);
1071
- i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_7_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onResizeStart($event, "corner")); });
1164
+ i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_7_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r5); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onResizeStart($event, "corner")); });
1072
1165
  i0.ɵɵelementEnd();
1073
1166
  } }
1074
1167
  function MagicOverlayContainer_Conditional_8_Template(rf, ctx) { if (rf & 1) {
1075
- const _r7 = i0.ɵɵgetCurrentView();
1168
+ const _r6 = i0.ɵɵgetCurrentView();
1076
1169
  i0.ɵɵelementStart(0, "span", 18);
1077
- i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_8_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r7); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.onResizeStart($event, "bottom")); });
1170
+ i0.ɵɵlistener("mousedown", function MagicOverlayContainer_Conditional_8_Template_span_mousedown_0_listener($event) { i0.ɵɵrestoreView(_r6); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.onResizeStart($event, "bottom")); });
1078
1171
  i0.ɵɵelementEnd();
1079
1172
  } }
1080
1173
  function MagicOverlayContainer_Conditional_9_Template(rf, ctx) { if (rf & 1) {
1081
- const _r8 = i0.ɵɵgetCurrentView();
1174
+ const _r7 = i0.ɵɵgetCurrentView();
1082
1175
  i0.ɵɵelementStart(0, "div", 19, 2);
1083
1176
  i0.ɵɵtext(2);
1084
1177
  i0.ɵɵelementStart(3, "button", 20);
1085
- i0.ɵɵlistener("click", function MagicOverlayContainer_Conditional_9_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r8); const ctx_r2 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r2.OnClose()); });
1178
+ i0.ɵɵlistener("click", function MagicOverlayContainer_Conditional_9_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r7); const ctx_r1 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r1.OnClose()); });
1086
1179
  i0.ɵɵtext(4, "X");
1087
1180
  i0.ɵɵelementEnd()();
1088
1181
  } if (rf & 2) {
1089
- const ctx_r2 = i0.ɵɵnextContext();
1090
- i0.ɵɵclassProp("movable", ctx_r2.IsMovable());
1182
+ const ctx_r1 = i0.ɵɵnextContext();
1183
+ i0.ɵɵclassProp("movable", ctx_r1.IsMovable());
1091
1184
  i0.ɵɵadvance(2);
1092
- i0.ɵɵtextInterpolate1(" ", ctx_r2.getText(), " ");
1185
+ i0.ɵɵtextInterpolate1(" ", ctx_r1.getText(), " ");
1093
1186
  } }
1094
1187
  /**
1095
1188
  * Creates a modal window for Magic modal window components
@@ -1142,7 +1235,7 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1142
1235
  ngOnInit() {
1143
1236
  this.componentRef = this.modalbodyViewContainerRef.createComponent(this.ModalComp);
1144
1237
  Object.assign(this.componentRef.instance, this.ModalCompParameters);
1145
- let comp = this.componentRef.instance;
1238
+ let comp = this.getOverlayProps();
1146
1239
  this.isCenteredToWindow = comp.IsCenteredToWindow();
1147
1240
  }
1148
1241
  ngAfterViewInit() {
@@ -1161,7 +1254,7 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1161
1254
  */
1162
1255
  getText() {
1163
1256
  if (this.componentRef !== null) {
1164
- let comp = this.componentRef.instance;
1257
+ let comp = this.getOverlayProps();
1165
1258
  return comp.FormName();
1166
1259
  }
1167
1260
  else
@@ -1180,7 +1273,7 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1180
1273
  getStyle() {
1181
1274
  let styles = {};
1182
1275
  if (this.componentRef != undefined) {
1183
- let comp = this.componentRef.instance;
1276
+ let comp = this.getOverlayProps();
1184
1277
  styles['width'] = comp.Width();
1185
1278
  styles['height'] = comp.Height();
1186
1279
  if (this.isCenteredToWindow) {
@@ -1217,7 +1310,7 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1217
1310
  */
1218
1311
  getShowTitleBar() {
1219
1312
  if (this.componentRef != undefined) {
1220
- let comp = this.componentRef.instance;
1313
+ let comp = this.getOverlayProps();
1221
1314
  return comp.ShowTitleBar();
1222
1315
  }
1223
1316
  }
@@ -1231,7 +1324,7 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1231
1324
  * Handles click in the background window
1232
1325
  */
1233
1326
  OnBackgroundClick() {
1234
- let comp = this.componentRef.instance;
1327
+ let comp = this.getOverlayProps();
1235
1328
  if (comp.ShouldCloseOnBackgroundClick())
1236
1329
  this.OnClose();
1237
1330
  }
@@ -1240,7 +1333,9 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1240
1333
  * @returns {boolean} True if the overlay is resizable, false otherwise.
1241
1334
  */
1242
1335
  IsResizable() {
1243
- let comp = this.componentRef.instance;
1336
+ if (!this.componentRef)
1337
+ return false;
1338
+ let comp = this.getOverlayProps();
1244
1339
  return comp.IsResizable();
1245
1340
  }
1246
1341
  /**
@@ -1248,7 +1343,9 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1248
1343
  * @returns {boolean} True if the overlay is movable, false otherwise.
1249
1344
  */
1250
1345
  IsMovable() {
1251
- let comp = this.componentRef.instance;
1346
+ if (!this.componentRef)
1347
+ return false;
1348
+ let comp = this.getOverlayProps();
1252
1349
  return comp.IsMovable();
1253
1350
  }
1254
1351
  /**
@@ -1342,6 +1439,18 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1342
1439
  this.resizing = false;
1343
1440
  this.resizeDirection = null;
1344
1441
  }
1442
+ getOverlayProps() {
1443
+ let obj = this.componentRef.instance;
1444
+ if (obj && obj.magicModalProperties instanceof MagicModalProperties)
1445
+ obj = obj.magicModalProperties;
1446
+ if (!(obj instanceof MagicModalProperties)) {
1447
+ const componentName = this.componentRef?.instance?.constructor?.name || 'Unknown';
1448
+ throw new Error(`Overlay component '${componentName}' cannot be opened. ` +
1449
+ `Ensure that the component contains a 'magicModalProperties' property of type MagicModalProperties. ` +
1450
+ `Example: magicModalProperties: MagicModalProperties = new MagicModalProperties("formName", true, 0, 0, "300px", "300px", true, true, true, true);`);
1451
+ }
1452
+ return obj;
1453
+ }
1345
1454
  /** @nocollapse */ static ɵfac = function MagicOverlayContainer_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicOverlayContainer)(); };
1346
1455
  /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: MagicOverlayContainer, selectors: [["app-magic-overlay-container"]], viewQuery: function MagicOverlayContainer_Query(rf, ctx) { if (rf & 1) {
1347
1456
  i0.ɵɵviewQuery(_c0$3, 5)(_c1$1, 5);
@@ -1352,9 +1461,8 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1352
1461
  } }, hostBindings: function MagicOverlayContainer_HostBindings(rf, ctx) { if (rf & 1) {
1353
1462
  i0.ɵɵlistener("mousemove", function MagicOverlayContainer_mousemove_HostBindingHandler($event) { return ctx.onResize($event); }, i0.ɵɵresolveWindow)("mouseup", function MagicOverlayContainer_mouseup_HostBindingHandler() { return ctx.onResizeEnd(); }, i0.ɵɵresolveWindow);
1354
1463
  } }, inputs: { ModalComp: "ModalComp", ModalCompParameters: "ModalCompParameters" }, outputs: { onClose: "onClose" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 13, vars: 9, consts: [["modalForeground", ""], ["modalbody", ""], ["modalheader", ""], [1, "boundary-line"], [1, "modal-background", 3, "click"], ["tabindex", "-1", 2, "float", "right", "border", "none", "background-color", "transparent", "outline", "none", "color", "white"], ["cdkDragBoundary", ".boundary-line", "cdkDrag", "", 1, "modal-foreground", 3, "ngStyle", "cdkDragDisabled"], [1, "dragHandle", "right"], [1, "dragHandle", "left"], [1, "dragHandle", "corner"], [1, "dragHandle", "bottom"], ["cdkDragHandle", "", 1, "modal-header", 3, "movable"], [3, "ngStyle"], ["magicViewContainerRef", ""], ["tabindex", "-1", 2, "float", "right", "border", "none", "background-color", "transparent", "outline", "none", "color", "white", 3, "click"], [1, "dragHandle", "right", 3, "mousedown"], [1, "dragHandle", "left", 3, "mousedown"], [1, "dragHandle", "corner", 3, "mousedown"], [1, "dragHandle", "bottom", 3, "mousedown"], ["cdkDragHandle", "", 1, "modal-header"], ["tabindex", "-1", 2, "float", "right", 3, "click"]], template: function MagicOverlayContainer_Template(rf, ctx) { if (rf & 1) {
1355
- const _r1 = i0.ɵɵgetCurrentView();
1356
1464
  i0.ɵɵelementStart(0, "div", 3)(1, "div", 4);
1357
- i0.ɵɵlistener("click", function MagicOverlayContainer_Template_div_click_1_listener() { i0.ɵɵrestoreView(_r1); return i0.ɵɵresetView(ctx.OnBackgroundClick()); });
1465
+ i0.ɵɵlistener("click", function MagicOverlayContainer_Template_div_click_1_listener() { return ctx.OnBackgroundClick(); });
1358
1466
  i0.ɵɵconditionalCreate(2, MagicOverlayContainer_Conditional_2_Template, 2, 0, "button", 5);
1359
1467
  i0.ɵɵelementEnd();
1360
1468
  i0.ɵɵelementStart(3, "div", 6, 0);
@@ -1383,48 +1491,48 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1383
1491
  i0.ɵɵconditional(ctx.getShowTitleBar() ? 9 : -1);
1384
1492
  i0.ɵɵadvance();
1385
1493
  i0.ɵɵproperty("ngStyle", ctx.getClientAreaStyles());
1386
- } }, dependencies: [i1.NgStyle, i2$1.CdkDragHandle, i2$1.CdkDrag, MagicViewContainerRef], styles: [".modal-foreground[_ngcontent-%COMP%]{position:fixed;inset:0;background-color:#fff}.modal-background[_ngcontent-%COMP%]{position:fixed;inset:0;background-color:#000;opacity:.75}.modal-header[_ngcontent-%COMP%]{background-color:beige;border-bottom:2px solid red}.modal-header.movable[_ngcontent-%COMP%]:active{cursor:move}.container[_ngcontent-%COMP%]{position:relative}.dragHandle[_ngcontent-%COMP%]{position:absolute}.dragHandle.corner[_ngcontent-%COMP%]{width:10px;right:0;bottom:0;height:10px;cursor:nwse-resize;background:linear-gradient(135deg,rgba(0,0,0,.4) 50%,transparent 50%);position:absolute}[dir=\"rtl\"][_nghost-%COMP%] .dragHandle.corner[_ngcontent-%COMP%], [dir=\"rtl\"] [_nghost-%COMP%] .dragHandle.corner[_ngcontent-%COMP%]{right:auto!important;left:0;cursor:nesw-resize;background:linear-gradient(225deg,rgba(0,0,0,.4) 50%,transparent 50%)}.dragHandle.left[_ngcontent-%COMP%]{width:2px;left:-2px;height:100%;cursor:ew-resize}.dragHandle.right[_ngcontent-%COMP%]{width:2px;right:-2px;height:100%;cursor:ew-resize}.dragHandle.bottom[_ngcontent-%COMP%]{height:2px;bottom:-2px;width:100%;cursor:ns-resize}.boundary-line[_ngcontent-%COMP%]{width:100%;height:100%;max-width:100%}"] });
1494
+ } }, dependencies: [i1.NgStyle, i2.CdkDragHandle, i2.CdkDrag, MagicViewContainerRef], styles: [".modal-foreground[_ngcontent-%COMP%]{position:fixed;inset:0;background-color:#fff}.modal-background[_ngcontent-%COMP%]{position:fixed;inset:0;background-color:#000;opacity:.75}.modal-header[_ngcontent-%COMP%]{background-color:beige;border-bottom:2px solid red}.modal-header.movable[_ngcontent-%COMP%]:active{cursor:move}.container[_ngcontent-%COMP%]{position:relative}.dragHandle[_ngcontent-%COMP%]{position:absolute}.dragHandle.corner[_ngcontent-%COMP%]{width:10px;right:0;bottom:0;height:10px;cursor:nwse-resize;background:linear-gradient(135deg,rgba(0,0,0,.4) 50%,transparent 50%);position:absolute}[dir=\"rtl\"][_nghost-%COMP%] .dragHandle.corner[_ngcontent-%COMP%], [dir=\"rtl\"] [_nghost-%COMP%] .dragHandle.corner[_ngcontent-%COMP%]{right:auto!important;left:0;cursor:nesw-resize;background:linear-gradient(225deg,rgba(0,0,0,.4) 50%,transparent 50%)}.dragHandle.left[_ngcontent-%COMP%]{width:2px;left:-2px;height:100%;cursor:ew-resize}.dragHandle.right[_ngcontent-%COMP%]{width:2px;right:-2px;height:100%;cursor:ew-resize}.dragHandle.bottom[_ngcontent-%COMP%]{height:2px;bottom:-2px;width:100%;cursor:ns-resize}.boundary-line[_ngcontent-%COMP%]{width:100%;height:100%;max-width:100%}"], changeDetection: 1 });
1387
1495
  }
1388
1496
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicOverlayContainer, [{
1389
1497
  type: Component,
1390
- args: [{ selector: 'app-magic-overlay-container', template: `
1391
- <div class="boundary-line">
1392
-
1393
- <div class="modal-background" (click)="OnBackgroundClick()">
1394
- @if (!getShowTitleBar()) {
1395
- <button (click)="OnClose()" tabindex="-1" style="float:right; border: none; background-color: transparent; outline: none; color: white">X</button>
1396
- }
1397
- </div>
1398
-
1399
- <div #modalForeground class="modal-foreground" [ngStyle]="getStyle()" cdkDragBoundary=".boundary-line" cdkDrag [cdkDragDisabled]="!IsMovable()">
1400
-
1401
- @if (IsResizable() && !isRtl) {
1402
- <span class="dragHandle right" (mousedown)="onResizeStart($event, 'right')"></span>
1403
- }
1404
- @if (IsResizable() && isRtl) {
1405
- <span class="dragHandle left" (mousedown)="onResizeStart($event, 'left')"></span>
1406
- }
1407
- @if (IsResizable()) {
1408
- <span class="dragHandle corner" (mousedown)="onResizeStart($event, 'corner')"></span>
1409
- }
1410
- @if (IsResizable()) {
1411
- <span class="dragHandle bottom" (mousedown)="onResizeStart($event, 'bottom')"></span>
1412
- }
1413
-
1414
- @if (getShowTitleBar()) {
1415
- <div #modalheader class="modal-header" cdkDragHandle [class.movable]="IsMovable()">
1416
- {{getText()}}
1417
- <button (click)="OnClose()" style="float:right" tabindex="-1">X</button>
1418
- </div>
1419
- }
1420
-
1421
- <div [ngStyle]="getClientAreaStyles()">
1422
- <div #modalbody magicViewContainerRef>
1423
- </div>
1424
- </div>
1425
- </div>
1426
- </div>
1427
- `, standalone: false, styles: [".modal-foreground{position:fixed;inset:0;background-color:#fff}.modal-background{position:fixed;inset:0;background-color:#000;opacity:.75}.modal-header{background-color:beige;border-bottom:2px solid red}.modal-header.movable:active{cursor:move}.container{position:relative}.dragHandle{position:absolute}.dragHandle.corner{width:10px;right:0;bottom:0;height:10px;cursor:nwse-resize;background:linear-gradient(135deg,rgba(0,0,0,.4) 50%,transparent 50%);position:absolute}:host-context([dir=\"rtl\"]) .dragHandle.corner{right:auto!important;left:0;cursor:nesw-resize;background:linear-gradient(225deg,rgba(0,0,0,.4) 50%,transparent 50%)}.dragHandle.left{width:2px;left:-2px;height:100%;cursor:ew-resize}.dragHandle.right{width:2px;right:-2px;height:100%;cursor:ew-resize}.dragHandle.bottom{height:2px;bottom:-2px;width:100%;cursor:ns-resize}.boundary-line{width:100%;height:100%;max-width:100%}\n"] }]
1498
+ args: [{ selector: 'app-magic-overlay-container', template: `
1499
+ <div class="boundary-line">
1500
+
1501
+ <div class="modal-background" (click)="OnBackgroundClick()">
1502
+ @if (!getShowTitleBar()) {
1503
+ <button (click)="OnClose()" tabindex="-1" style="float:right; border: none; background-color: transparent; outline: none; color: white">X</button>
1504
+ }
1505
+ </div>
1506
+
1507
+ <div #modalForeground class="modal-foreground" [ngStyle]="getStyle()" cdkDragBoundary=".boundary-line" cdkDrag [cdkDragDisabled]="!IsMovable()">
1508
+
1509
+ @if (IsResizable() && !isRtl) {
1510
+ <span class="dragHandle right" (mousedown)="onResizeStart($event, 'right')"></span>
1511
+ }
1512
+ @if (IsResizable() && isRtl) {
1513
+ <span class="dragHandle left" (mousedown)="onResizeStart($event, 'left')"></span>
1514
+ }
1515
+ @if (IsResizable()) {
1516
+ <span class="dragHandle corner" (mousedown)="onResizeStart($event, 'corner')"></span>
1517
+ }
1518
+ @if (IsResizable()) {
1519
+ <span class="dragHandle bottom" (mousedown)="onResizeStart($event, 'bottom')"></span>
1520
+ }
1521
+
1522
+ @if (getShowTitleBar()) {
1523
+ <div #modalheader class="modal-header" cdkDragHandle [class.movable]="IsMovable()">
1524
+ {{getText()}}
1525
+ <button (click)="OnClose()" style="float:right" tabindex="-1">X</button>
1526
+ </div>
1527
+ }
1528
+
1529
+ <div [ngStyle]="getClientAreaStyles()">
1530
+ <div #modalbody magicViewContainerRef>
1531
+ </div>
1532
+ </div>
1533
+ </div>
1534
+ </div>
1535
+ `, changeDetection: ChangeDetectionStrategy.Eager, standalone: false, styles: [".modal-foreground{position:fixed;inset:0;background-color:#fff}.modal-background{position:fixed;inset:0;background-color:#000;opacity:.75}.modal-header{background-color:beige;border-bottom:2px solid red}.modal-header.movable:active{cursor:move}.container{position:relative}.dragHandle{position:absolute}.dragHandle.corner{width:10px;right:0;bottom:0;height:10px;cursor:nwse-resize;background:linear-gradient(135deg,rgba(0,0,0,.4) 50%,transparent 50%);position:absolute}:host-context([dir=\"rtl\"]) .dragHandle.corner{right:auto!important;left:0;cursor:nesw-resize;background:linear-gradient(225deg,rgba(0,0,0,.4) 50%,transparent 50%)}.dragHandle.left{width:2px;left:-2px;height:100%;cursor:ew-resize}.dragHandle.right{width:2px;right:-2px;height:100%;cursor:ew-resize}.dragHandle.bottom{height:2px;bottom:-2px;width:100%;cursor:ns-resize}.boundary-line{width:100%;height:100%;max-width:100%}\n"] }]
1428
1536
  }], () => [], { headerElementRef: [{
1429
1537
  type: ViewChild,
1430
1538
  args: ['modalheader', { static: false }]
@@ -1444,7 +1552,7 @@ class MagicOverlayContainer extends BaseMagicOverlayContainer {
1444
1552
  type: HostListener,
1445
1553
  args: ['window:mouseup']
1446
1554
  }] }); })();
1447
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MagicOverlayContainer, { className: "MagicOverlayContainer", filePath: "src/ui/magic-modal/magic-overlay-container.ts", lineNumber: 64 }); })();
1555
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MagicOverlayContainer, { className: "MagicOverlayContainer", filePath: "src/ui/magic-modal/magic-overlay-container.ts", lineNumber: 67 }); })();
1448
1556
 
1449
1557
  /**
1450
1558
  * Service managing overlay windows
@@ -1468,16 +1576,18 @@ class BaseMagicConfirmComponent {
1468
1576
  /**
1469
1577
  * title of the component
1470
1578
  */
1471
- title;
1579
+ title = input(/* @ts-ignore */
1580
+ ...(ngDevMode ? [undefined, { debugName: "title" }] : /* istanbul ignore next */ []));
1472
1581
  /**
1473
1582
  * message of the component
1474
1583
  */
1475
- message;
1584
+ message = input(/* @ts-ignore */
1585
+ ...(ngDevMode ? [undefined, { debugName: "message" }] : /* istanbul ignore next */ []));
1476
1586
  /**
1477
1587
  * onClose Event - to be raised when the component is closed
1478
1588
  * should pass true when OK is pressed and false when cancel is pressed
1479
1589
  */
1480
- onClose = new EventEmitter();
1590
+ onClose = output();
1481
1591
  /**
1482
1592
  * raises close Event
1483
1593
  * @param result true when OK is pressed and false when cancel is pressed
@@ -1487,19 +1597,13 @@ class BaseMagicConfirmComponent {
1487
1597
  this.onClose.emit(result);
1488
1598
  }
1489
1599
  /** @nocollapse */ static ɵfac = function BaseMagicConfirmComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BaseMagicConfirmComponent)(); };
1490
- /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: BaseMagicConfirmComponent, selectors: [["mg-base-confirm"]], inputs: { title: "title", message: "message" }, outputs: { onClose: "onClose" }, standalone: false, decls: 0, vars: 0, template: function BaseMagicConfirmComponent_Template(rf, ctx) { }, encapsulation: 2 });
1600
+ /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: BaseMagicConfirmComponent, selectors: [["mg-base-confirm"]], inputs: { title: [1, "title"], message: [1, "message"] }, outputs: { onClose: "onClose" }, standalone: false, decls: 0, vars: 0, template: function BaseMagicConfirmComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 1 });
1491
1601
  }
1492
1602
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseMagicConfirmComponent, [{
1493
1603
  type: Component,
1494
- args: [{ selector: 'mg-base-confirm', template: '', standalone: false }]
1495
- }], null, { title: [{
1496
- type: Input
1497
- }], message: [{
1498
- type: Input
1499
- }], onClose: [{
1500
- type: Output
1501
- }] }); })();
1502
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(BaseMagicConfirmComponent, { className: "BaseMagicConfirmComponent", filePath: "src/ui/components/base-magic-confirm.component.ts", lineNumber: 13 }); })();
1604
+ args: [{ selector: 'mg-base-confirm', template: '', changeDetection: ChangeDetectionStrategy.Eager, standalone: false }]
1605
+ }], null, { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], message: [{ type: i0.Input, args: [{ isSignal: true, alias: "message", required: false }] }], onClose: [{ type: i0.Output, args: ["onClose"] }] }); })();
1606
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(BaseMagicConfirmComponent, { className: "BaseMagicConfirmComponent", filePath: "src/ui/components/base-magic-confirm.component.ts", lineNumber: 14 }); })();
1503
1607
 
1504
1608
  /**
1505
1609
  * This is a base class for the magic alert components
@@ -1508,16 +1612,18 @@ class BaseMagicAlertComponent {
1508
1612
  /**
1509
1613
  * title of the component
1510
1614
  */
1511
- title;
1615
+ title = input(/* @ts-ignore */
1616
+ ...(ngDevMode ? [undefined, { debugName: "title" }] : /* istanbul ignore next */ []));
1512
1617
  /**
1513
1618
  * message of the component
1514
1619
  */
1515
- message;
1620
+ message = input(/* @ts-ignore */
1621
+ ...(ngDevMode ? [undefined, { debugName: "message" }] : /* istanbul ignore next */ []));
1516
1622
  /**
1517
1623
  * onClose Event - to be raised when the component is closed
1518
1624
 
1519
1625
  */
1520
- onClose = new EventEmitter();
1626
+ onClose = output();
1521
1627
  /**
1522
1628
  * close magic alert
1523
1629
  */
@@ -1525,32 +1631,24 @@ class BaseMagicAlertComponent {
1525
1631
  this.onClose.emit();
1526
1632
  }
1527
1633
  /** @nocollapse */ static ɵfac = function BaseMagicAlertComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BaseMagicAlertComponent)(); };
1528
- /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: BaseMagicAlertComponent, selectors: [["mg-base-alert"]], inputs: { title: "title", message: "message" }, outputs: { onClose: "onClose" }, standalone: false, decls: 0, vars: 0, template: function BaseMagicAlertComponent_Template(rf, ctx) { }, encapsulation: 2 });
1634
+ /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: BaseMagicAlertComponent, selectors: [["mg-base-alert"]], inputs: { title: [1, "title"], message: [1, "message"] }, outputs: { onClose: "onClose" }, standalone: false, decls: 0, vars: 0, template: function BaseMagicAlertComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 1 });
1529
1635
  }
1530
1636
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseMagicAlertComponent, [{
1531
1637
  type: Component,
1532
- args: [{ selector: 'mg-base-alert', template: '', standalone: false }]
1533
- }], null, { title: [{
1534
- type: Input
1535
- }], message: [{
1536
- type: Input
1537
- }], onClose: [{
1538
- type: Output
1539
- }] }); })();
1540
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(BaseMagicAlertComponent, { className: "BaseMagicAlertComponent", filePath: "src/ui/components/base-magic-alert.component.ts", lineNumber: 14 }); })();
1638
+ args: [{ selector: 'mg-base-alert', template: '', changeDetection: ChangeDetectionStrategy.Eager, standalone: false }]
1639
+ }], null, { title: [{ type: i0.Input, args: [{ isSignal: true, alias: "title", required: false }] }], message: [{ type: i0.Input, args: [{ isSignal: true, alias: "message", required: false }] }], onClose: [{ type: i0.Output, args: ["onClose"] }] }); })();
1640
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(BaseMagicAlertComponent, { className: "BaseMagicAlertComponent", filePath: "src/ui/components/base-magic-alert.component.ts", lineNumber: 16 }); })();
1541
1641
 
1542
1642
  /**
1543
1643
  * Directive for setting focus on element
1544
1644
  */
1545
1645
  class MagicFocusDirective {
1546
- hostElement;
1547
- constructor(hostElement) {
1548
- this.hostElement = hostElement;
1549
- }
1646
+ hostElement = inject(ElementRef);
1647
+ constructor() { }
1550
1648
  ngAfterViewInit() {
1551
1649
  this.hostElement.nativeElement.focus();
1552
1650
  }
1553
- /** @nocollapse */ static ɵfac = function MagicFocusDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicFocusDirective)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
1651
+ /** @nocollapse */ static ɵfac = function MagicFocusDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicFocusDirective)(); };
1554
1652
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: MagicFocusDirective, selectors: [["", "magicFocus", ""]], standalone: false });
1555
1653
  }
1556
1654
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicFocusDirective, [{
@@ -1559,30 +1657,29 @@ class MagicFocusDirective {
1559
1657
  selector: '[magicFocus]',
1560
1658
  standalone: false
1561
1659
  }]
1562
- }], () => [{ type: i0.ElementRef }], null); })();
1660
+ }], () => [], null); })();
1563
1661
 
1564
1662
  const _c0$2 = ["overlayContainerWrapper"];
1565
1663
  class MagicOverlayContainerWrapper {
1566
- componentListMagicService;
1567
- magicLazyModuleLoader;
1568
- injector;
1569
- changeDetectorRef;
1570
- compiler;
1571
1664
  /**
1572
1665
  *
1573
1666
  */
1574
- Component = null;
1667
+ Component = input(null, /* @ts-ignore */
1668
+ ...(ngDevMode ? [{ debugName: "Component" }] : /* istanbul ignore next */ []));
1575
1669
  /**
1576
1670
  *
1577
1671
  */
1578
- Parameters = {};
1579
- OverlayTypeParam;
1580
- onClose = new EventEmitter();
1672
+ Parameters = input({}, /* @ts-ignore */
1673
+ ...(ngDevMode ? [{ debugName: "Parameters" }] : /* istanbul ignore next */ []));
1674
+ OverlayTypeParam = input(/* @ts-ignore */
1675
+ ...(ngDevMode ? [undefined, { debugName: "OverlayTypeParam" }] : /* istanbul ignore next */ []));
1676
+ onClose = output();
1581
1677
  /**
1582
1678
  * HTML to be displayed in the modal window
1583
1679
  */
1584
1680
  overlayContentViewContainerRef;
1585
- overlayContainerWrapperElementRef;
1681
+ overlayContainerWrapperElementRef = viewChild.required('overlayContainerWrapper', /* @ts-ignore */
1682
+ ...(ngDevMode ? [{ debugName: "overlayContainerWrapperElementRef" }] : /* istanbul ignore next */ []));
1586
1683
  /**
1587
1684
  * @ignore
1588
1685
  * contais data of allowed base components to use
@@ -1592,32 +1689,26 @@ class MagicOverlayContainerWrapper {
1592
1689
  [OverlayType.Alert, { comp: BaseMagicAlertComponent, error: 'BaseMagicAlertComponent. Alert ' }],
1593
1690
  [OverlayType.ConfirmationBox, { comp: BaseMagicConfirmComponent, error: 'BaseMagicConfirmComponent. Confirmation ' }]
1594
1691
  ]);
1595
- /**
1596
- *
1597
- * @param componentFactoryResolver
1598
- */
1599
- constructor(componentListMagicService, magicLazyModuleLoader, injector, changeDetectorRef, compiler) {
1600
- this.componentListMagicService = componentListMagicService;
1601
- this.magicLazyModuleLoader = magicLazyModuleLoader;
1602
- this.injector = injector;
1603
- this.changeDetectorRef = changeDetectorRef;
1604
- this.compiler = compiler;
1692
+ componentListMagicService = inject(ComponentListMagicService);
1693
+ magicLazyModuleLoader = inject(MagicLazyLoaderService);
1694
+ injector = inject(Injector);
1695
+ changeDetectorRef = inject(ChangeDetectorRef);
1696
+ constructor() {
1605
1697
  }
1606
1698
  /**
1607
1699
  *
1608
1700
  */
1609
1701
  ngOnInit() {
1610
- let moduleRef = this.componentListMagicService.getModuleRef(this.Parameters.MagicFormName);
1702
+ let moduleRef = this.componentListMagicService.getModuleRef(this.Parameters().MagicFormName);
1611
1703
  if (moduleRef == null) {
1612
- let lazyLoadModule = this.componentListMagicService.getLazyLoadModuleData(this.Parameters.MagicFormName);
1704
+ let lazyLoadModule = this.componentListMagicService.getLazyLoadModuleData(this.Parameters().MagicFormName);
1613
1705
  if (lazyLoadModule != null) {
1614
1706
  const Magic = 'Magic';
1615
1707
  const Module = 'Module';
1616
1708
  // extract name of module(XX) from 'MagicXXModule'
1617
1709
  const moduleName = lazyLoadModule.moduleName.slice(Magic.length, -Module.length);
1618
1710
  this.magicLazyModuleLoader.Load(moduleName).then(m => {
1619
- const compiled = this.compiler.compileModuleAndAllComponentsSync(m[lazyLoadModule.moduleName]);
1620
- moduleRef = compiled.ngModuleFactory.create(this.injector);
1711
+ moduleRef = createNgModule(m[lazyLoadModule.moduleName], this.injector);
1621
1712
  this.loadComponent(moduleRef);
1622
1713
  });
1623
1714
  }
@@ -1629,11 +1720,18 @@ class MagicOverlayContainerWrapper {
1629
1720
  this.loadComponent(moduleRef);
1630
1721
  }
1631
1722
  loadComponent(moduleRef) {
1632
- this.Parameters.ModalComp = this.componentListMagicService.getComponent(this.Parameters.MagicFormName, !isNullOrUndefined(this.Parameters.MagicFormName));
1633
- let componentRef = this.overlayContentViewContainerRef.createComponent(this.Component);
1634
- let allowedBaseComp = MagicOverlayContainerWrapper.allowedBaseComps.get(this.OverlayTypeParam);
1723
+ this.Parameters().ModalComp = this.componentListMagicService.getComponent(this.Parameters().MagicFormName, !isNullOrUndefined(this.Parameters().MagicFormName));
1724
+ let componentRef = this.overlayContentViewContainerRef.createComponent(this.Component());
1725
+ let allowedBaseComp = MagicOverlayContainerWrapper.allowedBaseComps.get(this.OverlayTypeParam());
1635
1726
  if (componentRef.instance instanceof allowedBaseComp.comp) {
1636
- Object.assign(componentRef.instance, this.Parameters);
1727
+ if (this.OverlayTypeParam() === OverlayType.Overlay) {
1728
+ componentRef.setInput('ModalComp', this.Parameters().ModalComp);
1729
+ componentRef.setInput('ModalCompParameters', this.Parameters().ModalCompParameters);
1730
+ }
1731
+ else {
1732
+ componentRef.setInput('title', this.Parameters().title);
1733
+ componentRef.setInput('message', this.Parameters().message);
1734
+ }
1637
1735
  componentRef.instance.onClose.subscribe((res) => {
1638
1736
  this.onClose.emit(res);
1639
1737
  });
@@ -1647,18 +1745,17 @@ class MagicOverlayContainerWrapper {
1647
1745
  this.overlayContentViewContainerRef = vcRef;
1648
1746
  }
1649
1747
  GetRootElement() {
1650
- return this.overlayContainerWrapperElementRef.nativeElement;
1748
+ return this.overlayContainerWrapperElementRef().nativeElement;
1651
1749
  }
1652
1750
  DetectChanges() {
1653
1751
  this.changeDetectorRef.detectChanges();
1654
1752
  }
1655
- /** @nocollapse */ static ɵfac = function MagicOverlayContainerWrapper_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicOverlayContainerWrapper)(i0.ɵɵdirectiveInject(ComponentListMagicService), i0.ɵɵdirectiveInject(MagicLazyLoaderService), i0.ɵɵdirectiveInject(i0.Injector), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.Compiler)); };
1753
+ /** @nocollapse */ static ɵfac = function MagicOverlayContainerWrapper_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicOverlayContainerWrapper)(); };
1656
1754
  /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: MagicOverlayContainerWrapper, selectors: [["app-magic-overlay-container-wrapper"]], viewQuery: function MagicOverlayContainerWrapper_Query(rf, ctx) { if (rf & 1) {
1657
- i0.ɵɵviewQuery(_c0$2, 7);
1755
+ i0.ɵɵviewQuerySignal(ctx.overlayContainerWrapperElementRef, _c0$2, 5);
1658
1756
  } if (rf & 2) {
1659
- let _t;
1660
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.overlayContainerWrapperElementRef = _t.first);
1661
- } }, inputs: { Component: "Component", Parameters: "Parameters", OverlayTypeParam: "OverlayTypeParam" }, outputs: { onClose: "onClose" }, standalone: false, decls: 7, vars: 0, consts: [["overlayContainerWrapper", ""], ["overlayContent", ""], ["tabIndex", "0", "magicFocus", "", 1, "overlay-container-wrapper-background", 2, "width", "0px", "height", "0px"], [1, "overlay-container-wrapper-background"], ["magicViewContainerRef", ""], ["tabIndex", "0", 1, "overlay-container-wrapper-background", 2, "width", "0px", "height", "0px"]], template: function MagicOverlayContainerWrapper_Template(rf, ctx) { if (rf & 1) {
1757
+ i0.ɵɵqueryAdvance();
1758
+ } }, inputs: { Component: [1, "Component"], Parameters: [1, "Parameters"], OverlayTypeParam: [1, "OverlayTypeParam"] }, outputs: { onClose: "onClose" }, standalone: false, decls: 7, vars: 0, consts: [["overlayContainerWrapper", ""], ["overlayContent", ""], ["tabIndex", "0", "magicFocus", "", 1, "overlay-container-wrapper-background", 2, "width", "0px", "height", "0px"], [1, "overlay-container-wrapper-background"], ["magicViewContainerRef", ""], ["tabIndex", "0", 1, "overlay-container-wrapper-background", 2, "width", "0px", "height", "0px"]], template: function MagicOverlayContainerWrapper_Template(rf, ctx) { if (rf & 1) {
1662
1759
  i0.ɵɵelementStart(0, "div");
1663
1760
  i0.ɵɵelement(1, "div", 2);
1664
1761
  i0.ɵɵelementStart(2, "div", 3, 0);
@@ -1666,7 +1763,7 @@ class MagicOverlayContainerWrapper {
1666
1763
  i0.ɵɵelementEnd();
1667
1764
  i0.ɵɵelement(6, "div", 5);
1668
1765
  i0.ɵɵelementEnd();
1669
- } }, dependencies: [MagicFocusDirective, MagicViewContainerRef], styles: [".overlay-container-wrapper-background[_ngcontent-%COMP%]{position:fixed;z-index:999;inset:0}"] });
1766
+ } }, dependencies: [MagicFocusDirective, MagicViewContainerRef], styles: [".overlay-container-wrapper-background[_ngcontent-%COMP%]{position:fixed;z-index:999;inset:0}"], changeDetection: 1 });
1670
1767
  }
1671
1768
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicOverlayContainerWrapper, [{
1672
1769
  type: Component,
@@ -1679,19 +1776,8 @@ class MagicOverlayContainerWrapper {
1679
1776
  </div>
1680
1777
  <div class="overlay-container-wrapper-background" tabIndex="0" style="width: 0px; height: 0px;" ></div>
1681
1778
  </div>
1682
- `, standalone: false, styles: [".overlay-container-wrapper-background{position:fixed;z-index:999;inset:0}\n"] }]
1683
- }], () => [{ type: ComponentListMagicService }, { type: MagicLazyLoaderService }, { type: i0.Injector }, { type: i0.ChangeDetectorRef }, { type: i0.Compiler }], { Component: [{
1684
- type: Input
1685
- }], Parameters: [{
1686
- type: Input
1687
- }], OverlayTypeParam: [{
1688
- type: Input
1689
- }], onClose: [{
1690
- type: Output
1691
- }], overlayContainerWrapperElementRef: [{
1692
- type: ViewChild,
1693
- args: ['overlayContainerWrapper', { static: true }]
1694
- }] }); })();
1779
+ `, changeDetection: ChangeDetectionStrategy.Eager, standalone: false, styles: [".overlay-container-wrapper-background{position:fixed;z-index:999;inset:0}\n"] }]
1780
+ }], () => [], { Component: [{ type: i0.Input, args: [{ isSignal: true, alias: "Component", required: false }] }], Parameters: [{ type: i0.Input, args: [{ isSignal: true, alias: "Parameters", required: false }] }], OverlayTypeParam: [{ type: i0.Input, args: [{ isSignal: true, alias: "OverlayTypeParam", required: false }] }], onClose: [{ type: i0.Output, args: ["onClose"] }], overlayContainerWrapperElementRef: [{ type: i0.ViewChild, args: ['overlayContainerWrapper', { isSignal: true }] }] }); })();
1695
1781
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MagicOverlayContainerWrapper, { className: "MagicOverlayContainerWrapper", filePath: "src/ui/magic-modal/magic-overlay-container-wrapper.ts", lineNumber: 46 }); })();
1696
1782
 
1697
1783
  /***
@@ -1712,17 +1798,17 @@ class MagicAlertComponent extends BaseMagicAlertComponent {
1712
1798
  i0.ɵɵelementEnd()()();
1713
1799
  } if (rf & 2) {
1714
1800
  i0.ɵɵadvance(3);
1715
- i0.ɵɵtextInterpolate1(" ", ctx.title);
1801
+ i0.ɵɵtextInterpolate1(" ", ctx.title());
1716
1802
  i0.ɵɵadvance(2);
1717
- i0.ɵɵtextInterpolate1("", ctx.message, " ");
1803
+ i0.ɵɵtextInterpolate1("", ctx.message(), " ");
1718
1804
  } }, styles: [".mg-message-background[_ngcontent-%COMP%]{background-color:#f5f5f5;width:40%;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;padding:17px;border-radius:5px;text-align:center;margin-top:10%;margin-left:auto;margin-right:auto;border:1px solid gray}button[_ngcontent-%COMP%]{background-color:#8cd4f5;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;-webkit-border-radius:4px;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}"] });
1719
1805
  }
1720
1806
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicAlertComponent, [{
1721
1807
  type: Component,
1722
1808
  args: [{ selector: 'sample-magic-alert-component', template: `<div>
1723
1809
  <div class="mg-message-background">
1724
- <h2> {{title}}</h2>
1725
- <p>{{message}} </p>
1810
+ <h2> {{title()}}</h2>
1811
+ <p>{{message()}} </p>
1726
1812
 
1727
1813
  <button (click)="OnClose()">OK</button>
1728
1814
  </div>
@@ -1751,17 +1837,17 @@ class MagicConfirmationBoxComponent extends BaseMagicConfirmComponent {
1751
1837
  i0.ɵɵelementEnd()()();
1752
1838
  } if (rf & 2) {
1753
1839
  i0.ɵɵadvance(3);
1754
- i0.ɵɵtextInterpolate1(" ", ctx.title);
1840
+ i0.ɵɵtextInterpolate1(" ", ctx.title());
1755
1841
  i0.ɵɵadvance();
1756
- i0.ɵɵtextInterpolate1(" ", ctx.message, " ");
1842
+ i0.ɵɵtextInterpolate1(" ", ctx.message(), " ");
1757
1843
  } }, styles: [".mg-message-background[_ngcontent-%COMP%]{background-color:#f5f5f5;width:40%;font-family:Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;padding:17px;border-radius:5px;text-align:center;margin-top:10%;margin-left:auto;margin-right:auto;border:1px solid gray}button[_ngcontent-%COMP%]{background-color:#8cd4f5;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;-webkit-border-radius:4px;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}button.cancel[_ngcontent-%COMP%]{background-color:#c1c1c1}"] });
1758
1844
  }
1759
1845
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicConfirmationBoxComponent, [{
1760
1846
  type: Component,
1761
1847
  args: [{ selector: 'sample-magic-confirmation-box', template: `<div>
1762
1848
  <div class="mg-message-background">
1763
- <h2> {{title}}</h2>
1764
- {{message}}
1849
+ <h2> {{title()}}</h2>
1850
+ {{message()}}
1765
1851
  <br>
1766
1852
  <br>
1767
1853
 
@@ -1878,21 +1964,13 @@ class confirmationBox {
1878
1964
  * Service managing overlay windows
1879
1965
  */
1880
1966
  class OverlayWindowService {
1881
- componentList;
1882
- engineMagicService;
1883
- magicLazyModuleLoader;
1884
- injector;
1885
- compiler;
1886
- overlayContainerMagicProvider;
1887
- confirmationComponentsMagicProvider;
1888
- constructor(componentList, engineMagicService, magicLazyModuleLoader, injector, compiler, overlayContainerMagicProvider, confirmationComponentsMagicProvider) {
1889
- this.componentList = componentList;
1890
- this.engineMagicService = engineMagicService;
1891
- this.magicLazyModuleLoader = magicLazyModuleLoader;
1892
- this.injector = injector;
1893
- this.compiler = compiler;
1894
- this.overlayContainerMagicProvider = overlayContainerMagicProvider;
1895
- this.confirmationComponentsMagicProvider = confirmationComponentsMagicProvider;
1967
+ componentList = inject(ComponentListMagicService);
1968
+ engineMagicService = inject(EngineMagicService);
1969
+ magicLazyModuleLoader = inject(MagicLazyLoaderService);
1970
+ injector = inject(Injector);
1971
+ overlayContainerMagicProvider = inject(OverlayContainerMagicProvider);
1972
+ confirmationComponentsMagicProvider = inject(ConfirmationComponentsMagicProvider);
1973
+ constructor() {
1896
1974
  }
1897
1975
  // The view reference of container of overlay window
1898
1976
  overlayWindowsContainerViewRef;
@@ -1913,8 +1991,7 @@ class OverlayWindowService {
1913
1991
  // extract name of module(XX) from 'MagicXXModule'
1914
1992
  const moduleName = lazyLoadModule.moduleName.slice(Magic.length, -Module.length);
1915
1993
  this.magicLazyModuleLoader.Load(moduleName).then(m => {
1916
- const compiled = this.compiler.compileModuleAndAllComponentsSync(m[lazyLoadModule.moduleName]);
1917
- moduleRef = compiled.ngModuleFactory.create(this.injector);
1994
+ moduleRef = createNgModule(m[lazyLoadModule.moduleName], this.injector);
1918
1995
  this.open(formName, taskId, taskDescription);
1919
1996
  this.finishConfirmation(Styles.MSGBOX_BUTTON_OK, true);
1920
1997
  });
@@ -1995,13 +2072,15 @@ class OverlayWindowService {
1995
2072
  // Create the UI component of modal window
1996
2073
  let viewCRef = this.overlayWindowsContainerViewRef;
1997
2074
  componentRef = viewCRef.createComponent(MagicOverlayContainerWrapper);
1998
- // Set the data to newly created component
1999
- Object.assign(componentRef.instance, magicModalContainerParameters);
2075
+ // Set signal inputs via setInput() direct property assignment would overwrite the signal functions
2076
+ componentRef.setInput('Component', magicModalContainerParameters.Component);
2077
+ componentRef.setInput('Parameters', magicModalContainerParameters.Parameters);
2078
+ componentRef.setInput('OverlayTypeParam', magicModalContainerParameters.OverlayTypeParam);
2000
2079
  this.overlayWindowFocusManager.pushDialog(componentRef.instance.GetRootElement());
2001
2080
  componentRef.instance.DetectChanges();
2002
2081
  return componentRef;
2003
2082
  }
2004
- /** @nocollapse */ static ɵfac = function OverlayWindowService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || OverlayWindowService)(i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(EngineMagicService), i0.ɵɵinject(MagicLazyLoaderService), i0.ɵɵinject(i0.Injector), i0.ɵɵinject(i0.Compiler), i0.ɵɵinject(OverlayContainerMagicProvider), i0.ɵɵinject(ConfirmationComponentsMagicProvider)); };
2083
+ /** @nocollapse */ static ɵfac = function OverlayWindowService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || OverlayWindowService)(); };
2005
2084
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: OverlayWindowService, factory: OverlayWindowService.ɵfac, providedIn: 'root' });
2006
2085
  }
2007
2086
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OverlayWindowService, [{
@@ -2009,7 +2088,7 @@ class OverlayWindowService {
2009
2088
  args: [{
2010
2089
  providedIn: 'root'
2011
2090
  }]
2012
- }], () => [{ type: ComponentListMagicService }, { type: EngineMagicService }, { type: MagicLazyLoaderService }, { type: i0.Injector }, { type: i0.Compiler }, { type: OverlayContainerMagicProvider }, { type: ConfirmationComponentsMagicProvider }], null); })();
2091
+ }], () => [], null); })();
2013
2092
  class OverlayWindowFocusManager {
2014
2093
  rootMagicElement = null;
2015
2094
  openDialogList = new Array(0);
@@ -2134,8 +2213,6 @@ class DialogInfo {
2134
2213
  * Main service to connect the UI with the Magic WebCLient
2135
2214
  */
2136
2215
  class TaskMagicService {
2137
- magic;
2138
- overlayWindowService;
2139
2216
  /**
2140
2217
  * Service to provide table-related functionalities
2141
2218
  */
@@ -2207,13 +2284,9 @@ class TaskMagicService {
2207
2284
  * @ignore
2208
2285
  */
2209
2286
  oldPageSize = 0;
2210
- /**
2211
- *
2212
- * @param magic
2213
- */
2214
- constructor(magic, overlayWindowService) {
2215
- this.magic = magic;
2216
- this.overlayWindowService = overlayWindowService;
2287
+ magic = inject(EngineMagicService);
2288
+ overlayWindowService = inject(OverlayWindowService);
2289
+ constructor() {
2217
2290
  this.Records.setGuiTopIndex(0);
2218
2291
  this.mgInputDateFormat = null;
2219
2292
  }
@@ -2996,12 +3069,13 @@ class TaskMagicService {
2996
3069
  }
2997
3070
  /**
2998
3071
  * Handle the Radio button "change" event
2999
- * @param event The event received from the UI
3000
3072
  * @param idx Id of the control raising the event
3073
+ * @param rowId Id of the row containing the control (defaults to '0' for non-table controls)
3001
3074
  */
3002
- mgOnRadioSelectionChanged(idx) {
3003
- let result = this.getFormControl('0', idx);
3004
- let guiEvent = getGuiEventObj('selectionchanged', idx, 0);
3075
+ mgOnRadioSelectionChanged(idx, rowId = '0') {
3076
+ // Fetch the Form Control for the specific table row (or row '0' for non-table child controls)
3077
+ let result = this.getFormControl(rowId, idx);
3078
+ let guiEvent = getGuiEventObj('selectionchanged', idx, +rowId);
3005
3079
  if (typeof result.value !== 'number')
3006
3080
  guiEvent.Value = result.value.index;
3007
3081
  else
@@ -3076,29 +3150,22 @@ class TaskMagicService {
3076
3150
  }
3077
3151
  }
3078
3152
  }
3079
- /** @nocollapse */ static ɵfac = function TaskMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TaskMagicService)(i0.ɵɵinject(EngineMagicService), i0.ɵɵinject(OverlayWindowService)); };
3153
+ /** @nocollapse */ static ɵfac = function TaskMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TaskMagicService)(); };
3080
3154
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: TaskMagicService, factory: TaskMagicService.ɵfac });
3081
3155
  }
3082
3156
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TaskMagicService, [{
3083
3157
  type: Injectable
3084
- }], () => [{ type: EngineMagicService }, { type: OverlayWindowService }], null); })();
3158
+ }], () => [], null); })();
3085
3159
 
3086
3160
  /**
3087
3161
  * Implements various table-related functionalities
3088
3162
  */
3089
3163
  class TableMagicService {
3090
- componentList;
3091
- task;
3092
3164
  selectedItem;
3093
3165
  chunkSize;
3094
- /**
3095
- *
3096
- * @param componentList Component-mapping service
3097
- * @param task Magic task service
3098
- */
3099
- constructor(componentList, task) {
3100
- this.componentList = componentList;
3101
- this.task = task;
3166
+ componentList = inject(ComponentListMagicService);
3167
+ task = inject(TaskMagicService);
3168
+ constructor() {
3102
3169
  }
3103
3170
  shouldOpenFieldTextEditor = true;
3104
3171
  /**
@@ -3208,24 +3275,19 @@ class TableMagicService {
3208
3275
  topIndex--;
3209
3276
  return topIndex;
3210
3277
  }
3211
- /** @nocollapse */ static ɵfac = function TableMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TableMagicService)(i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(TaskMagicService)); };
3278
+ /** @nocollapse */ static ɵfac = function TableMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TableMagicService)(); };
3212
3279
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: TableMagicService, factory: TableMagicService.ɵfac });
3213
3280
  }
3214
3281
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TableMagicService, [{
3215
3282
  type: Injectable
3216
- }], () => [{ type: ComponentListMagicService }, { type: TaskMagicService }], null); })();
3283
+ }], () => [], null); })();
3217
3284
 
3218
3285
  /**
3219
3286
  * Enables changing the browser title using Magic expression (SetTitle)
3220
3287
  */
3221
3288
  class TitleMagicService {
3222
- titleService;
3223
- /**
3224
- *
3225
- * @param titleService Angular's title-changing class
3226
- */
3227
- constructor(titleService) {
3228
- this.titleService = titleService;
3289
+ titleService = inject(Title);
3290
+ constructor() {
3229
3291
  }
3230
3292
  /**
3231
3293
  * Set the new title of the window
@@ -3234,12 +3296,12 @@ class TitleMagicService {
3234
3296
  setTitle(newTitle) {
3235
3297
  this.titleService.setTitle(newTitle);
3236
3298
  }
3237
- /** @nocollapse */ static ɵfac = function TitleMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TitleMagicService)(i0.ɵɵinject(i1$1.Title)); };
3299
+ /** @nocollapse */ static ɵfac = function TitleMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TitleMagicService)(); };
3238
3300
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: TitleMagicService, factory: TitleMagicService.ɵfac });
3239
3301
  }
3240
3302
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TitleMagicService, [{
3241
3303
  type: Injectable
3242
- }], () => [{ type: i1$1.Title }], null); })();
3304
+ }], () => [], null); })();
3243
3305
 
3244
3306
  let COLOR_FILE_NAME = new InjectionToken('colorFile', {
3245
3307
  providedIn: 'root',
@@ -3252,7 +3314,6 @@ const SYSTEM_BG = 4;
3252
3314
  const SYSTEM_FG_AND_SYSTEM_BG = 6;
3253
3315
  const TRANSPERENT_BG = 1;
3254
3316
  class MagicColorService {
3255
- http;
3256
3317
  colorFileName = 'clr_rnt.eng';
3257
3318
  getColorFilePath() {
3258
3319
  return 'assets/' + this.colorFileName;
@@ -3260,10 +3321,11 @@ class MagicColorService {
3260
3321
  colorsData;
3261
3322
  fileNotFound = false;
3262
3323
  // public static FILE_NAME;
3263
- constructor(http, colorFile1 = 'clr_rnt.eng') {
3264
- this.http = http;
3265
- if (colorFile1)
3266
- this.colorFileName = colorFile1;
3324
+ http = inject(HttpClient);
3325
+ colorFile1 = inject(COLOR_FILE_NAME);
3326
+ constructor() {
3327
+ if (this.colorFile1)
3328
+ this.colorFileName = this.colorFile1;
3267
3329
  else
3268
3330
  this.colorFileName = 'clr_rnt.eng';
3269
3331
  }
@@ -3335,7 +3397,7 @@ class MagicColorService {
3335
3397
  }
3336
3398
  return '';
3337
3399
  }
3338
- /** @nocollapse */ static ɵfac = function MagicColorService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicColorService)(i0.ɵɵinject(i1$2.HttpClient), i0.ɵɵinject(COLOR_FILE_NAME)); };
3400
+ /** @nocollapse */ static ɵfac = function MagicColorService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicColorService)(); };
3339
3401
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: MagicColorService, factory: MagicColorService.ɵfac, providedIn: 'root' });
3340
3402
  }
3341
3403
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicColorService, [{
@@ -3343,26 +3405,21 @@ class MagicColorService {
3343
3405
  args: [{
3344
3406
  providedIn: 'root'
3345
3407
  }]
3346
- }], () => [{ type: i1$2.HttpClient }, { type: undefined, decorators: [{
3347
- type: Inject,
3348
- args: [COLOR_FILE_NAME]
3349
- }] }], null); })();
3408
+ }], () => [], null); })();
3350
3409
 
3351
3410
  /**
3352
3411
  * Provides the UI with values calculated by the Magic WebClient
3353
3412
  */
3354
3413
  class AccessorMagicService {
3355
- task;
3356
- magicColor;
3357
3414
  Logger = null;
3358
3415
  hhmm = maskitoTimeOptionsGenerator({ mode: 'HH:MM' });
3359
3416
  hhmmss = maskitoTimeOptionsGenerator({ mode: 'HH:MM:SS' });
3417
+ task = inject(TaskMagicService);
3418
+ magicColor = inject(MagicColorService);
3360
3419
  /**
3361
3420
  * @ignore
3362
3421
  */
3363
- constructor(task, magicColor) {
3364
- this.task = task;
3365
- this.magicColor = magicColor;
3422
+ constructor() {
3366
3423
  this.Logger = Logger.Instance;
3367
3424
  }
3368
3425
  UploadFileToServer(fileContent, serverFileName) {
@@ -3975,49 +4032,42 @@ class AccessorMagicService {
3975
4032
  getColor(colorNumber, colorType) {
3976
4033
  return this.magicColor.getColor(colorNumber, colorType);
3977
4034
  }
3978
- /** @nocollapse */ static ɵfac = function AccessorMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AccessorMagicService)(i0.ɵɵinject(TaskMagicService), i0.ɵɵinject(MagicColorService)); };
4035
+ /** @nocollapse */ static ɵfac = function AccessorMagicService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AccessorMagicService)(); };
3979
4036
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: AccessorMagicService, factory: AccessorMagicService.ɵfac });
3980
4037
  }
3981
4038
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AccessorMagicService, [{
3982
4039
  type: Injectable
3983
- }], () => [{ type: TaskMagicService }, { type: MagicColorService }], null); })();
4040
+ }], () => [], null); })();
3984
4041
 
3985
4042
  /**
3986
4043
  * Central place for adding the Magic services
3987
4044
  */
3988
4045
  class MagicServices {
3989
- task;
3990
- subformService;
3991
- tableService;
3992
- titleService;
3993
- mgAccessorService;
4046
+ task = inject(TaskMagicService);
4047
+ subformService = inject(SubformMagicService);
4048
+ tableService = inject(TableMagicService);
4049
+ titleService = inject(TitleMagicService);
4050
+ mgAccessorService = inject(AccessorMagicService);
3994
4051
  /**
3995
4052
  * @ignore
3996
4053
  */
3997
- constructor(task, subformService, tableService, titleService, mgAccessorService) {
3998
- this.task = task;
3999
- this.subformService = subformService;
4000
- this.tableService = tableService;
4001
- this.titleService = titleService;
4002
- this.mgAccessorService = mgAccessorService;
4003
- task.tableService = tableService;
4004
- task.mgSubformService = subformService;
4005
- task.mgTitleService = titleService;
4006
- task.mgAccessorService = mgAccessorService;
4007
- }
4008
- /** @nocollapse */ static ɵfac = function MagicServices_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicServices)(i0.ɵɵinject(TaskMagicService), i0.ɵɵinject(SubformMagicService), i0.ɵɵinject(TableMagicService), i0.ɵɵinject(TitleMagicService), i0.ɵɵinject(AccessorMagicService)); };
4054
+ constructor() {
4055
+ this.task.tableService = this.tableService;
4056
+ this.task.mgSubformService = this.subformService;
4057
+ this.task.mgTitleService = this.titleService;
4058
+ this.task.mgAccessorService = this.mgAccessorService;
4059
+ }
4060
+ /** @nocollapse */ static ɵfac = function MagicServices_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicServices)(); };
4009
4061
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: MagicServices, factory: MagicServices.ɵfac });
4010
4062
  }
4011
4063
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicServices, [{
4012
4064
  type: Injectable
4013
- }], () => [{ type: TaskMagicService }, { type: SubformMagicService }, { type: TableMagicService }, { type: TitleMagicService }, { type: AccessorMagicService }], null); })();
4065
+ }], () => [], null); })();
4014
4066
 
4015
4067
  /**
4016
4068
  * Base component representing a Magic task
4017
4069
  */
4018
4070
  class TaskBaseMagicComponent {
4019
- ref;
4020
- magicServices;
4021
4071
  /**
4022
4072
  * Id of task, used for initializing the task service
4023
4073
  */
@@ -4030,15 +4080,24 @@ class TaskBaseMagicComponent {
4030
4080
  * @ignore
4031
4081
  */
4032
4082
  magicProperties = MagicProperties;
4083
+ /**
4084
+ * @ignore
4085
+ * Injected as fields rather than constructor parameters, so that the constructor
4086
+ * signature of this base class - which every generated component inherits - is unchanged.
4087
+ */
4088
+ magicChangeDetection = inject(MagicChangeDetectionService);
4089
+ /**
4090
+ * @ignore
4091
+ */
4092
+ destroyRef = inject(DestroyRef);
4093
+ ref = inject(ChangeDetectorRef);
4094
+ magicServices = inject(MagicServices);
4033
4095
  /**
4034
4096
  *
4035
4097
  * @param ref changes-detector object
4036
4098
  * @param magicServices Access point for all Magic services
4037
4099
  */
4038
- constructor(ref, magicServices) {
4039
- this.ref = ref;
4040
- this.magicServices = magicServices;
4041
- }
4100
+ constructor() { }
4042
4101
  /**
4043
4102
  * Returns the Magic task service
4044
4103
  * @returns
@@ -4088,6 +4147,14 @@ class TaskBaseMagicComponent {
4088
4147
  this.task.detectChanges.pipe().subscribe(c => {
4089
4148
  this.ref.detectChanges();
4090
4149
  });
4150
+ // Running zoneless, nothing refreshes this view unless Angular is told to.
4151
+ // MagicChangeDetectionService is application-scoped and never completes, so this
4152
+ // subscription must be tied to the component's lifetime.
4153
+ this.magicChangeDetection.changed
4154
+ .pipe(takeUntilDestroyed(this.destroyRef))
4155
+ .subscribe(() => {
4156
+ this.ref.markForCheck();
4157
+ });
4091
4158
  this.task.initTask(this.taskIdParam, this.taskDescription);
4092
4159
  this.createFormControlsAccessor(this.screenFormGroup);
4093
4160
  this.setInputDateFormat();
@@ -4161,8 +4228,8 @@ class TaskBaseMagicComponent {
4161
4228
  ngOnDestroy() {
4162
4229
  this.task.dispose();
4163
4230
  }
4164
- /** @nocollapse */ static ɵfac = function TaskBaseMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TaskBaseMagicComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(MagicServices)); };
4165
- /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TaskBaseMagicComponent, selectors: [["task-magic"]], inputs: { taskIdParam: "taskIdParam", taskDescription: "taskDescription" }, standalone: false, features: [i0.ɵɵProvidersFeature([TaskMagicService, SubformMagicService, TableMagicService])], decls: 0, vars: 0, template: function TaskBaseMagicComponent_Template(rf, ctx) { }, encapsulation: 2 });
4231
+ /** @nocollapse */ static ɵfac = function TaskBaseMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TaskBaseMagicComponent)(); };
4232
+ /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TaskBaseMagicComponent, selectors: [["task-magic"]], inputs: { taskIdParam: "taskIdParam", taskDescription: "taskDescription" }, standalone: false, features: [i0.ɵɵProvidersFeature([TaskMagicService, SubformMagicService, TableMagicService])], decls: 0, vars: 0, template: function TaskBaseMagicComponent_Template(rf, ctx) { }, encapsulation: 2, changeDetection: 1 });
4166
4233
  }
4167
4234
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TaskBaseMagicComponent, [{
4168
4235
  type: Component,
@@ -4170,21 +4237,20 @@ class TaskBaseMagicComponent {
4170
4237
  selector: 'task-magic',
4171
4238
  providers: [TaskMagicService, SubformMagicService, TableMagicService],
4172
4239
  template: '',
4240
+ changeDetection: ChangeDetectionStrategy.Eager,
4173
4241
  standalone: false
4174
4242
  }]
4175
- }], () => [{ type: i0.ChangeDetectorRef }, { type: MagicServices }], { taskIdParam: [{
4243
+ }], () => [], { taskIdParam: [{
4176
4244
  type: Input
4177
4245
  }], taskDescription: [{
4178
4246
  type: Input
4179
4247
  }] }); })();
4180
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TaskBaseMagicComponent, { className: "TaskBaseMagicComponent", filePath: "src/ui/task-base.magic.component.ts", lineNumber: 21 }); })();
4248
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(TaskBaseMagicComponent, { className: "TaskBaseMagicComponent", filePath: "src/ui/task-base.magic.component.ts", lineNumber: 24 }); })();
4181
4249
 
4182
4250
  /**
4183
4251
  * @ignore
4184
4252
  */
4185
4253
  class RowMagicDirective {
4186
- _task;
4187
- element;
4188
4254
  rowId;
4189
4255
  /**
4190
4256
  * The HTML element connected to this directive
@@ -4194,9 +4260,9 @@ class RowMagicDirective {
4194
4260
  * @ignore
4195
4261
  */
4196
4262
  rowChangedSubscriber = null;
4197
- constructor(_task, element) {
4198
- this._task = _task;
4199
- this.element = element;
4263
+ _task = inject(TaskMagicService);
4264
+ element = inject(ElementRef);
4265
+ constructor() {
4200
4266
  this.htmlElement = this.element.nativeElement;
4201
4267
  }
4202
4268
  /**
@@ -4237,7 +4303,7 @@ class RowMagicDirective {
4237
4303
  event.cancelBubble = true;
4238
4304
  }
4239
4305
  }
4240
- /** @nocollapse */ static ɵfac = function RowMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RowMagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef)); };
4306
+ /** @nocollapse */ static ɵfac = function RowMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RowMagicDirective)(); };
4241
4307
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: RowMagicDirective, selectors: [["", "magicRow", ""]], hostBindings: function RowMagicDirective_HostBindings(rf, ctx) { if (rf & 1) {
4242
4308
  i0.ɵɵlistener("click", function RowMagicDirective_click_HostBindingHandler($event) { return ctx.onClick($event); });
4243
4309
  } }, inputs: { rowId: [0, "magicRow", "rowId"] }, standalone: false });
@@ -4248,7 +4314,7 @@ class RowMagicDirective {
4248
4314
  selector: '[magicRow]',
4249
4315
  standalone: false
4250
4316
  }]
4251
- }], () => [{ type: TaskMagicService }, { type: i0.ElementRef }], { rowId: [{
4317
+ }], () => [], { rowId: [{
4252
4318
  type: Input,
4253
4319
  args: ['magicRow']
4254
4320
  }], onClick: [{
@@ -4260,12 +4326,6 @@ class RowMagicDirective {
4260
4326
  * Connects HTML elements to the Magic Web Client engine
4261
4327
  */
4262
4328
  class MagicDirective {
4263
- _task;
4264
- element;
4265
- renderer;
4266
- vcRef;
4267
- platform;
4268
- magicRow;
4269
4329
  set magic(val) {
4270
4330
  this.id = val;
4271
4331
  this.selector = "magic";
@@ -4329,21 +4389,15 @@ class MagicDirective {
4329
4389
  * @param platform
4330
4390
  * @param magicRow
4331
4391
  */
4332
- constructor(_task, element, renderer, vcRef, platform, magicRow) {
4333
- this._task = _task;
4334
- this.element = element;
4335
- this.renderer = renderer;
4336
- this.vcRef = vcRef;
4337
- this.platform = platform;
4338
- this.magicRow = magicRow;
4392
+ constructor() {
4339
4393
  this.htmlElement = this.element.nativeElement;
4340
4394
  //let c = (<any>this.vcRef)._view;
4341
4395
  //while (!(c instanceof TaskBaseMagicComponent)) {
4342
4396
  // c = c.component;
4343
4397
  //}
4344
4398
  //this.component = c;
4345
- if (!(typeof magicRow === "undefined" || magicRow === null))
4346
- this.rowId = magicRow.rowId;
4399
+ if (!(typeof this.magicRow === "undefined" || this.magicRow === null))
4400
+ this.rowId = this.magicRow.rowId;
4347
4401
  }
4348
4402
  /**
4349
4403
  * Get the task service
@@ -4352,6 +4406,12 @@ class MagicDirective {
4352
4406
  get task() {
4353
4407
  return this._task;
4354
4408
  }
4409
+ _task = inject(TaskMagicService);
4410
+ element = inject(ElementRef);
4411
+ renderer = inject(Renderer2);
4412
+ vcRef = inject(ViewContainerRef);
4413
+ platform = inject(Platform);
4414
+ magicRow = inject(RowMagicDirective, { optional: true });
4355
4415
  /**
4356
4416
  * Register to the events this element may need to handle
4357
4417
  */
@@ -4554,7 +4614,7 @@ class MagicDirective {
4554
4614
  ngOnDestroy() {
4555
4615
  this.subscribeRefreshDom.unsubscribe();
4556
4616
  }
4557
- /** @nocollapse */ static ɵfac = function MagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i2$2.Platform), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
4617
+ /** @nocollapse */ static ɵfac = function MagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicDirective)(); };
4558
4618
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: MagicDirective, selectors: [["", "magic", ""]], inputs: { magic: "magic", eventsOnly: "eventsOnly", pollTime: "pollTime", rowId: "rowId" }, standalone: false });
4559
4619
  }
4560
4620
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicDirective, [{
@@ -4563,9 +4623,7 @@ class MagicDirective {
4563
4623
  selector: "[magic]",
4564
4624
  standalone: false
4565
4625
  }]
4566
- }], () => [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i2$2.Platform }, { type: RowMagicDirective, decorators: [{
4567
- type: Optional
4568
- }] }], { magic: [{
4626
+ }], () => [], { magic: [{
4569
4627
  type: Input,
4570
4628
  args: ["magic"]
4571
4629
  }], eventsOnly: [{
@@ -4583,9 +4641,15 @@ class MagicDirective {
4583
4641
  class NoControlMagicDirective extends MagicDirective {
4584
4642
  set magic(val) { this.id = val; this.selector = 'magicnc'; }
4585
4643
  ;
4586
- constructor(_task, element, renderer, vcRef, platform, magicRow) {
4587
- super(_task, element, renderer, vcRef, platform, magicRow);
4644
+ constructor() {
4645
+ super();
4588
4646
  }
4647
+ _task = inject(TaskMagicService);
4648
+ element = inject(ElementRef);
4649
+ renderer = inject(Renderer2);
4650
+ vcRef = inject(ViewContainerRef);
4651
+ platform = inject(Platform);
4652
+ magicRow = inject(RowMagicDirective, { optional: true });
4589
4653
  regEvents() {
4590
4654
  super.regEvents();
4591
4655
  if (this.htmlElement instanceof HTMLSelectElement) {
@@ -4752,7 +4816,7 @@ class NoControlMagicDirective extends MagicDirective {
4752
4816
  break;
4753
4817
  }
4754
4818
  }
4755
- /** @nocollapse */ static ɵfac = function NoControlMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NoControlMagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i2$2.Platform), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
4819
+ /** @nocollapse */ static ɵfac = function NoControlMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NoControlMagicDirective)(); };
4756
4820
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: NoControlMagicDirective, selectors: [["", "magicnc", ""]], inputs: { magic: [0, "magicnc", "magic"] }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature] });
4757
4821
  }
4758
4822
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NoControlMagicDirective, [{
@@ -4761,9 +4825,7 @@ class NoControlMagicDirective extends MagicDirective {
4761
4825
  selector: '[magicnc]',
4762
4826
  standalone: false
4763
4827
  }]
4764
- }], () => [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i2$2.Platform }, { type: RowMagicDirective, decorators: [{
4765
- type: Optional
4766
- }] }], { magic: [{
4828
+ }], () => [], { magic: [{
4767
4829
  type: Input,
4768
4830
  args: ['magicnc']
4769
4831
  }] }); })();
@@ -4778,10 +4840,9 @@ class Constants {
4778
4840
  * @ignore
4779
4841
  */
4780
4842
  class DateMagicPipe extends DatePipe {
4781
- _task;
4782
- constructor(_task) {
4843
+ _task = inject(TaskMagicService);
4844
+ constructor() {
4783
4845
  super('en-US');
4784
- this._task = _task;
4785
4846
  }
4786
4847
  transform(value, controlId) {
4787
4848
  let mask = this._task.GetControlPictureMask(controlId).getMask();
@@ -4802,7 +4863,7 @@ class DateMagicPipe extends DatePipe {
4802
4863
  value = "";
4803
4864
  return value;
4804
4865
  }
4805
- /** @nocollapse */ static ɵfac = function DateMagicPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DateMagicPipe)(i0.ɵɵdirectiveInject(TaskMagicService, 16)); };
4866
+ /** @nocollapse */ static ɵfac = function DateMagicPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DateMagicPipe)(); };
4806
4867
  /** @nocollapse */ static ɵpipe = /** @pureOrBreakMyCode */ i0.ɵɵdefinePipe({ name: "magicDate", type: DateMagicPipe, pure: true, standalone: false });
4807
4868
  }
4808
4869
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DateMagicPipe, [{
@@ -4811,7 +4872,7 @@ class DateMagicPipe extends DatePipe {
4811
4872
  name: 'magicDate',
4812
4873
  standalone: false
4813
4874
  }]
4814
- }], () => [{ type: TaskMagicService }], null); })();
4875
+ }], () => [], null); })();
4815
4876
  class MgDateFormatter {
4816
4877
  ConvertMgDateFormatToAngular(mgDateMask) {
4817
4878
  let formatStr = new StringBuilder();
@@ -4879,16 +4940,13 @@ class MgDateFormatter {
4879
4940
  * Perform Magic validation on input controls which hold alphanumeric strings
4880
4941
  */
4881
4942
  class MgformatMagicDirective {
4882
- magicDir;
4883
- _task;
4884
4943
  datePasteFlag = false;
4944
+ magicDir = inject(MagicDirective);
4945
+ _task = inject(TaskMagicService);
4885
4946
  /**
4886
4947
  * @ignore
4887
4948
  */
4888
- constructor(magicDir, _task) {
4889
- this.magicDir = magicDir;
4890
- this._task = _task;
4891
- }
4949
+ constructor() { }
4892
4950
  ngAfterViewInit() {
4893
4951
  let control = this._task.getFormControl(this.magicDir.rowId, this.magicDir.id);
4894
4952
  if (control != null && this._task.mgInputDateFormat == null) {
@@ -5482,7 +5540,7 @@ class MgformatMagicDirective {
5482
5540
  return true;
5483
5541
  return false;
5484
5542
  }
5485
- /** @nocollapse */ static ɵfac = function MgformatMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MgformatMagicDirective)(i0.ɵɵdirectiveInject(MagicDirective), i0.ɵɵdirectiveInject(TaskMagicService)); };
5543
+ /** @nocollapse */ static ɵfac = function MgformatMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MgformatMagicDirective)(); };
5486
5544
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: MgformatMagicDirective, selectors: [["", "mgFormat", ""]], hostBindings: function MgformatMagicDirective_HostBindings(rf, ctx) { if (rf & 1) {
5487
5545
  i0.ɵɵlistener("focus", function MgformatMagicDirective_focus_HostBindingHandler($event) { return ctx.onFocusEvent($event); })("paste", function MgformatMagicDirective_paste_HostBindingHandler($event) { return ctx.onPaste($event); })("input", function MgformatMagicDirective_input_HostBindingHandler($event) { return ctx.onInputEvent($event); })("change", function MgformatMagicDirective_change_HostBindingHandler($event) { return ctx.onChangeEvent($event); })("blur", function MgformatMagicDirective_blur_HostBindingHandler($event) { return ctx.onBlurEvent($event); });
5488
5546
  } }, standalone: false });
@@ -5493,7 +5551,7 @@ class MgformatMagicDirective {
5493
5551
  selector: '[mgFormat]',
5494
5552
  standalone: false
5495
5553
  }]
5496
- }], () => [{ type: MagicDirective }, { type: TaskMagicService }], { onFocusEvent: [{
5554
+ }], () => [], { onFocusEvent: [{
5497
5555
  type: HostListener,
5498
5556
  args: ['focus', ['$event']]
5499
5557
  }], onPaste: [{
@@ -5514,10 +5572,9 @@ class MgformatMagicDirective {
5514
5572
  * @ignore
5515
5573
  */
5516
5574
  class TimeMagicPipe extends DatePipe {
5517
- _task;
5518
- constructor(_task) {
5575
+ _task = inject(TaskMagicService);
5576
+ constructor() {
5519
5577
  super('en-US');
5520
- this._task = _task;
5521
5578
  }
5522
5579
  transform(value, controlId) {
5523
5580
  let mask = this._task.GetControlPictureMask(controlId).getMask();
@@ -5548,7 +5605,7 @@ class TimeMagicPipe extends DatePipe {
5548
5605
  }
5549
5606
  return value;
5550
5607
  }
5551
- /** @nocollapse */ static ɵfac = function TimeMagicPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TimeMagicPipe)(i0.ɵɵdirectiveInject(TaskMagicService, 16)); };
5608
+ /** @nocollapse */ static ɵfac = function TimeMagicPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || TimeMagicPipe)(); };
5552
5609
  /** @nocollapse */ static ɵpipe = /** @pureOrBreakMyCode */ i0.ɵɵdefinePipe({ name: "magicTime", type: TimeMagicPipe, pure: true, standalone: false });
5553
5610
  }
5554
5611
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimeMagicPipe, [{
@@ -5557,22 +5614,20 @@ class TimeMagicPipe extends DatePipe {
5557
5614
  name: 'magicTime',
5558
5615
  standalone: false
5559
5616
  }]
5560
- }], () => [{ type: TaskMagicService }], null); })();
5617
+ }], () => [], null); })();
5561
5618
 
5562
5619
  /**
5563
5620
  * Validates the field range.
5564
5621
  */
5565
5622
  class RangeValidatorMagicDirective {
5566
- _task;
5567
- vcRef;
5623
+ _task = inject(TaskMagicService);
5624
+ vcRef = inject(ViewContainerRef);
5568
5625
  /**
5569
5626
  *
5570
5627
  * @param _task The task service
5571
5628
  * @param vcRef
5572
5629
  */
5573
- constructor(_task, vcRef) {
5574
- this._task = _task;
5575
- this.vcRef = vcRef;
5630
+ constructor() {
5576
5631
  }
5577
5632
  /**
5578
5633
  * Validation method
@@ -5607,7 +5662,7 @@ class RangeValidatorMagicDirective {
5607
5662
  const formGroup = c.parent.controls;
5608
5663
  return Object.keys(formGroup).find(name => c === formGroup[name]) || null;
5609
5664
  }
5610
- /** @nocollapse */ static ɵfac = function RangeValidatorMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RangeValidatorMagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
5665
+ /** @nocollapse */ static ɵfac = function RangeValidatorMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || RangeValidatorMagicDirective)(); };
5611
5666
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: RangeValidatorMagicDirective, selectors: [["", "rangevalidator", ""]], standalone: false, features: [i0.ɵɵProvidersFeature([
5612
5667
  {
5613
5668
  provide: NG_VALIDATORS,
@@ -5629,7 +5684,7 @@ class RangeValidatorMagicDirective {
5629
5684
  ],
5630
5685
  standalone: false
5631
5686
  }]
5632
- }], () => [{ type: TaskMagicService }, { type: i0.ViewContainerRef }], null); })();
5687
+ }], () => [], null); })();
5633
5688
 
5634
5689
  function SubformMagicComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
5635
5690
  i0.ɵɵelement(0, "ndc-dynamic", 0);
@@ -5641,8 +5696,6 @@ function SubformMagicComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
5641
5696
  * Represents a Magic subform
5642
5697
  */
5643
5698
  class SubformMagicComponent {
5644
- vcRef;
5645
- mgSub;
5646
5699
  /**
5647
5700
  * @ignore
5648
5701
  */
@@ -5659,12 +5712,12 @@ class SubformMagicComponent {
5659
5712
  /**
5660
5713
  * @ignore
5661
5714
  */
5662
- constructor(vcRef, mgSub) {
5663
- this.vcRef = vcRef;
5664
- this.mgSub = mgSub;
5715
+ constructor() {
5665
5716
  // For angular 13 - find the component from _hostLView
5666
5717
  this.component = (this.vcRef._hostLView).find(v => !isNullOrUndefined(v));
5667
5718
  }
5719
+ vcRef = inject(ViewContainerRef);
5720
+ mgSub = inject(SubformMagicService);
5668
5721
  /**
5669
5722
  * @ignore
5670
5723
  */
@@ -5677,32 +5730,33 @@ class SubformMagicComponent {
5677
5730
  get Parameters() {
5678
5731
  return this.mgSub.mgGetParameters(this.id);
5679
5732
  }
5680
- /** @nocollapse */ static ɵfac = function SubformMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SubformMagicComponent)(i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(SubformMagicService)); };
5733
+ /** @nocollapse */ static ɵfac = function SubformMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SubformMagicComponent)(); };
5681
5734
  /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: SubformMagicComponent, selectors: [["magic-subform"]], inputs: { magic: "magic" }, standalone: false, decls: 1, vars: 1, consts: [[3, "ndcDynamicComponent", "ndcDynamicInputs"]], template: function SubformMagicComponent_Template(rf, ctx) { if (rf & 1) {
5682
5735
  i0.ɵɵconditionalCreate(0, SubformMagicComponent_Conditional_0_Template, 1, 2, "ndc-dynamic", 0);
5683
5736
  } if (rf & 2) {
5684
5737
  i0.ɵɵconditional(ctx.Component ? 0 : -1);
5685
- } }, dependencies: [i2$3.DynamicIoDirective, i2$3.DynamicComponent], encapsulation: 2 });
5738
+ } }, dependencies: [i1$1.DynamicIoDirective, i1$1.DynamicComponent], encapsulation: 2, changeDetection: 1 });
5686
5739
  }
5687
5740
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SubformMagicComponent, [{
5688
5741
  type: Component,
5689
5742
  args: [{
5690
5743
  selector: 'magic-subform',
5691
- template: `
5692
- @if (Component) {
5693
- <ndc-dynamic
5694
- [ndcDynamicComponent]="Component"
5695
- [ndcDynamicInputs]="Parameters">
5696
- </ndc-dynamic>
5697
- }
5744
+ template: `
5745
+ @if (Component) {
5746
+ <ndc-dynamic
5747
+ [ndcDynamicComponent]="Component"
5748
+ [ndcDynamicInputs]="Parameters">
5749
+ </ndc-dynamic>
5750
+ }
5698
5751
  `,
5752
+ changeDetection: ChangeDetectionStrategy.Eager,
5699
5753
  standalone: false
5700
5754
  }]
5701
- }], () => [{ type: i0.ViewContainerRef }, { type: SubformMagicService }], { magic: [{
5755
+ }], () => [], { magic: [{
5702
5756
  type: Input,
5703
5757
  args: ['magic']
5704
5758
  }] }); })();
5705
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SubformMagicComponent, { className: "SubformMagicComponent", filePath: "src/ui/subform.magic.component.ts", lineNumber: 23 }); })();
5759
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(SubformMagicComponent, { className: "SubformMagicComponent", filePath: "src/ui/subform.magic.component.ts", lineNumber: 24 }); })();
5706
5760
 
5707
5761
  const _c0$1 = ["customContent"];
5708
5762
  const _c1 = ["*"];
@@ -5730,9 +5784,6 @@ function ErrorMagicComponent_Conditional_0_Template(rf, ctx) { if (rf & 1) {
5730
5784
  * Represents a Magic subform
5731
5785
  */
5732
5786
  class ErrorMagicComponent {
5733
- _task;
5734
- mgService;
5735
- changeDetectorRef;
5736
5787
  /**
5737
5788
  * @ignore
5738
5789
  */
@@ -5751,19 +5802,19 @@ class ErrorMagicComponent {
5751
5802
  ;
5752
5803
  // if true - display standard magic error message, if false - customer has provides his own content and we'll use it
5753
5804
  defaultDisplay = true;
5754
- set CustomContent(innerComponent) {
5755
- this.defaultDisplay = innerComponent == undefined || this.isEmpty(innerComponent.nativeElement);
5756
- this.changeDetectorRef.detectChanges();
5757
- }
5758
- ;
5805
+ customContentRef = viewChild('customContent', /* @ts-ignore */
5806
+ ...(ngDevMode ? [{ debugName: "customContentRef" }] : /* istanbul ignore next */ []));
5759
5807
  /**
5760
5808
  * @ignore
5761
5809
  */
5762
- constructor(_task, mgService, changeDetectorRef) {
5763
- this._task = _task;
5764
- this.mgService = mgService;
5765
- this.changeDetectorRef = changeDetectorRef;
5810
+ constructor() {
5766
5811
  this.rowId = "0";
5812
+ // Reactively update defaultDisplay whenever customContent changes in the DOM
5813
+ effect(() => {
5814
+ const innerComponent = this.customContentRef();
5815
+ this.defaultDisplay = innerComponent == undefined || this.isEmpty(innerComponent.nativeElement);
5816
+ this.changeDetectorRef.detectChanges();
5817
+ });
5767
5818
  }
5768
5819
  /**
5769
5820
  * returns true if the html element has no children
@@ -5802,73 +5853,68 @@ class ErrorMagicComponent {
5802
5853
  }
5803
5854
  return false;
5804
5855
  }
5805
- /** @nocollapse */ static ɵfac = function ErrorMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ErrorMagicComponent)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(AccessorMagicService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); };
5856
+ _task = inject(TaskMagicService);
5857
+ mgService = inject(AccessorMagicService);
5858
+ changeDetectorRef = inject(ChangeDetectorRef);
5859
+ /** @nocollapse */ static ɵfac = function ErrorMagicComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ErrorMagicComponent)(); };
5806
5860
  /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: ErrorMagicComponent, selectors: [["mgError"]], viewQuery: function ErrorMagicComponent_Query(rf, ctx) { if (rf & 1) {
5807
- i0.ɵɵviewQuery(_c0$1, 5);
5861
+ i0.ɵɵviewQuerySignal(ctx.customContentRef, _c0$1, 5);
5808
5862
  } if (rf & 2) {
5809
- let _t;
5810
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.CustomContent = _t.first);
5863
+ i0.ɵɵqueryAdvance();
5811
5864
  } }, inputs: { magic: "magic", rowId1: [0, "rowId", "rowId1"] }, standalone: false, ngContentSelectors: _c1, decls: 1, vars: 1, consts: [["customContent", ""]], template: function ErrorMagicComponent_Template(rf, ctx) { if (rf & 1) {
5812
5865
  i0.ɵɵprojectionDef();
5813
5866
  i0.ɵɵconditionalCreate(0, ErrorMagicComponent_Conditional_0_Template, 5, 1, "div");
5814
5867
  } if (rf & 2) {
5815
5868
  i0.ɵɵconditional(ctx.HasErrors(ctx.id) ? 0 : -1);
5816
- } }, encapsulation: 2 });
5869
+ } }, encapsulation: 2, changeDetection: 1 });
5817
5870
  }
5818
5871
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ErrorMagicComponent, [{
5819
5872
  type: Component,
5820
5873
  args: [{
5821
5874
  selector: 'mgError',
5822
- template: `@if (HasErrors(id)) {
5823
- <div>
5824
- <div #customContent>
5825
- <ng-content></ng-content>
5826
- </div>
5827
- @if (defaultDisplay) {
5828
- <span>
5829
- {{mgService.getErrMsg(id, rowId)}}
5830
- </span>
5831
- }
5832
- </div>
5833
- }
5875
+ template: `@if (HasErrors(id)) {
5876
+ <div>
5877
+ <div #customContent>
5878
+ <ng-content></ng-content>
5879
+ </div>
5880
+ @if (defaultDisplay) {
5881
+ <span>
5882
+ {{mgService.getErrMsg(id, rowId)}}
5883
+ </span>
5884
+ }
5885
+ </div>
5886
+ }
5834
5887
  `,
5888
+ changeDetection: ChangeDetectionStrategy.Eager,
5835
5889
  standalone: false
5836
5890
  }]
5837
- }], () => [{ type: TaskMagicService }, { type: AccessorMagicService }, { type: i0.ChangeDetectorRef }], { magic: [{
5891
+ }], () => [], { magic: [{
5838
5892
  type: Input,
5839
5893
  args: ['magic']
5840
5894
  }], rowId1: [{
5841
5895
  type: Input,
5842
5896
  args: ['rowId']
5843
- }], CustomContent: [{
5844
- type: ViewChild,
5845
- args: ['customContent', { static: false }]
5846
- }] }); })();
5847
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ErrorMagicComponent, { className: "ErrorMagicComponent", filePath: "src/ui/mgerror.magic.component.ts", lineNumber: 28 }); })();
5897
+ }], customContentRef: [{ type: i0.ViewChild, args: ['customContent', { isSignal: true }] }] }); })();
5898
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ErrorMagicComponent, { className: "ErrorMagicComponent", filePath: "src/ui/mgerror.magic.component.ts", lineNumber: 29 }); })();
5848
5899
 
5849
5900
  /**
5850
5901
  * Directive for checkboxes, to handle the 'change' event
5851
5902
  */
5852
5903
  class CheckboxMagicDirective {
5853
- magicDirective;
5854
- el;
5855
- task;
5856
- threeState = false;
5904
+ threeState = input(false, /* @ts-ignore */
5905
+ ...(ngDevMode ? [{ debugName: "threeState" }] : /* istanbul ignore next */ []));
5857
5906
  subscribeRefreshDom = null;
5858
5907
  isIndeterminate = false;
5859
- /**
5860
- * @ignore
5861
- */
5862
- constructor(magicDirective, el, task) {
5863
- this.magicDirective = magicDirective;
5864
- this.el = el;
5865
- this.task = task;
5908
+ magicDirective = inject(MagicDirective);
5909
+ el = inject(ElementRef);
5910
+ task = inject(TaskMagicService);
5911
+ constructor() {
5866
5912
  }
5867
5913
  /**
5868
5914
  * Handles the Checkbox 'change' event - pass it to the Magic engine
5869
5915
  */
5870
5916
  onChange($event) {
5871
- if (this.threeState) {
5917
+ if (this.threeState()) {
5872
5918
  this.handleThreeState();
5873
5919
  }
5874
5920
  else {
@@ -5876,7 +5922,7 @@ class CheckboxMagicDirective {
5876
5922
  }
5877
5923
  }
5878
5924
  ngOnInit() {
5879
- if (this.threeState) {
5925
+ if (this.threeState()) {
5880
5926
  let guiEvent = getGuiEventObj("setAsThreeState", this.magicDirective.id, +this.magicDirective.rowId);
5881
5927
  this.task.insertEvent(guiEvent);
5882
5928
  this.el.nativeElement.indeterminate = this.isIndeterminate = this.task.getProperty(this.magicDirective.id, HtmlProperties.CheckBoxIndeterminate, this.magicDirective.rowId);
@@ -5931,10 +5977,10 @@ class CheckboxMagicDirective {
5931
5977
  if (this.subscribeRefreshDom !== null)
5932
5978
  this.subscribeRefreshDom.unsubscribe();
5933
5979
  }
5934
- /** @nocollapse */ static ɵfac = function CheckboxMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CheckboxMagicDirective)(i0.ɵɵdirectiveInject(MagicDirective), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(TaskMagicService)); };
5980
+ /** @nocollapse */ static ɵfac = function CheckboxMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CheckboxMagicDirective)(); };
5935
5981
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: CheckboxMagicDirective, selectors: [["input", "type", "checkbox", "magic", "", 3, "noFormControl", ""]], hostBindings: function CheckboxMagicDirective_HostBindings(rf, ctx) { if (rf & 1) {
5936
5982
  i0.ɵɵlistener("change", function CheckboxMagicDirective_change_HostBindingHandler($event) { return ctx.onChange($event); });
5937
- } }, inputs: { threeState: "threeState" }, standalone: false });
5983
+ } }, inputs: { threeState: [1, "threeState"] }, standalone: false });
5938
5984
  }
5939
5985
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckboxMagicDirective, [{
5940
5986
  type: Directive,
@@ -5944,9 +5990,7 @@ class CheckboxMagicDirective {
5944
5990
  `,
5945
5991
  standalone: false
5946
5992
  }]
5947
- }], () => [{ type: MagicDirective }, { type: i0.ElementRef }, { type: TaskMagicService }], { threeState: [{
5948
- type: Input
5949
- }], onChange: [{
5993
+ }], () => [], { threeState: [{ type: i0.Input, args: [{ isSignal: true, alias: "threeState", required: false }] }], onChange: [{
5950
5994
  type: HostListener,
5951
5995
  args: ['change', ['$event']]
5952
5996
  }] }); })();
@@ -5955,9 +5999,8 @@ class CheckboxMagicDirective {
5955
5999
  * Directive for comboboxes, to handle the 'change' event
5956
6000
  */
5957
6001
  class ComboboxMagicDirective {
5958
- magicDirective;
5959
- constructor(magicDirective) {
5960
- this.magicDirective = magicDirective;
6002
+ magicDirective = inject(MagicDirective);
6003
+ constructor() {
5961
6004
  // subcribe to refreshDom. This is a special case for native select HTML control.
5962
6005
  // to refresh the selected property. Else by default, HTML element doesn't get refreshed as per
5963
6006
  // selected value and 1st element remains selected.
@@ -5979,7 +6022,7 @@ class ComboboxMagicDirective {
5979
6022
  onComboboxItemsListChanged() {
5980
6023
  this.magicDirective.task.refreshView();
5981
6024
  }
5982
- /** @nocollapse */ static ɵfac = function ComboboxMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ComboboxMagicDirective)(i0.ɵɵdirectiveInject(MagicDirective)); };
6025
+ /** @nocollapse */ static ɵfac = function ComboboxMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ComboboxMagicDirective)(); };
5983
6026
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: ComboboxMagicDirective, selectors: [["select", "magic", "", 3, "multiple", ""]], hostBindings: function ComboboxMagicDirective_HostBindings(rf, ctx) { if (rf & 1) {
5984
6027
  i0.ɵɵlistener("change", function ComboboxMagicDirective_change_HostBindingHandler($event) { return ctx.onChange($event); });
5985
6028
  } }, standalone: false });
@@ -5990,7 +6033,7 @@ class ComboboxMagicDirective {
5990
6033
  selector: `select[magic]:not([multiple])`,
5991
6034
  standalone: false
5992
6035
  }]
5993
- }], () => [{ type: MagicDirective }], { onChange: [{
6036
+ }], () => [], { onChange: [{
5994
6037
  type: HostListener,
5995
6038
  args: ['change', ['$event']]
5996
6039
  }] }); })();
@@ -6027,7 +6070,7 @@ function MagicShellComponent_Conditional_5_Template(rf, ctx) { if (rf & 1) {
6027
6070
  const ctx_r0 = i0.ɵɵnextContext();
6028
6071
  const defaultSpinner_r2 = i0.ɵɵreference(7);
6029
6072
  i0.ɵɵadvance();
6030
- i0.ɵɵproperty("ngTemplateOutlet", ctx_r0.SpinnerTemplate ? ctx_r0.SpinnerTemplate : defaultSpinner_r2);
6073
+ i0.ɵɵproperty("ngTemplateOutlet", ctx_r0.SpinnerTemplate() ? ctx_r0.SpinnerTemplate() : defaultSpinner_r2);
6031
6074
  } }
6032
6075
  function MagicShellComponent_ng_template_6_Template(rf, ctx) { if (rf & 1) {
6033
6076
  i0.ɵɵelement(0, "div", 7);
@@ -6036,16 +6079,6 @@ function MagicShellComponent_ng_template_6_Template(rf, ctx) { if (rf & 1) {
6036
6079
  * Root Magic component
6037
6080
  */
6038
6081
  class MagicShellComponent {
6039
- engineMagicService;
6040
- componentList;
6041
- changeDetectorRef;
6042
- titleService;
6043
- overlayWindowService;
6044
- httpClient;
6045
- pendingCommandsCollector;
6046
- route;
6047
- router;
6048
- exitMagicService;
6049
6082
  /**
6050
6083
  * Root component to be displayed in the window
6051
6084
  */
@@ -6055,10 +6088,22 @@ class MagicShellComponent {
6055
6088
  */
6056
6089
  RootComponentParameters;
6057
6090
  overlayWindowsContainerViewRef;
6058
- rootMagicElementRef;
6059
- SpinnerTemplate;
6091
+ rootMagicElementRef = viewChild.required('magicRoot', /* @ts-ignore */
6092
+ ...(ngDevMode ? [{ debugName: "rootMagicElementRef" }] : /* istanbul ignore next */ []));
6093
+ SpinnerTemplate = input(/* @ts-ignore */
6094
+ ...(ngDevMode ? [undefined, { debugName: "SpinnerTemplate" }] : /* istanbul ignore next */ []));
6060
6095
  showSpinner;
6061
6096
  magicEngineTerminated = false;
6097
+ engineMagicService = inject(EngineMagicService);
6098
+ componentList = inject(ComponentListMagicService);
6099
+ changeDetectorRef = inject(ChangeDetectorRef);
6100
+ titleService = inject(Title);
6101
+ overlayWindowService = inject(OverlayWindowService);
6102
+ httpClient = inject(HttpClient);
6103
+ pendingCommandsCollector = inject(CommandsCollectorMagicService);
6104
+ route = inject(ActivatedRoute);
6105
+ router = inject(Router);
6106
+ exitMagicService = inject(ExitMagicService, { optional: true });
6062
6107
  /**
6063
6108
  *
6064
6109
  * @param magic Magic's service
@@ -6068,17 +6113,7 @@ class MagicShellComponent {
6068
6113
  * @param httpClient The native httpClient instance
6069
6114
  * @param exitMagicService Magic exit service
6070
6115
  */
6071
- constructor(engineMagicService, componentList, changeDetectorRef, titleService, overlayWindowService, httpClient, pendingCommandsCollector, route, router, exitMagicService) {
6072
- this.engineMagicService = engineMagicService;
6073
- this.componentList = componentList;
6074
- this.changeDetectorRef = changeDetectorRef;
6075
- this.titleService = titleService;
6076
- this.overlayWindowService = overlayWindowService;
6077
- this.httpClient = httpClient;
6078
- this.pendingCommandsCollector = pendingCommandsCollector;
6079
- this.route = route;
6080
- this.router = router;
6081
- this.exitMagicService = exitMagicService;
6116
+ constructor() {
6082
6117
  this.initialize();
6083
6118
  this.setTitle();
6084
6119
  }
@@ -6104,7 +6139,7 @@ class MagicShellComponent {
6104
6139
  this.engineMagicService.TerminateContextUsingFetchAPI();
6105
6140
  }
6106
6141
  ngAfterViewInit() {
6107
- this.overlayWindowService.init(this.overlayWindowsContainerViewRef, this.rootMagicElementRef.nativeElement, this.changeDetectorRef);
6142
+ this.overlayWindowService.init(this.overlayWindowsContainerViewRef, this.rootMagicElementRef().nativeElement, this.changeDetectorRef);
6108
6143
  // Helper function to start the engine
6109
6144
  const startEngine = () => {
6110
6145
  const queryParams = this.route.snapshot.queryParams;
@@ -6218,15 +6253,14 @@ class MagicShellComponent {
6218
6253
  break;
6219
6254
  }
6220
6255
  }
6221
- /** @nocollapse */ static ɵfac = function MagicShellComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicShellComponent)(i0.ɵɵdirectiveInject(EngineMagicService), i0.ɵɵdirectiveInject(ComponentListMagicService), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$1.Title), i0.ɵɵdirectiveInject(OverlayWindowService), i0.ɵɵdirectiveInject(i1$2.HttpClient), i0.ɵɵdirectiveInject(CommandsCollectorMagicService), i0.ɵɵdirectiveInject(i2.ActivatedRoute), i0.ɵɵdirectiveInject(i2.Router), i0.ɵɵdirectiveInject(ExitMagicService, 8)); };
6256
+ /** @nocollapse */ static ɵfac = function MagicShellComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicShellComponent)(); };
6222
6257
  /** @nocollapse */ static ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: MagicShellComponent, selectors: [["magic-root"]], viewQuery: function MagicShellComponent_Query(rf, ctx) { if (rf & 1) {
6223
- i0.ɵɵviewQuery(_c0, 7);
6258
+ i0.ɵɵviewQuerySignal(ctx.rootMagicElementRef, _c0, 5);
6224
6259
  } if (rf & 2) {
6225
- let _t;
6226
- i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.rootMagicElementRef = _t.first);
6260
+ i0.ɵɵqueryAdvance();
6227
6261
  } }, hostBindings: function MagicShellComponent_HostBindings(rf, ctx) { if (rf & 1) {
6228
6262
  i0.ɵɵlistener("beforeunload", function MagicShellComponent_beforeunload_HostBindingHandler($event) { return ctx.onBeforeUnload($event); }, i0.ɵɵresolveWindow)("unload", function MagicShellComponent_unload_HostBindingHandler($event) { return ctx.onUnload($event); }, i0.ɵɵresolveWindow);
6229
- } }, inputs: { SpinnerTemplate: "SpinnerTemplate" }, standalone: false, features: [i0.ɵɵProvidersFeature([
6263
+ } }, inputs: { SpinnerTemplate: [1, "SpinnerTemplate"] }, standalone: false, features: [i0.ɵɵProvidersFeature([
6230
6264
  // ExitMagicService
6231
6265
  ])], decls: 8, vars: 2, consts: [["magicRoot", ""], ["overlayWindowsContainer", ""], ["defaultSpinner", ""], [3, "ndcDynamicComponent", "ndcDynamicInputs"], ["magicViewContainerRef", ""], [1, "spinner-background"], [3, "ngTemplateOutlet"], [1, "mgSpinnerClass"]], template: function MagicShellComponent_Template(rf, ctx) { if (rf & 1) {
6232
6266
  i0.ɵɵelementStart(0, "div", null, 0);
@@ -6240,50 +6274,43 @@ class MagicShellComponent {
6240
6274
  i0.ɵɵconditional(ctx.RootComponent !== null ? 2 : -1);
6241
6275
  i0.ɵɵadvance(3);
6242
6276
  i0.ɵɵconditional(ctx.showSpinner ? 5 : -1);
6243
- } }, dependencies: [i1.NgTemplateOutlet, i2$3.DynamicIoDirective, i2$3.DynamicComponent, MagicViewContainerRef], styles: [".mgSpinnerClass[_ngcontent-%COMP%]{border:10px solid #cccccc;border-top:10px solid black;border-radius:50%;position:fixed;margin:auto;inset:0;width:100px;height:100px;animation:_ngcontent-%COMP%_spin 2s linear infinite}.spinner-background[_ngcontent-%COMP%]{position:fixed;z-index:1000;inset:0;opacity:.5}@keyframes _ngcontent-%COMP%_spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}"] });
6277
+ } }, dependencies: [i1.NgTemplateOutlet, i1$1.DynamicIoDirective, i1$1.DynamicComponent, MagicViewContainerRef], styles: [".mgSpinnerClass[_ngcontent-%COMP%]{border:10px solid #cccccc;border-top:10px solid black;border-radius:50%;position:fixed;margin:auto;inset:0;width:100px;height:100px;animation:_ngcontent-%COMP%_spin 2s linear infinite}.spinner-background[_ngcontent-%COMP%]{position:fixed;z-index:1000;inset:0;opacity:.5}@keyframes _ngcontent-%COMP%_spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}"], changeDetection: 1 });
6244
6278
  }
6245
6279
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicShellComponent, [{
6246
6280
  type: Component,
6247
6281
  args: [{ selector: 'magic-root', providers: [
6248
6282
  // ExitMagicService
6249
- ], template: `
6250
- <div #magicRoot>
6251
- @if (RootComponent !== null) {
6252
- <ndc-dynamic
6253
- [ndcDynamicComponent]="RootComponent"
6254
- [ndcDynamicInputs] ="RootComponentParameters">
6255
- </ndc-dynamic>
6256
- }
6257
-
6258
- <div #overlayWindowsContainer magicViewContainerRef>
6259
- </div>
6260
- </div>
6261
-
6262
- @if (showSpinner) {
6263
- <div class="spinner-background">
6264
- <ng-container [ngTemplateOutlet]="SpinnerTemplate ? SpinnerTemplate:defaultSpinner"></ng-container>
6265
- </div>
6266
- }
6267
-
6268
- <ng-template #defaultSpinner>
6269
- <div class="mgSpinnerClass"></div>
6270
- </ng-template>
6271
- `, standalone: false, styles: [".mgSpinnerClass{border:10px solid #cccccc;border-top:10px solid black;border-radius:50%;position:fixed;margin:auto;inset:0;width:100px;height:100px;animation:spin 2s linear infinite}.spinner-background{position:fixed;z-index:1000;inset:0;opacity:.5}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"] }]
6272
- }], () => [{ type: EngineMagicService }, { type: ComponentListMagicService }, { type: i0.ChangeDetectorRef }, { type: i1$1.Title }, { type: OverlayWindowService }, { type: i1$2.HttpClient }, { type: CommandsCollectorMagicService }, { type: i2.ActivatedRoute }, { type: i2.Router }, { type: ExitMagicService, decorators: [{
6273
- type: Optional
6274
- }] }], { rootMagicElementRef: [{
6275
- type: ViewChild,
6276
- args: ['magicRoot', { static: true }]
6277
- }], SpinnerTemplate: [{
6278
- type: Input
6279
- }], onBeforeUnload: [{
6283
+ ], template: `
6284
+ <div #magicRoot>
6285
+ @if (RootComponent !== null) {
6286
+ <ndc-dynamic
6287
+ [ndcDynamicComponent]="RootComponent"
6288
+ [ndcDynamicInputs] ="RootComponentParameters">
6289
+ </ndc-dynamic>
6290
+ }
6291
+
6292
+ <div #overlayWindowsContainer magicViewContainerRef>
6293
+ </div>
6294
+ </div>
6295
+
6296
+ @if (showSpinner) {
6297
+ <div class="spinner-background">
6298
+ <ng-container [ngTemplateOutlet]="SpinnerTemplate() ? SpinnerTemplate():defaultSpinner"></ng-container>
6299
+ </div>
6300
+ }
6301
+
6302
+ <ng-template #defaultSpinner>
6303
+ <div class="mgSpinnerClass"></div>
6304
+ </ng-template>
6305
+ `, changeDetection: ChangeDetectionStrategy.Eager, standalone: false, styles: [".mgSpinnerClass{border:10px solid #cccccc;border-top:10px solid black;border-radius:50%;position:fixed;margin:auto;inset:0;width:100px;height:100px;animation:spin 2s linear infinite}.spinner-background{position:fixed;z-index:1000;inset:0;opacity:.5}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"] }]
6306
+ }], () => [], { rootMagicElementRef: [{ type: i0.ViewChild, args: ['magicRoot', { isSignal: true }] }], SpinnerTemplate: [{ type: i0.Input, args: [{ isSignal: true, alias: "SpinnerTemplate", required: false }] }], onBeforeUnload: [{
6280
6307
  type: HostListener,
6281
6308
  args: ['window:beforeunload', ['$event']]
6282
6309
  }], onUnload: [{
6283
6310
  type: HostListener,
6284
6311
  args: ['window:unload', ['$event']]
6285
6312
  }] }); })();
6286
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MagicShellComponent, { className: "MagicShellComponent", filePath: "src/ui/magic-root.component.ts", lineNumber: 89 }); })();
6313
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(MagicShellComponent, { className: "MagicShellComponent", filePath: "src/ui/magic-root.component.ts", lineNumber: 90 }); })();
6287
6314
 
6288
6315
  /**
6289
6316
  * @ignore
@@ -6310,7 +6337,7 @@ class MagicCheckboxControlValueAccessor extends CheckboxControlValueAccessor {
6310
6337
  input[type=checkbox][magic]:not([formControl]),
6311
6338
  input[type=checkbox][magic]:not([ngModel])
6312
6339
  `,
6313
- host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },
6340
+ host: { '(change)': 'onChange($any($event.target).checked)', '(blur)': 'onTouched()' },
6314
6341
  providers: [CHECKBOX_VALUE_ACCESSOR],
6315
6342
  standalone: false
6316
6343
  }]
@@ -6341,10 +6368,10 @@ class MagicDefaultValueAccessor extends DefaultValueAccessor {
6341
6368
  textarea[magic]:not([formControlName]):not([noFormControl]):not([no-form-control])
6342
6369
  `,
6343
6370
  host: {
6344
- '(input)': '$any(this)._handleInput($event.target.value)',
6371
+ '(input)': '$any(this)._handleInput($any($event.target).value)',
6345
6372
  '(blur)': 'onTouched()',
6346
6373
  '(compositionstart)': '$any(this)._compositionStart()',
6347
- '(compositionend)': '$any(this)._compositionEnd($event.target.value)'
6374
+ '(compositionend)': '$any(this)._compositionEnd($any($event.target).value)'
6348
6375
  },
6349
6376
  providers: [MAGIC_DEFAULT_VALUE_ACCESSOR],
6350
6377
  exportAs: 'magic',
@@ -6356,9 +6383,8 @@ class MagicDefaultValueAccessor extends DefaultValueAccessor {
6356
6383
  * Directive for checkboxes which should not have a form control
6357
6384
  */
6358
6385
  class CheckboxNoFormControlMagicDirective {
6359
- magicDirective;
6360
- constructor(magicDirective) {
6361
- this.magicDirective = magicDirective;
6386
+ magicDirective = inject(MagicDirective);
6387
+ constructor() {
6362
6388
  }
6363
6389
  /**
6364
6390
  * Handle the 'Checkbox' change event - pass it to the Magic engine
@@ -6366,7 +6392,7 @@ class CheckboxNoFormControlMagicDirective {
6366
6392
  onChange($event) {
6367
6393
  this.magicDirective.task.onCheckChanged($event, this.magicDirective.id, +this.magicDirective.rowId);
6368
6394
  }
6369
- /** @nocollapse */ static ɵfac = function CheckboxNoFormControlMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CheckboxNoFormControlMagicDirective)(i0.ɵɵdirectiveInject(MagicDirective)); };
6395
+ /** @nocollapse */ static ɵfac = function CheckboxNoFormControlMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CheckboxNoFormControlMagicDirective)(); };
6370
6396
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: CheckboxNoFormControlMagicDirective, selectors: [["input", "type", "checkbox", "magic", "", "noFormControl", ""]], hostBindings: function CheckboxNoFormControlMagicDirective_HostBindings(rf, ctx) { if (rf & 1) {
6371
6397
  i0.ɵɵlistener("change", function CheckboxNoFormControlMagicDirective_change_HostBindingHandler($event) { return ctx.onChange($event); });
6372
6398
  } }, standalone: false });
@@ -6379,7 +6405,7 @@ class CheckboxNoFormControlMagicDirective {
6379
6405
  `,
6380
6406
  standalone: false
6381
6407
  }]
6382
- }], () => [{ type: MagicDirective }], { onChange: [{
6408
+ }], () => [], { onChange: [{
6383
6409
  type: HostListener,
6384
6410
  args: ['change', ['$event']]
6385
6411
  }] }); })();
@@ -6388,9 +6414,8 @@ class CheckboxNoFormControlMagicDirective {
6388
6414
  * Directive for non-checkbox input controls which do not have a form control
6389
6415
  */
6390
6416
  class InputNoFormControlMagicDirective {
6391
- magicDirective;
6392
- constructor(magicDirective) {
6393
- this.magicDirective = magicDirective;
6417
+ magicDirective = inject(MagicDirective);
6418
+ constructor() {
6394
6419
  }
6395
6420
  /**
6396
6421
  * Handles the 'change' event - pass it to the Magic engine
@@ -6398,7 +6423,7 @@ class InputNoFormControlMagicDirective {
6398
6423
  onChange($event) {
6399
6424
  this.magicDirective.task.setInputTextValue(this.magicDirective.id, this.magicDirective.rowId, event.srcElement.value);
6400
6425
  }
6401
- /** @nocollapse */ static ɵfac = function InputNoFormControlMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || InputNoFormControlMagicDirective)(i0.ɵɵdirectiveInject(MagicDirective)); };
6426
+ /** @nocollapse */ static ɵfac = function InputNoFormControlMagicDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || InputNoFormControlMagicDirective)(); };
6402
6427
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: InputNoFormControlMagicDirective, selectors: [["input", "magic", "", "noFormControl", "", 3, "type", "checkbox"], ["textarea", "magic", "", "noFormControl", "", 3, "type", "checkbox"]], hostBindings: function InputNoFormControlMagicDirective_HostBindings(rf, ctx) { if (rf & 1) {
6403
6428
  i0.ɵɵlistener("change", function InputNoFormControlMagicDirective_change_HostBindingHandler($event) { return ctx.onChange($event); });
6404
6429
  } }, standalone: false });
@@ -6410,7 +6435,7 @@ class InputNoFormControlMagicDirective {
6410
6435
  textarea[magic]:([noFormControl]):not([type=checkbox])`,
6411
6436
  standalone: false
6412
6437
  }]
6413
- }], () => [{ type: MagicDirective }], { onChange: [{
6438
+ }], () => [], { onChange: [{
6414
6439
  type: HostListener,
6415
6440
  args: ['change', ['$event']]
6416
6441
  }] }); })();
@@ -6429,10 +6454,6 @@ const DATE_VALUE_ACCESSOR = {
6429
6454
  * `<input type="date" formControlName="birthday" dateInput>`
6430
6455
  */
6431
6456
  class DateValueAccessor {
6432
- renderer;
6433
- elementRef;
6434
- magicDir;
6435
- _task;
6436
6457
  onChange = (_) => { };
6437
6458
  onTouched = () => { };
6438
6459
  onBlurEvent(event) {
@@ -6440,12 +6461,11 @@ class DateValueAccessor {
6440
6461
  let control = this._task.getFormControl(this.magicDir.rowId, this.magicDir.id);
6441
6462
  this.formatDateWithCentury(event.target.value, century, control);
6442
6463
  }
6443
- constructor(renderer, elementRef, magicDir, _task) {
6444
- this.renderer = renderer;
6445
- this.elementRef = elementRef;
6446
- this.magicDir = magicDir;
6447
- this._task = _task;
6448
- }
6464
+ renderer = inject(Renderer2);
6465
+ elementRef = inject(ElementRef);
6466
+ magicDir = inject(MagicDirective);
6467
+ _task = inject(TaskMagicService);
6468
+ constructor() { }
6449
6469
  /** Format year, if user enters 2 digits instead of 4 digits as per the century given in Magic.ini file */
6450
6470
  formatDateWithCentury(userInput, century, control) {
6451
6471
  const separator = userInput.includes('/') ? '/' : "-";
@@ -6483,7 +6503,7 @@ class DateValueAccessor {
6483
6503
  setDisabledState(isDisabled) {
6484
6504
  this.renderer.setProperty(this.elementRef.nativeElement, "disabled", isDisabled);
6485
6505
  }
6486
- /** @nocollapse */ static ɵfac = function DateValueAccessor_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DateValueAccessor)(i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(MagicDirective), i0.ɵɵdirectiveInject(TaskMagicService)); };
6506
+ /** @nocollapse */ static ɵfac = function DateValueAccessor_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DateValueAccessor)(); };
6487
6507
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: DateValueAccessor, selectors: [["", "dateInput", ""]], hostBindings: function DateValueAccessor_HostBindings(rf, ctx) { if (rf & 1) {
6488
6508
  i0.ɵɵlistener("input", function DateValueAccessor_input_HostBindingHandler($event) { return ctx.onChange($event.target.valueAsDate); })("blur", function DateValueAccessor_blur_HostBindingHandler($event) { return ctx.onBlurEvent($event); });
6489
6509
  } }, standalone: false, features: [i0.ɵɵProvidersFeature([DATE_VALUE_ACCESSOR])] });
@@ -6495,7 +6515,7 @@ class DateValueAccessor {
6495
6515
  providers: [DATE_VALUE_ACCESSOR],
6496
6516
  standalone: false
6497
6517
  }]
6498
- }], () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }, { type: MagicDirective }, { type: TaskMagicService }], { onChange: [{
6518
+ }], () => [], { onChange: [{
6499
6519
  type: HostListener,
6500
6520
  args: ["input", ["$event.target.valueAsDate"]]
6501
6521
  }], onTouched: [{
@@ -6510,10 +6530,6 @@ class DateValueAccessor {
6510
6530
  * Responsible for connecting HTML elements to the Magic WebClient engine showing it is not Magic Control but a Dummy control which is used to notify only receeive focus event for now
6511
6531
  */
6512
6532
  class NonMagicControlDirective {
6513
- _task;
6514
- element;
6515
- renderer;
6516
- vcRef;
6517
6533
  set magic(val) {
6518
6534
  this.id = val;
6519
6535
  this.selector = 'NonMagicControl';
@@ -6551,13 +6567,13 @@ class NonMagicControlDirective {
6551
6567
  * @param renderer Renderer for the element
6552
6568
  * @param vcRef
6553
6569
  */
6554
- constructor(_task, element, renderer, vcRef) {
6555
- this._task = _task;
6556
- this.element = element;
6557
- this.renderer = renderer;
6558
- this.vcRef = vcRef;
6570
+ constructor() {
6559
6571
  this.htmlElement = this.element.nativeElement;
6560
6572
  }
6573
+ _task = inject(TaskMagicService);
6574
+ element = inject(ElementRef);
6575
+ renderer = inject(Renderer2);
6576
+ vcRef = inject(ViewContainerRef);
6561
6577
  /**
6562
6578
  * Get the task service
6563
6579
  * @returns
@@ -6588,7 +6604,7 @@ class NonMagicControlDirective {
6588
6604
  ngOnInit() {
6589
6605
  this.regEvents();
6590
6606
  }
6591
- /** @nocollapse */ static ɵfac = function NonMagicControlDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NonMagicControlDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef)); };
6607
+ /** @nocollapse */ static ɵfac = function NonMagicControlDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NonMagicControlDirective)(); };
6592
6608
  /** @nocollapse */ static ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: NonMagicControlDirective, selectors: [["", "NonMagicControl", ""]], inputs: { magic: [0, "NonMagicControl", "magic"] }, standalone: false });
6593
6609
  }
6594
6610
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NonMagicControlDirective, [{
@@ -6597,15 +6613,14 @@ class NonMagicControlDirective {
6597
6613
  selector: '[NonMagicControl]',
6598
6614
  standalone: false
6599
6615
  }]
6600
- }], () => [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }], { magic: [{
6616
+ }], () => [], { magic: [{
6601
6617
  type: Input,
6602
6618
  args: ['NonMagicControl']
6603
6619
  }] }); })();
6604
6620
 
6605
6621
  class Time24MagicPipe {
6606
- _task;
6607
- constructor(_task) {
6608
- this._task = _task;
6622
+ _task = inject(TaskMagicService);
6623
+ constructor() {
6609
6624
  }
6610
6625
  transform(value, controlId) {
6611
6626
  let mask = this._task.GetControlPictureMask(controlId).getMask();
@@ -6623,7 +6638,7 @@ class Time24MagicPipe {
6623
6638
  }
6624
6639
  return value;
6625
6640
  }
6626
- /** @nocollapse */ static ɵfac = function Time24MagicPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || Time24MagicPipe)(i0.ɵɵdirectiveInject(TaskMagicService, 16)); };
6641
+ /** @nocollapse */ static ɵfac = function Time24MagicPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || Time24MagicPipe)(); };
6627
6642
  /** @nocollapse */ static ɵpipe = /** @pureOrBreakMyCode */ i0.ɵɵdefinePipe({ name: "magicTime24", type: Time24MagicPipe, pure: true, standalone: false });
6628
6643
  }
6629
6644
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(Time24MagicPipe, [{
@@ -6632,7 +6647,7 @@ class Time24MagicPipe {
6632
6647
  name: 'magicTime24',
6633
6648
  standalone: false
6634
6649
  }]
6635
- }], () => [{ type: TaskMagicService }], null); })();
6650
+ }], () => [], null); })();
6636
6651
 
6637
6652
  /**
6638
6653
  * @ignore
@@ -6674,27 +6689,28 @@ const decs = [
6674
6689
  class MagicModule {
6675
6690
  /** @nocollapse */ static ɵfac = function MagicModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MagicModule)(); };
6676
6691
  /** @nocollapse */ static ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: MagicModule });
6677
- /** @nocollapse */ static ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ providers: [ConfirmationComponentsMagicProvider, OverlayContainerMagicProvider, provideHttpClient(withInterceptorsFromDi())], imports: [CommonModule,
6692
+ /** @nocollapse */ static ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ providers: [ConfirmationComponentsMagicProvider, OverlayContainerMagicProvider, provideHttpClient(withXhr(), withInterceptorsFromDi())], imports: [CommonModule,
6678
6693
  FormsModule,
6679
6694
  ReactiveFormsModule,
6680
6695
  RouterModule,
6681
6696
  DynamicModule,
6682
- DragDropModule, MaskitoModule] });
6697
+ DragDropModule] });
6683
6698
  }
6684
6699
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicModule, [{
6685
6700
  type: NgModule,
6686
6701
  args: [{
6687
6702
  declarations: [...decs],
6688
- exports: [...decs, MaskitoModule],
6703
+ exports: [...decs, MaskitoDirective],
6689
6704
  imports: [CommonModule,
6690
6705
  FormsModule,
6691
6706
  ReactiveFormsModule,
6692
6707
  RouterModule,
6693
6708
  DynamicModule,
6709
+ MaskitoDirective,
6694
6710
  CdkDragHandle,
6695
6711
  CdkDrag,
6696
6712
  DragDropModule],
6697
- providers: [ConfirmationComponentsMagicProvider, OverlayContainerMagicProvider, provideHttpClient(withInterceptorsFromDi())]
6713
+ providers: [ConfirmationComponentsMagicProvider, OverlayContainerMagicProvider, provideHttpClient(withXhr(), withInterceptorsFromDi())]
6698
6714
  }]
6699
6715
  }], null, null); })();
6700
6716
  (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(MagicModule, { declarations: [MagicDirective,
@@ -6730,6 +6746,7 @@ class MagicModule {
6730
6746
  ReactiveFormsModule,
6731
6747
  RouterModule,
6732
6748
  DynamicModule,
6749
+ MaskitoDirective,
6733
6750
  CdkDragHandle,
6734
6751
  CdkDrag,
6735
6752
  DragDropModule], exports: [MagicDirective,
@@ -6760,7 +6777,7 @@ class MagicModule {
6760
6777
  NonMagicControlDirective,
6761
6778
  MagicFocusDirective,
6762
6779
  MagicViewContainerRef,
6763
- Time24MagicPipe, MaskitoModule] }); })();
6780
+ Time24MagicPipe, MaskitoDirective] }); })();
6764
6781
 
6765
6782
  const MG_FORMATS = {
6766
6783
  parse: { dateInput: { month: 'short', year: 'numeric', day: 'numeric' } },
@@ -6772,14 +6789,12 @@ const MG_FORMATS = {
6772
6789
  }
6773
6790
  };
6774
6791
  class MgDateAdapter extends NativeDateAdapter {
6775
- task;
6776
- localeId;
6777
6792
  mgdtfmt = null;
6778
- constructor(task, localeId) {
6779
- super(localeId);
6780
- this.task = task;
6781
- this.localeId = localeId;
6782
- this.setLocale(localeId);
6793
+ task = inject(TaskMagicService);
6794
+ localeId = inject(MAT_DATE_LOCALE);
6795
+ constructor() {
6796
+ super();
6797
+ this.setLocale(this.localeId);
6783
6798
  }
6784
6799
  parse(value) {
6785
6800
  let valueStr = value;
@@ -6854,15 +6869,12 @@ class MgDateAdapter extends NativeDateAdapter {
6854
6869
  return date.toDateString();
6855
6870
  }
6856
6871
  }
6857
- /** @nocollapse */ static ɵfac = function MgDateAdapter_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MgDateAdapter)(i0.ɵɵinject(TaskMagicService), i0.ɵɵinject(MAT_DATE_LOCALE)); };
6872
+ /** @nocollapse */ static ɵfac = function MgDateAdapter_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || MgDateAdapter)(); };
6858
6873
  /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: MgDateAdapter, factory: MgDateAdapter.ɵfac });
6859
6874
  }
6860
6875
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MgDateAdapter, [{
6861
6876
  type: Injectable
6862
- }], () => [{ type: TaskMagicService }, { type: undefined, decorators: [{
6863
- type: Inject,
6864
- args: [MAT_DATE_LOCALE]
6865
- }] }], null); })();
6877
+ }], () => [], null); })();
6866
6878
 
6867
6879
  const matDateProviders = [
6868
6880
  { provide: DateAdapter, useClass: MgDateAdapter },
@@ -6884,6 +6896,109 @@ const magicProviders = [
6884
6896
  TableMagicService
6885
6897
  ];
6886
6898
 
6899
+ class SubscriberService {
6900
+ static instance;
6901
+ socket;
6902
+ constructor() {
6903
+ // Connect to the Socket.IO server with subscriber role
6904
+ this.socket = io('http://localhost:3000', {
6905
+ query: {
6906
+ role: 'subscriber',
6907
+ token: 'abc123' // Default token for testing; replace with actual authentication
6908
+ }
6909
+ });
6910
+ // Handle connection
6911
+ this.socket.on('connect', () => {
6912
+ console.log('Connected to server as subscriber:', this.socket.id);
6913
+ });
6914
+ // Handle disconnection
6915
+ this.socket.on('disconnect', () => {
6916
+ console.log('Disconnected from server');
6917
+ });
6918
+ // Handle subscription confirmation
6919
+ this.socket.on('subscribed', (data) => {
6920
+ console.log('Subscribed to topic:', data.topic, data.message);
6921
+ });
6922
+ // Handle unsubscription confirmation
6923
+ this.socket.on('unsubscribed', (data) => {
6924
+ console.log('Unsubscribed from topic:', data.topic, data.message);
6925
+ });
6926
+ // Handle errors
6927
+ this.socket.on('error', (error) => {
6928
+ console.error('Socket error:', error.message);
6929
+ });
6930
+ this.socket.on('message', (error) => {
6931
+ console.error('Message from xpa:', error.message);
6932
+ });
6933
+ }
6934
+ /**
6935
+ * Subscribe to a specific topic
6936
+ * @param topic The topic to subscribe to
6937
+ */
6938
+ subscribe(topic) {
6939
+ this.socket.emit('subscribe', topic);
6940
+ }
6941
+ /**
6942
+ * Unsubscribe from a specific topic
6943
+ * @param topic The topic to unsubscribe from
6944
+ */
6945
+ unsubscribe(topic) {
6946
+ this.socket.emit('unsubscribe', topic);
6947
+ }
6948
+ /**
6949
+ * Get an Observable for incoming messages
6950
+ * @returns Observable that emits message data
6951
+ */
6952
+ onMessage() {
6953
+ return new Observable(observer => {
6954
+ this.socket.on('message', (data) => {
6955
+ observer.next(data);
6956
+ });
6957
+ });
6958
+ }
6959
+ /**
6960
+ * Get current subscriptions (for debugging)
6961
+ */
6962
+ getSubscriptions() {
6963
+ this.socket.emit('getSubscriptions');
6964
+ }
6965
+ /**
6966
+ * Listen for subscriptions data
6967
+ * @returns Observable that emits subscriptions list
6968
+ */
6969
+ onSubscriptionsData() {
6970
+ return new Observable(observer => {
6971
+ this.socket.on('subscriptionsData', (data) => {
6972
+ observer.next(data);
6973
+ });
6974
+ });
6975
+ }
6976
+ /**
6977
+ * Get the singleton instance of SubscriberService
6978
+ * @returns {SubscriberService} The singleton instance
6979
+ */
6980
+ static getInstance() {
6981
+ if (!SubscriberService.instance) {
6982
+ SubscriberService.instance = new SubscriberService();
6983
+ }
6984
+ return SubscriberService.instance;
6985
+ }
6986
+ /**
6987
+ * Disconnect from the server
6988
+ */
6989
+ disconnect() {
6990
+ this.socket.disconnect();
6991
+ }
6992
+ /** @nocollapse */ static ɵfac = function SubscriberService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SubscriberService)(); };
6993
+ /** @nocollapse */ static ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: SubscriberService, factory: SubscriberService.ɵfac, providedIn: 'root' });
6994
+ }
6995
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SubscriberService, [{
6996
+ type: Injectable,
6997
+ args: [{
6998
+ providedIn: 'root'
6999
+ }]
7000
+ }], () => [], null); })();
7001
+
6887
7002
  /**
6888
7003
  * @ignore
6889
7004
  */
@@ -6969,5 +7084,5 @@ class ModalFormDefinition {
6969
7084
  * Generated bundle index. Do not edit.
6970
7085
  */
6971
7086
 
6972
- export { AccessorMagicService, BaseMagicAlertComponent, BaseMagicConfirmComponent, BaseMagicOverlayContainer, CHECKBOX_VALUE_ACCESSOR, COLOR_FILE_NAME, CheckboxMagicDirective, CheckboxNoFormControlMagicDirective, ComboboxMagicDirective, CommandsCollectorMagicService, ComponentListMagicService, ConfirmationComponentsMagicProvider, Constants, ControlMetadata, ControlsMetadata, DATE_VALUE_ACCESSOR, DateMagicPipe, DateValueAccessor, EngineMagicService, ErrorMagicComponent, ExitMagicService, GuiInteractiveExecutor, HtmlClasses, InputNoFormControlMagicDirective, MAGIC_BG_COLOR, MAGIC_DEFAULT_VALUE_ACCESSOR, MAGIC_FG_COLOR, MG_FORMATS, MagicAlertComponent, MagicCheckboxControlValueAccessor, MagicColorService, MagicConfirmationBoxComponent, MagicDefaultValueAccessor, MagicDirective, MagicFocusDirective, MagicLazyLoaderService, MagicModule, MagicOverlayContainer, MagicOverlayContainerWrapper, MagicServices, MagicShellComponent, MagicViewContainerRef, MgDateAdapter, MgDateFormatter, MgformatMagicDirective, ModalFormDefinition, NoControlMagicDirective, NonMagicControlDirective, OverlayContainerMagicProvider, OverlayWindowService, RangeValidatorMagicDirective, Records, RouteCommand, RouterCommandsMagicService, RouterContainerMagicComponent, RowMagicDirective, StylesMapManager, SubformMagicComponent, SubformMagicService, TableMagicService, TaskBaseMagicComponent, TaskMagicService, Time24MagicPipe, TimeMagicPipe, TitleMagicService, basicMagicProviders, confirmationBox, magicProviders, matDateProviders, utils };
7087
+ export { AccessorMagicService, BaseMagicAlertComponent, BaseMagicConfirmComponent, BaseMagicOverlayContainer, CHECKBOX_VALUE_ACCESSOR, COLOR_FILE_NAME, CheckboxMagicDirective, CheckboxNoFormControlMagicDirective, ComboboxMagicDirective, CommandsCollectorMagicService, ComponentListMagicService, ConfirmationComponentsMagicProvider, Constants, ControlMetadata, ControlsMetadata, DATE_VALUE_ACCESSOR, DateMagicPipe, DateValueAccessor, EngineMagicService, ErrorMagicComponent, ExitMagicService, GuiInteractiveExecutor, HtmlClasses, InputNoFormControlMagicDirective, MAGIC_BG_COLOR, MAGIC_DEFAULT_VALUE_ACCESSOR, MAGIC_FG_COLOR, MG_FORMATS, MagicAlertComponent, MagicChangeDetectionService, MagicCheckboxControlValueAccessor, MagicColorService, MagicConfirmationBoxComponent, MagicDefaultValueAccessor, MagicDirective, MagicFocusDirective, MagicLazyLoaderService, MagicModalProperties, MagicModule, MagicOverlayContainer, MagicOverlayContainerWrapper, MagicServices, MagicShellComponent, MagicViewContainerRef, MgDateAdapter, MgDateFormatter, MgformatMagicDirective, ModalFormDefinition, NoControlMagicDirective, NonMagicControlDirective, OverlayContainerMagicProvider, OverlayWindowService, RangeValidatorMagicDirective, Records, RouteCommand, RouterCommandsMagicService, RouterContainerMagicComponent, RowMagicDirective, StylesMapManager, SubformMagicComponent, SubformMagicService, SubscriberService, TableMagicService, TaskBaseMagicComponent, TaskMagicService, Time24MagicPipe, TimeMagicPipe, TitleMagicService, basicMagicProviders, confirmationBox, magicProviders, matDateProviders, utils };
6973
7088
  //# sourceMappingURL=magic-xpa-angular.mjs.map