Skip to content

Commit 4b4100d

Browse files
authored
Merge pull request #6146 from IgniteUI/dpetev/upgrade-9rc
Angular 9 RC Update
2 parents 1f0e051 + 230de00 commit 4b4100d

File tree

90 files changed

+4324
-1452
lines changed

Some content is hidden

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

90 files changed

+4324
-1452
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ All notable changes for each version of this project will be documented in this
88
- Added support for the Ivy renderer.
99
- **Breaking Changes** The following classes have been renamed. Using `ng update` will apply automatically migrate your project to use the new names.
1010
- `IgxDropDownBase` -> `IgxDropDownBaseDirective`
11-
- `IgxDropDownItemBase` -> `IgxDropDownBaseDirective`
11+
- `IgxDropDownItemBase` -> `IgxDropDownItemBaseDirective`
1212
- `IgxGridBaseComponent` -> `IgxGridBaseDirective`
1313
- `IgxRowComponent` -> `IgxRowDirective`
1414
- `IgxHierarchicalGridBaseComponent` -> `IgxHierarchicalGridBaseDirective`
15+
- `IgxMonthPickerBase` -> `IgxMonthPickerBaseDirective`
16+
- `IgxBaseExporter` -> `IgxBaseExporterDirective`
1517

1618
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
1719
- **Behavioral Change** - Pinning columns is no longer automatically prevented when the pinning area would exceed the size of the grid.

angular.json

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"build": {
1818
"builder": "@angular-devkit/build-angular:browser",
1919
"options": {
20+
"aot": true,
2021
"outputPath": "dist/igniteui-dev-demos",
2122
"index": "src/index.html",
2223
"main": "src/main.ts",
@@ -35,6 +36,12 @@
3536
},
3637
"configurations": {
3738
"production": {
39+
"budgets": [
40+
{
41+
"type": "anyComponentStyle",
42+
"maximumWarning": "6kb"
43+
}
44+
],
3845
"fileReplacements": [{
3946
"replace": "src/environments/environment.ts",
4047
"with": "src/environments/environment.prod.ts"
@@ -50,6 +57,12 @@
5057
"buildOptimizer": true
5158
},
5259
"hmr": {
60+
"budgets": [
61+
{
62+
"type": "anyComponentStyle",
63+
"maximumWarning": "6kb"
64+
}
65+
],
5366
"fileReplacements": [{
5467
"replace": "src/environments/environment.ts",
5568
"with": "src/environments/environment.hmr.ts"
@@ -146,8 +159,9 @@
146159
},
147160
"configurations": {
148161
"production": {
149-
"project": "projects/igniteui-angular/ng-package.prod.json"
150-
}
162+
"project": "projects/igniteui-angular/ng-package.prod.json",
163+
"tsConfig": "projects/igniteui-angular/tsconfig.lib.prod.json"
164+
}
151165
}
152166
},
153167
"test": {

0 commit comments

Comments
 (0)