@magic-xpa/angular 4.1000.0-dev4100.36 → 4.1000.0-dev4100.361

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/esm2020/src/magic.core.module.mjs +10 -11
  2. package/esm2020/src/services/accessor.magic.service.mjs +29 -3
  3. package/esm2020/src/services/magic-color.service.mjs +4 -4
  4. package/esm2020/src/services/subform.magic.service.mjs +1 -1
  5. package/esm2020/src/services/table.magic.service.mjs +5 -2
  6. package/esm2020/src/services/task.magics.service.mjs +18 -5
  7. package/esm2020/src/ui/components/base-magic-alert.component.mjs +3 -7
  8. package/esm2020/src/ui/components/base-magic-confirm.component.mjs +3 -7
  9. package/esm2020/src/ui/components/magic-alert.component.mjs +3 -35
  10. package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +3 -39
  11. package/esm2020/src/ui/directives/NonMagicControlDirective.mjs +6 -6
  12. package/esm2020/src/ui/directives/magic/combobox.magic.directive.mjs +11 -1
  13. package/esm2020/src/ui/directives/magic/nocontrol.magic.directive.mjs +3 -3
  14. package/esm2020/src/ui/directives/magic.directive.mjs +11 -11
  15. package/esm2020/src/ui/directives/mgformat.magic.directive.mjs +124 -2
  16. package/esm2020/src/ui/magic-modal/base-magic-overlay-container.mjs +1 -1
  17. package/esm2020/src/ui/magic-modal/magic-overlay-container-wrapper.mjs +4 -18
  18. package/esm2020/src/ui/magic-modal/magic-overlay-container.mjs +4 -4
  19. package/esm2020/src/ui/magic-root.component.mjs +4 -38
  20. package/esm2020/src/ui/mgerror.magic.component.mjs +9 -9
  21. package/esm2020/src/ui/router-container.magic.component.mjs +4 -4
  22. package/esm2020/src/ui/subform.magic.component.mjs +4 -4
  23. package/esm2020/src/ui/task-base.magic.component.mjs +8 -2
  24. package/fesm2015/magic-xpa-angular.mjs +246 -194
  25. package/fesm2015/magic-xpa-angular.mjs.map +1 -1
  26. package/fesm2020/magic-xpa-angular.mjs +246 -194
  27. package/fesm2020/magic-xpa-angular.mjs.map +1 -1
  28. package/package.json +8 -8
  29. package/src/magic.core.module.d.ts +2 -1
  30. package/src/services/accessor.magic.service.d.ts +4 -0
  31. package/src/services/table.magic.service.d.ts +2 -0
  32. package/src/services/task.magics.service.d.ts +1 -0
  33. package/src/ui/components/base-magic-alert.component.d.ts +1 -1
  34. package/src/ui/components/base-magic-confirm.component.d.ts +1 -1
  35. package/src/ui/components/magic-alert.component.d.ts +1 -1
  36. package/src/ui/components/magic-confirmation-box.component.d.ts +1 -1
  37. package/src/ui/directives/NonMagicControlDirective.d.ts +1 -1
  38. package/src/ui/directives/magic/checkbox-noformcontrol.magic.directive.d.ts +1 -1
  39. package/src/ui/directives/magic/checkbox.magic.directive.d.ts +1 -1
  40. package/src/ui/directives/magic/combobox.magic.directive.d.ts +2 -1
  41. package/src/ui/directives/magic/form-controls/control-value-accessors/checkbox.cva.directive.d.ts +1 -1
  42. package/src/ui/directives/magic/form-controls/control-value-accessors/date.cva.directive.d.ts +1 -1
  43. package/src/ui/directives/magic/form-controls/control-value-accessors/default.cva.directive.d.ts +1 -1
  44. package/src/ui/directives/magic/input.noformcontrol.magic.directive.d.ts +1 -1
  45. package/src/ui/directives/magic/nocontrol.magic.directive.d.ts +1 -1
  46. package/src/ui/directives/magic/row.magic.directive.d.ts +1 -1
  47. package/src/ui/directives/magic-focus.directive.d.ts +1 -1
  48. package/src/ui/directives/magic.directive.d.ts +2 -2
  49. package/src/ui/directives/magicViewContainerRef.directive.d.ts +1 -1
  50. package/src/ui/directives/mgformat.magic.directive.d.ts +3 -2
  51. package/src/ui/directives/range-validator.magic.directive.d.ts +1 -1
  52. package/src/ui/magic-modal/magic-overlay-container-wrapper.d.ts +1 -1
  53. package/src/ui/magic-modal/magic-overlay-container.d.ts +1 -1
  54. package/src/ui/magic-root.component.d.ts +1 -1
  55. package/src/ui/mgerror.magic.component.d.ts +1 -1
  56. package/src/ui/pipes/date.magic.pipe.d.ts +1 -1
  57. package/src/ui/pipes/time.magic.pipe.d.ts +1 -1
  58. package/src/ui/router-container.magic.component.d.ts +1 -1
  59. package/src/ui/subform.magic.component.d.ts +1 -1
  60. package/src/ui/task-base.magic.component.d.ts +2 -1
  61. package/magic-xpa-angular.d.ts +0 -2
@@ -15,8 +15,10 @@ import { filter, map, debounceTime } from 'rxjs/operators';
15
15
  import { Subject, fromEvent } from 'rxjs';
16
16
  import { __awaiter, __decorate, __metadata } from 'tslib';
17
17
  import * as i1$1 from '@angular/platform-browser';
18
+ import { maskitoTimeOptionsGenerator } from '@maskito/kit';
18
19
  import * as i1$2 from '@angular/common/http';
19
20
  import { HttpClientModule } from '@angular/common/http';
21
+ import { MaskitoModule } from '@maskito/angular';
20
22
  import { NativeDateAdapter, MAT_DATE_LOCALE, DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
21
23
  import * as i1$3 from '@angular/cdk/platform';
22
24
 
@@ -610,6 +612,9 @@ SubformMagicService.ɵprov = i0.ɵɵdefineInjectable({ token: SubformMagicServic
610
612
  })();
611
613
 
612
614
  class RouterContainerMagicComponent {
615
+ static get LastRoute() {
616
+ return RouterContainerMagicComponent.lastRoute;
617
+ }
613
618
  constructor(activatedRoute, router, magic, containerTaskService, componentFactoryResolver, viewContainerRef, componentList, pendingCommandsCollector, routerCommandsMagicService) {
614
619
  this.activatedRoute = activatedRoute;
615
620
  this.router = router;
@@ -623,9 +628,6 @@ class RouterContainerMagicComponent {
623
628
  this.componentRef = null;
624
629
  this.parentMgSubformService = null;
625
630
  }
626
- static get LastRoute() {
627
- return RouterContainerMagicComponent.lastRoute;
628
- }
629
631
  ngOnInit() {
630
632
  let subformMagicService = SubformMagicService.currentCallerMgSubformServiceRef;
631
633
  let currentActiveRoute = SubformMagicService.getRelativeRoute(this.activatedRoute);
@@ -824,15 +826,11 @@ class BaseMagicConfirmComponent {
824
826
  }
825
827
  }
826
828
  BaseMagicConfirmComponent.ɵfac = function BaseMagicConfirmComponent_Factory(t) { return new (t || BaseMagicConfirmComponent)(); };
827
- BaseMagicConfirmComponent.ɵcmp = i0.ɵɵdefineComponent({ type: BaseMagicConfirmComponent, selectors: [["mg-base-alert"]], inputs: { title: "title", message: "message" }, outputs: { onClose: "onClose" }, decls: 0, vars: 0, template: function BaseMagicConfirmComponent_Template(rf, ctx) { }, styles: [""] });
829
+ BaseMagicConfirmComponent.ɵcmp = i0.ɵɵdefineComponent({ type: BaseMagicConfirmComponent, selectors: [["mg-base-alert"]], inputs: { title: "title", message: "message" }, outputs: { onClose: "onClose" }, decls: 0, vars: 0, template: function BaseMagicConfirmComponent_Template(rf, ctx) { } });
828
830
  (function () {
829
831
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseMagicConfirmComponent, [{
830
832
  type: Component,
831
- args: [{
832
- selector: 'mg-base-alert',
833
- template: '',
834
- styles: ['']
835
- }]
833
+ args: [{ selector: 'mg-base-alert', template: '' }]
836
834
  }], null, { title: [{
837
835
  type: Input
838
836
  }], message: [{
@@ -851,15 +849,11 @@ class BaseMagicAlertComponent {
851
849
  }
852
850
  }
853
851
  BaseMagicAlertComponent.ɵfac = function BaseMagicAlertComponent_Factory(t) { return new (t || BaseMagicAlertComponent)(); };
854
- BaseMagicAlertComponent.ɵcmp = i0.ɵɵdefineComponent({ type: BaseMagicAlertComponent, selectors: [["mg-base-alert"]], inputs: { title: "title", message: "message" }, outputs: { onClose: "onClose" }, decls: 0, vars: 0, template: function BaseMagicAlertComponent_Template(rf, ctx) { }, styles: [""] });
852
+ BaseMagicAlertComponent.ɵcmp = i0.ɵɵdefineComponent({ type: BaseMagicAlertComponent, selectors: [["mg-base-alert"]], inputs: { title: "title", message: "message" }, outputs: { onClose: "onClose" }, decls: 0, vars: 0, template: function BaseMagicAlertComponent_Template(rf, ctx) { } });
855
853
  (function () {
856
854
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseMagicAlertComponent, [{
857
855
  type: Component,
858
- args: [{
859
- selector: 'mg-base-alert',
860
- template: '',
861
- styles: ['']
862
- }]
856
+ args: [{ selector: 'mg-base-alert', template: '' }]
863
857
  }], null, { title: [{
864
858
  type: Input
865
859
  }], message: [{
@@ -993,13 +987,11 @@ MagicOverlayContainerWrapper.ɵcmp = i0.ɵɵdefineComponent({ type: MagicOverlay
993
987
  i0.ɵɵelement(6, "div", 5);
994
988
  i0.ɵɵelementEnd();
995
989
  }
996
- }, directives: [MagicFocusDirective, MagicViewContainerRef], styles: [".overlay-container-wrapper-background[_ngcontent-%COMP%]{position:fixed;z-index:999;inset:0}"] });
990
+ }, dependencies: [MagicFocusDirective, MagicViewContainerRef], styles: [".overlay-container-wrapper-background[_ngcontent-%COMP%]{position:fixed;z-index:999;inset:0}"] });
997
991
  (function () {
998
992
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicOverlayContainerWrapper, [{
999
993
  type: Component,
1000
- args: [{
1001
- selector: 'app-magic-overlay-container-wrapper',
1002
- template: `
994
+ args: [{ selector: 'app-magic-overlay-container-wrapper', template: `
1003
995
  <div>
1004
996
  <div class="overlay-container-wrapper-background" tabIndex="0" style="width: 0px; height: 0px;" magicFocus></div>
1005
997
  <div class="overlay-container-wrapper-background" #overlayContainerWrapper>
@@ -1008,19 +1000,7 @@ MagicOverlayContainerWrapper.ɵcmp = i0.ɵɵdefineComponent({ type: MagicOverlay
1008
1000
  </div>
1009
1001
  <div class="overlay-container-wrapper-background" tabIndex="0" style="width: 0px; height: 0px;" ></div>
1010
1002
  </div>
1011
- `,
1012
- styles: [`
1013
- .overlay-container-wrapper-background {
1014
- /* modal background fixed across whole screen */
1015
- position: fixed;
1016
- top: 0;
1017
- z-index: 999;
1018
- right: 0;
1019
- bottom: 0;
1020
- left: 0;
1021
- }
1022
- `]
1023
- }]
1003
+ `, styles: [".overlay-container-wrapper-background{position:fixed;z-index:999;inset:0}\n"] }]
1024
1004
  }], function () { return [{ type: ComponentListMagicService }, { type: MagicLazyLoaderService }, { type: i0.Injector }, { type: i0.ComponentFactoryResolver }, { type: i0.ChangeDetectorRef }, { type: i0.Compiler }]; }, { Component: [{
1025
1005
  type: Input
1026
1006
  }], Parameters: [{
@@ -1082,7 +1062,7 @@ function MagicOverlayContainer_button_2_Template(rf, ctx) {
1082
1062
  if (rf & 1) {
1083
1063
  const _r5 = i0.ɵɵgetCurrentView();
1084
1064
  i0.ɵɵelementStart(0, "button", 8);
1085
- i0.ɵɵlistener("click", function MagicOverlayContainer_button_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r4 = i0.ɵɵnextContext(); return ctx_r4.OnClose(); });
1065
+ i0.ɵɵlistener("click", function MagicOverlayContainer_button_2_Template_button_click_0_listener() { i0.ɵɵrestoreView(_r5); const ctx_r4 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r4.OnClose()); });
1086
1066
  i0.ɵɵtext(1, "X");
1087
1067
  i0.ɵɵelementEnd();
1088
1068
  }
@@ -1093,7 +1073,7 @@ function MagicOverlayContainer_div_5_Template(rf, ctx) {
1093
1073
  i0.ɵɵelementStart(0, "div", 9, 10);
1094
1074
  i0.ɵɵtext(2);
1095
1075
  i0.ɵɵelementStart(3, "button", 11);
1096
- i0.ɵɵlistener("click", function MagicOverlayContainer_div_5_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r8); const ctx_r7 = i0.ɵɵnextContext(); return ctx_r7.OnClose(); });
1076
+ i0.ɵɵlistener("click", function MagicOverlayContainer_div_5_Template_button_click_3_listener() { i0.ɵɵrestoreView(_r8); const ctx_r7 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r7.OnClose()); });
1097
1077
  i0.ɵɵtext(4, "X");
1098
1078
  i0.ɵɵelementEnd()();
1099
1079
  }
@@ -1206,7 +1186,7 @@ MagicOverlayContainer.ɵcmp = i0.ɵɵdefineComponent({ type: MagicOverlayContain
1206
1186
  i0.ɵɵadvance(1);
1207
1187
  i0.ɵɵproperty("ngStyle", ctx.getClientAreaStyles());
1208
1188
  }
1209
- }, directives: [i1.NgIf, i1.NgStyle, 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}"] });
1189
+ }, dependencies: [i1.NgIf, i1.NgStyle, 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}"] });
1210
1190
  (function () {
1211
1191
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicOverlayContainer, [{
1212
1192
  type: Component,
@@ -1281,46 +1261,14 @@ MagicAlertComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicAlertComponent,
1281
1261
  (function () {
1282
1262
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicAlertComponent, [{
1283
1263
  type: Component,
1284
- args: [{
1285
- selector: 'sample-magic-alert-component',
1286
- template: `<div>
1264
+ args: [{ selector: 'sample-magic-alert-component', template: `<div>
1287
1265
  <div class="mg-message-background">
1288
1266
  <h2> {{title}}</h2>
1289
1267
  <p>{{message}} </p>
1290
1268
 
1291
1269
  <button (click)="OnClose()">OK</button>
1292
1270
  </div>
1293
- </div>`,
1294
- styles: [`
1295
- .mg-message-background {
1296
- background-color: #F5F5F5;
1297
- text-align: center;
1298
- width: 40%;
1299
- font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
1300
- padding: 17px;
1301
- border-radius: 5px;
1302
- text-align: center;
1303
- margin-top: 10% ;
1304
- margin-left: auto;
1305
- margin-right: auto;
1306
- border: 1px solid gray;
1307
- }
1308
-
1309
- button {
1310
- background-color: #8CD4F5;
1311
- color: white;
1312
- border: none;
1313
- box-shadow: none;
1314
- font-size: 17px;
1315
- font-weight: 500;
1316
- -webkit-border-radius: 4px;
1317
- border-radius: 5px;
1318
- padding: 10px 32px;
1319
- margin: 26px 5px 0 5px;
1320
- cursor: pointer;
1321
- }
1322
- `]
1323
- }]
1271
+ </div>`, styles: [".mg-message-background{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{background-color:#8cd4f5;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}\n"] }]
1324
1272
  }], null, null);
1325
1273
  })();
1326
1274
 
@@ -1353,9 +1301,7 @@ MagicConfirmationBoxComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicConfir
1353
1301
  (function () {
1354
1302
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicConfirmationBoxComponent, [{
1355
1303
  type: Component,
1356
- args: [{
1357
- selector: 'sample-magic-confirmation-box',
1358
- template: `<div>
1304
+ args: [{ selector: 'sample-magic-confirmation-box', template: `<div>
1359
1305
  <div class="mg-message-background">
1360
1306
  <h2> {{title}}</h2>
1361
1307
  {{message}}
@@ -1365,41 +1311,7 @@ MagicConfirmationBoxComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicConfir
1365
1311
  <button (click)="OnClose(true)">OK</button>
1366
1312
  <button class="cancel" (click)="OnClose(false)">Cancel</button>
1367
1313
  </div>
1368
- </div>`,
1369
- styles: [`
1370
- .mg-message-background {
1371
- background-color: #F5F5F5;
1372
- text-align: center;
1373
- width: 40%;
1374
- font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
1375
- padding: 17px;
1376
- border-radius: 5px;
1377
- text-align: center;
1378
- margin-top: 10% ;
1379
- margin-left: auto;
1380
- margin-right: auto;
1381
- border: 1px solid gray;
1382
- }
1383
-
1384
- button {
1385
- background-color: #8CD4F5;
1386
- color: white;
1387
- border: none;
1388
- box-shadow: none;
1389
- font-size: 17px;
1390
- font-weight: 500;
1391
- -webkit-border-radius: 4px;
1392
- border-radius: 5px;
1393
- padding: 10px 32px;
1394
- margin: 26px 5px 0 5px;
1395
- cursor: pointer;
1396
- }
1397
-
1398
- button.cancel {
1399
- background-color: #C1C1C1;
1400
- }
1401
- `]
1402
- }]
1314
+ </div>`, styles: [".mg-message-background{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{background-color:#8cd4f5;color:#fff;border:none;box-shadow:none;font-size:17px;font-weight:500;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}button.cancel{background-color:#c1c1c1}\n"] }]
1403
1315
  }], null, null);
1404
1316
  })();
1405
1317
 
@@ -1629,6 +1541,7 @@ class TaskMagicService {
1629
1541
  this.OnSelectedRowChanged = new EventEmitter();
1630
1542
  this.customPropertiesSubject = new Subject();
1631
1543
  this.recordsCountChangeSubject = new Subject();
1544
+ this.mgLoadSubject = new Subject();
1632
1545
  this.oldPageSize = 0;
1633
1546
  this.Records.setGuiTopIndex(0);
1634
1547
  this.mgInputDateFormat = null;
@@ -1881,6 +1794,11 @@ class TaskMagicService {
1881
1794
  }
1882
1795
  }
1883
1796
  break;
1797
+ case CommandType.SET_CHUNK_SIZE:
1798
+ if (!isUndefined(command.number)) {
1799
+ this.tableService.setChunkSize(command.number);
1800
+ }
1801
+ break;
1884
1802
  case CommandType.SET_RECORDS_BEFORE_CURRENT_VIEW:
1885
1803
  this.updateRecordsBeforeCurrentView(command.number);
1886
1804
  break;
@@ -1908,7 +1826,8 @@ class TaskMagicService {
1908
1826
  break;
1909
1827
  case CommandType.SET_PROPERTY:
1910
1828
  this.handleSetProperty(command, isTableChild);
1911
- if (command.Operation == HtmlProperties.ReadOnly)
1829
+ if (command.Operation == HtmlProperties.ReadOnly ||
1830
+ command.Operation == HtmlProperties.ItemsList)
1912
1831
  this.refreshDom.next(command);
1913
1832
  break;
1914
1833
  case CommandType.PROP_SET_USER_PROPERTY:
@@ -1963,6 +1882,9 @@ class TaskMagicService {
1963
1882
  case CommandType.SET_FOCUS:
1964
1883
  this.refreshDom.next(command);
1965
1884
  break;
1885
+ case CommandType.SET_WC_IDLE:
1886
+ this.mgLoadSubject.next();
1887
+ break;
1966
1888
  }
1967
1889
  }
1968
1890
  customValidator(rowid, id) {
@@ -2021,7 +1943,10 @@ class TaskMagicService {
2021
1943
  return val;
2022
1944
  }
2023
1945
  case StorageAttribute.NUMERIC:
2024
- return +val;
1946
+ if (isUndefined(val))
1947
+ return val;
1948
+ else
1949
+ return (val != null) ? +val : null;
2025
1950
  default:
2026
1951
  return val;
2027
1952
  }
@@ -2158,10 +2083,10 @@ class TaskMagicService {
2158
2083
  mgOnRadioSelectionChanged(idx) {
2159
2084
  let result = this.getFormControl('0', idx);
2160
2085
  let guiEvent = getGuiEventObj('selectionchanged', idx, 0);
2161
- if (typeof result.value !== 'string')
2086
+ if (typeof result.value !== 'number')
2162
2087
  guiEvent.Value = result.value.index;
2163
2088
  else
2164
- guiEvent.Value = result.value;
2089
+ guiEvent.Value = result.value.toString();
2165
2090
  this.insertEvent(guiEvent);
2166
2091
  }
2167
2092
  close() {
@@ -2222,7 +2147,10 @@ class TableMagicService {
2222
2147
  refreshDataSource() {
2223
2148
  }
2224
2149
  getPageSize() {
2225
- return 10;
2150
+ return this.chunkSize;
2151
+ }
2152
+ setChunkSize(size) {
2153
+ this.chunkSize = size;
2226
2154
  }
2227
2155
  getMaxRowsInTable() {
2228
2156
  return this.task.Records.list.length;
@@ -2310,6 +2238,9 @@ const SYSTEM_BG = 4;
2310
2238
  const SYSTEM_FG_AND_SYSTEM_BG = 6;
2311
2239
  const TRANSPERENT_BG = 1;
2312
2240
  class MagicColorService {
2241
+ getColorFilePath() {
2242
+ return 'assets/' + this.colorFileName;
2243
+ }
2313
2244
  constructor(http, colorFile1 = 'clr_rnt.eng') {
2314
2245
  this.http = http;
2315
2246
  this.colorFileName = 'clr_rnt.eng';
@@ -2319,9 +2250,6 @@ class MagicColorService {
2319
2250
  else
2320
2251
  this.colorFileName = 'clr_rnt.eng';
2321
2252
  }
2322
- getColorFilePath() {
2323
- return 'assets/' + this.colorFileName;
2324
- }
2325
2253
  getColorData() {
2326
2254
  if (!this.colorsData) {
2327
2255
  this.http.get(this.getColorFilePath(), { responseType: 'text' }).subscribe(resp => {
@@ -2403,6 +2331,9 @@ class AccessorMagicService {
2403
2331
  this.task = task;
2404
2332
  this.magicColor = magicColor;
2405
2333
  this.Logger = null;
2334
+ this.hhmm = maskitoTimeOptionsGenerator({ mode: 'HH:MM' });
2335
+ this.hhmmss = maskitoTimeOptionsGenerator({ mode: 'HH:MM:SS' });
2336
+ this.hhmmssms = maskitoTimeOptionsGenerator({ mode: 'HH:MM:SS.MSS' });
2406
2337
  this.Logger = Logger.Instance;
2407
2338
  }
2408
2339
  checkIsReadOnly(controlId) {
@@ -2638,8 +2569,30 @@ class AccessorMagicService {
2638
2569
  let c = this.task.getFormControl(rowId, id);
2639
2570
  if (c.hasError('required'))
2640
2571
  return 'Control must be updated.';
2641
- if (c.hasError('pattern'))
2642
- return 'Required pattern is : ' + c.errors.pattern.requiredPattern;
2572
+ if (c.hasError('pattern')) {
2573
+ if (c.errors.pattern.actualValue < 0 && !c.errors.pattern.requiredPattern.includes('-'))
2574
+ return 'Value must be non-negative';
2575
+ if (c.errors.pattern.requiredPattern.includes('.')) {
2576
+ const numericFormat = Math.abs(c.errors.pattern.actualValue).toString().split('.')[0];
2577
+ const decimalFormat = Math.abs(c.errors.pattern.actualValue).toString().split('.')[1];
2578
+ const actualNumericLimit = c.errors.pattern.requiredPattern.match(/,(\d+)/)[1];
2579
+ const actualDecimalLimit = c.errors.pattern.requiredPattern.match(/(?:[^,]+,){2}(\d+)/)[1];
2580
+ if (numericFormat.length > actualNumericLimit || decimalFormat.length > actualDecimalLimit) {
2581
+ return "Numeric format is limited to " + actualNumericLimit + "." + actualDecimalLimit + " digits";
2582
+ }
2583
+ }
2584
+ else if (!c.errors.pattern.requiredPattern.includes('.') && !Number.isInteger(c.errors.pattern.actualValue)) {
2585
+ const actualNumericLimit = c.errors.pattern.requiredPattern.match(/,(\d+)/)[1];
2586
+ return "Numeric format is limited to " + actualNumericLimit + "." + 0 + " digits";
2587
+ }
2588
+ else {
2589
+ const numericFormat = Math.abs(c.errors.pattern.actualValue).toString();
2590
+ const actualNumericLimit = c.errors.pattern.requiredPattern.match(/,(\d+)/)[1];
2591
+ if (numericFormat.length > actualNumericLimit) {
2592
+ return "Numeric format is limited to " + actualNumericLimit + "." + 0 + " digits";
2593
+ }
2594
+ }
2595
+ }
2643
2596
  if (c.hasError('rangevalidator'))
2644
2597
  return c.errors.rangevalidator.errorMsg;
2645
2598
  if (c.hasError('maxlength'))
@@ -2779,6 +2732,9 @@ class TaskBaseMagicComponent {
2779
2732
  this.task.recordsCountChangeSubject.pipe().subscribe(value => {
2780
2733
  this.RecordsCountChanged(value);
2781
2734
  });
2735
+ this.task.mgLoadSubject.pipe().subscribe(value => {
2736
+ this.mgOnLoad();
2737
+ });
2782
2738
  }
2783
2739
  createFormControlsAccessor(formGroup) { }
2784
2740
  setInputDateFormat() { }
@@ -2786,11 +2742,13 @@ class TaskBaseMagicComponent {
2786
2742
  }
2787
2743
  RecordsCountChanged(recordsCount) {
2788
2744
  }
2745
+ mgOnLoad() {
2746
+ }
2789
2747
  ngAfterViewInit() {
2790
2748
  this.mgSub.init();
2791
2749
  }
2792
2750
  ngAfterContentChecked() {
2793
- if (this.task.oldPageSize != this.tableService.getPageSize()) {
2751
+ if (!isNullOrUndefined(this.tableService.getPageSize()) && this.task.oldPageSize != this.tableService.getPageSize()) {
2794
2752
  this.task.resize(this.tableService.getPageSize(), 0);
2795
2753
  this.task.oldPageSize = this.tableService.getPageSize();
2796
2754
  }
@@ -2872,6 +2830,16 @@ RowMagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: RowMagicDirective, sele
2872
2830
  })();
2873
2831
 
2874
2832
  class MagicDirective {
2833
+ set magic(val) {
2834
+ this.id = val;
2835
+ this.selector = "magic";
2836
+ }
2837
+ ;
2838
+ set eventsOnly(val) {
2839
+ console.log("eventsOnly");
2840
+ this.eventsOnlyVal = true;
2841
+ }
2842
+ ;
2875
2843
  constructor(_task, element, renderer, vcRef, magicRow) {
2876
2844
  this._task = _task;
2877
2845
  this.element = element;
@@ -2884,16 +2852,6 @@ class MagicDirective {
2884
2852
  if (!(typeof magicRow === "undefined" || magicRow === null))
2885
2853
  this.rowId = magicRow.rowId;
2886
2854
  }
2887
- set magic(val) {
2888
- this.id = val;
2889
- this.selector = "magic";
2890
- }
2891
- ;
2892
- set eventsOnly(val) {
2893
- console.log("eventsOnly");
2894
- this.eventsOnlyVal = true;
2895
- }
2896
- ;
2897
2855
  get task() {
2898
2856
  return this._task;
2899
2857
  }
@@ -3073,11 +3031,11 @@ MagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: MagicDirective, selectors:
3073
3031
  })();
3074
3032
 
3075
3033
  class NoControlMagicDirective extends MagicDirective {
3034
+ set magic(val) { this.id = val; this.selector = 'magicnc'; }
3035
+ ;
3076
3036
  constructor(_task, element, renderer, vcRef, magicRow) {
3077
3037
  super(_task, element, renderer, vcRef, magicRow);
3078
3038
  }
3079
- set magic(val) { this.id = val; this.selector = 'magicnc'; }
3080
- ;
3081
3039
  regEvents() {
3082
3040
  super.regEvents();
3083
3041
  if (this.htmlElement instanceof HTMLSelectElement) {
@@ -3373,9 +3331,131 @@ class MgformatMagicDirective {
3373
3331
  onFocusEvent($event) {
3374
3332
  this.calculatePattern();
3375
3333
  }
3376
- onInputEvent($event) {
3334
+ onInputEvent(event) {
3335
+ let control = this._task.getFormControl(this.magicDir.rowId, this.magicDir.id);
3336
+ if (control != null) {
3337
+ let attr = this._task.Records.list[0].getControlMetadata(this.magicDir.id).dataType;
3338
+ if (attr == StorageAttribute.DATE) {
3339
+ this.dateMasking(event);
3340
+ }
3341
+ }
3377
3342
  this.calculatePattern();
3378
3343
  }
3344
+ dateMasking(event) {
3345
+ const input = event.target;
3346
+ let cursorPos = event.target.selectionStart;
3347
+ const separator = this._task.mgInputDateFormat.includes('/') ? '/' : '-';
3348
+ if (cursorPos >= input.value.length) {
3349
+ const value = input.value.replace(/[^a-zA-Z0-9]/g, '');
3350
+ if (this._task.mgInputDateFormat == "dd/MM/yyyy" || this._task.mgInputDateFormat == "MM/dd/yyyy" || this._task.mgInputDateFormat == "dd-MM-yyyy" || this._task.mgInputDateFormat == "MM-dd-yyyy") {
3351
+ if (value.length <= 2) {
3352
+ input.value = value;
3353
+ }
3354
+ else if (value.length <= 4) {
3355
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2)}`;
3356
+ }
3357
+ else {
3358
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2, 4)}` + separator + `${value.slice(4, 8)}`;
3359
+ }
3360
+ }
3361
+ else if (this._task.mgInputDateFormat == "yyyy/MM/dd" || this._task.mgInputDateFormat == "yyyy/dd/MM" || this._task.mgInputDateFormat == "yyyy-MM-dd" || this._task.mgInputDateFormat == "yyyy-dd-MM") {
3362
+ if (value.length <= 4) {
3363
+ input.value = value;
3364
+ }
3365
+ else if (value.length <= 6) {
3366
+ input.value = `${value.slice(0, 4)}` + separator + `${value.slice(4)}`;
3367
+ }
3368
+ else {
3369
+ input.value = `${value.slice(0, 4)}` + separator + `${value.slice(4, 6)}` + separator + `${value.slice(6, 8)}`;
3370
+ }
3371
+ }
3372
+ else if (this._task.mgInputDateFormat == "dd/MM/yy" || this._task.mgInputDateFormat == "yy/MM/dd" || this._task.mgInputDateFormat == "MM/dd/yy" || this._task.mgInputDateFormat == "yy/dd/MM" || this._task.mgInputDateFormat == "dd-MM-yy" || this._task.mgInputDateFormat == "yy-MM-dd" || this._task.mgInputDateFormat == "MM-dd-yy" || this._task.mgInputDateFormat == "yy-dd-MM") {
3373
+ if (value.length <= 2) {
3374
+ input.value = value;
3375
+ }
3376
+ else if (value.length <= 4) {
3377
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2)}`;
3378
+ }
3379
+ else {
3380
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2, 4)}` + separator + `${value.slice(4, 6)}`;
3381
+ }
3382
+ }
3383
+ else if (this._task.mgInputDateFormat == "dd/MMM/yy" || this._task.mgInputDateFormat == "dd-MMM-yy") {
3384
+ if (value.length <= 2) {
3385
+ input.value = value;
3386
+ }
3387
+ else if (value.length <= 5) {
3388
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2)}`;
3389
+ }
3390
+ else {
3391
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2, 5)}` + separator + `${value.slice(5, 7)}`;
3392
+ }
3393
+ }
3394
+ else if (this._task.mgInputDateFormat == "dd/MMM/yyyy" || this._task.mgInputDateFormat == "dd-MMM-yyyy") {
3395
+ if (value.length <= 2) {
3396
+ input.value = value;
3397
+ }
3398
+ else if (value.length <= 5) {
3399
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2)}`;
3400
+ }
3401
+ else {
3402
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2, 5)}` + separator + `${value.slice(5, 9)}`;
3403
+ }
3404
+ }
3405
+ else if (this._task.mgInputDateFormat == "yy/dd/MMM" || this._task.mgInputDateFormat == "yy-dd-MMM") {
3406
+ if (value.length <= 2) {
3407
+ input.value = value;
3408
+ }
3409
+ else if (value.length <= 4) {
3410
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2)}`;
3411
+ }
3412
+ else {
3413
+ input.value = `${value.slice(0, 2)}` + separator + `${value.slice(2, 4)}` + separator + `${value.slice(4, 7)}`;
3414
+ }
3415
+ }
3416
+ else if (this._task.mgInputDateFormat == "yyyy/dd/MMM" || this._task.mgInputDateFormat == "yyyy-dd-MMM") {
3417
+ if (value.length <= 4) {
3418
+ input.value = value;
3419
+ }
3420
+ else if (value.length <= 6) {
3421
+ input.value = `${value.slice(0, 4)}` + separator + `${value.slice(4)}`;
3422
+ }
3423
+ else {
3424
+ input.value = `${value.slice(0, 4)}` + separator + `${value.slice(4, 6)}` + separator + `${value.slice(6, 9)}`;
3425
+ }
3426
+ }
3427
+ else if (this._task.mgInputDateFormat == "MMM/dd/yy" || this._task.mgInputDateFormat == "MMM-dd-yy") {
3428
+ if (value.length <= 3) {
3429
+ input.value = value;
3430
+ }
3431
+ else if (value.length <= 5) {
3432
+ input.value = `${value.slice(0, 3)}` + separator + `${value.slice(3)}`;
3433
+ }
3434
+ else {
3435
+ input.value = `${value.slice(0, 3)}` + separator + `${value.slice(3, 5)}` + separator + `${value.slice(5, 7)}`;
3436
+ }
3437
+ }
3438
+ else if (this._task.mgInputDateFormat == "MMM/dd/yyyy" || this._task.mgInputDateFormat == "MMM-dd-yyyy") {
3439
+ if (value.length <= 3) {
3440
+ input.value = value;
3441
+ }
3442
+ else if (value.length <= 5) {
3443
+ input.value = `${value.slice(0, 3)}` + separator + `${value.slice(3)}`;
3444
+ }
3445
+ else {
3446
+ input.value = `${value.slice(0, 3)}` + separator + `${value.slice(3, 5)}` + separator + `${value.slice(5, 9)}`;
3447
+ }
3448
+ }
3449
+ }
3450
+ if (cursorPos < input.value.length && input.value.length > this._task.mgInputDateFormat.length) {
3451
+ let inputDate = input.value;
3452
+ let start = input.selectionStart - 1;
3453
+ let end = input.selectionEnd - 1;
3454
+ let indexToRemove = input.selectionStart - 1;
3455
+ input.value = inputDate.slice(0, indexToRemove) + inputDate.slice(indexToRemove + 1);
3456
+ input.setSelectionRange(start, end);
3457
+ }
3458
+ }
3379
3459
  onChangeEvent($event) {
3380
3460
  let control = this._task.getFormControl(this.magicDir.rowId, this.magicDir.id);
3381
3461
  let attr = this._task.Records.list[0].getControlMetadata(this.magicDir.id).dataType;
@@ -3703,14 +3783,14 @@ function SubformMagicComponent_ndc_dynamic_0_Template(rf, ctx) {
3703
3783
  }
3704
3784
  }
3705
3785
  class SubformMagicComponent {
3786
+ set magic(val) { this.id = val; }
3787
+ ;
3706
3788
  constructor(vcRef, mgSub) {
3707
3789
  this.vcRef = vcRef;
3708
3790
  this.mgSub = mgSub;
3709
3791
  this.component = null;
3710
3792
  this.component = (this.vcRef._hostLView).find(v => !isNullOrUndefined(v));
3711
3793
  }
3712
- set magic(val) { this.id = val; }
3713
- ;
3714
3794
  get Component() {
3715
3795
  return this.mgSub.mgGetComp(this.id);
3716
3796
  }
@@ -3726,7 +3806,7 @@ SubformMagicComponent.ɵcmp = i0.ɵɵdefineComponent({ type: SubformMagicCompone
3726
3806
  if (rf & 2) {
3727
3807
  i0.ɵɵproperty("ngIf", ctx.Component);
3728
3808
  }
3729
- }, directives: [i1.NgIf, i3.DynamicComponent, i3.DynamicIoDirective], encapsulation: 2 });
3809
+ }, dependencies: [i1.NgIf, i3.DynamicComponent, i3.DynamicIoDirective], encapsulation: 2 });
3730
3810
  (function () {
3731
3811
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SubformMagicComponent, [{
3732
3812
  type: Component,
@@ -3775,13 +3855,6 @@ function ErrorMagicComponent_div_0_Template(rf, ctx) {
3775
3855
  }
3776
3856
  const _c1 = ["*"];
3777
3857
  class ErrorMagicComponent {
3778
- constructor(_task, mgService, changeDetectorRef) {
3779
- this._task = _task;
3780
- this.mgService = mgService;
3781
- this.changeDetectorRef = changeDetectorRef;
3782
- this.defaultDisplay = true;
3783
- this.rowId = "0";
3784
- }
3785
3858
  set magic(val) {
3786
3859
  this.id = val;
3787
3860
  }
@@ -3795,6 +3868,13 @@ class ErrorMagicComponent {
3795
3868
  this.changeDetectorRef.detectChanges();
3796
3869
  }
3797
3870
  ;
3871
+ constructor(_task, mgService, changeDetectorRef) {
3872
+ this._task = _task;
3873
+ this.mgService = mgService;
3874
+ this.changeDetectorRef = changeDetectorRef;
3875
+ this.defaultDisplay = true;
3876
+ this.rowId = "0";
3877
+ }
3798
3878
  isEmpty(element) {
3799
3879
  const nodes = element.childNodes;
3800
3880
  for (let i = 0; i < nodes.length; i++) {
@@ -3843,7 +3923,7 @@ ErrorMagicComponent.ɵcmp = i0.ɵɵdefineComponent({ type: ErrorMagicComponent,
3843
3923
  if (rf & 2) {
3844
3924
  i0.ɵɵproperty("ngIf", ctx.HasErrors(ctx.id));
3845
3925
  }
3846
- }, directives: [i1.NgIf], encapsulation: 2 });
3926
+ }, dependencies: [i1.NgIf], encapsulation: 2 });
3847
3927
  (function () {
3848
3928
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ErrorMagicComponent, [{
3849
3929
  type: Component,
@@ -3902,10 +3982,18 @@ CheckboxMagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: CheckboxMagicDirec
3902
3982
  class ComboboxMagicDirective {
3903
3983
  constructor(magicDirective) {
3904
3984
  this.magicDirective = magicDirective;
3985
+ this.magicDirective.task.refreshDom.pipe(filter(c => this.magicDirective.IsSameElement(c))).subscribe(value => {
3986
+ let command = value;
3987
+ if (command.Operation === HtmlProperties.ItemsList)
3988
+ this.onComboboxItemsListChanged();
3989
+ });
3905
3990
  }
3906
3991
  onChange($event) {
3907
3992
  this.magicDirective.task.onComboboxSelectionChanged($event, this.magicDirective.id, +this.magicDirective.rowId);
3908
3993
  }
3994
+ onComboboxItemsListChanged() {
3995
+ this.magicDirective.task.refreshView();
3996
+ }
3909
3997
  }
3910
3998
  ComboboxMagicDirective.ɵfac = function ComboboxMagicDirective_Factory(t) { return new (t || ComboboxMagicDirective)(i0.ɵɵdirectiveInject(MagicDirective)); };
3911
3999
  ComboboxMagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: ComboboxMagicDirective, selectors: [["select", "magic", "", 3, "multiple", ""]], hostBindings: function ComboboxMagicDirective_HostBindings(rf, ctx) {
@@ -4097,14 +4185,11 @@ MagicShellComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicShellComponent,
4097
4185
  i0.ɵɵadvance(3);
4098
4186
  i0.ɵɵproperty("ngIf", ctx.showSpinner);
4099
4187
  }
4100
- }, directives: [i1.NgIf, i3.DynamicComponent, i3.DynamicIoDirective, MagicViewContainerRef, i1.NgTemplateOutlet], 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:spin 2s linear infinite}.spinner-background[_ngcontent-%COMP%]{position:fixed;z-index:1000;inset:0;opacity:.5}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}"] });
4188
+ }, dependencies: [i1.NgIf, i1.NgTemplateOutlet, i3.DynamicComponent, i3.DynamicIoDirective, 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)}}"] });
4101
4189
  (function () {
4102
4190
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicShellComponent, [{
4103
4191
  type: Component,
4104
- args: [{
4105
- selector: 'magic-root',
4106
- providers: [],
4107
- template: `
4192
+ args: [{ selector: 'magic-root', providers: [], template: `
4108
4193
  <div #magicRoot>
4109
4194
  <ndc-dynamic
4110
4195
  *ngIf = "RootComponent !== null"
@@ -4123,38 +4208,7 @@ MagicShellComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicShellComponent,
4123
4208
  <ng-template #defaultSpinner>
4124
4209
  <div class="mgSpinnerClass"></div>
4125
4210
  </ng-template>
4126
- `,
4127
- styles: [`
4128
- .mgSpinnerClass {
4129
- border: 10px solid #cccccc; /* Light grey */
4130
- border-top: 10px solid black; /* Blue */
4131
- border-radius: 50%;
4132
- position: fixed;
4133
- margin: auto;
4134
- top: 0;
4135
- right: 0;
4136
- bottom: 0;
4137
- left: 0;
4138
- width: 100px;
4139
- height: 100px;
4140
- animation: spin 2s linear infinite;
4141
- }
4142
- .spinner-background {
4143
- /* background fixed across whole screen */
4144
- position: fixed;
4145
- top: 0;
4146
- right: 0;
4147
- bottom: 0;
4148
- z-index: 1000;
4149
- left: 0;
4150
- opacity: 0.5;
4151
- }
4152
- @keyframes spin {
4153
- 0% { transform: rotate(0deg); }
4154
- 100% { transform: rotate(360deg); }
4155
- }
4156
- `]
4157
- }]
4211
+ `, 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"] }]
4158
4212
  }], function () {
4159
4213
  return [{ type: EngineMagicService }, { type: ComponentListMagicService }, { type: i0.ChangeDetectorRef }, { type: i1$1.Title }, { type: OverlayWindowService }, { type: i1$2.HttpClient }, { type: CommandsCollectorMagicService }, { type: ExitMagicService, decorators: [{
4160
4214
  type: Optional
@@ -4343,6 +4397,11 @@ DateValueAccessor.ɵdir = i0.ɵɵdefineDirective({ type: DateValueAccessor, sele
4343
4397
  })();
4344
4398
 
4345
4399
  class NonMagicControlDirective {
4400
+ set magic(val) {
4401
+ this.id = val;
4402
+ this.selector = 'NonMagicControl';
4403
+ }
4404
+ ;
4346
4405
  constructor(_task, element, renderer, vcRef) {
4347
4406
  this._task = _task;
4348
4407
  this.element = element;
@@ -4352,11 +4411,6 @@ class NonMagicControlDirective {
4352
4411
  this.eventsOnlyVal = false;
4353
4412
  this.htmlElement = this.element.nativeElement;
4354
4413
  }
4355
- set magic(val) {
4356
- this.id = val;
4357
- this.selector = 'NonMagicControl';
4358
- }
4359
- ;
4360
4414
  get task() {
4361
4415
  return this._task;
4362
4416
  }
@@ -4422,20 +4476,18 @@ class MagicModule {
4422
4476
  }
4423
4477
  MagicModule.ɵfac = function MagicModule_Factory(t) { return new (t || MagicModule)(); };
4424
4478
  MagicModule.ɵmod = i0.ɵɵdefineNgModule({ type: MagicModule });
4425
- MagicModule.ɵinj = i0.ɵɵdefineInjector({ providers: [ConfirmationComponentsMagicProvider, OverlayContainerMagicProvider], imports: [[
4426
- CommonModule,
4427
- FormsModule,
4428
- ReactiveFormsModule,
4429
- RouterModule,
4430
- DynamicModule,
4431
- HttpClientModule
4432
- ]] });
4479
+ MagicModule.ɵinj = i0.ɵɵdefineInjector({ providers: [ConfirmationComponentsMagicProvider, OverlayContainerMagicProvider], imports: [CommonModule,
4480
+ FormsModule,
4481
+ ReactiveFormsModule,
4482
+ RouterModule,
4483
+ DynamicModule,
4484
+ HttpClientModule, MaskitoModule] });
4433
4485
  (function () {
4434
4486
  (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicModule, [{
4435
4487
  type: NgModule,
4436
4488
  args: [{
4437
4489
  declarations: [...decs],
4438
- exports: [...decs],
4490
+ exports: [...decs, MaskitoModule],
4439
4491
  entryComponents: [],
4440
4492
  imports: [
4441
4493
  CommonModule,
@@ -4509,7 +4561,7 @@ MagicModule.ɵinj = i0.ɵɵdefineInjector({ providers: [ConfirmationComponentsMa
4509
4561
  RangeValidatorMagicDirective,
4510
4562
  NonMagicControlDirective,
4511
4563
  MagicFocusDirective,
4512
- MagicViewContainerRef] });
4564
+ MagicViewContainerRef, MaskitoModule] });
4513
4565
  })();
4514
4566
 
4515
4567
  const MG_FORMATS = {