stz-chart-maker 1.6.10 → 1.6.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +1 -2
  2. package/dist/index.js +2246 -2704
  3. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  import { ChartTypeRegistry, ChartType, ChartDataset, GridLineOptions, FontSpec, Tick, PluginOptionsByType, ChartOptions, Chart, ChartEvent, ActiveElement, LegendOptions, Plugin as Plugin$1, TooltipItem } from 'chart.js';
2
2
  import { TreemapControllerDatasetOptions } from 'chartjs-chart-treemap';
3
3
  import { ZoomPluginOptions } from 'chartjs-plugin-zoom/types/options';
4
- import { DeepPartial as DeepPartial$1 } from 'chart.js/dist/types/utils';
5
4
 
6
5
  /**
7
6
  * ═════════════════════════════════════════════════════════════
@@ -233,7 +232,7 @@ interface CustomZoomType<TType extends ChartType = ChartType> extends PluginOpti
233
232
  pan?: PanOptions;
234
233
  zoomLimits?: ZoomLimits;
235
234
  }
236
- type DeepPartialZoomType = DeepPartial$1<CustomZoomType>;
235
+ type DeepPartialZoomType = DeepPartial<CustomZoomType>;
237
236
 
238
237
  interface DataLabelsContext {
239
238
  chart: any;