Skip to content

Commit 771128b

Browse files
committed
Update for yFiles for HTML 2.6.0.2
1 parent 31852d3 commit 771128b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ A step-by-step description of how to integrate yFiles in an Angular application
3939

4040
## What's next?
4141

42-
This basic yFiles integration can be used as a starting point to test the capabilities of yFiles or to implement your own use case. yFiles for HTML comes with a lot of [source-code demos](https://live.yworks.com/demos/index.html) that show different aspects of the library.
42+
This basic yFiles integration can be used as a starting point to test the capabilities of yFiles or to implement your own use case. yFiles for HTML comes with a lot of [source-code demos](https://www.yworks.com/demos) that show different aspects of the library.
4343

4444
You can browse through the demos and look for features that you find interesting for your use case and integrate it in this basic component to build a more sophisticated application.
4545

46-
The yFiles package also contains a bigger [Angular CLI integration demo](https://live.yworks.com/demos/toolkit/angular/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/toolkit/angular)) as well as an [AngularJS 1 integration demo](https://live.yworks.com/demos/toolkit/angular1/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/toolkit/angular1)).
46+
The yFiles package also contains a more extensive [Angular CLI integration demo](https://www.yworks.com/demos/toolkit/angular/) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/toolkit/angular)).
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

integration-howto.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and start importing yFiles classes in your project.
88

99
## Running the CLI
1010

11-
Run @angular/cli with `> ng new yfiles-angular-integration-basic` and select following options:
11+
Run @angular/cli with `> ng new yfiles-angular-integration-basic` and select the following options:
1212

1313
- `? Would you like to add Angular routing?` No
1414
- `? Which stylesheet format whould you like to use?` CSS
@@ -19,12 +19,12 @@ This creates a basic Angular project.
1919

2020
Adding yFiles as a dependency is almost as easy as installing an external library from the npm registry:
2121

22-
1. Add yFiles for HTML as npm dependency to the created project, for example like this:
22+
1. Add yFiles for HTML as npm dependency to the created project, for example, like this:
2323

2424
```
2525
"dependencies": {
2626
...
27-
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.1-Evaluation/lib-dev/yfiles-26.0.1+eval-dev.tgz"
27+
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.2-Evaluation/lib-dev/yfiles-26.0.2+eval-dev.tgz"
2828
},
2929
```
3030

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "yfiles-angular-integration-basic",
3-
"version": "26.0.1",
3+
"version": "26.0.2",
44
"author": "yWorks GmbH <[email protected]>",
55
"scripts": {
66
"ng": "ng",
@@ -9,7 +9,7 @@
99
"watch": "ng build --watch --configuration development",
1010
"test": "ng test",
1111
"postinstall": "npm run copy-eval-license",
12-
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.6.0.1-Evaluation/lib/license.json','./src/license.json')\""
12+
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.6.0.2-Evaluation/lib/license.json','./src/license.json')\""
1313
},
1414
"private": true,
1515
"dependencies": {
@@ -24,7 +24,7 @@
2424
"rxjs": "~7.8.0",
2525
"tslib": "^2.3.0",
2626
"zone.js": "~0.13.0",
27-
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.1-Evaluation/lib-dev/yfiles-26.0.1+eval-dev.tgz"
27+
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.2-Evaluation/lib-dev/yfiles-26.0.2+eval-dev.tgz"
2828
},
2929
"devDependencies": {
3030
"@angular-devkit/build-angular": "^16.0.5",

0 commit comments

Comments
 (0)