igniteui-angular
Advanced tools
Changelog
19.0.0
IgxFilteringService
, IgxGridBaseDirective
filterGlobal
method has been deprecated and will be removed in a future version.IgxColumn
disabledSummaries
property, allowing users to specify which summaries should be disabled for a given column. This property accepts an array of strings corresponding to the summary keys, enabling selective control over both default summaries (e.g., 'Count', 'Min') and any custom summaries created by the user.Themes
light-theme
, dark-theme
, bootstrap-light-theme
, bootstrap-dark-theme
, fluent-light-theme
, fluent-dark-theme
, indigo-light-theme
, and indigo-dark-theme
have been deprecated and will be removed in version 20 of Ignite UI for Angular. Switch to the more generic theme
mixin instead.
Example:$my-light-palette: palette(
$primary: navy,
$secondary: rebeccapurple,
$surface: white,
);
// Before:
@include light-theme(
$palette: $my-light-palette
);
// After:
@include theme(
$palette: $my-light-palette,
$schema: $light-material-schema,
);