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
+13-5Lines changed: 13 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.
@@ -96,6 +99,11 @@ For Firefox users, we provide limited scrollbar styling options through the foll
96
99
- **Behavioral Changes** - the `keyboardSupport` input property now defaults to `false`.
97
100
- **Deprecation** - the `keyboardSupport` input property has been deprecated and will be removed in a future version. Keyboard navigation with `ArrowLeft`, `ArrowRight`, `Home`, and `End` keys will be supported when focusing the indicators' container via ` Tab`/`Shift+Tab`.
98
101
102
+
- `IgxCombo`:
103
+
- **Breaking Change** The deprecated `filterable` property is replaced with `disableFiltering`.
104
+
- The dropdown search field placeholder is now part of the Combo's localization resources. It now also uses two resource values depending on whether filtering is active, e.g. in the default `en` locale it remains `'Enter a Search Term'`, but changes to `'Add Item'` when `disableFiltering` and `allowCustomValues` are set to true. For that reason, the existing `searchPlaceholder` input is also **deprecated** in favor of the resources.
105
+
- **Deprecation** - `filterable` from the `filteringOptions` has been deprecated in favor of `disableFiltering`.
106
+
99
107
- `IgxBadge`
100
108
- **Breaking Change** The `$border-width` property has been removed from the badge theme.
101
109
- New outlined variant of the badge component has been added. Users can switch to `outlined` by adding the newly created `outlined` property to a badge.
0 commit comments