Skip to content

Commit b2ec03d

Browse files
committed
Update for yFiles for HTML 3.0.0.1
1 parent d31459a commit b2ec03d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# yFiles integration for create-vue
44

5-
This sample application serves as a basic scaffold of how to integrate [yFiles for HTML](https://www.yworks.com/products/yfiles-for-html) in a [create-vue](https://vuejs.org/guide/quick-start.html) application.
5+
This sample application serves as a basic scaffold of how to integrate [yFiles for HTML](https://www.yfiles.com/the-yfiles-sdk/web/yfiles-for-html) in a [create-vue](https://vuejs.org/guide/quick-start.html) application.
66

7-
**To run this project, a valid [yFiles for HTML](https://www.yworks.com/products/yfiles-for-html) version is required. You can evaluate yFiles 60 days free of charge on [my.yworks.com](https://my.yworks.com/signup?product=YFILES_HTML_EVAL).**
7+
**To run this project, a valid [yFiles for HTML](https://www.yfiles.com/the-yfiles-sdk/web/yfiles-for-html) version is required. You can evaluate yFiles 60 days free of charge on [my.yworks.com](https://my.yworks.com/signup?product=YFILES_HTML_EVAL).**
88

99
## Version Information
1010

@@ -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://www.yworks.com/demos) 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.yfiles.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://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.
46+
The yFiles package also contains a more extensive [Vue integration demo](https://www.yfiles.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.yfiles.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

@@ -52,7 +52,7 @@ Furthermore, there is an extensive [Developer's Guide](https://docs.yworks.com/y
5252
The [App Generator](https://www.yworks.com/products/app-generator) is a tool that lets you interactively create a diagram
5353
application prototype to visualize your data. Select features like editing, context menu, graph search, or printing
5454
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.
55+
[yFiles for HTML](https://www.yfiles.com/the-yfiles-sdk/web/yfiles-for-html) version.
5656

5757
## Support
5858

integration-howto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Adding yFiles as a dependency is almost as easy as installing an external librar
3030
```
3131
"dependencies": {
3232
...
33-
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0-Evaluation/lib-dev/yfiles-30.0.0+eval-dev.tgz"
33+
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0.0.1-Evaluation/lib/yfiles-30.0.1+eval-dev.tgz"
3434
},
3535
```
3636

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "@yfiles/yfiles-vue-integration-basic",
3-
"version": "30.0.0",
3+
"version": "30.0.1",
44
"author": "yWorks GmbH <yfileshtml@yworks.com>",
55
"private": true,
66
"scripts": {
77
"dev": "vite",
88
"preview": "vite preview",
99
"build": "vite build",
1010
"postinstall": "npm run copy-eval-license",
11-
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-3.0-Evaluation/lib/license.json','./src/license.json')\""
11+
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-3.0.0.1-Evaluation/lib/license.json','./src/license.json')\""
1212
},
1313
"dependencies": {
1414
"vue": "^3.5.13",
15-
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0-Evaluation/lib-dev/yfiles-30.0.0+eval-dev.tgz"
15+
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0.0.1-Evaluation/lib/yfiles-30.0.1+eval-dev.tgz"
1616
},
1717
"devDependencies": {
1818
"@vitejs/plugin-vue": "^5.2.1",
@@ -21,7 +21,7 @@
2121
"eslint": "^9.20.0",
2222
"eslint-plugin-vue": "^9.32.0",
2323
"typescript": "~5.7.3",
24-
"vite": "^6.1.0",
24+
"vite": "^6.2.0",
2525
"vue-tsc": "^2.2.0"
2626
}
2727
}

0 commit comments

Comments
 (0)