Skip to content

Releases: IgniteUI/igniteui-angular

9.1.0-alpha.6

10 Apr 06:58
0efe570

Choose a tag to compare

9.1.0-alpha.6 Pre-release
Pre-release

9.1.0

General

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • Behavioral Change - When a column is sortable sort indicator is always visible. The column is sorted when click on it.

Themes

  • Breaking Change Change the default $legacy-support value to false in the igx-theme function.

New Features

  • igxSplitter component added.

    • Allows rendering a vertical or horizontal splitter with multiple splitter panes with templatable content.
      Panes can be resized or collapsed/expanded via the UI. Splitter orientation is defined via the type input.
    <igx-splitter [type]="type">
       <igx-splitter-pane>
       	...
       </igx-splitter-pane>
       <igx-splitter-pane>
       	...
       </igx-splitter-pane>
    </igx-splitter>
  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid

    • Improved Keyboard navigation feature
    • Added ability to pin rows to top or bottom depending on the new pinning input.
      And new API methods pinRow and unpinRow.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { rows: RowPinningPosition.Bottom };
    this.grid.pinRow(rowID);
    • Added support for pinning columns on the right. Change the position of pinning using the new pinning input.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
    • Added functionality for column selection.
    • columnSelection property has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.
    • selected property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.
    • selectable property has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.
    • onColumnSelectionChange event is added for the IgxGrid. It is emitted when the column selection is changed.
    • excelStyleSelectingTemplate property is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.
    • selectedColumns API method is added for the IgxGrid. It allows to get all selected columns.
    • selectColumns API method is added for the IgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.
    • deselectColumns API method is added for the IgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.
    • deselectAllColumns API method is added for the IgxGrid. It allows to deselect all columns.
    • getSelectedColumnsData API method is added for the IgxGrid. It allows to get the selected columns data.
  • IgxCombo:

    • Added autoFocusSearch input that allows to manipulate the combo's opening behavior. When the property is true (by default), the combo's search input is focused on open. When set to false, the focus goes to the combo items container, which can be used to prevent the software keyboard from activating on mobile devices when opening the combo.
  • IgxToast:

    • Added functionality for displaying various content into the toast component. It also allows users to access toast styles through its host element.
  • IgxDrag

    • New igxDragIgnore directive that allows children of the igxDrag element to be interactable and receive mouse events. Dragging cannot be performed from those elements that are ignored.
    • New dragDirection input that can specify only one direction of dragging or both.

RTL Support

  • igxSlider have full right-to-left (RTL) support.

9.0.10

13 Apr 14:03
261aab9

Choose a tag to compare

Bug fixes

  • Changing the Date filtering condition does not trigger filtering #6594
  • Tab items have the same id attribute #6920
  • Excel Style Filtering list is empty when it was previously scrolled down #6893

Test improvements

  • IgxHierarchicalGrid Integration #6959

8.2.24

13 Apr 14:00
f3c4821

Choose a tag to compare

Bug fixes

  • Equals filter does not work for number column in the groupBy dev demo #6965
  • Changing the Date filtering condition does not trigger filtering #6594
  • Tab items have the same id attribute #6920

9.0.9

06 Apr 13:20
c2712ee

Choose a tag to compare

New features

  • igx-grid header title needs to be settable #6940

Bug fixes

  • Tooltip not showing in Fluent Light Theme #7003

Test enhancements

  • IgxHierarchicalGrid selection #6962
  • Grid Paging #6958
  • IgxGrid - Grid Sorting #6997
  • IgxHierarchicalGrid Basic Navigation #6812

9.1.0-alpha.5

03 Apr 08:04
1861fd8

Choose a tag to compare

9.1.0-alpha.5 Pre-release
Pre-release

9.1.0

General

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • Behavioral Change - When a column is sortable sort indicator is always visible. The column is sorted when click on it.

Themes

  • Breaking Change Change the default $legacy-support value to false in the igx-theme function.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid

    • Added ability to pin rows to top or bottom depending on the new pinning input.
      And new API methods pinRow and unpinRow.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { rows: RowPinningPosition.Bottom };
    this.grid.pinRow(rowID);
    • Added support for pinning columns on the right. Change the position of pinning using the new pinning input.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
    • Added functionality for column selection.
    • columnSelection property has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.
    • selected property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.
    • selectable property has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.
    • onColumnSelectionChange event is added for the IgxGrid. It is emitted when the column selection is changed.
    • excelStyleSelectingTemplate property is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.
    • selectedColumns API method is added for the IgxGrid. It allows to get all selected columns.
    • selectColumns API method is added for the IgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.
    • deselectColumns API method is added for the IgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.
    • deselectAllColumns API method is added for the IgxGrid. It allows to deselect all columns.
    • getSelectedColumnsData API method is added for the IgxGrid. It allows to get the selected columns data.
  • IgxCombo:

    • Added autoFocusSearch input that allows to manipulate the combo's opening behavior. When the property is true (by default), the combo's search input is focused on open. When set to false, the focus goes to the combo items container, which can be used to prevent the software keyboard from activating on mobile devices when opening the combo.
  • IgxToast:

    • Added functionality for displaying various content into the toast component. It also allows users to access toast styles through its host element.

RTL Support

  • igxSlider have full right-to-left (RTL) support.

9.1.0-alpha.4

30 Mar 15:01
329bc77

Choose a tag to compare

9.1.0-alpha.4 Pre-release
Pre-release

General

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • Behavioral Change - When a column is sortable sort indicator is always visible. The column is sorted when click on it.

Themes

  • Breaking Change Change the default $legacy-support value to false in the igx-theme function.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid

    • Added ability to pin rows to top or bottom depending on the new pinning input.
      And new API methods pinRow and unpinRow.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { rows: RowPinningPosition.Bottom };
    this.grid.pinRow(rowID);
    • Added support for pinning columns on the right. Change the position of pinning using the new pinning input.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
    • Added functionality for column selection.
    • selected property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.
    • selectable property has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.
    • onColumnSelectionChange event is added for the IgxGrid. It is emitted when the column selection is changed.
    • excelStyleSelectingTemplate property is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.
    • selectedColumns API method is added for the IgxGrid. It allows to get all selected columns.
    • selectColumns API method is added for the IgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.
    • deselectColumns API method is added for the IgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.
    • deselectAllColumns API method is added for the IgxGrid. It allows to deselect all columns.
    • getSelectedColumnsData API method is added for the IgxGrid. It allows to get the selected columns data.
  • IgxCombo:

    • Added autoFocusSearch input that allows to manipulate the combo's opening behavior. When the property is true (by default), the combo's search input is focused on open. When set to false, the focus goes to the combo items container, which can be used to prevent the software keyboard from activating on mobile devices when opening the combo.

RTL Support

  • igxSlider have full right-to-left (RTL) support.

9.0.8

30 Mar 15:00
da53426

Choose a tag to compare

Bug fixes

  • [igx-tabs] integration with router outlet is not considering guards and updates UI incorrectly #6845
  • When filtering input has null value and click on button Close the filtering chip is not visible #6519
  • Last page will greater than total pages if #6861
  • [igx-select] Disabled select can still be focused and change its value using keyboard #6908
  • igx-grid overrides any applied css classes #6931
  • The grid loading overlay container is not hidden during init causing autosizing issues in Firefox #6934
  • Exception is thrown with bootstrap theme #6990

Enhancements (tests)

  • IgxGrid - Row Selection #6888

8.2.23

30 Mar 14:56
a10d42e

Choose a tag to compare

Bug fixes

  • [igx-tabs] integration with router outlet is not considering guards and updates UI incorrectly #6845
  • When filtering input has null value and click on button Close the filtering chip is not visible #6519
  • Last page will greater than total pages if #6861
  • [igx-select] Disabled select can still be focused and change its value using keyboard #6908

9.1.0-alpha.3

19 Mar 06:52
ff0f4d7

Choose a tag to compare

9.1.0-alpha.3 Pre-release
Pre-release

General

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • Behavioral Change - When a column is sortable sort indicator is always visible. The column is sorted when click on it.

Themes

  • Breaking Change Change the default $legacy-support value to false in the igx-theme function.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid

    • Added support for pinning columns on the right. Change the position of pinning using the new pinning input.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
    • Added functionality for column selection.
    • selected property has been added to the IgxColumnComponent; Allows you to set whether the column is selected.
    • selectable property has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.
    • onColumnSelectionChange event is added for the IgxGrid. It is emitted when the column selection is changed.
    • excelStyleSelectingTemplate property is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.
    • selectedColumns API method is added for the IgxGrid. It allows to get all selected columns.
    • selectColumns API method is added for the IgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.
    • deselectColumns API method is added for the IgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.
    • deselectAllColumns API method is added for the IgxGrid. It allows to deselect all columns.
    • getSelectedColumnsData API method is added for the IgxGrid. It allows to get the selected columns data.
  • IgxCombo:

    • Added autoFocusSearch input that allows to manipulate the combo's opening behavior. When the property is true (by default), the combo's search input is focused on open. When set to false, the focus goes to the combo items container, which can be used to prevent the software keyboard from activating on mobile devices when opening the combo.

RTL Support

  • igxSlider have full right-to-left (RTL) support.

9.1.0-alpha.2

18 Mar 13:27
b36b75e

Choose a tag to compare

9.1.0-alpha.2 Pre-release
Pre-release

Themes

  • Breaking Change Change the default $legacy-support value to false in the igx-theme function.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • Added support for pinning columns on the right. Change the position of pinning using the new pinning input.
    <igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
    public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
  • IgxCombo:
    • Added autoFocusSearch input that allows to manipulate the combo's opening behavior. When the property is true (by default), the combo's search input is focused on open. When set to false, the focus goes to the combo items container, which can be used to prevent the software keyboard from activating on mobile devices when opening the combo.

RTL Support

  • igxSlider have full right-to-left (RTL) support.