@dschz/solid-flow 0.2.2 → 0.2.4
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 +1234 -1184
- package/dist/index/index.js +4089 -5110
- package/dist/index/index.jsx +2543 -4529
- package/dist/styles/index.css +204 -20
- package/package.json +10 -6
- package/dist/styles/index.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dschz/solid-flow",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
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",
|
|
@@ -75,8 +75,8 @@
|
|
|
75
75
|
"access": "public"
|
|
76
76
|
},
|
|
77
77
|
"scripts": {
|
|
78
|
-
"build": "
|
|
79
|
-
"build:watch": "
|
|
78
|
+
"build": "tsdown",
|
|
79
|
+
"build:watch": "tsdown --watch",
|
|
80
80
|
"dev": "vite",
|
|
81
81
|
"format": "oxfmt --check",
|
|
82
82
|
"format:fix": "oxfmt",
|
|
@@ -89,7 +89,8 @@
|
|
|
89
89
|
"start": "vite",
|
|
90
90
|
"test": "vitest run",
|
|
91
91
|
"test:cov": "vitest run --coverage",
|
|
92
|
-
"typecheck": "tsc --noEmit"
|
|
92
|
+
"typecheck": "tsc --noEmit",
|
|
93
|
+
"test:ssr": "vitest run --config vite.config.ssr.ts"
|
|
93
94
|
},
|
|
94
95
|
"dependencies": {
|
|
95
96
|
"@solid-primitives/map": "^0.7.4",
|
|
@@ -115,15 +116,18 @@
|
|
|
115
116
|
"jiti": "2.7.0",
|
|
116
117
|
"jsdom": "29.1.1",
|
|
117
118
|
"oxfmt": "^0.60.0",
|
|
118
|
-
"
|
|
119
|
-
"tsup-preset-solid": "2.2.0",
|
|
119
|
+
"tsdown": "0.22.14",
|
|
120
120
|
"typescript": "6.0.3",
|
|
121
121
|
"typescript-eslint": "8.65.0",
|
|
122
|
+
"unplugin-solid": "2.0.0",
|
|
122
123
|
"vite": "8.1.5",
|
|
123
124
|
"vite-plugin-solid": "2.11.13",
|
|
124
125
|
"vitest": "4.1.10"
|
|
125
126
|
},
|
|
126
127
|
"peerDependencies": {
|
|
127
128
|
"solid-js": ">=1.8.0"
|
|
129
|
+
},
|
|
130
|
+
"overrides": {
|
|
131
|
+
"babel-preset-solid": "1.9.6"
|
|
128
132
|
}
|
|
129
133
|
}
|
package/dist/styles/index.d.ts
DELETED