Skip to content

Commit

Permalink
Merge branch 'master' into ikitanov/fix-14053-master
Browse files Browse the repository at this point in the history
  • Loading branch information
kacheshmarova authored Jun 3, 2024
2 parents 8694f55 + 4825aa0 commit 478b0f6
Show file tree
Hide file tree
Showing 318 changed files with 7,421 additions and 5,874 deletions.
31 changes: 28 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,34 @@ All notable changes for each version of this project will be documented in this
- `IgxCombo`, `IgxSimpleCombo`:
- Introduced abillity for hiding the clear icon button when the custom clear icon template is empty.
- `IgxDateTimeEditor`, `IgxTimePicker`:
- Now accept the following custom `inputFormat` options, as Angular's DatePipe:
- Fractional seconds: S, SS, SSS.
- Period (Am/Pm): a, aa, aaa, aaaa, aaaaa
- Now accept the following custom `inputFormat` options, as Angular's DatePipe:
- Fractional seconds: S, SS, SSS.
- Period (Am/Pm): a, aa, aaa, aaaa, aaaaa
- `IgxPivotGrid`
- Added templatable row dimension headers displayed on the top, above all row headers.
- Replace the `showPivotConfigurationUI` property with `pivotUI` property, adding ability now to enable/disable the configuration UI and/or the new row dimension headers.
- Added `sortable` property for each IPivotDimension.
### Changes
- 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:
- `Avatar` - Small (All Themes)
- `Button` - Large (Material), Medium (Bootstrap, Fluent, Indigo)
- `Button Group` - Large (Material), Medium (Bootstrap, Fluent, Indigo)
- `Card` - Medium (All Themes)
- `Combo` - Medium (All Themes)
- `Chip` - Medium (All Themes)
- `Date/Time Picker` - Medium (All Themes)
- `Dropdown` - Medium (All Themes)
- `Dialog` - Medium (All Themes)
- `Icon` - Large (All Themes)
- `Icon Button` - Large (Material), Medium (Bootstrap, Fluent, Indigo)
- `Input Group` - Medium (All Themes)
- `List` - Medium (All Themes)
- `Tree` - Medium (All Themes)
- `Rating` - Medium (All Themes)
- `Select` - Medium (All Themes)

### General
- 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.

### General
- `IgxSimpleCombo`
Expand Down
11 changes: 6 additions & 5 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/igniteui-dev-demos",
"main": "./src/main.ts",
"outputPath": {
"base": "dist/igniteui-dev-demos"
},
"index": "src/index.html",
"polyfills": [
"zone.js"
Expand All @@ -34,7 +35,6 @@
],
"scripts": [],
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true,
Expand All @@ -43,7 +43,8 @@
"includePaths": [
"node_modules"
]
}
},
"browser": "./src/main.ts"
},
"configurations": {
"production": {
Expand Down
Loading

0 comments on commit 478b0f6

Please sign in to comment.