|
@@ -40,10 +40,12 @@ import { ConfirmOnExitGuard } from '@core/guards/confirm-on-exit.guard'; |
|
@@ -40,10 +40,12 @@ import { ConfirmOnExitGuard } from '@core/guards/confirm-on-exit.guard'; |
40
|
|
40
|
|
41
|
import * as AngularCommon from '@angular/common';
|
41
|
import * as AngularCommon from '@angular/common';
|
42
|
import * as AngularForms from '@angular/forms';
|
42
|
import * as AngularForms from '@angular/forms';
|
|
|
43
|
+import * as AngularRouter from '@angular/router';
|
43
|
import * as AngularCdkCoercion from '@angular/cdk/coercion';
|
44
|
import * as AngularCdkCoercion from '@angular/cdk/coercion';
|
44
|
import * as AngularCdkKeycodes from '@angular/cdk/keycodes';
|
45
|
import * as AngularCdkKeycodes from '@angular/cdk/keycodes';
|
45
|
import * as AngularMaterialChips from '@angular/material/chips';
|
46
|
import * as AngularMaterialChips from '@angular/material/chips';
|
46
|
import * as AngularMaterialAutocomplete from '@angular/material/autocomplete';
|
47
|
import * as AngularMaterialAutocomplete from '@angular/material/autocomplete';
|
|
|
48
|
+import * as AngularMaterialDialog from '@angular/material/dialog';
|
47
|
import * as NgrxStore from '@ngrx/store';
|
49
|
import * as NgrxStore from '@ngrx/store';
|
48
|
import * as TranslateCore from '@ngx-translate/core';
|
50
|
import * as TranslateCore from '@ngx-translate/core';
|
49
|
import * as TbCore from '@core/public-api';
|
51
|
import * as TbCore from '@core/public-api';
|
|
@@ -58,10 +60,12 @@ const ruleNodeConfigResourcesModulesMap = { |
|
@@ -58,10 +60,12 @@ const ruleNodeConfigResourcesModulesMap = { |
58
|
'@angular/core': SystemJS.newModule(AngularCore),
|
60
|
'@angular/core': SystemJS.newModule(AngularCore),
|
59
|
'@angular/common': SystemJS.newModule(AngularCommon),
|
61
|
'@angular/common': SystemJS.newModule(AngularCommon),
|
60
|
'@angular/forms': SystemJS.newModule(AngularForms),
|
62
|
'@angular/forms': SystemJS.newModule(AngularForms),
|
|
|
63
|
+ '@angular/router': SystemJS.newModule(AngularRouter),
|
61
|
'@angular/cdk/keycodes': SystemJS.newModule(AngularCdkKeycodes),
|
64
|
'@angular/cdk/keycodes': SystemJS.newModule(AngularCdkKeycodes),
|
62
|
'@angular/cdk/coercion': SystemJS.newModule(AngularCdkCoercion),
|
65
|
'@angular/cdk/coercion': SystemJS.newModule(AngularCdkCoercion),
|
63
|
'@angular/material/chips': SystemJS.newModule(AngularMaterialChips),
|
66
|
'@angular/material/chips': SystemJS.newModule(AngularMaterialChips),
|
64
|
'@angular/material/autocomplete': SystemJS.newModule(AngularMaterialAutocomplete),
|
67
|
'@angular/material/autocomplete': SystemJS.newModule(AngularMaterialAutocomplete),
|
|
|
68
|
+ '@angular/material/dialog': SystemJS.newModule(AngularMaterialDialog),
|
65
|
'@ngrx/store': SystemJS.newModule(NgrxStore),
|
69
|
'@ngrx/store': SystemJS.newModule(NgrxStore),
|
66
|
rxjs: SystemJS.newModule(RxJs),
|
70
|
rxjs: SystemJS.newModule(RxJs),
|
67
|
'rxjs/operators': SystemJS.newModule(RxJsOperators),
|
71
|
'rxjs/operators': SystemJS.newModule(RxJsOperators),
|