|
2 | 2 |
|
3 | 3 | All notable changes for each version of this project will be documented in this file. |
4 | 4 |
|
| 5 | +## 19.2.0 |
| 6 | + |
| 7 | +### General |
| 8 | +- `IgxCarousel` |
| 9 | + - Removed deprecated property `keyboardSupport`. |
| 10 | +- `IgxSlide` |
| 11 | + - **Deprecation** - `tabIndex` has been deprecated and will be removed in a future version. |
| 12 | +- `IgxGrid`, `IgxHierarchicalGrid`, `IgxTreeGrid` |
| 13 | + - A column's `minWidth` and `maxWidth` constrain the user-specified `width` so that it cannot go outside their bounds. |
| 14 | + |
| 15 | +## 19.1.1 |
| 16 | +### New Features |
| 17 | +- IgxListItem |
| 18 | + - Added a new `selected` input property, making it easier to indicate when a list item is selected by applying styling responsible for that state. |
| 19 | + |
5 | 20 | ## 19.1.0 |
6 | 21 | ### General |
7 | 22 | - `IgxCarousel` |
8 | 23 | - **Behavioral Changes** - the `maximumIndicatorsCount` input property now defaults to `10`. |
9 | 24 | - **Deprecation** - `CarouselIndicatorsOrientation` enum members `top` and `bottom` have been deprecated and will be removed in a future version. Use `start` and `end` instead. |
10 | 25 |
|
| 26 | +### New Features |
| 27 | +- `IgxBanner` |
| 28 | + - Introduced a new `expanded` input property, enabling dynamic control over the banner's state. The banner can now be programmatically set to expanded (visible) or collapsed (hidden) both initially and at runtime. Animations will trigger during runtime updates — the **open animation** plays when `expanded` is set to `true`, and the **close animation** plays when set to `false`. However, no animations will trigger when the property is set initially. |
| 29 | + - The banner's event lifecycle (`opening`, `opened`, `closing`, `closed`) only triggers through **user interactions** (e.g., clicking to open/close). Programmatic updates using the `expanded` property will not fire any events. |
| 30 | + - If the `expanded` property changes during an ongoing animation, the current animation will **stop** and the opposite animation will begin from the **point where the previous animation left off**. For instance, if the open animation (10 seconds) is interrupted at 6 seconds and `expanded` is set to `false`, the close animation (5 seconds) will start from its 3rd second. |
| 31 | +- `IgxQueryBuilder` has new design that comes with updated appearance and new functionality |
| 32 | + - `IgxQueryBuilderComponent` |
| 33 | + - Introduced the ability to create nested queries by specifying IN/NOT IN operators. |
| 34 | + - Introduced the ability to reposition condition chips by dragging or using `Arrow Up/Down`. |
| 35 | + - Added the `entities` property that accepts an array of `EntityType` objects describing an entity with its name and an array of fields. The `fields` input property has been deprecated and will be removed in a future version. Automatic migrations are available and will be applied on `ng update`. |
| 36 | + - Added `disableEntityChange` property that can be used to disable the entity select on root level after the initial selection. Defaults to `false`. |
| 37 | + - Added `disableReturnFieldsChange` property that can be used to disable the fields combo on root level. Defaults to `false`. |
| 38 | + - Added the `canCommit`, `commit` and `discard` public methods that allows the user to save/discard the current state of the expression tree. |
| 39 | + - Added option to template the search value input: |
| 40 | + ``` |
| 41 | + <ng-template igxQueryBuilderSearchValue |
| 42 | + let-searchValue |
| 43 | + let-selectedField = "selectedField" |
| 44 | + let-selectedCondition = "selectedCondition" |
| 45 | + let-defaultSearchValueTemplate = "defaultSearchValueTemplate"> |
| 46 | + @if (selectedField?.field === 'Id' && selectedCondition === 'equals'){ |
| 47 | + <input type="text" required [(ngModel)]="searchValue.value"/> |
| 48 | + } @else { |
| 49 | + <ng-container #defaultTemplate *ngTemplateOutlet="defaultSearchValueTemplate"></ ng-container> |
| 50 | + } |
| 51 | + </ng-template> |
| 52 | + ``` |
| 53 | + - **Behavioral Changes** |
| 54 | + - Expression enters edit mode on single click, `Enter` or `Space`. |
| 55 | + - Selecting conditions inside the `IgxQueryBuilderComponent` is no longer supported. Grouping/ungrouping expressions is now achieved via the newly exposed Drag & Drop functionality. |
| 56 | + - Deleting multiple expressions through the context menu is no longer supported. |
| 57 | + - `IgxQueryBuilderHeaderComponent` |
| 58 | + - **Behavioral Change** |
| 59 | + - Legend is no longer shown. |
| 60 | + - If the `title` input property is not set, by default it would be empty string. |
| 61 | + - **Deprecation** |
| 62 | + - The `showLegend` and `resourceStrings` input properties have been deprecated and will be removed in a future version. Automatic migrations are available and will be applied on `ng update`. |
| 63 | +- `IFilteringExpression` |
| 64 | + - A new optional property called `conditionName` has been introduced. This would generally be equal to the existing `condition.name`. |
| 65 | +- `IFilteringOperation` |
| 66 | + - A new optional property called `isNestedQuery` has been introduced. It's used to indicate whether the condition leads to a nested query creation. |
| 67 | + |
11 | 68 | ## 19.0.0 |
12 | 69 | ### General |
13 | 70 | - `IgxFilteringService`, `IgxGridBaseDirective` |
@@ -77,6 +134,7 @@ All notable changes for each version of this project will be documented in this |
77 | 134 | - `IgxGridState` |
78 | 135 | - When possible the state directive nows reuses the column that already exists on the grid when restoring the state, instead of creating new column instances every time. This removes the need to set any complex objects manually back on the column on `columnInit`. The only instance where this is still necessary is when the column (or its children in case of column groups) have no `field` property so there's no way to uniquely identify the matching column. |
79 | 136 | - Added support for persisting Multi-Row Layout. |
| 137 | + |
80 | 138 | ### Themes |
81 | 139 | - **Breaking Change** `Palettes` |
82 | 140 | - All palette colors have been migrated to the [CSS relative colors syntax](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_colors/Relative_colors). This means that color consumed as CSS variables no longer need to be wrapped in an `hsl` function. |
|
0 commit comments