ranuts 0.1.0-alpha.12 → 0.1.0-alpha.13
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/dist/src/node/appendFile.d.ts +0 -1
- package/dist/src/node/body.d.ts +0 -1
- package/dist/src/node/command.d.ts +0 -1
- package/dist/src/node/ctx2req.d.ts +0 -1
- package/dist/src/node/fileInfo.d.ts +0 -1
- package/dist/src/node/fs.d.ts +0 -3
- package/dist/src/node/paresUrl.d.ts +0 -1
- package/dist/src/node/readFile.d.ts +0 -1
- package/dist/src/node/server.d.ts +0 -1
- package/dist/src/node/stream.d.ts +0 -1
- package/dist/src/node/traverse.d.ts +0 -1
- package/dist/src/node/watchFile.d.ts +0 -1
- package/dist/src/node/websocket.d.ts +0 -4
- package/dist/src/node/writeFile.d.ts +0 -1
- package/dist/src/node/ws.d.ts +0 -1
- package/dist/src/utils/visual/application.d.ts +10 -0
- package/dist/src/utils/visual/event/boundary.d.ts +1 -1
- package/dist/src/utils/visual/event/event.d.ts +1 -1
- package/dist/src/utils/visual/event/types.d.ts +2 -1
- package/dist/src/utils/visual/graphics/graphics.d.ts +7 -94
- package/dist/src/utils/visual/graphics/graphicsData.d.ts +3 -2
- package/dist/src/utils/visual/graphics/graphicsGeometry.d.ts +3 -8
- package/dist/src/utils/visual/index.d.ts +3 -8
- package/dist/src/utils/visual/math/matrix.d.ts +1 -1
- package/dist/src/utils/visual/math/transform.d.ts +1 -1
- package/dist/src/utils/visual/render/canvasRenderer.d.ts +2 -2
- package/dist/src/utils/visual/render/index.d.ts +0 -3
- package/dist/src/utils/visual/render/render.d.ts +2 -2
- package/dist/src/utils/visual/render/webGlRenderer.d.ts +1 -1
- package/dist/src/utils/visual/shape/circle.d.ts +2 -2
- package/dist/src/utils/visual/shape/ellipse.d.ts +1 -1
- package/dist/src/utils/visual/shape/polygon.d.ts +4 -19
- package/dist/src/utils/visual/shape/rectangle.d.ts +2 -12
- package/dist/src/utils/visual/shape/shape.d.ts +2 -2
- package/dist/src/utils/visual/types.d.ts +1 -11
- package/dist/src/utils/visual/vertex/container.d.ts +1 -1
- package/dist/umd/index.umd.cjs +1 -1
- package/dist/umd/utils/utils.umd.cjs +1 -1
- package/package.json +2 -2
- package/readme.md +1 -1
- package/dist/src/cache/expires.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ranuts",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.13",
|
|
4
4
|
"description": "lib",
|
|
5
5
|
"main": "dist/index.umd.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"engines": {
|
|
10
|
-
"node": "^
|
|
10
|
+
"node": "^16.20.2 || >=18.0.0"
|
|
11
11
|
},
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
package/readme.md
CHANGED
|
@@ -42,7 +42,7 @@ import { reactify } from 'ranuts/react';
|
|
|
42
42
|
import { ocr } from 'ranuts/ml';
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
Full import
|
|
45
|
+
Full import,(Full import will introduce many unnecessary modules. You are advised to import them on demand)
|
|
46
46
|
|
|
47
47
|
- ESM
|
|
48
48
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|