@apia/charts 0.1.3 → 0.2.4
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/dist/index.d.ts +1 -2
- package/dist/index.js +3849 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -9
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as _apia_util from '@apia/util';
|
|
2
2
|
import React$1 from 'react';
|
|
3
|
-
import * as theme_ui_jsx_runtime from 'theme-ui/jsx-runtime';
|
|
4
3
|
|
|
5
4
|
type TApiaChartCoordinate = {
|
|
6
5
|
/**
|
|
@@ -233,6 +232,6 @@ type TWidgetData = {
|
|
|
233
232
|
|
|
234
233
|
declare const WidgetContainer: ({ data }: {
|
|
235
234
|
data: TWidgetData;
|
|
236
|
-
}) =>
|
|
235
|
+
}) => React$1.JSX.Element;
|
|
237
236
|
|
|
238
237
|
export { ChartRenderer, TApiaChartColumn, TApiaChartDefinition, TWidgetData, WidgetContainer };
|