Releases: IgniteUI/igniteui-angular
Releases · IgniteUI/igniteui-angular
9.1.0-alpha.6
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-supportvalue to false in theigx-themefunction.
New Features
-
igxSplittercomponent 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 thetypeinput.
<igx-splitter [type]="type"> <igx-splitter-pane> ... </igx-splitter-pane> <igx-splitter-pane> ... </igx-splitter-pane> </igx-splitter>
- Allows rendering a vertical or horizontal splitter with multiple splitter panes with templatable content.
-
IgxGrid,IgxTreeGrid,IgxHierarchicalGrid- Improved Keyboard navigation feature
- Added ability to pin rows to top or bottom depending on the new
pinninginput.
And new API methodspinRowandunpinRow.
<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
pinninginput.
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
- Added functionality for column selection.
columnSelectionproperty has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.selectedproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selected.selectableproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.onColumnSelectionChangeevent is added for theIgxGrid. It is emitted when the column selection is changed.excelStyleSelectingTemplateproperty is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.selectedColumnsAPI method is added for theIgxGrid. It allows to get all selected columns.selectColumnsAPI method is added for theIgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.deselectColumnsAPI method is added for theIgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.deselectAllColumnsAPI method is added for theIgxGrid. It allows to deselect all columns.getSelectedColumnsDataAPI method is added for theIgxGrid. It allows to get the selected columns data.
-
IgxCombo:- Added
autoFocusSearchinput that allows to manipulate the combo's opening behavior. When the property istrue(by default), the combo's search input is focused on open. When set tofalse, 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.
- Added
-
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
igxDragIgnoredirective that allows children of theigxDragelement to be interactable and receive mouse events. Dragging cannot be performed from those elements that are ignored. - New
dragDirectioninput that can specify only one direction of dragging or both.
- New
RTL Support
igxSliderhave full right-to-left (RTL) support.
9.0.10
8.2.24
9.0.9
9.1.0-alpha.5
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-supportvalue to false in theigx-themefunction.
New Features
-
IgxGrid,IgxTreeGrid,IgxHierarchicalGrid- Added ability to pin rows to top or bottom depending on the new
pinninginput.
And new API methodspinRowandunpinRow.
<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
pinninginput.
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
- Added functionality for column selection.
columnSelectionproperty has been added. It accepts GridSelection mode enumeration. Grid selection mode could be none, single or multiple.selectedproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selected.selectableproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.onColumnSelectionChangeevent is added for theIgxGrid. It is emitted when the column selection is changed.excelStyleSelectingTemplateproperty is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.selectedColumnsAPI method is added for theIgxGrid. It allows to get all selected columns.selectColumnsAPI method is added for theIgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.deselectColumnsAPI method is added for theIgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.deselectAllColumnsAPI method is added for theIgxGrid. It allows to deselect all columns.getSelectedColumnsDataAPI method is added for theIgxGrid. It allows to get the selected columns data.
- Added ability to pin rows to top or bottom depending on the new
-
IgxCombo:- Added
autoFocusSearchinput that allows to manipulate the combo's opening behavior. When the property istrue(by default), the combo's search input is focused on open. When set tofalse, 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.
- Added
-
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
igxSliderhave full right-to-left (RTL) support.
9.1.0-alpha.4
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-supportvalue to false in theigx-themefunction.
New Features
-
IgxGrid,IgxTreeGrid,IgxHierarchicalGrid- Added ability to pin rows to top or bottom depending on the new
pinninginput.
And new API methodspinRowandunpinRow.
<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
pinninginput.
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
- Added functionality for column selection.
selectedproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selected.selectableproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.onColumnSelectionChangeevent is added for theIgxGrid. It is emitted when the column selection is changed.excelStyleSelectingTemplateproperty is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.selectedColumnsAPI method is added for theIgxGrid. It allows to get all selected columns.selectColumnsAPI method is added for theIgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.deselectColumnsAPI method is added for theIgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.deselectAllColumnsAPI method is added for theIgxGrid. It allows to deselect all columns.getSelectedColumnsDataAPI method is added for theIgxGrid. It allows to get the selected columns data.
- Added ability to pin rows to top or bottom depending on the new
-
IgxCombo:- Added
autoFocusSearchinput that allows to manipulate the combo's opening behavior. When the property istrue(by default), the combo's search input is focused on open. When set tofalse, 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.
- Added
RTL Support
igxSliderhave full right-to-left (RTL) support.
9.0.8
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
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
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-supportvalue to false in theigx-themefunction.
New Features
-
IgxGrid,IgxTreeGrid,IgxHierarchicalGrid- Added support for pinning columns on the right. Change the position of pinning using the new
pinninginput.
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
- Added functionality for column selection.
selectedproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selected.selectableproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.onColumnSelectionChangeevent is added for theIgxGrid. It is emitted when the column selection is changed.excelStyleSelectingTemplateproperty is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.selectedColumnsAPI method is added for theIgxGrid. It allows to get all selected columns.selectColumnsAPI method is added for theIgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.deselectColumnsAPI method is added for theIgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.deselectAllColumnsAPI method is added for theIgxGrid. It allows to deselect all columns.getSelectedColumnsDataAPI method is added for theIgxGrid. It allows to get the selected columns data.
- Added support for pinning columns on the right. Change the position of pinning using the new
-
IgxCombo:- Added
autoFocusSearchinput that allows to manipulate the combo's opening behavior. When the property istrue(by default), the combo's search input is focused on open. When set tofalse, 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.
- Added
RTL Support
igxSliderhave full right-to-left (RTL) support.
9.1.0-alpha.2
Themes
- Breaking Change Change the default
$legacy-supportvalue to false in theigx-themefunction.
New Features
IgxGrid,IgxTreeGrid,IgxHierarchicalGrid- Added support for pinning columns on the right. Change the position of pinning using the new
pinninginput.
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
- Added support for pinning columns on the right. Change the position of pinning using the new
IgxCombo:- Added
autoFocusSearchinput that allows to manipulate the combo's opening behavior. When the property istrue(by default), the combo's search input is focused on open. When set tofalse, 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.
- Added
RTL Support
igxSliderhave full right-to-left (RTL) support.