@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

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.