Skip to content

Commit f1746dd

Browse files
committed
Update for yFiles for HTML 3.0.0.1
1 parent a58eaf3 commit f1746dd

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
# yFiles integration for React
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 [React](https://reactjs.org/) application. It was scaffolded with [create vite](https://vitejs.dev//).
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 [React](https://reactjs.org/) application. It was scaffolded with [create vite](https://vitejs.dev//).
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 React application can
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 [React integration demo](https://www.yworks.com/demos/toolkit/react/) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/toolkit/react)).
46+
The yFiles package also contains a more extensive [React integration demo](https://www.yfiles.com/demos/toolkit/react/) ([GitHub](https://github.com/yWorks/yfiles-for-html-demos/tree/master/demos/toolkit/react)).
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 React 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Adding yFiles as a dependency is almost as easy as installing an external librar
2424
```
2525
"dependencies": {
2626
...
27-
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0-Evaluation/lib-dev/yfiles-30.0.0+eval-dev.tgz"
27+
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0.0.1-Evaluation/lib/yfiles-30.0.1+eval-dev.tgz"
2828
},
2929
```
3030

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@yfiles/yfiles-react-integration-basic",
3-
"version": "30.0.0",
3+
"version": "30.0.1",
44
"author": "yWorks GmbH <[email protected]>",
55
"private": true,
66
"type": "module",
@@ -9,12 +9,12 @@
99
"build": "tsc && vite build",
1010
"preview": "vite preview",
1111
"postinstall": "npm run copy-eval-license",
12-
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-3.0-Evaluation/lib/license.json','./src/license.json')\""
12+
"copy-eval-license": "node -e \"require('fs').copyFileSync('../yFiles-for-HTML-Complete-3.0.0.1-Evaluation/lib/license.json','./src/license.json')\""
1313
},
1414
"dependencies": {
1515
"react": "^19.0.0",
1616
"react-dom": "^19.0.0",
17-
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0-Evaluation/lib-dev/yfiles-30.0.3+eval-dev.tgz"
17+
"@yfiles/yfiles": "../yFiles-for-HTML-Complete-3.0.0.1-Evaluation/lib/yfiles-30.0.1+eval-dev.tgz"
1818
},
1919
"devDependencies": {
2020
"@eslint/js": "^9.19.0",
@@ -25,8 +25,8 @@
2525
"eslint-plugin-react-hooks": "^5.0.0",
2626
"eslint-plugin-react-refresh": "^0.4.18",
2727
"globals": "^15.14.0",
28-
"typescript": "~5.7.2",
28+
"typescript": "~5.7.3",
2929
"typescript-eslint": "^8.22.0",
30-
"vite": "^6.1.0"
30+
"vite": "^6.2.0"
3131
}
3232
}

src/assets/yfiles-logo.svg

-1
Loading

0 commit comments

Comments
 (0)