@dschz/solid-flow 0.2.3 → 0.3.0-next.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/dist/index/index.d.ts +5 -4
- package/dist/index/index.js +1258 -1375
- package/dist/index/index.jsx +608 -693
- package/package.json +15 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dschz/solid-flow",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0-next.0",
|
|
4
4
|
"description": "Solid Flow - A highly customizable Solid library for building node-based editors, workflow systems, diagrams and more.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai workflows",
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
"author": "Daniel Sanchez <dsanc89@icloud.com>",
|
|
44
44
|
"repository": {
|
|
45
45
|
"type": "git",
|
|
46
|
-
"url": "https://github.com/dsnchz/solid-flow.git"
|
|
46
|
+
"url": "git+https://github.com/dsnchz/solid-flow.git"
|
|
47
47
|
},
|
|
48
48
|
"files": [
|
|
49
49
|
"dist"
|
|
50
50
|
],
|
|
51
51
|
"type": "module",
|
|
52
|
+
"sideEffects": false,
|
|
52
53
|
"main": "./dist/index/index.js",
|
|
53
54
|
"module": "./dist/index/index.js",
|
|
54
|
-
"browser": {},
|
|
55
55
|
"types": "./dist/index/index.d.ts",
|
|
56
56
|
"typesVersions": {
|
|
57
57
|
"*": {
|
|
@@ -62,11 +62,9 @@
|
|
|
62
62
|
},
|
|
63
63
|
"exports": {
|
|
64
64
|
".": {
|
|
65
|
+
"types": "./dist/index/index.d.ts",
|
|
65
66
|
"solid": "./dist/index/index.jsx",
|
|
66
|
-
"
|
|
67
|
-
"types": "./dist/index/index.d.ts",
|
|
68
|
-
"default": "./dist/index/index.js"
|
|
69
|
-
}
|
|
67
|
+
"default": "./dist/index/index.js"
|
|
70
68
|
},
|
|
71
69
|
"./styles": "./dist/styles/index.css",
|
|
72
70
|
"./dist/style.css": "./dist/styles/index.css"
|
|
@@ -93,17 +91,18 @@
|
|
|
93
91
|
"test:ssr": "vitest run --config vite.config.ssr.ts"
|
|
94
92
|
},
|
|
95
93
|
"dependencies": {
|
|
96
|
-
"@solid-primitives/
|
|
97
|
-
"@solid-primitives/
|
|
98
|
-
"@solid-primitives/
|
|
99
|
-
"@
|
|
100
|
-
"
|
|
94
|
+
"@solid-primitives/event-listener": "3.0.0-next.3",
|
|
95
|
+
"@solid-primitives/map": "1.0.0-next.2",
|
|
96
|
+
"@solid-primitives/media": "4.0.0-next.2",
|
|
97
|
+
"@solidjs/web": "2.0.0-rc.1",
|
|
98
|
+
"@xyflow/system": "^0.0.80"
|
|
101
99
|
},
|
|
102
100
|
"devDependencies": {
|
|
103
101
|
"@changesets/cli": "2.31.1",
|
|
104
102
|
"@dagrejs/dagre": "^1.1.5",
|
|
105
|
-
"@
|
|
106
|
-
"@solidjs/testing-library": "0.
|
|
103
|
+
"@dom-expressions/compiler": "0.50.0-next.43",
|
|
104
|
+
"@solidjs/testing-library": "1.0.0-beta.2",
|
|
105
|
+
"@solidjs/vite-plugin": "3.0.0-next.28",
|
|
107
106
|
"@testing-library/jest-dom": "7.0.0",
|
|
108
107
|
"@types/bun": "1.3.14",
|
|
109
108
|
"@typescript-eslint/eslint-plugin": "8.65.0",
|
|
@@ -119,15 +118,11 @@
|
|
|
119
118
|
"tsdown": "0.22.14",
|
|
120
119
|
"typescript": "6.0.3",
|
|
121
120
|
"typescript-eslint": "8.65.0",
|
|
122
|
-
"unplugin-solid": "2.0.0",
|
|
123
121
|
"vite": "8.1.5",
|
|
124
|
-
"vite-plugin-solid": "2.11.13",
|
|
125
122
|
"vitest": "4.1.10"
|
|
126
123
|
},
|
|
127
124
|
"peerDependencies": {
|
|
128
|
-
"
|
|
129
|
-
|
|
130
|
-
"overrides": {
|
|
131
|
-
"babel-preset-solid": "1.9.6"
|
|
125
|
+
"@solidjs/web": "^2.0.0-rc.0",
|
|
126
|
+
"solid-js": "^2.0.0-rc.0"
|
|
132
127
|
}
|
|
133
128
|
}
|