Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@ All notable changes for each version of this project will be documented in this
- Added support for the Ivy renderer.
- **Breaking Changes** The following classes have been renamed. Using `ng update` will apply automatically migrate your project to use the new names.
- `IgxDropDownBase` -> `IgxDropDownBaseDirective`
- `IgxDropDownItemBase` -> `IgxDropDownBaseDirective`
- `IgxDropDownItemBase` -> `IgxDropDownItemBaseDirective`
- `IgxGridBaseComponent` -> `IgxGridBaseDirective`
- `IgxRowComponent` -> `IgxRowDirective`
- `IgxHierarchicalGridBaseComponent` -> `IgxHierarchicalGridBaseDirective`
- `IgxMonthPickerBase` -> `IgxMonthPickerBaseDirective`
- `IgxBaseExporter` -> `IgxBaseExporterDirective`

- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
- **Behavioral Change** - Pinning columns is no longer automatically prevented when the pinning area would exceed the size of the grid.
Expand Down
18 changes: 16 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"outputPath": "dist/igniteui-dev-demos",
"index": "src/index.html",
"main": "src/main.ts",
Expand All @@ -35,6 +36,12 @@
},
"configurations": {
"production": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
Expand All @@ -50,6 +57,12 @@
"buildOptimizer": true
},
"hmr": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"fileReplacements": [{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.hmr.ts"
Expand Down Expand Up @@ -146,8 +159,9 @@
},
"configurations": {
"production": {
"project": "projects/igniteui-angular/ng-package.prod.json"
}
"project": "projects/igniteui-angular/ng-package.prod.json",
"tsConfig": "projects/igniteui-angular/tsconfig.lib.prod.json"
}
}
},
"test": {
Expand Down
Loading