mathlean-canvas 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/index.js +5430 -1523
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -46,6 +46,22 @@ export default function App() {
|
|
|
46
46
|
}
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
+
## Compatibility
|
|
50
|
+
|
|
51
|
+
This package is currently built and tested with:
|
|
52
|
+
|
|
53
|
+
- `react` `19.x`
|
|
54
|
+
- `react-dom` `19.x`
|
|
55
|
+
- `react-konva` `19.x`
|
|
56
|
+
- `konva` `10.x`
|
|
57
|
+
|
|
58
|
+
If your app is still on an older React version, especially React 18 or below, you may run into compatibility issues with the bundled `react-konva` / `konva` combination used here.
|
|
59
|
+
|
|
60
|
+
In practice, the safest setup is:
|
|
61
|
+
|
|
62
|
+
- use this package in a React 19 app, or
|
|
63
|
+
- if you need older React support, use a matching older `react-konva` / `konva` stack instead of this package version as-is
|
|
64
|
+
|
|
49
65
|
## Notes
|
|
50
66
|
|
|
51
67
|
- The demo app only mounts `MathCanvas`.
|