Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Aug 29, 2024
1 parent bfc8ab2 commit 0eee7f1
Show file tree
Hide file tree
Showing 24 changed files with 93 additions and 71 deletions.
5 changes: 0 additions & 5 deletions .changeset/closest-corners.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/collision-observer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/feedback-plugin.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fix-collision-priority.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/improve-shape-intersection.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pointer-sensor-capture.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pointer-sensor.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-worms-kick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sortable-group-index.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sortable-keyboard-corners.md

This file was deleted.

14 changes: 14 additions & 0 deletions packages/abstract/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @dnd-kit/abstract

## 0.0.6

### Patch Changes

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`a04d3f8`](https://github.com/clauderic/dnd-kit/commit/a04d3f88d380853b97585ab3b608561f7b02ce69) Thanks [@github-actions](https://github.com/apps/github-actions)! - Reduce the how frequently collisions are re-computed when the position of the drag operation does not change.

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`a8542de`](https://github.com/clauderic/dnd-kit/commit/a8542de56d39c3cd3b6ef981172a0782454295b2) Thanks [@github-actions](https://github.com/apps/github-actions)! - Fix issues with `collisionPriority` not being respected.

- [#1448](https://github.com/clauderic/dnd-kit/pull/1448) [`96f28ef`](https://github.com/clauderic/dnd-kit/commit/96f28ef86adf95e77540732d39033c7f3fb0fd04) Thanks [@lfades](https://github.com/lfades)! - Allow entities to receive a new id during the lifecycle of the entity

- Updated dependencies []:
- @dnd-kit/geometry@0.0.6
- @dnd-kit/state@0.0.6

## 0.0.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/abstract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dnd-kit/abstract",
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"main": "./index.cjs",
"module": "./index.js",
Expand Down Expand Up @@ -44,8 +44,8 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@dnd-kit/geometry": "^0.0.5",
"@dnd-kit/state": "^0.0.5",
"@dnd-kit/geometry": "^0.0.6",
"@dnd-kit/state": "^0.0.6",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
14 changes: 14 additions & 0 deletions packages/collision/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @dnd-kit/collision

## 0.0.6

### Patch Changes

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`69bfad7`](https://github.com/clauderic/dnd-kit/commit/69bfad7d795947987a4281f1a61f81b6a7839fe8) Thanks [@github-actions](https://github.com/apps/github-actions)! - Introduce `closestCorners` collision detection algorithm.

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`a8542de`](https://github.com/clauderic/dnd-kit/commit/a8542de56d39c3cd3b6ef981172a0782454295b2) Thanks [@github-actions](https://github.com/apps/github-actions)! - Fix issues with `collisionPriority` not being respected.

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`a6366f9`](https://github.com/clauderic/dnd-kit/commit/a6366f9e42836b4c5732141bf314489ede9f60cb) Thanks [@github-actions](https://github.com/apps/github-actions)! - Improve accuracy of `shapeIntersection` when there are multiple intersecting shapes.

- Updated dependencies [[`a04d3f8`](https://github.com/clauderic/dnd-kit/commit/a04d3f88d380853b97585ab3b608561f7b02ce69), [`a8542de`](https://github.com/clauderic/dnd-kit/commit/a8542de56d39c3cd3b6ef981172a0782454295b2), [`96f28ef`](https://github.com/clauderic/dnd-kit/commit/96f28ef86adf95e77540732d39033c7f3fb0fd04)]:
- @dnd-kit/abstract@0.0.6
- @dnd-kit/geometry@0.0.6

## 0.0.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/collision/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dnd-kit/collision",
"type": "module",
"version": "0.0.5",
"version": "0.0.6",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -24,8 +24,8 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@dnd-kit/abstract": "^0.0.5",
"@dnd-kit/geometry": "^0.0.5",
"@dnd-kit/abstract": "^0.0.6",
"@dnd-kit/geometry": "^0.0.6",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
18 changes: 18 additions & 0 deletions packages/dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @dnd-kit/dom

## 0.0.6

### Patch Changes

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`f400106`](https://github.com/clauderic/dnd-kit/commit/f400106072d12a902f6c113b889c7de97f43e1ea) Thanks [@github-actions](https://github.com/apps/github-actions)! - Improve the `Feedback` plugin to better handle when the feedback element resizes during a drag operation.

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`f219549`](https://github.com/clauderic/dnd-kit/commit/f219549087d9100cee53ab0cf35d820fe256aa85) Thanks [@github-actions](https://github.com/apps/github-actions)! - Fix pointer events no longer being detected by the `PointerSensor` when the event target is disconnected from the DOM by setting pointer capture on the document body for `pointermove` events.

- [`bfc8ab2`](https://github.com/clauderic/dnd-kit/commit/bfc8ab21cfd9c16a8d90ab250386e6d52d0a40a3) Thanks [@clauderic](https://github.com/clauderic)! - **PointerSensor**: Defer invoking `setPointerCapture` until activation constraints are met as it can interfere with `click` and other event handlers. Also deferred adding `touchmove`, `click` and `keydown` event listeners until the activation constraints are met.

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`69bfad7`](https://github.com/clauderic/dnd-kit/commit/69bfad7d795947987a4281f1a61f81b6a7839fe8) Thanks [@github-actions](https://github.com/apps/github-actions)! - `SortableKeyboardPlugin`: Use `closestCorners` collision detection algorithm instead of `closestCenter` when keyboard sorting.

- Updated dependencies [[`69bfad7`](https://github.com/clauderic/dnd-kit/commit/69bfad7d795947987a4281f1a61f81b6a7839fe8), [`a04d3f8`](https://github.com/clauderic/dnd-kit/commit/a04d3f88d380853b97585ab3b608561f7b02ce69), [`a8542de`](https://github.com/clauderic/dnd-kit/commit/a8542de56d39c3cd3b6ef981172a0782454295b2), [`a6366f9`](https://github.com/clauderic/dnd-kit/commit/a6366f9e42836b4c5732141bf314489ede9f60cb), [`96f28ef`](https://github.com/clauderic/dnd-kit/commit/96f28ef86adf95e77540732d39033c7f3fb0fd04)]:
- @dnd-kit/collision@0.0.6
- @dnd-kit/abstract@0.0.6
- @dnd-kit/geometry@0.0.6
- @dnd-kit/state@0.0.6

## 0.0.5

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dnd-kit/dom",
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"main": "./index.cjs",
"module": "./index.js",
Expand Down Expand Up @@ -74,10 +74,10 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@dnd-kit/abstract": "^0.0.5",
"@dnd-kit/collision": "^0.0.5",
"@dnd-kit/geometry": "^0.0.5",
"@dnd-kit/state": "^0.0.5",
"@dnd-kit/abstract": "^0.0.6",
"@dnd-kit/collision": "^0.0.6",
"@dnd-kit/geometry": "^0.0.6",
"@dnd-kit/state": "^0.0.6",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/geometry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @dnd-kit/geometry

## 0.0.6

### Patch Changes

- Updated dependencies []:
- @dnd-kit/state@0.0.6

## 0.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/geometry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dnd-kit/geometry",
"version": "0.0.5",
"version": "0.0.6",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@dnd-kit/state": "^0.0.5",
"@dnd-kit/state": "^0.0.6",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @dnd-kit/helpers

## 0.0.6

### Patch Changes

- Updated dependencies [[`a04d3f8`](https://github.com/clauderic/dnd-kit/commit/a04d3f88d380853b97585ab3b608561f7b02ce69), [`a8542de`](https://github.com/clauderic/dnd-kit/commit/a8542de56d39c3cd3b6ef981172a0782454295b2), [`96f28ef`](https://github.com/clauderic/dnd-kit/commit/96f28ef86adf95e77540732d39033c7f3fb0fd04)]:
- @dnd-kit/abstract@0.0.6

## 0.0.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dnd-kit/helpers",
"type": "module",
"version": "0.0.5",
"version": "0.0.6",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -24,7 +24,7 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@dnd-kit/abstract": "^0.0.5",
"@dnd-kit/abstract": "^0.0.6",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @dnd-kit/react

## 0.0.6

### Patch Changes

- [#1454](https://github.com/clauderic/dnd-kit/pull/1454) [`e2f5d93`](https://github.com/clauderic/dnd-kit/commit/e2f5d935cd21303c9877ce46f7642de7fc9b1ae8) Thanks [@github-actions](https://github.com/apps/github-actions)! - `useSortable`: Make sure `group` and `index` are updated at the same time.

- Updated dependencies [[`a04d3f8`](https://github.com/clauderic/dnd-kit/commit/a04d3f88d380853b97585ab3b608561f7b02ce69), [`f400106`](https://github.com/clauderic/dnd-kit/commit/f400106072d12a902f6c113b889c7de97f43e1ea), [`a8542de`](https://github.com/clauderic/dnd-kit/commit/a8542de56d39c3cd3b6ef981172a0782454295b2), [`f219549`](https://github.com/clauderic/dnd-kit/commit/f219549087d9100cee53ab0cf35d820fe256aa85), [`bfc8ab2`](https://github.com/clauderic/dnd-kit/commit/bfc8ab21cfd9c16a8d90ab250386e6d52d0a40a3), [`96f28ef`](https://github.com/clauderic/dnd-kit/commit/96f28ef86adf95e77540732d39033c7f3fb0fd04), [`69bfad7`](https://github.com/clauderic/dnd-kit/commit/69bfad7d795947987a4281f1a61f81b6a7839fe8)]:
- @dnd-kit/abstract@0.0.6
- @dnd-kit/dom@0.0.6
- @dnd-kit/state@0.0.6

## 0.0.5

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dnd-kit/react",
"version": "0.0.5",
"version": "0.0.6",
"main": "./index.cjs",
"module": "./index.js",
"type": "module",
Expand Down Expand Up @@ -56,9 +56,9 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@dnd-kit/abstract": "^0.0.5",
"@dnd-kit/dom": "^0.0.5",
"@dnd-kit/state": "^0.0.5",
"@dnd-kit/abstract": "^0.0.6",
"@dnd-kit/dom": "^0.0.6",
"@dnd-kit/state": "^0.0.6",
"tslib": "^2.6.2"
},
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/state/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @dnd-kit/state

## 0.0.6

## 0.0.5

## 0.0.4
Expand Down
2 changes: 1 addition & 1 deletion packages/state/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dnd-kit/state",
"version": "0.0.5",
"version": "0.0.6",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 0eee7f1

Please sign in to comment.