All Versions
217
Latest Version
Avg Release Cycle
16 days
Latest Release
681 days ago

Changelog History
Page 8

  • v35.0.3 Changes

    July 07, 2020
    • โšก๏ธ #1640 - Update package readmes with new docs links
  • v35.0.2 Changes

    June 30, 2020
    • #1631 - Correct types for TextSize utility. Thanks @jlismore!
  • v35.0.1 Changes

    June 27, 2020
    • #1628 - Correct typescript error
  • v35.0.0 Changes

    June 27, 2020

    Label and Theme Improvements!

    ๐Ÿš€ This release introduces new label features and makes improvements to themes. This release includes breaking style changes. Please double check your label and tooltip styles when upgrading. Polar axes and pie charts may be particularly impacted.

    ๐Ÿ†• New Features!

    • ๐Ÿ’… VictoryLabel now supports label backgrounds, which are rendered as rect elements behind your labels. Backgrounds are styled via the new backgroundStyle prop on VictoryLabel. This prop may be given as a style object, or an array of objects for styling multi-line labels. Background elements are sized for their corresponding text elements, but padding may also be added with the backgroundPadding prop, which accepts a single number, an object with values for "top", "bottom", "left" and "right", or an array of either of these for adding background padding to multi-line labels.

    • VictoryTooltip has a new flyoutPadding prop that may be used to add padding between the edge of the flyout and the label within it. The flyoutPadding prop may be given as a single number of as an object with values for "top", "bottom", "left" and "right". This is a breaking change, as style.padding no longer adds padding between the flyout and its label. Both of Victory's built-in themes have been altered so that tooltips get flyoutPadding={5} by default.

    • ๐Ÿ‘ VictoryPie now supports the labelPlacement prop used in polar charts. Possible values are "vertical" "parallel" and "perpendicular". When not given, vertical labels are rendered as before.

    • ๐Ÿ”€ Themes now support polarAxis, polarDependentAxis, and polarIndependentAxis namespaces that are merges with the less specific axis, dependentAxis, and independentAxis themes as appropriate.

    ๐Ÿ‘Œ Improvements

    • ๐Ÿ”„ Changes Victory's default branch from master to main ๐Ÿ–ค

    • Textsize approximations have changed, and are much more accurate in most cases. This may be a breaking change for layouts that depended on approximated text size

    • ๐Ÿ’… Tooltip themes are now correctly merged with label styles and props.

    • VictoryPolarAxis elements are now rendered relative to the origin independently, rather than being translated as a group. This allows for correct positioning of elements within VictoryPortal This may be a breaking change for custom components in VictoryPolarAxis

    • Corrects the labelPosition prop on VictoryPie (previously startAngle and endAngle were inverted) This is a breaking change

    • ๐Ÿ’… Alters material and greyscale themes. The following theme updates may cause breaking style changes

      • Uses more widely available default fonts for labels
      • Reduces default label padding for boxplot and candlestick
      • Adds polarDependentAxis settings to the material theme
      • Zero padding on from tooltip styles override label styles on all other theme namespaces. This means that tooltips pointers will now all start exactly at the data element they correspond to by default. To alter this behavior, either 1) provide a different theme, 2) alter padding in via label styles like so: <VictoryBar style={{ labels: { padding: 5 } }} labelComponent={<VictoryTooltip />} /> or <VictoryBar labelComponent={ <VictoryTooltip style={{ padding: 5 }} /> } />

    Associated PRs

    • #1583 - Initial label background work
    • #1625 - Label and theme improvements
    • ๐Ÿ‘ท #1627 - Switch CI to main
  • v34.3.12 Changes

    June 22, 2020

    -#1620 - Allow granular voronoiPadding. Thanks @dlabrecq!

    -#1607 - Add missing containerRef type. Thanks @NgoKnows!

  • v34.3.11 Changes

    June 09, 2020
    • ๐Ÿ›  #1605 - Fixes padding for axes with non-standard orientations. Thanks @glvnsky!
  • v34.3.10 Changes

    June 07, 2020
    • ๐Ÿ›  #1604 - Fixes offsets for groups of stacked bars. Thanks @cneltyn!

    • ๐Ÿ›  #1599 - Fixes a bug causing incorrect cursor behavior onMouseLeave. Thanks @NgoKnows!

  • v34.3.9 Changes

    May 30, 2020
    • ๐ŸŽ #1592 - Cache sharedEvents to improve performance in evented containers. Thanks @NgoKnows!
  • v34.3.8 Changes

    May 26, 2020
    • #1588 - Improve perfomance by reducing string map calculations. Thanks @NgoKnows!
  • v34.3.7 Changes

    May 22, 2020
    • #1576 - Add more types for primitive components. Thanks @maddles