igniteui-webcomponents
Advanced tools
Changelog
[3.3.0] - 2022-07-26
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.
Changelog
[3.1.0] - 2022-04-15
start
and end
slots are replaced by prefix and suffix. They remain active, but are now deprecated and will be removed in a future version.Changelog
[3.0.0] - 2022-04-12
IgcDropDown*
to IgcDropdown*
Changelog
[2.2.0] - 2022-04-01
Changelog
[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;
}