diff --git a/packages/react-charts/package.json b/packages/react-charts/package.json index 7f36948b50a..b38fd22a01c 100644 --- a/packages/react-charts/package.json +++ b/packages/react-charts/package.json @@ -34,9 +34,8 @@ "@patternfly/react-tokens": "^4.0.2", "hoist-non-react-statics": "^3.3.0", "lodash": "^4.17.15", - "victory": "^33.0.5", - "victory-core": "^33.0.1", - "victory-legend": "^33.0.1" + "victory": "^34.1.3", + "victory-core": "^34.1.3" }, "peerDependencies": { "prop-types": "^15.6.1", @@ -62,7 +61,7 @@ "@babel/preset-env": "^7.0.0", "@babel/preset-react": "^7.0.0", "@types/lodash": "^4.14.138", - "@types/victory": "^31.0.22", + "@types/victory": "^33.1.4", "babel-plugin-transform-es2015-modules-umd": "^6.24.1", "babel-plugin-typescript-to-proptypes": "^0.17.1", "css": "^2.2.3", diff --git a/packages/react-charts/src/components/Chart/Chart.tsx b/packages/react-charts/src/components/Chart/Chart.tsx index 16168779397..a03aff9c69a 100644 --- a/packages/react-charts/src/components/Chart/Chart.tsx +++ b/packages/react-charts/src/components/Chart/Chart.tsx @@ -446,7 +446,10 @@ export const Chart: React.FunctionComponent = ({ }); }; + // Note: containerComponent is required for theme, but @types/victory is missing a prop type return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore = ({ theme, ...containerComponent.props }); - return ; + + // Note: containerComponent is required for theme, but @types/victory is missing a prop type + return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore + + ); }; // Note: VictoryArea.role must be hoisted diff --git a/packages/react-charts/src/components/ChartAxis/ChartAxis.tsx b/packages/react-charts/src/components/ChartAxis/ChartAxis.tsx index b69312c7853..72135bbd159 100644 --- a/packages/react-charts/src/components/ChartAxis/ChartAxis.tsx +++ b/packages/react-charts/src/components/ChartAxis/ChartAxis.tsx @@ -420,7 +420,11 @@ export const ChartAxis: React.FunctionComponent = ({ theme, ...containerComponent.props }); + + // Note: containerComponent is required for theme, but @types/victory is missing a prop type return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore = ({ theme, ...containerComponent.props }); - return ; + + // Note: containerComponent is required for theme, but @types/victory is missing a prop type + return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore + + ); }; // Note: VictoryBar.getDomain & VictoryBar.role must be hoisted diff --git a/packages/react-charts/src/components/ChartBullet/ChartBulletComparativeMeasure.tsx b/packages/react-charts/src/components/ChartBullet/ChartBulletComparativeMeasure.tsx index 0a5c508eb35..e8c22024fdd 100644 --- a/packages/react-charts/src/components/ChartBullet/ChartBulletComparativeMeasure.tsx +++ b/packages/react-charts/src/components/ChartBullet/ChartBulletComparativeMeasure.tsx @@ -198,14 +198,14 @@ export const ChartBulletComparativeMeasure: React.FunctionComponent { if (!horizontal) { return 0; } - const result = typeof barWidth === 'function' ? barWidth(data, false) : barWidth; + const result = typeof barWidth === 'function' ? barWidth(data as any) : barWidth; return -(result / 2); }, orientation: 'top', diff --git a/packages/react-charts/src/components/ChartBullet/ChartBulletPrimarySegmentedMeasure.tsx b/packages/react-charts/src/components/ChartBullet/ChartBulletPrimarySegmentedMeasure.tsx index d4d782ff64d..428f9b76b7e 100644 --- a/packages/react-charts/src/components/ChartBullet/ChartBulletPrimarySegmentedMeasure.tsx +++ b/packages/react-charts/src/components/ChartBullet/ChartBulletPrimarySegmentedMeasure.tsx @@ -224,14 +224,14 @@ export const ChartBulletPrimarySegmentedMeasure: React.FunctionComponent { if (!horizontal) { return 0; } - const result = typeof barWidth === 'function' ? barWidth(data, false) : barWidth; + const result = typeof barWidth === 'function' ? barWidth(data as any) : barWidth; return -(result / 2); }, orientation: 'top', diff --git a/packages/react-charts/src/components/ChartBullet/ChartBulletQualitativeRange.tsx b/packages/react-charts/src/components/ChartBullet/ChartBulletQualitativeRange.tsx index 20305934961..382153d715f 100644 --- a/packages/react-charts/src/components/ChartBullet/ChartBulletQualitativeRange.tsx +++ b/packages/react-charts/src/components/ChartBullet/ChartBulletQualitativeRange.tsx @@ -235,14 +235,14 @@ export const ChartBulletQualitativeRange: React.FunctionComponent { if (!horizontal) { return 0; } - const result = typeof barWidth === 'function' ? barWidth(data, false) : barWidth; + const result = typeof barWidth === 'function' ? barWidth(data as any) : barWidth; return -(result / 2); }, orientation: 'top', diff --git a/packages/react-charts/src/components/ChartGroup/ChartGroup.tsx b/packages/react-charts/src/components/ChartGroup/ChartGroup.tsx index 2bffe70a295..9335f7753ec 100644 --- a/packages/react-charts/src/components/ChartGroup/ChartGroup.tsx +++ b/packages/react-charts/src/components/ChartGroup/ChartGroup.tsx @@ -436,7 +436,11 @@ export const ChartGroup: React.FunctionComponent = ({ ...containerComponent.props, className: getClassName({ className: containerComponent.props.className }) // Override VictoryContainer class name }); + + // Note: containerComponent is required for theme, but @types/victory is missing a prop type return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore {children} diff --git a/packages/react-charts/src/components/ChartLegend/ChartLegend.tsx b/packages/react-charts/src/components/ChartLegend/ChartLegend.tsx index 71ceeeb05ec..a4c4c8786eb 100644 --- a/packages/react-charts/src/components/ChartLegend/ChartLegend.tsx +++ b/packages/react-charts/src/components/ChartLegend/ChartLegend.tsx @@ -303,7 +303,13 @@ export const ChartLegend: React.FunctionComponent = ({ theme, ...containerComponent.props }); - return ; + + // Note: containerComponent is required for theme, but @types/victory is missing a prop type + return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore + + ); }; // Note: VictoryLegend.role must be hoisted, but getBaseProps causes error with ChartVoronoiContainer diff --git a/packages/react-charts/src/components/ChartLine/ChartLine.tsx b/packages/react-charts/src/components/ChartLine/ChartLine.tsx index a3f4f45d2b7..ca7cc9ad0d6 100644 --- a/packages/react-charts/src/components/ChartLine/ChartLine.tsx +++ b/packages/react-charts/src/components/ChartLine/ChartLine.tsx @@ -399,7 +399,12 @@ export const ChartLine: React.FunctionComponent = ({ theme, ...containerComponent.props }); - return ; + // Note: containerComponent is required for theme, but @types/victory is missing a prop type + return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore + + ); }; // Note: VictoryLine.role must be hoisted diff --git a/packages/react-charts/src/components/ChartPie/ChartPie.tsx b/packages/react-charts/src/components/ChartPie/ChartPie.tsx index be64a267704..03d4b103250 100644 --- a/packages/react-charts/src/components/ChartPie/ChartPie.tsx +++ b/packages/react-charts/src/components/ChartPie/ChartPie.tsx @@ -466,7 +466,7 @@ export const ChartPie: React.FunctionComponent = ({ standalone={false} theme={theme} width={width} - {...rest} + {...(rest as any)} // @types/victory has a type mismatch with colorScale /> ); diff --git a/packages/react-charts/src/components/ChartScatter/ChartScatter.tsx b/packages/react-charts/src/components/ChartScatter/ChartScatter.tsx index e1dc69bea44..f370866cb02 100644 --- a/packages/react-charts/src/components/ChartScatter/ChartScatter.tsx +++ b/packages/react-charts/src/components/ChartScatter/ChartScatter.tsx @@ -417,7 +417,13 @@ export const ChartScatter: React.FunctionComponent = ({ theme, ...containerComponent.props }); - return ; + + // Note: containerComponent is required for theme, but @types/victory is missing a prop type + return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore + + ); }; // Note: VictoryLine.role must be hoisted diff --git a/packages/react-charts/src/components/ChartStack/ChartStack.tsx b/packages/react-charts/src/components/ChartStack/ChartStack.tsx index 17fdd0a00dd..8b8df844aba 100644 --- a/packages/react-charts/src/components/ChartStack/ChartStack.tsx +++ b/packages/react-charts/src/components/ChartStack/ChartStack.tsx @@ -364,7 +364,11 @@ export const ChartStack: React.FunctionComponent = ({ ...containerComponent.props, className: getClassName({ className: containerComponent.props.className }) // Override VictoryContainer class name }); + + // Note: containerComponent is required for theme, but @types/victory is missing a prop type return ( + // eslint-disable-next-line @typescript-eslint/ban-ts-ignore + // @ts-ignore {children} diff --git a/yarn.lock b/yarn.lock index bd34df3acd8..62045055b16 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3902,9 +3902,10 @@ "@types/unist" "*" "@types/vfile-message" "*" -"@types/victory@^31.0.22": - version "31.0.22" - resolved "https://registry.yarnpkg.com/@types/victory/-/victory-31.0.22.tgz#b1c0f87261af7bc264207e3864acfe75d0abf605" +"@types/victory@^33.1.4": + version "33.1.4" + resolved "https://registry.yarnpkg.com/@types/victory/-/victory-33.1.4.tgz#b843b7cee8ed1ab846d4dd03eb048a178e197b4c" + integrity sha512-y0uROW9/p2ltaZW+VcH1llrtu6Uwp1lSJ8zZbVjcXJJgddU3Is2aUvU6PxFQhbjBMtjaqNdw1tH/44c5bn/Zsw== dependencies: "@types/react" "*" @@ -8275,9 +8276,10 @@ delaunator@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-4.0.1.tgz#3d779687f57919a7a418f8ab947d3bddb6846957" -delaunay-find@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/delaunay-find/-/delaunay-find-0.0.4.tgz#144c3da64e5a4b7b841bc709cfb899d8437324ac" +delaunay-find@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/delaunay-find/-/delaunay-find-0.0.5.tgz#5fb37e6509da934881b4b16c08898ac89862c097" + integrity sha512-7yAJ/wmKWj3SgqjtkGqT/RCwI0HWAo5YnHMoF5nYXD8cdci+YSo23iPmgrZUNOpDxRWN91PqxUvMMr2lKpjr+w== dependencies: delaunator "^4.0.0" @@ -21973,80 +21975,91 @@ vfile@^4.0.0: unist-util-stringify-position "^2.0.0" vfile-message "^2.0.0" -victory-area@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-area/-/victory-area-33.1.0.tgz#4deb116bf0370b74607cc8954be223ac51005cb1" +victory-area@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-area/-/victory-area-34.1.3.tgz#a49f874b508886ac28def7c653a316161e025cc2" + integrity sha512-okxLiazZqA0S8on9g9VH319I7kl0jvYin7N8F+943Nh+wxo9mLMQ1KZC63M1wBMwuAn6pbisGDIFW+1Z48669A== dependencies: d3-shape "^1.2.0" lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-axis@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-axis/-/victory-axis-33.1.0.tgz#2b97d434599f6e9eb39a310e36be417b9a735f21" +victory-axis@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-axis/-/victory-axis-34.1.3.tgz#f873e1854d3b925b50132ce2de19427327a392f6" + integrity sha512-SYb33+DPRs9A/qWzfoWwWaa7zYpiC3BSn6XPyFUpcDXtKmaoGUVvBFZ4XM+KUp4xattRpNaT1ZYuEFzTSMGafQ== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-bar@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-bar/-/victory-bar-33.1.0.tgz#b1331baa809ea8f7ccba528dde9e4c6b5433efc3" +victory-bar@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-bar/-/victory-bar-34.1.3.tgz#dc9219a7381b4ba4ce4382dd69202e69277da9e4" + integrity sha512-E7uJ7B6SbIhVfm4mRiT/dSBLW6XLXEswEkARdKlgmUN+ope1FRn7/Nw9xV4DIV7qv0leF9v/tOzTtqd9HpkScQ== dependencies: d3-shape "^1.2.0" lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-box-plot@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-box-plot/-/victory-box-plot-33.1.0.tgz#b27320866a53edde71191c5aee5edd15cc058d2c" +victory-box-plot@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-box-plot/-/victory-box-plot-34.1.3.tgz#42d7ac28267711e79d4d9c4750fb8ccd63739e76" + integrity sha512-Vu9teOX6fq/2M5dGgpBQ6T8L9CTNjg8FovtBdC1IXM5Vb1e3QGWch0YdKznel7iz5wXeGHETeFVkM8rcdZVlow== dependencies: d3-array "^1.2.0" lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-brush-container@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-brush-container/-/victory-brush-container-33.1.0.tgz#245e6cabb7ba6a44a9d1feb017e7539f08b25acf" +victory-brush-container@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-brush-container/-/victory-brush-container-34.1.3.tgz#81c714fb0afdcc46a49ef77268621eac0764d643" + integrity sha512-Aetee49fckVy0591VV70V2WJ+WQMUShyavI9JzcqDFjp0PiPS2vuR7mW3jbxtLTvUytjX3vHhYeQrZ04IW0o3Q== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + react-fast-compare "^2.0.0" + victory-core "^34.1.3" -victory-brush-line@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-brush-line/-/victory-brush-line-33.1.0.tgz#a3d9fb2b49f31abb0a4bec4e0b9b2a1fedf20d37" +victory-brush-line@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-brush-line/-/victory-brush-line-34.1.3.tgz#cd8790b34175a18f1693d92a5f6841994cd4c534" + integrity sha512-2PnqftcrTei6vXf108fNfib1uzteE+96JpLdpTjPf/O2oJRIpLq465F1iItrKdOrHiDvDJPKg4J2q2ZCEZIoWw== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + react-fast-compare "^2.0.0" + victory-core "^34.1.3" -victory-candlestick@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-candlestick/-/victory-candlestick-33.1.0.tgz#275b8144dda32e9b3548d5613ebc29bce659e859" +victory-candlestick@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-candlestick/-/victory-candlestick-34.1.3.tgz#ff9a9d1f730cc2f391d1ae5e7f24128776da2aed" + integrity sha512-aBN6oSvzNvMvvupVIX1nkKyvVgtQVXigY2FlcZ3wH6ejzeQjtey8hl9XaPyBXE+5K0nLGCJqropEQJnwWW9ciA== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-chart@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-chart/-/victory-chart-33.1.0.tgz#1c34ac9a3da15eed0f955b1288339bac3570b7b8" +victory-chart@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-chart/-/victory-chart-34.1.3.tgz#1e57e7e7920487f03b36c56d37f2eb44841f5d3a" + integrity sha512-RtOAggAege2OI8zmC5dVjWgAquu90MhbplaT+7oF/u+jTZvptInRVnj5IdBV7KrCAKQTomFK5VlE01BrihZjHg== dependencies: lodash "^4.17.15" prop-types "^15.5.8" react-fast-compare "^2.0.0" - victory-axis "^33.1.0" - victory-core "^33.1.0" - victory-polar-axis "^33.1.0" - victory-shared-events "^33.1.0" + victory-axis "^34.1.3" + victory-core "^34.1.3" + victory-polar-axis "^34.1.3" + victory-shared-events "^34.1.3" -victory-core@^33.0.1, victory-core@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-core/-/victory-core-33.1.0.tgz#c8aaa1b5823e55b7cca055d9590b820a61e7832b" +victory-core@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-core/-/victory-core-34.1.3.tgz#c30bad3ce38a490a7342c3b4a71d410327ac10d0" + integrity sha512-LvJ18WYk4C1tOeJ4ev2nT+Xjsw6MX0Ib1l473wDBPFznksxN3xQndiUC3xn3HAaeP6YVsiUGo6MeffwitENwOA== dependencies: d3-ease "^1.0.0" d3-interpolate "^1.1.1" @@ -22057,175 +22070,195 @@ victory-core@^33.0.1, victory-core@^33.1.0: prop-types "^15.5.8" react-fast-compare "^2.0.0" -victory-create-container@^33.1.1: - version "33.1.1" - resolved "https://registry.yarnpkg.com/victory-create-container/-/victory-create-container-33.1.1.tgz#49b8f3d9e55ed380b6d88c9ddb902bcd1749e099" +victory-create-container@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-create-container/-/victory-create-container-34.1.3.tgz#8e3a5acc382d6dc5e1a5dae3866ba2afbdf5e7ee" + integrity sha512-JOt3nsDGEUdbfbJx1Ol+WGWj/CaqvUqHuXNNEPzBoXnaabodICCMw0pL0VLsDDd5wVnEf+SR5FfJ8QDDP328ew== dependencies: lodash "^4.17.15" - victory-brush-container "^33.1.0" - victory-core "^33.1.0" - victory-cursor-container "^33.1.0" - victory-selection-container "^33.1.0" - victory-voronoi-container "^33.1.1" - victory-zoom-container "^33.1.0" - -victory-cursor-container@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-cursor-container/-/victory-cursor-container-33.1.0.tgz#6614baece4683a6e7db9e28da2c67c238db5f1e8" + victory-brush-container "^34.1.3" + victory-core "^34.1.3" + victory-cursor-container "^34.1.3" + victory-selection-container "^34.1.3" + victory-voronoi-container "^34.1.3" + victory-zoom-container "^34.1.3" + +victory-cursor-container@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-cursor-container/-/victory-cursor-container-34.1.3.tgz#514dc5e0c145a8045c3dde899dc6a595f40d5ceb" + integrity sha512-E360qPHaay5pfv+/0UbCUvXX9x0gQVbz+87QDC/GKG2ETgr9uLDDRumO5mx/KnuDgQE+phF1qcPeeflLSatndw== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-errorbar@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-errorbar/-/victory-errorbar-33.1.0.tgz#c3925feed101c40dd51b9e327ea0f7b95b7e8a38" +victory-errorbar@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-errorbar/-/victory-errorbar-34.1.3.tgz#64eceb4b0202b9451b752556ee237e4c601d1f07" + integrity sha512-n+/LJadMitD4To1Ud3A9nrxwDi470f5LUW5a9dYL+Gu0Hcip+d4VzyIvBM9pIJ0uKJRffMifWPN2UNl1mgBeGw== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-group@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-group/-/victory-group-33.1.0.tgz#9b8400b34e95beeed9e867e0c08a4784727737c5" +victory-group@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-group/-/victory-group-34.1.3.tgz#d5974dca784d91a5ef7d4cacec6b3418e2b72287" + integrity sha512-FkjbtU3yr4U0FGxogaoCKohqJrMp6HZpAZJZaFzlgQiM6TdhKKf08TbOcaAvzXfpl8jEldBRvWkFat7OWTO6kA== dependencies: lodash "^4.17.15" prop-types "^15.5.8" react-fast-compare "^2.0.0" - victory-core "^33.1.0" + victory-core "^34.1.3" + victory-shared-events "^34.1.3" -victory-legend@^33.0.1, victory-legend@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-legend/-/victory-legend-33.1.0.tgz#2214cc550f5eeed70dff4b7ba92eb8e9676f6fce" +victory-legend@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-legend/-/victory-legend-34.1.3.tgz#456d1d95bdcc78832c0ca2612fd3a7a379079926" + integrity sha512-vVgkkd36znQ86p9UMq3ZFNyTZADQIfX3xKCfqiaoWQIgSW7yuqbAzKRyCTWrDGFGqw1O1008wy3oeVDojavEZA== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-line@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-line/-/victory-line-33.1.0.tgz#c4f3026d944503f2ad598ec3da5bf8001d3a3155" +victory-line@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-line/-/victory-line-34.1.3.tgz#1e056e63099599c568a1aaf72eb51e062e4d7f25" + integrity sha512-vlEAs29rRcOSQosir9rcgXu9NoZv7vL/dV9ZODK0hF0OGP8Oo4h7mTagGz/yCz4jwfI9ZjhcizE2SgiQBxU3Gg== dependencies: d3-shape "^1.2.0" lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-pie@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-pie/-/victory-pie-33.1.0.tgz#1ccf6c7448c903378f731beada952d53d84a0a13" +victory-pie@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-pie/-/victory-pie-34.1.3.tgz#c36100c6f534abd1ed8755ceab7d44a150605f5d" + integrity sha512-4D6idv+irOlu5spAqCKzg3qePbALvEudOH+dH/lhPly/FRz/jKfwlccHec7PQ5D0EEtdFPtO+zjw7XyESAdqkQ== dependencies: d3-shape "^1.0.0" lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-polar-axis@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-polar-axis/-/victory-polar-axis-33.1.0.tgz#37615ddab0d05cb0f22d8105e6fe27b8f64a3644" +victory-polar-axis@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-polar-axis/-/victory-polar-axis-34.1.3.tgz#a63e263740f60e48a5202c5f76e655f4a346d1a8" + integrity sha512-G4WCvkSi5s7LgQvwUEiFNpEmvzDhQkDzxmVnamOZfYXNk7WDRnwTJoOoQhNyqMP6GcCBNfMXtVt8nCEE2jqSlA== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-scatter@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-scatter/-/victory-scatter-33.1.0.tgz#217100e6e5c47963970b988cbc40460f2c45bd61" +victory-scatter@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-scatter/-/victory-scatter-34.1.3.tgz#a5050d714ecf56d8b4c275b72108c2f122aa9a11" + integrity sha512-cLVbkNYwpMo/xAxMtISnyap6w+vTTjPg9kqp2iiZc4xpmRFVRnnJyHemmnJ4lxOaOW5glaBKTu9R00Mw4ossow== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-selection-container@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-selection-container/-/victory-selection-container-33.1.0.tgz#340526ef4c4bce1c57b11bbcea06969f34bc9e67" +victory-selection-container@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-selection-container/-/victory-selection-container-34.1.3.tgz#4b888e02f539518e458364bd1829ca34b4d21940" + integrity sha512-cwRqzKbD2LdVgpHtlOt7ywnN0lXcbZvhez6VGYTw185jkOos1cwo00rYXpuLlza16gcFcaaCesLEHt+ZRuJ9nQ== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-shared-events@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-shared-events/-/victory-shared-events-33.1.0.tgz#84ea8f5f371587f750d7e1e9858944961aff4e29" +victory-shared-events@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-shared-events/-/victory-shared-events-34.1.3.tgz#7380c51ec5b065eba41271530e13675da1446f63" + integrity sha512-GvABIT6frCdpqSjNg7lMgmVItD2fRviwFPUi4/2QQPysfu9GFMMFL3NenNYh4ezeowGIAdEQgiGh4Q3NCXfGIg== dependencies: lodash "^4.17.15" prop-types "^15.5.8" react-fast-compare "^2.0.0" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-stack@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-stack/-/victory-stack-33.1.0.tgz#933cfa7f46e6aa7280c2baeaa746b61692d0ee0a" +victory-stack@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-stack/-/victory-stack-34.1.3.tgz#03038b3bd9c6ef44c4e786d6aa8bcdd650a16e57" + integrity sha512-pU5bAmu5dwJZjZpbhUcnKzXyO9RNn5tDXj8Cu3+SfBsiXoxn09OuFhHDl9x0uBkyNhnubKuv5I2ZQviceqq95Q== dependencies: lodash "^4.17.15" prop-types "^15.5.8" react-fast-compare "^2.0.0" - victory-core "^33.1.0" + victory-core "^34.1.3" + victory-shared-events "^34.1.3" -victory-tooltip@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-tooltip/-/victory-tooltip-33.1.0.tgz#c26c4c5f5218e2930d706c160395828f037fb01f" +victory-tooltip@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-tooltip/-/victory-tooltip-34.1.3.tgz#9d67655062331aca2b46d182b0af1d3105c17673" + integrity sha512-Hk8YNiXnpz+LYBlmS19Rn+W1hbb++atYAAx6nWeMHHOND3hsvKDnejeImXqaMQvrP8uRcoq2J9eFGwQs0ifvYw== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-voronoi-container@^33.1.1: - version "33.1.1" - resolved "https://registry.yarnpkg.com/victory-voronoi-container/-/victory-voronoi-container-33.1.1.tgz#3b66953e00109b7eb0976425c7a9124335b3c072" +victory-voronoi-container@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-voronoi-container/-/victory-voronoi-container-34.1.3.tgz#951de0f4caf8b5e54589cd965659ecd7ec4868c0" + integrity sha512-Em9B36MUYBxoTHIehAznp5sfgEetqPGUjm5kIuXBl81hnp/gbASYOotszcbwMYPgSwouvmRNPphodcRMQxj23A== dependencies: - delaunay-find "0.0.4" + delaunay-find "0.0.5" lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" - victory-tooltip "^33.1.0" + react-fast-compare "^2.0.0" + victory-core "^34.1.3" + victory-tooltip "^34.1.3" -victory-voronoi@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-voronoi/-/victory-voronoi-33.1.0.tgz#0496da977c2bdaa2bb85394694e8f7f8dd5447aa" +victory-voronoi@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-voronoi/-/victory-voronoi-34.1.3.tgz#7d708550101fa2beff9e62448fcd6428bed06df4" + integrity sha512-Hbj9u4DLTUYqdRoPBeivqLX2YlCJhKKpaidftm3XxAuQp80c6FOaN16STcQv1Ffb3PDiylm2GRXu5lUa9BQvMw== dependencies: d3-voronoi "^1.1.2" lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" + victory-core "^34.1.3" -victory-zoom-container@^33.1.0: - version "33.1.0" - resolved "https://registry.yarnpkg.com/victory-zoom-container/-/victory-zoom-container-33.1.0.tgz#eeb34eb398a5912f5a094cd1b0bee2603aaf35e4" +victory-zoom-container@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory-zoom-container/-/victory-zoom-container-34.1.3.tgz#0a3776fd8cdc6175e732e29a4d740f855833112f" + integrity sha512-htJydoxGU+f/hvj0F6xp2tcd1FhWWxSKrjkqa0nM4YK68r7c+1fSpmI940AaUhGAET3j8VEICTvS2JixU6oGPw== dependencies: lodash "^4.17.15" prop-types "^15.5.8" - victory-core "^33.1.0" - -victory@^33.0.5: - version "33.1.1" - resolved "https://registry.yarnpkg.com/victory/-/victory-33.1.1.tgz#c83f0438b04f48b555936d875518c6256d516357" - dependencies: - victory-area "^33.1.0" - victory-axis "^33.1.0" - victory-bar "^33.1.0" - victory-box-plot "^33.1.0" - victory-brush-container "^33.1.0" - victory-brush-line "^33.1.0" - victory-candlestick "^33.1.0" - victory-chart "^33.1.0" - victory-core "^33.1.0" - victory-create-container "^33.1.1" - victory-cursor-container "^33.1.0" - victory-errorbar "^33.1.0" - victory-group "^33.1.0" - victory-legend "^33.1.0" - victory-line "^33.1.0" - victory-pie "^33.1.0" - victory-polar-axis "^33.1.0" - victory-scatter "^33.1.0" - victory-selection-container "^33.1.0" - victory-shared-events "^33.1.0" - victory-stack "^33.1.0" - victory-tooltip "^33.1.0" - victory-voronoi "^33.1.0" - victory-voronoi-container "^33.1.1" - victory-zoom-container "^33.1.0" + victory-core "^34.1.3" + +victory@^34.1.3: + version "34.1.3" + resolved "https://registry.yarnpkg.com/victory/-/victory-34.1.3.tgz#dbffd02ff4ba68976e554249d7da4f40ce0ff11d" + integrity sha512-cR/l05bPD6KBx0lZS3SemXKxftkIXXVZSRLaIuZc2HDVanNaf+N0c3e2N9f9z+NPM+2HTVrg2wXT94NGSnDSZg== + dependencies: + victory-area "^34.1.3" + victory-axis "^34.1.3" + victory-bar "^34.1.3" + victory-box-plot "^34.1.3" + victory-brush-container "^34.1.3" + victory-brush-line "^34.1.3" + victory-candlestick "^34.1.3" + victory-chart "^34.1.3" + victory-core "^34.1.3" + victory-create-container "^34.1.3" + victory-cursor-container "^34.1.3" + victory-errorbar "^34.1.3" + victory-group "^34.1.3" + victory-legend "^34.1.3" + victory-line "^34.1.3" + victory-pie "^34.1.3" + victory-polar-axis "^34.1.3" + victory-scatter "^34.1.3" + victory-selection-container "^34.1.3" + victory-shared-events "^34.1.3" + victory-stack "^34.1.3" + victory-tooltip "^34.1.3" + victory-voronoi "^34.1.3" + victory-voronoi-container "^34.1.3" + victory-zoom-container "^34.1.3" vinyl-file@^2.0.0: version "2.0.0"