@zyzgroup/core-web 0.0.75 → 0.0.78

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.
Files changed (262) hide show
  1. package/dist/animate_ce.css +615 -0
  2. package/dist/zyzgroup_core_web.iife.js +16 -16
  3. package/dist/zyzgroup_core_web.iife.js.map +1 -1
  4. package/dist/zyzgroup_core_web.js +13539 -12642
  5. package/dist/zyzgroup_core_web.js.map +1 -1
  6. package/dist/zyzgroup_core_web.umd.cjs +16 -16
  7. package/dist/zyzgroup_core_web.umd.cjs.map +1 -1
  8. package/package.json +1 -1
  9. package/types/YZWorker.d.ts.map +1 -1
  10. package/types/ajax.d.ts +0 -1
  11. package/types/ajax.d.ts.map +1 -1
  12. package/types/animate/Clock.d.ts +14 -0
  13. package/types/animate/Clock.d.ts.map +1 -0
  14. package/types/animate/Timeline.d.ts +43 -0
  15. package/types/animate/Timeline.d.ts.map +1 -0
  16. package/types/animate/{YZAnimate.d.ts → _YZAnimate.d.ts} +3 -3
  17. package/types/animate/_YZAnimate.d.ts.map +1 -0
  18. package/types/animate/index.d.ts +3 -2
  19. package/types/animate/index.d.ts.map +1 -1
  20. package/types/animate/schedule.d.ts +11 -0
  21. package/types/animate/schedule.d.ts.map +1 -0
  22. package/types/animate/tween/BezierEasing.d.ts +8 -0
  23. package/types/animate/tween/BezierEasing.d.ts.map +1 -0
  24. package/types/animate/tween/Easing.d.ts +1 -0
  25. package/types/animate/tween/Easing.d.ts.map +1 -1
  26. package/types/animate/tween/Group.d.ts.map +1 -1
  27. package/types/animate/tween/Interpolation.d.ts +3 -1
  28. package/types/animate/tween/Interpolation.d.ts.map +1 -1
  29. package/types/animate/tween/Now.d.ts +0 -2
  30. package/types/animate/tween/Now.d.ts.map +1 -1
  31. package/types/animate/tween/Tween.d.ts.map +1 -1
  32. package/types/animate/tween/index.d.ts +8 -3
  33. package/types/animate/tween/index.d.ts.map +1 -1
  34. package/types/canvas/YZCanvas.d.ts +6 -5
  35. package/types/canvas/YZCanvas.d.ts.map +1 -1
  36. package/types/canvas/YZCanvasContext.d.ts.map +1 -1
  37. package/types/dom/DOMEventBus.d.ts +68 -42
  38. package/types/dom/DOMEventBus.d.ts.map +1 -1
  39. package/types/dom/DOMKey.d.ts +18 -0
  40. package/types/dom/DOMKey.d.ts.map +1 -1
  41. package/types/dom/DOMUtil.d.ts +18 -6
  42. package/types/dom/DOMUtil.d.ts.map +1 -1
  43. package/types/env.d.ts.map +1 -1
  44. package/types/image/bitmap.d.ts +5 -4
  45. package/types/image/bitmap.d.ts.map +1 -1
  46. package/types/image/image.d.ts +5 -0
  47. package/types/image/image.d.ts.map +1 -1
  48. package/types/index.d.ts +1 -4
  49. package/types/index.d.ts.map +1 -1
  50. package/types/loaders/AudioLoader.d.ts +12 -0
  51. package/types/loaders/AudioLoader.d.ts.map +1 -0
  52. package/types/loaders/Cache.d.ts +10 -0
  53. package/types/loaders/Cache.d.ts.map +1 -0
  54. package/types/loaders/FileLoader.d.ts +16 -0
  55. package/types/loaders/FileLoader.d.ts.map +1 -0
  56. package/types/loaders/ImageBitmapLoader.d.ts +14 -0
  57. package/types/loaders/ImageBitmapLoader.d.ts.map +1 -0
  58. package/types/loaders/ImageLoader.d.ts +11 -0
  59. package/types/loaders/ImageLoader.d.ts.map +1 -0
  60. package/types/loaders/Loader.d.ts +25 -0
  61. package/types/loaders/Loader.d.ts.map +1 -0
  62. package/types/loaders/LoadingManager.d.ts +29 -0
  63. package/types/loaders/LoadingManager.d.ts.map +1 -0
  64. package/types/loaders/index.d.ts +5 -0
  65. package/types/loaders/index.d.ts.map +1 -0
  66. package/types/math/Matrix.d.ts +65 -32
  67. package/types/math/Matrix.d.ts.map +1 -1
  68. package/types/math/Shape.d.ts +127 -84
  69. package/types/math/Shape.d.ts.map +1 -1
  70. package/types/math/ShapeCombo.d.ts +38 -0
  71. package/types/math/ShapeCombo.d.ts.map +1 -0
  72. package/types/math/ShapeGroup.d.ts +28 -14
  73. package/types/math/ShapeGroup.d.ts.map +1 -1
  74. package/types/math/index.d.ts +1 -15
  75. package/types/math/index.d.ts.map +1 -1
  76. package/types/math/line/Arc.d.ts +25 -0
  77. package/types/math/line/Arc.d.ts.map +1 -0
  78. package/types/math/{CubicBezier.d.ts → line/CubicBezier.d.ts} +20 -12
  79. package/types/math/line/CubicBezier.d.ts.map +1 -0
  80. package/types/math/line/L.d.ts +33 -0
  81. package/types/math/line/L.d.ts.map +1 -0
  82. package/types/math/line/PathD.d.ts +82 -0
  83. package/types/math/line/PathD.d.ts.map +1 -0
  84. package/types/math/line/QuadraticBezier.d.ts +30 -0
  85. package/types/math/line/QuadraticBezier.d.ts.map +1 -0
  86. package/types/math/line/index.d.ts +6 -0
  87. package/types/math/line/index.d.ts.map +1 -0
  88. package/types/math/math/cameras/Camera.d.ts +12 -0
  89. package/types/math/math/cameras/Camera.d.ts.map +1 -0
  90. package/types/math/math/constants.d.ts +211 -0
  91. package/types/math/math/constants.d.ts.map +1 -0
  92. package/types/math/math/controls/Controls.d.ts +25 -0
  93. package/types/math/math/controls/Controls.d.ts.map +1 -0
  94. package/types/math/math/controls/OrbitControls.d.ts +1 -0
  95. package/types/math/math/controls/OrbitControls.d.ts.map +1 -0
  96. package/types/math/math/core/BufferAttribute.d.ts +94 -0
  97. package/types/math/math/core/BufferAttribute.d.ts.map +1 -0
  98. package/types/math/math/core/BufferGeometry.d.ts +1 -0
  99. package/types/math/math/core/BufferGeometry.d.ts.map +1 -0
  100. package/types/math/math/core/EventDispatcher.d.ts +14 -0
  101. package/types/math/math/core/EventDispatcher.d.ts.map +1 -0
  102. package/types/math/math/core/GLBufferAttribute.d.ts +19 -0
  103. package/types/math/math/core/GLBufferAttribute.d.ts.map +1 -0
  104. package/types/math/math/core/Layers.d.ts +14 -0
  105. package/types/math/math/core/Layers.d.ts.map +1 -0
  106. package/types/math/math/core/Object3D.d.ts +91 -0
  107. package/types/math/math/core/Object3D.d.ts.map +1 -0
  108. package/types/math/math/index.d.ts +10 -0
  109. package/types/math/math/index.d.ts.map +1 -0
  110. package/types/math/math/interpolants/Interpolant.d.ts +14 -0
  111. package/types/math/math/interpolants/Interpolant.d.ts.map +1 -0
  112. package/types/math/math/math/Box2.d.ts +30 -0
  113. package/types/math/math/math/Box2.d.ts.map +1 -0
  114. package/types/math/math/math/Box3.d.ts +46 -0
  115. package/types/math/math/math/Box3.d.ts.map +1 -0
  116. package/types/math/math/math/Color.d.ts +59 -0
  117. package/types/math/math/math/Color.d.ts.map +1 -0
  118. package/types/math/math/math/ColorManagement.d.ts +20 -0
  119. package/types/math/math/math/ColorManagement.d.ts.map +1 -0
  120. package/types/math/math/math/Cylindrical.d.ts +14 -0
  121. package/types/math/math/math/Cylindrical.d.ts.map +1 -0
  122. package/types/math/math/math/Euler.d.ts +35 -0
  123. package/types/math/math/math/Euler.d.ts.map +1 -0
  124. package/types/math/math/math/Frustum.d.ts +21 -0
  125. package/types/math/math/math/Frustum.d.ts.map +1 -0
  126. package/types/math/math/math/Line3.d.ts +21 -0
  127. package/types/math/math/math/Line3.d.ts.map +1 -0
  128. package/types/math/math/math/Matrix.d.ts +16 -0
  129. package/types/math/math/math/Matrix.d.ts.map +1 -0
  130. package/types/math/math/math/Matrix2.d.ts +19 -0
  131. package/types/math/math/math/Matrix2.d.ts.map +1 -0
  132. package/types/math/math/math/Matrix3.d.ts +46 -0
  133. package/types/math/math/math/Matrix3.d.ts.map +1 -0
  134. package/types/math/math/math/Matrix4.d.ts +66 -0
  135. package/types/math/math/math/Matrix4.d.ts.map +1 -0
  136. package/types/math/math/math/Plane.d.ts +32 -0
  137. package/types/math/math/math/Plane.d.ts.map +1 -0
  138. package/types/math/math/math/Quaternion.d.ts +52 -0
  139. package/types/math/math/math/Quaternion.d.ts.map +1 -0
  140. package/types/math/math/math/Ray.d.ts +32 -0
  141. package/types/math/math/math/Ray.d.ts.map +1 -0
  142. package/types/math/math/math/Sphere.d.ts +29 -0
  143. package/types/math/math/math/Sphere.d.ts.map +1 -0
  144. package/types/math/math/math/Spherical.d.ts +15 -0
  145. package/types/math/math/math/Spherical.d.ts.map +1 -0
  146. package/types/math/math/math/SphericalHarmonics3.d.ts +21 -0
  147. package/types/math/math/math/SphericalHarmonics3.d.ts.map +1 -0
  148. package/types/math/math/math/Triangle.d.ts +35 -0
  149. package/types/math/math/math/Triangle.d.ts.map +1 -0
  150. package/types/math/math/math/Vector.d.ts +19 -0
  151. package/types/math/math/math/Vector.d.ts.map +1 -0
  152. package/types/math/math/math/Vector2.d.ts +66 -0
  153. package/types/math/math/math/Vector2.d.ts.map +1 -0
  154. package/types/math/math/math/Vector3.d.ts +80 -0
  155. package/types/math/math/math/Vector3.d.ts.map +1 -0
  156. package/types/math/math/math/Vector4.d.ts +64 -0
  157. package/types/math/math/math/Vector4.d.ts.map +1 -0
  158. package/types/math/math.d.ts +6 -1
  159. package/types/math/math.d.ts.map +1 -1
  160. package/types/math/shapes/Arrow.d.ts.map +1 -1
  161. package/types/math/{ComboConfetti.d.ts → shapes/Confetti.d.ts} +10 -8
  162. package/types/math/shapes/Confetti.d.ts.map +1 -0
  163. package/types/math/shapes/Cross.d.ts +2 -3
  164. package/types/math/shapes/Cross.d.ts.map +1 -1
  165. package/types/math/{Ellipse.d.ts → shapes/Ellipse.d.ts} +9 -5
  166. package/types/math/shapes/Ellipse.d.ts.map +1 -0
  167. package/types/math/shapes/Fox.d.ts.map +1 -1
  168. package/types/math/shapes/Heart.d.ts +6 -3
  169. package/types/math/shapes/Heart.d.ts.map +1 -1
  170. package/types/math/shapes/HeartVariant.d.ts +6 -3
  171. package/types/math/shapes/HeartVariant.d.ts.map +1 -1
  172. package/types/math/{Light3D.d.ts → shapes/Light3D.d.ts} +2 -5
  173. package/types/math/shapes/Light3D.d.ts.map +1 -0
  174. package/types/math/shapes/Line.d.ts +19 -0
  175. package/types/math/shapes/Line.d.ts.map +1 -0
  176. package/types/math/shapes/LinePicture.d.ts +15 -0
  177. package/types/math/shapes/LinePicture.d.ts.map +1 -0
  178. package/types/math/shapes/LineQuadraticBezier.d.ts +21 -0
  179. package/types/math/shapes/LineQuadraticBezier.d.ts.map +1 -0
  180. package/types/math/shapes/Point.d.ts +85 -0
  181. package/types/math/shapes/Point.d.ts.map +1 -0
  182. package/types/math/{Point3D.d.ts → shapes/Point3D.d.ts} +4 -6
  183. package/types/math/shapes/Point3D.d.ts.map +1 -0
  184. package/types/math/{Point3Ds.d.ts → shapes/Point3Ds.d.ts} +3 -3
  185. package/types/math/shapes/Point3Ds.d.ts.map +1 -0
  186. package/types/math/shapes/Points.d.ts +28 -0
  187. package/types/math/shapes/Points.d.ts.map +1 -0
  188. package/types/math/shapes/Rabbit.d.ts +4 -3
  189. package/types/math/shapes/Rabbit.d.ts.map +1 -1
  190. package/types/math/shapes/Rect.d.ts +33 -0
  191. package/types/math/shapes/Rect.d.ts.map +1 -0
  192. package/types/math/shapes/Ring.d.ts +7 -4
  193. package/types/math/shapes/Ring.d.ts.map +1 -1
  194. package/types/math/shapes/RingIndicator.d.ts +34 -0
  195. package/types/math/shapes/RingIndicator.d.ts.map +1 -0
  196. package/types/math/shapes/Sector.d.ts +15 -4
  197. package/types/math/shapes/Sector.d.ts.map +1 -1
  198. package/types/math/shapes/Segment.d.ts +10 -3
  199. package/types/math/shapes/Segment.d.ts.map +1 -1
  200. package/types/math/shapes/Ship.d.ts +4 -2
  201. package/types/math/shapes/Ship.d.ts.map +1 -1
  202. package/types/math/shapes/Slider.d.ts +7 -13
  203. package/types/math/shapes/Slider.d.ts.map +1 -1
  204. package/types/math/shapes/Star.d.ts +5 -3
  205. package/types/math/shapes/Star.d.ts.map +1 -1
  206. package/types/math/{Text.d.ts → shapes/Text.d.ts} +3 -4
  207. package/types/math/shapes/Text.d.ts.map +1 -0
  208. package/types/math/shapes/Tip.d.ts +8 -9
  209. package/types/math/shapes/Tip.d.ts.map +1 -1
  210. package/types/math/shapes/Tree.d.ts +2 -2
  211. package/types/math/shapes/Tree.d.ts.map +1 -1
  212. package/types/math/shapes/index.d.ts +12 -0
  213. package/types/math/shapes/index.d.ts.map +1 -1
  214. package/types/patch.d.ts.map +1 -1
  215. package/types/position.d.ts +13 -16
  216. package/types/position.d.ts.map +1 -1
  217. package/types/svg/DOMSVGUtil.d.ts +1 -13
  218. package/types/svg/DOMSVGUtil.d.ts.map +1 -1
  219. package/types/svg/YZSVG.d.ts +7 -6
  220. package/types/svg/YZSVG.d.ts.map +1 -1
  221. package/types/theme.d.ts +3 -3
  222. package/types/theme.d.ts.map +1 -1
  223. package/types/YZRequestIdleCallback.d.ts +0 -14
  224. package/types/YZRequestIdleCallback.d.ts.map +0 -1
  225. package/types/animate/YZAnimate.d.ts.map +0 -1
  226. package/types/animate/requestAnimationFrameCycle.d.ts +0 -14
  227. package/types/animate/requestAnimationFrameCycle.d.ts.map +0 -1
  228. package/types/animate/tween/cubicBezierToEase.d.ts +0 -4
  229. package/types/animate/tween/cubicBezierToEase.d.ts.map +0 -1
  230. package/types/math/Arc.d.ts +0 -27
  231. package/types/math/Arc.d.ts.map +0 -1
  232. package/types/math/ComboConfetti.d.ts.map +0 -1
  233. package/types/math/CubicBezier.d.ts.map +0 -1
  234. package/types/math/Ellipse.d.ts.map +0 -1
  235. package/types/math/Light3D.d.ts.map +0 -1
  236. package/types/math/Line.d.ts +0 -28
  237. package/types/math/Line.d.ts.map +0 -1
  238. package/types/math/PathD.d.ts +0 -82
  239. package/types/math/PathD.d.ts.map +0 -1
  240. package/types/math/PathDGroup.d.ts +0 -30
  241. package/types/math/PathDGroup.d.ts.map +0 -1
  242. package/types/math/Point.d.ts +0 -58
  243. package/types/math/Point.d.ts.map +0 -1
  244. package/types/math/Point3D.d.ts.map +0 -1
  245. package/types/math/Point3Ds.d.ts.map +0 -1
  246. package/types/math/Points.d.ts +0 -23
  247. package/types/math/Points.d.ts.map +0 -1
  248. package/types/math/QuadraticBezier.d.ts +0 -26
  249. package/types/math/QuadraticBezier.d.ts.map +0 -1
  250. package/types/math/Rect.d.ts +0 -25
  251. package/types/math/Rect.d.ts.map +0 -1
  252. package/types/math/RenderGroup.d.ts +0 -18
  253. package/types/math/RenderGroup.d.ts.map +0 -1
  254. package/types/math/Text.d.ts.map +0 -1
  255. package/types/microTask.d.ts +0 -2
  256. package/types/microTask.d.ts.map +0 -1
  257. package/types/nextTick.d.ts +0 -3
  258. package/types/nextTick.d.ts.map +0 -1
  259. package/types/reactive.d.ts +0 -14
  260. package/types/reactive.d.ts.map +0 -1
  261. package/types/three/three.d.ts +0 -2
  262. package/types/three/three.d.ts.map +0 -1
@@ -1,23 +0,0 @@
1
- import { Shape } from "./Shape";
2
- import Point from "./Point";
3
- import { TSVGParsedPathData } from "../svg/DOMSVGUtil";
4
- import { YZCanvasContext } from "../canvas";
5
- export declare class Points extends Shape {
6
- points: Point[];
7
- constructor(points?: Point[]);
8
- toSVGPathData(): TSVGParsedPathData[];
9
- toCanvasContext(ctx: YZCanvasContext): void;
10
- get length(): number;
11
- addPoint(point: Point): void;
12
- getPoint(index: number): Point;
13
- isContainPoint(x: number, y: number): boolean;
14
- [Symbol.iterator](): {
15
- next: () => {
16
- value: Point | undefined;
17
- done: boolean;
18
- };
19
- };
20
- static generatePoints(centerX: number, centerY: number, sideDistance: number, sideCount: number): Points;
21
- }
22
- export default Points;
23
- //# sourceMappingURL=Points.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Points.d.ts","sourceRoot":"","sources":["../../src/math/Points.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAiB,MAAM,SAAS,CAAC;AAC/C,OAAO,KAAK,MAAM,SAAS,CAAC;AAC5B,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAM5C,qBAAa,MAAO,SAAQ,KAAK;IAC/B,MAAM,EAAE,KAAK,EAAE,CAAC;gBAEJ,MAAM,GAAE,KAAK,EAAO;IAQhC,aAAa,IAAI,kBAAkB,EAAE;IA2CrC,eAAe,CAAC,GAAG,EAAE,eAAe;IAiEpC,IAAI,MAAM,WAET;IAED,QAAQ,CAAC,KAAK,EAAE,KAAK;IAIrB,QAAQ,CAAC,KAAK,EAAE,MAAM;IAItB,cAAc,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAwCnC,CAAC,MAAM,CAAC,QAAQ,CAAC;;;;;;IAUjB,MAAM,CAAC,cAAc,CACnB,OAAO,EAAE,MAAM,EACf,OAAO,EAAE,MAAM,EACf,YAAY,EAAE,MAAM,EACpB,SAAS,EAAE,MAAM,GAChB,MAAM;CASV;AAED,eAAe,MAAM,CAAC"}
@@ -1,26 +0,0 @@
1
- import { TSVGParsedPathData } from "../svg/DOMSVGUtil";
2
- import { YZCanvasContext } from "../canvas";
3
- import { Line, TLineOptions } from "./Line";
4
- import Point from "./Point";
5
- export type TQuadraticBezierOptions = {
6
- cx: number;
7
- cy: number;
8
- x: number;
9
- y: number;
10
- isLineThrough?: boolean;
11
- } & TLineOptions;
12
- export declare class QuadraticBezier extends Line {
13
- cx: number;
14
- cy: number;
15
- isLineThrough: boolean;
16
- constructor(options: TQuadraticBezierOptions);
17
- static fromSVGPathData(data: TSVGParsedPathData, startPoint?: Point): QuadraticBezier;
18
- toSVGPathData(): TSVGParsedPathData;
19
- toCanvasContext(ctx: YZCanvasContext): void;
20
- interpolate(t: number): {
21
- x: number;
22
- y: number;
23
- };
24
- }
25
- export default QuadraticBezier;
26
- //# sourceMappingURL=QuadraticBezier.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"QuadraticBezier.d.ts","sourceRoot":"","sources":["../../src/math/QuadraticBezier.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAC5C,OAAO,KAAK,MAAM,SAAS,CAAC;AAE5B,MAAM,MAAM,uBAAuB,GAAG;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB,GAAG,YAAY,CAAC;AAIjB,qBAAa,eAAgB,SAAQ,IAAI;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,EAAE,EAAE,MAAM,CAAC;IACX,aAAa,EAAE,OAAO,CAAC;gBAElB,OAAO,EAAE,uBAAuB;IAQ5C,MAAM,CAAC,eAAe,CAAC,IAAI,EAAE,kBAAkB,EAAE,UAAU,CAAC,EAAE,KAAK;IAiBnE,aAAa,IAAI,kBAAkB;IAUnC,eAAe,CAAC,GAAG,EAAE,eAAe;IAapC,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE;CAYjD;AAED,eAAe,eAAe,CAAC"}
@@ -1,25 +0,0 @@
1
- import { Shape, TShapeOptions } from "./Shape";
2
- import { TSVGParsedPathData } from "../svg/DOMSVGUtil";
3
- import { YZCanvasContext } from "../canvas/YZCanvasContext";
4
- export type TRectOptions = {
5
- width: number;
6
- height: number;
7
- borderRadius?: number;
8
- } & TShapeOptions;
9
- export declare class Rect extends Shape {
10
- width: number;
11
- height: number;
12
- borderRadius: number;
13
- constructor(options: TRectOptions);
14
- static fromBezier(p1x: number, p1y: number, c1x: number, c1y: number, c2x: number, c2y: number, p2x: number, p2y: number): Rect;
15
- getBoundingClientRect(): Rect;
16
- toSVGPathData(): TSVGParsedPathData[];
17
- toCanvasContext(ctx: YZCanvasContext): void;
18
- eq(rect: Rect): boolean;
19
- isIntersectRect(rect: Rect): boolean;
20
- isContainPoint(x: number, y: number): boolean;
21
- clone(rect: Rect): Rect;
22
- toArray(): number[];
23
- }
24
- export default Rect;
25
- //# sourceMappingURL=Rect.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Rect.d.ts","sourceRoot":"","sources":["../../src/math/Rect.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAC/C,OAAO,EAAc,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAE5D,MAAM,MAAM,YAAY,GAAG;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,GAAG,aAAa,CAAC;AAElB,qBAAa,IAAK,SAAQ,KAAK;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,MAAM,CAAC;gBAET,OAAO,EAAE,YAAY;IAOjC,MAAM,CAAC,UAAU,CACf,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM;IAWb,qBAAqB,IAAI,IAAI;IAS7B,aAAa,IAAI,kBAAkB,EAAE;IA6DrC,eAAe,CAAC,GAAG,EAAE,eAAe;IAuBpC,EAAE,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO;IAUvB,eAAe,CAAC,IAAI,EAAE,IAAI;IAa1B,cAAc,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM;IAenC,KAAK,CAAC,IAAI,EAAE,IAAI,GAAG,IAAI;IAUvB,OAAO,IAAI,MAAM,EAAE;CAGpB;AAED,eAAe,IAAI,CAAC"}
@@ -1,18 +0,0 @@
1
- import { EventBusRaw, EventBusListeners } from "@zyzgroup/core-common";
2
- import { Shape } from "./Shape";
3
- export interface RenderGroupEventBusListeners extends EventBusListeners {
4
- }
5
- export declare class RenderGroup extends EventBusRaw<RenderGroupEventBusListeners> {
6
- shapes: Shape[];
7
- removes: (() => void)[];
8
- x: number;
9
- y: number;
10
- constructor(options?: {
11
- x?: number;
12
- y?: number;
13
- });
14
- register(...ss: Shape[]): void;
15
- destroy(): void;
16
- }
17
- export default RenderGroup;
18
- //# sourceMappingURL=RenderGroup.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RenderGroup.d.ts","sourceRoot":"","sources":["../../src/math/RenderGroup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AACvE,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAEhC,MAAM,WAAW,4BAA6B,SAAQ,iBAAiB;CAEtE;AAED,qBAAa,WAAY,SAAQ,WAAW,CAAC,4BAA4B,CAAC;IACxE,MAAM,EAAE,KAAK,EAAE,CAAM;IACd,OAAO,EAAE,CAAC,MAAM,IAAI,CAAC,EAAE,CAAM;IAE7B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;gBAEL,OAAO,CAAC,EAAE;QAAE,CAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,CAAC,EAAE,MAAM,CAAA;KAAE;IAMhD,QAAQ,CAAC,GAAG,EAAE,EAAE,KAAK,EAAE;IAqBvB,OAAO;CAGR;AAED,eAAe,WAAW,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../src/math/Text.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAC/C,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAEvD,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,qBAAa,IAAK,SAAQ,KAAK;IACtB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,SAAK;IACV,MAAM,SAAK;gBAGhB,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAC;KACd,GAAG,aAAa;IAwCnB,WAAW,IAAI,IAAI;IAInB,qBAAqB;IAIrB,aAAa,IAAI,kBAAkB,EAAE;IAIrC,eAAe,CAAC,GAAG,EAAE,eAAe;CAGrC;AAED,eAAe,IAAI,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare function microTask(cb: () => void): void;
2
- //# sourceMappingURL=microTask.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"microTask.d.ts","sourceRoot":"","sources":["../src/microTask.ts"],"names":[],"mappings":"AAAA,wBAAgB,SAAS,CAAC,EAAE,EAAE,MAAM,IAAI,QAYvC"}
@@ -1,3 +0,0 @@
1
- export declare function nextTick(cb: () => void): void;
2
- export default nextTick;
3
- //# sourceMappingURL=nextTick.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"nextTick.d.ts","sourceRoot":"","sources":["../src/nextTick.ts"],"names":[],"mappings":"AAEA,wBAAgB,QAAQ,CAAC,EAAE,EAAE,MAAM,IAAI,QAgBtC;AAED,eAAe,QAAQ,CAAC"}
@@ -1,14 +0,0 @@
1
- type Target = Record<string | number | symbol, any>;
2
- type Effect = () => void;
3
- export declare class Dep {
4
- subscribers: Set<Effect>;
5
- constructor();
6
- depend(): void;
7
- notify(): void;
8
- }
9
- export declare function watchEffect(effect: Effect): void;
10
- export declare function reactiveVue2(raw: Target): Target;
11
- export declare function reactiveVue3(raw: Target): Target;
12
- export declare const reactive: typeof reactiveVue3;
13
- export {};
14
- //# sourceMappingURL=reactive.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"reactive.d.ts","sourceRoot":"","sources":["../src/reactive.ts"],"names":[],"mappings":"AAAA,KAAK,MAAM,GAAG,MAAM,CAAC,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,GAAG,CAAC,CAAC;AACpD,KAAK,MAAM,GAAG,MAAM,IAAI,CAAC;AAIzB,qBAAa,GAAG;IACd,WAAW,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;;IAMzB,MAAM;IAMN,MAAM;CAGP;AAkBD,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,QAKzC;AAED,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,UAoBvC;AAED,wBAAgB,YAAY,CAAC,GAAG,EAAE,MAAM,UAkBvC;AAED,eAAO,MAAM,QAAQ,qBAAe,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=three.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"three.d.ts","sourceRoot":"","sources":["../../src/three/three.ts"],"names":[],"mappings":""}