dependabot[bot] opened a new pull request, #26526: URL: https://github.com/apache/superset/pull/26526
Bumps [@vx/legend](https://github.com/hshoff/vx) from 0.0.198 to 0.0.199. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/hshoff/vx/releases"><code>@vx/legend</code>'s releases</a>.</em></p> <blockquote> <h2>v0.0.199</h2> <h3>:boom: Breaking Changes</h3> <ul> <li>[scale] Deprecate <code>rangeRound</code> field in the input of <code>scaleLinear()</code>, <code>scaleLog()</code>, <code>scalePoint()</code>, <code>scalePower()</code>, <code>scaleSqrt()</code>, <code>scaleTime()</code> and <code>scaleUtc()</code>. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a> Instead of <pre lang="ts"><code>scaleLinear({ rangeRound: xxx }) </code></pre> Do this instead <pre lang="ts"><code>scaleLinear({ range: xxx, round: true }); </code></pre> </li> <li>[scale] Deprecate <code>ticks</code> and <code>tickFormat</code> in the input of <code>scaleQuantize()</code>. It was not really doing anything anyway as both <code>scale.ticks()</code> and <code>scale.tickFormat()</code> do not mutate the scale. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a></li> <li>[scale] Remove <code>scale.type</code> field that was attached to the d3 scales. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a></li> <li>[grid] <code>@vx/grid</code> components now accept D3 Scale as generic type instead of <code>ScaleInput</code>. Developers should not expect to specify this generic type as it can be inferred from the passed scale. <a href="https://redirect.github.com/hshoff/vx/pull/775">#775</a></li> <li>[grid] Renames <code>GridColumnProps</code> => <code>GridColumnsProps</code> (+<code>s</code>) to match <code>GridRowsProps</code>. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[legend] Update generic types for legend components. <a href="https://redirect.github.com/hshoff/vx/pull/777">#777</a></li> <li>[marker] remove old <a href="https://github.com/hshoff/vx/blob/v0.0.198/packages/vx-marker/src/markers/Marker.tsx#L72-L98"><code><Marker /></code></a> implementation of a Line and some Text. <a href="https://redirect.github.com/hshoff/vx/pull/783">#783</a></li> </ul> <h3>:rocket: Enhancements</h3> <ul> <li>[scale] new functions & New fields for the scale configs. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a></li> <li>[scale] add meta scale types. <a href="https://redirect.github.com/hshoff/vx/pull/770">#770</a></li> <li>[scale] Add fallback overload for createScale. <a href="https://redirect.github.com/hshoff/vx/pull/791">#791</a></li> <li>[scale] add new types: <code>AnyD3Scale</code>, <code>InferD3ScaleOutput</code>, <code>InferD3ScaleDiscreteInput</code>, <code>InferD3ScaleThresholdInput</code> and <code>ScaleInput</code>. Add new utilities functions: <code>getTicks</code>, <code>coerceNumber</code> and <code>toString</code>. <a href="https://redirect.github.com/hshoff/vx/pull/773">#773</a></li> <li>[scale] add reverse field to scale config. This will reverse the range. Useful when the ranges are programmatically supplied to the scale factories such as in XYChart and developers want easy way to reverse the dynamic range. <a href="https://redirect.github.com/hshoff/vx/pull/780">#780</a></li> <li>[legend] exports <code>@vx/legend</code> shapes from the <code>index</code> for convenience / non-deep imports. <a href="https://redirect.github.com/hshoff/vx/pull/772">#772</a></li> <li>[grid] adds <code>children</code> prop to <code>GridRows</code> + <code>GridColumns</code> to support animated rendering. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[shape] add <code><BarRounded /></code> shape. <a href="https://redirect.github.com/hshoff/vx/pull/774">#774</a></li> <li>[shape] Create new factory functions for <code>d3-shape</code> and export as part of <code>vx/shape</code> (<code>arc</code>, <code>area</code>, <code>line</code>, <code>pie</code>, <code>radialLine</code>), similar to <code>vx/scale</code> has factories for <code>d3-scale</code>. <a href="https://redirect.github.com/hshoff/vx/pull/776">#776</a></li> <li>[shape] add <code>SplitLinePath</code> component to <code>@vx/shape</code> that allows you to create a line path split into multiple smaller line paths that can be styled independently. <a href="https://redirect.github.com/hshoff/vx/pull/778">#778</a></li> <li>[axis] consistent and compatible typings across <code>vx/scale</code> and <code>vx/axis</code>. More fields passed to child render props of <code>Axis</code>. <a href="https://redirect.github.com/hshoff/vx/pull/773">#773</a></li> <li>[axis] <code>Axis</code> is refactored to accept a <code>ticksComponent</code> which allows us to animate them. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[axis] adds a third argument <code>values</code> to <code>tickFormat(value, index, values)</code> so that format logic can more easily leverage all ticks (because <code>numTicks</code> is approximate, lib consumers do not know how many tick values exist <em>a priori</em>). <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[marker] add new <a href="https://github.com/hshoff/vx/compare/harry-svg-marker?expand=1#diff-7a829322360dc21940b608c760087e29R32-R42"><code><Marker /></code></a> that matches actual SVG <a href="https://github.com/hshoff/vx/blob/v0.0.198/packages/vx-marker/src/markers/Marker.tsx#L72-L98"><code><marker></code></a>. <a href="https://redirect.github.com/hshoff/vx/pull/783">#783</a></li> <li>[marker] add <code><MarkerArrow /></code>, <code><MarkerCross /></code>, <code><MarkerX /></code>, <code><MarkerCircle /></code>, <code><MarkerLine /></code>. <a href="https://redirect.github.com/hshoff/vx/pull/783">#783</a></li> <li>[react-spring] adds a new package <code>@vx/react-spring</code> that includes <code>react-spring</code> as a <code>peerDep</code> and can be a home for things that depend on <code>react-spring</code>. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[react-spring] Adds an <code><AnimatedAxis /></code> and <code><AnimatedTicksRender /></code> in <code>@vx/react-spring</code>. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[react-spring] updates the <code>vx-demo/axis</code> demo to use <code><AnimatedAxis /></code>. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[react-spring] adds <code>AnimatedGridRows</code> + <code>AnimatedGridColumns</code>. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[react-spring] modularizes <code>AnimatedTicks/useAnimatedTicksConfig</code> to <code>spring-configs/useAnimatedLineTransitionConfig</code> so it can power both animated tick + grid lines. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[react-spring] adds <code>animationTrajectory=outside | inside | min | max</code> to <code>AnimatedAxis</code> and <code>AnimatedGridRows/Columns</code>. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> </ul> <h4>:bug: Bug Fix</h4> <ul> <li>[responsive] exclude <code>enableDebounceLeadingCall</code> prop being passed into <code>div</code>. <a href="https://redirect.github.com/hshoff/vx/pull/763">#763</a></li> <li>[responsive] fix prettier format. <a href="https://redirect.github.com/hshoff/vx/pull/764">#764</a></li> <li>[text] fix warning for NaN or invalid values are passed as x or y. <a href="https://redirect.github.com/hshoff/vx/pull/790">#790</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/airbnb/visx/blob/master/CHANGELOG.md"><code>@vx/legend</code>'s changelog</a>.</em></p> <blockquote> <h1>v0.0.199</h1> <h3>:boom: Breaking Changes</h3> <ul> <li>[scale] Deprecate <code>rangeRound</code> field in the input of <code>scaleLinear()</code>, <code>scaleLog()</code>, <code>scalePoint()</code>, <code>scalePower()</code>, <code>scaleSqrt()</code>, <code>scaleTime()</code> and <code>scaleUtc()</code>. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a> Instead of <pre lang="ts"><code>scaleLinear({ rangeRound: xxx }) </code></pre> Do this instead <pre lang="ts"><code>scaleLinear({ range: xxx, round: true }); </code></pre> </li> <li>[scale] Deprecate <code>ticks</code> and <code>tickFormat</code> in the input of <code>scaleQuantize()</code>. It was not really doing anything anyway as both <code>scale.ticks()</code> and <code>scale.tickFormat()</code> do not mutate the scale. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a></li> <li>[scale] Remove <code>scale.type</code> field that was attached to the d3 scales. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a></li> <li>[grid] <code>@vx/grid</code> components now accept D3 Scale as generic type instead of <code>ScaleInput</code>. Developers should not expect to specify this generic type as it can be inferred from the passed scale. <a href="https://redirect.github.com/hshoff/vx/pull/775">#775</a></li> <li>[grid] Renames <code>GridColumnProps</code> => <code>GridColumnsProps</code> (+<code>s</code>) to match <code>GridRowsProps</code>. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[legend] Update generic types for legend components. <a href="https://redirect.github.com/hshoff/vx/pull/777">#777</a></li> <li>[marker] remove old <a href="https://github.com/hshoff/vx/blob/v0.0.198/packages/vx-marker/src/markers/Marker.tsx#L72-L98"><code><Marker /></code></a> implementation of a Line and some Text. <a href="https://redirect.github.com/hshoff/vx/pull/783">#783</a></li> </ul> <h3>:rocket: Enhancements</h3> <ul> <li>[scale] new functions & New fields for the scale configs. <a href="https://redirect.github.com/hshoff/vx/pull/766">#766</a></li> <li>[scale] add meta scale types. <a href="https://redirect.github.com/hshoff/vx/pull/770">#770</a></li> <li>[scale] Add fallback overload for createScale. <a href="https://redirect.github.com/hshoff/vx/pull/791">#791</a></li> <li>[scale] add new types: <code>AnyD3Scale</code>, <code>InferD3ScaleOutput</code>, <code>InferD3ScaleDiscreteInput</code>, <code>InferD3ScaleThresholdInput</code> and <code>ScaleInput</code>. Add new utilities functions: <code>getTicks</code>, <code>coerceNumber</code> and <code>toString</code>. <a href="https://redirect.github.com/hshoff/vx/pull/773">#773</a></li> <li>[scale] add reverse field to scale config. This will reverse the range. Useful when the ranges are programmatically supplied to the scale factories such as in XYChart and developers want easy way to reverse the dynamic range. <a href="https://redirect.github.com/hshoff/vx/pull/780">#780</a></li> <li>[legend] exports <code>@vx/legend</code> shapes from the <code>index</code> for convenience / non-deep imports. <a href="https://redirect.github.com/hshoff/vx/pull/772">#772</a></li> <li>[grid] adds <code>children</code> prop to <code>GridRows</code> + <code>GridColumns</code> to support animated rendering. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[shape] add <code><BarRounded /></code> shape. <a href="https://redirect.github.com/hshoff/vx/pull/774">#774</a></li> <li>[shape] Create new factory functions for <code>d3-shape</code> and export as part of <code>vx/shape</code> (<code>arc</code>, <code>area</code>, <code>line</code>, <code>pie</code>, <code>radialLine</code>), similar to <code>vx/scale</code> has factories for <code>d3-scale</code>. <a href="https://redirect.github.com/hshoff/vx/pull/776">#776</a></li> <li>[shape] add <code>SplitLinePath</code> component to <code>@vx/shape</code> that allows you to create a line path split into multiple smaller line paths that can be styled independently. <a href="https://redirect.github.com/hshoff/vx/pull/778">#778</a></li> <li>[axis] consistent and compatible typings across <code>vx/scale</code> and <code>vx/axis</code>. More fields passed to child render props of <code>Axis</code>. <a href="https://redirect.github.com/hshoff/vx/pull/773">#773</a></li> <li>[axis] <code>Axis</code> is refactored to accept a <code>ticksComponent</code> which allows us to animate them. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[axis] adds a third argument <code>values</code> to <code>tickFormat(value, index, values)</code> so that format logic can more easily leverage all ticks (because <code>numTicks</code> is approximate, lib consumers do not know how many tick values exist <em>a priori</em>). <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[marker] add new <a href="https://github.com/hshoff/vx/compare/harry-svg-marker?expand=1#diff-7a829322360dc21940b608c760087e29R32-R42"><code><Marker /></code></a> that matches actual SVG <a href="https://github.com/hshoff/vx/blob/v0.0.198/packages/vx-marker/src/markers/Marker.tsx#L72-L98"><code><marker></code></a>. <a href="https://redirect.github.com/hshoff/vx/pull/783">#783</a></li> <li>[marker] add <code><MarkerArrow /></code>, <code><MarkerCross /></code>, <code><MarkerX /></code>, <code><MarkerCircle /></code>, <code><MarkerLine /></code>. <a href="https://redirect.github.com/hshoff/vx/pull/783">#783</a></li> <li>[react-spring] adds a new package <code>@vx/react-spring</code> that includes <code>react-spring</code> as a <code>peerDep</code> and can be a home for things that depend on <code>react-spring</code>. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[react-spring] Adds an <code><AnimatedAxis /></code> and <code><AnimatedTicksRender /></code> in <code>@vx/react-spring</code>. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[react-spring] updates the <code>vx-demo/axis</code> demo to use <code><AnimatedAxis /></code>. <a href="https://redirect.github.com/hshoff/vx/pull/779">#779</a></li> <li>[react-spring] adds <code>AnimatedGridRows</code> + <code>AnimatedGridColumns</code>. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[react-spring] modularizes <code>AnimatedTicks/useAnimatedTicksConfig</code> to <code>spring-configs/useAnimatedLineTransitionConfig</code> so it can power both animated tick + grid lines. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> <li>[react-spring] adds <code>animationTrajectory=outside | inside | min | max</code> to <code>AnimatedAxis</code> and <code>AnimatedGridRows/Columns</code>. <a href="https://redirect.github.com/hshoff/vx/pull/787">#787</a></li> </ul> <h4>:bug: Bug Fix</h4> <ul> <li>[responsive] exclude <code>enableDebounceLeadingCall</code> prop being passed into <code>div</code>. <a href="https://redirect.github.com/hshoff/vx/pull/763">#763</a></li> <li>[responsive] fix prettier format. <a href="https://redirect.github.com/hshoff/vx/pull/764">#764</a></li> <li>[text] fix warning for NaN or invalid values are passed as x or y. <a href="https://redirect.github.com/hshoff/vx/pull/790">#790</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/airbnb/visx/commit/b7fd57c8dede777c4983203046a704f52a61e226"><code>b7fd57c</code></a> v0.0.199</li> <li><a href="https://github.com/airbnb/visx/commit/7a51a943d27efcff23201172394f67290dbdddc1"><code>7a51a94</code></a> Merge pull request <a href="https://redirect.github.com/hshoff/vx/issues/793">#793</a> from kristw/kristw--tests</li> <li><a href="https://github.com/airbnb/visx/commit/3afb33307e82c976a9cbc3df1911f581ebfe4774"><code>3afb333</code></a> test: more tests</li> <li><a href="https://github.com/airbnb/visx/commit/7f6acf065f78bd284a7e011cb4a33a770eff97b2"><code>7f6acf0</code></a> test: add test for threshold</li> <li><a href="https://github.com/airbnb/visx/commit/76548a0a088aabd8f8ff006808825982c2f569bc"><code>76548a0</code></a> test: add unit tests</li> <li><a href="https://github.com/airbnb/visx/commit/510a1c0175a901e58db33581e22acfdfe107566a"><code>510a1c0</code></a> Merge pull request <a href="https://redirect.github.com/hshoff/vx/issues/791">#791</a> from kristw/kristw--scale-ov</li> <li><a href="https://github.com/airbnb/visx/commit/ea2bdec50eff5bd54c31952ede8d156ee0360512"><code>ea2bdec</code></a> Merge pull request <a href="https://redirect.github.com/hshoff/vx/issues/790">#790</a> from kristw/kristw--text</li> <li><a href="https://github.com/airbnb/visx/commit/f20f81ede378fed5cac3202742ba33f5015d229c"><code>f20f81e</code></a> fix: address comments</li> <li><a href="https://github.com/airbnb/visx/commit/786909e440eabef60eae2bde456d1b18cfaec531"><code>786909e</code></a> feat: scale overload</li> <li><a href="https://github.com/airbnb/visx/commit/c7225f07492831d21a7a41420408b1706fa536c9"><code>c7225f0</code></a> fix: text rendering with invalid x or y</li> <li>Additional commits viewable in <a href="https://github.com/hshoff/vx/compare/v0.0.198...v0.0.199">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~hshoff">hshoff</a>, a new releaser for <code>@vx/legend</code> since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org