All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
5.1.0 - 2024-10-25
- Library - migrated palettes to relative colors #1432
- Badge - update themes #1399
- Card - update themes #1414
- Chips - update themes #1408 #1416
- Dropdown - update themes #1409
- Expansion panel - update themes #1415
- Icon - update theme references #1404 #1423
- Tabs - update themes #1408
- Checkbox, Switch - click event fires more than once #1427
- Radio - click event fires more than once #1428
- Library - export components event maps through the main package entrypoint #1422
- Calendar - cannot select dates before UNIX epoch #1443
5.0.2 - 2024-09-25
- Calendar, Date picker - added header-date slot; renders content instead of the current date/range in the calendar header #1329
- Navigation drawer - use min-width in the mini variant #1394
5.0.1 - 2024-08-30
- Checkbox, Radio, Switch - Exported the
CheckboxChangeEventArgs
andRadioChangeEventArgs
types for public use, providing more flexibility and control over event handling.
- Select - Resolved an issue where pressing the Tab key while a Select component's dropdown was open would incorrectly return focus to the document. Now, focus is correctly returned to the Select component after closing the dropdown.
- Radio - Prevented form submission if a Radio component/group is invalid on initial render within a form context. This ensures that forms with invalid Radio components are not submitted prematurely.
5.0.0 - 2024-08-27
- Icon Registry #1304
- You can now register and replace icons by reference via the
setIconRef
function. To learn more check out the documentation. - All components now use icons by reference internally so that it's easy to replace them without explicitly providing custom templates.
- You can now register and replace icons by reference via the
-
BREAKING: Removed
igcFocus
andigcBlur
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 }>
- BREAKING: igc-form - use the native form element instead.
- BREAKING: Range slider -
ariaThumbLower/ariaThumbUpper
. UsethumbLabelLower/thumbLabelUpper
instead. - BREAKING: Rating -
readonly
property. UsereadOnly
instead. - BREAKING: Dialog -
closeOnEscape
property. UsekeepOpenOnEscape
. - BREAKING: Combo, Select -
positionStrategy
,flip
,sameWidth
removed. - BREAKING: Dropdown -
positionStrategy
removed. - BREAKING: Input -
readonly
,inputmode
,maxlength
andminlength
. Use the nativereadOnly
,inputMode
,maxLength
andminLength
properties instead. - BREAKING: Date-time-input -
minValue
/mavValue
are removed. Usemin
/max
instead. - BREAKING: Removed
size
property from components.
- Date-time input - update masked value according to the input format on focus when value is set #1320
- Radio - do not emit change event on already checked radio
- Calendar - add correct dates DOM parts based on active view [#1278]
- Date-picker, Dropdown & Select - showing the component programmatically in response to an outside click event closes the dropdown popover #1339
- Radio - Initially checked radio by attribute throws error when not being last sibling #1356
4.11.1 - 2024-07-03
- Stepper Design in vertical mode #1246
4.11.0 - 2024-07-03
- Toast Component Indigo Theme #1249
- Rating Component Indigo Theme #1249
- Stepper Component Indigo Theme #1249
4.10.0 - 2024-07-01
- Banner component #1174
- Divider component #1237
- Date picker component #174
- Radio group - Bind underlying radio components name and checked state through the radio group #315
- VSCode custom data intellisense (both HTML and CSS)
- JetBrains editors WebTypes intellisense
- Input
inputmode
property. Aligned with the nativeinputMode
DOM property instead.
- Input, Textarea - passing
undefined
to value sets the underlying input value to undefined #1206 - Mask input - after a form
reset
call correctly update underlying input value and placeholder state - Tree - setting
--ig-size
on the itemindicator
CSS Part will now change the size of the icon - Date-time input - double emit of
igcChange
in certain scenarios - Navigation drawer - mini variant is not initially rendered when not in an open state #1266
- Combo:
4.9.0 - 2024-04-30
- Button group component now allows resetting the selection state via the
selectedItems
property #1168 - Input, Textarea - exposed
validateOnly
to enable validation rules being enforced without restricting user input #1178
- Combo, Select and Dropdown components now use the native Popover API #1082
- Dropdown
positionStrategy
property. The dropdown now uses the Popover API to render its container in the top layer of the browser viewport, making the property obsolete.
- Date-time input - Label in Material theme is broken when component is in read-only mode #1166
4.8.2 - 2024-04-15
- Textarea - resize handle position for non-suffixed textarea #1094
- Tabs - error when dynamically creating and adding a tab group and tabs in a single call stack #1140
- Checkbox/Switch - participate in form submission when initially checked #1144
- Dialog -
igcClosed
fired before the component was actually closed/hidden.
4.8.1 - 2024-04-08
- Date-time input -
inputFormat
is not applied to an already set value #1114 - Checkbox, Radio, Switch - apply form validation synchronously #1122
- Select, Dropdown - Unable to select item when clicking on a wrapping element inside the dropdown/select item slot #1123
- Tree - active state is correctly applied to the correct tree node on click #1131
4.8.0 - 2024-03-20
- Combo component can now set
groupSorting
tonone
which shows the groups in the order of the provided data. #1026 - Button/Icon button - updated visual looks across themes, new states. #1050
- Navigation bar - added border in Bootstrap theme. #1060
- Grouping in Combo component no longer sorts the data.
groupSorting
property now affects the sorting direction only of the groups. Behavioral change In previous release the sorting directions of the groups sorted the items as well. If you want to achieve this behavior you can pass already sorted data to the Combo component.
- Slider
aria-label-upper
andaria-label-lower
are deprecated and will be removed in the next major release. Usethumb-label-upper
andthumb-label-lower
instead.
- Button
- slotted icon size. #1054
- Button group
- Combo/Select
- Slider
- clicks on the slider track now use the track element width as a basis for the calculation. #1049
- input events are not longer emitted while continuously dragging the slider thumb and exceeding upper/lower bounds. #1049
- when setting upper-bound/lower-bound before min/max, the slider will no longer overwrite the bound properties with the previous values of min/max. #1049
- the aria-label bound to the slider thumb is no longer reset on consequent renders. #1049
- Input
- Date-time input
- setRangeText() updates underlying value. #1075
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 tofalse
. #1003. -
Rating -
allowReset
added. When enabled selecting the same value will reset the component #1014. Behavioral changeIn 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.
- Improved WAI-ARIA compliance for Avatar, Badge and Combo components #1007
- Active item visual styles for Dropdown, Select and Combo components #1002
- Navigation drawer - mini variant broken visual style #1011
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 #983- Select, Dropdown - exposed
selectedItem
,items
andgroups
getters
- Updated the package to Lit v3
- Components dark variants are now bound to their shadow root #940
- Components implement default sizes based on current theme #977
- Button group - changed events to non-cancellable #984
- Optimized components CSS and reduced bundle size #972
- WAI-ARIA improvements for Icon, Select, Dropdown and List components #980 #983
- Textarea missing styling parts #944
- Tree item disabled styles #949
- Snackbar removed unnecessary styles #960
- Tree item hover state visual design #987
- Calendar not keeping focus state when switching views #992
4.5.0 - 2023-10-09
- Text area component #764
- Button group component #827
- Toggle button component #877
- Navigation drawer now supports CSS transitions #922
- Position attribute for toast and snackbar #934
- The
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); }
- Combo items position in Safari #903
- Calendar navigation buttons in RTL context #915
- Export
IgcComboChangeEventArgs
type #917 - Combo value and selection states with lazy data binding #937
- Various style and theming fixes and adjustments
4.4.0 - 2023-08-30
- The following components are now Form Associated Custom Elements. They are automatically associated with a parent
<form>
and behave like a browser-provided control:- Button & Icon button
- Checkbox
- Combo
- DateTime input
- Input
- Masked input
- Radio
- Rating
- Single slider
- Select
- Switch
- Stepper now supports animations #861
- IgcForm component is deprecated
- Input component:
minlength
property is deprecated and will be removed in the next major version. UseminLength
instead.maxlength
property is deprecated and will be removed in the next major version. UsemaxLength
instead.readonly
property is deprecated and will be removed in the next major version. UsereadOnly
instead.
- Mask input component:
readonly
property is deprecated and will be removed in the next major version. UsereadOnly
instead.
- DateTime input component:
readonly
property is deprecated and will be removed in the next major version. UsereadOnly
instead.minValue
property is deprecated and will be removed in the next major version. Usemin
instead.maxValue
property is deprecated and will be removed in the next major version. Usemax
instead.
- Rating component:
readonly
property is deprecated and will be removed in the next major version. UsereadOnly
instead.
- Removed our own
dir
attribute which shadowed the default one. This is a non-breaking change. - Slider -
ariaLabel
shadowed property. This is a non-breaking change. - Checkbox -
ariaLabelledBy
shadowed attribute. This is a non-breaking change. - Switch -
ariaLabelledBy
shadowed attribute. This is a non-breaking change. - Radio -
ariaLabelledBy
shadowed attribute. This is a non-breaking change.
- Input - outlined variant styling issues #875 and indigo theme issues #879
- Select - outlined variant styling issues #880
- DateTime Input -
spinUp/spinDown
calls moving the caret when the input is focused #859
4.3.1 - 2023-08-02
- Combo, Input, Select - schema colors #767
- Dropdown - schema colors #828
- Icon - updated theming styles and size #813
- Combo - single selection not working in certain scenarios #816
- Dropdown - various styling fixes #841 #848
- Icon button - border radius with ripple #839
- Icon button - fixed wrong color in Fluent theme #845
- Input - various styling fixes #818 #832 #844
- Tree Item - assign closest igc-tree-item ancestor as a parent #829
- Tabs - internal hidden styles and custom display property #851
4.3.0 - 2023-06-28
- Combo: Added
matchDiacritics
to the filtering options property. Defaults tofalse
. If set totrue
the filter distinguishes between accented letters and their base letters. Otherwise strings are normalized and then matched. - Combo: Added
selection
property which returns the current selection as an array of data objects. - Card: Support explicit height
- Dialog: Added animations
- Snackbar: Added animations
- Toast: Added animations
- Combo:
value
is no longer readonly and can be explicitly set. The value attribute also supports declarative binding, accepting a valid JSON stringified array. - Combo:
value
type changed fromstring[]
toComboValue<T>[]
whereComboValue<T> = T | T[keyof T]
- Combo:
igcChange
event object properties are also changed to reflect tee newvalue
type:interface IgcComboChangeEventArgs<T> { newValue: ComboValue<T>[]; items: T[]; type: ComboChangeType; }
- Select: Deprecated
sameWidth
,positionStrategy
andflip
. They will be removed in the next major release.
- Select: prefix/suffix/helper-text slots not being rendered #722
- Tabs: Nested tabs selection #713
- Dialog: Backdrop doesn't overlay elements #727
- Dropdown: Listbox position on initial open state #723
- Stepper: Stretch vertically in parent container #738
- Navbar: Wrong colors in fluent theme #719
- Animation player throws errors when height is unspecified #793
- DateTimeInput: Intl.DateTimeFormat issues in Chromium based browsers #803
4.2.3 - 2023-04-03
- Dialog - Property
closeOnEscape
is deprecated in favor of new propertykeepOpenOnEscape
.
- Radio Button- colors in selected focus state #685
- Icon Button - set icon size to match other design system products #598, #695
- Chip - removed outline styles for Fluent and Material themes #702
- Calendar - navigation to date on set value #436
- Tabs - not taking the full height of their parents #710
4.2.2 - 2023-03-07
- Button - The prefix/suffix slots are no longer needed and will be removed in the next major release.
- Button - UI inconsistencies #675, #679
- Calendar - Fluent theme inconsistencies #653, #672
- Combo - Selection via API doesn't work on a searched list #649
- Dialog - Fluent theme inconsistency #603
- Input - UI inconsistencies #657, #658
- Toast - Fluent theme inconsistency #668
- Components missing in defineAllComponents #691
- Wrong host sizes for Avatar, Badge, Button and Icon Button #669
4.2.1 - 2023-02-01
- Combo - Matching item not activated on filtering in single selection mode
4.2.0 - 2023-01-31
- Combo - Single Selection mode via the
single-select
attribute #626
- Input - UI inconsistencies #619, #620, #633, #638
- Badge - Doesn't correctly render
igc-icon
and font icons #631 - Radio - UI inconsistencies #621, #623
- Navigation Drawer - Can't override item margin #614
4.1.1 - 2023-01-12
- Input - position label based on component size #589
- Input - material themes don't match design by #580
- Input - do not cache the underlying input #604
- Card - color discrepancy between WC and Angular #586
- Theme - update stale --igc-* variables to --ig-* #603
- Removed dangling references after element disconnect #608
4.1.0 - 2022-12-09
- Stepper Component #219
- Combo Component #411
- Mask Input - Skip literal positions when deleting symbols in the component
- Mask input - Validation state on user input #558
4.0.0 - 2022-11-02
- Themes
- Build - Utilize Ignite UI Theming package when building themes #415
- Sizing - Introduced CSS variables that allow runtime CSS configuration of the size for all or individual components #115
- Spacing - Introduced CSS variables that allow runtime CSS configuration of the internal spacing (padding/margin) of components #506
- Scrollbars - Added the ability to style application-level scrollbars by setting the
ig-scrollbar
CSS class on any element #141
3.4.2 - 2022-11-01
- Resolved importing error for
DateRangeType
#535
3.4.1 - 2022-09-19
- Tabs
selected
attribute breaks content visibility on init #507
3.4.0 - 2022-09-07
- Calendar - range selection a11y improvements #476
- Range slider - a11y improvements for choosing range values #477
- Rating - improved a11y with assistive software now reading the total number of items #478
- Toast - added
role="alert"
to the message container for assistive software to read it without the need of focusing #479 - Chip - made remove button accessible with the keyboard #480
- Button prefix/suffix does not align icons to the button text #491
3.3.1 - 2022-08-10
- Tree - Removed theme-specified height #460
- Dropdown - Dispose of top-level event listeners #462
- Linear Progress - Indeterminate animation in Safari #378
- Radio Group - Child radio components auto-registration #464
3.3.0 - 2022-07-26
- DateTime input component #314
- Tabs component #341
- Typography styles in themes #392
- Accordion component #418
-
Rating - Added support for single selection and empty symbols #428
-
Slider - Improved slider steps rendering #448
-
Components will now auto register their dependencies when they are registered in
defineComponents
import { IgcDropdownComponent, defineComponents } from 'igniteui-webcomponents'; // will automatically register the dropdown item & group elements // as well as their dependencies if any defineComponents(IgcDropdownComponent);
Check the official documentation for more information.
- Remove input helper text container when it is empty #395
- Icon not showing in Safari #393
- Checkbox not showing in Safari #398
- Button stretches correctly in flex containers #407
- Various theming issues #402 #409 #424
- Dropdown - bug fixes and improvements #434
3.2.0 - 2022-05-30
- Mask input #173
- Expansion Panel #177
- Tree #188
- Rating - Added
selected
CSS part and exposed CSS variable to control symbol sizes #340 #371 - Icon Button - Allow slotted content #355
- Navigation drawer - Various styles fixes #356 #349 #363 #364
- Buttons - Vertical align #357 and focus management #380
- Input - Overflow for suffix/prefix #359
- Switch - Collapse with small sizes #362
- List - Overflow behaviour #391
3.1.0 - 2022-04-15
- Chip: Previously exposed
start
andend
slots are replaced by prefix and suffix. They remain active, but are now deprecated and will be removed in a future version.
- Chip: Auto load internal icons #327
- Chip: Selected chip is misaligned #328
- Package: ESM internal import paths
3.0.0 - 2022-04-12
- Breaking Change: All dropdown related classes renamed from
IgcDropDown*
toIgcDropdown*
2.2.0 - 2022-04-01
- Drop Down component
- Calendar: Active date can be set via an attribute
2.1.1 - 2022-03-15
-
Control border radius and elevation from
--igc-radius-factor
and--igc-elevation-factor
:Example:
/* Make all components square and remove all shadows */ :root { --igc-radius-factor: 0; --igc-elevation-factor: 0; }
2.1.0 - 2022-03-15
- Linear Progress component
- Circular Progress component
- Chip component
- Snackbar component
- Toast component
- Rating component
- Component themes can be changed at runtime by calling the
configureTheme(theme: Theme)
function
2.0.0 - 2022-02-03
- Dark Themes
- Slider component
- Range Slider component
- Support
required
property in Radio component.
- Fix checkbox/switch validity status
- Split Calendar component's
value: Date | Date[]
property into two properties -value: Date
andvalues: Date[]
- Replaced Calendar component's
hasHeader
property &has-header
attribute withhideHeader
&hide-header
respectively. - Replaced Card component's
outlined
property withelevated
.
- Removed
igcOpening
,igcOpened
,igcClosing
andigcClosed
events from Navigation drawer component.
1.0.0 - 2021-11-22
Initial release of Ignite UI Web Components
- Avatar component
- Badge component
- Button component
- Calendar component
- Card component
- Checkbox component
- Form component
- Icon component
- Icon button component
- Input component
- List component
- Navigation bar component
- Navigation drawer component
- Radio group component
- Radio component
- Ripple component
- Switch component