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