@d34dman/flowdrop 0.0.2 → 0.0.3
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.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +7 -4
- package/dist/app.css +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* FlowDrop - Workflow Library
|
|
3
3
|
* A Svelte Flow-based library for building workflows
|
|
4
4
|
*/
|
|
5
|
-
import
|
|
5
|
+
import "./styles/base.css";
|
|
6
6
|
export type { NodeCategory, NodeDataType, NodePort, NodeMetadata, NodeConfig, WorkflowNode, WorkflowEdge, Workflow, ApiResponse, NodesResponse, WorkflowResponse, WorkflowsResponse, ExecutionStatus, ExecutionResult, FlowDropConfig, WorkflowEvents } from './types/index.js';
|
|
7
7
|
export type { WorkflowEditorConfig, EditorFeatures, UIConfig, APIConfig, ExecutionConfig, StorageConfig, NodeType, WorkflowData, ExecutionResult as EditorExecutionResult, EditorState } from './types/config.js';
|
|
8
8
|
export { FlowDropApiClient } from './api/client.js';
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* A Svelte Flow-based library for building workflows
|
|
4
4
|
*/
|
|
5
5
|
// Import CSS to ensure styles are included in the library build
|
|
6
|
-
import
|
|
6
|
+
import "./styles/base.css";
|
|
7
7
|
// Export API clients
|
|
8
8
|
export { FlowDropApiClient } from './api/client.js';
|
|
9
9
|
export { EnhancedFlowDropApiClient } from './api/enhanced-client.js';
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@d34dman/flowdrop",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.3",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite dev",
|
|
8
8
|
"build": "vite build && npm run prepack",
|
|
@@ -65,7 +65,8 @@
|
|
|
65
65
|
"!dist/**/*.spec.*"
|
|
66
66
|
],
|
|
67
67
|
"sideEffects": [
|
|
68
|
-
"**/*.css"
|
|
68
|
+
"**/*.css",
|
|
69
|
+
"./dist/styles/base.css"
|
|
69
70
|
],
|
|
70
71
|
"svelte": "./dist/index.js",
|
|
71
72
|
"types": "./dist/index.d.ts",
|
|
@@ -73,8 +74,10 @@
|
|
|
73
74
|
"exports": {
|
|
74
75
|
".": {
|
|
75
76
|
"types": "./dist/index.d.ts",
|
|
76
|
-
"svelte": "./dist/index.js"
|
|
77
|
-
|
|
77
|
+
"svelte": "./dist/index.js",
|
|
78
|
+
"default": "./dist/index.js"
|
|
79
|
+
},
|
|
80
|
+
"./styles/base.css": "./dist/styles/base.css"
|
|
78
81
|
},
|
|
79
82
|
"peerDependencies": {
|
|
80
83
|
"svelte": "^5.0.0"
|
package/dist/app.css
DELETED
|
File without changes
|