Skip to content
This repository was archived by the owner on Feb 26, 2020. It is now read-only.

Commit 554f84d

Browse files
Rosen Konstantinovtsvetomir
Rosen Konstantinov
authored andcommitted
fix: Kendo SystemJS configuration
* Add @angular/animations * Add Grid Excel Export dependencies
1 parent 18a04ff commit 554f84d

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

src/systemjs.config.js

+21-2
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,22 @@
1414
'app': 'app',
1515

1616
// angular bundles
17+
'@angular/animations': 'npm:@angular/animations/bundles/animations.umd.js',
18+
'@angular/animations/browser': 'npm:@angular/animations/bundles/animations-browser.umd.js',
1719
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
1820
'@angular/common': 'npm:@angular/common/bundles/common.umd.js',
1921
'@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
2022
'@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
2123
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
24+
'@angular/platform-browser/animations': 'npm:@angular/platform-browser/bundles/platform-browser-animations.umd.js',
2225
'@angular/http': 'npm:@angular/http/bundles/http.umd.js',
2326
'@angular/router': 'npm:@angular/router/bundles/router.umd.js',
2427
'@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
2528

2629
// other libraries
27-
'rxjs': 'npm:rxjs',
30+
'rxjs': 'npm:rxjs',
2831
'angular-in-memory-web-api': 'npm:angular-in-memory-web-api/bundles/in-memory-web-api.umd.js',
32+
'jszip': 'npm:jszip',
2933

3034
// Kendo UI for Angular scopes
3135
'@progress': 'npm:@progress',
@@ -41,11 +45,16 @@
4145
}
4246
}
4347
},
44-
48+
4549
rxjs: {
4650
defaultExtension: 'js'
4751
},
4852

53+
jszip: {
54+
defaultExtension: 'js',
55+
main: './dist/jszip.js'
56+
},
57+
4958
// Kendo UI for Angular packages
5059
'npm:@progress/kendo-angular-buttons': {
5160
main: './dist/npm/main.js',
@@ -92,6 +101,16 @@
92101
defaultExtension: 'js'
93102
},
94103

104+
'npm:@progress/kendo-angular-excel-export': {
105+
main: './dist/npm/main.js',
106+
defaultExtension: 'js'
107+
},
108+
109+
'npm:@progress/kendo-ooxml': {
110+
main: './dist/npm/main.js',
111+
defaultExtension: 'js'
112+
},
113+
95114
'npm:@progress/kendo-angular-layout': {
96115
main: './dist/npm/main.js',
97116
defaultExtension: 'js'

0 commit comments

Comments
 (0)