@magic-xpa/angular 4.1100.0-dev4110.1 → 4.1100.0-dev4110.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/esm2020/src/services/OverlayWindowService.mjs +37 -9
- package/esm2020/src/services/magic-color.service.mjs +1 -1
- package/esm2020/src/services/subform.magic.service.mjs +1 -1
- package/esm2020/src/services/table.magic.service.mjs +1 -1
- package/esm2020/src/services/task.magics.service.mjs +3 -3
- package/esm2020/src/ui/GuiInteractiveExecutor.mjs +8 -1
- package/esm2020/src/ui/components/base-magic-alert.component.mjs +1 -1
- package/esm2020/src/ui/components/base-magic-confirm.component.mjs +1 -1
- package/esm2020/src/ui/components/magic-alert.component.mjs +8 -8
- package/esm2020/src/ui/components/magic-confirmation-box.component.mjs +11 -11
- package/esm2020/src/ui/directives/magic/nocontrol.magic.directive.mjs +8 -6
- package/esm2020/src/ui/directives/magic-focus.directive.mjs +1 -1
- package/esm2020/src/ui/directives/magic.directive.mjs +10 -5
- package/esm2020/src/ui/directives/magicViewContainerRef.directive.mjs +1 -1
- package/esm2020/src/ui/magic-root.component.mjs +2 -2
- package/fesm2015/magic-xpa-angular.mjs +70 -34
- package/fesm2015/magic-xpa-angular.mjs.map +1 -1
- package/fesm2020/magic-xpa-angular.mjs +70 -34
- package/fesm2020/magic-xpa-angular.mjs.map +1 -1
- package/package.json +3 -3
- package/src/services/OverlayWindowService.d.ts +9 -3
- package/src/ui/GuiInteractiveExecutor.d.ts +1 -0
- package/src/ui/directives/magic/nocontrol.magic.directive.d.ts +3 -2
- package/src/ui/directives/magic.directive.d.ts +4 -2
@@ -18,9 +18,9 @@ import * as i1$1 from '@angular/platform-browser';
|
|
18
18
|
import * as i1$2 from '@angular/common/http';
|
19
19
|
import { HttpClientModule } from '@angular/common/http';
|
20
20
|
import { maskitoTimeOptionsGenerator } from '@maskito/kit';
|
21
|
+
import * as i2$1 from '@angular/cdk/platform';
|
21
22
|
import { MaskitoModule } from '@maskito/angular';
|
22
23
|
import { NativeDateAdapter, MAT_DATE_LOCALE, DateAdapter, MAT_DATE_FORMATS } from '@angular/material/core';
|
23
|
-
import * as i1$3 from '@angular/cdk/platform';
|
24
24
|
|
25
25
|
class ControlMetadata {
|
26
26
|
constructor() {
|
@@ -718,6 +718,9 @@ class GuiInteractiveExecutor {
|
|
718
718
|
case InteractiveCommandType.GET_LAST_ROUTE:
|
719
719
|
this.OnGetLastRoute();
|
720
720
|
break;
|
721
|
+
case InteractiveCommandType.OPEN_FORM:
|
722
|
+
this.OnOpenForm();
|
723
|
+
break;
|
721
724
|
}
|
722
725
|
}
|
723
726
|
catch (ex) {
|
@@ -754,6 +757,10 @@ class GuiInteractiveExecutor {
|
|
754
757
|
OnMessageBox() {
|
755
758
|
this.overlayService.openConfirmationBox(this.command._mgValue.title, this.command._mgValue.str, this.command._mgValue.style);
|
756
759
|
}
|
760
|
+
OnOpenForm() {
|
761
|
+
if (this.command._boolVal)
|
762
|
+
this.overlayService.loadAndOpenModule(this.command.controlName, this.command._mgValue.str, this.command._mgValue.path);
|
763
|
+
}
|
757
764
|
OnSetTitle() {
|
758
765
|
this.task.setTitle(this.command._mgValue.title);
|
759
766
|
}
|
@@ -1170,13 +1177,13 @@ MagicAlertComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicAlertComponent,
|
|
1170
1177
|
} }, 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;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}"] });
|
1171
1178
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicAlertComponent, [{
|
1172
1179
|
type: Component,
|
1173
|
-
args: [{ selector: 'sample-magic-alert-component', template: `<div>
|
1174
|
-
<div class="mg-message-background">
|
1175
|
-
<h2> {{title}}</h2>
|
1176
|
-
<p>{{message}} </p>
|
1177
|
-
|
1178
|
-
<button (click)="OnClose()">OK</button>
|
1179
|
-
</div>
|
1180
|
+
args: [{ selector: 'sample-magic-alert-component', template: `<div>
|
1181
|
+
<div class="mg-message-background">
|
1182
|
+
<h2> {{title}}</h2>
|
1183
|
+
<p>{{message}} </p>
|
1184
|
+
|
1185
|
+
<button (click)="OnClose()">OK</button>
|
1186
|
+
</div>
|
1180
1187
|
</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"] }]
|
1181
1188
|
}], null, null); })();
|
1182
1189
|
|
@@ -1205,16 +1212,16 @@ MagicConfirmationBoxComponent.ɵcmp = i0.ɵɵdefineComponent({ type: MagicConfir
|
|
1205
1212
|
} }, 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;border-radius:5px;padding:10px 32px;margin:26px 5px 0;cursor:pointer}button.cancel[_ngcontent-%COMP%]{background-color:#c1c1c1}"] });
|
1206
1213
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicConfirmationBoxComponent, [{
|
1207
1214
|
type: Component,
|
1208
|
-
args: [{ selector: 'sample-magic-confirmation-box', template: `<div>
|
1209
|
-
<div class="mg-message-background">
|
1210
|
-
<h2> {{title}}</h2>
|
1211
|
-
{{message}}
|
1212
|
-
<br>
|
1213
|
-
<br>
|
1214
|
-
|
1215
|
-
<button (click)="OnClose(true)">OK</button>
|
1216
|
-
<button class="cancel" (click)="OnClose(false)">Cancel</button>
|
1217
|
-
</div>
|
1215
|
+
args: [{ selector: 'sample-magic-confirmation-box', template: `<div>
|
1216
|
+
<div class="mg-message-background">
|
1217
|
+
<h2> {{title}}</h2>
|
1218
|
+
{{message}}
|
1219
|
+
<br>
|
1220
|
+
<br>
|
1221
|
+
|
1222
|
+
<button (click)="OnClose(true)">OK</button>
|
1223
|
+
<button class="cancel" (click)="OnClose(false)">Cancel</button>
|
1224
|
+
</div>
|
1218
1225
|
</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"] }]
|
1219
1226
|
}], null, null); })();
|
1220
1227
|
|
@@ -1277,17 +1284,42 @@ class confirmationBox {
|
|
1277
1284
|
}
|
1278
1285
|
|
1279
1286
|
class OverlayWindowService {
|
1280
|
-
constructor(componentFactoryResolver, componentList, engineMagicService, overlayContainerMagicProvider, confirmationComponentsMagicProvider) {
|
1287
|
+
constructor(componentFactoryResolver, componentList, engineMagicService, magicLazyModuleLoader, injector, compiler, overlayContainerMagicProvider, confirmationComponentsMagicProvider) {
|
1281
1288
|
this.componentFactoryResolver = componentFactoryResolver;
|
1282
1289
|
this.componentList = componentList;
|
1283
1290
|
this.engineMagicService = engineMagicService;
|
1291
|
+
this.magicLazyModuleLoader = magicLazyModuleLoader;
|
1292
|
+
this.injector = injector;
|
1293
|
+
this.compiler = compiler;
|
1284
1294
|
this.overlayContainerMagicProvider = overlayContainerMagicProvider;
|
1285
1295
|
this.confirmationComponentsMagicProvider = confirmationComponentsMagicProvider;
|
1286
1296
|
this.overlayWindowFocusManager = null;
|
1297
|
+
this.changeDetectorRef = null;
|
1287
1298
|
}
|
1288
|
-
init(overlayWindowsContainerViewRef, rootMagicElement) {
|
1299
|
+
init(overlayWindowsContainerViewRef, rootMagicElement, changeDetectorRef) {
|
1289
1300
|
this.overlayWindowsContainerViewRef = overlayWindowsContainerViewRef;
|
1290
1301
|
this.overlayWindowFocusManager = new OverlayWindowFocusManager(rootMagicElement);
|
1302
|
+
this.changeDetectorRef = changeDetectorRef;
|
1303
|
+
}
|
1304
|
+
loadAndOpenModule(formName, taskId, taskDescription) {
|
1305
|
+
let moduleRef = this.componentList.getModuleRef(formName);
|
1306
|
+
if (moduleRef == null) {
|
1307
|
+
let lazyLoadModule = this.componentList.getLazyLoadModuleData(formName);
|
1308
|
+
if (lazyLoadModule != null) {
|
1309
|
+
let moduleName = lazyLoadModule.moduleName.replace("Magic", "");
|
1310
|
+
moduleName = moduleName.replace("Module", "");
|
1311
|
+
this.magicLazyModuleLoader.Load(moduleName).then(m => {
|
1312
|
+
const compiled = this.compiler.compileModuleAndAllComponentsSync(m[lazyLoadModule.moduleName]);
|
1313
|
+
moduleRef = compiled.ngModuleFactory.create(this.injector);
|
1314
|
+
this.open(formName, taskId, taskDescription);
|
1315
|
+
this.finishConfirmation(Styles.MSGBOX_BUTTON_OK, true);
|
1316
|
+
});
|
1317
|
+
}
|
1318
|
+
}
|
1319
|
+
else {
|
1320
|
+
this.open(formName, taskId, taskDescription);
|
1321
|
+
this.finishConfirmation(Styles.MSGBOX_BUTTON_OK, true);
|
1322
|
+
}
|
1291
1323
|
}
|
1292
1324
|
open(formName, taskId, taskDescription) {
|
1293
1325
|
let comp = this.componentList.lazyLoadModulesMap != null && this.componentList.lazyLoadModulesMap.hasOwnProperty(formName) ? null : this.componentList.getComponent(formName);
|
@@ -1298,6 +1330,7 @@ class OverlayWindowService {
|
|
1298
1330
|
guiEvent.TaskID = taskId;
|
1299
1331
|
this.engineMagicService.insertEvent(guiEvent);
|
1300
1332
|
});
|
1333
|
+
this.changeDetectorRef.detectChanges();
|
1301
1334
|
}
|
1302
1335
|
close(commandStr) {
|
1303
1336
|
this.overlayWindowsContainerViewRef.remove();
|
@@ -1343,14 +1376,14 @@ class OverlayWindowService {
|
|
1343
1376
|
return componentRef;
|
1344
1377
|
}
|
1345
1378
|
}
|
1346
|
-
OverlayWindowService.ɵfac = function OverlayWindowService_Factory(t) { return new (t || OverlayWindowService)(i0.ɵɵinject(i0.ComponentFactoryResolver), i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(EngineMagicService), i0.ɵɵinject(OverlayContainerMagicProvider), i0.ɵɵinject(ConfirmationComponentsMagicProvider)); };
|
1379
|
+
OverlayWindowService.ɵfac = function OverlayWindowService_Factory(t) { return new (t || OverlayWindowService)(i0.ɵɵinject(i0.ComponentFactoryResolver), i0.ɵɵinject(ComponentListMagicService), i0.ɵɵinject(EngineMagicService), i0.ɵɵinject(MagicLazyLoaderService), i0.ɵɵinject(i0.Injector), i0.ɵɵinject(i0.Compiler), i0.ɵɵinject(OverlayContainerMagicProvider), i0.ɵɵinject(ConfirmationComponentsMagicProvider)); };
|
1347
1380
|
OverlayWindowService.ɵprov = i0.ɵɵdefineInjectable({ token: OverlayWindowService, factory: OverlayWindowService.ɵfac, providedIn: 'root' });
|
1348
1381
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OverlayWindowService, [{
|
1349
1382
|
type: Injectable,
|
1350
1383
|
args: [{
|
1351
1384
|
providedIn: 'root'
|
1352
1385
|
}]
|
1353
|
-
}], function () { return [{ type: i0.ComponentFactoryResolver }, { type: ComponentListMagicService }, { type: EngineMagicService }, { type: OverlayContainerMagicProvider }, { type: ConfirmationComponentsMagicProvider }]; }, null); })();
|
1386
|
+
}], function () { return [{ type: i0.ComponentFactoryResolver }, { type: ComponentListMagicService }, { type: EngineMagicService }, { type: MagicLazyLoaderService }, { type: i0.Injector }, { type: i0.Compiler }, { type: OverlayContainerMagicProvider }, { type: ConfirmationComponentsMagicProvider }]; }, null); })();
|
1354
1387
|
class OverlayWindowFocusManager {
|
1355
1388
|
constructor(rootMagicElement) {
|
1356
1389
|
this.rootMagicElement = null;
|
@@ -1886,7 +1919,7 @@ class TaskMagicService {
|
|
1886
1919
|
if (isUndefined(val))
|
1887
1920
|
return val;
|
1888
1921
|
else
|
1889
|
-
return (val != null) ? +val : null;
|
1922
|
+
return (val != null) ? (typeof val === 'string') ? val : +val : null;
|
1890
1923
|
default:
|
1891
1924
|
return val;
|
1892
1925
|
}
|
@@ -1941,7 +1974,7 @@ class TaskMagicService {
|
|
1941
1974
|
}
|
1942
1975
|
onScrollDown() {
|
1943
1976
|
if (!this.Records.includesLast) {
|
1944
|
-
let guiEvent = getGuiEventObj('getRows', '
|
1977
|
+
let guiEvent = getGuiEventObj('getRows', '', 0);
|
1945
1978
|
guiEvent.Line = this.formGroups.length;
|
1946
1979
|
this.insertEvent(guiEvent);
|
1947
1980
|
}
|
@@ -2759,11 +2792,12 @@ class MagicDirective {
|
|
2759
2792
|
this.eventsOnlyVal = true;
|
2760
2793
|
}
|
2761
2794
|
;
|
2762
|
-
constructor(_task, element, renderer, vcRef, magicRow) {
|
2795
|
+
constructor(_task, element, renderer, vcRef, platform, magicRow) {
|
2763
2796
|
this._task = _task;
|
2764
2797
|
this.element = element;
|
2765
2798
|
this.renderer = renderer;
|
2766
2799
|
this.vcRef = vcRef;
|
2800
|
+
this.platform = platform;
|
2767
2801
|
this.magicRow = magicRow;
|
2768
2802
|
this.eventHandlers = {};
|
2769
2803
|
this.eventsOnlyVal = false;
|
@@ -2785,6 +2819,8 @@ class MagicDirective {
|
|
2785
2819
|
let fromButton = false;
|
2786
2820
|
if (this.htmlElement instanceof HTMLButtonElement)
|
2787
2821
|
fromButton = true;
|
2822
|
+
if (fromButton && (this.platform.IOS || this.platform.SAFARI))
|
2823
|
+
this.task.insertEvent(getGuiEventObj("focus", this.id, +this.rowId));
|
2788
2824
|
this.task.insertEvent(getGuiEventObj(event, this.id, +this.rowId, fromButton));
|
2789
2825
|
if (MagicDirective.noOfAutoCompleteBoxesOpened < 1)
|
2790
2826
|
e.cancelBubble = true;
|
@@ -2926,14 +2962,14 @@ class MagicDirective {
|
|
2926
2962
|
}
|
2927
2963
|
MagicDirective.opened = false;
|
2928
2964
|
MagicDirective.noOfAutoCompleteBoxesOpened = 0;
|
2929
|
-
MagicDirective.ɵfac = function MagicDirective_Factory(t) { return new (t || MagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
2965
|
+
MagicDirective.ɵfac = function MagicDirective_Factory(t) { return new (t || MagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i2$1.Platform), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
2930
2966
|
MagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: MagicDirective, selectors: [["", "magic", ""]], inputs: { magic: "magic", eventsOnly: "eventsOnly", rowId: "rowId" } });
|
2931
2967
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MagicDirective, [{
|
2932
2968
|
type: Directive,
|
2933
2969
|
args: [{
|
2934
2970
|
selector: "[magic]"
|
2935
2971
|
}]
|
2936
|
-
}], function () { return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: RowMagicDirective, decorators: [{
|
2972
|
+
}], function () { return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i2$1.Platform }, { type: RowMagicDirective, decorators: [{
|
2937
2973
|
type: Optional
|
2938
2974
|
}] }]; }, { magic: [{
|
2939
2975
|
type: Input,
|
@@ -2948,8 +2984,8 @@ MagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: MagicDirective, selectors:
|
|
2948
2984
|
class NoControlMagicDirective extends MagicDirective {
|
2949
2985
|
set magic(val) { this.id = val; this.selector = 'magicnc'; }
|
2950
2986
|
;
|
2951
|
-
constructor(_task, element, renderer, vcRef, magicRow) {
|
2952
|
-
super(_task, element, renderer, vcRef, magicRow);
|
2987
|
+
constructor(_task, element, renderer, vcRef, platform, magicRow) {
|
2988
|
+
super(_task, element, renderer, vcRef, platform, magicRow);
|
2953
2989
|
}
|
2954
2990
|
regEvents() {
|
2955
2991
|
super.regEvents();
|
@@ -3111,14 +3147,14 @@ class NoControlMagicDirective extends MagicDirective {
|
|
3111
3147
|
}
|
3112
3148
|
}
|
3113
3149
|
}
|
3114
|
-
NoControlMagicDirective.ɵfac = function NoControlMagicDirective_Factory(t) { return new (t || NoControlMagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
3150
|
+
NoControlMagicDirective.ɵfac = function NoControlMagicDirective_Factory(t) { return new (t || NoControlMagicDirective)(i0.ɵɵdirectiveInject(TaskMagicService), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i2$1.Platform), i0.ɵɵdirectiveInject(RowMagicDirective, 8)); };
|
3115
3151
|
NoControlMagicDirective.ɵdir = i0.ɵɵdefineDirective({ type: NoControlMagicDirective, selectors: [["", "magicnc", ""]], inputs: { magic: ["magicnc", "magic"] }, features: [i0.ɵɵInheritDefinitionFeature] });
|
3116
3152
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NoControlMagicDirective, [{
|
3117
3153
|
type: Directive,
|
3118
3154
|
args: [{
|
3119
3155
|
selector: '[magicnc]'
|
3120
3156
|
}]
|
3121
|
-
}], function () { return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: RowMagicDirective, decorators: [{
|
3157
|
+
}], function () { return [{ type: TaskMagicService }, { type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i2$1.Platform }, { type: RowMagicDirective, decorators: [{
|
3122
3158
|
type: Optional
|
3123
3159
|
}] }]; }, { magic: [{
|
3124
3160
|
type: Input,
|
@@ -3988,7 +4024,7 @@ class MagicShellComponent {
|
|
3988
4024
|
this.engineMagicService.TerminateContextUsingFetchAPI();
|
3989
4025
|
}
|
3990
4026
|
ngAfterViewInit() {
|
3991
|
-
this.overlayWindowService.init(this.overlayWindowsContainerViewRef, this.rootMagicElementRef.nativeElement);
|
4027
|
+
this.overlayWindowService.init(this.overlayWindowsContainerViewRef, this.rootMagicElementRef.nativeElement, this.changeDetectorRef);
|
3992
4028
|
this.engineMagicService.startMagicEngine(this.httpClient);
|
3993
4029
|
}
|
3994
4030
|
setViewContainerRef(vcRef) {
|
@@ -4555,11 +4591,11 @@ class MgDateAdapter extends NativeDateAdapter {
|
|
4555
4591
|
}
|
4556
4592
|
}
|
4557
4593
|
}
|
4558
|
-
MgDateAdapter.ɵfac = function MgDateAdapter_Factory(t) { return new (t || MgDateAdapter)(i0.ɵɵinject(
|
4594
|
+
MgDateAdapter.ɵfac = function MgDateAdapter_Factory(t) { return new (t || MgDateAdapter)(i0.ɵɵinject(i2$1.Platform), i0.ɵɵinject(TaskMagicService), i0.ɵɵinject(MAT_DATE_LOCALE)); };
|
4559
4595
|
MgDateAdapter.ɵprov = i0.ɵɵdefineInjectable({ token: MgDateAdapter, factory: MgDateAdapter.ɵfac });
|
4560
4596
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(MgDateAdapter, [{
|
4561
4597
|
type: Injectable
|
4562
|
-
}], function () { return [{ type:
|
4598
|
+
}], function () { return [{ type: i2$1.Platform }, { type: TaskMagicService }, { type: undefined, decorators: [{
|
4563
4599
|
type: Inject,
|
4564
4600
|
args: [MAT_DATE_LOCALE]
|
4565
4601
|
}] }]; }, null); })();
|