Releases: IgniteUI/igniteui-webcomponents
Releases · IgniteUI/igniteui-webcomponents
3.3.0
[3.3.0] - 2022-07-26
Added
- DateTime input component #314
- Tabs component #341
- Typography styles in themes #392
- Accordion component #418
Changed
-
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.
Fixed
3.3.0-beta.0
[3.3.0-beta.0] - 2022-07-12
Added
Fixed
3.2.0
3.1.0
[3.1.0] - 2022-04-15
Added
Deprecated
- 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.
Fixed
3.0.0
[3.0.0] - 2022-04-12
Changed
- Breaking Change: All dropdown related classes renamed from
IgcDropDown*
toIgcDropdown*
2.2.0
Added
- Drop Down component
- Calendar: Active date can be set via an attribute
2.2.0-beta.1
What's Changed
- chore(*): roadmap-update-11-mar-22 by @radomirchev in #288
- feat(calendar): Set active date through attribute by @rkaraivanov in #303
- chore: Updated package metadata by @rkaraivanov in #307
Full Changelog: 2.2.0-beta.0...2.2.0-beta.1
2.2.0-beta.0
Added
- Drop Down component
2.1.1
Added
-
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
Added
- 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