@dschz/solid-flow 0.1.4 → 0.2.1
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/LICENSE +21 -0
- package/README.md +38 -8
- package/dist/index/index.d.ts +94 -34
- package/dist/index/index.js +341 -88
- package/dist/index/index.jsx +368 -119
- package/package.json +66 -66
package/package.json
CHANGED
|
@@ -1,21 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dschz/solid-flow",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Solid Flow - A highly customizable Solid library for building node-based editors, workflow systems, diagrams and more.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"author": "Daniel Sanchez <dsanc89@icloud.com>",
|
|
7
|
-
"license": "MIT",
|
|
8
|
-
"homepage": "https://github.com/dsnchz/solid-flow#readme",
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/dsnchz/solid-flow.git"
|
|
12
|
-
},
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/dsnchz/solid-flow/issues"
|
|
15
|
-
},
|
|
16
|
-
"publishConfig": {
|
|
17
|
-
"access": "public"
|
|
18
|
-
},
|
|
19
5
|
"keywords": [
|
|
20
6
|
"ai workflows",
|
|
21
7
|
"automation",
|
|
@@ -49,15 +35,51 @@
|
|
|
49
35
|
"workflow editor",
|
|
50
36
|
"xyflow"
|
|
51
37
|
],
|
|
38
|
+
"homepage": "https://github.com/dsnchz/solid-flow#readme",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/dsnchz/solid-flow/issues"
|
|
41
|
+
},
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"author": "Daniel Sanchez <dsanc89@icloud.com>",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/dsnchz/solid-flow.git"
|
|
47
|
+
},
|
|
52
48
|
"files": [
|
|
53
49
|
"dist"
|
|
54
50
|
],
|
|
51
|
+
"type": "module",
|
|
52
|
+
"main": "./dist/index/index.js",
|
|
53
|
+
"module": "./dist/index/index.js",
|
|
54
|
+
"browser": {},
|
|
55
|
+
"types": "./dist/index/index.d.ts",
|
|
56
|
+
"typesVersions": {
|
|
57
|
+
"*": {
|
|
58
|
+
"styles": [
|
|
59
|
+
"./dist/styles/index.d.ts"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"exports": {
|
|
64
|
+
".": {
|
|
65
|
+
"solid": "./dist/index/index.jsx",
|
|
66
|
+
"import": {
|
|
67
|
+
"types": "./dist/index/index.d.ts",
|
|
68
|
+
"default": "./dist/index/index.js"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"./styles": "./dist/styles/index.css",
|
|
72
|
+
"./dist/style.css": "./dist/styles/index.css"
|
|
73
|
+
},
|
|
74
|
+
"publishConfig": {
|
|
75
|
+
"access": "public"
|
|
76
|
+
},
|
|
55
77
|
"scripts": {
|
|
56
78
|
"build": "tsup",
|
|
57
79
|
"build:watch": "tsup --watch",
|
|
58
80
|
"dev": "vite",
|
|
59
|
-
"format": "
|
|
60
|
-
"format:fix": "
|
|
81
|
+
"format": "oxfmt --check",
|
|
82
|
+
"format:fix": "oxfmt",
|
|
61
83
|
"lint": "eslint .",
|
|
62
84
|
"lint:fix": "eslint . --fix",
|
|
63
85
|
"pkg:changeset": "changeset",
|
|
@@ -69,61 +91,39 @@
|
|
|
69
91
|
"test:cov": "vitest run --coverage",
|
|
70
92
|
"typecheck": "tsc --noEmit"
|
|
71
93
|
},
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"@solid-primitives/map": "^0.7.4",
|
|
96
|
+
"@solid-primitives/media": "^2.3.6",
|
|
97
|
+
"@solid-primitives/resize-observer": "^2.2.0",
|
|
98
|
+
"@xyflow/system": "^0.0.80",
|
|
99
|
+
"clsx": "^2.1.1"
|
|
100
|
+
},
|
|
72
101
|
"devDependencies": {
|
|
73
|
-
"@changesets/cli": "
|
|
102
|
+
"@changesets/cli": "2.31.1",
|
|
74
103
|
"@dagrejs/dagre": "^1.1.5",
|
|
75
|
-
"@solidjs/router": "
|
|
76
|
-
"@solidjs/testing-library": "
|
|
77
|
-
"@testing-library/jest-dom": "
|
|
78
|
-
"@types/bun": "
|
|
79
|
-
"@typescript-eslint/eslint-plugin": "
|
|
80
|
-
"@typescript-eslint/parser": "
|
|
81
|
-
"@vitest/coverage-istanbul": "
|
|
104
|
+
"@solidjs/router": "0.16.2",
|
|
105
|
+
"@solidjs/testing-library": "0.8.10",
|
|
106
|
+
"@testing-library/jest-dom": "7.0.0",
|
|
107
|
+
"@types/bun": "1.3.14",
|
|
108
|
+
"@typescript-eslint/eslint-plugin": "8.65.0",
|
|
109
|
+
"@typescript-eslint/parser": "8.65.0",
|
|
110
|
+
"@vitest/coverage-istanbul": "4.1.10",
|
|
82
111
|
"eslint": "^9.34.0",
|
|
83
|
-
"eslint-plugin-simple-import-sort": "
|
|
112
|
+
"eslint-plugin-simple-import-sort": "14.0.0",
|
|
84
113
|
"eslint-plugin-solid": "^0.14.5",
|
|
85
|
-
"globals": "
|
|
86
|
-
"jiti": "
|
|
87
|
-
"jsdom": "
|
|
88
|
-
"
|
|
89
|
-
"tsup": "
|
|
90
|
-
"tsup-preset-solid": "
|
|
91
|
-
"typescript": "
|
|
92
|
-
"typescript-eslint": "
|
|
93
|
-
"vite": "
|
|
94
|
-
"vite-plugin-solid": "
|
|
95
|
-
"vitest": "
|
|
114
|
+
"globals": "17.7.0",
|
|
115
|
+
"jiti": "2.7.0",
|
|
116
|
+
"jsdom": "29.1.1",
|
|
117
|
+
"oxfmt": "^0.60.0",
|
|
118
|
+
"tsup": "8.5.1",
|
|
119
|
+
"tsup-preset-solid": "2.2.0",
|
|
120
|
+
"typescript": "6.0.3",
|
|
121
|
+
"typescript-eslint": "8.65.0",
|
|
122
|
+
"vite": "8.1.5",
|
|
123
|
+
"vite-plugin-solid": "2.11.13",
|
|
124
|
+
"vitest": "4.1.10"
|
|
96
125
|
},
|
|
97
126
|
"peerDependencies": {
|
|
98
127
|
"solid-js": ">=1.8.0"
|
|
99
|
-
},
|
|
100
|
-
"dependencies": {
|
|
101
|
-
"@solid-primitives/map": "^0.7.2",
|
|
102
|
-
"@solid-primitives/media": "^2.3.3",
|
|
103
|
-
"@solid-primitives/resize-observer": "^2.1.3",
|
|
104
|
-
"@xyflow/system": "^0.0.68",
|
|
105
|
-
"clsx": "^2.1.1"
|
|
106
|
-
},
|
|
107
|
-
"main": "./dist/index/index.js",
|
|
108
|
-
"module": "./dist/index/index.js",
|
|
109
|
-
"types": "./dist/index/index.d.ts",
|
|
110
|
-
"browser": {},
|
|
111
|
-
"exports": {
|
|
112
|
-
".": {
|
|
113
|
-
"solid": "./dist/index/index.jsx",
|
|
114
|
-
"import": {
|
|
115
|
-
"types": "./dist/index/index.d.ts",
|
|
116
|
-
"default": "./dist/index/index.js"
|
|
117
|
-
}
|
|
118
|
-
},
|
|
119
|
-
"./styles": "./dist/styles/index.css",
|
|
120
|
-
"./dist/style.css": "./dist/styles/index.css"
|
|
121
|
-
},
|
|
122
|
-
"typesVersions": {
|
|
123
|
-
"*": {
|
|
124
|
-
"styles": [
|
|
125
|
-
"./dist/styles/index.d.ts"
|
|
126
|
-
]
|
|
127
|
-
}
|
|
128
128
|
}
|
|
129
129
|
}
|