@beacon-build/sdk 1.18.1 → 1.19.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @beacon-build/sdk Changelog
2
2
 
3
+ ## 1.19.1
4
+
5
+ ### Patch Changes
6
+
7
+ - @beacon-build/core@1.19.1
8
+
9
+ ## 1.19.0
10
+
11
+ ### Patch Changes
12
+
13
+ - 5b6bfaf: Fix KanbanBoard dnd-kit collision and SDK React exports
14
+ - Fixed DroppableColumnArea to use unique droppable IDs (`${laneKey}:${col.id}`) instead of bare columnId — fixes dnd-kit drop target collision across lanes
15
+ - Fixed ColumnHeader count to show `colTasks.length` per lane instead of global `columnCounts`
16
+ - Fixed orphan lane collapse: `laneKey = lane.id ?? 'orphan'` used consistently for collapse state keys and toggle callbacks
17
+ - Removed dead loop in `internalCollapsed` state initializer
18
+ - Fixed `handleDragEnd` to parse `${laneKey}:${colId}` droppable IDs
19
+ - Removed React re-exports from SDK root entry to avoid forcing React as runtime dependency
20
+ - Added `exports` map with `./react` subpath pointing to `dist/react/index.js`
21
+
22
+ - Updated dependencies [d695b87]
23
+ - Updated dependencies [dc8cfbf]
24
+ - @beacon-build/core@1.19.0
25
+
3
26
  ## 1.18.0
4
27
 
5
28
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beacon-build/sdk",
3
- "version": "1.18.1",
3
+ "version": "1.19.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,13 +22,14 @@
22
22
  ],
23
23
  "dependencies": {
24
24
  "@types/event-source-polyfill": "^1.0.5",
25
+ "@types/node": "^22.0.0",
26
+ "@types/react": "^19.2.0",
27
+ "@types/react-dom": "^19.2.0",
25
28
  "event-source-polyfill": "^1.0.31",
26
- "@beacon-build/core": "1.18.1"
29
+ "@beacon-build/core": "1.19.1"
27
30
  },
28
31
  "devDependencies": {
29
32
  "@testing-library/react": "^16.3.2",
30
- "@types/react": "^19.2.0",
31
- "@types/react-dom": "^19.2.0",
32
33
  "@vitejs/plugin-react": "^4.7.0",
33
34
  "jsdom": "^29.1.1",
34
35
  "react": "^19.2.0",