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
- Exposed `comboIgnoreDiacriticsFilter` filter function which normalizes diacritics to their base representation.
39
+
When the combo components are configured with it, filtering for **"resume"** will match both **"resume"** and **"résumé"**.
37
40
38
41
### General
39
42
- `IgxStepper`:
@@ -48,11 +51,11 @@ All notable changes for each version of this project will be documented in this
48
51
- All Ignite UI for Angular components are now exported as `standalone` components. The library still exports `NgModules`, which have been preserved for backward compatibility, but they no longer declare any of the Ignite UI for Angular components, instead they just import and export the `standalone` components. The `standalone` components are still in a preview stage. Some utility directive exports may change in the future and may be missing from the documentation in the initial release, hence the `preview` state of the feature.
49
52
50
53
Now you can do:
51
-
54
+
52
55
```typescript
53
56
// IGX_GRID_DIRECTIVES exports all grid related components and directives
54
57
import { IGX_GRID_DIRECTIVES } from 'igniteui-angular';
55
-
58
+
56
59
@Component({
57
60
selector: 'app-grid-sample',
58
61
styleUrls: ['grid.sample.scss'],
@@ -61,13 +64,13 @@ All notable changes for each version of this project will be documented in this
61
64
imports: [IGX_GRID_DIRECTIVES, AsyncPipe]
62
65
})
63
66
```
64
-
67
+
65
68
or
66
-
69
+
67
70
```typescript
68
71
// Single import of only the <igx-grid> component.
0 commit comments