igniteui-webcomponents
Advanced tools
Changelog
[5.1.1] - 2024-10-28
Changelog
[5.1.0] - 2024-10-25
Changelog
[5.0.1] - 2024-08-30
CheckboxChangeEventArgs
and RadioChangeEventArgs
types for public use, providing more flexibility and control over event handling.Changelog
[5.0.0] - 2024-08-27
setIconRef
function. To learn more check out the documentation.BREAKING: Removed igcFocus
and igcBlur
events from buttons and inputs - Button, Icon Button, Checkbox, Switch, Combo, Date Time Input, Input, Mask Input, Radios, Select, Textarea.
Use the native focus
& blur
events instead.
Before:
const input = document.createElement('igc-input');
input.addEventListener('igcFocus', focusHandler);
Now:
input.addEventListener('focus', focusHandler);
BREAKING: Checkbox, Switch igcChange
event.
Before:
CustomEvent<boolean>
Now:
CustomEvent<{ checked: boolean; value: string | undefined }>
BREAKING: Radio igcChange
event.
Before:
CustomEvent<boolean>
Now:
CustomEvent<{ checked: boolean; value: string | undefined }>
ariaThumbLower/ariaThumbUpper
. Use thumbLabelLower/thumbLabelUpper
instead.readonly
property. Use readOnly
instead.closeOnEscape
property. Use keepOpenOnEscape
.positionStrategy
, flip
, sameWidth
removed.positionStrategy
removed.readonly
, inputmode
, maxlength
and minlength
.
Use the native readOnly
, inputMode
, maxLength
and minLength
properties instead.minValue
/mavValue
are removed. Use min
/max
instead.size
property from components.