Skip to content

Commit

Permalink
Merge branch 'rkolev/toolbar-template-6.2.x' of https://github.com/Ig…
Browse files Browse the repository at this point in the history
…niteUI/igniteui-angular into rkolev/toolbar-template-6.2.x
  • Loading branch information
Radko Kolev committed Nov 22, 2018
2 parents 4b59c8a + e915768 commit c7f1921
Show file tree
Hide file tree
Showing 179 changed files with 5,136 additions and 1,750 deletions.
20 changes: 18 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
Closes # .
Closes #

Additional information related to this pull request:
### Additional information (check all that apply):
- [ ] Bug fix
- [ ] New functionality
- [ ] Documentation
- [ ] Demos
- [ ] CI/CD

### Checklist:
- [ ] All relevant tags have been applied to this PR
- [ ] This PR includes unit tests covering all the new code
- [ ] This PR includes API docs for newly added methods/properties
- [ ] This PR includes `feature/README.MD` updates for the feature docs
- [ ] This PR includes general feature table updates in the root `README.MD`
- [ ] This PR includes `CHANGELOG.MD` updates for newly added functionality
- [ ] This PR contains breaking changes
- [ ] This PR includes `ng update` migrations for the breaking changes
- [ ] This PR includes behavioral changes and the feature specification has been updated with them

14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes for each version of this project will be documented in this
## 6.2.1
- `igx-drop-down`:
- Added a new property `maxHeight`, defining the max height of the drop down.
- 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`, and `igx-tooltip-theme`. Use the `$schema` prop, now available on all component themes to change the look for a specific theme. See the [Theming](https://www.infragistics.com/products/ignite-ui-angular/angular/components/themes/schemas.html) documentation to learn more.
- `igx-combo`:
- Added a new input property - `displayDensity`. It allows configuring the `displayDensity` of the combo's `value` and `search` inputs.

## 6.2.0
- Updated typography following the Material guidelines. Type system is now also optional and can be applied via class to the desired containers. [#2112](https://github.com/IgniteUI/igniteui-angular/pull/2112)
Expand Down Expand Up @@ -168,13 +173,16 @@ When you focus a specific cell and press one of the following key combinations,
- **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 type `IFocusChangeEventArgs`;
- For more detailed information see the [official keyboard navigation specification](https://github.com/IgniteUI/igniteui-angular/wiki/igxGrid-Specification#kb-navigation).
## 6.1.8

## 6.1.9

### General

- `sortStrategy` input exposed to provide custom sort strategy for the `IgxColumnComponent`. The custom strategy should implement the `ISortingStrategy` interface, or can extend the base `SortingStrategy` class and override all or some of its public/protected members.
- `sortStrategy` input exposed to provide custom sort strategy for the `IgxColumnComponent`. The custom strategy should implement the `ISortingStrategy` interface, or can extend the base `DefaultSortingStrategy` class and override all or some of its public/protected members.
- The previously optional `ignoreCase` and `strategy` of the `ISortingExpression` interface are no longer optional. In order to use our default sorting strategy in expressions built programmatically, you need to pass `DefaultSortingStrategy.instance()` or any implementation of the `ISortingStrategy` interface.
- `groupingComparer` input exposed to provide custom grouping compare function for the `IgxColumnComponent`. The function receives two values and should return `0` if they are to considered members of the same group.

## 6.1.8

### Bug fixes

Expand Down
24 changes: 24 additions & 0 deletions extras/docs/themes/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"en": {
"development": {
"url": "https://dev.infragistics.local"
},
"staging": {
"url": "https://staging.infragistics.local"
},
"production": {
"url": "https://www.infragistics.com"
}
},
"jp": {
"development": {
"url": "https://jp.dev.infragistics.local"
},
"staging": {
"url": "https://jp.staging.infragistics.local"
},
"production": {
"url": "https://jp.infragistics.com"
}
}
}
Loading

0 comments on commit c7f1921

Please sign in to comment.