Skip to content

Releases: IgniteUI/igniteui-webcomponents

3.3.0

26 Jul 13:53
c528b46
Compare
Choose a tag to compare

[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

  • 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.3.0-beta.0

14 Jul 07:46
aa9265c
Compare
Choose a tag to compare
3.3.0-beta.0 Pre-release
Pre-release

[3.3.0-beta.0] - 2022-07-12

Added

  • DateTime input #314
  • Tabs #341
  • Typography styles in themes #392

Fixed

  • 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

3.2.0

30 May 08:17
1780320
Compare
Choose a tag to compare

[3.2.0] - 2022-05-30

Added

  • 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

Fixed

  • 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

15 Apr 11:52
7d2ac78
Compare
Choose a tag to compare

[3.1.0] - 2022-04-15

Added

  • Chip: Added prefix and suffix slots #334
  • Snackbar: Added toggle method #326

Deprecated

  • Chip: Previously exposed 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.

Fixed

  • Chip: Auto load internal icons #327
  • Chip: Selected chip is misaligned #328
  • Package: ESM internal import paths

3.0.0

12 Apr 08:51
d91be4d
Compare
Choose a tag to compare

[3.0.0] - 2022-04-12

Changed

  • Breaking Change: All dropdown related classes renamed from IgcDropDown* to IgcDropdown*

2.2.0

01 Apr 13:25
8615e35
Compare
Choose a tag to compare

Added

  • Drop Down component
  • Calendar: Active date can be set via an attribute

2.2.0-beta.1

31 Mar 11:58
8c414bc
Compare
Choose a tag to compare
2.2.0-beta.1 Pre-release
Pre-release

What's Changed

Full Changelog: 2.2.0-beta.0...2.2.0-beta.1

2.2.0-beta.0

30 Mar 12:44
8854050
Compare
Choose a tag to compare
2.2.0-beta.0 Pre-release
Pre-release

Added

  • Drop Down component

2.1.1

15 Mar 14:42
3be4275
Compare
Choose a tag to compare

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

15 Mar 14:12
88be8bb
Compare
Choose a tag to compare

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