UNPKG

@visactor/vrender-core

Version:

```typescript import { xxx } from '@visactor/vrender-core'; ```

137 lines (136 loc) 7.19 kB
export * from './core/global'; export * from './graphic'; export { builtInSymbolStrMap, builtinSymbols, builtinSymbolsMap } from './graphic/builtin-symbol'; export { Group } from './graphic/group'; export { Symbol, createSymbol } from './graphic/symbol'; export { createArc } from './graphic/arc'; export { createArc3d } from './graphic/arc3d'; export { createArea } from './graphic/area'; export { createGlyph } from './graphic/glyph'; export { createGroup } from './graphic/group'; export { createImage } from './graphic/image'; export { createLine } from './graphic/line'; export { createPath } from './graphic/path'; export { createPolygon } from './graphic/polygon'; export { createPyramid3d } from './graphic/pyramid3d'; export { createRect } from './graphic/rect'; export { createRect3d } from './graphic/rect3d'; export { createRichText } from './graphic/richtext'; export { createText } from './graphic/text'; export { createGraphic, graphicCreator, registerGraphic } from './graphic/graphic-creator'; export { container, graphicUtil, transformUtil, graphicService, layerService } from './modules'; export { preLoadAllModule, getLegacyBindingContext, type ILegacyBindContext, type ILegacyBindingContext } from './legacy/bootstrap'; export { vglobal } from './global'; export * from './create'; export * from './event'; export * from './interface'; export * from './render'; export { IncrementalDrawContribution, ArcRender, Arc3dRender, AreaRender, CircleRender, GraphicRender, LineRender, PathRender, PolygonRender, RectRender, Rect3DRender, SymbolRender, TextRender, RichTextRender, Pyramid3dRender, GlyphRender, ImageRender, RenderSelector, DrawContribution, StarRender } from './render/contributions/render/symbol'; export * from './render/contributions/render/base-render'; export * from './canvas'; export * from './core'; export * from './core/light'; export { registerDirectionalLight } from './core/light'; export * from './core/camera'; export { registerOrthoCamera } from './core/camera'; export * from './picker'; export { PickerService, PickItemInterceptor, PickServiceInterceptor } from './picker/constants'; export * from './resource-loader/loader'; export * from './color-string'; export * from './factory'; export * from './registry'; export * from './entries'; export { configureRuntimeApplicationForApp, getRuntimeInstallerBindingContext, getRuntimeInstallerGlobal, installRuntimeDrawContributionsToApp, installRuntimeGraphicRenderersToApp, installRuntimePickersToApp, refreshRuntimeInstallerContributions } from './entries/runtime-installer'; export * from './common/text'; export * from './common/color-utils'; export * from './common/bezier-utils'; export * from './common/bounds-context'; export * from './common/seg-context'; export * from './common/custom-path2d'; export { CustomPath2D } from './common/custom-path2d'; export * from './common/segment'; export * from './common/canvas-utils'; export * from './common/contribution-provider'; export * from './common/generator'; export { Generator } from './common/generator'; export * from './common/utils'; export * from './common/shape/arc'; export * from './common/shape/rect'; export * from './common/matrix'; export * from './common/simplify'; export * from './common/diff'; export * from './common/path-svg'; export * from './common/render-curve'; export * from './common/render-area'; export * from './common/render-command-list'; export * from './common/sort'; export * from './common/morphing-utils'; export * from './common/split-path'; export * from './common/enums'; export { IContainPointMode } from './common/enums'; export * from './common/generator'; export * from './common/performance-raf'; export * from './common/event-transformer'; export { mapToCanvasPointForCanvas, registerGlobalEventTransformer, registerWindowEventTransformer, transformPointForCanvas } from './common/event-transformer'; export * from './plugins/constants'; export * from './plugins/builtin-plugin/richtext-edit-plugin'; export * from './allocator/matrix-allocate'; export { matrixAllocate } from './allocator/matrix-allocate'; export * from './allocator/canvas-allocate'; export * from './allocator/graphic-allocate'; export * from './common/contribution-provider'; export { wrapCanvas, wrapContext } from './canvas/util'; export * from './common/xml'; export * from './common/explicit-binding'; export * from './constants'; export * from './application'; export { application } from './application'; export * from './env-check'; export { isBrowserEnv } from './env-check'; export { CustomEvent } from './event/federated-event/custom-event'; export { GradientParser } from './common/color-utils'; export { getRichTextBounds, getTextBounds } from './graphic/bounds'; export { waitForAllSubLayers } from './graphic/tools'; export * from './render/contributions/render/arc-module'; export * from './render/contributions/render/rect-module'; export * from './render/contributions/render/line-module'; export * from './render/contributions/render/area-module'; export * from './render/contributions/render/symbol-module'; export * from './render/contributions/render/circle-module'; export * from './render/contributions/render/text-module'; export * from './render/contributions/render/path-module'; export * from './render/contributions/render/polygon-module'; export * from './render/contributions/render/star-module'; export * from './render/contributions/render/glyph-module'; export * from './render/contributions/render/richtext-module'; export * from './render/contributions/render/image-module'; export * from './render/contributions/render/rect3d-module'; export * from './render/contributions/render/arc3d-module'; export * from './render/contributions/render/pyramid3d-module'; export * from './register/register-arc'; export * from './register/register-arc3d'; export * from './register/register-area'; export * from './register/register-circle'; export * from './register/register-glyph'; export * from './register/register-group'; export * from './register/register-image'; export * from './register/register-line'; export * from './register/register-path'; export * from './register/register-polygon'; export * from './register/register-star'; export * from './register/register-pyramid3d'; export * from './register/register-rect'; export * from './register/register-rect3d'; export * from './register/register-richtext'; export * from './register/register-symbol'; export * from './register/register-text'; export * from './register/register-shadowRoot'; export * from './register/register-wraptext'; export * from './plugins/builtin-plugin/html-attribute-plugin'; export { registerHtmlAttributePlugin } from './plugins/builtin-plugin/html-attribute-plugin'; export * from './plugins/builtin-plugin/react-attribute-plugin'; export { registerReactAttributePlugin } from './plugins/builtin-plugin/react-attribute-plugin'; export * from './plugins/builtin-plugin/3dview-transform-plugin'; export { registerViewTransform3dPlugin } from './plugins/builtin-plugin/3dview-transform-plugin'; export * from './plugins/builtin-plugin/flex-layout-plugin'; export * from './plugins/builtin-plugin/edit-module';