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

Update d3-selection #205

Merged
merged 25 commits into from
Aug 23, 2020
Merged

Update d3-selection #205

merged 25 commits into from
Aug 23, 2020

Commits on May 14, 2020

  1. deliberate ES6 syntax

    (rationale: don't let people install @2 in a build system that will not alert them that we have moved to ES6, only to cause trouble with a later release.)
    Fil committed May 14, 2020
    Configuration menu
    Copy the full SHA
    0b879f6 View commit details
    Browse the repository at this point in the history
  2. Update d3-selection

    Fil committed May 14, 2020
    Configuration menu
    Copy the full SHA
    3156eb0 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2020

  1. Configuration menu
    Copy the full SHA
    5b1aae7 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2020

  1. the zoom behavior has no subject

    (was a leftover from when I copied event code from d3-drag)
    Fil committed May 22, 2020
    Configuration menu
    Copy the full SHA
    da400b7 View commit details
    Browse the repository at this point in the history
  2. get datum and sourceEvent

    Fil committed May 22, 2020
    Configuration menu
    Copy the full SHA
    74308c9 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2020

  1. null event when calling zoom.transform

    so that zoom.extent(function(event, d) {}) receives *null, datum*
    Fil committed May 25, 2020
    Configuration menu
    Copy the full SHA
    4aade48 View commit details
    Browse the repository at this point in the history
  2. Clarify which functions expect (event, …) and which expect (selection…

    …, …); and repair the calls that were mixed-up.
    
    *event-based functions:*
    - Gesture (hence event = this.args[0])
    - filter
    - wheelDelta
    
    *selection-based functions:*
    - extent
    - transform
    - schedule
    - k,p (in scaleBy & scaleTo)
    - x,y (in translateBy)
    
    In addition, an event that triggers a transition (such as a zoom.dblclick) can be persisted throughout the transition as the zoomEvent.sourceEvent (fixes #202).
    Fil committed May 25, 2020
    Configuration menu
    Copy the full SHA
    1ec0da7 View commit details
    Browse the repository at this point in the history
  3. document filter

    Fil committed May 25, 2020
    Configuration menu
    Copy the full SHA
    3ea5983 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2020

  1. Configuration menu
    Copy the full SHA
    d8edd39 View commit details
    Browse the repository at this point in the history
  2. 75 unit tests

    Fil committed May 26, 2020
    Configuration menu
    Copy the full SHA
    46eba7c View commit details
    Browse the repository at this point in the history

Commits on May 28, 2020

  1. Configuration menu
    Copy the full SHA
    b56cc7e View commit details
    Browse the repository at this point in the history
  2. in wheeled also, send args

    Fil committed May 28, 2020
    Configuration menu
    Copy the full SHA
    82b6e36 View commit details
    Browse the repository at this point in the history
  3. accept subevents

    Fil committed May 28, 2020
    Configuration menu
    Copy the full SHA
    0c6be96 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c0fbb0f View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2020

  1. d3

    Fil committed Jul 2, 2020
    Configuration menu
    Copy the full SHA
    87781b6 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2020

  1. pinch-to-zoom

    fixes #204
    An unintended consequence is that wheel-zooming with the ctrlKey pressed goes 10x faster, but it's rather agreeable.
    Fil committed Jul 13, 2020
    Configuration menu
    Copy the full SHA
    4d2a5f1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5ee1a8d View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2020

  1. introduces tapDistance (default 10 pixels)

    fixes #180
    fixes #206
    Fil committed Jul 15, 2020
    Configuration menu
    Copy the full SHA
    3318746 View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2020

  1. Configuration menu
    Copy the full SHA
    96bd44b View commit details
    Browse the repository at this point in the history
  2. remove touch-action:none

    fixes #206
    fixes #217
    Fil committed Jul 24, 2020
    Configuration menu
    Copy the full SHA
    87c6215 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e02e23c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a710747 View commit details
    Browse the repository at this point in the history
  5. pinch-to-zoom

    Fil authored Jul 24, 2020
    Configuration menu
    Copy the full SHA
    ab4bc64 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #214 from d3/document-translate-tk-192

    x and y are scaled by t_k when calling t.translate(x,y)
    Fil authored Jul 24, 2020
    Configuration menu
    Copy the full SHA
    0fa9a21 View commit details
    Browse the repository at this point in the history
  7. v2.0.0-rc.1

    Fil committed Jul 24, 2020
    Configuration menu
    Copy the full SHA
    28bb791 View commit details
    Browse the repository at this point in the history