Skip to content

Commit cad9d07

Browse files
authored
Merge pull request #532 from mgusmano/ext-angular-7.2.x
guides
2 parents 5cd83fb + 77170b9 commit cad9d07

File tree

4 files changed

+21
-23
lines changed

4 files changed

+21
-23
lines changed

packages/ext-angular-classic/guides/Adding_ExtAngular_to_Angular_CLI_project.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To gain access to the Sencha npm repository:
99
1. [Start a free trial of ExtReact](https://www.sencha.com/products/extreact/evaluate/).
1010
2. [Purchase ExtReact or Ext JS Enterprise](https://www.sencha.com/store/).
1111

12-
* **Note:** Ext JS enterprise customers already have access to ExtReact.
12+
* **Note:** Ext JS enterprise customers already have access to ExtAngular.
1313
* **Note:** Existing customers use your support portal credentials. But switch the username, `@` character with `'..'` two periods, so the username would look something like this after it's converted: `name..gmail.com`.
1414

1515
### Step 2: Login to the npm repository
@@ -31,7 +31,7 @@ npm install -g @angular/cli
3131
- Generate an Angular appication.
3232

3333
```
34-
ng new ext-angular-modern-demo --minimal=true --interactive=false -g=true --skipInstall=false
34+
ng new ext-angular-classic-demo --minimal=true --interactive=false -g=true --skipInstall=false
3535
```
3636

3737
## Add ExtAngular Components to the Angular Application
@@ -41,7 +41,8 @@ ng new ext-angular-modern-demo --minimal=true --interactive=false -g=true --skip
4141
In the project, install the ExtAngular components dependency in the package.json.
4242

4343
```
44-
npm install @sencha/ext-angular-modern
44+
npm install @sencha/ext-classic-runtime --save
45+
npm install @sencha/ext-angular-classic --save
4546
```
4647

4748
### Step 2: Configure Application
@@ -64,19 +65,11 @@ Configure the Angular App Module
6465

6566
In the file [project]/src/app/app.module.ts add the ExtAngular components import.
6667

67-
First delcare the import to import into the app module.
68-
Declare the import in the imports property.
69-
7068
```
7169
import { BrowserModule } from '@angular/platform-browser';
7270
import { NgModule } from '@angular/core';
73-
```
74-
7571
// 1. Import the ExtAngular components
76-
77-
```
78-
import { ExtAngularModernModule } from '@sencha/ext-angular-modern';
79-
72+
import { ExtAngularClassicModule } from '@sencha/ext-angular-classic';
8073
import { AppComponent } from './app.component';
8174
8275
@NgModule({
@@ -86,7 +79,7 @@ import { AppComponent } from './app.component';
8679
imports: [
8780
BrowserModule,
8881
// 2. Delclare the ExtAngular import in the app module imports.
89-
ExtAngularModernModule
82+
ExtAngularClassicModule
9083
],
9184
providers: [],
9285
bootstrap: [AppComponent]

packages/ext-angular-classic/guides/WHATS_NEW.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
### What's new in version 7.2.0
44

5+
- new npm package for runtime
6+
- @sencha/ext-classic-runtime
7+
- @sencha/ext-material-runtime
8+
9+
- support for Ext JS 7.2
10+
511
### What's new in version 7.1
612

713
#### separate modern and classic packages

packages/ext-angular-modern/guides/Adding_ExtAngular_to_Angular_CLI_project.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To gain access to the Sencha npm repository:
99
1. [Start a free trial of ExtReact](https://www.sencha.com/products/extreact/evaluate/).
1010
2. [Purchase ExtReact or Ext JS Enterprise](https://www.sencha.com/store/).
1111

12-
* **Note:** Ext JS enterprise customers already have access to ExtReact.
12+
* **Note:** Ext JS enterprise customers already have access to ExtAngular.
1313
* **Note:** Existing customers use your support portal credentials. But switch the username, `@` character with `'..'` two periods, so the username would look something like this after it's converted: `name..gmail.com`.
1414

1515
### Step 2: Login to the npm repository
@@ -41,7 +41,8 @@ ng new ext-angular-modern-demo --minimal=true --interactive=false -g=true --skip
4141
In the project, install the ExtAngular components dependency in the package.json.
4242

4343
```
44-
npm install @sencha/ext-angular-modern
44+
npm install @sencha/ext-modern-runtime --save
45+
npm install @sencha/ext-angular-modern --save
4546
```
4647

4748
### Step 2: Configure Application
@@ -64,19 +65,11 @@ Configure the Angular App Module
6465

6566
In the file [project]/src/app/app.module.ts add the ExtAngular components import.
6667

67-
First delcare the import to import into the app module.
68-
Declare the import in the imports property.
69-
7068
```
7169
import { BrowserModule } from '@angular/platform-browser';
7270
import { NgModule } from '@angular/core';
73-
```
74-
7571
// 1. Import the ExtAngular components
76-
77-
```
7872
import { ExtAngularModernModule } from '@sencha/ext-angular-modern';
79-
8073
import { AppComponent } from './app.component';
8174
8275
@NgModule({

packages/ext-angular-modern/guides/WHATS_NEW.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
### What's new in version 7.2.0
44

5+
- new npm package for runtime
6+
- @sencha/ext-classic-runtime
7+
- @sencha/ext-material-runtime
8+
9+
- support for Ext JS 7.2
10+
511
### What's new in version 7.1
612

713
#### separate modern and classic packages

0 commit comments

Comments
 (0)