Skip to content

Releases: clauderic/dnd-kit

@dnd-kit/[email protected]

06 Nov 22:20
694dcc2
Compare
Choose a tag to compare

Patch Changes

@dnd-kit/[email protected]

06 Nov 22:20
694dcc2
Compare
Choose a tag to compare

Minor Changes

  • #1271 bc588c7 Thanks @clauderic! - Introduce bypassActivationConstraint() option for PointerSensor, MouseSensor and TouchSensor. This optional argument can be used to conditionally bypass activation constraints. An example use-case would be to bypass activation constraints when the activator event target is the activatorNode of a draggable source.

    useSensor(PointerSensor, {
      activationConstraint: {
        delay: 250,
        tolerance: 5,
      },
      bypassActivationConstraint({event, activeNode}) {
        return activeNode.activatorNode.current?.contains(event.target);
      },
    });
  • #1269 b417f0f Thanks @clauderic! - Allow delay and distance activation constraints to be used concurrently for MouseSensor, TouchSensor and PointerSensor.

Patch Changes

@dnd-kit/[email protected]

06 Nov 22:20
694dcc2
Compare
Choose a tag to compare

Minor Changes

  • #1229 aabb8bd Thanks @ayy-bc! - Introduce ariaLiveType prop on <LiveRegion> to allow consumers to configure the aria-live attribute to other values for announcements, such as aria-live="polite".

@dnd-kit/[email protected]

19 Feb 14:48
00f749b
Compare
Choose a tag to compare

Patch Changes

  • #1038 da888ee Thanks @WillDonohoe! - Fix errors with calls to getComputedStyle in Firefox when destructuring from the window object

@dnd-kit/[email protected]

05 Jan 01:52
880190f
Compare
Choose a tag to compare

Patch Changes

@dnd-kit/[email protected]

05 Jan 01:52
880190f
Compare
Choose a tag to compare

Patch Changes

@dnd-kit/[email protected]

07 Dec 01:48
d5c4732
Compare
Choose a tag to compare

Patch Changes

@dnd-kit/[email protected]

07 Dec 01:48
d5c4732
Compare
Choose a tag to compare

Patch Changes

@dnd-kit/[email protected]

07 Dec 01:48
d5c4732
Compare
Choose a tag to compare

Patch Changes

@dnd-kit/[email protected]

14 Jun 17:21
eec27f3
Compare
Choose a tag to compare

Patch Changes

  • #792 b6970e7 Thanks @clauderic! - The hasSortableData type-guard that is exported by @dnd-kit/sortable has been updated to also accept the Active and Over interfaces so it can be used in events such as onDragStart, onDragOver, and onDragEnd.

  • Updated dependencies [eaa6e12]: