Skip to content

Commit a96986f

Browse files
committed
Update for yFiles for HTML 2.6.0.2
1 parent a37d3a4 commit a96986f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
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 a Vue application can b
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 more extensive [Vue integration demo](https://live.yworks.com/demos/toolkit/vue/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/blob/master/demos/toolkit/vue)), as well as a specialized [Vue.js Template Node Style](https://live.yworks.com/demos/style/vue-template-node-style/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/style/vue-template-node-style)) that leverages the powerful data binding and conditional rendering features of Vue.js.
46+
The yFiles package also contains a more extensive [Vue integration demo](https://www.yworks.com/demos/toolkit/vue/) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/blob/master/demos/toolkit/vue)), as well as a specialized [Vue.js Template Node Style](https://www.yworks.com/demos/style/vue-template-node-style/) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/style/vue-template-node-style)) that leverages the powerful data binding and conditional rendering features of Vue.js.
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ the following options:
2525

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

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

3030
```
3131
"dependencies": {
3232
...
33-
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.1-Evaluation/lib-dev/yfiles-26.0.1+eval-dev.tgz"
33+
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.2-Evaluation/lib-dev/yfiles-26.0.2+eval-dev.tgz"
3434
},
3535
```
3636

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "yfiles-vue-integration-basic",
3-
"version": "26.0.1",
3+
"version": "26.0.2",
44
"author": "yWorks GmbH <yfileshtml@yworks.com>",
55
"private": true,
66
"scripts": {
@@ -11,11 +11,11 @@
1111
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
1212
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
1313
"postinstall": "npm run copy-eval-license",
14-
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.6.0.1-Evaluation/lib/license.json','./src/license.json')\""
14+
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.6.0.2-Evaluation/lib/license.json','./src/license.json')\""
1515
},
1616
"dependencies": {
1717
"vue": "^3.3.4",
18-
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.1-Evaluation/lib-dev/yfiles-26.0.1+eval-dev.tgz"
18+
"yfiles": "../yFiles-for-HTML-Complete-2.6.0.2-Evaluation/lib-dev/yfiles-26.0.2+eval-dev.tgz"
1919
},
2020
"devDependencies": {
2121
"@rushstack/eslint-patch": "^1.2.0",

0 commit comments

Comments
 (0)