igniteui-webcomponents
Advanced tools
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.Changelog
[4.10.0] - 2024-07-01
inputmode
property. Aligned with the native inputMode
DOM property instead.undefined
to value sets the underlying input value to undefined #1206reset
call correctly update underlying input value and placeholder state--ig-size
on the item indicator
CSS Part will now change the size of the iconigcChange
in certain scenariosChangelog
[4.9.0] - 2024-04-30
selectedItems
property #1168validateOnly
to enable validation rules being enforced without restricting user input #1178positionStrategy
property. The dropdown now uses the Popover API to render its container in the top layer of the browser viewport,
making the property obsolete.Changelog
[4.8.2] - 2024-04-15
igcClosed
fired before the component was actually closed/hidden.Changelog
[4.8.1] - 2024-04-08
inputFormat
is not applied to an already set value #1114