From dd76db20580690a9b9954e0fef8fef5e080b1b3b Mon Sep 17 00:00:00 2001 From: Maya Date: Thu, 2 Feb 2017 15:04:16 +0200 Subject: [PATCH] Adding Changelog file with information on new features and breaking changes --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..834ac67 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,39 @@ +## IgniteUI Components Changelog + +### Features +- Allow calling component methods via the angular 2 wrapper ([#126](https://github.com/IgniteUI/igniteui-angular2/pull/126)) +- Accessing grid features via the angular 2 wrapper ([#98](https://github.com/IgniteUI/igniteui-angular2/issues/98)) +- Binding to grid feature events. ([#126](https://github.com/IgniteUI/igniteui-angular2/pull/126)) + +### BREAKING CHANGES + - Each igGrid feature now has a separate Directive definition that needs to be imported and added to the module definition if the related feature is to be used in the grid. + In previous versions all fetaures were imported as a single Directive definition. Example: + + import { Feature } from "../../src/igniteui.angular2"; + + Now each feature has its own specific directive. For example for Paging feature: + + import { Features, IgGridPagingFeature } from "../../src/igniteui.angular2"; + + + Also the syntax for specifying the features has been changed. + + OLD: + + + + + ... + + + + NEW: + + + + + + + + + \ No newline at end of file