Skip to content

4.3.0

Compare
Choose a tag to compare
@rkaraivanov rkaraivanov released this 28 Jun 12:31
· 447 commits to master since this release
51942d2

Added

  • Combo: Added matchDiacritics to the filtering options property. Defaults to false.
    If set to true 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

Changed

  • 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 from string[] to ComboValue<T>[] where
    ComboValue<T> = T | T[keyof T]
  • Combo: igcChange event object properties are also changed to reflect tee new value type:
    interface IgcComboChangeEventArgs<T> {
    newValue: ComboValue<T>[];
    items: T[];
    type: ComboChangeType;
    }

Deprecated

  • Select: Deprecated sameWidth, positionStrategy and flip. They will be removed in the next major release.

Fixed

  • 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