Skip to content

Commit ddca6a4

Browse files
committed
Update for yFiles for HTML 2.4.0.5
1 parent 5ea0a47 commit ddca6a4

File tree

3 files changed

+24
-17
lines changed

3 files changed

+24
-17
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ The yFiles package also contains a bigger [Angular CLI integration demo](https:/
4747

4848
Furthermore, there is an extensive [Developer's Guide](https://docs.yworks.com/yfileshtml/#/dguide/introduction#top) that covers anything from graph creation and styling to automatic layouts and advanced customizations.
4949

50+
## Create a Diagram Application with Angular
51+
52+
The [App Generator](https://www.yworks.com/products/app-generator) is a tool that lets you interactively create a diagram
53+
application prototype to visualize your data. Select features like editing, context menu, graph search, or printing
54+
and customize the interaction with the graph. Generate Angular code for your prototype and use it with a valid
55+
[yFiles for HTML](https://www.yworks.com/products/yfiles-for-html) version.
56+
5057
## Support
5158

5259
If you need help with your setup or a certain feature, don't hesitate to contact our support

integration-howto.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ TL;DR Add yFiles as a dependency in the `package.json` and start importing yFile
66

77
## Running the CLI
88

9-
Run the Vue-Cli with `> ng new yfiles-angular-cli-integration` and select following options:
9+
Run @angular/cli with `> ng new yfiles-angular-cli-integration` and select following options:
1010

1111
- `? Would you like to add Angular routing?` No
1212
- `? Which stylesheet format whould you like to use?` CSS
@@ -29,7 +29,7 @@ Adding yFiles as a dependency is as easy as installing an external library from
2929
```
3030
"dependencies": {
3131
...
32-
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.3-Evaluation/lib-dev/es-modules/yfiles-24.0.2-eval-dev.tgz"
32+
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.5-Evaluation/lib-dev/es-modules/yfiles-24.0.5-eval-dev.tgz"
3333
},
3434
```
3535

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "1.0.0",
44
"author": "yWorks GmbH <[email protected]>",
55
"scripts": {
6-
"preinstall": "cd ../yFiles-for-HTML-Complete-2.4.0.3-Evaluation && npm run prepare-package",
7-
"postinstall": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.4.0.3-Evaluation/lib/license.json','./src/license.json')\"",
6+
"preinstall": "cd ../yFiles-for-HTML-Complete-2.4.0.5-Evaluation && npm run prepare-package",
7+
"postinstall": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.4.0.5-Evaluation/lib/license.json','./src/license.json')\"",
88
"ng": "ng",
99
"start": "ng serve",
1010
"build": "node --max_old_space_size=6000 node_modules/@angular/cli/bin/ng build",
@@ -13,25 +13,25 @@
1313
},
1414
"private": true,
1515
"dependencies": {
16-
"@angular/animations": "~12.1.0",
17-
"@angular/common": "~12.1.0",
18-
"@angular/compiler": "~12.1.0",
19-
"@angular/core": "~12.1.0",
20-
"@angular/forms": "~12.1.0",
21-
"@angular/platform-browser": "~12.1.0",
22-
"@angular/platform-browser-dynamic": "~12.1.0",
23-
"@angular/router": "~12.1.0",
16+
"@angular/animations": "~12.2.7",
17+
"@angular/common": "~12.2.7",
18+
"@angular/compiler": "~12.2.7",
19+
"@angular/core": "~12.2.7",
20+
"@angular/forms": "~12.2.7",
21+
"@angular/platform-browser": "~12.2.7",
22+
"@angular/platform-browser-dynamic": "~12.2.7",
23+
"@angular/router": "~12.2.7",
2424
"rxjs": "~7.1.0",
2525
"tslib": "^2.3.0",
26-
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.3-Evaluation/lib-dev/es-modules/yfiles-24.0.2-eval-dev.tgz",
26+
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.5-Evaluation/lib-dev/es-modules/yfiles-24.0.5-eval-dev.tgz",
2727
"zone.js": "~0.11.4"
2828
},
2929
"devDependencies": {
30-
"@angular-devkit/build-angular": "~12.1.0",
31-
"@angular/cli": "~12.1.0",
32-
"@angular/compiler-cli": "~12.1.0",
30+
"@angular-devkit/build-angular": "~12.2.7",
31+
"@angular/cli": "~12.2.7",
32+
"@angular/compiler-cli": "~12.2.7",
3333
"@types/jasmine": "~3.7.7",
34-
"@types/node": "^15.12.4",
34+
"@types/node": "^15.14.0",
3535
"jasmine-core": "~3.7.1",
3636
"karma": "~6.3.4",
3737
"karma-chrome-launcher": "~3.1.0",

0 commit comments

Comments
 (0)