diff --git a/packages/polaris-viz/src/components/LineChartPredictive/index.ts b/packages/polaris-viz/src/components/LineChartPredictive/index.ts new file mode 100644 index 000000000..7a2707f5f --- /dev/null +++ b/packages/polaris-viz/src/components/LineChartPredictive/index.ts @@ -0,0 +1,2 @@ +export {LineChartPredictive} from './LineChartPredictive'; +export type {LineChartPredictiveProps} from './types'; diff --git a/packages/polaris-viz/src/components/index.ts b/packages/polaris-viz/src/components/index.ts index 8529e4990..ceff1cb01 100644 --- a/packages/polaris-viz/src/components/index.ts +++ b/packages/polaris-viz/src/components/index.ts @@ -49,3 +49,5 @@ export type {ComboChartProps} from './ComboChart'; export {XAxis} from './XAxis'; export {TrendIndicator, estimateTrendIndicatorWidth} from './TrendIndicator'; export {LineChartRelational} from './LineChartRelational'; +export {LineChartPredictive} from './LineChartPredictive'; +export type {LineChartPredictiveProps} from './LineChartPredictive'; diff --git a/packages/polaris-viz/src/index.ts b/packages/polaris-viz/src/index.ts index 6d0e4f929..4d61a1be0 100644 --- a/packages/polaris-viz/src/index.ts +++ b/packages/polaris-viz/src/index.ts @@ -17,6 +17,7 @@ export { DonutChart, TrendIndicator, LineChartRelational, + LineChartPredictive, } from './components'; export type { @@ -28,6 +29,7 @@ export type { SimpleBarChartProps, TooltipContentProps, ComboChartProps, + LineChartPredictiveProps, } from './components'; export { diff --git a/tests/consistent-standard-props.test.ts b/tests/consistent-standard-props.test.ts index 77e577fa9..02c0457be 100644 --- a/tests/consistent-standard-props.test.ts +++ b/tests/consistent-standard-props.test.ts @@ -38,6 +38,7 @@ const ignoredFiles = [ 'LinePreview', 'SimpleNormalizedChart', 'LineChartRelational', + 'LineChartPredictive', ]; const componentsPerPackage = readFiles().map(({indexSrc, packageDir}) => {