Conversation
c7917bb to
846021c
Compare
67a6373 to
62ae774
Compare
62ae774 to
e4a2cae
Compare
57f69ef to
e974ac0
Compare
a191357 to
d2c17e6
Compare
8658f74 to
cff863d
Compare
cff863d to
4f071cb
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@dnd-kit/abstract@0.4.0
Minor Changes
#1923
cde61e4Thanks @clauderic! - Batch entity identity changes to prevent collision oscillation during virtualized sorting.When entities swap ids (e.g. as
react-windowrecycles DOM nodes during a drag), multiple registry updates could fire in an interleaved order, causing the collision detector to momentarily see stale or duplicate entries and oscillate between targets.Entity
idchanges are now deferred to a microtask and flushed atomically in a singlebatch(), ensuring:#1915
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
DragDropEventshas been split into two types:DragDropEventMap— maps event names to event object types (likeWindowEventMap)DragDropEventHandlers— maps event names to(event, manager) => voidhandler signaturesDragDropEventsto type event objects, useDragDropEventMapinstead:DragDropEventsto type event handlers, useDragDropEventHandlersinstead:DragDropEventsre-export from@dnd-kit/reactand@dnd-kit/solidhas been removed. ImportDragDropEventMaporDragDropEventHandlersfrom@dnd-kit/abstractdirectly if needed.CollisionEvent,DragStartEvent,DragEndEvent, etc.) are unchanged and continue to work as before.#1938
e69387dThanks @clauderic! - Added per-entity plugin configuration and movedfeedbackfrom the Draggable entity to the Feedback plugin.Draggable entities now accept a
pluginsproperty for per-entity plugin configuration, using the existingPlugin.configure()pattern. Plugins can read per-entity options viasource.pluginConfig(PluginClass).The
feedbackproperty ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity toFeedbackOptions. Drop animation can also now be configured per-draggable.Plugins listed in an entity's
pluginsarray are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.Migration guide
The
feedbackproperty has been moved from the draggable/sortable hook input to per-entity Feedback plugin configuration.Before:
After:
Drop animation can now be configured per-draggable:
Patch Changes
#1982
a5935e0Thanks @clauderic! - fix: ensure onDragStart fires before onDragOver when an element is both draggable and droppable#1987
462e435Thanks @clauderic! - fix: resolve DTS build errors with TypeScript 5.9 on Node 20Add explicit return type annotations to avoid
[dispose]serialization failures during declaration emit, and fixuseRefreadonly errors for React 19 type compatibility.#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.#1933
8115a57Thanks @clauderic! - Fixed plugin registration order when deduplicating configured plugins.When a plugin was provided via
Plugin.configure()alongside an internally-registered instance of the same plugin, the dedup logic would reorder it to the end of the registration list. This broke plugins likeFeedbackthat resolveStyleInjectorfrom the registry during construction, sinceStyleInjectorwould not yet be registered.This also prevented users from configuring
StyleInjectorwith a CSPnoncewithout breaking drag feedback:#1936
4e35963Thanks @FreTimmerman! - Infer type of source.data object from type argumentUpdated dependencies [
8fc1962]:@dnd-kit/dom@0.4.0
Minor Changes
#1909
87bf1e6Thanks @clauderic! - Addaccelerationandthresholdoptions to theAutoScrollerplugin.accelerationcontrols the base scroll speed multiplier (default:25).thresholdcontrols the percentage of container dimensions that defines the scroll activation zone (default:0.2). Accepts a single number for both axes or{ x, y }for per-axis control. Setting an axis to0disables auto-scrolling on that axis.#1966
521f760Thanks @lixiaoyan! - Sortablepluginsnow acceptsCustomizable<Plugins>, allowing a function that receives the default plugins to extend them rather than replace them.This prevents accidentally losing the default Sortable plugins (
SortableKeyboardPlugin,OptimisticSortingPlugin) when adding per-entity plugin configuration such asFeedback.configure().#1938
c001272Thanks @clauderic! - TheDropAnimationFunctioncontext now includessource, providing access to the draggable entity for conditional animation logic.#1923
cde61e4Thanks @clauderic! - Batch entity identity changes to prevent collision oscillation during virtualized sorting.When entities swap ids (e.g. as
react-windowrecycles DOM nodes during a drag), multiple registry updates could fire in an interleaved order, causing the collision detector to momentarily see stale or duplicate entries and oscillate between targets.Entity
idchanges are now deferred to a microtask and flushed atomically in a singlebatch(), ensuring:#2001
78af13bThanks @lixiaoyan! - Support a callback form for thefeedbackoption in theFeedbackplugin, allowing the feedback type to be chosen dynamically based on the source and manager context (e.g. activator type).#1908
1328af8Thanks @clauderic! - AddkeyboardTransitionoption to theFeedbackplugin for customizing or disabling the CSS transition applied when moving elements via keyboard.By default, keyboard-driven moves animate with
250ms cubic-bezier(0.25, 1, 0.5, 1). You can now customize thedurationandeasing, or set the option tonullto disable the transition entirely.#1919
bfff7deThanks @clauderic! - The Feedback plugin now supports full CSStransformproperty for compatibility with libraries like react-window v2 that position elements via transforms. Transform-related CSS transitions are filtered out to prevent conflicts with Feedback-managed properties. The ResizeObserver computes shapes from CSS values rather than re-measuring the element, avoiding mid-transition measurement errors. Sortable'sanimate()cancels CSS transitions on transform-related properties before measuring to ensure correct FLIP deltas.#1915
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
DragDropEventshas been split into two types:DragDropEventMap— maps event names to event object types (likeWindowEventMap)DragDropEventHandlers— maps event names to(event, manager) => voidhandler signaturesDragDropEventsto type event objects, useDragDropEventMapinstead:DragDropEventsto type event handlers, useDragDropEventHandlersinstead:DragDropEventsre-export from@dnd-kit/reactand@dnd-kit/solidhas been removed. ImportDragDropEventMaporDragDropEventHandlersfrom@dnd-kit/abstractdirectly if needed.CollisionEvent,DragStartEvent,DragEndEvent, etc.) are unchanged and continue to work as before.#1938
e69387dThanks @clauderic! - Added per-entity plugin configuration and movedfeedbackfrom the Draggable entity to the Feedback plugin.Draggable entities now accept a
pluginsproperty for per-entity plugin configuration, using the existingPlugin.configure()pattern. Plugins can read per-entity options viasource.pluginConfig(PluginClass).The
feedbackproperty ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity toFeedbackOptions. Drop animation can also now be configured per-draggable.Plugins listed in an entity's
pluginsarray are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.Migration guide
The
feedbackproperty has been moved from the draggable/sortable hook input to per-entity Feedback plugin configuration.Before:
After:
Drop animation can now be configured per-draggable:
#1905
11ff2ebThanks @clauderic! - RenamedStyleSheetManagertoStyleInjectorand centralized CSPnonceconfiguration.The
StyleInjectorplugin now accepts anonceoption that is applied to all injected<style>elements. Thenonceoptions have been removed from theCursor,PreventSelection, andFeedbackplugin options.Before:
After:
The
CursorandPreventSelectionplugins now route their style injection through theStyleInjector, so all injected styles respect the centralizednonceconfiguration.#1916
7489265Thanks @clauderic! - RewritescrollIntoViewIfNeededwith manual offset calculations for correct behavior in nested scroll containers. ThecenterIfNeededboolean parameter has been replaced with an options object acceptingblockandinlineproperties ('center','nearest', or'none').Patch Changes
#1918
4bc7e71Thanks @clauderic! - Animation resolution now uses last-wins semantics matching CSS composite order.getFinalKeyframereturns the last matching keyframe across all running animations instead of short-circuiting on the first match.getProjectedTransformcollects the latest value per CSS property (transform,translate,scale) rather than accumulating transforms additively.#1948
532ae9bThanks @clauderic! - Fix Feedback plugin placeholder not repositioning when siblings are moved around a stationary source element.When a VDOM framework (e.g., Preact, Vue) reorders sibling elements during a drag operation, the source element and placeholder may remain in the DOM but no longer be adjacent. The existing
documentMutationObserveronly handled cases where the source or placeholder itself was re-added to the DOM. This adds a fallback adjacency check after processing all mutation entries, ensuring the placeholder stays next to the source element regardless of how siblings are rearranged.#1968
267c97cThanks @clauderic! - Fix clone feedback placeholder dropping inline SVG children during mutation sync.The element mutation observer used
innerHTMLto sync child changes from the dragged element to its placeholder. This text-based serialization loses SVG namespace information, causing inline SVG elements (e.g. icon components) to be stripped from the placeholder. The placeholder then measures with incorrect dimensions, producing a misaligned drop animation.Replaced
innerHTMLwithreplaceChildren(...element.cloneNode(true).childNodes), which performs a namespace-aware deep clone.#1987
462e435Thanks @clauderic! - fix: resolve DTS build errors with TypeScript 5.9 on Node 20Add explicit return type annotations to avoid
[dispose]serialization failures during declaration emit, and fixuseRefreadonly errors for React 19 type compatibility.#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.#1983
88d5ef9Thanks @clauderic! - Fixed memory leak inListenersclass where thebindcleanup function did not remove entries from the internalentriesset, causing detached DOM nodes to be retained in memory.#1934
688e00fThanks @clauderic! - FixedsetPointerCaptureerror on touch devices caused by stale pointer activation.When a touch was released during the activation delay and followed by a quick re-touch, the pending delay timer from the first touch could fire with a stale
pointerId, causingsetPointerCaptureto throw. ThePointerSensornow properly aborts the activation controller during cleanup to cancel pending delay timers, and defensively handlessetPointerCapturefailures.#1953
cdaebffThanks @ImBaedin! - Fix sortable type narrowing soisSortable(event.operation.source)narrows to a sortable draggable with access toinitialIndex, and re-export the drag event type aliases from@dnd-kit/vue.#1946
5a2ed80Thanks @mattersj! - recalculate AutoScroller options in the effect to avoid stale dataUpdated dependencies [
cde61e4,a5935e0,462e435,9b24dff,8fc1962,8115a57,e69387d,4e35963]:@dnd-kit/helpers@0.4.0
Minor Changes
#1915
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
DragDropEventshas been split into two types:DragDropEventMap— maps event names to event object types (likeWindowEventMap)DragDropEventHandlers— maps event names to(event, manager) => voidhandler signaturesDragDropEventsto type event objects, useDragDropEventMapinstead:DragDropEventsto type event handlers, useDragDropEventHandlersinstead:DragDropEventsre-export from@dnd-kit/reactand@dnd-kit/solidhas been removed. ImportDragDropEventMaporDragDropEventHandlersfrom@dnd-kit/abstractdirectly if needed.CollisionEvent,DragStartEvent,DragEndEvent, etc.) are unchanged and continue to work as before.Patch Changes
#1954
e5b153eThanks @thexeromin! - fix: correct JSDoc comment for arraySwap#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.Updated dependencies [
cde61e4,a5935e0,462e435,9b24dff,8fc1962,8115a57,e69387d,4e35963]:@dnd-kit/react@0.4.0
Minor Changes
#1915
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
DragDropEventshas been split into two types:DragDropEventMap— maps event names to event object types (likeWindowEventMap)DragDropEventHandlers— maps event names to(event, manager) => voidhandler signaturesDragDropEventsto type event objects, useDragDropEventMapinstead:DragDropEventsto type event handlers, useDragDropEventHandlersinstead:DragDropEventsre-export from@dnd-kit/reactand@dnd-kit/solidhas been removed. ImportDragDropEventMaporDragDropEventHandlersfrom@dnd-kit/abstractdirectly if needed.CollisionEvent,DragStartEvent,DragEndEvent, etc.) are unchanged and continue to work as before.#1938
e69387dThanks @clauderic! - Added per-entity plugin configuration and movedfeedbackfrom the Draggable entity to the Feedback plugin.Draggable entities now accept a
pluginsproperty for per-entity plugin configuration, using the existingPlugin.configure()pattern. Plugins can read per-entity options viasource.pluginConfig(PluginClass).The
feedbackproperty ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity toFeedbackOptions. Drop animation can also now be configured per-draggable.Plugins listed in an entity's
pluginsarray are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.Migration guide
The
feedbackproperty has been moved from the draggable/sortable hook input to per-entity Feedback plugin configuration.Before:
After:
Drop animation can now be configured per-draggable:
Patch Changes
#1987
462e435Thanks @clauderic! - fix: resolve DTS build errors with TypeScript 5.9 on Node 20Add explicit return type annotations to avoid
[dispose]serialization failures during declaration emit, and fixuseRefreadonly errors for React 19 type compatibility.#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.#1924
8e3e5eeThanks @clauderic! - FixuseDeepSignalcallingflushSyncfrom within a React lifecycle method.When signal updates are triggered synchronously from a React effect (e.g. during a
useEffectbatch), callingflushSyncdirectly violates React's internal invariant. The synchronous re-render is now deferred to a microtask viaqueueMicrotask, which runs after the current React batch completes but before the next paint.Updated dependencies [
4bc7e71,87bf1e6,521f760,c001272,cde61e4,78af13b,1328af8,532ae9b,267c97c,bfff7de,a5935e0,462e435,9b24dff,8fc1962,88d5ef9,8115a57,688e00f,cdaebff,e69387d,11ff2eb,7489265,4e35963,5a2ed80]:@dnd-kit/solid@0.4.0
Minor Changes
#1915
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
DragDropEventshas been split into two types:DragDropEventMap— maps event names to event object types (likeWindowEventMap)DragDropEventHandlers— maps event names to(event, manager) => voidhandler signaturesDragDropEventsto type event objects, useDragDropEventMapinstead:DragDropEventsto type event handlers, useDragDropEventHandlersinstead:DragDropEventsre-export from@dnd-kit/reactand@dnd-kit/solidhas been removed. ImportDragDropEventMaporDragDropEventHandlersfrom@dnd-kit/abstractdirectly if needed.CollisionEvent,DragStartEvent,DragEndEvent, etc.) are unchanged and continue to work as before.#1938
e69387dThanks @clauderic! - Added per-entity plugin configuration and movedfeedbackfrom the Draggable entity to the Feedback plugin.Draggable entities now accept a
pluginsproperty for per-entity plugin configuration, using the existingPlugin.configure()pattern. Plugins can read per-entity options viasource.pluginConfig(PluginClass).The
feedbackproperty ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity toFeedbackOptions. Drop animation can also now be configured per-draggable.Plugins listed in an entity's
pluginsarray are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.Migration guide
The
feedbackproperty has been moved from the draggable/sortable hook input to per-entity Feedback plugin configuration.Before:
After:
Drop animation can now be configured per-draggable:
Patch Changes
#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.Updated dependencies [
4bc7e71,87bf1e6,521f760,c001272,cde61e4,78af13b,1328af8,532ae9b,267c97c,bfff7de,a5935e0,462e435,9b24dff,8fc1962,88d5ef9,8115a57,688e00f,cdaebff,e69387d,11ff2eb,7489265,4e35963,5a2ed80]:@dnd-kit/svelte@0.4.0
Minor Changes
#1915
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
DragDropEventshas been split into two types:DragDropEventMap— maps event names to event object types (likeWindowEventMap)DragDropEventHandlers— maps event names to(event, manager) => voidhandler signaturesDragDropEventsto type event objects, useDragDropEventMapinstead:DragDropEventsto type event handlers, useDragDropEventHandlersinstead:DragDropEventsre-export from@dnd-kit/reactand@dnd-kit/solidhas been removed. ImportDragDropEventMaporDragDropEventHandlersfrom@dnd-kit/abstractdirectly if needed.CollisionEvent,DragStartEvent,DragEndEvent, etc.) are unchanged and continue to work as before.#1938
e69387dThanks @clauderic! - Added per-entity plugin configuration and movedfeedbackfrom the Draggable entity to the Feedback plugin.Draggable entities now accept a
pluginsproperty for per-entity plugin configuration, using the existingPlugin.configure()pattern. Plugins can read per-entity options viasource.pluginConfig(PluginClass).The
feedbackproperty ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity toFeedbackOptions. Drop animation can also now be configured per-draggable.Plugins listed in an entity's
pluginsarray are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.Migration guide
The
feedbackproperty has been moved from the draggable/sortable hook input to per-entity Feedback plugin configuration.Before:
After:
Drop animation can now be configured per-draggable:
#1976
a78e9dbThanks @clauderic! - RemoveOptimisticSortingPluginfrom Svelte adapter defaults to prevent conflicts with Svelte 5's{#each}reconciliation. The plugin physically reorders DOM elements during drag, which breaks Svelte's internal effect linked list, causing incorrect mutations or an infinite loop when state is updated.Visual sorting during drag is now achieved by calling
move()in anonDragOverhandler, which routes all DOM reordering through Svelte's own reconciler. Update your sortable components to use the snapshot pattern:let snapshot = []; function onDragStart() { snapshot = items.slice(); } function onDragOver(event) { items = move(items, event); } function onDragEnd(event) { if (event.canceled) items = snapshot; }Patch Changes
#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.#1974
5323c96Thanks @clauderic! - fix: guard element cleanup in sortable attach functions to prevent clearing element references during active drag operations#1975
4114b29Thanks @clauderic! - fix: sync collisionDetector property in createSortable reactive effectUpdated dependencies [
4bc7e71,87bf1e6,521f760,c001272,cde61e4,78af13b,1328af8,532ae9b,267c97c,bfff7de,a5935e0,462e435,9b24dff,8fc1962,88d5ef9,8115a57,688e00f,cdaebff,e69387d,11ff2eb,7489265,4e35963,5a2ed80]:@dnd-kit/vue@0.4.0
Minor Changes
#1915
9b24dffThanks @clauderic! - Redesign event type system to follow the DOM EventMap pattern. IntroducesDragDropEventMapfor event object types andDragDropEventHandlersfor event handler signatures, replacing the ambiguously namedDragDropEvents. Event type aliases (CollisionEvent,DragStartEvent, etc.) now derive directly fromDragDropEventMaprather than usingParameters<>extraction.Migration guide
DragDropEventshas been split into two types:DragDropEventMap— maps event names to event object types (likeWindowEventMap)DragDropEventHandlers— maps event names to(event, manager) => voidhandler signaturesDragDropEventsto type event objects, useDragDropEventMapinstead:DragDropEventsto type event handlers, useDragDropEventHandlersinstead:DragDropEventsre-export from@dnd-kit/reactand@dnd-kit/solidhas been removed. ImportDragDropEventMaporDragDropEventHandlersfrom@dnd-kit/abstractdirectly if needed.CollisionEvent,DragStartEvent,DragEndEvent, etc.) are unchanged and continue to work as before.#1938
e69387dThanks @clauderic! - Added per-entity plugin configuration and movedfeedbackfrom the Draggable entity to the Feedback plugin.Draggable entities now accept a
pluginsproperty for per-entity plugin configuration, using the existingPlugin.configure()pattern. Plugins can read per-entity options viasource.pluginConfig(PluginClass).The
feedbackproperty ('default' | 'move' | 'clone' | 'none') has been moved from the Draggable entity toFeedbackOptions. Drop animation can also now be configured per-draggable.Plugins listed in an entity's
pluginsarray are auto-registered on the manager if not already present. The Sortable class now uses this generic mechanism instead of its own custom registration logic.Migration guide
The
feedbackproperty has been moved from the draggable/sortable hook input to per-entity Feedback plugin configuration.Before:
After:
Drop animation can now be configured per-draggable:
Patch Changes
#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.#1953
cdaebffThanks @ImBaedin! - Fix sortable type narrowing soisSortable(event.operation.source)narrows to a sortable draggable with access toinitialIndex, and re-export the drag event type aliases from@dnd-kit/vue.#1985
ed65220Thanks @tenianon! - fix: preserve DragDropProvider emits type in built declaration filesUpdated dependencies [
4bc7e71,87bf1e6,521f760,c001272,cde61e4,78af13b,1328af8,532ae9b,267c97c,bfff7de,a5935e0,462e435,9b24dff,8fc1962,88d5ef9,8115a57,688e00f,cdaebff,e69387d,11ff2eb,7489265,4e35963,5a2ed80]:@dnd-kit/collision@0.4.0
Patch Changes
#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.Updated dependencies [
cde61e4,a5935e0,462e435,9b24dff,8fc1962,8115a57,e69387d,4e35963]:@dnd-kit/geometry@0.4.0
Patch Changes
#1971
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.Updated dependencies [
8fc1962]:@dnd-kit/state@0.4.0
Patch Changes
8fc1962Thanks @clauderic! - Added LICENSE file to all published packages.