Skip to content

7.2.0-beta.3

Pre-release
Pre-release
Compare
Choose a tag to compare
@mpavlinov mpavlinov released this 15 Feb 16:58
· 22297 commits to master since this release
69a9b54

New Features

  • 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 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>

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 the igx-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 the igx-chip-theme have been replaced with $border-radius.

  • The$roundness property on the iigx-tooltip-theme have been replaced with $border-radius.

  • Enhancement - Expansion Panel keyboard navigation w/ ArrowUp / ArrowDown #3883

  • Expose foreign key for hierarchical grid #3868

  • igxDropDown event arguments should include browser event #3789

Bug Fixes

  • When going into edit mode, the row editing overlay is not correctly positioned #3917
  • Overlay is not properly positioned when outlet is in a transformed view #3876
  • Calling open() on an already opened IgxDropDown replays the opening animation #3810
  • Uncommitted new rows are expandable #3879
  • When collapse a group row and scroll there is empty space on the grid #3877
  • IgxHierarchicalGrid scrolls to bottom when expanding a row after expanding previous one. #3881
  • Can't construct a query for the property childColumns of IgxHierarchicalGridComponent #3880
  • Custom toolbar template cannot be applied per hierarchical level #3870
  • When there are 2 row islands on the same level, the data for the second one is not mapped correctly #3872
  • Upgrade to 7.1.3 and 7.1.4 broke [texTop] [textAlign] on Bar Linear Progress #3862