You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,11 @@
1
1
# Ignite UI for Angular Change Log
2
2
3
3
All notable changes for each version of this project will be documented in this file.
4
+
## 19.1.1
5
+
### New Features
6
+
- IgxListItem
7
+
- Added a new `selected` input property, making it easier to indicate when a list item is selected by applying styling responsible for that state.
8
+
4
9
## 19.1.0
5
10
### General
6
11
-`IgxCarousel`
@@ -11,6 +16,42 @@ All notable changes for each version of this project will be documented in this
11
16
- 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.
12
17
- 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.
13
18
- 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.
19
+
-`IgxQueryBuilder` has new design that comes with updated appearance and new functionality
20
+
-`IgxQueryBuilderComponent`
21
+
- Introduced the ability to create nested queries by specifying IN/NOT IN operators.
22
+
- Introduced the ability to reposition condition chips by dragging or using `Arrow Up/Down`.
23
+
- 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`.
24
+
- Added `disableEntityChange` property that can be used to disable the entity select on root level after the initial selection. Defaults to `false`.
25
+
- Added `disableReturnFieldsChange` property that can be used to disable the fields combo on root level. Defaults to `false`.
26
+
- Added the `canCommit`, `commit` and `discard` public methods that allows the user to save/discard the current state of the expression tree.
27
+
- Added option to template the search value input:
- Expression enters edit mode on single click, `Enter` or `Space`.
43
+
- Selecting conditions inside the `IgxQueryBuilderComponent` is no longer supported. Grouping/ungrouping expressions is now achieved via the newly exposed Drag & Drop functionality.
44
+
- Deleting multiple expressions through the context menu is no longer supported.
45
+
-`IgxQueryBuilderHeaderComponent`
46
+
-**Behavioral Change**
47
+
- Legend is no longer shown.
48
+
- If the `title` input property is not set, by default it would be empty string.
49
+
-**Deprecation**
50
+
- 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`.
51
+
-`IFilteringExpression`
52
+
- A new optional property called `conditionName` has been introduced. This would generally be equal to the existing `condition.name`.
53
+
-`IFilteringOperation`
54
+
- A new optional property called `isNestedQuery` has been introduced. It's used to indicate whether the condition leads to a nested query creation.
3. IgxBannerComponent - Support collapsed input [#14890](https://github.com/IgniteUI/igniteui-angular/issues/14890)
10
-
4. Update of the carousel component [#15025](https://github.com/IgniteUI/igniteui-angular/issues/15025)
7
+
1. Query Builder multi-table query support [#14979](https://github.com/IgniteUI/igniteui-angular/issues/14979)
8
+
2. IgxBannerComponent - Support collapsed input [#14890](https://github.com/IgniteUI/igniteui-angular/issues/14890)
9
+
3. Carousel component vertical orientation support [#15025](https://github.com/IgniteUI/igniteui-angular/issues/15025)
11
10
12
11
## Going down the road
13
12
14
13
1. Provide an option to modify the default enter edit mode conditions, to e.g. allow edit mode start on a single click [#14658](https://github.com/IgniteUI/igniteui-angular/issues/14658)
15
14
2. Provide an excel-like navigation mode for editing where all arrow keys navigate the cell in edit mode. [#14659](https://github.com/IgniteUI/igniteui-angular/issues/14659)
16
15
3. Extend the 18.2 editorOptions property to allow modifying numeric editors to not change the value on up/down arrow press [#14660](https://github.com/IgniteUI/igniteui-angular/issues/14660)
0 commit comments