Skip to content

Commit c5c26ee

Browse files
committed
21.1.35 source updated
1 parent cd0e379 commit c5c26ee

File tree

1,270 files changed

+17584
-25845
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,270 files changed

+17584
-25845
lines changed

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Editor configuration, see http://editorconfig.org
1+
# Editor configuration, see https://editorconfig.org
22
root = true
33

44
[*]
@@ -8,6 +8,9 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11+
[*.ts]
12+
quote_type = single
13+
1114
[*.md]
1215
max_line_length = off
1316
trim_trailing_whitespace = false

.gitignore

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,16 @@
44
/dist
55
/tmp
66
/out-tsc
7+
# Only exists if Bazel was run
8+
/bazel-out
79

810
# dependencies
911
/node_modules
1012

13+
# profiling files
14+
chrome-profiler-events*.json
15+
speed-measure-plugin*.json
16+
1117
# IDEs and editors
1218
/.idea
1319
.project
@@ -23,6 +29,7 @@
2329
!.vscode/tasks.json
2430
!.vscode/launch.json
2531
!.vscode/extensions.json
32+
.history/*
2633

2734
# misc
2835
/.sass-cache
@@ -37,6 +44,3 @@ testem.log
3744
# System Files
3845
.DS_Store
3946
Thumbs.db
40-
41-
# dynamic files
42-
/src/source

angular.json

Lines changed: 34 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": 1,
44
"newProjectRoot": "projects",
55
"projects": {
6-
"ngsb10": {
6+
"ej2-angular-samples": {
77
"projectType": "application",
88
"schematics": {},
99
"root": "",
@@ -16,8 +16,10 @@
1616
"outputPath": "output",
1717
"index": "src/index.html",
1818
"main": "src/main.ts",
19-
"polyfills": "src/polyfills.ts",
20-
"tsConfig": "./tsconfig.app.json",
19+
"polyfills": [
20+
"zone.js"
21+
],
22+
"tsConfig": "tsconfig.app.json",
2123
"assets": [
2224
"src/favicon.ico",
2325
"src/assets",
@@ -29,48 +31,52 @@
2931
},
3032
"configurations": {
3133
"production": {
32-
"fileReplacements": [
33-
{
34-
"replace": "src/environments/environment.ts",
35-
"with": "src/environments/environment.prod.ts"
36-
}
37-
],
3834
"optimization": true,
39-
"outputHashing": "all",
4035
"sourceMap": false,
41-
"extractCss": true,
4236
"namedChunks": false,
4337
"aot": true,
4438
"extractLicenses": true,
4539
"vendorChunk": false,
46-
"buildOptimizer": true
40+
"buildOptimizer": true,
41+
"outputHashing": "all"
42+
},
43+
"development": {
44+
"buildOptimizer": false,
45+
"optimization": false,
46+
"vendorChunk": true,
47+
"extractLicenses": false,
48+
"sourceMap": true,
49+
"namedChunks": true
4750
}
48-
}
51+
},
52+
"defaultConfiguration": "production"
4953
},
5054
"serve": {
5155
"builder": "@angular-devkit/build-angular:dev-server",
52-
"options": {
53-
"browserTarget": "ngsb10:build"
54-
},
5556
"configurations": {
5657
"production": {
57-
"browserTarget": "ngsb10:build:production"
58+
"browserTarget": "ej2-angular-samples:build:production"
59+
},
60+
"development": {
61+
"browserTarget": "ej2-angular-samples:build:development"
5862
}
59-
}
63+
},
64+
"defaultConfiguration": "development"
6065
},
6166
"extract-i18n": {
6267
"builder": "@angular-devkit/build-angular:extract-i18n",
6368
"options": {
64-
"browserTarget": "ngsb10:build"
69+
"browserTarget": "ej2-angular-samples:build"
6570
}
6671
},
6772
"test": {
6873
"builder": "@angular-devkit/build-angular:karma",
6974
"options": {
70-
"main": "src/test.ts",
71-
"polyfills": "src/polyfills.ts",
72-
"tsConfig": "./tsconfig.spec.json",
73-
"karmaConfig": "src/karma.conf.js",
75+
"polyfills": [
76+
"zone.js",
77+
"zone.js/testing"
78+
],
79+
"tsConfig": "tsconfig.spec.json",
7480
"assets": [
7581
"src/favicon.ico",
7682
"src/assets"
@@ -94,6 +100,9 @@
94100
}
95101
}
96102
}
97-
}},
98-
"defaultProject": "ngsb10"
103+
}
104+
},
105+
"cli": {
106+
"analytics": false
107+
}
99108
}

config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"styleDependency": ["ej2"],
66
"github": ["/source/**/*.{css,ts,html,json}", "!/source/**/*.{d.ts,ngfactory.ts,ngstyle.ts,ngsummary.json}", "./styles/images{,/**}", "./styles/{index.css,highlight.css}", "./styles/*.scss", "./dist/zone.min.js", "/source/**/images{,/**}", "/source/common/cldr-data{,/**}", "./index.html", "./favicon.ico", "package.json", "tsconfig-aot.json", "webpack.config.js", "license"],
77
"publishSamples": ["./output/**/*.*"],
8+
"releaseVersion": "21.2.3",
89
"customNames": [
910
"listview",
1011
"html",
@@ -45,4 +46,4 @@
4546
"bpmn",
4647
"pdfviewer"
4748
]
48-
}
49+
}

0 commit comments

Comments
 (0)