export.ts 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /**
  2. * Do not mount those modules on 'src/zrender' for better tree shaking.
  3. */
  4. import * as zrUtil from './core/util';
  5. import * as matrix from './core/matrix';
  6. import * as vector from './core/vector';
  7. import * as colorTool from './tool/color';
  8. import * as pathTool from './tool/path';
  9. import {parseSVG} from './tool/parseSVG';
  10. import * as morphPathTool from './tool/morphPath';
  11. export {default as Point, PointLike} from './core/Point';
  12. export {
  13. default as Element,
  14. ElementAnimateConfig,
  15. ElementTextConfig,
  16. ElementTextGuideLineConfig,
  17. ElementEvent,
  18. ElementEventCallback,
  19. ElementProps
  20. } from './Element';
  21. export {default as Displayable, DisplayableProps} from './graphic/Displayable';
  22. export {default as Group, GroupProps} from './graphic/Group';
  23. export {default as Path, PathStyleProps, PathProps, PathStatePropNames, PathState} from './graphic/Path';
  24. export {default as Image, ImageStyleProps, ImageProps, ImageState} from './graphic/Image';
  25. export {default as CompoundPath, CompoundPathShape} from './graphic/CompoundPath';
  26. export {default as TSpan, TSpanStyleProps, TSpanProps, TSpanState} from './graphic/TSpan';
  27. export {default as IncrementalDisplayable} from './graphic/IncrementalDisplayable';
  28. export {default as Text, TextStylePropsPart, TextStyleProps, TextProps, TextState} from './graphic/Text';
  29. export {default as Arc, ArcProps, ArcShape} from './graphic/shape/Arc';
  30. export {default as BezierCurve, BezierCurveProps, BezierCurveShape} from './graphic/shape/BezierCurve';
  31. export {default as Circle, CircleProps, CircleShape} from './graphic/shape/Circle';
  32. export {default as Droplet, DropletProps, DropletShape} from './graphic/shape/Droplet';
  33. export {default as Ellipse, EllipseProps, EllipseShape} from './graphic/shape/Ellipse';
  34. export {default as Heart, HeartProps, HeartShape} from './graphic/shape/Heart';
  35. export {default as Isogon, IsogonProps, IsogonShape} from './graphic/shape/Isogon';
  36. export {default as Line, LineProps, LineShape} from './graphic/shape/Line';
  37. export {default as Polygon, PolygonProps, PolygonShape} from './graphic/shape/Polygon';
  38. export {default as Polyline, PolylineProps, PolylineShape} from './graphic/shape/Polyline';
  39. export {default as Rect, RectProps, RectShape} from './graphic/shape/Rect';
  40. export {default as Ring, RingProps, RingShape} from './graphic/shape/Ring';
  41. export {default as Rose, RoseProps, RoseShape} from './graphic/shape/Rose';
  42. export {default as Sector, SectorProps, SectorShape} from './graphic/shape/Sector';
  43. export {default as Star, StarProps, StarShape} from './graphic/shape/Star';
  44. export {default as Trochoid, TrochoidProps, TrochoidShape} from './graphic/shape/Trochoid';
  45. export {default as LinearGradient, LinearGradientObject} from './graphic/LinearGradient';
  46. export {default as RadialGradient, RadialGradientObject} from './graphic/RadialGradient';
  47. export {
  48. default as Pattern,
  49. PatternObjectBase,
  50. PatternObject,
  51. ImagePatternObject,
  52. SVGPatternObject
  53. } from './graphic/Pattern';
  54. export {default as BoundingRect, RectLike} from './core/BoundingRect';
  55. export {default as OrientedBoundingRect} from './core/OrientedBoundingRect';
  56. export {matrix};
  57. export {vector};
  58. export {colorTool as color};
  59. export {pathTool as path};
  60. export {zrUtil as util};
  61. export {morphPathTool as morph};
  62. export {parseSVG};
  63. export {default as showDebugDirtyRect} from './debug/showDebugDirtyRect';
  64. export {setPlatformAPI} from './core/platform';