Skip to content

Commit ee60b55

Browse files
Merge branch 'master' into rivanova/banner-role-14230
2 parents 484416e + 738ba71 commit ee60b55

File tree

315 files changed

+7372
-5874
lines changed

Some content is hidden

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

315 files changed

+7372
-5874
lines changed

CHANGELOG.md

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,34 @@ All notable changes for each version of this project will be documented in this
77
- `IgxCombo`, `IgxSimpleCombo`:
88
- Introduced abillity for hiding the clear icon button when the custom clear icon template is empty.
99
- `IgxDateTimeEditor`, `IgxTimePicker`:
10-
- Now accept the following custom `inputFormat` options, as Angular's DatePipe:
11-
- Fractional seconds: S, SS, SSS.
12-
- Period (Am/Pm): a, aa, aaa, aaaa, aaaaa
10+
- Now accept the following custom `inputFormat` options, as Angular's DatePipe:
11+
- Fractional seconds: S, SS, SSS.
12+
- Period (Am/Pm): a, aa, aaa, aaaa, aaaaa
13+
- `IgxPivotGrid`
14+
- Added templatable row dimension headers displayed on the top, above all row headers.
15+
- Replace the `showPivotConfigurationUI` property with `pivotUI` property, adding ability now to enable/disable the configuration UI and/or the new row dimension headers.
16+
- Added `sortable` property for each IPivotDimension.
17+
### Changes
18+
- With the removal of the Display Density token, components now get their default sizes from the theme. Default sizes have changed for most components, with it now being medium (previously large). Here's an exhaustive list of all sizable components and their default sizes by theme:
19+
- `Avatar` - Small (All Themes)
20+
- `Button` - Large (Material), Medium (Bootstrap, Fluent, Indigo)
21+
- `Button Group` - Large (Material), Medium (Bootstrap, Fluent, Indigo)
22+
- `Card` - Medium (All Themes)
23+
- `Combo` - Medium (All Themes)
24+
- `Chip` - Medium (All Themes)
25+
- `Date/Time Picker` - Medium (All Themes)
26+
- `Dropdown` - Medium (All Themes)
27+
- `Dialog` - Medium (All Themes)
28+
- `Icon` - Large (All Themes)
29+
- `Icon Button` - Large (Material), Medium (Bootstrap, Fluent, Indigo)
30+
- `Input Group` - Medium (All Themes)
31+
- `List` - Medium (All Themes)
32+
- `Tree` - Medium (All Themes)
33+
- `Rating` - Medium (All Themes)
34+
- `Select` - Medium (All Themes)
35+
36+
### General
37+
- Removed deprecated property `displayDensity`. Size is now controlled only through the custom CSS property `--ig-size`. Refer to the [Update Guide](https://www.infragistics.com/products/ignite-ui-angular/angular/components/general/update-guide) and components documentation for usage details.
1338

1439
## 17.2.0
1540
### New Features

angular.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@
1515
},
1616
"architect": {
1717
"build": {
18-
"builder": "@angular-devkit/build-angular:browser",
18+
"builder": "@angular-devkit/build-angular:application",
1919
"options": {
20-
"outputPath": "dist/igniteui-dev-demos",
21-
"main": "./src/main.ts",
20+
"outputPath": {
21+
"base": "dist/igniteui-dev-demos"
22+
},
2223
"index": "src/index.html",
2324
"polyfills": [
2425
"zone.js"
@@ -34,7 +35,6 @@
3435
],
3536
"scripts": [],
3637
"extractLicenses": false,
37-
"buildOptimizer": false,
3838
"sourceMap": true,
3939
"optimization": false,
4040
"namedChunks": true,
@@ -43,7 +43,8 @@
4343
"includePaths": [
4444
"node_modules"
4545
]
46-
}
46+
},
47+
"browser": "./src/main.ts"
4748
},
4849
"configurations": {
4950
"production": {

0 commit comments

Comments
 (0)