Skip to content

Commit 000c3be

Browse files
committed
Update for yFiles for HTML 2.4.0.5
1 parent 01c0781 commit 000c3be

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,17 @@ This basic yFiles integration can be used as a starting point to test the capabi
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 [Vue.js integration demo](https://live.yworks.com/demos/toolkit/vuejs/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/blob/master/demos/toolkit/vuejs)) and another [Vue CLI demo](https://live.yworks.com/demos/toolkit/vue-cli/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/toolkit/vue-cli)), as well as a specialized [Vue.js Template Node Style](https://live.yworks.com/demos/style/vuejstemplatenodestyle/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/style/vuejstemplatenodestyle)) that leverages the powerful data binding and conditional rendering features of Vue.js.
46+
The yFiles package also contains a more extensive [Vue.js integration demo](https://live.yworks.com/demos/toolkit/vue2/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/blob/master/demos/toolkit/vuejs)) and another [Vue CLI demo](https://live.yworks.com/demos/toolkit/vue2-cli/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/toolkit/vue-cli)), as well as a specialized [Vue.js Template Node Style](https://live.yworks.com/demos/style/vuejstemplatenodestyle/index.html) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/style/vuejstemplatenodestyle)) 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

50+
## Create a Diagram Application with Vue
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 Vue 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Adding yFiles as a dependency is as easy as installing an external library from
2424
```
2525
"dependencies": {
2626
...
27-
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.3-Evaluation/lib-dev/es-modules/yfiles-24.0.2-eval-dev.tgz"
27+
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.5-Evaluation/lib-dev/es-modules/yfiles-24.0.5-eval-dev.tgz"
2828
},
2929
```
3030

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@
44
"author": "yWorks GmbH <yfileshtml@yworks.com>",
55
"private": true,
66
"scripts": {
7-
"preinstall": "cd ../yFiles-for-HTML-Complete-2.4.0.3-Evaluation && npm run prepare-package",
8-
"postinstall": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.4.0.3-Evaluation/lib/license.json','./src/license.json')\"",
7+
"preinstall": "cd ../yFiles-for-HTML-Complete-2.4.0.5-Evaluation && npm run prepare-package",
8+
"postinstall": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-2.4.0.5-Evaluation/lib/license.json','./src/license.json')\"",
99
"serve": "vue-cli-service serve",
1010
"build": "vue-cli-service build",
1111
"lint": "vue-cli-service lint"
1212
},
1313
"dependencies": {
14-
"core-js": "^3.15.1",
14+
"core-js": "^3.21.0",
1515
"vue": "^2.6.14",
16-
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.3-Evaluation/lib-dev/es-modules/yfiles-24.0.2-eval-dev.tgz"
16+
"yfiles": "../yFiles-for-HTML-Complete-2.4.0.5-Evaluation/lib-dev/es-modules/yfiles-24.0.5-eval-dev.tgz"
1717
},
1818
"devDependencies": {
1919
"@vue/cli-plugin-babel": "^4.5.13",
2020
"@vue/cli-plugin-eslint": "^4.5.13",
2121
"@vue/cli-service": "^4.5.13",
2222
"babel-eslint": "^10.1.0",
23-
"eslint": "^7.29.0",
24-
"eslint-plugin-vue": "^7.12.1",
23+
"eslint": "^7.32.0",
24+
"eslint-plugin-vue": "^7.20.0",
2525
"vue-template-compiler": "^2.6.14"
2626
},
2727
"eslintConfig": {

0 commit comments

Comments
 (0)