Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update non-major package dependencies #1993

Merged
merged 2 commits into from
Dec 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@dnd-kit/core (source) 6.1.0 -> 6.3.1 age adoption passing confidence
@types/react-transition-group (source) 4.4.11 -> 4.4.12 age adoption passing confidence
@zendeskgarden/svg-icons (source) 7.3.0 -> 7.5.0 age adoption passing confidence
react-dropzone 14.2.9 -> 14.3.5 age adoption passing confidence

Release Notes

clauderic/dnd-kit (@​dnd-kit/core)

v6.3.1

Compare Source

Patch Changes
  • #​1555 62f632a Thanks @​clauderic! - Added Tab to the list of default key codes that end a drag and drop operation. Can be customized by passing in a custom list of keyCodes to the KeyboardSensor options.

v6.3.0

Compare Source

Minor Changes
Context

Activation constraints are used when we want to prevent accidental dragging or when
pointer press can mean more than "start dragging".

A typical use case is a button that needs to respond to both "click" and "drag" gestures.
Clicks can be distinguished from drags based on how long the pointer was
held pressed.

The problem

A control that responds differently to a pointer press based on duration or distance can
be confusing to use -- the user has to guess how long to keep holding or how far to keep
dragging until their intent is acknowledged.

Implementing such cues is currently possible by attaching extra event listeners so that
we know when a drag is pending. Furthermore, the listener needs to have access to
the same constraints that were applied to the sensor initiating the drag. This can be
made to work in simple cases, but it becomes error-prone and difficult to maintain in
complex scenarios.

Solution

This changeset proposes the addition of two new events: onDragPending and onDragAbort.

onDragPending

A drag is considered to be pending when the pointer has been pressed and there are
activation constraints that need to be satisfied before a drag can start.

This event is initially fired on pointer press. At this time offset (see below) will be
undefined.

It will subsequently be fired every time the pointer is moved. This is to enable
visual cues for distance-based activation.

The event's payload contains all the information necessary for providing visual feedback:

export interface DragPendingEvent {
  id: UniqueIdentifier;
  constraint: PointerActivationConstraint;
  initialCoordinates: Coordinates;
  offset?: Coordinates | undefined;
}
onDragAbort

A drag is considered aborted when an activation constraint for a pending drag was violated.
Useful as a prompt to cancel any visual cue animations currently in progress.
Note that this event will not be fired when dragging ends or is canceled.

v6.2.0

Compare Source

Minor Changes
Patch Changes
zendeskgarden/svg-icons (@​zendeskgarden/svg-icons)

v7.5.0

Compare Source

Features

v7.4.0

Compare Source

Features
react-dropzone/react-dropzone (react-dropzone)

v14.3.5

Compare Source

Bug Fixes

v14.3.4

Compare Source

Bug Fixes

v14.3.3

Compare Source

Bug Fixes

v14.3.2

Compare Source

v14.3.1

Compare Source

v14.3.0

Compare Source

v14.2.10

Compare Source

Bug Fixes
  • fix exports declaration (53bba3a)

Configuration

📅 Schedule: Branch creation - "on Monday every 9 weeks of the year starting on the 6th week" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner December 16, 2024 00:41
@coveralls
Copy link

coveralls commented Dec 16, 2024

Coverage Status

coverage: 95.584%. remained the same
when pulling 1647138 on renovate/packages-minor-patch
into e955fb4 on main.

@renovate renovate bot force-pushed the renovate/packages-minor-patch branch 3 times, most recently from dd60e18 to d66a01e Compare December 18, 2024 21:19
@renovate renovate bot force-pushed the renovate/packages-minor-patch branch from d66a01e to d183ec5 Compare December 18, 2024 21:21
Copy link
Contributor Author

renovate bot commented Dec 19, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@jzempel jzempel merged commit 93fb392 into main Dec 19, 2024
8 checks passed
@jzempel jzempel deleted the renovate/packages-minor-patch branch December 19, 2024 16:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

2 participants