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: dist/npm/README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Ignite UI components for Angular
2
2
3
-
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).
3
+
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).
4
4
5
5
# Requirements
6
6
@@ -13,8 +13,8 @@ Use the components found in `src\igniteui.angular2.ts` to use [Ignite UI](http:/
13
13
To run the samples, you need [Node.js](http://nodejs.org/) installed on your machine.
14
14
Afterwards, from your terminal run the following commands:
@@ -318,7 +318,7 @@ As a starting point, you can review the [Angular documentation on the subject](h
318
318
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.
319
319
First we need to install the required packages:
320
320
-`npm install ignite-ui`
321
-
-`npm install igniteui-angular2`
321
+
-`npm install igniteui-angular-wrappers`
322
322
-`npm install jquery-ui-bundle`
323
323
324
324
**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
@@ -334,19 +334,19 @@ Then go to the app module and import the combo - `import 'ignite-ui/js/modules/i
334
334
335
335
In addition, at the end import the IgniteUIModule:
336
336
337
-
import { IgniteUIModule } from 'igniteui-angular2';
337
+
import { IgniteUIModule } from 'igniteui-angular-wrappers';
338
338
@NgModule({
339
339
imports: [ BrowserModule, IgniteUIModule ],
340
340
…
341
341
})
342
342
export class AppModule {}
343
343
344
344
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.
345
-
Open rollup-config.js, include igniteui-angular2 to `commonjs` plugin and add `namedExport` for jquery:
345
+
Open rollup-config.js, include igniteui-angular-wrappers to `commonjs` plugin and add `namedExport` for jquery:
@@ -390,7 +390,7 @@ Open rollup-config.js file and import postcss:
390
390
}),
391
391
392
392
393
-
[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:
393
+
[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:
0 commit comments