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
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,6 @@ All notable changes for each version of this project will be documented in this
11
11
- Introduced ability for Simple Combo to automatically select and retain valid input on "Tab" press enhancing user experience by streamlining data entry and reducing the need for manual selection improving form navigation.
12
12
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
13
13
- To streamline the sorting of columns with custom formats, a new `FormattedValuesSortingStrategy` has been introduced. This strategy simplifies the sorting process by allowing direct sorting based on formatted values, eliminating the need to extend the `DefaultSortingStrategy` or implement a custom `ISortingStrategy`. This enhancement improves the ease of handling sorting with custom column formatters.
14
-
15
14
-`IgxCarousel`
16
15
- Added support for vertical alignment. Can be configured via the `vertical` property. Defaults to `false`.
17
16
- Added support for showing/hiding the indicator controls (dots). Can be configured via the `indicators` property. Defaults to `true`.
@@ -38,18 +37,22 @@ All notable changes for each version of this project will be documented in this
38
37
-`IgxDateTimeEditor`
39
38
- Added a new `defaultFormatType` property (`date` | `time` | `dateTime`) which configures the date-time parts
40
39
according to the target type that the editor mask includes. Defaults to `date`.
41
-
40
+
-`IgxTabs`
41
+
- Added `activation` property to control tab selection. In `auto` mode (default), tabs are selected instantly with Arrow or Home/End keys. In `manual` mode, tabs are focused with keys but only selected with Enter or Space.
42
+
-`IgxGridState`
43
+
- 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.
44
+
- Added support for persisting Multi-Row Layout.
42
45
### Themes
43
-
-`Palettes`
46
+
-**Breaking Change**`Palettes`
44
47
- 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.
45
48
46
49
Example:
47
50
```css
48
51
/* 18.1.x and before: */
49
-
background: hsl(var(--igx-primary-600));
52
+
background: hsl(var(--ig-primary-600));
50
53
51
54
/* 18.2.0+: */
52
-
background: var(--igx-primary-600);
55
+
background: var(--ig-primary-600);
53
56
```
54
57
55
58
This change also opens up the door for declaring the base (500) variants of each color in CSS from any color, including other CSS variables, whereas before the Sass `palette` function was needed to generate color shades from abase color.
2.Provide a set of properties to be settable to default grid CRUD editors without the need for templates [#14009](https://github.com/IgniteUI/igniteui-angular/issues/14009)
2.**[DONE]** Provide a set of properties to be settable to default grid CRUD editors without the need for templates [#14009](https://github.com/IgniteUI/igniteui-angular/issues/14009)
20
+
3.**[DONE]** Add Multi-row layout support to igxGridState [#14907](https://github.com/IgniteUI/igniteui-angular/issues/14907)
21
+
4.**[DONE]** Re-use column instances for state persistence [#14896](https://github.com/IgniteUI/igniteui-angular/issues/14896)
22
+
5.**[DONE]** Tabs: add manual activation through keyboard navigation [#14839](https://github.com/IgniteUI/igniteui-angular/issues/14839)
7.**[DONE]** Grids: provide a more straightforward approach to sort by formatted values [#14442](https://github.com/IgniteUI/igniteui-angular/issues/14442)
25
+
8.**[DONE]** IgxSimpleCombo: Combo gets cleared when entering a valid value and press tab [#14085](https://github.com/IgniteUI/igniteui-angular/issues/14085)
26
+
9.**[DONE]** Ability to format igxGrid export to excel summary values [#14626](https://github.com/IgniteUI/igniteui-angular/issues/14626)
27
+
10.**[DONE]** All palette colors migrated to [CSS relative colors syntax](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_colors/Relative_colors)
28
+
29
+
16
30
## Milestone 33, version 18.1 (Released Jul 22nd, 2024)
17
31
18
32
1.**[DONE]** Horizontal row dimension expansion for Pivot Grid [#14270](https://github.com/IgniteUI/igniteui-angular/issues/14270)
0 commit comments