igniteui-webcomponents
Advanced tools
Changelog
[4.7.0] - 2024-01-05
Tree - Added toggleNodeOnClick
property that determines whether clicking over a node will change its expanded state or not. Defaults to false
. #1003.
Rating - allowReset
added. When enabled selecting the same value will reset the component #1014.
Behavioral change
In previous releases this was the default behavior of the rating component. Make sure to set allowReset
if you need to keep this behavior in your application.
Changelog
[4.6.0] - 2023-12-05
action
slot added to Snackbar #974indicator-expanded
slot added to Expansion panel #982toggle-icon-expanded
slot added to Select #983selectedItem
, items
and groups
gettersChangelog
[4.5.0] - 2023-10-09
size
property and attribute have been deprecated for all components. Use the --ig-size
CSS custom property instead.
The following example sets the size of the avatar component to small:
igc-avatar {
--ig-size: var(--ig-size-small);
}
Changelog
[4.4.0] - 2023-08-30
<form>
and behave like a browser-provided control:
minlength
property is deprecated and will be removed in the next major version. Use minLength
instead.maxlength
property is deprecated and will be removed in the next major version. Use maxLength
instead.readonly
property is deprecated and will be removed in the next major version. Use readOnly
instead.readonly
property is deprecated and will be removed in the next major version. Use readOnly
instead.readonly
property is deprecated and will be removed in the next major version. Use readOnly
instead.minValue
property is deprecated and will be removed in the next major version. Use min
instead.maxValue
property is deprecated and will be removed in the next major version. Use max
instead.readonly
property is deprecated and will be removed in the next major version. Use readOnly
instead.dir
attribute which shadowed the default one. This is a non-breaking change.ariaLabel
shadowed property. This is a non-breaking change.ariaLabelledBy
shadowed attribute. This is a non-breaking change.ariaLabelledBy
shadowed attribute. This is a non-breaking change.ariaLabelledBy
shadowed attribute. This is a non-breaking change.Changelog
[4.3.1] - 2023-08-02
Changelog
[4.3.0] - 2023-06-28
matchDiacritics
to the filtering options property. Defaults to false
.
If set to true
the filter distinguishes between accented letters and
their base letters. Otherwise strings are normalized and then matched.selection
property which returns the current selection as an array of data objects.value
is no longer readonly and can be explicitly set. The value attribute also supports declarative binding,
accepting a valid JSON stringified array.value
type changed from string[]
to ComboValue<T>[]
where
ComboValue<T> = T | T[keyof T]
igcChange
event object properties are also changed to reflect tee new value
type:
interface IgcComboChangeEventArgs<T> {
newValue: ComboValue<T>[];
items: T[];
type: ComboChangeType;
}
sameWidth
, positionStrategy
and flip
. They will be removed in the next major release.Changelog
[4.2.3] - 2023-04-03
closeOnEscape
is deprecated in favor of new property keepOpenOnEscape
.