igniteui-webcomponents
Advanced tools
Changelog
[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
.Changelog
[4.2.2] - 2023-03-07