@zyzgroup/core-web 0.1.52 → 0.1.54

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 (163) hide show
  1. package/dist/zyzgroup_core_web.iife.js +19 -20
  2. package/dist/zyzgroup_core_web.iife.js.map +1 -1
  3. package/dist/zyzgroup_core_web.js +16639 -14264
  4. package/dist/zyzgroup_core_web.js.map +1 -1
  5. package/dist/zyzgroup_core_web.umd.cjs +19 -20
  6. package/dist/zyzgroup_core_web.umd.cjs.map +1 -1
  7. package/package.json +1 -1
  8. package/types/canvas/YZCanvas.d.ts +0 -23
  9. package/types/canvas/YZCanvas.d.ts.map +1 -1
  10. package/types/canvas/index.d.ts +0 -1
  11. package/types/canvas/index.d.ts.map +1 -1
  12. package/types/hooks/index.d.ts +20 -40
  13. package/types/hooks/index.d.ts.map +1 -1
  14. package/types/hooks/useActionChannel.d.ts +18 -0
  15. package/types/hooks/useActionChannel.d.ts.map +1 -0
  16. package/types/hooks/useAttribute.d.ts +2 -0
  17. package/types/hooks/useAttribute.d.ts.map +1 -1
  18. package/types/hooks/useCoords.d.ts +1 -1
  19. package/types/hooks/useCoords.d.ts.map +1 -1
  20. package/types/hooks/useDraw/Shape.d.ts +313 -0
  21. package/types/hooks/useDraw/Shape.d.ts.map +1 -0
  22. package/types/hooks/useDraw/canvas/CustomCanvasContext.d.ts +102 -0
  23. package/types/hooks/useDraw/canvas/CustomCanvasContext.d.ts.map +1 -0
  24. package/types/hooks/useDraw/canvas/YZCanvasContext.d.ts +84 -0
  25. package/types/hooks/useDraw/canvas/YZCanvasContext.d.ts.map +1 -0
  26. package/types/hooks/useDraw/canvas/index.d.ts +3 -0
  27. package/types/hooks/useDraw/canvas/index.d.ts.map +1 -0
  28. package/types/hooks/useDraw/index.d.ts +4 -0
  29. package/types/hooks/useDraw/index.d.ts.map +1 -0
  30. package/types/hooks/useDraw/line/Arc.d.ts +25 -0
  31. package/types/hooks/useDraw/line/Arc.d.ts.map +1 -0
  32. package/types/hooks/useDraw/line/CubicBezier.d.ts +62 -0
  33. package/types/hooks/useDraw/line/CubicBezier.d.ts.map +1 -0
  34. package/types/hooks/useDraw/line/L.d.ts +33 -0
  35. package/types/hooks/useDraw/line/L.d.ts.map +1 -0
  36. package/types/hooks/useDraw/line/PathD.d.ts +66 -0
  37. package/types/hooks/useDraw/line/PathD.d.ts.map +1 -0
  38. package/types/hooks/useDraw/line/QuadraticBezier.d.ts +30 -0
  39. package/types/hooks/useDraw/line/QuadraticBezier.d.ts.map +1 -0
  40. package/types/hooks/useDraw/line/index.d.ts +6 -0
  41. package/types/hooks/useDraw/line/index.d.ts.map +1 -0
  42. package/types/hooks/useDraw/shapes/ArrowShape.d.ts +11 -0
  43. package/types/hooks/useDraw/shapes/ArrowShape.d.ts.map +1 -0
  44. package/types/hooks/useDraw/shapes/BallShape.d.ts +86 -0
  45. package/types/hooks/useDraw/shapes/BallShape.d.ts.map +1 -0
  46. package/types/hooks/useDraw/shapes/CrossShape.d.ts +7 -0
  47. package/types/hooks/useDraw/shapes/CrossShape.d.ts.map +1 -0
  48. package/types/hooks/useDraw/shapes/FoxShape.d.ts +11 -0
  49. package/types/hooks/useDraw/shapes/FoxShape.d.ts.map +1 -0
  50. package/types/hooks/useDraw/shapes/HeartShape.d.ts +15 -0
  51. package/types/hooks/useDraw/shapes/HeartShape.d.ts.map +1 -0
  52. package/types/hooks/useDraw/shapes/HeartVariantShape.d.ts +15 -0
  53. package/types/hooks/useDraw/shapes/HeartVariantShape.d.ts.map +1 -0
  54. package/types/hooks/useDraw/shapes/LineShape.d.ts +27 -0
  55. package/types/hooks/useDraw/shapes/LineShape.d.ts.map +1 -0
  56. package/types/hooks/useDraw/shapes/RabbitShape.d.ts +9 -0
  57. package/types/hooks/useDraw/shapes/RabbitShape.d.ts.map +1 -0
  58. package/types/hooks/useDraw/shapes/RectShape.d.ts +31 -0
  59. package/types/hooks/useDraw/shapes/RectShape.d.ts.map +1 -0
  60. package/types/hooks/useDraw/shapes/SegmentShapeCombo.d.ts +23 -0
  61. package/types/hooks/useDraw/shapes/SegmentShapeCombo.d.ts.map +1 -0
  62. package/types/hooks/useDraw/shapes/ShipShapeCombo.d.ts +12 -0
  63. package/types/hooks/useDraw/shapes/ShipShapeCombo.d.ts.map +1 -0
  64. package/types/hooks/useDraw/shapes/SliderShapeCombo.d.ts +21 -0
  65. package/types/hooks/useDraw/shapes/SliderShapeCombo.d.ts.map +1 -0
  66. package/types/hooks/useDraw/shapes/StarShape.d.ts +13 -0
  67. package/types/hooks/useDraw/shapes/StarShape.d.ts.map +1 -0
  68. package/types/hooks/useDraw/shapes/TreeShapeCombo.d.ts +7 -0
  69. package/types/hooks/useDraw/shapes/TreeShapeCombo.d.ts.map +1 -0
  70. package/types/hooks/useDraw/shapes/index.d.ts +15 -0
  71. package/types/hooks/useDraw/shapes/index.d.ts.map +1 -0
  72. package/types/hooks/useDraw/svg/SVGParse.d.ts +16 -0
  73. package/types/hooks/useDraw/svg/SVGParse.d.ts.map +1 -0
  74. package/types/hooks/useDraw/svg/SVGUtil.d.ts +17 -0
  75. package/types/hooks/useDraw/svg/SVGUtil.d.ts.map +1 -0
  76. package/types/hooks/useDraw/svg/index.d.ts +4 -0
  77. package/types/hooks/useDraw/svg/index.d.ts.map +1 -0
  78. package/types/hooks/useDraw/svg/line2c.d.ts +5 -0
  79. package/types/hooks/useDraw/svg/line2c.d.ts.map +1 -0
  80. package/types/hooks/useDraw/useDraw.d.ts +19 -0
  81. package/types/hooks/useDraw/useDraw.d.ts.map +1 -0
  82. package/types/hooks/useElement.d.ts +79 -38
  83. package/types/hooks/useElement.d.ts.map +1 -1
  84. package/types/hooks/useElementEventBus.d.ts +21 -1
  85. package/types/hooks/useElementEventBus.d.ts.map +1 -1
  86. package/types/hooks/useElementEvents.d.ts +226 -0
  87. package/types/hooks/useElementEvents.d.ts.map +1 -0
  88. package/types/hooks/useEventListener.d.ts +9 -4
  89. package/types/hooks/useEventListener.d.ts.map +1 -1
  90. package/types/hooks/useIntersection.d.ts +2 -0
  91. package/types/hooks/useIntersection.d.ts.map +1 -1
  92. package/types/hooks/useMatchMedia.d.ts +3 -0
  93. package/types/hooks/useMatchMedia.d.ts.map +1 -0
  94. package/types/hooks/useMessageChannel.d.ts +17 -0
  95. package/types/hooks/useMessageChannel.d.ts.map +1 -0
  96. package/types/hooks/useResize.d.ts.map +1 -1
  97. package/types/hooks/useStyle.d.ts +1 -1
  98. package/types/hooks/useStyle.d.ts.map +1 -1
  99. package/types/hooks/useTheme.d.ts +4 -3
  100. package/types/hooks/useTheme.d.ts.map +1 -1
  101. package/types/hooks/useVisible.d.ts +5 -9
  102. package/types/hooks/useVisible.d.ts.map +1 -1
  103. package/types/index.d.ts +0 -1
  104. package/types/index.d.ts.map +1 -1
  105. package/types/math/BufferAttribute.d.ts +0 -15
  106. package/types/math/BufferAttribute.d.ts.map +1 -1
  107. package/types/math/index.d.ts +0 -4
  108. package/types/math/index.d.ts.map +1 -1
  109. package/types/math/line/PathD.d.ts.map +1 -1
  110. package/types/math/math.d.ts +0 -1
  111. package/types/math/math.d.ts.map +1 -1
  112. package/types/svg/YZSVG.d.ts +0 -34
  113. package/types/svg/YZSVG.d.ts.map +1 -1
  114. package/types/svg/index.d.ts +0 -1
  115. package/types/svg/index.d.ts.map +1 -1
  116. package/types/hooks/onDocumentReady.d.ts +0 -3
  117. package/types/hooks/onDocumentReady.d.ts.map +0 -1
  118. package/types/hooks/useClass.d.ts +0 -6
  119. package/types/hooks/useClass.d.ts.map +0 -1
  120. package/types/hooks/useClickA.d.ts +0 -2
  121. package/types/hooks/useClickA.d.ts.map +0 -1
  122. package/types/hooks/useClipboard.d.ts +0 -2
  123. package/types/hooks/useClipboard.d.ts.map +0 -1
  124. package/types/hooks/useDisplay.d.ts +0 -5
  125. package/types/hooks/useDisplay.d.ts.map +0 -1
  126. package/types/hooks/useDragDrop.d.ts +0 -12
  127. package/types/hooks/useDragDrop.d.ts.map +0 -1
  128. package/types/hooks/useFireEvent.d.ts +0 -7
  129. package/types/hooks/useFireEvent.d.ts.map +0 -1
  130. package/types/hooks/useHotKey.d.ts +0 -33
  131. package/types/hooks/useHotKey.d.ts.map +0 -1
  132. package/types/hooks/useHotKeyFile.d.ts +0 -8
  133. package/types/hooks/useHotKeyFile.d.ts.map +0 -1
  134. package/types/hooks/useIframe.d.ts +0 -2
  135. package/types/hooks/useIframe.d.ts.map +0 -1
  136. package/types/hooks/useLoadImage.d.ts +0 -9
  137. package/types/hooks/useLoadImage.d.ts.map +0 -1
  138. package/types/hooks/useLoadLink.d.ts +0 -3
  139. package/types/hooks/useLoadLink.d.ts.map +0 -1
  140. package/types/hooks/useLoadScript.d.ts +0 -2
  141. package/types/hooks/useLoadScript.d.ts.map +0 -1
  142. package/types/hooks/useMedia.d.ts +0 -4
  143. package/types/hooks/useMedia.d.ts.map +0 -1
  144. package/types/hooks/useMouse.d.ts +0 -32
  145. package/types/hooks/useMouse.d.ts.map +0 -1
  146. package/types/hooks/useObjectURL.d.ts +0 -3
  147. package/types/hooks/useObjectURL.d.ts.map +0 -1
  148. package/types/hooks/usePressDownMove.d.ts +0 -13
  149. package/types/hooks/usePressDownMove.d.ts.map +0 -1
  150. package/types/hooks/usePull.d.ts +0 -4
  151. package/types/hooks/usePull.d.ts.map +0 -1
  152. package/types/hooks/useRunInSandbox.d.ts +0 -2
  153. package/types/hooks/useRunInSandbox.d.ts.map +0 -1
  154. package/types/hooks/useScroll.d.ts +0 -4
  155. package/types/hooks/useScroll.d.ts.map +0 -1
  156. package/types/hooks/useSelectFile.d.ts +0 -18
  157. package/types/hooks/useSelectFile.d.ts.map +0 -1
  158. package/types/hooks/useVibrate.d.ts +0 -2
  159. package/types/hooks/useVibrate.d.ts.map +0 -1
  160. package/types/hooks/useWindow.d.ts +0 -5
  161. package/types/hooks/useWindow.d.ts.map +0 -1
  162. package/types/position.d.ts +0 -65
  163. package/types/position.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.