Skip to content

Commit a68a410

Browse files
Merge branch 'master' of https://github.com/IgniteUI/igniteui-angular into ganastasov/fix-14174-master
2 parents 1827e33 + 210d53e commit a68a410

File tree

318 files changed

+7499
-5878
lines changed

Some content is hidden

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

318 files changed

+7499
-5878
lines changed

CHANGELOG.md

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,39 @@ 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
13-
- `IgxOverlayService`, `IgxToggleDirective`:
14-
- Added an optional `offsetMode` parameter to the `setOffset` method that determines whether to add (by default) or set the offset values using `OffsetMode.Add` and `OffsetMode.Set`.
15-
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.
38+
39+
### General
40+
- `IgxSimpleCombo`
41+
- **Behavioral Change** When bound to `ngModel` and `formControlName` directives, the model would not be updated when the user types into the input and will only be updated on selection.
42+
1643
## 17.2.0
1744
### New Features
1845
- `IgxAvatar`

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)