diff --git a/.changeset/brave-kids-explain.md b/.changeset/brave-kids-explain.md deleted file mode 100644 index a6eb1ec8..00000000 --- a/.changeset/brave-kids-explain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@dnd-kit/core': patch ---- - -Improves performance by eliminating wasteful re-renders on every child item on click diff --git a/.changeset/few-panthers-punch.md b/.changeset/few-panthers-punch.md deleted file mode 100644 index 97549579..00000000 --- a/.changeset/few-panthers-punch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@dnd-kit/core': patch ---- - -Export `defaultKeyboardCoordinateGetter` diff --git a/.changeset/fix-zero-id.md b/.changeset/fix-zero-id.md deleted file mode 100644 index 59d23b27..00000000 --- a/.changeset/fix-zero-id.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@dnd-kit/core': patch -'@dnd-kit/sortable': patch ---- - -Fix bug with draggable and sortable elements with an `id` equal to `0`. diff --git a/.changeset/handle-cancel-events.md b/.changeset/handle-cancel-events.md deleted file mode 100644 index 82525111..00000000 --- a/.changeset/handle-cancel-events.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@dnd-kit/core': patch ---- - -Handle `touchcancel` and `pointercancel` events. diff --git a/.changeset/sixty-buses-call.md b/.changeset/sixty-buses-call.md deleted file mode 100644 index 0d723709..00000000 --- a/.changeset/sixty-buses-call.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@dnd-kit/core': patch ---- - -Faster Paint with delayed flush of Effects diff --git a/.changeset/smart-spies-peel.md b/.changeset/smart-spies-peel.md deleted file mode 100644 index 2269bd1c..00000000 --- a/.changeset/smart-spies-peel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@dnd-kit/core': minor ---- - -Add `activatorEvent` to `DragStartEvent` diff --git a/.changeset/thin-walls-remain.md b/.changeset/thin-walls-remain.md deleted file mode 100644 index ffa6c4d6..00000000 --- a/.changeset/thin-walls-remain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@dnd-kit/core': patch ---- - -Fix a bug with auto-scroller continuing to observe stale elements, causing them to be considered as scrollable. diff --git a/.changeset/tidy-cobras-hang.md b/.changeset/tidy-cobras-hang.md deleted file mode 100644 index 66ba1b0e..00000000 --- a/.changeset/tidy-cobras-hang.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@dnd-kit/accessibility': patch ---- - -Workaround `` layout bug by adding explicit `top` and `left` -attributes. Under sufficiently complex CSS conditions, the element would -overflow containers that it's not supposed to. See [this -post](https://blog.duvallj.pw/posts/2024-11-19-chrome-heisenbug-uncovered.html) -for a complete explanation. diff --git a/packages/accessibility/CHANGELOG.md b/packages/accessibility/CHANGELOG.md index 1198ff9f..bce4236a 100644 --- a/packages/accessibility/CHANGELOG.md +++ b/packages/accessibility/CHANGELOG.md @@ -1,5 +1,15 @@ # @dnd-kit/accessibility +## 3.1.1 + +### Patch Changes + +- [#1534](https://github.com/clauderic/dnd-kit/pull/1534) [`93602df`](https://github.com/clauderic/dnd-kit/commit/93602df08498b28749e8146e0f6143ab987bc178) Thanks [@duvallj](https://github.com/duvallj)! - Workaround `` layout bug by adding explicit `top` and `left` + attributes. Under sufficiently complex CSS conditions, the element would + overflow containers that it's not supposed to. See [this + post](https://blog.duvallj.pw/posts/2024-11-19-chrome-heisenbug-uncovered.html) + for a complete explanation. + ## 3.1.0 ### Minor Changes diff --git a/packages/accessibility/package.json b/packages/accessibility/package.json index ed4bd5f2..a3a66061 100644 --- a/packages/accessibility/package.json +++ b/packages/accessibility/package.json @@ -1,6 +1,6 @@ { "name": "@dnd-kit/accessibility", - "version": "3.1.0", + "version": "3.1.1", "description": "A generic toolkit to help with accessibility", "author": "Claudéric Demers", "license": "MIT", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index bbf3d7b6..b0140061 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,28 @@ # @dnd-kit/core +## 6.2.0 + +### Minor Changes + +- [#1140](https://github.com/clauderic/dnd-kit/pull/1140) [`545a41c`](https://github.com/clauderic/dnd-kit/commit/545a41c27c6919e4ca22a58a67f3fa02a7caab8a) Thanks [@anilanar](https://github.com/anilanar)! - Add `activatorEvent` to `DragStartEvent` + +### Patch Changes + +- [#1494](https://github.com/clauderic/dnd-kit/pull/1494) [`00ec286`](https://github.com/clauderic/dnd-kit/commit/00ec286ab2fc7969549a4b19ffd42a09b5171dbe) Thanks [@dinkinflickaa](https://github.com/dinkinflickaa)! - Improves performance by eliminating wasteful re-renders on every child item on click + +- [#1400](https://github.com/clauderic/dnd-kit/pull/1400) [`995dc23`](https://github.com/clauderic/dnd-kit/commit/995dc23b7cd9019f3a920676cbe4e141e917e82c) Thanks [@12joan](https://github.com/12joan)! - Export `defaultKeyboardCoordinateGetter` + +- [#1542](https://github.com/clauderic/dnd-kit/pull/1542) [`f629ec6`](https://github.com/clauderic/dnd-kit/commit/f629ec6a9c3c25b749561fac31741046d96c28dc) Thanks [@clauderic](https://github.com/clauderic)! - Fix bug with draggable and sortable elements with an `id` equal to `0`. + +- [#1541](https://github.com/clauderic/dnd-kit/pull/1541) [`99643f6`](https://github.com/clauderic/dnd-kit/commit/99643f634cd55fa0bf0898365883507b28637659) Thanks [@clauderic](https://github.com/clauderic)! - Handle `touchcancel` and `pointercancel` events. + +- [#1435](https://github.com/clauderic/dnd-kit/pull/1435) [`6bbe39b`](https://github.com/clauderic/dnd-kit/commit/6bbe39bba6ad9afd0bc6db1c345ad4e6b58f5e5e) Thanks [@knaveenkumar3576](https://github.com/knaveenkumar3576)! - Faster Paint with delayed flush of Effects + +- [#1543](https://github.com/clauderic/dnd-kit/pull/1543) [`bcaf7c4`](https://github.com/clauderic/dnd-kit/commit/bcaf7c4e57b34dfc8ff9c4eea7a01c6e525e7874) Thanks [@clauderic](https://github.com/clauderic)! - Fix a bug with auto-scroller continuing to observe stale elements, causing them to be considered as scrollable. + +- Updated dependencies [[`93602df`](https://github.com/clauderic/dnd-kit/commit/93602df08498b28749e8146e0f6143ab987bc178)]: + - @dnd-kit/accessibility@3.1.1 + ## 6.1.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index c52c1d4f..5d133aa7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@dnd-kit/core", - "version": "6.1.0", + "version": "6.2.0", "description": "dnd kit – a lightweight React library for building performant and accessible drag and drop experiences", "author": "Claudéric Demers", "license": "MIT", @@ -31,7 +31,7 @@ }, "dependencies": { "tslib": "^2.0.0", - "@dnd-kit/accessibility": "^3.1.0", + "@dnd-kit/accessibility": "^3.1.1", "@dnd-kit/utilities": "^3.2.2" }, "publishConfig": { diff --git a/packages/modifiers/CHANGELOG.md b/packages/modifiers/CHANGELOG.md index 2b7ca0fa..611b3b48 100644 --- a/packages/modifiers/CHANGELOG.md +++ b/packages/modifiers/CHANGELOG.md @@ -1,5 +1,12 @@ # @dnd-kit/modifiers +## 8.0.0 + +### Patch Changes + +- Updated dependencies [[`00ec286`](https://github.com/clauderic/dnd-kit/commit/00ec286ab2fc7969549a4b19ffd42a09b5171dbe), [`995dc23`](https://github.com/clauderic/dnd-kit/commit/995dc23b7cd9019f3a920676cbe4e141e917e82c), [`f629ec6`](https://github.com/clauderic/dnd-kit/commit/f629ec6a9c3c25b749561fac31741046d96c28dc), [`99643f6`](https://github.com/clauderic/dnd-kit/commit/99643f634cd55fa0bf0898365883507b28637659), [`6bbe39b`](https://github.com/clauderic/dnd-kit/commit/6bbe39bba6ad9afd0bc6db1c345ad4e6b58f5e5e), [`545a41c`](https://github.com/clauderic/dnd-kit/commit/545a41c27c6919e4ca22a58a67f3fa02a7caab8a), [`bcaf7c4`](https://github.com/clauderic/dnd-kit/commit/bcaf7c4e57b34dfc8ff9c4eea7a01c6e525e7874)]: + - @dnd-kit/core@6.2.0 + ## 7.0.0 ### Patch Changes diff --git a/packages/modifiers/package.json b/packages/modifiers/package.json index 9a937d7d..a86b6232 100644 --- a/packages/modifiers/package.json +++ b/packages/modifiers/package.json @@ -1,6 +1,6 @@ { "name": "@dnd-kit/modifiers", - "version": "7.0.0", + "version": "8.0.0", "description": "Translate modifier presets for use with `@dnd-kit` packages.", "author": "Claudéric Demers", "license": "MIT", @@ -30,11 +30,11 @@ "tslib": "^2.0.0" }, "peerDependencies": { - "@dnd-kit/core": "^6.1.0", + "@dnd-kit/core": "^6.2.0", "react": ">=16.8.0" }, "devDependencies": { - "@dnd-kit/core": "^6.1.0" + "@dnd-kit/core": "^6.2.0" }, "publishConfig": { "access": "public" diff --git a/packages/sortable/CHANGELOG.md b/packages/sortable/CHANGELOG.md index 2eebb783..bc430cd3 100644 --- a/packages/sortable/CHANGELOG.md +++ b/packages/sortable/CHANGELOG.md @@ -1,5 +1,14 @@ # @dnd-kit/sortable +## 9.0.0 + +### Patch Changes + +- [#1542](https://github.com/clauderic/dnd-kit/pull/1542) [`f629ec6`](https://github.com/clauderic/dnd-kit/commit/f629ec6a9c3c25b749561fac31741046d96c28dc) Thanks [@clauderic](https://github.com/clauderic)! - Fix bug with draggable and sortable elements with an `id` equal to `0`. + +- Updated dependencies [[`00ec286`](https://github.com/clauderic/dnd-kit/commit/00ec286ab2fc7969549a4b19ffd42a09b5171dbe), [`995dc23`](https://github.com/clauderic/dnd-kit/commit/995dc23b7cd9019f3a920676cbe4e141e917e82c), [`f629ec6`](https://github.com/clauderic/dnd-kit/commit/f629ec6a9c3c25b749561fac31741046d96c28dc), [`99643f6`](https://github.com/clauderic/dnd-kit/commit/99643f634cd55fa0bf0898365883507b28637659), [`6bbe39b`](https://github.com/clauderic/dnd-kit/commit/6bbe39bba6ad9afd0bc6db1c345ad4e6b58f5e5e), [`545a41c`](https://github.com/clauderic/dnd-kit/commit/545a41c27c6919e4ca22a58a67f3fa02a7caab8a), [`bcaf7c4`](https://github.com/clauderic/dnd-kit/commit/bcaf7c4e57b34dfc8ff9c4eea7a01c6e525e7874)]: + - @dnd-kit/core@6.2.0 + ## 8.0.0 ### Patch Changes diff --git a/packages/sortable/package.json b/packages/sortable/package.json index 8644f774..0253af98 100644 --- a/packages/sortable/package.json +++ b/packages/sortable/package.json @@ -1,6 +1,6 @@ { "name": "@dnd-kit/sortable", - "version": "8.0.0", + "version": "9.0.0", "description": "Official sortable preset and sensors for dnd kit", "author": "Claudéric Demers", "license": "MIT", @@ -31,10 +31,10 @@ }, "peerDependencies": { "react": ">=16.8.0", - "@dnd-kit/core": "^6.1.0" + "@dnd-kit/core": "^6.2.0" }, "devDependencies": { - "@dnd-kit/core": "^6.1.0" + "@dnd-kit/core": "^6.2.0" }, "publishConfig": { "access": "public"