From 2395fce8ee5336d85b3bce583196c97f47fbcd36 Mon Sep 17 00:00:00 2001 From: Margarita Morozova Date: Fri, 3 May 2024 12:19:55 -0700 Subject: [PATCH] add another import for fillMissingDataPoints --- packages/polaris-viz/CHANGELOG.md | 6 +++++- packages/polaris-viz/src/index.ts | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/packages/polaris-viz/CHANGELOG.md b/packages/polaris-viz/CHANGELOG.md index d991f908c..fd41ce6e6 100644 --- a/packages/polaris-viz/CHANGELOG.md +++ b/packages/polaris-viz/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). - +## Unreleased + +### Added + +- Re-export `fillMissingDataPoints`. ## [13.1.1] - 2024-05-03 diff --git a/packages/polaris-viz/src/index.ts b/packages/polaris-viz/src/index.ts index eb7302e9b..be67ec240 100644 --- a/packages/polaris-viz/src/index.ts +++ b/packages/polaris-viz/src/index.ts @@ -87,7 +87,11 @@ export type { ChartState, } from '@shopify/polaris-viz-core'; -export {renderLinearTooltipContent, setSingleSeriesActive} from './utilities'; +export { + renderLinearTooltipContent, + setSingleSeriesActive, + fillMissingDataPoints, +} from './utilities'; export {getTooltipContentRenderer} from './utilities/getTooltipContentRenderer';