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
+
9
+
**IMPORTANT** The repository has been renamed from `igniteui-angular2` to `igniteui-angular-wrappers`. Read more on our new [naming convention](https://www.infragistics.com/community/blogs/b/infragistics/posts/ignite-ui-github-repo-name-changes).
8
10
9
11
# Requirements
10
12
@@ -17,12 +19,12 @@ Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http:/
17
19
To run the samples, you need [Node.js](http://nodejs.org/) installed on your machine.
18
20
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`.
27
+
`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
28
27
29
```
28
30
"dependencies": {
@@ -335,13 +337,13 @@ Component methods can be called by accessing the component from the view. For ex
335
337
}
336
338
}
337
339
338
-
## Using Ignite UI Angular Components inside AOT app
340
+
## Using Ignite UI Wrappers for Angular inside AOT app
339
341
As a starting point, you can review the [Angular documentation on the subject](https://angular.io/docs/ts/latest/cookbook/aot-compiler.html), which provides a guide how to compile an app with AOT. Follow their instructions to AOT compile the quickstart app.
340
342
341
343
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
344
First we need to install the required packages:
343
345
-`npm install ignite-ui`
344
-
-`npm install igniteui-angular2`
346
+
-`npm install igniteui-angular-wrappers`
345
347
-`npm install jquery-ui-bundle`
346
348
347
349
**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 +359,19 @@ Then go to the app module and import the combo - `import 'ignite-ui/js/modules/i
357
359
358
360
In addition, at the end import the IgniteUIModule:
359
361
360
-
import { IgniteUIModule } from 'igniteui-angular2';
362
+
import { IgniteUIModule } from 'igniteui-angular-wrappers';
361
363
@NgModule({
362
364
imports: [ BrowserModule, IgniteUIModule ],
363
365
…
364
366
})
365
367
export class AppModule {}
366
368
367
369
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:
370
+
Open rollup-config.js, include igniteui-angular-wrappers to `commonjs` plugin and add `namedExport` for jquery:
@@ -413,7 +415,7 @@ Open rollup-config.js file and import postcss:
413
415
}),
414
416
415
417
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:
418
+
[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
419
1. npm install
418
420
2. npm run build:aot
419
421
3. npm run serve
@@ -440,7 +442,7 @@ This data source instance is granted with intellisense about igDataSource method
440
442
441
443
source.dataBind();
442
444
443
-
Review the following [demo](http://igniteui.github.io/igniteui-angular2/samples/igDataSource/igDataSource.html) for more information.
445
+
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