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';