@d34dman/flowdrop 0.0.25 → 0.0.26
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 +52 -62
- package/dist/components/App.svelte +15 -2
- package/dist/components/ConfigForm.svelte +4 -1
- package/dist/components/ConfigModal.svelte +4 -70
- package/dist/components/ConfigPanel.svelte +4 -9
- package/dist/components/EdgeRefresher.svelte +42 -0
- package/dist/components/EdgeRefresher.svelte.d.ts +9 -0
- package/dist/components/ReadOnlyDetails.svelte +3 -1
- package/dist/components/UniversalNode.svelte +6 -3
- package/dist/components/WorkflowEditor.svelte +33 -0
- package/dist/components/WorkflowEditor.svelte.d.ts +3 -1
- package/dist/components/form/FormCheckboxGroup.svelte +2 -9
- package/dist/components/form/FormCodeEditor.svelte +1 -0
- package/dist/components/form/FormField.svelte +1 -12
- package/dist/components/form/FormFieldWrapper.svelte +2 -10
- package/dist/components/form/FormFieldWrapper.svelte.d.ts +1 -1
- package/dist/components/form/FormNumberField.svelte +5 -6
- package/dist/components/form/FormRangeField.svelte +3 -13
- package/dist/components/form/FormSelect.svelte +4 -5
- package/dist/components/form/FormSelect.svelte.d.ts +1 -1
- package/dist/components/form/FormTextField.svelte +3 -4
- package/dist/components/form/FormTextarea.svelte +3 -4
- package/dist/components/form/FormToggle.svelte +2 -3
- package/dist/components/form/index.d.ts +14 -14
- package/dist/components/form/index.js +14 -14
- package/dist/components/form/types.d.ts +2 -2
- package/dist/components/form/types.js +1 -1
- package/dist/components/nodes/NotesNode.svelte +39 -45
- package/dist/components/nodes/NotesNode.svelte.d.ts +1 -1
- package/dist/components/nodes/WorkflowNode.svelte +1 -3
- package/dist/styles/base.css +1 -1
- package/package.json +162 -154
package/package.json
CHANGED
|
@@ -1,156 +1,164 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
2
|
+
"name": "@d34dman/flowdrop",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"private": false,
|
|
5
|
+
"version": "0.0.26",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "vite dev",
|
|
8
|
+
"build": "vite build && npm run prepack",
|
|
9
|
+
"build:drupal": "vite build --config vite.config.drupal.ts",
|
|
10
|
+
"build:production": "vite build --config vite.config.production.ts",
|
|
11
|
+
"watch:build:drupal": "npm-watch build:drupal",
|
|
12
|
+
"watch:build:production": "npm-watch build:production",
|
|
13
|
+
"watch:build": "npm-watch build",
|
|
14
|
+
"preview": "vite preview",
|
|
15
|
+
"prepare": "svelte-kit sync || echo ''",
|
|
16
|
+
"prepack": "svelte-kit sync && svelte-package && publint",
|
|
17
|
+
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
18
|
+
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
19
|
+
"lint": "eslint . && prettier --check .",
|
|
20
|
+
"test": "vitest run",
|
|
21
|
+
"test:watch": "vitest",
|
|
22
|
+
"test:ui": "vitest --ui",
|
|
23
|
+
"test:coverage": "vitest run --coverage",
|
|
24
|
+
"test:e2e": "playwright test",
|
|
25
|
+
"test:e2e:ui": "playwright test --ui",
|
|
26
|
+
"test:e2e:debug": "playwright test --debug",
|
|
27
|
+
"test:all": "npm run test && npm run test:e2e",
|
|
28
|
+
"format": "prettier --write .",
|
|
29
|
+
"storybook": "storybook dev -p 6006",
|
|
30
|
+
"build-storybook": "storybook build"
|
|
31
|
+
},
|
|
32
|
+
"watch": {
|
|
33
|
+
"build": {
|
|
34
|
+
"ignore": "build",
|
|
35
|
+
"patterns": [
|
|
36
|
+
"src"
|
|
37
|
+
],
|
|
38
|
+
"extensions": "js,ts,svelte,html,css,svg",
|
|
39
|
+
"quiet": true,
|
|
40
|
+
"legacyWatch": true,
|
|
41
|
+
"delay": 2500,
|
|
42
|
+
"runOnChangeOnly": false
|
|
43
|
+
},
|
|
44
|
+
"build:drupal": {
|
|
45
|
+
"ignore": "build",
|
|
46
|
+
"patterns": [
|
|
47
|
+
"src"
|
|
48
|
+
],
|
|
49
|
+
"extensions": "js,ts,svelte,html,css,svg",
|
|
50
|
+
"quiet": true,
|
|
51
|
+
"legacyWatch": true,
|
|
52
|
+
"delay": 2500,
|
|
53
|
+
"runOnChangeOnly": false
|
|
54
|
+
},
|
|
55
|
+
"build:production": {
|
|
56
|
+
"ignore": "build",
|
|
57
|
+
"patterns": [
|
|
58
|
+
"src"
|
|
59
|
+
],
|
|
60
|
+
"extensions": "js,ts,svelte,html,css,svg",
|
|
61
|
+
"quiet": true,
|
|
62
|
+
"legacyWatch": true,
|
|
63
|
+
"delay": 2500,
|
|
64
|
+
"runOnChangeOnly": false
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"files": [
|
|
68
|
+
"dist",
|
|
69
|
+
"!dist/**/*.test.*",
|
|
70
|
+
"!dist/**/*.spec.*"
|
|
71
|
+
],
|
|
72
|
+
"sideEffects": [
|
|
73
|
+
"**/*.css",
|
|
74
|
+
"./dist/styles/base.css"
|
|
75
|
+
],
|
|
76
|
+
"svelte": "./dist/index.js",
|
|
77
|
+
"types": "./dist/index.d.ts",
|
|
78
|
+
"type": "module",
|
|
79
|
+
"exports": {
|
|
80
|
+
".": {
|
|
81
|
+
"types": "./dist/index.d.ts",
|
|
82
|
+
"svelte": "./dist/index.js",
|
|
83
|
+
"default": "./dist/index.js"
|
|
84
|
+
},
|
|
85
|
+
"./styles/base.css": "./dist/styles/base.css"
|
|
86
|
+
},
|
|
87
|
+
"peerDependencies": {
|
|
88
|
+
"@sveltejs/kit": "^2.0.0",
|
|
89
|
+
"svelte": "^5.0.0"
|
|
90
|
+
},
|
|
91
|
+
"repository": {
|
|
92
|
+
"type": "git",
|
|
93
|
+
"url": "git+https://github.com/d34dman/flowdrop.git"
|
|
94
|
+
},
|
|
95
|
+
"devDependencies": {
|
|
96
|
+
"@chromatic-com/storybook": "^4.0.1",
|
|
97
|
+
"@eslint/compat": "^1.2.5",
|
|
98
|
+
"@eslint/js": "^9.18.0",
|
|
99
|
+
"@iconify/svelte": "^5.0.0",
|
|
100
|
+
"@playwright/test": "^1.49.1",
|
|
101
|
+
"@storybook/addon-docs": "^9.0.15",
|
|
102
|
+
"@storybook/addon-svelte-csf": "^5.0.4",
|
|
103
|
+
"@storybook/addon-vitest": "^9.0.15",
|
|
104
|
+
"@storybook/sveltekit": "^9.0.15",
|
|
105
|
+
"@sveltejs/adapter-auto": "^6.0.0",
|
|
106
|
+
"@sveltejs/adapter-node": "^5.4.0",
|
|
107
|
+
"@sveltejs/kit": "^2.49.2",
|
|
108
|
+
"@sveltejs/package": "^2.0.0",
|
|
109
|
+
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
110
|
+
"@types/marked": "^6.0.0",
|
|
111
|
+
"@types/node": "^20",
|
|
112
|
+
"@types/uuid": "^10.0.0",
|
|
113
|
+
"@vitest/browser": "^3.2.3",
|
|
114
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
115
|
+
"@vitest/ui": "^3.2.4",
|
|
116
|
+
"eslint": "^9.18.0",
|
|
117
|
+
"eslint-config-prettier": "^10.0.1",
|
|
118
|
+
"eslint-plugin-storybook": "^9.0.15",
|
|
119
|
+
"eslint-plugin-svelte": "^3.0.0",
|
|
120
|
+
"globals": "^16.0.0",
|
|
121
|
+
"happy-dom": "^20.0.11",
|
|
122
|
+
"msw": "^2.12.7",
|
|
123
|
+
"npm-watch": "^0.13.0",
|
|
124
|
+
"playwright": "^1.53.0",
|
|
125
|
+
"prettier": "^3.4.2",
|
|
126
|
+
"prettier-plugin-svelte": "^3.3.3",
|
|
127
|
+
"publint": "^0.3.2",
|
|
128
|
+
"storybook": "^9.0.15",
|
|
129
|
+
"svelte": "^5.0.0",
|
|
130
|
+
"svelte-check": "^4.0.0",
|
|
131
|
+
"terser": "^5.43.1",
|
|
132
|
+
"typescript": "^5.0.0",
|
|
133
|
+
"typescript-eslint": "^8.20.0",
|
|
134
|
+
"vite": "^6.2.6",
|
|
135
|
+
"vite-plugin-devtools-json": "^0.2.1",
|
|
136
|
+
"vitest": "^3.2.3",
|
|
137
|
+
"vitest-browser-svelte": "^0.1.0"
|
|
138
|
+
},
|
|
139
|
+
"overrides": {
|
|
140
|
+
"@sveltejs/kit": {
|
|
141
|
+
"cookie": "0.7.2"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"keywords": [
|
|
145
|
+
"svelte"
|
|
146
|
+
],
|
|
147
|
+
"dependencies": {
|
|
148
|
+
"@codemirror/autocomplete": "^6.20.0",
|
|
149
|
+
"@codemirror/lang-json": "^6.0.2",
|
|
150
|
+
"@codemirror/lint": "^6.9.2",
|
|
151
|
+
"@codemirror/theme-one-dark": "^6.1.3",
|
|
152
|
+
"@xyflow/svelte": "~1.2",
|
|
153
|
+
"codemirror": "^6.0.2",
|
|
154
|
+
"easymde": "^2.20.0",
|
|
155
|
+
"marked": "^16.1.1",
|
|
156
|
+
"svelte-5-french-toast": "^2.0.6",
|
|
157
|
+
"uuid": "^11.1.0"
|
|
158
|
+
},
|
|
159
|
+
"msw": {
|
|
160
|
+
"workerDirectory": [
|
|
161
|
+
"static"
|
|
162
|
+
]
|
|
163
|
+
}
|
|
156
164
|
}
|