@gravity-ui/chartkit 4.0.0-beta.5 → 4.0.0-beta.7

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.
package/build/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import { ChartKit } from './components/ChartKit';
2
2
  import { settings } from './libs';
3
+ export * from './types/widget-data';
4
+ export * from './libs/chartkit-error/chartkit-error';
3
5
  export type { ChartKitLang, ChartKitOnLoadData, ChartKitOnRenderData, ChartKitOnChartLoad, ChartKitOnError, ChartKitPlugin, ChartKitProps, ChartKitRef, ChartKitWidgetRef, ChartKitType, ChartKitWidget, } from './types';
4
6
  export { settings };
5
7
  export default ChartKit;
package/build/index.js CHANGED
@@ -1,4 +1,6 @@
1
1
  import { ChartKit } from './components/ChartKit';
2
2
  import { settings } from './libs';
3
+ export * from './types/widget-data';
4
+ export * from './libs/chartkit-error/chartkit-error';
3
5
  export { settings };
4
6
  export default ChartKit;
@@ -1,3 +1,4 @@
1
1
  import type { ChartKitPlugin } from '../../types';
2
2
  export * from './types';
3
+ export { HighchartsReact } from './renderer/components/HighchartsReact';
3
4
  export declare const HighchartsPlugin: ChartKitPlugin;
@@ -1,5 +1,6 @@
1
1
  import React from 'react';
2
2
  export * from './types';
3
+ export { HighchartsReact } from './renderer/components/HighchartsReact';
3
4
  export const HighchartsPlugin = {
4
5
  type: 'highcharts',
5
6
  renderer: React.lazy(() => import('./renderer/HighchartsWidget')),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravity-ui/chartkit",
3
- "version": "4.0.0-beta.5",
3
+ "version": "4.0.0-beta.7",
4
4
  "description": "React component used to render charts based on any sources you need",
5
5
  "license": "MIT",
6
6
  "repository": "git@github.com:gravity-ui/ChartKit.git",