Skip to content

Commit fa32e9f

Browse files
committed
Merge branch 'master' into nalipiev/igniteui-shematics
2 parents 247d6e2 + 233b454 commit fa32e9f

31 files changed

+376
-177
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All notable changes for each version of this project will be documented in this
66

77
### General
88
- Added support for the Ivy renderer.
9-
- **Breaking Changes** The following classes and enumarators have been renamed. Using `ng update` will apply automatically migrate your project to use the new names.
9+
- **Breaking Changes** The following classes and enumerators have been renamed. Using `ng update` will apply automatically migrate your project to use the new names.
1010
- `IgxDropDownBase` -> `IgxDropDownBaseDirective`
1111
- `IgxDropDownItemBase` -> `IgxDropDownItemBaseDirective`
1212
- `IgxGridBaseComponent` -> `IgxGridBaseDirective`
@@ -45,7 +45,7 @@ All notable changes for each version of this project will be documented in this
4545
- `igxGridState` directive added to make it easy for developers to save and restore the grid state. The directive exposes the `getState` and `setState` methods to save/restore the state and an `options` input property to exclude features.
4646
- `IgxCarousel`:
4747
- **Breaking Changes** -The carousel slides are no longer array, they are changed to QueryList.
48-
- **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`
48+
- **Behavioral 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`
4949
- `IgxAvatar`:
5050
- **Breaking Changes** - renamed the `default` enumeration member to `custom` in `IgxAvatarType`;
5151
- `IgxBadge`:
@@ -57,12 +57,12 @@ All notable changes for each version of this project will be documented in this
5757
- **Breaking Changes** - renamed the `default` enumeration member to `solid` in `IgxDividerType`;
5858
- **Breaking Changes** - renamed the `isDefault` getter to `isSolid`;
5959
- `IgxProgress`:
60-
- **Breaking Changes** - renamed the `danger` enumeration member to `error` in `IgxProgresType`;
60+
- **Breaking Changes** - renamed the `danger` enumeration member to `error` in `IgxProgressType`;
6161
- **Breaking Changes** - renamed the `danger` getter to `error`;
6262
- `IgxTabs`:
6363
- **Breaking Changes** - The `tabsType` input property has been renamed to `type`. It should get renamed in your components via `ng update`;
6464
- `igxOverlay`:
65-
- **Behavioural Change** - `igxOverlay` - no longer persists element scrolling `out of the box`. In order to persist an element scroll position after attaching the element to an overlay, handle the exposed `onAppended` overlay event and manage/restore the scroll position.
65+
- **Behavioral Change** - `igxOverlay` - no longer persists element scrolling `out of the box`. In order to persist an element scroll position after attaching the element to an overlay, handle the exposed `onAppended` overlay event and manage/restore the scroll position.
6666

6767
### New Features
6868
- `IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`:
@@ -75,9 +75,9 @@ All notable changes for each version of this project will be documented in this
7575
- `filteringExpressionsTreeChange` event emitter is added, which is fired whenever a change to the filtering expressions has occurred (prior to performing the actual filtering).
7676
- `advancedFilteringExpressionsTreeChange` event emitter is added, which is fired whenever a change to the advanced filtering expressions has occurred (prior to performing the actual filtering).
7777
- `collapsible` and `expanded` 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;
78-
- `collapsibleChange` and `expandedChange` events are added to the IgxColumnGroupComponent which are emited whenever `collapsible` and `expanded` properties are changed accordingly;
79-
- `visibleWhenCollapsed` property has been added to the IgxColumnComponent; Allows you to set whether the column stay visible when its parrent is collapsed.
80-
- `visibleWhenCollapsedChange` events is added to the IgxColumnComponent which are emited whenever `visibleWhenCollapsed` property is changed;
78+
- `collapsibleChange` and `expandedChange` events are added to the IgxColumnGroupComponent which are emitted whenever `collapsible` and `expanded` properties are changed accordingly;
79+
- `visibleWhenCollapsed` property has been added to the IgxColumnComponent; Allows you to set whether the column stay visible when its parent is collapsed.
80+
- `visibleWhenCollapsedChange` events is added to the IgxColumnComponent which are emitted whenever `visibleWhenCollapsed` property is changed;
8181
- `collapsibleIndicatorTemplate` property is introduced to IgxColumnGroupComponent, which allows you to set a custom template for the expand collapse indicator;
8282
- `igxCollapsibleIndicator` directive has been introduced, which allows you to set a custom template for the expand collapse indicator;
8383
- `IgxGridExcelStyleFilteringComponent` and `IgxAdvancedFilteringDialogComponent` can now be hosted outside of the grid in order to provide the same experience as the built-in filtering UI.

ROADMAP.md

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,39 @@
11
# Roadmap - Ignite UI for Angular
22

33
# Current Milestone
4-
## Milestone 10 (Due by December, 2019)
4+
5+
## Milestone 11 (Due by April, 2020)
56

67
1. Dock Manger [#5980](https://github.com/IgniteUI/igniteui-angular/issues/5980)
7-
2. Theming service for Ignite UI for Angular [#5999](https://github.com/IgniteUI/igniteui-angular/issues/5999)
8+
2. Range Date Picker [#5732](https://github.com/IgniteUI/igniteui-angular/issues/5732)
9+
3. RTL Support across Ignite UI for Angular components [#5958](https://github.com/IgniteUI/igniteui-angular/issues/5958)
10+
4. Column freezing/Pinning on the right (igx-grid) [#5879](https://github.com/IgniteUI/igniteui-angular/issues/5879)
11+
5. Column Selection for IgxGrid [#6638](https://github.com/IgniteUI/igniteui-angular/issues/6638)
12+
6. Splitter IgxGrid [#6639](https://github.com/IgniteUI/igniteui-angular/issues/6639)
13+
7. Row Pinning IgxGrid [#6640](https://github.com/IgniteUI/igniteui-angular/issues/6640)
14+
8. Data Analysis Directive [#1752](https://github.com/IgniteUI/igniteui-angular-samples/issues/1752)
15+
16+
17+
## Going down the road
18+
19+
1. Tile Manager
20+
2. Visual Cell merging
21+
22+
# Previous Milestones
23+
24+
## Milestone 10 (Released February 10th, 2020)
25+
26+
1. Dock Manger [#5980](https://github.com/IgniteUI/igniteui-angular/issues/5980)
27+
2. **[DONE]** Theming service for Ignite UI for Angular [#5999](https://github.com/IgniteUI/igniteui-angular/issues/5999)
828
3. Range Date Picker [#5732](https://github.com/IgniteUI/igniteui-angular/issues/5732)
929
4. **[DONE]** igxGrid overlay components exposed for instantiation in arbitrary container [#5878](https://github.com/IgniteUI/igniteui-angular/issues/5878)
1030
5. RTL Support across Ignite UI for Angular components [#5958](https://github.com/IgniteUI/igniteui-angular/issues/5958)
1131
6. **[DONE]** Carousel slide animations/transitions [#4268](https://github.com/IgniteUI/igniteui-angular/issues/4268)
1232
7. **[DONE]** Access all data when calculating summary per column [#5754](https://github.com/IgniteUI/igniteui-angular/issues/5754)
13-
8. Angular 9 support [#5998](https://github.com/IgniteUI/igniteui-angular/issues/5998)
33+
8. **[DONE]** Angular 9 support [#5998](https://github.com/IgniteUI/igniteui-angular/issues/5998)
1434
9. **[DONE]** Allow master-detail style visualization with igxHierarchicalGrid [#5880](https://github.com/IgniteUI/igniteui-angular/issues/5880)
1535
10. **[DONE]** Collapsible column groups (column expansion state templates) [#3343](https://github.com/IgniteUI/igniteui-angular/issues/3343)
1636

17-
## Going down the road
18-
19-
1. Row-pinning
20-
2. Visual Cell merging
21-
3. Splitter
22-
4. PDF Integration
23-
24-
# Previous Milestones
25-
2637
## Milestone 9 (Released September 26th, 2019)
2738

2839
1. **[DONE]** IgxGrid Advanced Filtering [#5496](https://github.com/IgniteUI/igniteui-angular/issues/5496)

0 commit comments

Comments
 (0)