Skip to content

Releases: IgniteUI/igniteui-angular

10.2.0-alpha.7

08 Oct 08:37
88bf397

Choose a tag to compare

10.2.0-alpha.7 Pre-release
Pre-release

10.2.0

General

  • IgxGridActions
    • Added asMenuItems Input for grid actions - igx-grid-editing-actions, igx-grid-pinning-actions. When set to true will render the related action buttons as separate menu items with button and label.
  • IgxInputGroup
    • Breaking Change - Removed fluent, fluent_search, bootstrap, and indigo as possible values for the type input property.
    • Behavioral Change - The styling of the input group is now dictated by the theme being used. The remaining types - line, border, and box will only have effect on the styling when used with the material theme. The search type will affect styling when used with all themes. Changing the theme at runtime will not change the styling of the input group, a page refresh is required.
  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • Rename outputs
      onRowEditEnter to rowEditEnter
      onCellEditEnter to cellEditEnter
      onCellEdit to cellEdit
      onRowEdit to rowEdit
    • Breaking Change - The onCellEditCancel event is replaced by the new cellEditExit event that emits every time the editable cell exits edit mode.
    • Breaking Change - The onRowEditCancel event is replaced by the new rowEditExit event that emits every time the editable row exits edit mode.
  • IgxOverlay
    • Breaking Change - target property in PositionSettings has been deprecated. You can set the attaching target for the component to show in OverlaySettings instead.
  • IgxToggleDirective
    • onAppended, onOpened and onClosed events are emitting now arguments of ToggleViewEventArgs type.
    • onOpening and onClosing events are emitting now arguments of ToggleViewCancelableEventArgs type.
  • IgxSelect
    • Added aria-labelledby property for the items list container(marked as role="listbox"). This will ensure the users of assistive technologies will also know what the list items container is used for, upon opening.
  • IgxDatePicker
    • Breaking Change - Deprecated the label property.
    • Added aria-labelledby property for the input field. This will ensure the users of assistive technologies will also know what component is used for, upon input focus.
  • igxNavigationDrawer
    • Added disableAnimation property which enables/disables the animation, when toggling the drawer. Set to false by default.
  • igxTabs
    • Added disableAnimation property which enables/disables the transition animation of the tabs' content. Set to false by default.
  • IgxExpansionPanel
    • IExpansionPanelEventArgs.panel - Deprecated. Usе owner property to get a reference to the panel.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • When triggering an export of the grid via the toolbar and the export takes more than 500 milliseconds, the export button becomes disabled and an indeterminate progress bar is shown at the bottom of the toolbar until the export is finished.
    • cellEditExit is a new event that fires when cell exits edit mode
    • rowEditExit is a new event that fires when row exits edit mode
    • Added getRowData(rowSelector) method that returns an object that represents the data that is contained in the specified row component.
    • Added ability to spawn row adding UI through exoposed methods. Note that rowEditing should be enabled.
      • beginAddRow method which starts the adding row UI.
      • beginAddChild method which starts the adding child UI.
      this.grid.beginAddRow(rowID);
      • Added an input properties to IgxGridEditingActions component to show/hide add row and add child buttons which trigger the UI based on context expression.
      <igx-tree-grid [rowEditing]="true">
          <igx-action-strip #actionStrip>
              <igx-grid-editing-actions [addRow]="true" [addChild]="actionStrip.context.level < 3">
              </igx-grid-editing-actions>
          </igx-action-strip>
      </igx-tree-grid>
  • IGX_INPUT_GROUP_TYPE injection token
    • Allows for setting an input group type on a global level, so all input-group instances, including components using such an instance as a template will have their input group type set to the one specified by the token. It can be overridden on a component level by explicitly setting a type.
  • IgxExcelExporterService
    • Added worksheetName property to the IgxExcelExporterOptions, that allows setting the name of the worksheet.
  • IgxDatePicker
    • The the label property have been deprecated and a custom label can also be set by nesting a inside the tags.
  • IgxTimePicker
    • Added a custom label functionality.
  • IgxCalendar and IgxDatePicker - new showWeekNumbers input, that allows showing of the week number at left side of content area.
  • IgxOverlay
    • The PositionSettings target property has been deprecated and moved to OverlaySettings.
    • An optional Point/HTML Element parameter target has been added to the position() method
  • IgxToast
    • The component now utilizes the IgxOverlayService to position itself in the DOM.
    • An additional input property outlet has been added to allow users to specify custom Overlay Outlets using the IgxOverlayOutletDirective;
    • The position property now accepts values of type IgxToastPosition that work with strict templates.
  • IgxExpansionPanelHeader
    • onInteraction is now cancelable
    • Added iconRef property. This can be used to get a reference to the displayed expand/collapsed indicator. Returns null if iconPosition is set to NONE.

10.2.0-alpha.6

07 Oct 19:01
b5f8978

Choose a tag to compare

10.2.0-alpha.6 Pre-release
Pre-release

General

  • IgxDatePicker
    • Added aria-labelledby property for the input field. This will ensure the users of assistive technologies will also know what component is used for, upon input focus.
  • IgxInputGroup
    • Breaking Change - Removed fluent, fluent_search, bootstrap, and indigo as possible values for the type input property.
    • Behavioral Change - The styling of the input group is now dictated by the theme being used. The remaining types - line, border, and box will only have effect on the styling when used with the material theme. The search type will affect styling when used with all themes. Changing the theme at runtime will not change the styling of the input group, a page refresh is required.
  • IgxOverlay
    • Breaking Change - target property in PositionSettings has been deprecated. You can set the attaching target for the component to show in OverlaySettings instead.
  • IgxSelect
    • Added aria-labelledby property for the items list container(marked as role="listbox"). This will ensure the users of assistive technologies will also know what the list items container is used for, upon opening.
  • IgxDatePicker
    • Breaking Change - Deprecated the label property.
  • igxGridActions
    • Added asMenuItems Input for grid actions - igx-grid-editing-actions, igx-grid-pinning-actions. When set to true will render the related action buttons as separate menu items with button and label.
  • igxNavigationDrawer
    • Added disableAnimation property which enables/disables the animation, when toggling the drawer. Set to false by default.
  • igxTabs
    • Added disableAnimation property which enables/disables the transition animation of the tabs' content. Set to false by default.
  • IgxExpansionPanel
    • IExpansionPanelEventArgs.panel - Deprecated. Usе owner property to get a reference to the panel.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • When triggering an export of the grid via the toolbar and the export takes more than 500 milliseconds, the export button becomes disabled and an indeterminate progress bar is shown at the bottom of the toolbar until the export is finished.
    • Added getRowData(rowSelector) method that returns an object that represents the data that is contained in the specified row component.
    • Added ability to spawn row adding UI through exoposed methods. Note that rowEditing should be enabled.
      • beginAddRow method which starts the adding row UI.
      • beginAddChild method which starts the adding child UI.
      this.grid.beginAddRow(rowID);
      • Added an input properties to IgxGridEditingActions component to show/hide add row and add child buttons which trigger the UI based on context expression.
      <igx-tree-grid [rowEditing]="true">
          <igx-action-strip #actionStrip>
              <igx-grid-editing-actions [addRow]="true" [addChild]="actionStrip.context.level < 3">
              </igx-grid-editing-actions>
          </igx-action-strip>
      </igx-tree-grid>
  • IGX_INPUT_GROUP_TYPE injection token
    • Allows for setting an input group type on a global level, so all input-group instances, including components using such an instance as a template will have their input group type set to the one specified by the token. It can be overridden on a component level by explicitly setting a type.
  • IgxExcelExporterService
    • Added worksheetName property to the IgxExcelExporterOptions, that allows setting the name of the worksheet.
  • IgxDatePicker
    • The the label property have been deprecated and a custom label can also be set by nesting a inside the tags.
  • IgxTimePicker
    • Added a custom label functionality.
  • IgxCalendar and IgxDatePicker - new showWeekNumbers input, that allows showing of the week number at left side of content area.
  • IgxOverlay
    • The PositionSettings target property has been deprecated and moved to OverlaySettings.
    • An optional Point/HTML Element parameter target has been added to the position() method
  • IgxToast
    • The component now utilizes the IgxOverlayService to position itself in the DOM.
    • An additional input property outlet has been added to allow users to specify custom Overlay Outlets using the IgxOverlayOutletDirective;
    • The position property now accepts values of type IgxToastPosition that work with strict templates.
  • IgxExpansionPanelHeader
    • onInteraction is now cancelable
    • Added iconRef property. This can be used to get a reference to the displayed expand/collapsed indicator. Returns null if iconPosition is set to NONE.

10.1.8

09 Oct 06:47
40a2972

Choose a tag to compare

Bug fixes

  • Clicking [igxHint] should not focus the input element in inputGroup #7489
  • Nav drawer flex shrink is not restricted #6856
  • IgxDateRangePicker regards August 31 invalid. #8073
  • IgxDatePicker in vertical view with several months has broken layout #7233
  • Grid's navigateTo(rowIndex) fails with an error "Cannot read property 'rowEnd' of undefined" when the grid has a multi-row layout. #8052
  • igx-date-range-picker is editable when disabled property is set to true. #8062
  • Can't entry a time from the keyboard after resetting the time with the reset button. #8146
  • Editing-cell mode will finish when open the context menu (right click) #8187
  • igx-grid: row edit overlay disappears #8023
  • Can't entry a time from the keyboard after resetting the time with the reset button. #8146
  • igxCombo: Clear button is active when disabled property is set to true. #8200

9.1.19

09 Oct 06:48
4671176

Choose a tag to compare

Bug fixes

  • Clicking [igxHint] should not focus the input element in inputGroup #7489
  • Nav drawer flex shrink is not restricted #6856
  • IgxDateRangePicker regards August 31 invalid. #8073
  • IgxDatePicker in vertical view with several months has broken layout #7233
  • Can't entry a time from the keyboard after resetting the time with the reset button. #8146
  • Editing-cell mode will finish when open the context menu (right click) #8187
  • igx-grid: row edit overlay disappears #8023
  • igxCombo: Clear button is active when disabled property is set to true. #8200
  • igxTimePicker: onValueChanged event is not triggered when a value "00:00" is removed with the "clear" button #8135

10.2.0-alpha.5

01 Oct 08:29
341b280

Choose a tag to compare

10.2.0-alpha.5 Pre-release
Pre-release

General

  • IgxDatePicker
    • Added aria-labelledby property for the input field. This will ensure the users of assistive technologies will also know what component is used for, upon input focus.
  • IgxInputGroup
    • Breaking Change - Removed fluent, fluent_search, bootstrap, and indigo as possible values for the type input property.
    • Behavioral Change - The styling of the input group is now dictated by the theme being used. The remaining types - line, border, and box will only have effect on the styling when used with the material theme. The search type will affect styling when used with all themes. Changing the theme at runtime will not change the styling of the input group, a page refresh is required.
  • IgxOverlay
    • Breaking Change - target property in PositionSettings has been deprecated. You can set the attaching target for the component to show in OverlaySettings instead.
  • IgxSelect
    • Added aria-labelledby property for the items list container(marked as role="listbox"). This will ensure the users of assistive technologies will also know what the list items container is used for, upon opening.
  • IgxDatePicker
    • Breaking Change - Deprecated the label property.
  • igxGridActions
    • Added asMenuItems Input for grid actions - igx-grid-editing-actions, igx-grid-pinning-actions. When set to true will render the related action buttons as separate menu items with button and label.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • When triggering an export of the grid via the toolbar and the export takes more than 500 milliseconds, the export button becomes disabled and an indeterminate progress bar is shown at the bottom of the toolbar until the export is finished.
    • Added getRowData(rowSelector) method that returns an object that represents the data that is contained in the specified row component.
    • Added ability to spawn row adding UI through exoposed methods. Note that rowEditing should be enabled.
      • beginAddRow method which starts the adding row UI.
      • beginAddChild method which starts the adding child UI.
      this.grid.beginAddRow(rowID);
      • Added an input properties to IgxGridEditingActions component to show/hide add row and add child buttons which trigger the UI based on context expression.
      <igx-tree-grid [rowEditing]="true">
          <igx-action-strip #actionStrip>
              <igx-grid-editing-actions [addRow]="true" [addChild]="actionStrip.context.level < 3">
              </igx-grid-editing-actions>
          </igx-action-strip>
      </igx-tree-grid>
  • IGX_INPUT_GROUP_TYPE injection token
    • Allows for setting an input group type on a global level, so all input-group instances, including components using such an instance as a template will have their input group type set to the one specified by the token. It can be overridden on a component level by explicitly setting a type.
  • IgxExcelExporterService
    • Added worksheetName property to the IgxExcelExporterOptions, that allows setting the name of the worksheet.
  • IgxDatePicker
    • The the label property have been deprecated and a custom label can also be set by nesting a inside the tags.
  • IgxTimePicker
    • Added a custom label functionality.
  • IgxCalendar and IgxDatePicker - new showWeekNumbers input, that allows showing of the week number at left side of content area.
  • IgxOverlay
    • The PositionSettings target property has been deprecated and moved to OverlaySettings.
    • An optional Point/HTML Element parameter target has been added to the position() method
  • IgxToast
    • The component now utilizes the IgxOverlayService to position itself in the DOM.
    • An additional input property outlet has been added to allow users to specify custom Overlay Outlets using the IgxOverlayOutletDirective;
    • The position property now accepts values of type IgxToastPosition that work with strict templates.

10.1.7

28 Sep 15:07
841f8cd

Choose a tag to compare

Bug fixes

  • Grid filter row does not respect display density #7090
  • IgxDatePicker accessibility issue #8080

9.1.18

28 Sep 14:36
93923dc

Choose a tag to compare

Bug fixes

  • Grid filter row does not respect display density #7090
  • IgxDatePicker accessibility issue #8080

10.2.0-alpha.4

25 Sep 15:01
cabfdde

Choose a tag to compare

10.2.0-alpha.4 Pre-release
Pre-release

General

  • IgxDatePicker
    • Added aria-labelledby property for the input field. This will ensure the users of assistive technologies will also know what component is used for, upon input focus.
  • IgxInputGroup
    • Breaking Change - Removed fluent, fluent_search, bootstrap, and indigo as possible values for the type input property.
    • Behavioral Change - The styling of the input group is now dictated by the theme being used. The remaining types - line, border, and box will only have effect on the styling when used with the material theme. The search type will affect styling when used with all themes. Changing the theme at runtime will not change the styling of the input group, a page refresh is required.
  • IgxOverlay
    • Breaking Change - target property in PositionSettings has been deprecated. You can set the attaching target for the component to show in OverlaySettings instead.
  • IgxSelect
    • Added aria-labelledby property for the items list container(marked as role="listbox"). This will ensure the users of assistive technologies will also know what the list items container is used for, upon opening.
  • IgxDatePicker
    • Breaking Change - Deprecated the label property.

New Features

  • IgxGrid, IgxTreeGrid, IgxHierarchicalGrid
    • When triggering an export of the grid via the toolbar and the export takes more than 500 milliseconds, the export button becomes disabled and an indeterminate progress bar is shown at the bottom of the toolbar until the export is finished.
  • IGX_INPUT_GROUP_TYPE injection token
    • Allows for setting an input group type on a global level, so all input-group instances, including components using such an instance as a template will have their input group type set to the one specified by the token. It can be overridden on a component level by explicitly setting a type.
  • IgxExcelExporterService
    • Added worksheetName property to the IgxExcelExporterOptions, that allows setting the name of the worksheet.
  • IgxDatePicker
    • The the label property have been deprecated and a custom label can also be set by nesting a inside the tags.
  • IgxTimePicker
    • Added a custom label functionality.
  • IgxCalendar and IgxDatePicker - new showWeekNumbers input, that allows showing of the week number at left side of content area.
  • IgxOverlay
    • The PositionSettings target property has been deprecated and moved to OverlaySettings.
    • An optional Point/HTML Element parameter target has been added to the position() method

10.1.6

24 Sep 14:10
b405226

Choose a tag to compare

Bug fixes and improvements

  • ExpressionChangedAfterItHasBeenCheckedError for @animateChange 'next' and 'prev' #8074
  • igxSelectComponent accessibility issue #8079
  • Failing test: IgxGrid Master Detail #grid Keyboard Navigation #8076
  • Tests Refactoring: IgxGrid - MCH #8119

9.1.17

24 Sep 14:06
1f61938

Choose a tag to compare

Bug fixes

  • igxSelectComponent accessibility issue #8079
  • ExpressionChangedAfterItHasBeenCheckedError for @animateChange 'next' and 'prev' #8074