-
Notifications
You must be signed in to change notification settings - Fork 625
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
feat: 'move' cursor added over brush mark #9164
Conversation
…a-lite into touch-to-pointer-events
…(interpolatedSignalRef) (vega#9111) Co-authored-by: GitHub Actions Bot <[email protected]>
Bumps [jest-dev-server](https://github.com/argos-ci/jest-puppeteer/tree/HEAD/packages/jest-dev-server) from 9.0.0 to 9.0.1. - [Release notes](https://github.com/argos-ci/jest-puppeteer/releases) - [Changelog](https://github.com/argos-ci/jest-puppeteer/blob/main/packages/jest-dev-server/CHANGELOG.md) - [Commits](https://github.com/argos-ci/jest-puppeteer/commits/v9.0.1/packages/jest-dev-server) --- updated-dependencies: - dependency-name: jest-dev-server dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.22.20 to 7.23.0. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.23.0/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [terser](https://github.com/terser/terser) from 5.19.4 to 5.20.0. - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](terser/terser@v5.19.4...v5.20.0) --- updated-dependencies: - dependency-name: terser dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
829bf87
to
a667fbb
Compare
a8c777b
to
1340766
Compare
b66ce59
to
bbf1cd4
Compare
6f205de
to
1c9b06b
Compare
@@ -259,7 +259,7 @@ | |||
"clip": true, | |||
"encode": { | |||
"enter": { | |||
"cursor": {"value": "pointer"}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this one changing? Seems odd that there was one already and you override it.
@@ -794,7 +794,7 @@ describe('Interval Selections', () => { | |||
type: 'rect', | |||
clip: true, | |||
encode: { | |||
enter: {fill: {value: 'transparent'}}, | |||
enter: {cursor: {value: 'move'}, fill: {value: 'transparent'}}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add tests that check that we don't add a cursor when
- it's already defined
- or the selection cannot be moved (iirc Arvind made a commend about that somewhere but I can't find it right now)
I'm the future, please update an existing pull request/branch rather than opening a new one so we preserve comments better. |
Converting to draft for now. Please mark as ready when it's ready. |
thank you @alliefeldman |
To create affordance for brush panning, switch the user's mouse cursor to 'move' when dragging/hovering over a displayed interval selection.
Contributes to #4155