vislite 0.5.2-alpha.1 → 0.5.2
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/.editorconfig +18 -18
- package/AUTHORS.txt +6 -6
- package/CHANGELOG +143 -137
- package/LICENSE +20 -20
- package/README.md +69 -69
- package/lib/Buffer/index.umd.js +36 -36
- package/lib/Buffer/index.umd.min.js +2 -2
- package/lib/Canvas/index.umd.js +650 -650
- package/lib/Canvas/index.umd.min.js +2 -2
- package/lib/Cardinal/index.umd.js +91 -91
- package/lib/Cardinal/index.umd.min.js +2 -2
- package/lib/Eoap/index.umd.js +34 -34
- package/lib/Eoap/index.umd.min.js +2 -2
- package/lib/Geometry/index.umd.js +142 -142
- package/lib/Geometry/index.umd.min.js +2 -2
- package/lib/Hermite/index.umd.js +36 -36
- package/lib/Hermite/index.umd.min.js +2 -2
- package/lib/Matrix4/index.umd.js +119 -119
- package/lib/Matrix4/index.umd.min.js +2 -2
- package/lib/Mercator/index.umd.js +20 -20
- package/lib/Mercator/index.umd.min.js +2 -2
- package/lib/OralCanvas/index.es.js +598 -598
- package/lib/OralCanvas/index.es.min.js +2 -2
- package/lib/OralWebGL/index.es.js +532 -532
- package/lib/OralWebGL/index.es.min.js +3 -3
- package/lib/SVG/index.umd.js +470 -405
- package/lib/SVG/index.umd.min.js +3 -3
- package/lib/Shader/index.umd.js +69 -69
- package/lib/Shader/index.umd.min.js +3 -3
- package/lib/Texture/index.umd.js +53 -53
- package/lib/Texture/index.umd.min.js +2 -2
- package/lib/TreeLayout/index.umd.js +363 -363
- package/lib/TreeLayout/index.umd.min.js +2 -2
- package/lib/WebGL/index.umd.js +579 -579
- package/lib/WebGL/index.umd.min.js +3 -3
- package/lib/animation/index.umd.js +72 -72
- package/lib/animation/index.umd.min.js +2 -2
- package/lib/formatColor/index.umd.js +40 -40
- package/lib/formatColor/index.umd.min.js +2 -2
- package/lib/getLoopColors/index.umd.js +36 -36
- package/lib/getLoopColors/index.umd.min.js +2 -2
- package/lib/getWebGLContext/index.umd.js +44 -44
- package/lib/getWebGLContext/index.umd.min.js +2 -2
- package/lib/index.umd.js +2744 -2662
- package/lib/index.umd.min.js +3 -3
- package/lib/move/index.umd.js +27 -0
- package/lib/move/index.umd.min.js +11 -0
- package/lib/resizeObserver/index.umd.js +29 -29
- package/lib/resizeObserver/index.umd.min.js +2 -2
- package/lib/rotate/index.umd.js +8 -8
- package/lib/rotate/index.umd.min.js +2 -2
- package/lib/ruler/index.umd.js +126 -126
- package/lib/ruler/index.umd.min.js +2 -2
- package/lib/scale/index.umd.js +26 -0
- package/lib/scale/index.umd.min.js +11 -0
- package/lib/throttle/index.umd.js +49 -49
- package/lib/throttle/index.umd.min.js +2 -2
- package/lib/viewHandler/index.umd.js +120 -120
- package/lib/viewHandler/index.umd.min.js +2 -2
- package/miniprogram/ui-canvas/index.js +107 -107
- package/miniprogram/ui-canvas/index.json +4 -4
- package/miniprogram/ui-canvas/index.wxml +4 -4
- package/miniprogram/ui-canvas/index.wxss +5 -5
- package/package/Buffer/index.ts +2 -2
- package/package/Canvas/index.ts +2 -2
- package/package/Cardinal/index.ts +2 -2
- package/package/Eoap/index.ts +2 -2
- package/package/Geometry/index.ts +2 -2
- package/package/Hermite/index.ts +2 -2
- package/package/Matrix4/index.ts +2 -2
- package/package/Mercator/index.ts +2 -2
- package/package/OralCanvas/index.ts +2 -2
- package/package/OralWebGL/index.ts +2 -2
- package/package/SVG/index.ts +2 -2
- package/package/Shader/index.ts +39 -39
- package/package/Texture/index.ts +2 -2
- package/package/TreeLayout/index.ts +2 -2
- package/package/WebGL/index.ts +2 -2
- package/package/animation/index.ts +2 -2
- package/package/formatColor/index.ts +2 -2
- package/package/getLoopColors/index.ts +2 -2
- package/package/getWebGLContext/index.ts +39 -39
- package/package/index.ts +76 -72
- package/package/move/index.ts +3 -0
- package/package/resizeObserver/index.ts +2 -2
- package/package/rotate/index.ts +2 -2
- package/package/ruler/index.ts +2 -2
- package/package/scale/index.ts +3 -0
- package/package/throttle/index.ts +2 -2
- package/package/viewHandler/index.ts +2 -2
- package/package.json +66 -66
- package/src/Canvas.ts +67 -67
- package/src/Eoap.ts +66 -66
- package/src/Geometry.ts +82 -82
- package/src/Matrix4/index.ts +76 -76
- package/src/Matrix4/move.ts +12 -12
- package/src/Matrix4/rotate.ts +15 -15
- package/src/Matrix4/scale.ts +11 -11
- package/src/Matrix4/transform.ts +64 -64
- package/src/Mercator.ts +27 -27
- package/src/SVG.ts +24 -24
- package/src/TreeLayout/index.ts +186 -186
- package/src/WebGL.ts +66 -66
- package/src/animation.ts +98 -98
- package/src/common/assemble.ts +22 -22
- package/src/common/canvas/arc.ts +50 -50
- package/src/common/canvas/config.ts +158 -158
- package/src/common/canvas/gradient.ts +29 -29
- package/src/common/canvas/index.ts +168 -168
- package/src/common/canvas/painter.ts +426 -426
- package/src/common/canvas/texts.ts +18 -18
- package/src/common/geometry/prism-horizontal.ts +33 -33
- package/src/common/geometry/prism-vertical.ts +40 -40
- package/src/common/geometry/sphere-fragment.ts +39 -39
- package/src/common/geometry/tool/circle.ts +11 -11
- package/src/common/mergeOption.ts +6 -6
- package/src/common/setStyle.ts +5 -5
- package/src/common/svg/config.ts +186 -174
- package/src/common/svg/gradient.ts +63 -0
- package/src/common/svg/index.ts +356 -344
- package/src/common/svg/tool.ts +44 -44
- package/src/common/tree/index.ts +25 -25
- package/src/common/tree/toInnerTree.ts +56 -56
- package/src/common/tree/toPlainTree.ts +131 -131
- package/src/common/webgl/buffer.ts +79 -79
- package/src/common/webgl/doDraw.ts +108 -108
- package/src/common/webgl/getColorFactory.ts +26 -26
- package/src/common/webgl/getShader.ts +48 -48
- package/src/common/webgl/getTexture.ts +11 -11
- package/src/common/webgl/getWebGLContext.ts +27 -27
- package/src/common/webgl/index.ts +223 -223
- package/src/common/webgl/shader.ts +75 -75
- package/src/common/webgl/texture.ts +96 -96
- package/src/formatColor.ts +44 -44
- package/src/getLoopColors.ts +42 -42
- package/src/interpolation/Cardinal.ts +110 -110
- package/src/interpolation/Hermite.ts +65 -65
- package/src/move.ts +8 -0
- package/src/resizeObserver.ts +36 -36
- package/src/rotate.ts +7 -7
- package/src/ruler.ts +188 -188
- package/src/scale.ts +7 -0
- package/src/shader/fsColor.c +7 -7
- package/src/shader/fsColors.c +7 -7
- package/src/shader/fsCube.c +8 -8
- package/src/shader/fsImage.c +8 -8
- package/src/shader/vsColor.c +17 -17
- package/src/shader/vsColors.c +13 -13
- package/src/shader/vsCube.c +13 -13
- package/src/shader/vsImage.c +13 -13
- package/src/throttle.ts +51 -51
- package/src/viewHandler.ts +158 -158
- package/types/Buffer.d.ts +23 -23
- package/types/Canvas.d.ts +300 -300
- package/types/CanvasConfig.d.ts +106 -106
- package/types/CanvasOption.d.ts +7 -7
- package/types/Cardinal.d.ts +13 -13
- package/types/Geometry.d.ts +40 -40
- package/types/GeometryOption.d.ts +11 -11
- package/types/GeometryResult.d.ts +18 -18
- package/types/Gradient.d.ts +14 -14
- package/types/Hermite.d.ts +18 -18
- package/types/Map.d.ts +9 -9
- package/types/Matrix4.d.ts +42 -42
- package/types/Object3D.d.ts +114 -114
- package/types/SVG.d.ts +238 -215
- package/types/SVGConfig.d.ts +76 -76
- package/types/Scene3D.d.ts +6 -6
- package/types/Shader.d.ts +21 -21
- package/types/Texture.d.ts +16 -16
- package/types/Tree.d.ts +69 -69
- package/types/TreeConfig.d.ts +24 -24
- package/types/TreeLayout.d.ts +54 -54
- package/types/TreeOption.d.ts +48 -48
- package/types/WebGL.d.ts +38 -38
- package/types/WebGLOption.d.ts +7 -7
- package/types/animation.d.ts +6 -6
- package/types/formatColor.d.ts +2 -2
- package/types/getLoopColors.d.ts +2 -2
- package/types/getWebGLContext.d.ts +2 -2
- package/types/index.d.ts +175 -169
- package/types/move.d.ts +3 -0
- package/types/painterConfig.d.ts +2 -2
- package/types/resizeObserver.d.ts +2 -2
- package/types/rotate.d.ts +2 -2
- package/types/ruler.d.ts +7 -7
- package/types/scale.d.ts +3 -0
- package/types/throttle.d.ts +4 -4
- package/types/throttleOption.d.ts +21 -21
- package/types/viewHandler.d.ts +13 -13
- package/uni-app/ui-canvas.vue +226 -226
package/package/Shader/index.ts
CHANGED
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import type ShaderType from '../../types/Shader'
|
|
2
|
-
|
|
3
|
-
import OralShader from '../../src/common/webgl/shader'
|
|
4
|
-
|
|
5
|
-
import vsColor from '../../src/shader/vsColor.c'
|
|
6
|
-
import vsColors from '../../src/shader/vsColors.c'
|
|
7
|
-
import vsImage from '../../src/shader/vsImage.c'
|
|
8
|
-
import vsCube from '../../src/shader/vsCube.c'
|
|
9
|
-
|
|
10
|
-
import fsColor from '../../src/shader/fsColor.c'
|
|
11
|
-
import fsColors from '../../src/shader/fsColors.c'
|
|
12
|
-
import fsImage from '../../src/shader/fsImage.c'
|
|
13
|
-
import fsCube from '../../src/shader/fsCube.c'
|
|
14
|
-
|
|
15
|
-
class Shader extends OralShader implements ShaderType {
|
|
16
|
-
|
|
17
|
-
compile(vshaderSource: string, fshaderSource: string): this
|
|
18
|
-
compile(shaderName: string): this
|
|
19
|
-
compile(arg1: string, arg2?: string) {
|
|
20
|
-
if (arg2) {
|
|
21
|
-
super.compile(arg1, arg2)
|
|
22
|
-
} else {
|
|
23
|
-
super.compile({
|
|
24
|
-
"color": vsColor,
|
|
25
|
-
"colors": vsColors,
|
|
26
|
-
"image": vsImage,
|
|
27
|
-
"cube": vsCube
|
|
28
|
-
}[arg1], {
|
|
29
|
-
"color": fsColor,
|
|
30
|
-
"colors": fsColors,
|
|
31
|
-
"image": fsImage,
|
|
32
|
-
"cube": fsCube
|
|
33
|
-
}[arg1])
|
|
34
|
-
}
|
|
35
|
-
return this
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}
|
|
39
|
-
|
|
1
|
+
import type ShaderType from '../../types/Shader'
|
|
2
|
+
|
|
3
|
+
import OralShader from '../../src/common/webgl/shader'
|
|
4
|
+
|
|
5
|
+
import vsColor from '../../src/shader/vsColor.c'
|
|
6
|
+
import vsColors from '../../src/shader/vsColors.c'
|
|
7
|
+
import vsImage from '../../src/shader/vsImage.c'
|
|
8
|
+
import vsCube from '../../src/shader/vsCube.c'
|
|
9
|
+
|
|
10
|
+
import fsColor from '../../src/shader/fsColor.c'
|
|
11
|
+
import fsColors from '../../src/shader/fsColors.c'
|
|
12
|
+
import fsImage from '../../src/shader/fsImage.c'
|
|
13
|
+
import fsCube from '../../src/shader/fsCube.c'
|
|
14
|
+
|
|
15
|
+
class Shader extends OralShader implements ShaderType {
|
|
16
|
+
|
|
17
|
+
compile(vshaderSource: string, fshaderSource: string): this
|
|
18
|
+
compile(shaderName: string): this
|
|
19
|
+
compile(arg1: string, arg2?: string) {
|
|
20
|
+
if (arg2) {
|
|
21
|
+
super.compile(arg1, arg2)
|
|
22
|
+
} else {
|
|
23
|
+
super.compile({
|
|
24
|
+
"color": vsColor,
|
|
25
|
+
"colors": vsColors,
|
|
26
|
+
"image": vsImage,
|
|
27
|
+
"cube": vsCube
|
|
28
|
+
}[arg1], {
|
|
29
|
+
"color": fsColor,
|
|
30
|
+
"colors": fsColors,
|
|
31
|
+
"image": fsImage,
|
|
32
|
+
"cube": fsCube
|
|
33
|
+
}[arg1])
|
|
34
|
+
}
|
|
35
|
+
return this
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
}
|
|
39
|
+
|
|
40
40
|
export default Shader
|
package/package/Texture/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import Texture from '../../src/common/webgl/texture'
|
|
2
|
-
|
|
1
|
+
import Texture from '../../src/common/webgl/texture'
|
|
2
|
+
|
|
3
3
|
export default Texture
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import TreeLayout from "../../src/TreeLayout/index"
|
|
2
|
-
|
|
1
|
+
import TreeLayout from "../../src/TreeLayout/index"
|
|
2
|
+
|
|
3
3
|
export default TreeLayout
|
package/package/WebGL/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import WebGL from "../../src/WebGL"
|
|
2
|
-
|
|
1
|
+
import WebGL from "../../src/WebGL"
|
|
2
|
+
|
|
3
3
|
export default WebGL
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import animation from "../../src/animation"
|
|
2
|
-
|
|
1
|
+
import animation from "../../src/animation"
|
|
2
|
+
|
|
3
3
|
export default animation
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import formatColor from "../../src/formatColor"
|
|
2
|
-
|
|
1
|
+
import formatColor from "../../src/formatColor"
|
|
2
|
+
|
|
3
3
|
export default formatColor
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import getLoopColors from "../../src/getLoopColors"
|
|
2
|
-
|
|
1
|
+
import getLoopColors from "../../src/getLoopColors"
|
|
2
|
+
|
|
3
3
|
export default getLoopColors
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import getWebGLContext from "../../src/common/webgl/getWebGLContext"
|
|
2
|
-
|
|
3
|
-
export default (el: HTMLElement | null, scale: number = 1) => {
|
|
4
|
-
if (!el) {
|
|
5
|
-
throw new Error("VISLite getWebGLContext:The mount point requires an HTMLElement type but encountered null.")
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
let width = el.clientWidth, height = el.clientHeight
|
|
9
|
-
|
|
10
|
-
let ViewCanvas: HTMLCanvasElement
|
|
11
|
-
|
|
12
|
-
let _el = el as any
|
|
13
|
-
|
|
14
|
-
// 如果已经初始化过了
|
|
15
|
-
if (_el._vislite_canvas_) {
|
|
16
|
-
ViewCanvas = _el._vislite_canvas_
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
// 否则就初始化
|
|
20
|
-
else {
|
|
21
|
-
|
|
22
|
-
ViewCanvas = document.createElement('canvas')
|
|
23
|
-
el.appendChild(ViewCanvas)
|
|
24
|
-
|
|
25
|
-
_el._vislite_canvas_ = ViewCanvas
|
|
26
|
-
|
|
27
|
-
el.setAttribute('vislite', 'WebGL')
|
|
28
|
-
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// 设置画布大小
|
|
32
|
-
|
|
33
|
-
ViewCanvas.style.width = width + "px"
|
|
34
|
-
ViewCanvas.setAttribute('width', width + "")
|
|
35
|
-
|
|
36
|
-
ViewCanvas.style.height = height + "px"
|
|
37
|
-
ViewCanvas.setAttribute('height', height + "")
|
|
38
|
-
|
|
39
|
-
return getWebGLContext(ViewCanvas, scale)
|
|
1
|
+
import getWebGLContext from "../../src/common/webgl/getWebGLContext"
|
|
2
|
+
|
|
3
|
+
export default (el: HTMLElement | null, scale: number = 1) => {
|
|
4
|
+
if (!el) {
|
|
5
|
+
throw new Error("VISLite getWebGLContext:The mount point requires an HTMLElement type but encountered null.")
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
let width = el.clientWidth, height = el.clientHeight
|
|
9
|
+
|
|
10
|
+
let ViewCanvas: HTMLCanvasElement
|
|
11
|
+
|
|
12
|
+
let _el = el as any
|
|
13
|
+
|
|
14
|
+
// 如果已经初始化过了
|
|
15
|
+
if (_el._vislite_canvas_) {
|
|
16
|
+
ViewCanvas = _el._vislite_canvas_
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// 否则就初始化
|
|
20
|
+
else {
|
|
21
|
+
|
|
22
|
+
ViewCanvas = document.createElement('canvas')
|
|
23
|
+
el.appendChild(ViewCanvas)
|
|
24
|
+
|
|
25
|
+
_el._vislite_canvas_ = ViewCanvas
|
|
26
|
+
|
|
27
|
+
el.setAttribute('vislite', 'WebGL')
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// 设置画布大小
|
|
32
|
+
|
|
33
|
+
ViewCanvas.style.width = width + "px"
|
|
34
|
+
ViewCanvas.setAttribute('width', width + "")
|
|
35
|
+
|
|
36
|
+
ViewCanvas.style.height = height + "px"
|
|
37
|
+
ViewCanvas.setAttribute('height', height + "")
|
|
38
|
+
|
|
39
|
+
return getWebGLContext(ViewCanvas, scale)
|
|
40
40
|
}
|
package/package/index.ts
CHANGED
|
@@ -1,73 +1,77 @@
|
|
|
1
|
-
import Cardinal from "./Cardinal/index"
|
|
2
|
-
import Hermite from "./Hermite/index"
|
|
3
|
-
|
|
4
|
-
import Matrix4 from "./Matrix4/index"
|
|
5
|
-
import rotate from "./rotate/index"
|
|
6
|
-
|
|
7
|
-
import
|
|
8
|
-
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
|
|
12
|
-
import
|
|
13
|
-
|
|
14
|
-
import
|
|
15
|
-
|
|
16
|
-
import
|
|
17
|
-
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
|
|
21
|
-
import
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
import
|
|
25
|
-
|
|
26
|
-
import
|
|
27
|
-
|
|
28
|
-
import
|
|
29
|
-
|
|
30
|
-
import
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
//
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
1
|
+
import Cardinal from "./Cardinal/index"
|
|
2
|
+
import Hermite from "./Hermite/index"
|
|
3
|
+
|
|
4
|
+
import Matrix4 from "./Matrix4/index"
|
|
5
|
+
import rotate from "./rotate/index"
|
|
6
|
+
import move from "./move/index"
|
|
7
|
+
import scale from "./scale/index"
|
|
8
|
+
|
|
9
|
+
import getLoopColors from "./getLoopColors/index"
|
|
10
|
+
import formatColor from "./formatColor/index"
|
|
11
|
+
import animation from "./animation/index"
|
|
12
|
+
import ruler from "./ruler/index"
|
|
13
|
+
|
|
14
|
+
import SVG from "./SVG/index"
|
|
15
|
+
import Canvas from "./Canvas/index"
|
|
16
|
+
import WebGL from "./WebGL/index"
|
|
17
|
+
|
|
18
|
+
import getWebGLContext from "./getWebGLContext/index"
|
|
19
|
+
import Shader from "./Shader/index"
|
|
20
|
+
import Texture from "./Texture/index"
|
|
21
|
+
import Buffer from "./Buffer/index"
|
|
22
|
+
|
|
23
|
+
import Eoap from "./Eoap/index"
|
|
24
|
+
import Mercator from "./Mercator/index"
|
|
25
|
+
|
|
26
|
+
import viewHandler from "./viewHandler/index"
|
|
27
|
+
import resizeObserver from "./resizeObserver/index"
|
|
28
|
+
import throttle from "./throttle/index"
|
|
29
|
+
|
|
30
|
+
import TreeLayout from "./TreeLayout/index"
|
|
31
|
+
|
|
32
|
+
import Geometry from "./Geometry/index"
|
|
33
|
+
|
|
34
|
+
export default {
|
|
35
|
+
|
|
36
|
+
// 插值
|
|
37
|
+
Cardinal,
|
|
38
|
+
Hermite,
|
|
39
|
+
|
|
40
|
+
// 变换
|
|
41
|
+
Matrix4,
|
|
42
|
+
rotate,
|
|
43
|
+
move,
|
|
44
|
+
scale,
|
|
45
|
+
|
|
46
|
+
// 工具
|
|
47
|
+
getLoopColors,
|
|
48
|
+
formatColor,
|
|
49
|
+
animation,
|
|
50
|
+
ruler,
|
|
51
|
+
|
|
52
|
+
// 画笔
|
|
53
|
+
SVG,
|
|
54
|
+
Canvas,
|
|
55
|
+
WebGL,
|
|
56
|
+
|
|
57
|
+
// WebGL
|
|
58
|
+
getWebGLContext,
|
|
59
|
+
Shader,
|
|
60
|
+
Texture,
|
|
61
|
+
Buffer,
|
|
62
|
+
|
|
63
|
+
// 投影
|
|
64
|
+
Eoap,
|
|
65
|
+
Mercator,
|
|
66
|
+
|
|
67
|
+
// 辅助
|
|
68
|
+
viewHandler,
|
|
69
|
+
resizeObserver,
|
|
70
|
+
throttle,
|
|
71
|
+
|
|
72
|
+
// 布局
|
|
73
|
+
TreeLayout,
|
|
74
|
+
|
|
75
|
+
// 几何&模型数据
|
|
76
|
+
Geometry
|
|
73
77
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import resizeObserver from "../../src/resizeObserver"
|
|
2
|
-
|
|
1
|
+
import resizeObserver from "../../src/resizeObserver"
|
|
2
|
+
|
|
3
3
|
export default resizeObserver
|
package/package/rotate/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import rotate from "../../src/rotate"
|
|
2
|
-
|
|
1
|
+
import rotate from "../../src/rotate"
|
|
2
|
+
|
|
3
3
|
export default rotate
|
package/package/ruler/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import ruler from "../../src/ruler"
|
|
2
|
-
|
|
1
|
+
import ruler from "../../src/ruler"
|
|
2
|
+
|
|
3
3
|
export default ruler
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import throttle from "../../src/throttle"
|
|
2
|
-
|
|
1
|
+
import throttle from "../../src/throttle"
|
|
2
|
+
|
|
3
3
|
export default throttle
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import viewHandler from "../../src/viewHandler"
|
|
2
|
-
|
|
1
|
+
import viewHandler from "../../src/viewHandler"
|
|
2
|
+
|
|
3
3
|
export default viewHandler
|
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "vislite",
|
|
3
|
-
"version": "0.5.2
|
|
4
|
-
"description": "灵活、快速、简单的数据可视化交互式跨端前端库",
|
|
5
|
-
"main": "./lib/index.umd.min.js",
|
|
6
|
-
"typings": "./types/index.d.ts",
|
|
7
|
-
"unpkg": "./lib/index.umd.min.js",
|
|
8
|
-
"sideEffects": false,
|
|
9
|
-
"scripts": {
|
|
10
|
-
"dev": "webpack serve --config ./build/webpack.config.js",
|
|
11
|
-
"build": "devby --delete ./lib && node ./build/pkg.js",
|
|
12
|
-
"test": "karma start ./build/karma.config.js"
|
|
13
|
-
},
|
|
14
|
-
"miniprogram": ".",
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/oi-contrib/VISLite.git"
|
|
18
|
-
},
|
|
19
|
-
"keywords": [
|
|
20
|
-
"svg",
|
|
21
|
-
"webgl",
|
|
22
|
-
"typescript",
|
|
23
|
-
"canvas",
|
|
24
|
-
"vue",
|
|
25
|
-
"uniapp",
|
|
26
|
-
"miniprogram",
|
|
27
|
-
"image2d",
|
|
28
|
-
"image3d",
|
|
29
|
-
"oi-contrib",
|
|
30
|
-
"vislite",
|
|
31
|
-
"d3",
|
|
32
|
-
"zxl20070701",
|
|
33
|
-
"three",
|
|
34
|
-
"echarts",
|
|
35
|
-
"datav",
|
|
36
|
-
"webgpu",
|
|
37
|
-
"layout",
|
|
38
|
-
"algorithm"
|
|
39
|
-
],
|
|
40
|
-
"author": {
|
|
41
|
-
"name": "zxl20070701",
|
|
42
|
-
"url": "https://zxl20070701.github.io/notebook/home.html"
|
|
43
|
-
},
|
|
44
|
-
"license": "MIT",
|
|
45
|
-
"bugs": {
|
|
46
|
-
"url": "https://github.com/oi-contrib/VISLite/issues"
|
|
47
|
-
},
|
|
48
|
-
"homepage": "https://oi-contrib.github.io/VISLite",
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@rollup/plugin-typescript": "^11.1.0",
|
|
51
|
-
"@types/jasmine": "^4.3.1",
|
|
52
|
-
"devby": "^0.4.6",
|
|
53
|
-
"karma": "^6.3.10",
|
|
54
|
-
"karma-chrome-launcher": "^3.1.0",
|
|
55
|
-
"karma-jasmine": "^4.0.1",
|
|
56
|
-
"karma-webpack": "^5.0.0",
|
|
57
|
-
"rollup": "^3.20.6",
|
|
58
|
-
"terser": "^5.17.1",
|
|
59
|
-
"ts-loader": "^9.2.8",
|
|
60
|
-
"tslib": "^2.5.0",
|
|
61
|
-
"typescript": "^4.6.2",
|
|
62
|
-
"webpack": "^5.70.0",
|
|
63
|
-
"webpack-cli": "^4.9.2",
|
|
64
|
-
"webpack-dev-server": "^4.7.4"
|
|
65
|
-
}
|
|
66
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "vislite",
|
|
3
|
+
"version": "0.5.2",
|
|
4
|
+
"description": "灵活、快速、简单的数据可视化交互式跨端前端库",
|
|
5
|
+
"main": "./lib/index.umd.min.js",
|
|
6
|
+
"typings": "./types/index.d.ts",
|
|
7
|
+
"unpkg": "./lib/index.umd.min.js",
|
|
8
|
+
"sideEffects": false,
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "webpack serve --config ./build/webpack.config.js",
|
|
11
|
+
"build": "devby --delete ./lib && node ./build/pkg.js",
|
|
12
|
+
"test": "karma start ./build/karma.config.js"
|
|
13
|
+
},
|
|
14
|
+
"miniprogram": ".",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/oi-contrib/VISLite.git"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [
|
|
20
|
+
"svg",
|
|
21
|
+
"webgl",
|
|
22
|
+
"typescript",
|
|
23
|
+
"canvas",
|
|
24
|
+
"vue",
|
|
25
|
+
"uniapp",
|
|
26
|
+
"miniprogram",
|
|
27
|
+
"image2d",
|
|
28
|
+
"image3d",
|
|
29
|
+
"oi-contrib",
|
|
30
|
+
"vislite",
|
|
31
|
+
"d3",
|
|
32
|
+
"zxl20070701",
|
|
33
|
+
"three",
|
|
34
|
+
"echarts",
|
|
35
|
+
"datav",
|
|
36
|
+
"webgpu",
|
|
37
|
+
"layout",
|
|
38
|
+
"algorithm"
|
|
39
|
+
],
|
|
40
|
+
"author": {
|
|
41
|
+
"name": "zxl20070701",
|
|
42
|
+
"url": "https://zxl20070701.github.io/notebook/home.html"
|
|
43
|
+
},
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/oi-contrib/VISLite/issues"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://oi-contrib.github.io/VISLite",
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@rollup/plugin-typescript": "^11.1.0",
|
|
51
|
+
"@types/jasmine": "^4.3.1",
|
|
52
|
+
"devby": "^0.4.6",
|
|
53
|
+
"karma": "^6.3.10",
|
|
54
|
+
"karma-chrome-launcher": "^3.1.0",
|
|
55
|
+
"karma-jasmine": "^4.0.1",
|
|
56
|
+
"karma-webpack": "^5.0.0",
|
|
57
|
+
"rollup": "^3.20.6",
|
|
58
|
+
"terser": "^5.17.1",
|
|
59
|
+
"ts-loader": "^9.2.8",
|
|
60
|
+
"tslib": "^2.5.0",
|
|
61
|
+
"typescript": "^4.6.2",
|
|
62
|
+
"webpack": "^5.70.0",
|
|
63
|
+
"webpack-cli": "^4.9.2",
|
|
64
|
+
"webpack-dev-server": "^4.7.4"
|
|
65
|
+
}
|
|
66
|
+
}
|