Skip to content

Commit

Permalink
Merge pull request #1598 from clauderic/changeset-release/experimental
Browse files Browse the repository at this point in the history
Version Packages
  • Loading branch information
clauderic authored Feb 4, 2025
2 parents 610eada + 3bfad9b commit 42e914a
Show file tree
Hide file tree
Showing 23 changed files with 96 additions and 71 deletions.
5 changes: 0 additions & 5 deletions .changeset/drag-overlay-component.md

This file was deleted.

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

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/is-drag-source.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/lifecycle-bug-fixes.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/prevent-popover-close.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/prevent-user-selection.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/use-deep-signal.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.8

### Patch Changes

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`c9716cf`](https://github.com/clauderic/dnd-kit/commit/c9716cf7b8b846faab451bd2f60c53c77d2d24ba) Thanks [@github-actions](https://github.com/apps/github-actions)! - Added `isDragging` and `isDropping` properties to `draggable` and `sortable` instances.

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`3ea0d31`](https://github.com/clauderic/dnd-kit/commit/3ea0d314649b186bfe0524d50145625da13a8787) Thanks [@github-actions](https://github.com/apps/github-actions)! - Added optional `register` argument to instances of `Entity` to disable automatic registration of instances that have a manager supplied on initialization.

- [#1597](https://github.com/clauderic/dnd-kit/pull/1597) [`3cf4db1`](https://github.com/clauderic/dnd-kit/commit/3cf4db126813ebe6ddfc025df5e42e9bfcfa9c38) Thanks [@clauderic](https://github.com/clauderic)! - Added the `registerEffect` method that can be invoked by sub-classes that extend the base `Plugin` class to register effects and automatically dispose of them when the plugin instance is destroyed.

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

## 0.0.7

### 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.7",
"version": "0.0.8",
"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.7",
"@dnd-kit/state": "^0.0.7",
"@dnd-kit/geometry": "^0.0.8",
"@dnd-kit/state": "^0.0.8",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/collision/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @dnd-kit/collision

## 0.0.8

### Patch Changes

- Updated dependencies [[`c9716cf`](https://github.com/clauderic/dnd-kit/commit/c9716cf7b8b846faab451bd2f60c53c77d2d24ba), [`3ea0d31`](https://github.com/clauderic/dnd-kit/commit/3ea0d314649b186bfe0524d50145625da13a8787), [`3cf4db1`](https://github.com/clauderic/dnd-kit/commit/3cf4db126813ebe6ddfc025df5e42e9bfcfa9c38)]:
- @dnd-kit/abstract@0.0.8
- @dnd-kit/geometry@0.0.8

## 0.0.7

### 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.7",
"version": "0.0.8",
"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.7",
"@dnd-kit/geometry": "^0.0.7",
"@dnd-kit/abstract": "^0.0.8",
"@dnd-kit/geometry": "^0.0.8",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
21 changes: 21 additions & 0 deletions packages/dom/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @dnd-kit/dom

## 0.0.8

### Patch Changes

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`0de7456`](https://github.com/clauderic/dnd-kit/commit/0de7456ade17b9a0aa127b8adf13495e7fdf1558) Thanks [@github-actions](https://github.com/apps/github-actions)! - Moved styles that override the default user agent styles for `[popover]` into a CSS layer to avoid overriding other layered styles on the page, such as Tailwind 4.

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`c9716cf`](https://github.com/clauderic/dnd-kit/commit/c9716cf7b8b846faab451bd2f60c53c77d2d24ba) Thanks [@github-actions](https://github.com/apps/github-actions)! - Added `isDragging` and `isDropping` properties to `draggable` and `sortable` instances.

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`74eedef`](https://github.com/clauderic/dnd-kit/commit/74eedef3441dc07d8fa8dd9337a6b2d748b0cdde) Thanks [@github-actions](https://github.com/apps/github-actions)! - **PointerSensor**

- End drag operation if `lostpointercapture` event is fired and the drag operation has not ended already. This can happen if the `pointerup` event is fired in a different frame.
- Prevent `contextmenu` from opening during a drag operation.

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`42e7256`](https://github.com/clauderic/dnd-kit/commit/42e7256e7fb9c11ed6295b77e30c41ebe66a15d1) Thanks [@github-actions](https://github.com/apps/github-actions)! - - Fixed an invalid CSS selector in the `PreventSelection` plugin
- Removed logic to prevent user selection in `Feedback` plugin (defer to `PreventSelection` plugin to handle this)
- Updated dependencies [[`c9716cf`](https://github.com/clauderic/dnd-kit/commit/c9716cf7b8b846faab451bd2f60c53c77d2d24ba), [`3ea0d31`](https://github.com/clauderic/dnd-kit/commit/3ea0d314649b186bfe0524d50145625da13a8787), [`3cf4db1`](https://github.com/clauderic/dnd-kit/commit/3cf4db126813ebe6ddfc025df5e42e9bfcfa9c38)]:
- @dnd-kit/abstract@0.0.8
- @dnd-kit/collision@0.0.8
- @dnd-kit/geometry@0.0.8
- @dnd-kit/state@0.0.8

## 0.0.7

### 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.7",
"version": "0.0.8",
"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.7",
"@dnd-kit/collision": "^0.0.7",
"@dnd-kit/geometry": "^0.0.7",
"@dnd-kit/state": "^0.0.7",
"@dnd-kit/abstract": "^0.0.8",
"@dnd-kit/collision": "^0.0.8",
"@dnd-kit/geometry": "^0.0.8",
"@dnd-kit/state": "^0.0.8",
"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.8

### Patch Changes

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

## 0.0.7

### 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.7",
"version": "0.0.8",
"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.7",
"@dnd-kit/state": "^0.0.8",
"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.8

### Patch Changes

- Updated dependencies [[`c9716cf`](https://github.com/clauderic/dnd-kit/commit/c9716cf7b8b846faab451bd2f60c53c77d2d24ba), [`3ea0d31`](https://github.com/clauderic/dnd-kit/commit/3ea0d314649b186bfe0524d50145625da13a8787), [`3cf4db1`](https://github.com/clauderic/dnd-kit/commit/3cf4db126813ebe6ddfc025df5e42e9bfcfa9c38)]:
- @dnd-kit/abstract@0.0.8

## 0.0.7

### 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.7",
"version": "0.0.8",
"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.7",
"@dnd-kit/abstract": "^0.0.8",
"tslib": "^2.6.2"
},
"devDependencies": {
Expand Down
17 changes: 17 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @dnd-kit/react

## 0.0.8

### Patch Changes

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`426339d`](https://github.com/clauderic/dnd-kit/commit/426339df7bcfdfb08a2d3b9b2eb0abb8c02ed526) Thanks [@github-actions](https://github.com/apps/github-actions)! - Added the `<DragOverlay>` component to ease migration for consumers of `@dnd-kit/core` migrating to `@dnd-kit/react`

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`3ea0d31`](https://github.com/clauderic/dnd-kit/commit/3ea0d314649b186bfe0524d50145625da13a8787) Thanks [@github-actions](https://github.com/apps/github-actions)! - Added optional `register` argument to instances of `Entity` to disable automatic registration of instances that have a manager supplied on initialization.

- [#1598](https://github.com/clauderic/dnd-kit/pull/1598) [`e7fafec`](https://github.com/clauderic/dnd-kit/commit/e7fafec99cdcd44612a905cdb6ba560d42f1d786) Thanks [@github-actions](https://github.com/apps/github-actions)! - Prevent the `Feedback` element that has the popover attribute from being accidentally closed during the drag operation, which would take it out of the top layer.

- [#1597](https://github.com/clauderic/dnd-kit/pull/1597) [`6978d81`](https://github.com/clauderic/dnd-kit/commit/6978d81311e5ac0d9c623b8ceb864740c693ca1d) Thanks [@clauderic](https://github.com/clauderic)! - Introduce `useDeepSignal` hook, which keeps track of which properties are read on an object and automatically re-renders the component when a read signal changes.

- Updated dependencies [[`0de7456`](https://github.com/clauderic/dnd-kit/commit/0de7456ade17b9a0aa127b8adf13495e7fdf1558), [`c9716cf`](https://github.com/clauderic/dnd-kit/commit/c9716cf7b8b846faab451bd2f60c53c77d2d24ba), [`3ea0d31`](https://github.com/clauderic/dnd-kit/commit/3ea0d314649b186bfe0524d50145625da13a8787), [`3cf4db1`](https://github.com/clauderic/dnd-kit/commit/3cf4db126813ebe6ddfc025df5e42e9bfcfa9c38), [`74eedef`](https://github.com/clauderic/dnd-kit/commit/74eedef3441dc07d8fa8dd9337a6b2d748b0cdde), [`42e7256`](https://github.com/clauderic/dnd-kit/commit/42e7256e7fb9c11ed6295b77e30c41ebe66a15d1)]:
- @dnd-kit/dom@0.0.8
- @dnd-kit/abstract@0.0.8
- @dnd-kit/state@0.0.8

## 0.0.7

### 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.7",
"version": "0.0.8",
"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.7",
"@dnd-kit/dom": "^0.0.7",
"@dnd-kit/state": "^0.0.7",
"@dnd-kit/abstract": "^0.0.8",
"@dnd-kit/dom": "^0.0.8",
"@dnd-kit/state": "^0.0.8",
"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.8

## 0.0.7

## 0.0.6
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.7",
"version": "0.0.8",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit 42e914a

Please sign in to comment.