index.d.ts 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /** Basic UI */
  2. export { Tag } from './tag';
  3. export type { TagOptions } from './tag';
  4. export { Marker } from './marker';
  5. export type { MarkerOptions } from './marker';
  6. export { Button } from './button';
  7. export type { ButtonOptions } from './button';
  8. export { Breadcrumb } from './breadcrumb';
  9. export type { BreadcrumbOptions } from './breadcrumb';
  10. /** Others */
  11. export { Sparkline } from './sparkline';
  12. export type { SparklineOptions } from './sparkline';
  13. /** Chart UI */
  14. export { Slider } from './slider';
  15. export type { SliderOptions } from './slider';
  16. export { Scrollbar } from './scrollbar';
  17. export type { ScrollbarOptions, ScrollbarStyleProps } from './scrollbar';
  18. export { Axis } from './axis';
  19. export type { AxisStyleProps } from './axis';
  20. export { Timeline } from './timeline';
  21. export type { TimelineOptions } from './timeline';
  22. export { Continuous, Category } from './legend';
  23. export type { ContinuousOptions, CategoryOptions } from './legend';
  24. export { Tooltip } from './tooltip';
  25. export type { TooltipStyleProps } from './tooltip';
  26. export { Switch } from './switch';
  27. export type { SwitchOptions } from './switch';
  28. export { Navigator } from './navigator';
  29. export type { NavigatorOptions } from './navigator';
  30. export { LineCrosshair, CircleCrosshair, PolygonCrosshair } from './crosshair';
  31. export type { LineCrosshairOptions, CircleCrosshairOptions, PolygonCrosshairOptions } from './crosshair';
  32. export { Checkbox } from './checkbox';
  33. export type { CheckboxOptions } from './checkbox';
  34. export { Poptip } from './poptip';
  35. export type { PoptipStyleProps as PoptipCfg, PoptipOptions } from './poptip/types';
  36. export { Layout } from './layout';
  37. export type { LayoutOptions } from './layout/types';