UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

49 lines (48 loc) 5.79 kB
import type { IComponent } from './interface/common'; import type { IScrollBarSpec, IScrollBarTheme } from './data-zoom/scroll-bar'; import { ScrollBar, registerScrollBar } from './data-zoom/scroll-bar/scroll-bar'; import type { IDataZoomSpec, IDataZoomTheme } from './data-zoom/data-zoom'; import { DataZoom, registerDataZoom } from './data-zoom/data-zoom/data-zoom'; import { CustomMark, registerCustomMark } from './custom-mark/custom-mark'; import type { IBrushSpec, IBrushTheme } from './brush'; import { Brush, registerBrush } from './brush/brush'; import type { IMapLabelSpec, IMapLabelTheme } from './map-label'; import { MapLabelComponent, registerMapLabel } from './map-label/component'; import type { ICartesianLinearAxisSpec, ICartesianBandAxisSpec, ICartesianTimeAxisSpec, ICartesianAxisSpec, ICartesianLogAxisSpec, ICartesianAxisCommonTheme } from './axis/cartesian/index'; import { CartesianAxis, CartesianLinearAxis, CartesianBandAxis, CartesianTimeAxis, CartesianLogAxis, CartesianSymlogAxis, registerCartesianBandAxis, registerCartesianLinearAxis, registerCartesianLogAxis, registerCartesianSymlogAxis, registerCartesianTimeAxis } from './axis/cartesian/index'; import type { IPolarAxisCommonTheme, IPolarAxisSpec, IPolarBandAxisSpec, IPolarLinearAxisSpec } from './axis/polar'; import { PolarAxis, PolarBandAxis, PolarLinearAxis, registerPolarBandAxis, registerPolarLinearAxis } from './axis/polar'; import type { IDiscreteLegendSpec, IDiscreteLegendTheme } from './legend/discrete'; import { DiscreteLegend, registerDiscreteLegend } from './legend/discrete'; import type { IColorLegendTheme, IContinuousLegendSpec, IContinuousLegendTheme, ISizeLegendTheme } from './legend/continuous'; import { ContinuousLegend, registerContinuousLegend } from './legend/continuous'; import type { IIndicatorSpec, IIndicatorTheme } from './indicator'; import { Indicator, registerIndicator } from './indicator'; import type { ITitleSpec, ITitleTheme } from './title'; import { Title, registerTitle } from './title'; import type { IGeoCoordinateSpec } from './geo'; import { GeoCoordinate, registerGeoCoordinate } from './geo'; import type { ICartesianCrosshairSpec, ICrosshairTheme, IPolarCrosshairSpec } from './crosshair'; import { CartesianCrossHair, PolarCrossHair, registerCartesianCrossHair, registerPolarCrossHair } from './crosshair'; import type { IPlayerSpec, IPlayerTheme } from './player'; import { Player, registerPlayer } from './player'; import type { IMarkLineSpec, IStepMarkLineSpec, IMarkLineTheme } from './marker/mark-line'; import { CartesianMarkLine, PolarMarkLine, registerMarkLine, registerPolarMarkLine } from './marker/mark-line'; import type { IMarkAreaSpec, IMarkAreaTheme } from './marker/mark-area'; import { CartesianMarkArea, PolarMarkArea, registerMarkArea, registerPolarMarkArea } from './marker/mark-area'; import type { IMarkPointSpec, IMarkPointTheme } from './marker/mark-point'; import { CartesianMarkPoint, PolarMarkPoint, GeoMarkPoint, registerMarkPoint, registerPolarMarkPoint, registerGeoMarkPoint } from './marker/mark-point'; import type { ITooltipSpec, ITooltipTheme } from './tooltip'; import { Tooltip, registerTooltip } from './tooltip'; import type { ILabelSpec, ITotalLabelTheme, ITotalLabelSpec } from './label'; import { Label, registerLabel } from './label'; import { TotalLabel, registerTotalLabel } from './label/total-label'; import { registerPoptip } from './poptip/index'; import type { IComponentTheme } from './interface'; import type { IAxisCommonTheme, IAxisItemTheme, IBandAxisTheme } from './axis/interface'; import type { IPoptipTheme } from './poptip/interface'; export { ScrollBar, DataZoom, CustomMark, Brush, MapLabelComponent, CartesianAxis, CartesianBandAxis, CartesianLinearAxis, CartesianTimeAxis, CartesianLogAxis, CartesianSymlogAxis, PolarAxis, PolarBandAxis, PolarLinearAxis, DiscreteLegend, ContinuousLegend, Indicator, Title, GeoCoordinate, CartesianCrossHair, PolarCrossHair, Player, CartesianMarkLine, CartesianMarkArea, CartesianMarkPoint, PolarMarkLine, PolarMarkArea, PolarMarkPoint, GeoMarkPoint, Tooltip, Label, TotalLabel }; export { registerBrush, registerScrollBar, registerTitle, registerTooltip, registerCartesianBandAxis, registerCartesianCrossHair, registerCartesianLinearAxis, registerCartesianLogAxis, registerCartesianSymlogAxis, registerCartesianTimeAxis, registerContinuousLegend, registerCustomMark, registerDataZoom, registerDiscreteLegend, registerGeoCoordinate, registerIndicator, registerLabel, registerTotalLabel, registerMapLabel, registerMarkLine, registerMarkArea, registerMarkPoint, registerPolarMarkLine, registerPolarMarkArea, registerPolarMarkPoint, registerGeoMarkPoint, registerPlayer, registerPolarBandAxis, registerPolarCrossHair, registerPolarLinearAxis, registerPoptip }; export type { IComponent, IScrollBarSpec, IBrushSpec, ICartesianAxisSpec, ICartesianBandAxisSpec, ICartesianCrosshairSpec, ICartesianLinearAxisSpec, ICartesianTimeAxisSpec, ICartesianLogAxisSpec, IContinuousLegendSpec, IDataZoomSpec, IDiscreteLegendSpec, IGeoCoordinateSpec, IIndicatorSpec, ILabelSpec, ITotalLabelSpec, IMapLabelSpec, IMarkAreaSpec, IMarkLineSpec, IStepMarkLineSpec, IMarkPointSpec, IPlayerSpec, IPolarAxisSpec, IPolarBandAxisSpec, IPolarCrosshairSpec, IPolarLinearAxisSpec, ITitleSpec, ITooltipSpec }; export type { IComponentTheme, ICrosshairTheme, IAxisItemTheme, IAxisCommonTheme, IBandAxisTheme, IPolarAxisCommonTheme, ICartesianAxisCommonTheme, IBrushTheme, IDataZoomTheme, IScrollBarTheme, IIndicatorTheme, IMapLabelTheme, ITotalLabelTheme, ISizeLegendTheme, IColorLegendTheme, IDiscreteLegendTheme, IContinuousLegendTheme, IMarkAreaTheme, IMarkLineTheme, IMarkPointTheme, IPlayerTheme, IPoptipTheme, ITitleTheme, ITooltipTheme }; export * from './tooltip/interface';