stz-chart-maker 1.0.15 → 1.0.16

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 +2 -1
  2. package/dist/index.js +1366 -1371
  3. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -377,7 +377,7 @@ declare abstract class ChartWrapper<TType extends ChartType> implements ChartBui
377
377
  * @param pluginId
378
378
  */
379
379
  hasPlugin(pluginId: string): boolean;
380
- build(id?: string): ChartConfig;
380
+ abstract build(id?: string): ChartConfig;
381
381
  }
382
382
 
383
383
  interface AxisColors {
@@ -459,6 +459,7 @@ declare abstract class CartesianChartWrapper<TType extends CartesianChartType> e
459
459
  protected isBar(): boolean;
460
460
  protected normalize(): void;
461
461
  protected configAop(config: any): any;
462
+ build(id?: string): ChartConfig;
462
463
  makeConfig(id?: string): {
463
464
  _chartId: any;
464
465
  type: any;