@beacon-build/sdk 1.18.1 → 1.19.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.
- package/CHANGELOG.md +17 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @beacon-build/sdk Changelog
|
|
2
2
|
|
|
3
|
+
## 1.19.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5b6bfaf: Fix KanbanBoard dnd-kit collision and SDK React exports
|
|
8
|
+
- Fixed DroppableColumnArea to use unique droppable IDs (`${laneKey}:${col.id}`) instead of bare columnId — fixes dnd-kit drop target collision across lanes
|
|
9
|
+
- Fixed ColumnHeader count to show `colTasks.length` per lane instead of global `columnCounts`
|
|
10
|
+
- Fixed orphan lane collapse: `laneKey = lane.id ?? 'orphan'` used consistently for collapse state keys and toggle callbacks
|
|
11
|
+
- Removed dead loop in `internalCollapsed` state initializer
|
|
12
|
+
- Fixed `handleDragEnd` to parse `${laneKey}:${colId}` droppable IDs
|
|
13
|
+
- Removed React re-exports from SDK root entry to avoid forcing React as runtime dependency
|
|
14
|
+
- Added `exports` map with `./react` subpath pointing to `dist/react/index.js`
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [d695b87]
|
|
17
|
+
- Updated dependencies [dc8cfbf]
|
|
18
|
+
- @beacon-build/core@1.19.0
|
|
19
|
+
|
|
3
20
|
## 1.18.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beacon-build/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.0",
|
|
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.
|
|
29
|
+
"@beacon-build/core": "1.19.0"
|
|
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",
|