@statelyai/flow-dom 3.0.0 → 3.1.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.
@@ -1,4 +1,5 @@
1
1
  import { FlowColorMode, FlowEngine, FlowInputEffects, FlowInputEvent, FlowStore, FlowStoreContext, Rect } from "@statelyai/flow";
2
+ export * from "@statelyai/flow";
2
3
 
3
4
  //#region src/culling.d.ts
4
5
 
package/dist/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export * from "@statelyai/flow";
1
2
  //#region src/culling.ts
2
3
  /** Overscan (canvas px) added around the viewport so entities just off-screen
3
4
  * stay mounted and don't pop in/out at the edges. */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@statelyai/flow-dom",
3
- "version": "3.0.0",
4
- "description": "DOM-specific helpers for @statelyai/flow.",
3
+ "version": "3.1.0",
4
+ "description": "DOM-specific helpers for @statelyai/flow with core re-exports.",
5
5
  "keywords": [
6
6
  "flow",
7
7
  "diagram",
@@ -24,20 +24,14 @@
24
24
  }
25
25
  },
26
26
  "license": "MIT",
27
- "peerDependencies": {
28
- "@statelyai/flow": ">=0.4.0"
29
- },
30
- "peerDependenciesMeta": {
31
- "@statelyai/flow": {
32
- "optional": true
33
- }
27
+ "dependencies": {
28
+ "@statelyai/flow": "0.4.2"
34
29
  },
35
30
  "devDependencies": {
36
31
  "jsdom": "^25.0.0",
37
32
  "tsdown": "^0.12.0",
38
33
  "typescript": "^5.8.0",
39
- "vitest": "^4.1.0",
40
- "@statelyai/flow": "0.4.0"
34
+ "vitest": "^4.1.0"
41
35
  },
42
36
  "scripts": {
43
37
  "dev": "tsdown --watch",