@shopify/polaris-viz
Advanced tools
Comparing version 0.20.2 to 0.20.3
# Changelog | ||
## Unreleased | ||
## [0.20.3] - 2021-09-14 | ||
- Fixed the direction of the gradient on the horizontal `<NormalizedStackedBarChart />` legend | ||
- Remove change that made data required in `<Legend />` props | ||
@@ -5,0 +7,0 @@ ## [0.20.2] - 2021-09-13 |
{ | ||
"name": "@shopify/polaris-viz", | ||
"description": "Shopify’s viz component library", | ||
"version": "0.20.2", | ||
"version": "0.20.3", | ||
"private": false, | ||
@@ -6,0 +6,0 @@ "license": "SEE LICENSE IN LICENSE.md", |
/// <reference types="react" /> | ||
import type { DataSeries, Data, NullableData, LineStyle, Color } from '../../types'; | ||
declare type LegendData = DataSeries<Data | NullableData, Color>; | ||
interface LegendSeries extends LegendData { | ||
interface LegendSeries extends Omit<LegendData, 'data'> { | ||
lineStyle?: LineStyle; | ||
data?: (Data | NullableData)[]; | ||
} | ||
@@ -7,0 +8,0 @@ export interface Props { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1055241
16030