All notable changes for each version of this project will be documented in this file.
-
Added support for the Ivy renderer.
-
Breaking Changes The following classes have been renamed. Using
ng update
will apply automatically migrate your project to use the new names.IgxDropDownBase
->IgxDropDownBaseDirective
IgxDropDownItemBase
->IgxDropDownItemBaseDirective
IgxGridBaseComponent
->IgxGridBaseDirective
IgxRowComponent
->IgxRowDirective
IgxHierarchicalGridBaseComponent
->IgxHierarchicalGridBaseDirective
IgxMonthPickerBase
->IgxMonthPickerBaseDirective
-
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
- Behavioral Change - Pinning columns is no longer automatically prevented when the pinning area would exceed the size of the grid.
igxGridState
directive added to make it easy for developers to save and restore the grid state. The directive exposes thegetState
andsetState
methods to save/restore the state and anoptions
input property to exclude features.
-
IgxCarousel
:- Breaking Changes -The carousel slides are no longer array, they are changed to QueryList.
- Behavioural change - When slides are more than 5, a label is shown instead of the indicators. The count limit of visible indicators can be changed with the input
maximumIndicatorsCount
-
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
:- Master-Detail visualization added for
igxGrid
. Users may now define templates that show additional context for rows when expanded. For more information, please take a look at the official documentation. sortStrategy
input is added, which can be used to set a global sorting strategy for the entire grid. (NOTE: The grid'ssortStrategy
is of different type compared to the column'ssortStrategy
.)NoopSortingStrategy
is added, which can be used to disable the default sorting of the grid by assigning its instance to the grid'ssortStrategy
input. (Useful for remote sorting.)NoopFilteringStrategy
is added, which can be used to disable the default filtering of the grid by assigning its instance to the grid'sfilterStrategy
input. (Useful for remote filtering.)sortingExpressionsChange
event emitter is added, which is fired whenever a change to the sorting expressions has occurred (prior to performing the actual sorting).filteringExpressionsTreeChange
event emitter is added, which is fired whenever a change to the filtering expressions has occurred (prior to performing the actual filtering).advancedFilteringExpressionsTreeChange
event emitter is added, which is fired whenever a change to the advanced filtering expressions has occurred (prior to performing the actual filtering).collapsible
andexpanded
properties are added to the IgxColumnGroupComponent;collapsible
property identifies that certain column group is collapsible;expanded
identifies whether the group is expanded or collapsed initially;collapsibleChange
andexpandedChange
events are added to the IgxColumnGroupComponent which are emited whenevercollapsible
andexpanded
properties are changed accordingly;visibleWhenCollapsed
property has been added to the IgxColumnComponent; Allows you to set whether the column stay visible when its parrent is collapsed.visibleWhenCollapsedChange
events is added to the IgxColumnComponent which are emited whenevervisibleWhenCollapsed
property is changed;collapsibleIndicatorTemplate
property is introduced to IgxColumnGroupComponent, which allows you to set a custom template for the expand collapse indicator;igxCollapsibleIndicator
directive has been introduced, which allows you to set a custom template for the expand collapse indicator;IgxGridExcelStyleFilteringComponent
andIgxAdvancedFilteringDialogComponent
can now be hosted outside of the grid in order to provide the same experience as the built-in filtering UI.IgxOverlayService
:setOffset
method added. It offsets the content along the corresponding axis by the provided amount.
IgxToggleDirective
:setOffset
method added. It offsets the content along the corresponding axis by the provided amount.
IgxRowDragGhost
directive is added. It allows providing a custom template for the drag ghost when dragging a row.
<igx-grid #grid1 [data]="remote | async" primaryKey="ProductID" [rowDraggable]="true"> <igx-column field="ProductName"></igx-column> <igx-column field="ProductID"></igx-column> <igx-column field="UnitsInStock"></igx-column> <ng-template let-data igxRowDragGhost> <div> Moving {{data.ProductName}}! </div> </ng-template> </igx-grid>
- Master-Detail visualization added for
-
IgxSlider
:primaryTicks
input was added. Which sets the number of primary tickssecondaryTicks
input was added. Which sets the number of secondary ticks.showTicks
input was added. Which show/hide all slider ticks and tick labels.primaryTickLabels
input was added. Which shows/hides all primary tick labels.secondaryTickLabels
input was added. Shows/hides all secondary tick labels.ticksOrientation
input was added. Allows to change ticks orientation to top|bottom|mirror.tickLabelsOrientation
input was added. Allows you to change the rotation of all tick labels from horizontal to vertical(toptobottom, bottomtotop).igxSliderTickLabel
directive has been introduced. Allows you to set a custom template for all tick labels.isContinuous
- input has been deleted. The option is not supported anymore.
-
IgxCarousel
:keyboardSupport
input is added, which can be used to enable and disable keyboard navigationgesturesSupport
input is added, which can be used to enable and disable gesturesmaximumIndicatorsCount
input is added, which can be used to set the number of visible indicatorsindicatorsOrientation
input is added, which can be used to set the position of indicators it can be top or bottomanimationType
input is added, which can be used to set animation when changing slidesindicatorTemplate
directive is added, which can be used to provide a custom indicator for carousel. If this property is not provided, a default indicator template will be used instead.nextButtonTemplate
directive is added, which is used to provide a custom next button template. If not provided, a default next button is used.prevButtonTemplate
directive is added, which is used to provide a custom previous button template. If not provided, a default previous button is used.
-
IgxSelect
:- adding
IgxSelectHeaderDirective
andIgxSelectFooterDirective
. These can be used to provide a custom header, respectively footer templates for theigxSelect
drop-down list. If there are no templates marked with these directives - no default templates will be used so the drop-down list will not have header nor footer.
- adding
IgxSelectItem
text
input is added. By default, the Select component will display the selected item's element inner text. In cases with a more complex item template, where more than just text interpolation is used, set the text property to specify what to display in the select field when the item is selected.
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
- The header text of the columns and the column groups now has the
title
attribute set to it in order to expose a native browser tooltip.
- The header text of the columns and the column groups now has the
Most of the components in the framework now have full right-to-left (RTL) support via the newly included RTL themes.
For CSS-based projects add node_modules/igniteui-angular/styles/igniteui-angular-rtl.css
to your angular.json styles collection.
For Sass-based projects pass $direction
to the igx-core
mixin in your root stylesheet.
Example:
// $direction defaults to ltr if it's omitted.
@include igx-core($direction: rtl);
Currently the following components have only partial RTL support:
- Grid (igx-grid)
- Slider (igx-slider)
- Tabs (igx-tabs)
- Circular Progress Indicator (igx-circular-bar)
We plan on adding support for the aforementioned components in the upcoming releases.
- Columns now expose the
cellStyles
property which allows conditional styling of the column cells. Similar tocellClasses
it accepts an object literal where the keys are style properties and the values are expressions for evaluation.
styles = {
color: '#123456',
'font-family': 'monospace'
'font-weight': (_, __, value) => value.startsWith('!') : 'red' : 'inherit'
};
The callback signature for both cellStyles
and cellClasses
is now changed to
(rowData: any, columnKey: string, cellValue: any, rowIndex: number) => boolean
-
IgxTextHighlightDirective
- The default highlight directive styles have been moved to a Sass theme -igx-highlight-theme
; You can modify the resting and active background and text color styles of the directive by passing the respective properties to the Sass theme. You can still pass your own CSS classes to the highlight directive via the cssClass and activeCssClass inputs. -
IgxChip
- Breaking Change The
originalEvent
property for the eventsonMoveStart
,onMoveEnd
,onClick
andonSelection
now provides the events, passed from theigxDrag
directive. The passed original events are in other words the previous events that triggered theigxChip
ones. They also have original events until a browser event is reached.
- Breaking Change The
-
IgxGrid
- Now you can access all grid data inside the custom column summary. Two additional optional parameters are introduced in the IgxSummaryOperandoperate
method.
class MySummary extends IgxNumberSummaryOperand {
constructor() {
super();
}
operate(columnData: any[], allGridData = [], fieldName?): IgxSummaryResult[] {
const result = super.operate(allData.map(r => r[fieldName]));
result.push({ key: 'test', label: 'Total Discounted', summaryResult: allData.filter((rec) => rec.Discontinued).length });
return result;
}
}
Ignite UI for angular now have a new theme that mimics Microsoft "Fluent" design system.
Depending on your use case you can use one of the following mixins:
igx-fluent-theme
and igx-fluent-dark-theme
We also added two new pallets that go with the new theme, $fluent-word-palette
and $fluent-excel-palette
.
Next example shows how you can use the Fluent theme.
// Light version
.fluent-word-theme {
@include igx-fluent-theme($fluent-word-palette);
}
// Dark version
.fluent-excel-dark-theme {
@include igx-fluent-dark-theme($fluent-excel-palette);
}
igx-badge-theme
- Removed the $disable-shadow
property to mitigate confusion when specifying $shadow
explicitly.
For more information about the theming please read our documentation
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
- Advanced Filtering functionality is added. In the advanced filtering dialog, you could create groups of conditions across all grid columns. The advanced filtering button is shown in the grid's toolbar when
allowAdvancedFiltering
andshowToolbar
properties are set totrue
. You could also open/close the advanced filtering dialog using theopenAdvancedFilteringDialog
andcloseAdvancedFilteringDialog
methods. uniqueColumnValuesStrategy
input is added. This property provides a callback for loading unique column values on demand. If this property is provided, the unique values it generates will be used by the Excel Style Filtering (instead of using the unique values from the data that is bound to the grid).[filterStrategy] - input that allows you to override the default filtering strategy
igxExcelStyleLoading
directive is added, which can be used to provide a custom loading template for the Excel Style Filtering. If this property is not provided, a default loading template will be used instead.- introduced new properties
cellSelection
androwSelection
which accept GridSelection mode enumeration. Grid selection mode could be none, single or multiple. AlsohideRowSelectors
property is added, which allows you to show and hide row selectors when row selection is enabled. - introduced functionality for templating row and header selectors - spec
<igx-grid [data]="data", [rowSelection]="'multiple'" primaryKey="ID"> <igx-column field="Name"></igx-column> <igx-column field="Age"></igx-column> <ng-template igxHeadSelector let-headSelector> <igx-icon>done_all</igx-icon> </ng-template> <ng-template igxRowSelector let-rowContext> <igx-switch [checked]="rowContext.selected"></igx-switch> </ng-template> </igx-grid>
- Advanced Filtering functionality is added. In the advanced filtering dialog, you could create groups of conditions across all grid columns. The advanced filtering button is shown in the grid's toolbar when
IgxHierarchicalGrid
- Row Islands now emit child grid events with an additional argument -
owner
, which holds reference to the related child grid component instance.
- Row Islands now emit child grid events with an additional argument -
IgxDrag
- Dragging without ghost. Now it is possible to drag the base element
igxDrag
is instanced on by setting the new inputghost
to false. - Ghost template. A custom ghost template reference can be provided on the new
ghostTemplate
input. - Dragging using a single or multiple handles. New
igxDragHandle
directive is exposed to specify a handle by which an element can be interacted with instead of the whole elementigxDrag
is instanced on. - Linking of drag and drop elements. This can be achieved by using the new provided
dragChannel
input, specifying each element to which channel it corresponds. - Drag animation improvements. Three new methods have been exposed in place of the old
animateToOrigin
input in order to provide more flexibility when wanting to have transition animation to specific position when dropping.setLocation
,transitionToOrigin
andtransitionTo
are all methods that provide a various way to animate a transition to a specific location for the dragged element. - New getters -
location
andoriginLocation
to aid in applying transition animations. - New outputs -
dragMove
,ghostCreate
andghostDestroy
- Dragging without ghost. Now it is possible to drag the base element
IgxDrop
- Linking of drag and drop elements. This can be achieved by using the new provided
dropChannel
input, specifying each drop area to which channel it corresponds. - Drop strategies. Three new drop strategies have been provided - Append, Prepend and Insert. Also an input
dropStrategy
to theigxDrop
which specify which strategy should be used when dropping an element inside the drop area. Custom one can be specified as well.
- Linking of drag and drop elements. This can be achieved by using the new provided
IgxCheckbox
- introduced a new
readonly
property that doesn't allow user interaction to change the state, but keeps the default active style. Intended for integration in complex controls that handle the interaction and control the checkbox instead through binding.
- introduced a new
IgxOverlay
- introduced a new
ContainerPositionStrategy
. The new strategy positions the element inside the containing outlet based on the directions passed in trough PositionSettings.
- introduced a new
IgxChip
- add
onSelectionDone
event that is triggered after all animations and transitions related to selection have ended.
- add
-
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
isCellSelected
method has been deprecated. Now you can useselected
property.rowSelectable
property has been deprecated. Now you can userowSelection
property to enable row selection and also you can show and hide the row selectors by settinghideRowSelectors
property to true or false (which is the default value).- Removed deprecated event
OnFocusChange
IgxGridBaseComponent
exposes a new property,dataView
that returns the currently transformed paged/filtered/sorted/grouped data, displayed in the grid- Breaking Change
igxExcelStyleSortingTemplate
directive is renamed toigxExcelStyleSorting
. - Breaking Change
igxExcelStyleMovingTemplate
directive is renamed toigxExcelStyleMoving
. - Breaking Change
igxExcelStyleHidingTemplate
directive is renamed toigxExcelStyleHiding
. - Breaking Change
onRowSelectionChange
event arguments are changed. Therow
property has been removed and the propertiesadded
,removed
andcancel
are newly added. - Breaking Change
igxExcelStylePinningTemplate
directive is renamed toigxExcelStylePinning
. - Breaking Change
onRowDragEnd
andonRowDragStart
event arguments are changed -owner
now holds reference to the grid component instance, whiledragDirective
hold reference to the drag directive. - Behavioral Change The behavior of the
isLoading
input no longer depends on the state of the data the grid binds to. Setting it totrue
now shows a loading indicator until it is disabled by the user.
-
IgxCombo
- Combo selection is now consistent when
valueKey
is defined. WhenvalueKey
is specified, selection is based on the value keys of the items. For example:
<igx-combo [data]="myCustomData" valueKey="id" displayKey="text"></igx-combo>
export class MyCombo { ... public combo: IgxComboComponent; public myCustomData: { id: number, text: string } = [{ id: 0, name: "One" }, ...]; ... ngOnInit() { // Selection is done only by valueKey property value this.combo.selectItems([0, 1]); } }
- Breaking Change When using
[valueKey]
, combo methods, events and outputs cannot be handled with data item references. - For more information, visit the component's readme
- Combo selection is now consistent when
-
IgxDrag
- Deprecated inputs -
hideBaseOnDrag
,animateOnRelease
,visible
. - Deprecated methods -
dropFinished
. - Breaking Change
ghostImageClass
input is renamed toghostClass
. - Breaking Change
dragGhostHost
input is renamed toghostHost
. - Breaking Change
returnMoveEnd
input is renamed totransitioned
. - Breaking Change
onDragStart
output is renamed todragStart
. - Breaking Change
onDragEnd
output is renamed todragEnd
.
- Deprecated inputs -
-
IgxDrop
- Breaking Change Default drop strategy is now changed to not perform any actions.
- Breaking Change
onEnter
output is renamed toenter
. - Breaking Change
onOver
output is renamed toover
. - Breaking Change
onLeave
output is renamed toleave
. - Breaking Change
onDrop
output is renamed todropped
. - Breaking Change Interfaces
IgxDropEnterEventArgs
,IgxDropLeaveEventArgs
are both now calledIDropBaseEventArgs
. - Breaking Change Interfaces
IgxDropEventArgs
is renamed toIDropDroppedEventArgs
. - Breaking Change Outputs
enter
,over
,leave
(formeronEnter
,onOver
,onLeave
) now have arguments of typeIDropBaseEventArgs
- Breaking Change Output
dropped
(formeronDrop
) now have arguments of typeIDropDroppedEventArgs
IgxDialog
new @InputpositionSettings
is now available. It provides the ability to get/set both position and animation settings of the Dialog component.
IgxCombo
- Combo
onSelectionChange
events now emits the item(s) that were added to or removed from the collection:
<igx-combo (onSelectionChange)="handleChange($event)">
export class Example { ... handleChange(event: IComboSelectionChangeEventArgs) { console.log("Items added: ", [...event.added]); // the items added to the selection in this change console.log("Items removed: ", [...event.removed]); // the items removed from the selection in this change } }
- Combo
IgxDatePicker
valueChange
event is added.
IgxBottomNav
now supports anigx-tab
declaration mode. When in this mode, panels declarations are not accepted and tab items' content is not rendered.- You can use this mode to apply directives on the tab items - for example to achieve routing navigation.
- You are allowed to customize tab items with labels, icons and even templates.
IgxTabs
now supports anigx-tab-item
declaration mode. When in this mode, groups declarations are not accepted and tab items' content is not rendered.- You can use this mode to apply directives on the tab items - for example to achieve routing navigation.
- You are allowed to customize tab items with labels, icons and even templates.
IgxGrid
- Behavioral Change - paging now includes the group rows in the page size. You may find more information about the change in the GroupBy Specification
IgxColumnGroup
- Re-templating the column group header is now possible using the
headerTemplate
input property or theigxHeader
directive.
- Re-templating the column group header is now possible using the
igx-grid-footer
- You can use this to insert a custom footer in the grids.
<igx-grid> <igx-grid-footer> Custom content </igx-grid-footer> </igx-grid>
igx-paginator
- Replaces the current paginator in all grids. Can be used as a standalone component.
Have in mind that if you have set thepaginationTemplate
, you may have to modify your css to display the pagination correctly. The style should be something similar to:.pagination-container { display: flex; justify-content: center; align-items: center; }
- Replaces the current paginator in all grids. Can be used as a standalone component.
IgxCombo
- Input
[overlaySettings]
- allows an object of typeOverlaySettings
to be passed. These custom overlay settings control how the drop-down list displays.
- Input
IgxForOf
now offers usage of local variableseven
,odd
,first
andlast
to help with the distinction of the currently iterated element.
-
igx-list-theme
now have some new parameters for styling.-
$item-background-hover - Change The list item hover background
-
$item-text-color-hover - Change The list item hover text color.
-
$item-subtitle-color - Change The list item subtitle color.
-
$item-subtitle-color-hover - Change The list item hover subtitle color.
-
$item-subtitle-color-active - Change The active list item subtitle color.
-
$item-action-color - Change The list item actions color.
-
$item-action-color-hover - Change The list item hover actions color.
-
$item-action-color-active - Change The active list item actions color.
-
$item-thumbnail-color - Change The list item thumbnail color.
-
$item-thumbnail-color-hover - Change The list item hover thumbnail color.
-
$item-thumbnail-color-active - Change The active list item thumbnail color.
-
-
Behavioral Change default min column width is changed according the grid display density property:
- for
DisplayDensity.comfortable
defaultMinWidth is80px
; - for
DisplayDensity.cosy
defaultMinWidth is64px
; - for
DisplayDensity.compact
defaultMinWidth is56px
; Now you can setminWindth
for a column to a value smaller thandefaultMinWidth
value.
- for
- General
- Importing ES7 polyfill for Object (
'core-js/es7/object'
) for IE is no longer required.
- Importing ES7 polyfill for Object (
IgxDropDown
now supportsDisplayDensity
.[displayDensity]
-@Input()
added to theigx-drop-down
. Takes prevelance over any otherDisplayDensity
provider (e.g. parent component orDisplayDensityToken
provided in module)- The component can also get it's display density from Angular's DI engine (if the
DisplayDensityToken
is provided on a lower level) - Setting
[displayDensity]
affects the control's items' and inputs' css properties, most notably heights, padding, font-size - Available display densities are
compact
,cosy
andcomfortable
(default) - Behavioral Change - default
igx-drop-down-item
height is now40px
(down from48px
)
IgxCombo
- Setting[displayDensity]
now also affects the combo's items- Behavioral Changes
[itemHeight]
defaults to40
([displayDensity]
default iscomfortable
)[itemsMaxHeight]
defaults to10 * itemHeight
.- Changing
[displayDensity]
or[itemHeight]
affect the drop-down container height if[itemsMaxHeight]
is not provided - Setting
[itemHeight]
overrides the height provided by the[displayDensity]
input
IgxSelect
- Setting[displayDensity]
now also affects the select's items- Behavioral Change - default
igx-select-item
height is now40px
(down from48px
)
- Behavioral Change - default
IgxChip
hideBaseOnDrag
input is added that allow the chip base that stays at place to be visible while dragging it.animateOnRelease
input is added that allows to disable the animation that returns the chip when the chip is released somewhere.
IgxTransaction
-getState
accepts one optional parameterpending
ofboolean
type. Whentrue
is providedgetState
will returnstate
from pending states. By defaultgetState
is set tofalse
.
Theming
: Add component schemas for completely round and completely square variations. Can be mixed with the existing light and dark component schemas. For instance:$light-round-input: extend($_light-input-group, $_round-shape-input-group);
There are also prebuilt schema presets for all components (light-round/dark-round and light-square/dark-square), namely $light-round-schema, $light-dark-schema, $light-square-schema, $dark-square-schema
;
-
IgxCombo
: Removed the following deprecated (since 6.2.0) template selectors:#emptyTemplate
#headerTemplate
#footerTemplate
#itemTemplate
#addItemTemplate
#headerItemTemplate
-
igxTimePicker
andigxDatePicker
openDialog()
now has an optional[target: HTMLElement]
parameter. It's used inmode="dropdown"
and the drop down container is positioned according to the provided target.- The custom drop down template target is no longer marked with
#dropDownTarget
, instead it's provided as anHTMLElement
to theopenDialog()
method. - By default, the
igxDatePicker
drop down target is changed from theigxInput
element to theigxInputGroup
element. onClosing
event is added.- Breaking Change
onOpen
event is renamed toonOpened
. - Breaking Change
onClose
event is renamed toonClosed
. - Behavioral Change - action buttons are now available in the dropdown mode.
- Feature
igxDatePicker
andigxTimePicker
now provide the ability for adding custom action buttons. Read up more information in igxDatePicker ReadMe or igxTimePicker ReadMe
-
IgxToggleAction
/IgxTooltip
: Removed the deprecatedcloseOnOutsideClick
Input that has been superseded byoverlaySettings
in 6.2.0. -
IgxList
- The list component has been refactored. It now includes several new supporting directives:igxListThumbnail
- Use it to mark the target as list thumbnail which will be automatically positioned as a first item in the list item;igxListAction
- Use it to mark the target as list action which will be automatically positioned as a last item in the list item;igxListLine
- Use it to mark the target as list content which will be automatically positioned between the thumbnail and action;igxListLineTitle
- Use it to mark the target as list title which will be automatically formatted as a list-item title;igxListLineSubTitle
- Use it to mark the target as list subtitle which will be automatically formatted as a list-item subtitle;
<igx-list> <igx-list-item [isHeader]="true">List items</igx-list-item> <igx-list-item> <igx-avatar igxListThumbnail></igx-avatar> <h1 igxListLineTitle>List item title</h1> <h3 igxListLineSubTitle>List item subtitle</h3> <igx-icon igxListAction>info</igx-icon> </igx-list-item> </igx-list> <igx-list> <igx-list-item [isHeader]="true">List items</igx-list-item> <igx-list-item> <igx-avatar igxListThumbnail></igx-avatar> <span igxListLine>Some content</span> <igx-icon igxListAction>info</igx-icon> </igx-list-item> </igx-list>
-
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
- Breaking Change The condition parameter of the
filterGlobal
method is no longer optional. When the filterGlobal method is called with an invalid condition, it will not clear the existing filters for all columns.
- Breaking Change The condition parameter of the
IgxGrid
- summariesclearSummaryCache()
andrecalculateSummaries()
methods are now removed from the IgxGrid API, beacause they are no longer needed; summaries are updated when some change is perform and the summary cache is cleared automatically when needed;
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
- Breaking Change The condition parameter of the
filterGlobal
method is no longer optional. When the filterGlobal method is called with an invalid condition, it will not clear the existing filters for all columns.
- Breaking Change The condition parameter of the
-
igxSlider
- exposing newlabels
property accepting a collection of literal values that become equally spread over the slider, by placing each element as a thumb label. -
igxSlider
- deprecate isContiunous property. -
IgxChip
hideBaseOnDrag
input is added that allow the chip base that stays at place to be visible while dragging it.animateOnRelease
input is added that allows to disable the animation that returns the chip when the chip is released somewhere.
-
igxTimePicker
changesonClosing
event is added.- Breaking Change
onOpen
event is renamed toonOpened
. - Breaking Change
onClose
event is renamed toonClosed
. - Behavioral Change - action buttons are now available in the dropdown mode.
- Feature
IgxTimePickerComponent
now provides the ability for adding custom action buttons. Read up more information in the ReadMe
-
igxDatePicker
changesonClosing
event is added.- Breaking Change
onOpen
event is renamed toonOpened
. - Breaking Change
onClose
event is renamed toonClosed
. - Behavioral Change - action buttons are now available in the dropdown mode.
- Feature
IgxDatePickerComponent
now provides the ability for adding custom action buttons. Read up more information in the ReadMe
-
Excel-Style Filtering and Quick Filtering user interfaces now display the date picker's calendar in a dropdown.
-
IgxCard
- The card component has been refactored. It now includes several new supporting components/directives:igxCardHeaderTitle
- tag your headings placed in theigx-card-header
container to be displayed as a card title;igxCardHeaderSubtitle
- tag your headings placed in theigx-card-header
container to be displayed as a card subtitle;igxCardThumbnail
- tag anything placed in theigx-card-header
as a thumb to be placed to the left of your titles;igx-card-header
- the card header can now detect and automatically positionigx-avatar
s placed in it;igx-card-media
- wrap images or videos that will be automatically sized for you;igx-card-actions
- the card actions can now detect and automatically position alligxButton
s placed in it;- The card has a new
type
property. It can be set tooutlined
to get the new outlined card look; - The card has a new
horizontal
property. When set to true, the layout will become horizontally aligned;
-
New Directive
igx-divider
- The igx-divider is a thin, configurable line that groups content in lists and layouts. -
IgxDropDown
now supportsDisplayDensity
.[displayDensity]
-@Input()
added to theigx-drop-down
. Takes prevalance over any otherDisplayDensity
provider (e.g. parent component orDisplayDensityToken
provided in module)- The component can also get it's display density from Angular's DI engine (if the
DisplayDensityToken
is provided on a lower level) - Setting
[displayDensity]
affects the control's items' and inputs' css properties, most notably heights, padding, font-size - Available display densities are
compact
,cosy
andcomfortable
(default) - Behavioral Change - default item
igx-drop-down-item
height is now40px
(down from48px
)
-
IgxCombo
- Setting[displayDensity]
now also affects the combo's items- Setting
[itemHeight]
overrides the height provided by the[displayDensity]
input
- Setting
-
IgxSelect
- Setting[displayDensity]
now also affects the select's items
- igx-input: Top of Japanese characters get cut off in Density Compact mode #4752
- When no condition is provided, filter() method of grid throws undescriptive error #4897
- [IE11][igx-grid][MRL] header cell is not row-spanned. #4825
- Select's label is positioned incorrectly #4236
- [igx-grid] Filtering row's chips area is not resized when resizing window. #4906
hideGroupedColumns
hides the whole MRL group #4714- An error is returned when changing rowEditable input and a cell is opened in edit mode #4950
- Row editing border style is not applied correctly for the first record when there is grouping #4968
- Cell navigation does not work along with Multi Row Layout group #4708
- When no condition is provided, filter() method of grid throws undescriptive error #4897
- In slider with type Range when change the lower value to be equal or greater than the upper the range is not correct #4562
- When change the slider type at run time the slider is not updated correctly #4559
- Range Slider Thumps collapsing #2622
- Angular httpinterceptor(jwt token header) not working after importing IgxTreeGridModule in lazy loaded module #4285
- [igx-grid] "quick clicking twice resizer " can sometimes lead to unable to sort. #4858
- TimePicker "hour mode" #4679
-
igx-core()
now includes some styles for printing layout. In order to turn them off, you need to pass an argument and set it tofalse
@include igx-core($print-layout: false);
-
Pager
- Behavioral Change - The pager is now hidden when there are no records in the grid.
- Row editing styles are not applied correctly within multi row layout grid #4859
- Provide a way to animate row drag, when it is released #4775
- There is lag on checking/unchecking an item in an Excel Style Filter with a lot of items #4862
- Make dragIndicatorIconTemplate @ContentChild in the igxHierarchicalGrid #4769
- Add PostDeploy.ps1 script into the repo #4887
- Provide a way to animate row drag, when it is released #4775
- Feature-request: IgxGrid improve Printing Experience #1995
- When column is scrolled and open excel filter, its position is not correct #4898
- IgxCombo is not properly clearing subscription #4928
- "(Blanks)" appears unchecked on reopening the ESF UI if the underlying value is an empty string. #4875
- [igx-tree-grid] loading indicator not shown in IE11 #4754
- Filtering conditions drop down does not behave consistently when the button that opens it is clicked multiple times #4470
- Time picker component fails on dropdown mode in combination with igxTimePickerTemplate modifications #4656
- In IE11 when chips length is bigger then filter row scrolls position is not correct #4699
- Not able to change filter option in excel style filter. #4347
- [igx-grid] rendering performance becomes extremely poor when binding data after initialization. #4839
- Group comparer is not taken into consideration when column is dragged to grouped area #4663
igx-core()
now includes some styles for printing layout. In order to turn them off, you need to pass an argument and set it to false
@include igx-core($print-layout: false);
IgxGrid
Custom keyboard navigationonFocusChange
event is deprecated.onGridKeydown
event is exposed which is emitted whenkeydown
is triggered over element inside grid's bodynavigateTo
method allows you to navigate to a position in the grid based on providedrowindex
andvisibleColumnIndex
, also to execute a custom logic over the target element through a callback function that accepts{ targetType: GridKeydownTargetType, target: Object }
getNextCell
returnsICellPosition
which defines the next cell, according to the current position, that match specific criteria. You can pass callback function as a third parameter ofgetPreviousCell
methodgetPreviousCell
returnsICellPosition
which defines the previous cell, according to the current position, that match specific criteria. You can pass callback function as a third parameter ofgetPreviousCell
method.IgxTransactionService
now cancommit
andclear
transaction(s) by record id with an optional parameter. Thecommit
method will apply to the data all transactions for the providedid
. Theclear
method will remove all transactions for theid
from the transactions log. Additionally both will remove all actions from the undo stack matching the providedid
.
- The ESF animations for opening and closing do not work #4834
- IgxButtonGroup does not respect compact styles #4840
- Not able to change filter option in excel style filter. #4347
- Broken links enhancements #4830
- rowDraggable is applied to grids from all hierarchical levels in hierarchical grid #4789
- [igx-grid][IE11] filtering problems with IME mode. #4636
- Filtering operation crashes when applying filter on a column with many unique values. #4723
- Emit onColumnVisibilityChanged when hiding a column through ESF UI. #4765 #4792
- onColumnVisibilityChanged event is not fired when hiding a column through ESF. #4765
- "Select All" should not be treated as a match when searching. #4020
- Opening the ESF dialog throws an error #4737
- Recalculate igxfor sizes for excel style search list on after view init #4804
- igx-grid: Incorrect height calculation when setting height in percent and binding empty data. #3950
- When grid width is less than 400px and open filter row the arrows for chips are previewed #4700
- Canceling onRowDragStart leaves the drag ghost in the DOM #4802
igxGrid
- Feature
igxGridComponent
now supports Multi Row Layouts. It is configured with the newly addedIgxColumnLayoutComponent
and the columns in it.IgxColumnComponent
now expose four new fields to determine the size and the location of the field into the layout:colStart
- column index from which the field is starting. This property is mandatory.rowStart
- row index from which the field is starting. This property is mandatory.colEnd
- column index where the current field should end. The amount of columns between colStart and colEnd will determine the amount of spanning columns to that field. This property is optional. If not set defaults tocolStart + 1
.rowEnd
- row index where the current field should end. The amount of rows between rowStart and rowEnd will determine the amount of spanning rows to that field. This property is optional. If not set defaults torowStart + 1
.
<igx-column-layout> <igx-column [rowStart]="1" [colStart]="1" field="Country"></igx-column> <igx-column [rowStart]="1" [colStart]="2" field="City"></igx-column> <igx-column [rowStart]="2" [colStart]="1" [colEnd]="3" field="Address"></igx-column> </igx-column-layout>
- Feature
igxGrid
,igxTreeGrid
,igxHierarchicalGrid
-
Feature Grid components now supports Grid Row Dragging . It lets users pass the data of a grid record on to another surface, which has been configured to process/render this data. It can be enabled by using the
rowDraggable
input of the grid. -
Feature The Excel Style Filter dialog and its sub-dialogs now have a display density based on the
displayDensity
input of their respective grid.
-
igxTreeGrid
- Feature The
IgxTreeGridComponent
now supports loading child rows on demand using the newly addedloadChildrenOnDemand
andhasChildrenKey
input properties.
- Feature The
IgxListComponent
- Feature The
IgxListComponent
now provides the ability to choose a display density from a predefined set of options: compact, cosy and comfortable (default one). It can be set by using thedisplayDensity
input of the list.
- Feature The
igxButton
- Feature The
igxButton
now provides the ability to choose a display density from a predefined set of options: compact, cosy and comfortable (default one). It can be set by using thedisplayDensity
input of the button directive.
- Feature The
igxButtonGroup
- Feature The
igxButtonGroup
now provides the ability to choose a display density from a predefined set of options: compact, cosy and comfortable (default one). It can be set by using thedisplayDensity
input of the button group. The buttons within the group will have the same density as the button group. If a button has thedisplayDensity
set in the template, it is not changed by the density of the group where the button is placed.
- Feature The
igxGrid
,igxTreeGrid
,igxHierarchicalGrid
- Feature The Excel Style Filter dialog and its sub-dialogs now have a display density based on the
displayDensity
input of their respective grid.
- Feature The Excel Style Filter dialog and its sub-dialogs now have a display density based on the
IgxDropDown
- now supports virtualized items. Use in conjunction with
IgxForOf
directive, with the following syntax, to display very large list of data:
<igx-drop-down> <div class="wrapping-div"> <igx-drop-down *igxFor="let item of localItems; index as index; scrollOrientation: 'vertical'; containerSize: itemsMaxHeight; itemSize: itemHeight;" [value]="item" [index]="index"> {{ item.data }} </igx-drop-down> </div> </igx-drop-down>
- now supports virtualized items. Use in conjunction with
- Grid remains in pending state after commiting row edit w/o changes #4680
- Filter condition dropdown is not closed on tab navigation #4612
- When filter row is opened navigating with shift and tab on first cell does not selects the cancel button #4537
- Focus is not moved from the filter row to the summary row when the grid has no records #4613
- igx-carousel problem with lost focus #4292
- List items are shifted down on search if the list was scrolled down beforehand. #4645
- [igx-grid] some cells are not rendered when resizing window. #4568
- [igx-grid] after being grouped then resized, horizontal scrolling causes column header misalignment with data cell #4648
- Cells content is misaligned when group by a column and scroll horizontal #4720
- When hide/show columns the grid has empty space #4505
-
IgxGrid
,IgxTreeGrid
,IgxHierarchicalGrid
- Breaking Change The condition parameter of the
filterGlobal
method is no longer optional. When the filterGlobal method is called with an invalid condition, it will not clear the existing filters for all columns.
- Breaking Change The condition parameter of the
-
IgxGrid
- summariesclearSummaryCache()
andrecalculateSummaries()
methods are now removed from the IgxGrid API, beacause they are no longer needed; summaries are updated when some change is perform and the summary cache is cleared automatically when needed;
- igxSlider - exposing new
labels
property accepting a collection of literal values that become equally spread over the slider, by placing each element as a thumb label. - igxSlider - deprecate isContiunous property.
IgxDropDown
now supportsDisplayDensity
.[displayDensity]
-@Input()
added to theigx-drop-down
. Takes prevelance over any otherDisplayDensity
provider (e.g. parent component orDisplayDensityToken
provided in module)- The component can also get it's display density from Angular's DI engine (if the
DisplayDensityToken
is provided on a lower level) - Setting
[displayDensity]
affects the control's items' and inputs' css properties, most notably heights, padding, font-size - Available display densities are
compact
,cosy
andcomfortable
(default) - Behavioral Change - default item
igx-drop-down-item
height is now40px
(down from48px
)
IgxCombo
- Setting[displayDensity]
now also affects the combo's items- Setting
[itemHeight]
overrides the height provided by the[displayDensity]
input
- Setting
IgxSelect
- Setting[displayDensity]
now also affects the select's items
- In slider with type Range when change the lower value to be equal or greater than the upper the range is not correct #4562
- When change the slider type at run time the slider is not updated correctly #4559
- Range Slider Thumps collapsing #2622
- When no condition is provided, filter() method of grid throws undescriptive error #4897
- [igx-grid] Filtering row's chips area is not resized when resizing window. #4906
- Add PostDeploy.ps1 script into the repo #4887
- An error is returned when a row is opened in edit mode and click to search the next item #4902
- [igx-grid] "quick clicking twice resizer " can sometimes lead to unable to sort. #4858
- Child summaries disappears when edit a cell and press tab on click on cell in same row when rowEditable is true #4949
- When no condition is provided, filter() method of grid throws undescriptive error #4897
- When column is scrolled and open excel filter, its position is not correct #4898
- "(Blanks)" appears unchecked on reopening the ESF UI if the underlying value is an empty string. #4875
- There is lag on checking/unchecking an item in an Excel Style Filter with a lot of items #4862
- Group comparer is not taken into consideration when column is dragged to grouped area #4663
- Filtering conditions drop down does not behave consistently when the button that opens it is clicked multiple times #4470
- Condense grid summaries #4694
- When grid width is less than 400px and open filter row the arrows for chips are previewed #4700
- Time picker component fails on dropdown mode in combination with igxTimePickerTemplate modifications #4656
- In IE11 when chips length is bigger then filter row scrolls position is not correct #4699
- The ESF animations for opening and closing do not work #4834
- Not able to change filter option in excel style filter. #4347
- [igx-grid] rendering performance becomes extremely poor when binding data after initialization. #4839
igx-core()
now includes some styles for printing layout.
In order to turn them off, you need to pass an argument and set it to false
@include igx-core($print-layout: false);
Pager
- Behavioral Change - The pager is now hidden when there are no records in the grid.
- ElasticPositionStrategy should resize shown element with Center/Middle directions #4564
- onColumnVisibilityChanged event is not fired when hiding a column through ESF. #4765
- Filtering operation crashes when applying filter on a column with many unique values. #4723
- "Select All" should not be treated as a match when searching. #4020
- igx-grid: Incorrect height calculation when setting height in percent and binding empty data. #3950
- Error is thrown when press escape in the filter row #4712
- Opening the ESF dialog throws an error #4737
- [igx-grid][IE11] "Error: ViewDestroyedError: Attempt to use a destroyed view: detectChanges" is thrown when closing filtering row. #4764
- [igx-grid] some cells don't go into edit state or selected state when resizing window. #4746
- igx-tree-grid when no data in grid pagination shows wrong #4666
- ElasticPositionStrategy should resize shown element with Center/Middle directions #4564
- ESF custom dialog new filter not fully visible #4639
- igx-grid: row virtualization doesn't work when setting height in percent if you fetch and bind data after initial rendering. #3949
- Grid height is calculated wrongly as grid width narrows #4745
- [igx-grid][IE11] filtering problems with IME mode. #4636
IgxGrid
Custom keyboard navigationonFocusChange
event is deprecated.onGridKeydown
is exposed. The event will emitIGridKeydownEventArgs { targetType: GridKeydownTargetType; target: Object; event: Event; cancel: boolean; }
navigateTo(rowIndex: number, visibleColumnIndex: number, callback({targetType, target: Object }))
- this method allows you to navigate to a position in the grid based on providedrowindex
andvisibleColumnIndex
;getNextCell(currentRowIndex, currentvisibleColumnIndex, callback(IgxColumnComponent))
- returns{ rowIndex, visibleColumnIndex }
which defines the next cell, that match specific criteria according to the current positiongetPreviousCell(currentRowIndex, currentvisibleColumnIndex, callback(IgxColumnComponent))
- returns{ rowIndex, visibleColumnIndex }
which defines the previous cell, that match specific criteria according to the current position
- Grid remains in pending state after commiting row edit w/o changes #4680
- Filter condition dropdown is not closed on tab navigation #4612
- When filter row is opened navigating with shift and tab on first cell does not selects the cancel button #4537
- Focus is not moved from the filter row to the summary row when the grid has no records #4613
- igx-carousel problem with lost focus #4292
- List items are shifted down on search if the list was scrolled down beforehand. #4645
- [igx-grid] some cells are not rendered when resizing window. #4568
- [igx-grid] after being grouped then resized, horizontal scrolling causes column header misalignment with data cell #4648
- Cells content is misaligned when group by a column and scroll horizontal #4720
- When hide/show columns the grid has empty space #4505
- Custom filter dialog Excel-Style Filtering does not save the selected operand #4548
- Wrong endEdit call on data operation pipes subscribe #4313
- TreeGrid does not have default loading template #4624
- [igx-grid] Question about resizing behavioral change after v7.2.1. #4610
- [igx-grid] onSelection event comes to emit after ending edit mode. #4625
- Error is thrown when trying to open datepicker with Space key in IE #4495
- DatePicker dropdown overlaps the input when it appears top #4526
- Custom filter dialog of the Excel-style Filtering does not display the selected condition in the correct format #4525
- [igx-grid] group row is duplicated when collapsing all and then expanding a group row. #4650
- Fix scroll wheel tests due to creating wheel event with deltaY sets also wheelDeltaY (PR #4659)
- Update Canonical and HrefLang links for EN and JP environments #4674
- In the Drag and Drop dev sample the background color is not changed in IE and Edge #4597
igxGrid
- Feature The
groupsRecords
property now returns the full grouping tree as in 7.1 and also includes the grouping information for all pages.
- Feature The
- Unreadable icon color when icon is used as a tooltip target with dark-theme #4477
- [igx-tabs] Selection indicator is not resized correctly #4420
- Faulty urls in Typescript #4546
- igx-list theme docs #4390
- Filtering conditions drop down does not behave consistently when the button that opens it is clicked multiple times #4470
- Message 'No records found.' is still previewed when reset filter #4484
- The text in the filter column textbox truncates in the igx-grid component #4496
- Excel style filter does not apply the filter when the value is 0 #4483
- When hold arrow up or down key on a month the focus changes to the year #4585
- Putting two circular progress bars results in duplicate IDs #4410
- igxGrid does not clear groupsRecords when all columns get ungrouped #4515
igxDrop
onEnter
,onLeave
andonDrop
events now have new arguments fororiginalEvent
,offsetX
andoffsetY
relative to the container the igxDrop is instanced.
IgxList
- Feature the
index
property is now an@Input
and can be assigned by structural directives such as*igxFor
.
<igx-list> <div [style.height]="'480px'" [style.overflow]="'hidden'" [style.position]="'relative'"> <igx-list-item [index]="i" *igxFor="let item of data; index as i; scrollOrientation: 'vertical'; containerSize: '480px'; itemSize: '48px'"> <div>{{ item.key }}</div> <div class="contact__info"> <span class="name">{{item.name}}</span> </div> </igx-list-item> </div> </igx-list>
- The
items
property now returns the collection of child items sorted by their index if one is assigned. This is useful when thechildren
order cannot be guaranteed.
- Feature the
- Excel-Style Filtering and Quick Filtering user interfaces now display the date picker's calendar in a dropdown.
IgxCard
- The card component has been refactored. It now includes several new supporting components/directives:igxCardHeaderTitle
- tag your headings placed in theigx-card-header
container to be displayed as a card title;igxCardHeaderSubtitle
- tag your headings placed in theigx-card-header
container to be displayed as a card subtitle;igxCardThumbnail
- tag anything placed in theigx-card-header
as a thumb to be placed to the left of your titles;igx-card-header
- the card header can now detect and automatically positionigx-avatar
s placed in it;igx-card-media
- wrap images or videos that will be automatically sized for you;igx-card-actions
- the card actions can now detect and automatically position alligxButton
s placed in it;- The card has a new
type
property. It can be set tooutlined
to get the new outlined card look; - The card has a new
horizontal
property. When set to true, the layout will become horizontally aligned;
- New Directive
igx-divider
- The igx-divider is a thin, configurable line that groups content in lists and layouts.
- Row editing overlay is not visible when grid has either 1 or 2 rows and height is not set. #4240
- Ctrl + Right Arrow is not working in an expanded child grid in 7.2.x #4414
- In EI11 and error is returned when filter by date #4434
- Calendar should be closed when scrolling is initiated #4099
- The sync service for the horizontal virtualization returns invalid cache values in certain scenarios #4460
- Unreadable icon color when icon is used as a tooltip target with dark-theme #4477
- When first tree grid column is with type date the calendar mode is not correct #4457
- When grid is grouped the search does not scroll to the find result #4327
- Calendar should be closed when scrolling is initiated #4099
- [igx-list] IgxListItem.index returns wrong index when igx-list is virtualized by igxForOf #4465
- [igx-grid] groupsRepcords is not updated correctly when grouping/ungrouping. #4479
- Exceptions are thrown by igxHGrid when columns don't have initial width, or it has been set as a percentage #4491
- Change date pickers' mode to 'dropdown' in all filtering UIs. #4493
- The radio-group display cannot be overridden #4402
- Filtered column header goes over the RowSelectors and groups when scroll horizontal #4366
- [igx-grid] description about onColumnMovingEnd is not correct. #4452
- IgxTabs removes custom added class #4508
- Multi-cell selection - Enables range selection of cells in the grid.
- Grid rendering speed
- Grid grouping rendering speed
- Grid vertical scrolling using the scroll arrows
- Grid horizontal scrolling using the scroll arrows
- Grid cell focusing time
- Typing a character in an inline editor
- IgxForOf - Virtual item index with remote data #4455
- If grid has height in %(or no height) and filtering is enabled, then height is not calculated correctly. #4458
- 3rd level child does not scroll with keyboard nav #4447
- When in column group a column is hidden in the excel style filter LEFT and RIGHT buttons are enabled #4412
- Column Moving keydown.escape HostListener needs refactoring #4296
- Hierarchical Grid: scrolled child views remain after the root grid has been destroyed #4440
- When child grids have width in % (or no width) and there is horizontal scrollbar the vertical scrollbar is not visible. #4449
- Opening the Filtering dropdown twice in an igxHierarchicalGrid results in warning messages in the browser console #4436
- for-of init optimizations for grids #4374
- Changing columns dynamically in the Hierarchical Grid resets root column list to contain child columns. #4337
- Cell is not selected on click [IE] #1780
- igx-grid: Uncommitted IME text gets lost when Enter key is pressed in an edit cell template. #4314
IPinColumnEventArgs
new property - added a new propertyisPinned
to theIPinColumnEventArgs
interface. Now theonColumnPinning
event emits information whether the column is pinned or unpinned.igxGrid
igxFilterCellTemplate
directive added that allows retemplating of the filter cell.IgxColumnComponent
now hasfilterCellTemplate
property that can be used to retemplate the filter cell.
- Fix auto-generate columns for TreeGrid #4399
- Emiting event when unpinning column #3833
- In Firefox when collapse all groups grid becomes empty #4304
- When transactions are enabled and update a filtered cell there is an error in console #4214
- In IE11 datePicker delete button is not in correct position when open a cell in edit mode #4116
- Refactoring filter cell navigation so that it is handled in the navigation service. Handling special scenarios for hierarchical grid in the hierarchical navigation service. #4267
- Grid: fix sorting in chrome #4397
- An error is returned when add a child for not committed row and summaries are enabled #4317
- Update child summaries correctly when CRUD operations are performed #4408
- Add igxQuickFilterTemplate directive #4377
- Resizing: move resize handle logic in a directive #4378
- No event emitted when column is unpinned #3799
- When update a cell in the grouped column the child summaries are not updated #4324
- Column Group border is misaligned with its children's in some cases #4387
- Expanding last row of HierarchicalGrid via keyboard(Alt + downArrow) leads to cell losing its focus. #4080
- fix(HierarchicalGrid): Moving onGridCreated to be emitted onInit #4370
- Virtualization of grid not working in tab #4329
- When you pin child column the whole group is not pinned #4278
- Components' Display Type - All components now have their CSS display property explicitly set on the host element to ensure width, padding, and margins are applied when set directly on the host selectors.
- Themes
- Add support for gradients and images as values for component themes via the component theme functions.
Palettes
- added surface color to the palette. The surface color is used by cards, pickers, dialog windows, etc. as the default background.
- fix(tabs): Fix for applying styles to tabs group #4371
- igxInput - add ability to toggle required dynamically #4361
- Select sort button only if default template is used #4372
- Public enumerations should not be constants #4364
- fix(hierarchicalGrid): Fix scrollbar not updated when data for children is loaded after initial load. #4334
- fix(date-picker): Fix for re-templating dropdown date-picker #4325
- Remove ngModel from datepicker #4333
- Scrollbar is not updated when load remote data #4209
- IgxGrid cell edit does not update values (onCellEdit) #4055
- Initial GroupBy performance is poor with many columns grouped #4309
- Components' display type #4316
- Including summary row cells in tab sequence for HierarchicalGrid navigation. #4293
- Surface color #4109
headerGroupClasses
is marked as hidden #4276- Update AutoScrollStrategy to reposition elements outside NgZone #4250
- Optimizing post group pipe for 4309 - 7.2.x #4310
- IgxSelect does not close on Shift+Tab #4164
- clone method should have inheritdoc in all position strategies #4265
- Dialog does not emits close event the second time that is opened and closed #4222
- IgxLabelComponent is hidden #4237
- refactor(button-group): Fix the double borders between the buttons #4092
- Allow gradient/image values as backgrounds in component themes #4218
- Time Picker enhancements #4348
igxGrid
- Breaking Change The
groupsRecords
property now only returns the visible tree and does not include groups that are children of collapsed parents. - Feature Column Hiding and Column Pinning components now expose a
disableFilter
property which allows hiding the filter columns input from the UI.
- Breaking Change The
- igxSelect - select-positioning-strategy code cleanup #4019
- Tooltip remains opened after clicking its target #4127
- Can not move a column to left if the previous column is column group #4114
- TextHighlight Directive makes the matching spans bold #4129
- IgxDropDownItem still uses deprecated accessors #4167
- Double click in editMode reverts the cell's value #3985
- Navigation with Ctrl+arrow keys does not work in child grids #4120
- In IE11 and Edge when scroll page the excel filter dialog is not moved #4112
- IgxCalendar overlay, rendered from cell in edit mode, goes outside the grid when scrolling #4205
- When using keyboard navigation the child grid does not scroll to next row when next child is empty. #4153
- selectedIndex doesn't switch tab. #4245
- When the last column is hidden button RIGHT for the last visible column should be disabled #4230
- When excel-style-filtering is enabled and press Shift+tab on first cell the scroll should not be moved #4219
- Can not navigate with tab in filtering row if grid has no horizontal scroll #4111
- ExcelFilterStyle , what is the name of the onClick methods for the apply and cancel button ? onFilteringDone doesnt work here #4248
- When you focus an element from the Excel-Style Filtering List in Chrome a blue boarder appears #4269
- Need ability to remove a column filter that was previously set in the grid #4305
- Keyboard navigation inside summaries for hierarchical grid is not working with Ctrl + arrow keys #4176
- ReadMe links are broken on 7.2.0. release note #4251
- Error when scrolling grid with mouse wheel after closing a dialog window in the page #4232
- Circular progress bar throws error on IE11 #3787
- Issue with export excel/csv from grid #3763
- Setting grid data property manually after initial rendering without binding it to the input is not detected. #4242
- When child grids does not have set height and expand a row in child grid scrollbars are not updated and there is empty space on the grid #4239
- [ng add]: Enabling polyfills step doesn't update properly polyfill.ts generated by Angular CLI v7.3.x. #3967
- When change sorting from the excel filter it is not applied for the grouped column #4119
- When grid is filtered and update a cell summaries are not updated #4211
- [igx-date-picker] igxCalendarHeader and igxCalendarSubheader don't work #4223
- [igx-date-picker] unnecessary suffix "日" to the date part of the calendar. #4224
- igxMonthPicker - arrowdown and arrow up not working correctly inside months view #4190
- In Edge resizing indicators are offset incorrectly #3908
- igx-column-group does not fire onColumnVisibilityChanged #4194
-
igxCalendar
igxCalendar
has been refactored to provide the ability to instantiate each view as a separate component.- Feature advanced keyboard navigation support has been added. Read up more information in the ReadMe
-
New component
IgxMonthPicker
:- Provides the ability to pick a specific month. Read up more information in the ReadMe
-
New component
IgxHierarchicalGrid
:- Provides the ability to represent and manipulate hierarchical data in which each level has a different schema. Each level is represented by a component derived from igx-grid and supports most of its functionality. Read up more information about the IgxHierarchicalGrid in the official documentation or the ReadMe
-
New component The
igxSelect
provides an input with dropdown list allowing selection of a single item.<igx-select #select1 [placeholder]="'Pick One'"> <label igxLabel>Sample Label</label> <igx-select-item *ngFor="let item of items" [value]="item.field"> {{ item.field }} </igx-select-item> </igx-select>
documentation or the ReadMe
-
New directive
igxAutocomplete
- new directive that provides a way to enhance a text input by showing a panel of suggested options, provided by the developer. More information about the IgxAutocomplete is available in the official documentation or the ReadMe.<input igxInput type="text" [igxAutocomplete]="townsPanel" /> <igx-drop-down #townsPanel> <igx-drop-down-item *ngFor="let town of towns" [value]="town"> {{town}} </igx-drop-down-item> </igx-drop-down>
-
igxGrid
now hasisLoading
input property. When enabled will show loading indicator, until the data is available. It can be best utilized for remote scenarios. Another input propertyloadingGridTemplate
allows customizing the loading indicator.<!-- Example --> <igx-grid [isLoading]="true" ...> </igx-grid>
Group By
- The collapse/expand icons have new orientantion to display the action that will be performed when clicked. When an icon points up clicking on it would result in collapsing the related group row and when it points down clicking on it would expand the group row.
- The collapse/expand all icons have also been updated to reflect the new group row icons better.
- Group rows now can be expanded/collapsed using Alt + Arrow Up/Down to reflect the new icons.
filterMode
input added, which determines the filtering ui of the grid. The default value isquickFilter
. Other possible value isexcelStyle
, which mimics the filtering in Excel with added functionality for column moving, sorting, hiding and pinning.IgxColumnComponent
now hasdisablePinning
property, which determines wether the column can be pinned from the toolbar and whether the column pin will be available in the excel style filter menu. ThedisableHiding
input will be used to show/hide the column hiding functionality in the menu.
-
igxTreeGrid
- The collapse/expand icons have new orientantion to display the action that will be performed when clicked. When an icon points up clicking on it would result in collapsing the related tree grid level and when it points down clicking on it would expand the tree grid level.
- Expanding/collapsing tree levels can now be performed also by using Alt + Arrow Up/Down to reflect the new icons.
-
IgxColumnComponent
- Breaking Change the
gridID
property is now deprecated. Please, usecolumn.grid.id
instead.
- Breaking Change the
-
igxCombo
- Breaking Change
combo.value
is now only a getter. - Feature added support for templating the default input group of the component. The
igx-combo
now allows forigx-prefix
,igx-suffix
,igx-hint
and[igxLabel]
components to be passed asng-content
and they will be renderer accordingly on the combo's input. Example:
<!-- customize combo input ---> <igx-combo #myCombo [data]="myGenres"> ... <label igxLabel>Genres</label> <igx-prefix><igx-icon>music_note</igx-icon></igx-prefix> </igx-combo>
- Feature the default combo 'clear' and 'toggle' icons can now be templated. Two new directives are added (with selector
[igxComboClearIcon]
and[igxComboToggleIcon]
). Passing anng-template
with one of the directives will overwrite the default conent of the respective icon. Functionality will remain unaffected. Expample:
<!-- customize combo input ---> <igx-combo #myCombo [data]="myGenres"> ... <ng-template igxComboToggleIcon let-collapsed> <igx-icon>{{ collapsed ? 'remove_circle' : 'remove_circle_outline'}}</igx-icon> </ng-template> </igx-combo>
- Breaking Change
-
igxDropDown
IgxDropDownItemBase
and it's descendants (of whichIgxDropDownItem
) have had theirisSelected
andisFocused
properties deprecated. Instead, useselected
andfocused
properties.- Added an
@Input
for theindex
property (such as the one coming from ngFor) of theIgxDropDownItem
component. This deprecates the automatic index calculation.
<igx-drop-down> <igx-drop-down-item *ngFor="let item of items; let i = index" [index]="i"> {{ item.field }} </igx-drop-down-item> </igx-drop-down>
- Feature
IgxDropDownGroupComponent
has been added. It allows for easier grouping of multi-level data, without the need of flattening it. Theigx-drop-down-item-group
tag acceptsigx-drop-down-item
s and displays them in the appropriate grouped fashion.<igx-drop-down> <igx-drop-down-item-group *ngFor="let country of contries" [label]="country.name"> <igx-drop-down-item *ngFor="let city of country.cities" [value]='city.refNo'> {{ city.name }} </igx-drop-down-item> </igx-drop-down-item-group> </igx-drop-down>
-
Theme Elevations & Shadows
- Components with shadows, set by an elevation level or otherwise, are now fully configurable by the user via schema and/or theme properties. User can also provide a custom elevations set to component themes that support them.- Breaking Change - The
$search-shadow-color
and$search-disabled-shadow-color
properties on theigx-input-group-theme
have been replaced with$search-resting-shadow
and$search-disabled-shadow
respectively. Useng update
to migrate automatically.
- Breaking Change - The
-
IgxTreeGridComponent
- We can now search in the treegrid's data by using the
findNext
and thefindPrev
methods and we can clear the search results with theclearSearch
method.
- We can now search in the treegrid's data by using the
-
IgxTextHighlightDirective
IgxTextHighlightDirective.page
input property is deprecated.rowIndex
,columnIndex
andpage
properties of theIActiveHighlightInfo
interface are also deprecated. Instead,row
andcolumn
optional properties are added.
-
igxDragDrop
dragGhostHost
input property added. Sets the element to which the dragged element will be appended. If not provided, the dragged element is appended to the body.
-
Column Hiding UI
- Behavioral Change - The UI now hides the columns whose
disableHiding
property is set to true instead of simply disabling them.
- Behavioral Change - The UI now hides the columns whose
-
igxButton
- New Button Style - Include outlined button style to support the latest material spec. -
igxOverlay
:igxOverlay.attach()
method added. Use this method to obtain an unique Id of the created overlay where the provided component will be shown. Then calligxOverlay.show(id, settings?)
method to show the component in overlay. The newattach
method has two overloads:attach(element: ElementRef, settings?: OverlaySettings): string
- This overload will create overlay where providedelement
will be shown.attach(component: Type<any>, settings?: OverlaySettings, moduleRef?: NgModuleRef<any>): string
- Creates aComponentRef
from the providedcomponent
class to show in an overlay. IfmoduleRef
is provided the service will use the module'sComponentFactoryResolver
andInjector
when creating theComponentRef
instead of the root ones.
igxOverlay.show(component, settings)
is deprecated. UseigxOverlay.attach()
method to obtain an Id, and then calligxOverlay.show(id, settings)
method to show a component in the overlay.IPositionStrategy
exposes new methodclone
that clones the strategy instance with its settings.
-
igx-date-picker
- Feature Added
dropdown
mode
to enable the input field value editing and spinning of the date parts as well as displaying a drop down calendar to select a date. Example:
<igx-date-picker #editableDatePicker1 mode="dropdown" [value]="date" format="dd.MM.y" mask="M/d/y"> </igx-date-picker>
- Feature Added
Components roundness
-
Ignite UI for Angular now allows you to change the shape of components by changing their border-radius.
-
Here is the list of all components that have roundness functionality:
- igx-badge
- igx-buttongroup
- igx-calendar
- igx-card
- igx-carousel
- igx-chip
- igx-dialog
- igx-drop-down
- igx-expansion-panel
- igx-input-group
- igx-list
- igx-list-item
- igx-navdrawer
- igx-snackbar
- igx-toast
- igxTooltip
- Breaking Change
- The
$button-roundness
property on theigx-button-theme
have been replaced for each button type with:$flat-border-radius
,$raised-border-radius
,$outline-border-radius
,$fab-border-radius
,$icon-border-radius
. - The
$roundness
property on theigx-chip-theme
have been replaced with$border-radius
. - The
$roundness
property on theiigx-tooltip-theme
have been replaced with$border-radius
.
- All initially pinned columns get unpinned if the grid's width is set as a percentage of its parent #3774
- Expanding a group row while at the bottom of the grid throws error #4179
- Grouping expand/collapse all button is not aligned with the row selector checkbox. #4178
- IgxToggleAction logs deprecated message in the console #4126
- IgxCombo - Calling selectItems([]) incorrectly clears the combo selection #4106
- IgxCombo - Clearing item filter sometimes empties drop down list #4000
- IgxCombo - Keyboard navigation ArrowDown stutters on chunk load #3999
- Row editing overlay banner not shown when enter row editing #4117
- IgxToggle open method always tries to get id even when it has one #3971
- Last (right-aligned) column is cut off when no widths are set for the columns #3396
- The selection in the last grid column does not span in the whole cell. #1115
- Last column header is a bit wider than the cells #1230
- Row and Cell editing Docs improvements #4055
- Column Hiding and Column Pinning components now expose a
disableFilter
property which allows hiding the filter columns input from the UI.
- Tooltip remains opened after clicking its target #4127
- TextHighlight Directive makes the matching spans bold #4129
- igx-grid:
pinned
property doesn't work whenwidth
property is set together. #4125 - Double click in editMode reverts the cell's value #3985
- Issue with export excel/csv from grid #3763
- Error when scrolling grid with mouse wheel after closing a dialog window in the page #4232
- Circular progress bar throws error on IE11 #3787
- Setting grid data property manually after initial rendering without binding it to the input is not detected. #4242
headerGroupClasses
is marked as hidden #4276- When you pin child column the whole group is not pinned #4278
- igx-column-group does not fire onColumnVisibilityChanged #4194
- When grid is filtered and update a cell summaries are not updated #4211
- igx-grid: Incorrect height calculation when setting height in percent and binding empty data. #3950
- Grid doesn't reflect the applied formatter immediately #3819
- Cannot set chip as selected through API if selectable is false #2383
- IgxCombo - Keyboard navigation in combo with remote data is incorrect #4049
- Setting groupingExpressions run-time has different result than using the UI/methods #3952
- Error on app-shell build in the icon module #4065
- Grid/TreeGrid toolbar dropdowns reopen when trying to close it every other time #4045
- When grid and columns have width in IE the columns are visible outside the grid #3716
- IgxGridToolbarComponent is hidden from the API docs #3974
- igx-grid: row virtualization doesn't work when setting height in percent if you fetch and bind data after initial rendering. #3949
- IgxToggleAction logs deprecated message in the console #4126
- Required date picker bound to displayData is shown invalid initially. #3641
- If the columns don't fit the treeGrid viewport, horizontal scrollbar in TreeGrid is gone/disappears #3808
- igxGrid setting autogenerate and groupingExpressions inputs results in errors #3951
- refactor(card): apply the content color to any text element #3878
- style(linear-bar): Fix text alignment #3862
- Calling open() on an already opened IgxDropDown replays the opening animation #3810
-
igxGrid
Group By
- The collapse/expand icons have new orientantion to display the action that will be performed when clicked. When an icon points up clicking on it would result in collapsing the related group row and when it points down clicking on it would expand the group row.
- The collapse/expand all icons have also been updated to reflect the new group row icons better.
- Group rows now can be expanded/collapsed using Alt + Arrow Up/Down to reflect the new icons.
-
igxTreeGrid
- The collapse/expand icons have new orientantion to display the action that will be performed when clicked. When an icon points up clicking on it would result in collapsing the related tree grid level and when it points down clicking on it would expand the tree grid level.
- Expanding/collapsing tree levels can now be performed also by using Alt + Arrow Up/Down to reflect the new icons.
-
Remove CSS Normalization
- Some users were complaining we reset too many browser styles - lists and heading styles in particular. We no longer do CSS normalization on an application level. Users who depended on our CSS browser normalization will have to handle that on their own going forward. -
igxOverlayService
- the height of the shown element/component is not cached anymore. The height will be calculated each time position method of position strategy is called. -
igxOverlayService
onClosing
event arguments are of typeOverlayClosingEventArgs
that adds an optionalevent
property with the original DOM event. The browser event is available when closing of the overlay is caused by an outside click. This also affects all components and directives that useigxOverlay
service -igxToggle
,igxDropDown
,igxCombo
,igxSelect
andigxAutocomplete
. When they emit their respectiveonClosing
event, the arguments are of typeCancelableBrowserEventArgs
, including the optional browser event.
Column Hiding UI
- Behavioral Change - The UI now hides the columns whose
disableHiding
property is set to true instead of simply disabling them.
- Behavioral Change - The UI now hides the columns whose
- When search and hide and then show a column the cell values are not correct (3631)
- When press Ctrl+Arrow down key on a summary cell it should stay active (3651)
- When summary row is not fully visible and press Tab the last summary cell is not activated (3652)
- Choosing from a drop down inside a form in a drop down closes the outer drop down (3673)
- Banner - Calling close method on collapsed panel throws error (3669)
- Typedoc API task generates non-public exports (2858)
- column.pin and column.unpin API descriptions need improvement (3660)
- disabledDates for the calendar and date picker should be an @Input() (3625)
- There is no way to determinate if a list item was panned in the click event (3629)
- When search and hide and then show a column the cell values are not correct (3631)
igx-circular-bar
andigx-linear-bar
now feature an indeterminate input property. When this property is set to true the indicator will be continually growing and shrinking along the track.IgxTimePickerComponent
: in addition to the current dialog interaction mode, now the user can select or edit a time value, using an editable masked input with a dropdown.IgxColumnComponent
now accepts its templates as input properties through the markup. This can reduce the amount of code one needs to write when applying a single template to multiple columns declaratively. The new exposed inputs are:cellTemplate
- the template for the column cellsheaderTemplate
- the template for the column headercellEditorTemplate
- the template for the column cells when a cell is in edit mode<!-- Example --> <igx-grid ...> <igx-column *ngFor="let each of defs" [cellTemplate]="newTemplate" ...></igx-column> </igx-grid> <ng-template #newTemplate let-value> {{ value }} </ng-template>
- When transactions are enabled and delete a row page is changed to first page (3425)
- Row selectors header is not updated when commit transactions (3424)
- When a column is sorted and change value in a cell after commit and press enter on selected cell the focus is not in the input (2801)
- Closing the filter UI cuts the grid on the left (3451)
- GroupedRecords class should be hidden for doc generation. (3483)
- Badly formatted table in the JP documentation (3484)
- Not setting width in percentage on one or more columns results in columns going out of view (1245)
- Feature Request : locale property on a grid level (3455)
- Excel cannot open the exported data (3332)
- API DOC header links on header nav in JP leads to EN product page (3516)
- IgxGridHeaderGroupComponent should have preset min width (3071)
- Adding a custom svg to snackbar (3328)
- Feature request: Using text field input for date and time picker (2337)
- Summaries Keyboard navigation issues (3407)
- IgxRipple - animate() function not supported in Safari (3506)
- Faulty link in Typedoc (3531)
- [IE11] igx-grid - Filtering is cleared when clicking filtering chip if resourceString.igx_grid_filter_row_placeholder is set to Japanese character. (3504)
- Setting required IgxInput's value not via typing does not clear the invalid style. (3550)
- Add bodyTemplate as @Input() for igx-column (3562)
- Horizontal scrollbar is not shown when column's width is set to a percentage value. (3513)
- When select a date filter the date is not previewed in the input (3362)
- Missing locale errors on a browser with non-en language (3569)
- igx-action-icon is not vertically aligned in IgxNavbar (3584)
- [IE11] igx-grid filtering condition is reverted when typing Japanese character in the filtering textbox. (3577)
- TreeGrid has empty space when Summaries are enabled and expand/collapse (3409)
- Filtering row: no chip is created while typing Japanese characters on Edge (3599)
- PowerShell script should be added in order to apply some rules for deployment of the API DOCS (sassdoc, typedoc) (3618)
- igx-grid isn't displayed properly in IE11 when it is inside an igx-tabs-group. (3047)
- Cells' content is shown twice when entering edit mode after searching. (3637)
- ng add improvements (3528)
- onSortingDone is not fired when sorting indicator of a header in the group by area is clicked (#3257)
- igx-grid isn't displayed properly in IE11 when it is inside an igx-tabs-group (#3047)
- Preventing wrap-around for scrollNext and scrollPrev(#3365)
- IgxTreeGrid does not respect its parent container height (#3467)
- Include grid's unpinnedWidth and totalWidth in cell width calculation (#3465)
- update typedoc-plugin-localization version to 1.4.1 (#3440)
- New component
IgxBannerComponent
:- Allows the developer to easily display a highly templateable message that requires minimal user interaction (1-2 actions) to be dismissed. Read up more information about the IgxBannerComponent in the official documentation or the ReadMe
igxGrid
- Added a new
igxToolbarCustomContent
directive which can be used to mark anng-template
which provides a custom content for the IgxGrid's toolbar (#2983) - Summary results are now calculated and displayed by default for each row group when 'Group By' feature is enabled.
clearSummaryCache()
andrecalculateSummaries()
methods are deprecated. The grid will clear the cache and recalculate the summaries automatically when needed.locale
property added. Default value isen
. All child components will use it as locale.- Breaking change
IgxSummaryOperand.operate()
method is called with empty data in order to calculate the necessary height for the summary row. For custom summary operands, the method should always return an array ofIgxSummaryResult
with proper length.
- Added a new
IgxIconModule
:- Breaking change
igxIconService
is now provided in root (providedIn: 'root') andIgxIconModule.forRoot()
method is deprecated. - Breaking change
glyphName
property of theigxIconComponent
is deprecated.
- Breaking change
IgxColumnComponent
:- Breaking change the
filters
input now expectsIgxFilteringOperand
instance, instead of class ref. This way customIgxFilteringOperands
no longer need to be singleton, with definedinstance
method.
- Breaking change the
IgxMask
:placeholder
input property is added to allow developers to specify the placeholder attribute of the host input element that theigxMask
is applied on;displayValuePipe
input property is provided that allows developers to additionally transform the value on blur;focusedValuePipe
input property is provided that allows developers to additionally transform the value on focus;
IgxTreeGrid
:- Batch editing - an injectable transaction provider accumulates pending changes, which are not directly applied to the grid's data source. Those can later be inspected, manipulated and submitted at once. Changes are collected for individual cells or rows, depending on editing mode, and accumulated per data row/record.
- You can now export the tree grid both to CSV and Excel.
- The hierarchy and the records' expanded states would be reflected in the exported Excel worksheet.
- Summaries feature is now supported in the tree grid. Summary results are calculated and displayed for the root level and each child level by default.
IgxOverlayService
:ElasticPositioningStrategy
added. This strategy positions the element as in Connected positioning strategy and resize the element to fit in the view port in case the element is partially getting out of view.
- igx-grid isn't displayed properly in IE11 when it is inside an igx-tabs-group. (#3047)
- igx-slider max-value defaults to min-value (#3418)
- Inconsistency in scrollNext and scrollPrev (#3365)
- The header link in the api docs page should be to the product page (#3423)
- Error thrown when edit primaryKey cell in Tree Grid (#3329)
- IgxGridHeaderGroupComponent should have preset min width (#3071)
- Pressing ESC on a cell in an editable column throws an error (#3429)
- Cell foreground is white on hover with the default theme (#3384)
- [IE] Grid toolbar's buttons and title are misaligned (#3371)
- Dialog window does not hold the focus when opened (#3199)
- refactor(themes): don't include contrast colors in the palettes (#3166)
- update typedoc-plugin-localization version to 1.4.1 (#3440)
- Move all keyboard navigation tests in a separate file (#2975)
- Fix(igx-grid): revert row editing styles (#2672)
- Revert "fix(grid): set min width to header groups programmatically" status: verified version: 7.0.x (#3357)
- ng add igniteui-angular adds igniteui-cli package to both dependencies and devDependencies (#3254)
- Group column header is not styled correctly when moving that column (#3072)
- igx-grid: Filter row remains after disabling filtering feature (#3255)
- [igxGrid] Keyboard navigation between cells and filtering row with MCH (#3179)
- Argument $color of red($color) must be a color (#3190)
- Shell strings localization (#3237)
- Tabbing out of the combo search input not possible (#3200)
- Localization (i18n) not available for inputs/buttons on the grid filtering dialog (#2517)
- When in the tree grid are pinned columns and scroll horizontal the cells text is over the pinned text #3163
- Request for update of shell strings in Japanese (#3163)
- Refactor(themes): remove get-function calls (#3327)
- Fix(grid): recalculate grid body size when changing allowFiltering dynamically (#3321)
- Fix - Combo - Hide Search input when !filterable && !allowCustomValues - 7.0.x (#3314)
- Fixing column chooser column updating - 7.0.x (#3235)
- Disable combo checkbox animations on scroll (#3303)
- Added validation if last column collides with grid's scroll. (#3028) (#3100)
- Use value instead of ngModel to update editValue for checkbox and calendar in igxCell (#3225)
- Add @inheritdoc, create ScrollStrategy abstract class and fix method signatures 7.0.x (#3222)
- When scroll with the mouse wheel the value in datePicker editor for edited cell is empty (#2958)
- igxToolbar should have the option to add custom template (#2983)
- fix(grid): mark grid for check inside NgZone when resizing (#2792) (#3277)
- IgxGridHeaderGroupComponent should have preset min width (#3071)
- Tree grid selection (#3334)
ng add igniteui-angular
support 🎉- You can now add Ignite UI for Angular to existing Angular CLI projects - simply run
ng add igniteui-angular
in your project. This will install the package and all needed dependencies, add Ignite UI CLI so you can even quickly add components.
- You can now add Ignite UI for Angular to existing Angular CLI projects - simply run
- New component
IgxBannerComponent
:- Allows the developer to easily display a highly templateable message that requires minimal user interaction (1-2 actions) to be dismissed. Read up more information about the IgxBannerComponent in the official documentation or the ReadMe
igxNavbar
:- Added a new
igx-action-icon
directive that can be used to provide a custom template to be used instead of the default action icon on the left-most part of the navbar. (Ifigx-action-icon
is provided, the default action icon will not be used.)
- Added a new
igxGrid
- Filter row does not close when click button cancel, if the entered text is deleted (#3198)
- Prevent a potential memory leak (#3033)
- Filtering: Open dropdown on Alt+down, fixes input being populated on keyboard action (#3202)
- Row Selection: selected checkboxes are flickering on vertical scrolling (#2523)
- Row editing overlay animation should be bottom - top, when overlay is placed over the row (#3184)
- Removed the
GridHammerConfig
provider which broke touch events for other components. (Fixed #3185, Reopens #2538)
- igx-grid:
pinned
property doesn't work whenwidth
property is set together. #4125 - When you pin child column the whole group is not pinned #4278
- igx-grid: Incorrect height calculation when setting height in percent and binding empty data. #3950
- Cannot set chip as selected through API if selectable is false #2383
- Setting groupingExpressions run-time has different result than using the UI/methods #3952
- igx-grid: row virtualization doesn't work when setting height in percent if you fetch and bind data after initial rendering. #3949
- Cells position is changed when scroll vertical #3094
- igxGrid setting autogenerate and groupingExpressions inputs results in errors #3951
igxGrid
Group By
- The collapse/expand icons have new orientantion to display the action that will be performed when clicked. When an icon points up clicking on it would result in collapsing the related group row and when it points down clicking on it would expand the group row.
- The collapse/expand all icons have also been updated to reflect the new group row icons better.
- Group rows now can be expanded/collapsed using Alt + Arrow Up/Down to reflect the new icons.
igxTreeGrid
- The collapse/expand icons have new orientantion to display the action that will be performed when clicked. When an icon points up clicking on it would result in collapsing the related tree grid level and when it points down clicking on it would expand the tree grid level.
- Expanding/collapsing tree levels can now be performed also by using Alt + Arrow Up/Down to reflect the new icons.
- Add additional ways of expanding/collapsing in Tree Grid/Group By to reflect new icons #3841
- Tree Grid collapse icon is updated to material standards #3780
- Change collapse/expand all icon on GroupBy #3298
- igx-grid editing: Japanese inputs are not committed on enter or press key in edit mode #2525
- Setting required IgxInput's value not via typing does not clear the invalid style (3550)
- igx-grid isn't displayed properly in IE11 when it is inside an igx-tabs-group (3047)
- igxGrid minimal body height when no total height is set or inferred (1693)
- Horizontal scrollbar is not shown when column's width is set to a percentage value (3513)
- Visible @hidden tag due to comment structure (3523)
- Faulty link in Typedoc (3531)
- Several warnings on app launch 6.2.0 RC1 and now 7.0.2 (2915)
- For_of directive doesn't scroll to next elements in some cases (3482)
- Not setting width in percentage on one or more columns results in columns going out of view (1245)
- Calendar test is failing because of wrong selector (3508)
- When transactions are enabled and delete a row page is changed to first page (3425)
- When a column is sorted and change value in a cell after commit and press enter on selected cell the focus is not in the input (2801)
- igxFor with scrollOrientation: horizontal - Almost all the items are not rendered when they don't have width property (3087)
- Pressing ESC on a cell in an editable column throws an error (3429)
- onSortingDone is not fired when sorting indicator of a header in the group by area is clicked (#3257)
- igx-grid isn't displayed properly in IE11 when it is inside an igx-tabs-group (#3047)
- Preventing wrap-around for scrollNext and scrollPrev(#3365)
- IgxTreeGrid does not respect its parent container height (#3467)
- The header link in the api docs page should be to the product page (#3423)
- fix(dialog): dialog gets focus when is opened (#3276)
- IgxTreeGrid - Add row editing + transactions to tree grid (#2908)
- Regular highlight makes the highlighted text unreadable when the row is selected. (#1852)
- Use value instead of ngModel to update editValue for checkbox and calendar in igxCell (#3224)
- Disable combo checkbox animations on scroll (#3300)
- "Select/Unselect All" checkbox is checked after deleting all rows (#3068)
- Fixing column chooser column updating (#3234)
- Fix - Combo - Hide Search input when !filterable && !allowCustomValues (#3315)
- Add @inheritdoc (#2943)
- refactor(displayDensity): Code cleanup in display density base class #3280
- Calculating updated grid height when rebinding columns (#3285)
- Fix - Combo, Drop Down - Fix TAB key navigation (#3206)
- Added validation if last column collides with grid's scroll (#3142)
- When in the tree grid are pinned columns and scroll horizontal the cells text is over the pinned text (#3163)
- refactor(themes): don't include contrast colors in the palettes (#3166)
- Fix the logic calculating test results (#3461)
- Update typedoc version and localize some shell strings (#3237)
- fix(toolbar): including custom content in the show toolbar check (#2983)
- docs(toolbar): adding more API docs (#2983)
- update typedoc-plugin-localization version to 1.4.1 (#3440)
- Update contributing document with localization (#3313)
- docs(*): add 6.2.3 missing changes and bug fixes to changelog (#3251)
- Docs - Expansion Panel - Add comments and README(#3245)
- Move all keyboard navigation tests in a separate file (#2975)
igxGrid
resourceStrings
property added, which allows changing/localizing strings for component. If a new instance is set, the changes will be applied to the particular instance of the component:
If only a value is updated, all component instances will be updated:this.grid.resourceStrings = { igx_grid_filter: 'My filter', igx_grid_filter_row_close: 'My close' };
this.grid.resourceStrings.igx_grid_filter = 'My filter';
igxTimePicker
:resourceStrings
property added, which allows changing/localizing strings for component.
- Localization
- Added an util function
changei18n
that takesIResourceStrings
object as parameter. Its values will be used as resource strings for all components in the application. - Added an util function
getCurrentResourceStrings
that returns current resource strings for all components.
- Added an util function
ISortingEpression
:- The
ignoreCase
andstrategy
properties are moved back to optional, and theDefaultSortingStrategy
is now injected by theIgxSorting
, instead of being mandatory to pass to expressions.
- The
igxGrid
- Filter row does not close when click button cancel, if the entered text is deleted (#3198)
- Prevent a potential memory leak (#3033)
- Filtering: Open dropdown on Alt+down, fixes input being populated on keyboard action (#3202)
- Row Selection: selected checkboxes are flickering on vertical scrolling (#2523)
- Row editing overlay animation should be bottom - top, when overlay is placed over the row (#3184)
igx-checkbox
:- Added a new input property -
disableTransitions
. It allows disabling all CSS transitions on theigx-checkbox
component for performance optimization.
- Added a new input property -
- Removed the
GridHammerConfig
provider which broke touch events for other components. (Fixed #3185, Reopens #2538)
igxGrid
,igxChip
: Add display density DI token to igxGrid and igxChip (#2804)igxGrid
igxCombo
:- Added a new input property -
displayDensity
. It allows configuring thedisplayDensity
of the combo'svalue
andsearch
inputs. (PR #3007)
- Added a new input property -
igxDropDown
- Added a new property
maxHeight
, defining the max height of the drop down. (#3001)
- Added a new property
- Added migrations for Sass theme properties changes in 6.2.0 (#2994)
- Themes
- Introducing schemas for easier bootstrapping of component themes.
- Breaking change removed $variant from
igx-checkbox-theme
,igx-ripple-theme
,igx-switch-theme
,igx-input-group-theme
,igx-slider-theme
, andigx-tooltip-theme
. Use the$schema
prop, now available on all component themes to change the look for a specific theme. See the Theming documentation to learn more.
igxGrid
- Filtering condition icon is not updated for boolean columns (#2936)
- Batch editing: Updating a cell with a value that evaluates to false does not mark it as dirty (#2940)
- Filtering input accepts value from calendar for unary conditions (#2937)
- When a number filter's value is deleted the grid is not refreshed (#2945)
- Improve keyboard navigation in filtering (#2951, #2941)
- Group By: Alt+ Arrow left/Right keys should not toggle the group row (#2950)
- Multi Column Header can be grouped (#2944)
- Group By: groupsRecords is not updated yet at the time of onGroupingDone event. (#2967)
- Paging: Blank space in rows area after vertical scrolling and navigating to next page (#2957)
- When date or boolean cell is in edit mode and press arrowUp or arrowDown key the page is scrolled (#2507)
- When deleting a row the Row Editing dialog should be closed (#2977)
- Group header with columns which width is defined as number throws an exception (#3020)
- Refactor header and filter cell components, Closes #2972, #2926, #2923, #2917, #2783, #3027, #2938
- Filter's UI dropdown is hidden under the bottom level of the grid (#2928)
- Cell is not editable on iOS (#2538)
IgxTreeGrid
- Cell selection wrong behavior when collapsing rows (#2935)
igxCombo
- Keyboard doesn't scroll virtualized items (#2999)
igxDatePicker
- Error emitting when value property is initialized with empty string. (#3021)
igxOverlay
- Drop-down flickers in IE and EDGE (#2867)
igxTabs
- Tabs don't not handle width change (#3030)
igxCalendar
- make all css class names unique (#2287)
- Fixed runtime errors when using the package in applications targeting es2015(es6) and newer (#3011)
-
Updated typography following the Material guidelines. Type system is now also optional and can be applied via class to the desired containers. #2112
- Breaking change: Applications using Ignite UI for Angular now require the
igx-typography
class to be applied on wrapping element, like the body element for instance.
- Breaking change: Applications using Ignite UI for Angular now require the
-
Display density can be specified by using the injection token
DisplayDensityToken
and providing a value (comfortable, cosy or compact) on an application or a component level.Setting display density on a component level:
@Component({ ... providers: [{ provide: DisplayDensityToken, useValue: { displayDensity: DisplayDensity.compact} }] })
-
igx-input-group
- The
igx-input-group
control's display density can be explicitly set by using thedisplayDensity
input.
<igx-input-group [displayDensity]="'cosy'"> ... </igx-input-group>
- The
-
igx-drop-down
:- Added a new boolean argument
cancel
to theonSelection
ISelectionEventArgs
. Its default value is false, in case it is set to true, the drop down selection is invalidated.
- Added a new boolean argument
-
igxIcon
:- Breaking change
glyphName
property is removed fromIgxIconComponent
. ForMaterial
icons the icon name should be explicitly defined between the opening and closing tags.Font Awesome
icons should use thename
property now. - Added support for custom SVG icons. Register the SVG icons with the
IgxIconService
and useIgxIconComponent
'sname
andfontSet
properties to visualize the icon.
- Breaking change
-
Transaction Provider -
TransactionService
is an injectable middleware that a component can use to accumulate changes without affecting the underlying data. The provider exposes API to access, manipulate changes (undo and redo) and discard or commit all to the data. For more detailed information, see the README. -
igxTreeGrid
:- New
IgxTreeGridComponent
added. - The
igxTreeGrid
is used to display and manipulate hierarchical data with consistent schema, formatted as a table and provides a line of advanced features such as sorting, filtering, editing, column pinning, column moving, column hiding, paging and others. - The
igxTreeGrid
provides two ways of defining the relations among our data objects - by using a child collection for every data object or by using primary and foreign keys for every data object. - For more details on using the
igxTreeGrid
, take a look at the official documentation.
- New
-
igxGrid
:-
Breaking change
onGroupingDone
- The array ofISortingExpression
can now be accessed through theexpressions
event property. Two new properties have been added to the event arguments -groupedColumns
andungroupedColumns
. They provide references to arrays ofIgxColumnComponent
that hold the columns which have changed their state because of the last grouping/ungrouping operation. -
Breaking change
onEditDone
event is renamed toonCellEdit
and new cell editing events are introduced:onCellEditEnter
andonCellEditCancel
. When row editing is enabled, the corresponding events are emitted by the grid -onRowEditEnter
,onRowEdit
,onRowEditCancel
. All these events have arguments that are using theIGridEditEventArgs
interface. -
Row editing - allows modification of several cells in the row, before submitting, at once, all those changes to the grid's data source. Leverages the pending changes functionality of the new transaction provider.
<igx-grid [data]="data" [rowEditable]="true"> <igx-column field="ProductName"></igx-column> <igx-column field="ReleaseDate"></igx-column> </igx-grid>
-
Batch editing - an injectable transaction provider accumulates pending changes, which are not directly applied to the grid's data source. Those can later be inspected, manipulated and submitted at once. Changes are collected for individual cells or rows, depending on editing mode, and accumulated per data row/record.
@Component({ providers: [{ provide: IgxGridTransaction, useClass: IgxTransactionService }], selector: "app-grid-with-transactions", template: "<ng-content></ng-content>" }) export class GridWithTransactionsComponent { }
-
A new boolean
hideGroupedColumns
input controls whether the grouped columns should be hidden as well (defaults to false). -
Breaking change
cellClasses
input onIgxColumnComponent
now accepts an object literal to allow conditional cell styling. -
Exposing a mechanism for cells to grow according to their content.
-
sortStrategy
input exposed to provide custom sort strategy for theIgxColumnComponent
. The custom strategy should implement theISortingStrategy
interface, or can extend the baseSortingStrategy
class and override all or some of its public/protected members. -
New quick filtering functionality is implemented. Filtering icon is removed from column header and a filtering row is introduced in the grid's header.
-
-
igxFor
- Added support for variable heights.
-
igx-datePicker
selector is deprecated. Useigx-date-picker
selector instead. -
igxOverlay
:OverlaySettings
now also accepts an optionaloutlet
to specify the container where the overlay should be attached.- when
show
andhide
methods are calledonAnimation
event fires. In the arguments of this event there is a reference to theanimationPlayer
,animationType
(eitheropen
orclose
) and to the overlay id. - if you call
show
/hide
methods of overlay, while opening/closing animation is still ongoing, the animation will stop and respective open/close animation will start.
-
igxToggleAction
newoutlet
input controls the target overlay element should be attached. Provides a shortcut foroverlaySettings.outlet
. -
IgxOverlayOutlet
directive introduced to mark an element as anigxOverlay
outlet container. ReadMe -
igxButtonGroup
- Added the ability to define buttons directly in the template
-
igx-time-picker
:igxTimePickerTemplate
- new directive which should be applied on the child<ng-template>
element whenIgxTimePickerComponent
's input group is retemplated.
-
igx-datePicker
:igxDatePickerTemplate
- new directive which should be applied on the child<ng-template>
element whenIgxDatePickerComponent
's input group is retemplated.- Introduced
disabledDates
. This property is exposed from theigx-calendar
component. - Introduced
specialDates
. This property is exposed from theigx-calendar
component. - Introduced
deselectDate
method added that deselects the calendar date.
-
IgxTextHighlightDirective
: Thehighlight
method now has a new optional parameter calledexactMatch
(defaults to false).- If its value is false, all occurrences of the search text will be highlighted in the group's value.
- If its value is true, the entire group's value should equals the search text in order to be highlighted (caseSensitive argument is respected as well).
-
IgxGrid
: ThefindNext
andfindPrev
methods now have a new optional parameter calledexactMatch
(defaults to false).- If its value is false, all occurrences of the search text will be highlighted in the grid's cells.
- If its value is true, the entire value of each cell should equals the search text in order to be highlighted (caseSensitive argument is respected as well).
-
IgxChip
- Introduced event argument types to all
EventEmitter
@Output
s. - Breaking change
onSelection
's EventEmitter interface propertynextStatus
is renamed toselected
. - Breaking change Move the location of where the chip
suffix
is positioned. Now it is between the content and theremove button
making the button last element if visible by default. - Breaking change Remove the chip
connector
rendered when using theigxConnector
directive that is also removed. - Breaking change The chip theme has been rewritten. Most theme input properties have been renamed for consistency and better legibility. New properties have been added. Please, refer to the updated igx-chip-theme documentation to see all updates.
- Exposed original event that is responsible for triggering any of the events. If triggered by the API it is by default
null
. - Added
data
input for storing any data related to the chip itself. - Added
select icon
with show/hide animation to indicate when a chip is being selected with ability to customize it while retaining the chip Material Design styling. - Added
selectIcon
input to set custom template for theselect icon
. - Update chip styling to match Material Design guidelines.
- Rework of the chip content styling so now by default text inside is styled to match the chip Material Design styling.
- Rework of the
remove button
rendered and now has the ability to customize its icon while retaining the chip Material Design. - Added
removeIcon
input so a custom template cane be set for the remove button icon.
- Introduced event argument types to all
-
IgxChipArea
- Introduced event argument types to all
EventEmitter
@Output
s. - Exposed original event that is responsible for triggering any of the events. If triggered by the API it is by default
null
.
- Introduced event argument types to all
-
IgxCombo
- Added the following directives for
TemplateRef
assignment for combo templates (item, footer, etc.):- Added
IgxComboItemDirective
. Use[igxComboItem]
in markup to assing a TemplateRef tocombo.itemTemplate
. - Added
IgxComboHeaderDirective
. Use[igxComboHeader]
in markup to assing a TemplateRef tocombo.headerTemplate
. - Added
IgxComboFooterDirective
. Use[igxComboFooter]
in markup to assing a TemplateRef tocombo.footerTemplate
. - Added
IgxComboEmptyDirective
. Use[igxComboEmpty]
in markup to assing a TemplateRef tocombo.emptyTemplate
. - Added
IgxComboAddItemirective
. Use[igxComboAddItem]
in markup to assing a TemplateRef tocombo.addItemTemplate
. - Added
IgxComboHeaderItemDirective
. Use[igxComboHeaderItem]
in markup to assing a TemplateRef tocombo.headerItemTemplate
.
- Added
- Breaking change Assigning templates with the following template ref variables is now deprecated in favor of the new directives:
#itemTemplate
,#headerTemplate
,#footerTemplate
,#emptyTemplate
,#addItemTemplate
,#headerItemTemplate
. - Breaking change
height
property is removed. In the futureIgxInputGroup
will expose an option that allows custom sizing and thenIgxCombo
will use the same functionality for proper styling and better consistency.
- Added the following directives for
-
IgxDropDown
- Breaking change
allowItemsFocus
default value is changed tofalse
. - Added
value
input toIgxDropDownItemComponent
definition. The property allows data to be bound to a drop-down item so it can more easily be retrieved (e.g. on selection)
- Breaking change
-
igx-calendar
:- Introduced
disabledDates
property which allows a user to disable dates based on various rules: before or after a date, weekends, workdays, specific dates and ranges. The disabled dates cannot be selected and have a distinguishable style. - Introduced
specialDates
property which allows a user to mark dates as special. They can be set by using various rules. Their style is distinguishable. - Introduced
deselectDate
method added that deselects date(s) (based on the selection type)
- Introduced
-
igxExpansionPanel
:- component added.
igxExpansionPanel
provides a way to display more information after expanding an item, respectively show less after collapsing it. For more detailed information see the official documentation.
- component added.
-
IgxList
:- the control now supports ng-templates which are shown "under" a list item when it is left or right panned. The templates are distinguished using the
igxListItemLeftPanning
andigxListItemRightPanning
directives set on the templates. - the IgxList's
onLeftPan
andonRightPan
events now have an argument of typeIListItemPanningEventArgs
(instead ofIgxListItemComponent
). The event argument has the following fields:- item of type
IgxListItemComponent
- direction of type
IgxListPanState
- keepItem of type
boolean
- item of type
- the control now supports ng-templates which are shown "under" a list item when it is left or right panned. The templates are distinguished using the
-
igxTooltip
andigxTooltipTarget
directives:- Added
IgxTooltipDirective
.- An element that uses the
igxTooltip
directive is used as a tooltip for a specific target (anchor). - Extends
IgxToggleDirective
. - Exported with the name tooltip.
- An element that uses the
- Added
IgxTooltipTargetDirective
.- An element that uses the
igxTooltipTarget
directive is used as a target (anchor) for a specific tooltip. - Extends
IgxToggleActionDirective
. - Exported with the name tooltipTarget.
- An element that uses the
- Both new directives are used in combination to set a tooltip to an element. For more detailed information, see the README.
- Added
-
igxToggle
:- Introduced reposition method which allows a user to force toggle to reposition according its position strategy.
-
IgxDrag
andIgxDrop
directives available.IgxDrag
allows any kind of element to be moved/dragged around the page without changing its position in the DOM. Supports Desktop/Mixed/Touch environments.IgxDrop
allows any element to act as a drop area where anyigxDrag
element can be dragged into and dropped. Includes default logic that moves the dropped element from its original position to a child of theigxDrop
element.- Combined they provide a way to move elements around the page by dragging them. For more detail see the README.
-
IgxGrid
keyboard navigation When you focus a specific cell and press one of the following key combinations, the described behaviour is now performed:Ctrl + Arrow Key Up
- navigates to the first cell in the current column;Ctrl + Arrow Down
- navigates to the last cell in the current column;Home
- provide the same behavior as Ctrl + Arrow Left - navigates to the first cell from the current row;End
- provide the same behavior as Ctrl + Arrow Right - navigates to the last cell from the current row;Ctrl + Home
- navigates to the first cell in the grid;Ctrl + End
- navigates to the last cell in the grid;Tab
- sequentially move the focus over the next cell on the row and if the last cell is reached move to next row. If next row is group row the whole row is focused, if it is data row, move focus over the first cell;Shift + Tab
- sequentially move focus to the previous cell on the row, if the first cell is reached move the focus to the previous row. If previous row is group row focus the whole row or if it is data row, focus the last cell of the row;Space
over Cell - if the row is selectable, on keydown space triggers row selectionArrow Left
over GroupRow - collapse the group row content if the row is not already collapsed;Arrow Right
over GroupRow - expand the group row content if the row is not already expanded;- on mouse
wheel
the focused element is blurred; - Breaking change
space
handler for the group row has been removed; soSpace
does not toggle the group row; - Breaking change cell selection is preserved when the focus is moved to group row.
- Introduced
onFocusChange
event. The event is cancelable and output argument from typeIFocusChangeEventArgs
; - For more detailed information see the official keyboard navigation specification.
sortStrategy
input exposed to provide custom sort strategy for theIgxColumnComponent
. The custom strategy should implement theISortingStrategy
interface, or can extend the baseDefaultSortingStrategy
class and override all or some of its public/protected members.- The previously optional
ignoreCase
andstrategy
of theISortingExpression
interface are no longer optional. In order to use our default sorting strategy in expressions built programmatically, you need to passDefaultSortingStrategy.instance()
or any implementation of theISortingStrategy
interface. groupingComparer
input exposed to provide custom grouping compare function for theIgxColumnComponent
. The function receives two values and should return0
if they are to considered members of the same group.
- Fix sorting and groupby expression not syncing when there are already sorted columns. #2786
- GroupBy Chip sorting direction indicator is not changed if sorting direction is changed #2765
- Failing tests caused by inconsistent behavior when sorting a column with equal values #2767
- IgxGridComponent.groupingExpressions is of type any #2758
- IgxSelectionAPIService allows to add items with id which is undefined #2581
- FilteredSortedData collection holds the original data after first filtering operation is done #2611
- Calendar improvement of "selected" getter #2687
- Improve igxCalendar performance #2675
- Add Azure Pipelines CI and PR builds #2605
- The igxDatePicker changes the time portion of a provided date #2561
- IgxChip remove icon has wrong color #2573
- Chip has intrinsic margin #2662
- IgxChip remove icon has wrong color #2573
- ChipsArea's OnSelection output is not emitted on initialization #2640
- IgxChip raises onSelection before onRemove #2612
- Summaries are shown on horizontal scrolling when Row Selectors are enabled #2522
- Bug - IgxCombo - Combo does not bind properly with [(ngModel)] and simple data (e.g. string[]) #2620
- Missing backtick in comment #2537
- IgxSelectionAPIService allows to add items with id which is undefined #2581
- Circular bar text is clipped #2370
- Update all angular async Calendar tests to await async #2582
- InvalidPipeArgument: 'inable to convert "" into a date for pipe 'DatePipe' #2520
- All cells in the row enter in edit mode if igx-columns are recreated. #2516
- General
IgxChip
- Introduced event argument types to all
EventEmitter
@Output
s. - A chip can now be selected with the API with the new
selected
input. Theselected
input overrides theselectable
input value. - Breaking change
onSelection
's EventEmitter interface propertynextStatus
is renamed toselected
.
- Introduced event argument types to all
IgxChipArea
- Introduced event argument types to all
EventEmitter
@Output
s.
- Introduced event argument types to all
igxFor
- Adding inertia scrolling for touch devices. This also affects the following components that virtualize their content via the igxFor -
igxGrid
,igxCombo
.
- Adding inertia scrolling for touch devices. This also affects the following components that virtualize their content via the igxFor -
igxGrid
- Adding inertia scrolling for touch devices.
igxCombo
- Adding inertia scrolling for touch devices.
IgxCalendar
-deselectDate
method added that deselects date(s) (based on the selection type)IgxDatePicker
-deselectDate
method added that deselects the calendar date.
- igx-tabs : When you move the tab key, the contents of other tabs are displayed. #2550
- Prevent default scroll behavior when using keyboard navigation. #2496
- Error is thrown on ng serve --prod #2540
- onSelection event is not fired when a cell in last visible row is row is selected and press arrow Down #2509
- Add deselect method to igxCalendar #2424
- Time starts from 03 minutes instead of 00 #2541
- Replace EventEmitter with the respective interface for the event #2481
- Cannot scroll last item in view #2504
- Japanese character is redundantly inserted into textbox on filter dialog on Safari #2316
- Improve row selection performance #1258
- igxRipple - Mousedown event doesn't bubble up when igxRipple is attached to elements. #2473
- Add default formatting for numbers in igx-grid #1197
- An error is returned when update a filtered cell #2465
- Grid Keyboard navigation performance issue #1923
- Vertical scrolling performance is slower when grouping is applied. #2421
- Bottom of letters fall of in the label of igx-tabs-group #1978
- The search highlight and info are not updated correctly after editing a cell value of the grid #2388
- Cannot set chip as selected through API if selectable is false #2383
- Pressing 'Home/End' keys is not moving the focus to the first/last item #2332
- Cannot set igxChip as selected #2378
- Scrolling using touch is not working on Edge and Internet Explorer 11 #1639
- IgxCombo - Selection - Cannot override combo selection through the onSelectionChange event #2440
- igx-grid -
updateCell
method doesn't update cells that are not rendered. #2350
-
General
- Added ES7 polyfill for Object for IE. This should be added to the polyfills in order for the igxGrid to render under IE.
import 'core-js/es7/object';
- Added ES7 polyfill for Object for IE. This should be added to the polyfills in order for the igxGrid to render under IE.
-
igxTabs
selectedIndex
property has an@Input
setter and can be set both in markup and in code behind.
-
igxDropDownItem
isSelected
has a public setter and is now an@Input
property that can be used for template binding.
-
igxGrid
- Breaking change
applyNumberCSSClass
andcolumnType
getters are removed. isUnary
property added to IFilteringOperationigxColumn
- The footerTemplate property is removed.
igxColumnGroup
- The footerTemplate property is removed.
- exposed
autosize()
method onIgxColumnComponent
. It allows the user to programatically change the size of a column according to it's largest visible cell. - Initializing an
igxGrid
component without setting height, inside a container without height defined, now causes the grid to render 10 records from the data view or all of the records if there are fewer than 10 available.
- Breaking change
-
igxCombo
- Breaking change igxCombo default
width
is set to 100% - Breaking change
itemsMaxWidth
is renamed toitemsWidth
- Breaking change igxCombo default
-
igxLinearBar
andigxCircularBar
- exposed
step
input which determines the update step of the progress indicator. By default it is one percent of the maximum value. IgxCircularBar
text
input property exposed to set the text to be displayed inside the circular bar.
- exposed
- igx-grid - cannot auto-size columns by double-clicking in IE11 #2025
- Animation for removing item from list is very quick, must be more smoothly. #2306
- circular and linear bars - prevent progress exceeding, smooth update when operate with big nums, allow floating point nums, expose step input #2163
- Blank space on the right of igxGrid when there is a hidden column and grid width is 100% #2249
- Igx Combo throws errors when data is set to null or undefined #2300
- Top cell is not positioned aligned to the header, after keyboard navigation #1185
- In carousel when call method remove for selected slide it is still previewed #2182
- In grid paging paginate and page should check if the page is greater than the totalPages #2288
- Typos and inaccuracies in IgxSnackbar's readme. #2250
- The grid enables all the columns to be declared as pinned in the template #1612
- Combo - Keyboard Navigation - Add Item button fires on Keydown.Space #2266
- Reduce the use of MutationObservers in the IgxTextHighlightDirective #2251
- Improve row selection performance #1258
- Filter UI dialog redraws #2038
- Can't navigate from first row cell to selection checkbox with key combination #1937
- Incorrect position pinning of Navigation Drawer #2013
- Keyboard navigation not working correctly whith column moving and cell selection #2086
- Grid Layout is broken when you hide column #2121
- IgxDateFilteringOperand's operation "doesNotEqual" doesn't work if the "equals" operation is localized(modified). #2202
- aside in igx-nav-drawer surpasses height of igx-nav-drawer #1981
- The button for collapse/expand all in groupby is not working correctly #2200
- IgxDropDown Item cannot be set as selected. #2061
- IgxBooleanFilteringOperand doesn't work if the operation 'all' is localized(modified). #2067
- columnMove doesn't work if no data is loaded. #2158
- Combo's clear button should be just an icon #2099
- Default combo width should be 100% #2097
- The combo list disappears after disabling Filtering at runtime #2108
- igx-slider - slider comes to not work well after changing maxValue. #920
- Search match highlight not always scrolled into view #1886
- When groupby row is focused and spacebar is pressed the browser scrolls down, everywhere except Chrome, although it should only collapse the group #1947
- Grid data bind fails initially until window resize #1614
- Localization (i18n) for grid grouping area string #2046
- When delete all records in the last page pager should be changed #2014
- Filter icon in the header changes its position #2036
-
igxCombo
improvements- Remote Data Binding fixes - selection preserving and keyboard navigation.
For more detailed information see the official igxCombo documentation.
General
- Added
jsZip
as a Dependency.
- Grid Layout is broken when you change displayDensity runtime #2005
- Add empty grid template #2035
- Page Up/Page Down buttons don't scroll the grid #606
- Icon component is not properly exported #2072
- Adding density to chip doesn't make the density style to apply when it is dragged #1846
- Update jszip as dependency #2043
- No message is displayed when there is empty grid data without filtering enabled. #2001
- The only possible range of setting minValue to igxSlider is between [0..99] #2033
- Bootstrap & IgniteUI issues #1548
- Remove tabs from collection -> TabCollectionChange Output #1972
- 6.1.1 error on npm install #2023
- Remote binding combo doesn't store the selected fields when scrolled or collapsed #1944
- Exception is thrown when hovering a chip with a column header #1813
- IgxCombo - Remote Virtualization Keyboard Navigation #1987
igxTimePicker
changesonClose
event added.
- Exit edit mode when move column through grid API #1932
- IgxListItemComponent and the two template directives are missing from public_api.ts. #1939
- Add Item button disappears after adding same item twice successively. #1938
- onTabItemDeselected is called for every not selected tab item #1952
- Exit edit mode when pin/unpin column through grid API #1933
- Selected combo item doesn't have the proper focused styles #1948
- Time-picker does not open on button-press. #1949
- Custom cell not rendering with grid searching functionality #1931
- Regular highlight makes the highlighted text unreadable when the row is selected. #1852
- DatePicker focus is wrong on select date value #1965
- add sass docs, grid document updates and input-group theme-related fixes #1993
- DatePicker focus handler and AoT build #1994
- Change displayDensity runtime #1974
- Change IgxGrid display density runtime #1998
- Error is thrown when using igx-grid theme without $content-background #1996
- Update npm deploy token #2002
igxOverlay
service added. igxOverlayService allows you to show any component above all elements in page. For more detailed information see the official documentation- Added igxRadioGroup directive. It allows better control over its child
igxRadio
components and support template-driven and reactive forms. - Added
column moving
feature toigxGrid
, enabled on a per-column level. Column moving allows you to reorder theigxGrid
columns via standard drag/drop mouse or touch gestures. For more detailed information see the official documentation. igx-tab-bar
selector removed fromIgxBottomNavComponent
.igxGrid
filtering operandsigxGrid
- Breaking change
filter_multiple
method is removed.filter
method andfilteringExpressionsTree
property could be used instead. - Breaking change
filter
method has new signature. It now accepts the following parameters:name
- the name of the column to be filtered.value
- the value to be used for filtering.conditionOrExpressionTree
- (optional) this parameter accepts object of typeIFilteringOperation
orIFilteringExpressionsTree
. If only a simple filtering is required a filtering operation could be passes (see bellow for more info). In case of advanced filtering an expressions tree containing complex filtering logic could be passed.ignoreCase
- (optional) - whether the filtering would be case sensitive or not.
- Breaking change
onFilteringDone
event now have only one parameter -IFilteringExpressionsTree
which contains the filtering state of the filtered column. filter_global
method clears all existing filters and applies the new filtering condition to all grid's columns.- filtering operands:
- Breaking change
IFilteringExpression
condition property is no longer a direct reference to a filtering condition method, instead it's a reference to anIFilteringOperation
- 5 filtering operand classes are now exposed
IgxFilteringOperand
is a base filtering operand, which can be inherited when defining custom filtering conditionsIgxBooleanFilteringOperand
defines all default filtering conditions forboolean
typesIgxNumberFilteringOperand
defines all default filtering conditions fornumeric
typesIgxStringFilteringOperand
defines all default filtering conditions forstring
typesIgxDateFilteringOperand
defines all default filtering conditions forDate
types
IgxColumnComponent
now exposes afilters
property, which takes anIgxFilteringOperand
class reference- Custom filters can now be provided to grid columns by populating the
operations
property of theIgxFilteringOperand
with operations ofIFilteringOperation
type
- Custom filters can now be provided to grid columns by populating the
- Breaking change
- Breaking change
export class IgxCustomFilteringOperand extends IgxFilteringOperand {
// Making the implementation singleton
private static _instance: IgxCustomFilteringOperand = null;
protected constructor() {
super();
this.operations = [{
name: 'custom',
logic: (target: string) => {
return target === 'My custom filter';
}
}].concat(this.operations); // Keep the empty and notEmpty conditions from base
}
// singleton
// Must implement this method, because the IgxColumnComponent expects it
public static instance(): IgxCustomFilteringOperand {
return this._instance || (this._instance = new this());
}
}
-
igxGrid
now supports grouping of columns enabling users to create criteria for organizing data records. To explore the functionality start off by setting some columns asgroupable
:<igx-grid [data]="data"> <igx-column [field]="'ProductName'"></igx-column> <igx-column [field]="'ReleaseDate'" [groupable]="true"></igx-column> </igx-grid>
For more information, please head over to
igxGrid
's ReadMe or the official documentation. -
igxGrid
now supports multi-column headers allowing you to have multiple levels of columns in the header area of the grid. For more information, head over to official documentation -
igxGrid
theme now has support for alternating grid row background and text colors. -
igxGrid
now has a toolbar (shown using theshowToolbar
property) which contains the following features:- title (specified using the
toolbarTitle
property) - column hiding feature (enabled using the
columnHiding
property) - column pinning feature (enabled using the
columnPinning
property) - export to excel (enabled using the
exportExcel
property) - export to CSV (enabled using the
exportCsv
property)
- title (specified using the
-
igxColumn
changes:- Breaking change filteringExpressions property is removed.
-
igxGrid
API is updated- Breaking change deleteRow(rowSelector: any) method will delete the specified row only if the primary key is defined. The method accept rowSelector as a parameter, which is the rowID.
- Breaking change updateRow(value: any, rowSelector: any) method will update the specified row only if the primary key is defined. The method accept value and rowSelector as a parameter, which is the rowID.
- Breaking change updateCell(value: any, rowSelector: any, column: string) method will update the specified cell only if the primary key is defined. The method accept value, rowSelector,which is the rowID and column name.
- getCellByKey(rowSelector: any, columnField: string) method is added to grid's API. This method retuns a cell or undefined only if primary key is defined and search for the specified cell by the rowID and column name.
- getCellByColumn(rowIndex: number, columnField: string) method is updated. This method returns a cell or undefined by using rowIndex and column name.
-
IgxGridRow
API is updated:- update(value: any) method is added. The method takes as a parameter the new value, which is to be set to the specidied row.
- delete() method is added. The method removes the specified row from the grid's data source.
-
igxCell
default editing template is changed according column data type. For more information you can read the specification or the official documentation -
igxCombo
component added<igx-combo #combo [data]="towns" [displayKey]="'townName'" [valueKey]="'postCode'" [groupKey]="'province'" [allowCustomValues]="true" placeholder="Town(s)" searchPlaceholder="Search town..."></igx-combo>
igxCombo features:
- Data Binding - Value Binding - Virtualized list - Multiple Selection - Filtering - Grouping - Custom values - Templates - Integration with Template Driven and Reactive Forms - Keyboard Navigation - Accessibility compliance
For more detailed information see the official igxCombo documentation.
-
igxDropdown
component added<igx-drop-down (onSelection)="onSelection($event)" (onOpening)="onOpening($event)"> <igx-drop-down-item *ngFor="let item of items" disabled={{item.disabled}} isHeader={{item.header}}> {{ item.field }} </igx-drop-down-item> </igx-drop-down>
igxDropDown displays a scrollable list of items which may be visually grouped and supports selection of a single item. Clicking or tapping an item selects it and closes the Drop Down.
A walkthrough of how to get started can be found here
igxDropdown features:
- Single Selection - Grouping - Keyboard Navigation - Accessibility compliance
-
igxChip
andigxChipsArea
components added<igx-chips-area> <igx-chip *ngFor="let chip of chipList" [id]="chip.id"> <label igxLabel>{{chip.text}}</label> </igx-chip> </igx-chips-area>
For more detailed information see the official igxChip documentation.
-
igxToggle
changesonOpening
event added.onClosing
event added.
-
igxToggleAction
newoverlaySettings
input controls how applicable targets display content. Provides defaults with positioning based on the host element. ThecloseOnOutsideClick
input is deprecated in favor of the new settings and will be removed in the future. -
igxList
now supports a 'loading' template which is shown when the list is empty and its newisLoading
property is set totrue
. You can redefine the default loading template by adding anng-template
with theigxDataLoading
directive:<igx-list [isLoading]="true"> <ng-template igxDataLoading> <p>Please wait, data is loading...</p> </ng-template> </igx-list>
-
Breaking changes:
- Removed submodule imports. All imports are now resolved from the top level
igniteui-angular
package. igxGrid
changes:- sort API now accepts params of type
ISortingExpression
orArray<ISortingExpression>
.
- sort API now accepts params of type
igxToggle
changescollapsed
now read-only, markup input is removed.onOpen
event renamed toonOpened
.onClose
event renamed toonClosed
.open
method does not accept fireEvents optional boolean parameter. Now it accepts only overlaySettings optional parameter of typeOverlaySettings
.close
method does not accept fireEvents optional boolean parameter.toggle
method does not accept fireEvents optional boolean parameter. Now it accepts only overlaySettings optional parameter of typeOverlaySettings
.
igxDialog
changesopen
method does not accept fireEvents boolean parameter. Now it accepts only overlaySettings optional parameter of typeOverlaySettings
.
- Removed submodule imports. All imports are now resolved from the top level
-
Breaking change All properties that were named
isDisabled
have been renamed todisabled
in order to acheive consistency across our component suite. This affects: date-picker, input directive, input-group, dropdown-item, tabbar and time-picker. -
The deprecated
igxForRemote
input for theigxFor
directive is now removed. Setting the requiredtotalItemCount
property after receiving the first data chunk is enough to trigger the required functionality.
- igxRadioGroup directive introduced. It allows better control over its child
igxRadio
components and support template-driven and reactive forms. - Fixed ReactiveForms validations support for IgxInputGroup. Related issue.
- igxGrid exposing the
filteredSortedData
method publicly - returns the grid data with current filtering and sorting applied.
- igxGrid Improve scrolling on mac #1563
- The
ng update igniteui-angular
migration schematics now also update the theme import path in SASS files. #1582
-
Introduced migration schematics to integrate with the Angular CLI update command. You can now run
ng update igniteui-angular
in existing projects to both update the package and apply any migrations needed to your project. Make sure to commit project state before proceeding. Currently these cover converting submodule imports as well as the deprecation of
igxForRemote
and rename ofigx-tab-bar
toigx-bottom-nav
from 6.0.0. -
Breaking changes:
- Removed submodule imports. All imports are now resolved from the top level
igniteui-angular
package. You can useng update igniteui-angular
when updating to automatically convert existing submodule imports in the project. - Summary functions for each IgxSummaryOperand class has been made
static
. So now you can use them in the following way:
import { IgxNumberSummaryOperand, IgxSummaryOperand } from "igniteui-angular"; class CustomSummary extends IgxSummaryOperand { constructor() { super(); } public operate(data?: any[]) { const result = super.operate(data); result.push({ key: "Min", label: "Min", summaryResult: IgxNumberSummaryOperand.min(data) }); return result; } }
- Removed submodule imports. All imports are now resolved from the top level
- Theming - You can now use css variables to style the component instances you include in your project.
- Added
onDoubleClick
output toigxGrid
to emit the double clicked cell. - Added
findNext
,findPrev
andclearSearch
methods to the IgxGridComponent which allow easy search of the grid data, even when the grid is virtualized. - Added
IgxTextHighlightDirective
which highlights parts of a DOM element and keeps and updates "active" highlight. - Added
All
option to the filter UI select for boolean columns - Update to Angular 6
- igx-dialog changes
- Dialog title as well as dialog actions (buttons) can be customized. For more information navigate to the ReadMe.
- Filtering a boolean column by
false
condition will return only the realfalse
values, excludingnull
andundefined
. Filtering byNull
will return thenull
values and filtering byEmpty
will return theundefined
. - The
Filter
button in the filtering UI is replaced with aClose
button that is always active and closes the UI. - Filtering UI input displays a
X
icon that clears the input.
- Added
rowSelectable
property toigxGrid
- Setting
rowSelectable
totrue
enables multiple row selection for theigx-grid
component. Adds a checkbox column that allows (de)selection of one, multiple or all (via header checkbox) rows. - For more information about the
rowSelectable
property and working with grid row, please read theigxGrid
's ReadMe about selection or see the official documentation
- Setting
- Added
onContextMenu
output toigxGrid
to emit the clicked cell. igx-datePicker
: AddedonClose
event.igxTextSelection
directive addedigxTextSelection
directive allows you to select the whole text range for every element with text content it is applied.
igxFocus
directive addedigxFocus
directive allows you to force focus for every element it is applied.
igx-time-picker
component addedigx-time-picker
allows user to select time, from a dialog with spinners, which is presented into input field.- For more information navigate to the ReadMe.
igx-tab-bar
changes- Breaking changes:
IgxTabBarComponent
is renamed toIgxBottomNavComponent
andIgxTabBarModule
is renamed toIgxBottomNavModule
. igx-tab-bar
selector is deprecated. Useigx-bottom-nav
selector instead.
- Breaking changes:
igx-tabs
component addedigx-tabs
allows users to switch between different views. Theigx-tabs
component places the tabs headers at the top and allows scrolling when there are multiple tab items outside the visible area. Tabs are ordered in a single row above their associated content.- For more information navigate to ReadMe.
- Added column pinning in the list of features available for
igxGrid
. Pinning is available though the API. Try the following:For more information, please head over toconst column = this.grid.getColumnByName(name); column.pin();
igxGrid
's ReadMe or the official documentation. - Added
summaries
feature toigxGrid
, enabled on a per-column level. Grid summaries gives you a predefined set of default summaries, depending on the type of data in the column. For more detailed information readigxGrid
's ReadMe or see the official documentation. - Added
columnWidth
option toigxGrid
. The option sets the default width that will be applied to columns that have no explicit width set. For more detailed information readigxGrid
's ReadMe - Added API to
igxGrid
that allows for vertical remote virtualization. For guidance on how to implement such in your application, please refer to the official documentation - Added smooth scrolling for the
igxForOf
directive making the scrolling experience both vertically and horizontally much more natural and similar to a native scroll. - Added
onCellClick
event. igxForOf
now requires that its parent container'soverflow
is set tohidden
andposition
torelative
. It is recommended that its height is set as well so that the display container of the virtualized content can be positioned with an offset inside without visually affecting other elements on the page.<div style='position: relative; height: 500px; overflow: hidden'> <ng-template igxFor let-item [igxForOf]="data" #virtDirVertical [igxForScrollOrientation]="'vertical'" [igxForContainerSize]='"500px"' [igxForItemSize]='"50px"' let-rowIndex="index"> <div style='height:50px;'>{{rowIndex}} : {{item.text}}</div> </ng-template> </div>
- Removed the
dirty
local template variable previously exposed by theigxFor
directive. - The
igxForRemote
input for theigxFor
directive is now deprecated. Setting the requiredtotalItemCount
property after receiving the first data chunk is enough to trigger the required functionality. - the
igx-icon
component can now work with both glyph and ligature-based icon font sets. We've also included a brand new Icon Service, which helps you create aliases for the icon fonts you've included in your project. The service also allows you to define the default icon set used throughout your app. - Added the option to conditionally disable the
igx-ripple
directive through theigxRippleDisabled
property. - Updated styling and interaction animations of the
igx-checkbox
,igx-switch
, andigx-radio
components. - Added
indeterminate
property and styling to theigx-checkbox
component. - Added
required
property to theigx-checkbox
,igx-radio
, andigx-switch
components. - Added
igx-ripple
effect to theigx-checkbox
,igx-switch
, andigx-radio
components. The effect can be disabled through thedisableRipple
property. - Added the ability to specify the label location in the
igx-checkbox
,igx-switch
, andigx-radio
components through thelabelPosition
property. It can either bebefore
orafter
. - You can now use any element as label on the
igx-checkbox
,igx-switch
, andigx-radio
components via the aria-labelledby property. - You can now have invisible label on the
igx-checkbox
,igx-switch
, andigx-radio
components via the aria-label property. - Added the ability to toggle the
igx-checkbox
andigx-switch
checked state programmatically viatoggle
method on the component instance. - Added the ability to select an
igx-radio
programmatically viaselect
method on the component instance. - Fixed a bug on the
igx-checkbox
andigx-radio
components where the click event was being triggered twice on click. - Fixed a bug where the
igx-checkbox
,igx-switch
, andigx-radio
change event was not being triggered on label click. igxМask
directive addedigxМask
provide means for controlling user input and formatting the visible value based on a configurable mask rules. For more detailed information seeigxMask README file
igxInputGroup
component added - used as a container for theigxLabel
,igxInput
,igxPrefix
,igxSuffix
andigxHint
directives.igxPrefix
directive added - used for input prefixes.igxSuffix
directive added - used for input suffixes.igxHint
directive added - used for input hints.igxInput
directive breaking changes:- the directive should be wrapped by
igxInputGroup
component IgxInputGroupModule
should be imported instead ofIgxInputModule
- the directive should be wrapped by
igxExcelExportService
andigxCSVExportService
added. They add export capabilities to theigxGrid
. For more information, please visit the igxExcelExportService specification and the igxCSVExportService specification.- General
- Added event argument types to all
EventEmitter
@Output
s. #798 #740 - Reviewed and added missing argument types to the following
EventEmitter
s- The
igxGrid
onEditDone
now exposes arguments of typeIGridEditEventArgs
. The arguments exposerow
andcell
objects where if the editing is performed on a cell, the editedcell
and therow
the cell belongs to are exposed. If row editing is performed, thecell
object is null. In addition thecurrentValue
andnewValue
arguments are exposed. If you assign a value to thenewValue
in your handler, then the editing will conclude with the value you've supplied. - The
igxGrid
onSelection
now correctly propagates the originalevent
in theIGridCellEventArgs
.
- The
- Added
jsZip
as a Peer Dependency.
- Added event argument types to all
primaryKey
attribute added toigxGrid
primaryKey
allows for a property name from the data source to be specified. If specified,primaryKey
can be used instead ofindex
to indentify grid rows from theigxGrid.rowList
. As such,primaryKey
can be used for selecting rows for the followingigxGrid
methods -deleteRow
,updateRow
,updateCell
,getCellByColumn
,getRowByKey
primaryKey
requires all of the data for the specified property name to have unique values in order to function as expected.- as it provides a unique identifier for each data member (and therefore row),
primaryKey
is best suited for addressing grid row entries. If DOM virtualization is in place for the grid data, the rowindex
property can be reused (for instance, when filtering/sorting the data), whereasprimaryKey
remains unique. Ideally, when a persistent reference to a row has to be established,primaryKey
should be used.
- Theming
- Added a
utilities
module to the theming engine to allow for easier import of theming functions and mixins, such as igx-color, igx-palette, igx-elevation, etc. To import the utilities do@import '~igniteui-angular/core/styles/themes/utilities';
- Added a
hammerjs
and@types/hammerjs
are removed frompeerDependencies
and were added asdependencies
. So if you are using Igniteui-Angular version 5.2.1 or above it is enough to runnpm install igniteui-angular
in your project for getting started. For more detailed information seeIgnite UI for Angular Getting Started
web-animations-js
is added as Peer Dependency.Theming
bug fixes and improvements.- Use the following command to generate
Ignite UI for Angular Themes
documentation -npm run build:docs
. Navigate todist/docs/sass
and openindex.html
file.
-
igxForOf
directive addedigxForOf
is now available as an alternative tongForOf
for templating large amounts of data. TheigxForOf
uses virtualization technology behind the scenes to optimize DOM rendering and memory consumption. Virtualization technology works similar to Paging by slicing the data into smaller chucks which are swapped from a container viewport while the user scrolls the data horizontally/vertically. The difference with the Paging is that virtualization mimics the natural behavior of the scrollbar.
-
igxToggle
andigxToggleAction
directives addedigxToggle
allows users to implement toggleable components/views (eg. dropdowns), whileigxToggleAction
can control theigxToggle
directive. Refer to the official documentation for more information.igxToggle
requiresBrowserAnimationsModule
to be imported in your application.
-
Ignite UI for Angular Theming
- comprehensive set of Sass functions and mixins will give the ability to easily style your entire application or only certain parts of it.- Previously bundled fonts, are now listed as external dependencies. You should supply both the Material Icons and Titillium Web fonts yourself by either hosting or using CDN.
-
igx-grid
changes- The component now uses the new
igxForOf
directive to virtualize its content both vertically and horizontally dramatically improving performance for applications displaying large amounts of data. - Data-bound Input property
filtering
changed tofilterable
:
<igx-grid [data]="data"> <igx-column [field]="'ReleaseDate'" [header]="'ReleaseDate'" [filterable]="true" dataType="date"> </igx-column> </igx-grid>
- @HostBinding
min-width
added toIgxGridCellComponent
andIgxGridHeaderCell
- The IgxGridCellComponent no longer has a value setter, but instead has an
update
modifier.
<ng-template igxCell let-cell="cell"> {{ cell.update("newValue") }} </ng-template>
- Class
IgxGridFiltering
renamed toIgxGridFilteringComponent
- The grid filtering UI dropdowns are now controlled by the
igxToggle
directive.- Make sure to import
BrowserAnimationsModule
inside your application module asigxToggle
uses animations for state transition.
- Make sure to import
state
input- filtering expressions and sorting expressions provided
- Removed
onCellSelection
andonRowSelection
event emitters,onSelection
added instead. - Removed
onBeforeProcess
event emitter. - Removed
onMovingDone
event emitter. - Removed methods
focusCell
andfocusRow
. - Renamed method
filterData
tofilter
. - New methods
filterGlobal
andclearFilter
. - New method
clearSort
. - Renamed method
sortColumn
tosort
. - New Input
sortingIgnoreCase
- Ignore capitalization of words.
- The component now uses the new
-
igx-navigation-drawer
changesNavigationDrawer
renamed toIgxNavigationDrawerComponent
NavigationDrawerModule
renamed toIgxNavigationDrawerModule
IgxNavigationDirectives
renamed toIgxNavigationModule
NavigationService
renamed toIgxNavigationService
NavigationToggle
renamed toIgxNavigationToggleDirective
NavigationClose
renamed toIgxNavigationCloseDirective
- Content selector
ig-drawer-content
replaced with<ng-template igxDrawer>
- Content selector
ig-drawer-mini-content
replaced with<ng-template igxDrawerMini>
- CSS class
ig-nav-drawer-overlay
renamed toigx-nav-drawer__overlay
- CSS class
ig-nav-drawer
renamed toigx-nav-drawer
-
igxInput
changes- CSS class
ig-form-group
toigx-form-group
- CSS class
-
igxBadge
changes- From now on, the Badge position is set by css class, which specifies an absolute position as well as top/bottom/left/right properties. The Badge position input should not be used.
-
igx-avatar
changes -
igx-calendar
changesformatViews
- Controls whether the date parts in the different calendar views should be formatted according to the providedlocale
andformatOptions
.templating
- The igxCalendar supports now templating of its header and subheader parts.vertical
input - Controls the layout of the calendar component. When vertical is set totrue
the calendar header will be rendered to the side of the calendar body.
-
igx-nav-bar
changes- Currently
isActionButtonVisible
resolves tofalse
if actionButtonIcon is not defined.
- Currently
-
igx-tab-bar
changes- custom content can be added for tabs
<igx-bottom-nav> <igx-tab-panel> <ng-template igxTab> <igx-avatar initials="T1"> </igx-avatar> </ng-template> <h1>Tab 1 Content</h1> </igx-tab-panel> </igx-bottom-nav>
-
igx-scroll
component deletedigx-scroll
component is not available anymore due newly implementedigxForOf
directive.
-
igxEmptyList
directive added The list no longer hasemptyListImage
,emptyListMessage
,emptyListButtonText
,emptyListButtonClick
andhasNoItemsTemplate
members. Instead of them, theigxEmptyListTemplateDirective
can be used for templating the list when it is empty (or use the default empty template).<igx-list> <ng-template igxEmptyList> <p>My custom empty list template</p> </ng-template> </igx-list>
onItemClicked
event emitter added<igx-list (onItemClicked)="itemClicked()"> <igx-list-item>Item 1</igx-list-item> <igx-list-item>Item 2</igx-list-item> <igx-list-item>Item 3</igx-list-item> </igx-list>
- Removed
emptyListImage
property fromIgxListComponent
. - Removed
emptyListMessage
property fromIgxListComponent
. - Removed
emptyListButtonText
property fromIgxListComponent
. - Removed
emptyListButtonClick
event emitter fromIgxListComponent
. - Removed
hasNoItemsTemplate
property fromIgxListComponent
. - Removed
options
property fromIgxListItemComponent
. - Removed
left
property fromIgxListItemComponent
. - Removed
href
property fromIgxListItemComponent
. - New
emptyListTemplate
input forIgxListComponent
. - New
onItemClicked
event emitter forIgxListComponent
. - New
role
property forIgxListComponent
. - New
innerStyle
property forIgxListComponent
. - New
role
property forIgxListItemComponent
. - New
element
property forIgxListItemComponent
. - New
list
property forIgxListItemComponent
. - New
headerStyle
property forIgxListItemComponent
. - New
innerStyle
property forIgxListItemComponent
.
-
Renaming and restructuring directives and components based on the General Angular Naming Guidelines:
IgxAvatar
renamed toIgxAvatarComponent
IgxBadge
renamed toIgxBadgeComponent
IgxButton
renamed toIgxButtonDirective
IgxButtonGroup
renamed toIgxButtonGroupComponent
IgxCardHeader
renamed toIgxCardHeaderDirective
IgxCardContent
renamed toIgxCardContentDirective
IgxCardActions
renamed toIgxCardActionsDirective
IgxCardFooter
renamed toIgxCardFooterDirective
IgxCarousel
renamed toIgxCarouselComponent
IgxInput
renamed toIgxInputModule
IgxInputClass
renamed toIgxInputDirective
IgxCheckbox
renamed toIgxCheckboxComponent
IgxLabel
renamed toIgxLabelDirective
IgxIcon
renamed toIgxIconComponent
IgxList
renamed toIgxListComponent
IgxListItem
renamed toIgxListItemComponent
IgxSlide
renamed toIgxSlideComponent
IgxDialog
renamed toIgxDialogComponent
IgxLayout
renamed toIgxLayoutModule
IgxNavbar
renamed toIgxNavbarComponent
IgxCircularProgressBar
renamed toIgxCircularProgressBarComponent
IgxLinearProgressBar
renamed toIgxLinearProgressBarComponent
IgxRadio
renamed toIgxRadioComponent
IgxSlider
renamed toIgxSliderComponent
IgxSnackbar
renamed toIgxSnackbarComponent
IgxSwitch
renamed toIgxSwitchComponent
IgxTabBar
renamed toIgxBottomNavComponent
IgxTabPanel
renamed toIgxTabPanelComponent
IgxTab
renamed toIgxTabComponent
IgxToast
renamed toIgxToastComponent
IgxLabelDirective
moved inside../directives/label/
folderIgxInputDirective
moved inside../directives/input/
folderIgxButtonDirective
moved inside../directives/button/
folderIgxLayoutDirective
moved inside../directives/layout/
folderIgxFilterDirective
moved inside../directives/filter/
folderIgxDraggableDirective
moved inside../directives/dragdrop/
folderIgxRippleDirective
moved inside../directives/ripple/
folder- Folder
"./navigation/nav-service"
renamed to"./navigation/nav.service"