You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
## IgniteUI Components Changelog
2
2
3
3
### Features
4
-
- Allow calling component methods via the angular 2 wrapper ([#126](https://github.com/IgniteUI/igniteui-angular2/pull/126))
5
-
- Accessing grid features via the angular 2 wrapper ([#98](https://github.com/IgniteUI/igniteui-angular2/issues/98))
6
-
- Binding to grid feature events. ([#126](https://github.com/IgniteUI/igniteui-angular2/pull/126))
4
+
- Allow calling component methods via the Angular wrappers ([#126](https://github.com/IgniteUI/igniteui-angular-wrappers/pull/126))
5
+
- Accessing grid features via the Angular wrappers ([#98](https://github.com/IgniteUI/igniteui-angular-wrappers/issues/98))
6
+
- Binding to grid feature events. ([#126](https://github.com/IgniteUI/igniteui-angular-wrappers/pull/126))
7
7
8
8
### BREAKING CHANGES
9
9
- 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.
Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular2).
7
+
Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http://igniteui.com) controls in [Angular](https://angular.io/) applications. [Work with the running samples here](http://igniteui.github.io/igniteui-angular-wrappers).
8
8
9
9
# Requirements
10
10
@@ -17,12 +17,12 @@ Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http:/
17
17
To run the samples, you need [Node.js](http://nodejs.org/) installed on your machine.
18
18
Afterwards, from your terminal run the following commands:
`igniteui-angular2` depends on the `ignite-ui-full` licensed package. Follow [this guide](https://www.igniteui.com/help/using-ignite-ui-npm-packages) on setting up access to the Ignite UI private npm feed and add the dependency to the `package.json`.
25
+
`igniteui-angular-wrappers` depends on the `ignite-ui-full` licensed package. Follow [this guide](https://www.igniteui.com/help/using-ignite-ui-npm-packages) on setting up access to the Ignite UI private npm feed and add the dependency to the `package.json`.
26
26
27
27
```
28
28
"dependencies": {
@@ -341,7 +341,7 @@ As a starting point, you can review the [Angular documentation on the subject](h
341
341
Once you have a running application compiled with AOT, the next step is to add the Ignite UI Components into this app. In this demo IgComboComponent is being added to the app, igCombo is an OSS widget and it is part of the ignite-ui npm package.
342
342
First we need to install the required packages:
343
343
-`npm install ignite-ui`
344
-
-`npm install igniteui-angular2`
344
+
-`npm install igniteui-angular-wrappers`
345
345
-`npm install jquery-ui-bundle`
346
346
347
347
**Note**: You have to download the full Ignite UI product if you would like to use widgets which are not part of the OSS widgets. This is a [list](https://github.com/IgniteUI/ignite-ui#available-features-in-ignite-ui-open-source-version) of the controls available in the Open-source version
@@ -357,19 +357,19 @@ Then go to the app module and import the combo - `import 'ignite-ui/js/modules/i
357
357
358
358
In addition, at the end import the IgniteUIModule:
359
359
360
-
import { IgniteUIModule } from 'igniteui-angular2';
360
+
import { IgniteUIModule } from 'igniteui-angular-wrappers';
361
361
@NgModule({
362
362
imports: [ BrowserModule, IgniteUIModule ],
363
363
…
364
364
})
365
365
export class AppModule {}
366
366
367
367
In order to take advantage of the [Tree shaking](https://angular.io/docs/ts/latest/cookbook/aot-compiler.html#!#tree-shaking) the Rollup has to be set up.
368
-
Open rollup-config.js, include igniteui-angular2 to `commonjs` plugin and add `namedExport` for jquery:
368
+
Open rollup-config.js, include igniteui-angular-wrappers to `commonjs` plugin and add `namedExport` for jquery:
@@ -413,7 +413,7 @@ Open rollup-config.js file and import postcss:
413
413
}),
414
414
415
415
416
-
[Download](https://github.com/IgniteUI/igniteui-angular2/files/975676/quickstart-igniteui-angular2-aot.zip) the modified app which uses the specified product. To run it with AOT:
416
+
[Download](https://github.com/IgniteUI/igniteui-angular-wrappers/files/975676/quickstart-igniteui-angular-wrappers-aot.zip) the modified app which uses the specified product. To run it with AOT:
417
417
1. npm install
418
418
2. npm run build:aot
419
419
3. npm run serve
@@ -440,7 +440,7 @@ This data source instance is granted with intellisense about igDataSource method
440
440
441
441
source.dataBind();
442
442
443
-
Review the following [demo](http://igniteui.github.io/igniteui-angular2/samples/igDataSource/igDataSource.html) for more information.
443
+
Review the following [demo](http://igniteui.github.io/igniteui-angular-wrappers/samples/igDataSource/igDataSource.html) for more information.
Copy file name to clipboardExpand all lines: index.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -231,15 +231,15 @@ <h2>Samples</h2>
231
231
</div>
232
232
233
233
<divclass="push-down-md">
234
-
<ahref="https://github.com/IgniteUI/igniteui-angular2" class="btn btn-default btn-primary btn-lg"><iclass="fa fa-github"></i> View source on GitHub</a>
234
+
<ahref="https://github.com/IgniteUI/igniteui-angular-wrappers" class="btn btn-default btn-primary btn-lg"><iclass="fa fa-github"></i> View source on GitHub</a>
235
235
</div>
236
236
237
237
</div>
238
238
<footer>
239
239
<divclass="container">
240
240
<divclass="row">
241
241
<divclass="col-sm-12">
242
-
<p><ahref="https://github.com/IgniteUI/igniteui-angular2/issues">Feedback & Questions</a></p>
242
+
<p><ahref="https://github.com/IgniteUI/igniteui-angular-wrappers/issues">Feedback & Questions</a></p>
243
243
<pclass="small">For more information or to download a trial of Ignite UI, please visit: <ahref="http://www.igniteui.com">http://www.igniteui.com</a></p>
0 commit comments