@shopify/react-native-skia 0.1.128 → 0.1.131

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1659) hide show
  1. package/README.md +8 -0
  2. package/android/cpp/jni/JniSkiaDrawView.cpp +3 -2
  3. package/android/cpp/rnskia-android/SkiaOpenGLRenderer.h +1 -0
  4. package/android/src/main/java/com/shopify/reactnative/skia/SkiaDrawView.java +2 -1
  5. package/cpp/api/JsiSkCanvas.h +2 -2
  6. package/cpp/api/JsiSkMatrix.h +40 -27
  7. package/cpp/api/JsiSkPaint.h +3 -1
  8. package/cpp/api/JsiSkPath.h +67 -61
  9. package/cpp/api/JsiSkPathFactory.h +14 -1
  10. package/cpp/api/JsiSkRuntimeEffect.h +7 -9
  11. package/cpp/api/JsiSkRuntimeShaderBuilder.h +18 -0
  12. package/cpp/api/JsiSkTypeface.h +11 -2
  13. package/cpp/api/JsiSkTypefaceFactory.h +5 -1
  14. package/cpp/api/JsiSkVertices.h +0 -2
  15. package/cpp/rnskia/RNSkInfoParameter.h +2 -0
  16. package/cpp/rnskia/values/RNSkValue.h +1 -1
  17. package/cpp/skia/include/codec/SkCodec.h +7 -1
  18. package/cpp/skia/include/core/SkAlphaType.h +45 -0
  19. package/cpp/skia/include/core/SkBitmap.h +4 -2
  20. package/cpp/skia/include/core/SkCanvas.h +31 -20
  21. package/cpp/skia/include/core/SkColor.h +1 -1
  22. package/cpp/skia/include/core/SkColorFilter.h +1 -0
  23. package/cpp/skia/include/core/SkColorType.h +66 -0
  24. package/cpp/skia/include/core/SkDeferredDisplayListRecorder.h +1 -1
  25. package/cpp/skia/include/core/SkDrawable.h +7 -0
  26. package/cpp/skia/include/core/SkEncodedImageFormat.h +1 -0
  27. package/cpp/skia/include/core/SkFont.h +4 -3
  28. package/cpp/skia/include/core/SkFontArguments.h +33 -1
  29. package/cpp/skia/include/core/SkGraphics.h +13 -0
  30. package/cpp/skia/include/core/SkImage.h +67 -22
  31. package/cpp/skia/include/core/SkImageEncoder.h +0 -3
  32. package/cpp/skia/include/core/SkImageGenerator.h +4 -3
  33. package/cpp/skia/include/core/SkImageInfo.h +35 -142
  34. package/cpp/skia/include/core/SkMesh.h +303 -0
  35. package/cpp/skia/include/core/SkMilestone.h +1 -1
  36. package/cpp/skia/include/core/SkOpenTypeSVGDecoder.h +30 -0
  37. package/cpp/skia/include/core/SkPaint.h +4 -19
  38. package/cpp/skia/include/core/SkPath.h +20 -33
  39. package/cpp/skia/include/core/SkPathBuilder.h +1 -6
  40. package/cpp/skia/include/core/SkPixelRef.h +1 -1
  41. package/cpp/skia/include/core/SkPixmap.h +3 -2
  42. package/cpp/skia/include/core/SkRSXform.h +1 -1
  43. package/cpp/skia/include/core/SkSamplingOptions.h +16 -5
  44. package/cpp/skia/include/core/SkSpan.h +5 -5
  45. package/cpp/skia/include/core/SkString.h +5 -8
  46. package/cpp/skia/include/core/SkSurface.h +21 -0
  47. package/cpp/skia/include/core/SkTypeface.h +20 -4
  48. package/cpp/skia/include/core/SkTypes.h +9 -5
  49. package/cpp/skia/include/effects/SkGradientShader.h +9 -18
  50. package/cpp/skia/include/effects/SkRuntimeEffect.h +16 -12
  51. package/cpp/skia/include/gpu/GpuTypes.h +32 -0
  52. package/cpp/skia/include/gpu/GrBackendSemaphore.h +1 -1
  53. package/cpp/skia/include/gpu/GrBackendSurface.h +6 -5
  54. package/cpp/skia/include/gpu/GrBackendSurfaceMutableState.h +1 -1
  55. package/cpp/skia/include/gpu/GrContextOptions.h +11 -20
  56. package/cpp/skia/include/gpu/GrContextThreadSafeProxy.h +7 -0
  57. package/cpp/skia/include/gpu/GrDirectContext.h +16 -11
  58. package/cpp/skia/include/gpu/GrDriverBugWorkaroundsAutogen.h +0 -2
  59. package/cpp/skia/include/gpu/GrRecordingContext.h +14 -7
  60. package/cpp/skia/include/gpu/GrSurfaceInfo.h +6 -6
  61. package/cpp/skia/include/gpu/dawn/GrDawnTypes.h +1 -1
  62. package/cpp/skia/include/gpu/gl/GrGLFunctions.h +3 -1
  63. package/cpp/skia/include/gpu/gl/GrGLInterface.h +2 -2
  64. package/cpp/skia/include/gpu/graphite/BackendTexture.h +64 -0
  65. package/cpp/skia/include/gpu/graphite/Context.h +124 -0
  66. package/cpp/skia/include/gpu/graphite/GraphiteTypes.h +71 -0
  67. package/cpp/skia/include/gpu/graphite/Recorder.h +104 -0
  68. package/cpp/skia/include/gpu/graphite/Recording.h +39 -0
  69. package/cpp/skia/include/gpu/graphite/SkStuff.h +47 -0
  70. package/cpp/skia/include/gpu/graphite/TextureInfo.h +91 -0
  71. package/cpp/skia/include/gpu/graphite/mtl/MtlBackendContext.h +24 -0
  72. package/cpp/skia/include/gpu/graphite/mtl/MtlTypes.h +68 -0
  73. package/cpp/skia/include/gpu/mock/GrMockTypes.h +1 -2
  74. package/cpp/skia/include/ports/SkCFObject.h +0 -4
  75. package/cpp/skia/include/ports/SkTypeface_win.h +2 -2
  76. package/cpp/skia/include/private/SingleOwner.h +72 -0
  77. package/cpp/skia/include/private/SkChecksum.h +11 -0
  78. package/cpp/skia/include/private/SkEncodedInfo.h +22 -5
  79. package/cpp/skia/include/private/SkFloatingPoint.h +0 -53
  80. package/cpp/skia/include/private/SkImageInfoPriv.h +8 -2
  81. package/cpp/skia/include/private/SkMacros.h +13 -18
  82. package/cpp/skia/include/private/SkMutex.h +8 -0
  83. package/cpp/skia/include/private/SkPathRef.h +2 -16
  84. package/cpp/skia/include/private/SkSLDefines.h +9 -1
  85. package/cpp/skia/include/private/SkSLIRNode.h +6 -5
  86. package/cpp/skia/include/private/SkSLLayout.h +11 -10
  87. package/cpp/skia/include/private/SkSLModifiers.h +4 -3
  88. package/cpp/skia/include/private/SkSLProgramElement.h +2 -2
  89. package/cpp/skia/include/private/SkSLProgramKind.h +8 -5
  90. package/cpp/skia/include/private/SkSLStatement.h +2 -3
  91. package/cpp/skia/include/private/SkSLString.h +17 -56
  92. package/cpp/skia/include/private/SkSLSymbol.h +4 -4
  93. package/cpp/skia/include/private/SkShadowFlags.h +3 -1
  94. package/cpp/skia/include/private/SkStringView.h +47 -0
  95. package/cpp/skia/include/private/SkTArray.h +4 -3
  96. package/cpp/skia/include/private/SkTHash.h +66 -24
  97. package/cpp/skia/include/private/SkTLogic.h +2 -32
  98. package/cpp/skia/include/private/SkTemplates.h +2 -2
  99. package/cpp/skia/include/private/SkThreadAnnotations.h +4 -4
  100. package/cpp/skia/include/private/SkVx.h +28 -28
  101. package/cpp/skia/include/private/chromium/GrSlug.h +40 -3
  102. package/cpp/skia/include/private/chromium/SkChromeRemoteGlyphCache.h +12 -6
  103. package/cpp/skia/include/private/gpu/ganesh/GrContext_Base.h +99 -0
  104. package/cpp/skia/include/private/{GrD3DTypesMinimal.h → gpu/ganesh/GrD3DTypesMinimal.h} +0 -0
  105. package/cpp/skia/include/private/{GrDawnTypesPriv.h → gpu/ganesh/GrDawnTypesPriv.h} +0 -0
  106. package/cpp/skia/include/private/gpu/ganesh/GrGLTypesPriv.h +108 -0
  107. package/cpp/skia/include/private/gpu/ganesh/GrImageContext.h +55 -0
  108. package/cpp/skia/include/private/{GrMockTypesPriv.h → gpu/ganesh/GrMockTypesPriv.h} +0 -0
  109. package/cpp/skia/include/private/{GrMtlTypesPriv.h → gpu/ganesh/GrMtlTypesPriv.h} +0 -0
  110. package/cpp/skia/include/private/gpu/ganesh/GrTypesPriv.h +1012 -0
  111. package/cpp/skia/include/private/{GrVkTypesPriv.h → gpu/ganesh/GrVkTypesPriv.h} +0 -0
  112. package/cpp/skia/include/private/gpu/graphite/MtlTypesPriv.h +74 -0
  113. package/cpp/skia/include/sksl/DSL.h +4 -0
  114. package/cpp/skia/include/sksl/DSLBlock.h +8 -3
  115. package/cpp/skia/include/sksl/DSLCase.h +6 -6
  116. package/cpp/skia/include/sksl/DSLCore.h +89 -78
  117. package/cpp/skia/include/sksl/DSLExpression.h +78 -45
  118. package/cpp/skia/include/sksl/DSLFunction.h +23 -18
  119. package/cpp/skia/include/sksl/DSLLayout.h +14 -16
  120. package/cpp/skia/include/sksl/DSLModifiers.h +7 -5
  121. package/cpp/skia/include/sksl/DSLRuntimeEffects.h +1 -1
  122. package/cpp/skia/include/sksl/DSLStatement.h +16 -10
  123. package/cpp/skia/include/sksl/DSLSymbols.h +7 -7
  124. package/cpp/skia/include/sksl/DSLType.h +27 -23
  125. package/cpp/skia/include/sksl/DSLVar.h +72 -61
  126. package/cpp/skia/include/sksl/SkSLErrorReporter.h +12 -49
  127. package/cpp/skia/include/sksl/SkSLOperator.h +151 -0
  128. package/cpp/skia/include/sksl/SkSLPosition.h +102 -0
  129. package/cpp/skia/include/svg/SkSVGCanvas.h +5 -1
  130. package/cpp/skia/include/utils/SkAnimCodecPlayer.h +7 -0
  131. package/cpp/skia/include/utils/SkCamera.h +2 -0
  132. package/cpp/skia/include/utils/SkCanvasStateUtils.h +4 -1
  133. package/cpp/skia/include/utils/SkCustomTypeface.h +6 -4
  134. package/cpp/skia/include/utils/SkNWayCanvas.h +34 -0
  135. package/cpp/skia/include/utils/SkNullCanvas.h +5 -1
  136. package/cpp/skia/include/utils/SkOrderedFontMgr.h +12 -0
  137. package/cpp/skia/include/utils/SkPaintFilterCanvas.h +30 -1
  138. package/cpp/skia/include/utils/SkParse.h +2 -0
  139. package/cpp/skia/include/utils/SkShadowUtils.h +3 -2
  140. package/cpp/skia/include/utils/SkTextUtils.h +8 -4
  141. package/cpp/skia/modules/svg/include/SkSVGAttributeParser.h +27 -1
  142. package/cpp/skia/modules/svg/include/SkSVGDOM.h +4 -0
  143. package/cpp/skia/modules/svg/include/SkSVGOpenTypeSVGDecoder.h +32 -0
  144. package/cpp/skia/modules/svg/include/SkSVGRenderContext.h +3 -3
  145. package/cpp/skia/modules/svg/include/SkSVGSVG.h +2 -0
  146. package/cpp/skia/modules/svg/include/SkSVGTypes.h +48 -9
  147. package/cpp/utils/RNSkLog.h +22 -0
  148. package/ios/RNSkia-iOS/PlatformContext.h +1 -1
  149. package/ios/RNSkia-iOS/RNSkDrawViewImpl.mm +1 -0
  150. package/ios/RNSkia-iOS/SkiaDrawView.mm +3 -2
  151. package/lib/commonjs/animation/decay/runDecay.js.map +1 -1
  152. package/lib/commonjs/animation/functions/index.js +47 -17
  153. package/lib/commonjs/animation/functions/index.js.map +1 -1
  154. package/lib/commonjs/animation/functions/interpolateColors.js.map +1 -1
  155. package/lib/commonjs/animation/functions/interpolatePaths.js +45 -0
  156. package/lib/commonjs/animation/functions/interpolatePaths.js.map +1 -0
  157. package/lib/commonjs/animation/functions/interpolateVector.js +20 -0
  158. package/lib/commonjs/animation/functions/interpolateVector.js.map +1 -0
  159. package/lib/commonjs/animation/spring/runSpring.js.map +1 -1
  160. package/lib/commonjs/animation/spring/useSpring.js.map +1 -1
  161. package/lib/commonjs/animation/timing/createTiming.js.map +1 -1
  162. package/lib/commonjs/animation/timing/runTiming.js.map +1 -1
  163. package/lib/commonjs/animation/timing/useTiming.js.map +1 -1
  164. package/lib/commonjs/index.js +13 -0
  165. package/lib/commonjs/index.js.map +1 -1
  166. package/lib/commonjs/renderer/Canvas.js +18 -36
  167. package/lib/commonjs/renderer/Canvas.js.map +1 -1
  168. package/lib/commonjs/renderer/DependencyManager.js.map +1 -1
  169. package/lib/commonjs/renderer/HostConfig.js +2 -2
  170. package/lib/commonjs/renderer/HostConfig.js.map +1 -1
  171. package/lib/commonjs/renderer/components/Blend.js +10 -9
  172. package/lib/commonjs/renderer/components/Blend.js.map +1 -1
  173. package/lib/commonjs/renderer/components/Compose.js +9 -10
  174. package/lib/commonjs/renderer/components/Compose.js.map +1 -1
  175. package/lib/commonjs/renderer/components/Group.js +7 -6
  176. package/lib/commonjs/renderer/components/Group.js.map +1 -1
  177. package/lib/commonjs/renderer/components/Mask.js +13 -10
  178. package/lib/commonjs/renderer/components/Mask.js.map +1 -1
  179. package/lib/commonjs/renderer/components/Paint.js +7 -4
  180. package/lib/commonjs/renderer/components/Paint.js.map +1 -1
  181. package/lib/commonjs/renderer/components/Picture.js.map +1 -1
  182. package/lib/commonjs/renderer/components/backdrop/BackdropFilter.js +1 -1
  183. package/lib/commonjs/renderer/components/backdrop/BackdropFilter.js.map +1 -1
  184. package/lib/commonjs/renderer/components/colorFilters/BlendColor.js +7 -6
  185. package/lib/commonjs/renderer/components/colorFilters/BlendColor.js.map +1 -1
  186. package/lib/commonjs/renderer/components/colorFilters/Compose.js +6 -6
  187. package/lib/commonjs/renderer/components/colorFilters/Compose.js.map +1 -1
  188. package/lib/commonjs/renderer/components/colorFilters/Lerp.js +8 -9
  189. package/lib/commonjs/renderer/components/colorFilters/Lerp.js.map +1 -1
  190. package/lib/commonjs/renderer/components/colorFilters/LinearToSRGBGamma.js +6 -6
  191. package/lib/commonjs/renderer/components/colorFilters/LinearToSRGBGamma.js.map +1 -1
  192. package/lib/commonjs/renderer/components/colorFilters/LumaColorFilter.js +6 -6
  193. package/lib/commonjs/renderer/components/colorFilters/LumaColorFilter.js.map +1 -1
  194. package/lib/commonjs/renderer/components/colorFilters/Matrix.js +6 -7
  195. package/lib/commonjs/renderer/components/colorFilters/Matrix.js.map +1 -1
  196. package/lib/commonjs/renderer/components/colorFilters/SRGBToLinearGamma.js +6 -6
  197. package/lib/commonjs/renderer/components/colorFilters/SRGBToLinearGamma.js.map +1 -1
  198. package/lib/commonjs/renderer/components/image/BoxFit.js +7 -9
  199. package/lib/commonjs/renderer/components/image/BoxFit.js.map +1 -1
  200. package/lib/commonjs/renderer/components/image/Image.js +3 -2
  201. package/lib/commonjs/renderer/components/image/Image.js.map +1 -1
  202. package/lib/commonjs/renderer/components/image/ImageSVG.js +3 -2
  203. package/lib/commonjs/renderer/components/image/ImageSVG.js.map +1 -1
  204. package/lib/commonjs/renderer/components/image/ImageShader.js +9 -6
  205. package/lib/commonjs/renderer/components/image/ImageShader.js.map +1 -1
  206. package/lib/commonjs/renderer/components/imageFilters/Blur.js +7 -4
  207. package/lib/commonjs/renderer/components/imageFilters/Blur.js.map +1 -1
  208. package/lib/commonjs/renderer/components/imageFilters/DisplacementMap.js +10 -9
  209. package/lib/commonjs/renderer/components/imageFilters/DisplacementMap.js.map +1 -1
  210. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js +10 -15
  211. package/lib/commonjs/renderer/components/imageFilters/InnerShadow.js.map +1 -1
  212. package/lib/commonjs/renderer/components/imageFilters/Morphology.js +7 -6
  213. package/lib/commonjs/renderer/components/imageFilters/Morphology.js.map +1 -1
  214. package/lib/commonjs/renderer/components/imageFilters/Offset.js +5 -4
  215. package/lib/commonjs/renderer/components/imageFilters/Offset.js.map +1 -1
  216. package/lib/commonjs/renderer/components/imageFilters/RuntimeShader.js +13 -6
  217. package/lib/commonjs/renderer/components/imageFilters/RuntimeShader.js.map +1 -1
  218. package/lib/commonjs/renderer/components/imageFilters/Shadow.js +7 -8
  219. package/lib/commonjs/renderer/components/imageFilters/Shadow.js.map +1 -1
  220. package/lib/commonjs/renderer/components/imageFilters/getInput.js +7 -7
  221. package/lib/commonjs/renderer/components/imageFilters/getInput.js.map +1 -1
  222. package/lib/commonjs/renderer/components/maskFilters/Blur.js +6 -5
  223. package/lib/commonjs/renderer/components/maskFilters/Blur.js.map +1 -1
  224. package/lib/commonjs/renderer/components/pathEffects/Corner.js +8 -8
  225. package/lib/commonjs/renderer/components/pathEffects/Corner.js.map +1 -1
  226. package/lib/commonjs/renderer/components/pathEffects/Dash.js +8 -8
  227. package/lib/commonjs/renderer/components/pathEffects/Dash.js.map +1 -1
  228. package/lib/commonjs/renderer/components/pathEffects/Discrete.js +8 -8
  229. package/lib/commonjs/renderer/components/pathEffects/Discrete.js.map +1 -1
  230. package/lib/commonjs/renderer/components/pathEffects/Line2D.js +8 -8
  231. package/lib/commonjs/renderer/components/pathEffects/Line2D.js.map +1 -1
  232. package/lib/commonjs/renderer/components/pathEffects/Path1D.js +8 -8
  233. package/lib/commonjs/renderer/components/pathEffects/Path1D.js.map +1 -1
  234. package/lib/commonjs/renderer/components/pathEffects/Path2D.js +8 -8
  235. package/lib/commonjs/renderer/components/pathEffects/Path2D.js.map +1 -1
  236. package/lib/commonjs/renderer/components/pathEffects/Sum.js +7 -6
  237. package/lib/commonjs/renderer/components/pathEffects/Sum.js.map +1 -1
  238. package/lib/commonjs/renderer/components/shaders/Color.js +7 -4
  239. package/lib/commonjs/renderer/components/shaders/Color.js.map +1 -1
  240. package/lib/commonjs/renderer/components/shaders/FractalNoise.js +5 -4
  241. package/lib/commonjs/renderer/components/shaders/FractalNoise.js.map +1 -1
  242. package/lib/commonjs/renderer/components/shaders/Gradient.js +5 -5
  243. package/lib/commonjs/renderer/components/shaders/Gradient.js.map +1 -1
  244. package/lib/commonjs/renderer/components/shaders/LinearGradient.js +6 -5
  245. package/lib/commonjs/renderer/components/shaders/LinearGradient.js.map +1 -1
  246. package/lib/commonjs/renderer/components/shaders/RadialGradient.js +6 -5
  247. package/lib/commonjs/renderer/components/shaders/RadialGradient.js.map +1 -1
  248. package/lib/commonjs/renderer/components/shaders/Shader.js +6 -44
  249. package/lib/commonjs/renderer/components/shaders/Shader.js.map +1 -1
  250. package/lib/commonjs/renderer/components/shaders/SweepGradient.js +6 -5
  251. package/lib/commonjs/renderer/components/shaders/SweepGradient.js.map +1 -1
  252. package/lib/commonjs/renderer/components/shaders/Turbulence.js +5 -4
  253. package/lib/commonjs/renderer/components/shaders/Turbulence.js.map +1 -1
  254. package/lib/commonjs/renderer/components/shaders/TwoPointConicalGradient.js +6 -5
  255. package/lib/commonjs/renderer/components/shaders/TwoPointConicalGradient.js.map +1 -1
  256. package/lib/commonjs/renderer/components/shapes/Box.js +26 -29
  257. package/lib/commonjs/renderer/components/shapes/Box.js.map +1 -1
  258. package/lib/commonjs/renderer/components/shapes/Circle.js +7 -5
  259. package/lib/commonjs/renderer/components/shapes/Circle.js.map +1 -1
  260. package/lib/commonjs/renderer/components/shapes/DiffRect.js.map +1 -1
  261. package/lib/commonjs/renderer/components/shapes/FitBox.js.map +1 -1
  262. package/lib/commonjs/renderer/components/shapes/Line.js.map +1 -1
  263. package/lib/commonjs/renderer/components/shapes/Oval.js +3 -2
  264. package/lib/commonjs/renderer/components/shapes/Oval.js.map +1 -1
  265. package/lib/commonjs/renderer/components/shapes/Patch.js +7 -6
  266. package/lib/commonjs/renderer/components/shapes/Patch.js.map +1 -1
  267. package/lib/commonjs/renderer/components/shapes/Path.js +5 -4
  268. package/lib/commonjs/renderer/components/shapes/Path.js.map +1 -1
  269. package/lib/commonjs/renderer/components/shapes/Points.js +2 -2
  270. package/lib/commonjs/renderer/components/shapes/Points.js.map +1 -1
  271. package/lib/commonjs/renderer/components/shapes/Rect.js +3 -2
  272. package/lib/commonjs/renderer/components/shapes/Rect.js.map +1 -1
  273. package/lib/commonjs/renderer/components/shapes/RoundedRect.js +3 -2
  274. package/lib/commonjs/renderer/components/shapes/RoundedRect.js.map +1 -1
  275. package/lib/commonjs/renderer/components/shapes/Vertices.js +9 -8
  276. package/lib/commonjs/renderer/components/shapes/Vertices.js.map +1 -1
  277. package/lib/commonjs/renderer/components/text/Glyphs.js +3 -2
  278. package/lib/commonjs/renderer/components/text/Glyphs.js.map +1 -1
  279. package/lib/commonjs/renderer/components/text/Text.js +3 -2
  280. package/lib/commonjs/renderer/components/text/Text.js.map +1 -1
  281. package/lib/commonjs/renderer/components/text/TextBlob.js.map +1 -1
  282. package/lib/commonjs/renderer/components/text/TextPath.js +7 -11
  283. package/lib/commonjs/renderer/components/text/TextPath.js.map +1 -1
  284. package/lib/commonjs/renderer/index.js +26 -13
  285. package/lib/commonjs/renderer/index.js.map +1 -1
  286. package/lib/commonjs/renderer/nodes/Declaration.js.map +1 -1
  287. package/lib/commonjs/renderer/nodes/Drawing.js +5 -5
  288. package/lib/commonjs/renderer/nodes/Drawing.js.map +1 -1
  289. package/lib/commonjs/renderer/nodes/Node.js.map +1 -1
  290. package/lib/commonjs/renderer/processors/Animations/Animations.js.map +1 -1
  291. package/lib/commonjs/renderer/processors/Circles.js +2 -4
  292. package/lib/commonjs/renderer/processors/Circles.js.map +1 -1
  293. package/lib/commonjs/renderer/processors/Clips.js +5 -5
  294. package/lib/commonjs/renderer/processors/Clips.js.map +1 -1
  295. package/lib/commonjs/renderer/processors/Color.js +27 -0
  296. package/lib/commonjs/renderer/processors/Color.js.map +1 -0
  297. package/lib/commonjs/renderer/processors/Font.js +4 -4
  298. package/lib/commonjs/renderer/processors/Font.js.map +1 -1
  299. package/lib/commonjs/renderer/processors/Paint.js +18 -14
  300. package/lib/commonjs/renderer/processors/Paint.js.map +1 -1
  301. package/lib/commonjs/renderer/processors/Paths.js +4 -4
  302. package/lib/commonjs/renderer/processors/Paths.js.map +1 -1
  303. package/lib/commonjs/renderer/processors/Radius.js +2 -4
  304. package/lib/commonjs/renderer/processors/Radius.js.map +1 -1
  305. package/lib/commonjs/renderer/processors/Rects.js +9 -56
  306. package/lib/commonjs/renderer/processors/Rects.js.map +1 -1
  307. package/lib/commonjs/renderer/processors/Transform.js +26 -17
  308. package/lib/commonjs/renderer/processors/Transform.js.map +1 -1
  309. package/lib/commonjs/renderer/processors/index.js +26 -13
  310. package/lib/commonjs/renderer/processors/index.js.map +1 -1
  311. package/lib/commonjs/renderer/processors/math/Coordinates.js.map +1 -1
  312. package/lib/commonjs/renderer/processors/math/Transforms.js.map +1 -1
  313. package/lib/commonjs/renderer/processors/math/index.js +0 -26
  314. package/lib/commonjs/renderer/processors/math/index.js.map +1 -1
  315. package/lib/commonjs/renderer/useCanvas.js +30 -0
  316. package/lib/commonjs/renderer/useCanvas.js.map +1 -0
  317. package/lib/commonjs/skia/NativeSetup.js +1 -1
  318. package/lib/commonjs/skia/NativeSetup.js.map +1 -1
  319. package/lib/commonjs/skia/Skia.js +2 -36
  320. package/lib/commonjs/skia/Skia.js.map +1 -1
  321. package/lib/commonjs/skia/Skia.web.js +12 -0
  322. package/lib/commonjs/skia/Skia.web.js.map +1 -0
  323. package/lib/commonjs/skia/core/Data.js +79 -0
  324. package/lib/commonjs/skia/core/Data.js.map +1 -0
  325. package/lib/commonjs/skia/core/Font.js +34 -0
  326. package/lib/commonjs/skia/core/Font.js.map +1 -0
  327. package/lib/commonjs/skia/core/Image.js +18 -0
  328. package/lib/commonjs/skia/core/Image.js.map +1 -0
  329. package/lib/commonjs/skia/core/Matrix.js +15 -0
  330. package/lib/commonjs/skia/core/Matrix.js.map +1 -0
  331. package/lib/commonjs/skia/core/Paint.js +28 -0
  332. package/lib/commonjs/skia/core/Paint.js.map +1 -0
  333. package/lib/commonjs/skia/core/Path.js +72 -0
  334. package/lib/commonjs/skia/core/Path.js.map +1 -0
  335. package/lib/commonjs/skia/core/Picture.js +30 -0
  336. package/lib/commonjs/skia/core/Picture.js.map +1 -0
  337. package/lib/commonjs/skia/core/RRect.js +13 -0
  338. package/lib/commonjs/skia/core/RRect.js.map +1 -0
  339. package/lib/commonjs/skia/core/Rect.js +47 -0
  340. package/lib/commonjs/skia/core/Rect.js.map +1 -0
  341. package/lib/commonjs/skia/core/SVG.js +15 -0
  342. package/lib/commonjs/skia/core/SVG.js.map +1 -0
  343. package/lib/commonjs/skia/core/Typeface.js +18 -0
  344. package/lib/commonjs/skia/core/Typeface.js.map +1 -0
  345. package/lib/commonjs/skia/core/Vector.js +49 -0
  346. package/lib/commonjs/skia/core/Vector.js.map +1 -0
  347. package/lib/commonjs/skia/core/index.js +162 -0
  348. package/lib/commonjs/skia/core/index.js.map +1 -0
  349. package/lib/commonjs/skia/index.js +8 -302
  350. package/lib/commonjs/skia/index.js.map +1 -1
  351. package/lib/commonjs/skia/{Canvas.js → types/Canvas.js} +0 -0
  352. package/lib/commonjs/skia/{Canvas.js.map → types/Canvas.js.map} +0 -0
  353. package/lib/commonjs/skia/types/Color.js +2 -0
  354. package/lib/commonjs/skia/{ColorFilter/ColorFilterFactory.js.map → types/Color.js.map} +0 -0
  355. package/lib/commonjs/skia/{ColorFilter → types/ColorFilter}/ColorFilter.js +0 -0
  356. package/lib/commonjs/skia/{ColorFilter → types/ColorFilter}/ColorFilter.js.map +0 -0
  357. package/lib/commonjs/skia/{ColorFilter → types/ColorFilter}/ColorFilterFactory.js +0 -0
  358. package/lib/{module/skia → commonjs/skia/types}/ColorFilter/ColorFilterFactory.js.map +0 -0
  359. package/lib/commonjs/skia/{ColorFilter → types/ColorFilter}/index.js +0 -0
  360. package/lib/commonjs/skia/{ColorFilter → types/ColorFilter}/index.js.map +0 -0
  361. package/lib/commonjs/skia/{ContourMeasure.js → types/ContourMeasure.js} +0 -0
  362. package/lib/commonjs/skia/{ContourMeasure.js.map → types/ContourMeasure.js.map} +0 -0
  363. package/lib/commonjs/skia/types/Data/Data.js +6 -0
  364. package/lib/commonjs/skia/{Data/DataFactory.js.map → types/Data/Data.js.map} +0 -0
  365. package/lib/commonjs/skia/{Data → types/Data}/DataFactory.js +0 -0
  366. package/lib/{module/skia → commonjs/skia/types}/Data/DataFactory.js.map +0 -0
  367. package/lib/commonjs/skia/{Data → types/Data}/index.js +0 -0
  368. package/lib/commonjs/skia/{Data → types/Data}/index.js.map +0 -0
  369. package/lib/commonjs/skia/{Font → types/Font}/Font.js +0 -0
  370. package/lib/commonjs/skia/types/Font/Font.js.map +1 -0
  371. package/lib/commonjs/skia/types/Font/index.js +19 -0
  372. package/lib/commonjs/skia/types/Font/index.js.map +1 -0
  373. package/lib/commonjs/skia/{FontMgr → types/FontMgr}/FontMgr.js +0 -0
  374. package/lib/commonjs/skia/{FontMgr → types/FontMgr}/FontMgr.js.map +0 -0
  375. package/lib/commonjs/skia/{FontMgr → types/FontMgr}/FontMgrFactory.js +0 -0
  376. package/lib/commonjs/skia/{FontMgr → types/FontMgr}/FontMgrFactory.js.map +0 -0
  377. package/lib/commonjs/skia/types/FontMgr/index.js +32 -0
  378. package/lib/commonjs/skia/types/FontMgr/index.js.map +1 -0
  379. package/lib/commonjs/skia/{Image → types/Image}/Image.js +0 -0
  380. package/lib/commonjs/skia/types/Image/Image.js.map +1 -0
  381. package/lib/commonjs/skia/{Image → types/Image}/ImageFactory.js +0 -0
  382. package/lib/commonjs/skia/types/Image/ImageFactory.js.map +1 -0
  383. package/lib/commonjs/skia/types/Image/index.js +32 -0
  384. package/lib/commonjs/skia/types/Image/index.js.map +1 -0
  385. package/lib/commonjs/skia/{ImageFilter → types/ImageFilter}/ImageFilter.js +0 -0
  386. package/lib/commonjs/skia/{ImageFilter → types/ImageFilter}/ImageFilter.js.map +0 -0
  387. package/lib/commonjs/skia/{ImageFilter → types/ImageFilter}/ImageFilterFactory.js +0 -0
  388. package/lib/commonjs/skia/types/ImageFilter/ImageFilterFactory.js.map +1 -0
  389. package/lib/commonjs/skia/{ImageFilter → types/ImageFilter}/index.js +0 -0
  390. package/lib/commonjs/skia/{ImageFilter → types/ImageFilter}/index.js.map +0 -0
  391. package/lib/commonjs/skia/{JsiInstance.js → types/JsiInstance.js} +0 -0
  392. package/lib/commonjs/skia/{JsiInstance.js.map → types/JsiInstance.js.map} +0 -0
  393. package/lib/commonjs/skia/{MaskFilter.js → types/MaskFilter.js} +0 -0
  394. package/lib/commonjs/skia/types/MaskFilter.js.map +1 -0
  395. package/lib/commonjs/skia/types/Matrix.js +78 -0
  396. package/lib/commonjs/skia/types/Matrix.js.map +1 -0
  397. package/lib/commonjs/skia/{Paint → types/Paint}/BlendMode.js +0 -0
  398. package/lib/commonjs/skia/{Paint → types/Paint}/BlendMode.js.map +0 -0
  399. package/lib/commonjs/skia/types/Paint/Paint.js +36 -0
  400. package/lib/commonjs/skia/types/Paint/Paint.js.map +1 -0
  401. package/lib/commonjs/skia/types/Paint/index.js +32 -0
  402. package/lib/commonjs/skia/types/Paint/index.js.map +1 -0
  403. package/lib/commonjs/skia/types/Path/Path.js +48 -0
  404. package/lib/commonjs/skia/types/Path/Path.js.map +1 -0
  405. package/lib/commonjs/skia/{Path → types/Path}/PathFactory.js +0 -0
  406. package/lib/commonjs/skia/{Path → types/Path}/PathFactory.js.map +0 -0
  407. package/lib/commonjs/skia/types/Path/index.js +32 -0
  408. package/lib/commonjs/skia/types/Path/index.js.map +1 -0
  409. package/lib/commonjs/skia/{PathEffect.js → types/PathEffect.js} +0 -0
  410. package/lib/commonjs/skia/types/PathEffect.js.map +1 -0
  411. package/lib/commonjs/skia/{Picture → types/Picture}/Picture.js +0 -0
  412. package/lib/commonjs/skia/{Picture → types/Picture}/Picture.js.map +0 -0
  413. package/lib/commonjs/skia/{Picture → types/Picture}/PictureFactory.js +0 -0
  414. package/lib/commonjs/skia/{Picture → types/Picture}/PictureFactory.js.map +0 -0
  415. package/lib/commonjs/skia/{Picture → types/Picture}/PictureRecorder.js +0 -0
  416. package/lib/commonjs/skia/{Picture → types/Picture}/PictureRecorder.js.map +0 -0
  417. package/lib/commonjs/skia/types/Picture/index.js +45 -0
  418. package/lib/commonjs/skia/types/Picture/index.js.map +1 -0
  419. package/lib/commonjs/skia/{Point.js → types/Point.js} +0 -0
  420. package/lib/commonjs/skia/types/Point.js.map +1 -0
  421. package/lib/commonjs/skia/types/RRect.js +13 -0
  422. package/lib/commonjs/skia/types/RRect.js.map +1 -0
  423. package/lib/commonjs/skia/{RSXform.js → types/RSXform.js} +0 -0
  424. package/lib/commonjs/skia/{RSXform.js.map → types/RSXform.js.map} +0 -0
  425. package/lib/commonjs/skia/{Rect.js → types/Rect.js} +0 -0
  426. package/lib/commonjs/skia/{Rect.js.map → types/Rect.js.map} +0 -0
  427. package/lib/commonjs/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffect.js +0 -0
  428. package/lib/commonjs/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffect.js.map +0 -0
  429. package/lib/commonjs/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffectFactory.js +0 -0
  430. package/lib/commonjs/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffectFactory.js.map +0 -0
  431. package/lib/commonjs/skia/{RuntimeEffect → types/RuntimeEffect}/index.js +0 -0
  432. package/lib/commonjs/skia/{RuntimeEffect → types/RuntimeEffect}/index.js.map +0 -0
  433. package/lib/commonjs/skia/{SVG → types/SVG}/SVG.js +0 -0
  434. package/lib/commonjs/skia/{SVG → types/SVG}/SVG.js.map +0 -0
  435. package/lib/commonjs/skia/{SVG → types/SVG}/SVGFactory.js +0 -0
  436. package/lib/commonjs/skia/{SVG → types/SVG}/SVGFactory.js.map +0 -0
  437. package/lib/commonjs/skia/types/SVG/index.js +32 -0
  438. package/lib/commonjs/skia/types/SVG/index.js.map +1 -0
  439. package/lib/commonjs/skia/types/Shader/Shader.js +61 -0
  440. package/lib/commonjs/skia/types/Shader/Shader.js.map +1 -0
  441. package/lib/commonjs/skia/{Shader → types/Shader}/ShaderFactory.js +0 -0
  442. package/lib/commonjs/skia/{Shader → types/Shader}/ShaderFactory.js.map +0 -0
  443. package/lib/commonjs/skia/types/Shader/index.js +32 -0
  444. package/lib/commonjs/skia/types/Shader/index.js.map +1 -0
  445. package/lib/commonjs/skia/types/Skia.js +6 -0
  446. package/lib/commonjs/skia/{RRect.js.map → types/Skia.js.map} +0 -0
  447. package/lib/commonjs/skia/{Surface → types/Surface}/Surface.js +0 -0
  448. package/lib/commonjs/skia/{Surface → types/Surface}/Surface.js.map +0 -0
  449. package/lib/commonjs/skia/{Surface → types/Surface}/SurfaceFactory.js +0 -0
  450. package/lib/commonjs/skia/{Surface → types/Surface}/SurfaceFactory.js.map +0 -0
  451. package/lib/commonjs/skia/{Surface → types/Surface}/index.js +0 -0
  452. package/lib/commonjs/skia/{Surface → types/Surface}/index.js.map +0 -0
  453. package/lib/commonjs/skia/{TextBlob.js → types/TextBlob.js} +0 -0
  454. package/lib/commonjs/skia/{TextBlob.js.map → types/TextBlob.js.map} +0 -0
  455. package/lib/commonjs/skia/{Typeface → types/Typeface}/Typeface.js +0 -0
  456. package/lib/commonjs/skia/{Typeface → types/Typeface}/Typeface.js.map +0 -0
  457. package/lib/commonjs/skia/{Typeface → types/Typeface}/TypefaceFactory.js +0 -0
  458. package/lib/commonjs/skia/{Typeface → types/Typeface}/TypefaceFactory.js.map +0 -0
  459. package/lib/commonjs/skia/types/Typeface/index.js +32 -0
  460. package/lib/commonjs/skia/types/Typeface/index.js.map +1 -0
  461. package/lib/commonjs/skia/{Vertices → types/Vertices}/Vertices.js +0 -0
  462. package/lib/commonjs/skia/{Vertices → types/Vertices}/Vertices.js.map +0 -0
  463. package/lib/commonjs/skia/{Vertices → types/Vertices}/index.js +0 -0
  464. package/lib/commonjs/skia/{Vertices → types/Vertices}/index.js.map +0 -0
  465. package/lib/commonjs/skia/types/index.js +370 -0
  466. package/lib/commonjs/skia/types/index.js.map +1 -0
  467. package/lib/commonjs/skia/web/Host.js +75 -0
  468. package/lib/commonjs/skia/web/Host.js.map +1 -0
  469. package/lib/commonjs/skia/web/JsiImageFilterFactory.js +68 -0
  470. package/lib/commonjs/skia/web/JsiImageFilterFactory.js.map +1 -0
  471. package/lib/commonjs/skia/web/JsiSkCanvas.js +184 -0
  472. package/lib/commonjs/skia/web/JsiSkCanvas.js.map +1 -0
  473. package/lib/commonjs/skia/web/JsiSkColor.js +339 -0
  474. package/lib/commonjs/skia/web/JsiSkColor.js.map +1 -0
  475. package/lib/commonjs/skia/web/JsiSkColorFilter.js +18 -0
  476. package/lib/commonjs/skia/web/JsiSkColorFilter.js.map +1 -0
  477. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js +48 -0
  478. package/lib/commonjs/skia/web/JsiSkColorFilterFactory.js.map +1 -0
  479. package/lib/commonjs/skia/web/JsiSkContourMeasure.js +42 -0
  480. package/lib/commonjs/skia/web/JsiSkContourMeasure.js.map +1 -0
  481. package/lib/commonjs/skia/web/JsiSkContourMeasureIter.js +30 -0
  482. package/lib/commonjs/skia/web/JsiSkContourMeasureIter.js.map +1 -0
  483. package/lib/commonjs/skia/web/JsiSkData.js +18 -0
  484. package/lib/commonjs/skia/web/JsiSkData.js.map +1 -0
  485. package/lib/commonjs/skia/web/JsiSkDataFactory.js +44 -0
  486. package/lib/commonjs/skia/web/JsiSkDataFactory.js.map +1 -0
  487. package/lib/commonjs/skia/web/JsiSkFont.js +111 -0
  488. package/lib/commonjs/skia/web/JsiSkFont.js.map +1 -0
  489. package/lib/commonjs/skia/web/JsiSkFontMgr.js +35 -0
  490. package/lib/commonjs/skia/web/JsiSkFontMgr.js.map +1 -0
  491. package/lib/commonjs/skia/web/JsiSkFontMgrFactory.js +25 -0
  492. package/lib/commonjs/skia/web/JsiSkFontMgrFactory.js.map +1 -0
  493. package/lib/commonjs/skia/web/JsiSkImage.js +56 -0
  494. package/lib/commonjs/skia/web/JsiSkImage.js.map +1 -0
  495. package/lib/commonjs/skia/web/JsiSkImageFactory.js +47 -0
  496. package/lib/commonjs/skia/web/JsiSkImageFactory.js.map +1 -0
  497. package/lib/commonjs/skia/web/JsiSkImageFilter.js +18 -0
  498. package/lib/commonjs/skia/web/JsiSkImageFilter.js.map +1 -0
  499. package/lib/commonjs/skia/web/JsiSkMaskFilter.js +18 -0
  500. package/lib/commonjs/skia/web/JsiSkMaskFilter.js.map +1 -0
  501. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js +24 -0
  502. package/lib/commonjs/skia/web/JsiSkMaskFilterFactory.js.map +1 -0
  503. package/lib/commonjs/skia/web/JsiSkMatrix.js +38 -0
  504. package/lib/commonjs/skia/web/JsiSkMatrix.js.map +1 -0
  505. package/lib/commonjs/skia/web/JsiSkPaint.js +101 -0
  506. package/lib/commonjs/skia/web/JsiSkPaint.js.map +1 -0
  507. package/lib/commonjs/skia/web/JsiSkPath.js +324 -0
  508. package/lib/commonjs/skia/web/JsiSkPath.js.map +1 -0
  509. package/lib/commonjs/skia/web/JsiSkPathEffect.js +18 -0
  510. package/lib/commonjs/skia/web/JsiSkPathEffect.js.map +1 -0
  511. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js +78 -0
  512. package/lib/commonjs/skia/web/JsiSkPathEffectFactory.js.map +1 -0
  513. package/lib/commonjs/skia/web/JsiSkPathFactory.js +58 -0
  514. package/lib/commonjs/skia/web/JsiSkPathFactory.js.map +1 -0
  515. package/lib/commonjs/skia/web/JsiSkPicture.js +29 -0
  516. package/lib/commonjs/skia/web/JsiSkPicture.js.map +1 -0
  517. package/lib/commonjs/skia/web/JsiSkPictureFactory.js +30 -0
  518. package/lib/commonjs/skia/web/JsiSkPictureFactory.js.map +1 -0
  519. package/lib/commonjs/skia/web/JsiSkPictureRecorder.js +30 -0
  520. package/lib/commonjs/skia/web/JsiSkPictureRecorder.js.map +1 -0
  521. package/lib/commonjs/skia/web/JsiSkPoint.js +26 -0
  522. package/lib/commonjs/skia/web/JsiSkPoint.js.map +1 -0
  523. package/lib/commonjs/skia/web/JsiSkRRect.js +32 -0
  524. package/lib/commonjs/skia/web/JsiSkRRect.js.map +1 -0
  525. package/lib/commonjs/skia/web/JsiSkRSXform.js +18 -0
  526. package/lib/commonjs/skia/web/JsiSkRSXform.js.map +1 -0
  527. package/lib/commonjs/skia/web/JsiSkRect.js +42 -0
  528. package/lib/commonjs/skia/web/JsiSkRect.js.map +1 -0
  529. package/lib/commonjs/skia/web/JsiSkRuntimeEffect.js +44 -0
  530. package/lib/commonjs/skia/web/JsiSkRuntimeEffect.js.map +1 -0
  531. package/lib/commonjs/skia/web/JsiSkRuntimeEffectFactory.js +30 -0
  532. package/lib/commonjs/skia/web/JsiSkRuntimeEffectFactory.js.map +1 -0
  533. package/lib/commonjs/skia/web/JsiSkSVGFactory.js +26 -0
  534. package/lib/commonjs/skia/web/JsiSkSVGFactory.js.map +1 -0
  535. package/lib/commonjs/skia/web/JsiSkShader.js +18 -0
  536. package/lib/commonjs/skia/web/JsiSkShader.js.map +1 -0
  537. package/lib/commonjs/skia/web/JsiSkShaderFactory.js +52 -0
  538. package/lib/commonjs/skia/web/JsiSkShaderFactory.js.map +1 -0
  539. package/lib/commonjs/skia/web/JsiSkSurface.js +31 -0
  540. package/lib/commonjs/skia/web/JsiSkSurface.js.map +1 -0
  541. package/lib/commonjs/skia/web/JsiSkSurfaceFactory.js +30 -0
  542. package/lib/commonjs/skia/web/JsiSkSurfaceFactory.js.map +1 -0
  543. package/lib/commonjs/skia/web/JsiSkTextBlob.js +18 -0
  544. package/lib/commonjs/skia/web/JsiSkTextBlob.js.map +1 -0
  545. package/lib/commonjs/skia/web/JsiSkTextBlobFactory.js +36 -0
  546. package/lib/commonjs/skia/web/JsiSkTextBlobFactory.js.map +1 -0
  547. package/lib/commonjs/skia/web/JsiSkTypeface.js +28 -0
  548. package/lib/commonjs/skia/web/JsiSkTypeface.js.map +1 -0
  549. package/lib/commonjs/skia/web/JsiSkTypefaceFactory.js +30 -0
  550. package/lib/commonjs/skia/web/JsiSkTypefaceFactory.js.map +1 -0
  551. package/lib/commonjs/skia/web/JsiSkVertices.js +28 -0
  552. package/lib/commonjs/skia/web/JsiSkVertices.js.map +1 -0
  553. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js +27 -0
  554. package/lib/commonjs/skia/web/JsiSkVerticesFactory.js.map +1 -0
  555. package/lib/commonjs/skia/web/JsiSkia.js +97 -0
  556. package/lib/commonjs/skia/web/JsiSkia.js.map +1 -0
  557. package/lib/commonjs/skia/web/index.js +19 -0
  558. package/lib/commonjs/skia/web/index.js.map +1 -0
  559. package/lib/commonjs/values/hooks/useValue.js.map +1 -1
  560. package/lib/commonjs/values/hooks/useValueEffect.js.map +1 -1
  561. package/lib/commonjs/values/web/RNSkReadonlyValue.js.map +1 -1
  562. package/lib/commonjs/values/web/api.js +2 -2
  563. package/lib/commonjs/values/web/api.js.map +1 -1
  564. package/lib/commonjs/views/SkiaView.js.map +1 -1
  565. package/lib/commonjs/views/SkiaView.web.js +216 -0
  566. package/lib/commonjs/views/SkiaView.web.js.map +1 -0
  567. package/lib/commonjs/views/types.js.map +1 -1
  568. package/lib/commonjs/views/useTouchHandler.js +70 -46
  569. package/lib/commonjs/views/useTouchHandler.js.map +1 -1
  570. package/lib/commonjs/web/index.js +20 -0
  571. package/lib/commonjs/web/index.js.map +1 -0
  572. package/lib/module/animation/decay/runDecay.js.map +1 -1
  573. package/lib/module/animation/functions/index.js +4 -2
  574. package/lib/module/animation/functions/index.js.map +1 -1
  575. package/lib/module/animation/functions/interpolateColors.js.map +1 -1
  576. package/lib/module/animation/functions/interpolatePaths.js +36 -0
  577. package/lib/module/animation/functions/interpolatePaths.js.map +1 -0
  578. package/lib/module/animation/functions/interpolateVector.js +7 -0
  579. package/lib/module/animation/functions/interpolateVector.js.map +1 -0
  580. package/lib/module/animation/spring/runSpring.js.map +1 -1
  581. package/lib/module/animation/spring/useSpring.js.map +1 -1
  582. package/lib/module/animation/timing/createTiming.js.map +1 -1
  583. package/lib/module/animation/timing/runTiming.js.map +1 -1
  584. package/lib/module/animation/timing/useTiming.js.map +1 -1
  585. package/lib/module/index.js +1 -0
  586. package/lib/module/index.js.map +1 -1
  587. package/lib/module/renderer/Canvas.js +15 -27
  588. package/lib/module/renderer/Canvas.js.map +1 -1
  589. package/lib/module/renderer/DependencyManager.js.map +1 -1
  590. package/lib/module/renderer/HostConfig.js +2 -2
  591. package/lib/module/renderer/HostConfig.js.map +1 -1
  592. package/lib/module/renderer/components/Blend.js +5 -3
  593. package/lib/module/renderer/components/Blend.js.map +1 -1
  594. package/lib/module/renderer/components/Compose.js +5 -4
  595. package/lib/module/renderer/components/Compose.js.map +1 -1
  596. package/lib/module/renderer/components/Group.js +7 -6
  597. package/lib/module/renderer/components/Group.js.map +1 -1
  598. package/lib/module/renderer/components/Mask.js +7 -3
  599. package/lib/module/renderer/components/Mask.js.map +1 -1
  600. package/lib/module/renderer/components/Paint.js +6 -3
  601. package/lib/module/renderer/components/Paint.js.map +1 -1
  602. package/lib/module/renderer/components/Picture.js.map +1 -1
  603. package/lib/module/renderer/components/backdrop/BackdropFilter.js +1 -1
  604. package/lib/module/renderer/components/backdrop/BackdropFilter.js.map +1 -1
  605. package/lib/module/renderer/components/colorFilters/BlendColor.js +6 -3
  606. package/lib/module/renderer/components/colorFilters/BlendColor.js.map +1 -1
  607. package/lib/module/renderer/components/colorFilters/Compose.js +2 -2
  608. package/lib/module/renderer/components/colorFilters/Compose.js.map +1 -1
  609. package/lib/module/renderer/components/colorFilters/Lerp.js +6 -4
  610. package/lib/module/renderer/components/colorFilters/Lerp.js.map +1 -1
  611. package/lib/module/renderer/components/colorFilters/LinearToSRGBGamma.js +5 -3
  612. package/lib/module/renderer/components/colorFilters/LinearToSRGBGamma.js.map +1 -1
  613. package/lib/module/renderer/components/colorFilters/LumaColorFilter.js +5 -3
  614. package/lib/module/renderer/components/colorFilters/LumaColorFilter.js.map +1 -1
  615. package/lib/module/renderer/components/colorFilters/Matrix.js +5 -3
  616. package/lib/module/renderer/components/colorFilters/Matrix.js.map +1 -1
  617. package/lib/module/renderer/components/colorFilters/SRGBToLinearGamma.js +5 -3
  618. package/lib/module/renderer/components/colorFilters/SRGBToLinearGamma.js.map +1 -1
  619. package/lib/module/renderer/components/image/BoxFit.js +7 -8
  620. package/lib/module/renderer/components/image/BoxFit.js.map +1 -1
  621. package/lib/module/renderer/components/image/Image.js +3 -2
  622. package/lib/module/renderer/components/image/Image.js.map +1 -1
  623. package/lib/module/renderer/components/image/ImageSVG.js +3 -2
  624. package/lib/module/renderer/components/image/ImageSVG.js.map +1 -1
  625. package/lib/module/renderer/components/image/ImageShader.js +10 -7
  626. package/lib/module/renderer/components/image/ImageShader.js.map +1 -1
  627. package/lib/module/renderer/components/imageFilters/Blur.js +7 -4
  628. package/lib/module/renderer/components/imageFilters/Blur.js.map +1 -1
  629. package/lib/module/renderer/components/imageFilters/DisplacementMap.js +7 -5
  630. package/lib/module/renderer/components/imageFilters/DisplacementMap.js.map +1 -1
  631. package/lib/module/renderer/components/imageFilters/InnerShadow.js +3 -3
  632. package/lib/module/renderer/components/imageFilters/InnerShadow.js.map +1 -1
  633. package/lib/module/renderer/components/imageFilters/Morphology.js +6 -4
  634. package/lib/module/renderer/components/imageFilters/Morphology.js.map +1 -1
  635. package/lib/module/renderer/components/imageFilters/Offset.js +5 -3
  636. package/lib/module/renderer/components/imageFilters/Offset.js.map +1 -1
  637. package/lib/module/renderer/components/imageFilters/RuntimeShader.js +13 -4
  638. package/lib/module/renderer/components/imageFilters/RuntimeShader.js.map +1 -1
  639. package/lib/module/renderer/components/imageFilters/Shadow.js +6 -6
  640. package/lib/module/renderer/components/imageFilters/Shadow.js.map +1 -1
  641. package/lib/module/renderer/components/imageFilters/getInput.js +2 -2
  642. package/lib/module/renderer/components/imageFilters/getInput.js.map +1 -1
  643. package/lib/module/renderer/components/maskFilters/Blur.js +5 -3
  644. package/lib/module/renderer/components/maskFilters/Blur.js.map +1 -1
  645. package/lib/module/renderer/components/pathEffects/Corner.js +5 -3
  646. package/lib/module/renderer/components/pathEffects/Corner.js.map +1 -1
  647. package/lib/module/renderer/components/pathEffects/Dash.js +5 -3
  648. package/lib/module/renderer/components/pathEffects/Dash.js.map +1 -1
  649. package/lib/module/renderer/components/pathEffects/Discrete.js +5 -3
  650. package/lib/module/renderer/components/pathEffects/Discrete.js.map +1 -1
  651. package/lib/module/renderer/components/pathEffects/Line2D.js +5 -3
  652. package/lib/module/renderer/components/pathEffects/Line2D.js.map +1 -1
  653. package/lib/module/renderer/components/pathEffects/Path1D.js +6 -4
  654. package/lib/module/renderer/components/pathEffects/Path1D.js.map +1 -1
  655. package/lib/module/renderer/components/pathEffects/Path2D.js +6 -4
  656. package/lib/module/renderer/components/pathEffects/Path2D.js.map +1 -1
  657. package/lib/module/renderer/components/pathEffects/Sum.js +5 -3
  658. package/lib/module/renderer/components/pathEffects/Sum.js.map +1 -1
  659. package/lib/module/renderer/components/shaders/Color.js +6 -3
  660. package/lib/module/renderer/components/shaders/Color.js.map +1 -1
  661. package/lib/module/renderer/components/shaders/FractalNoise.js +4 -2
  662. package/lib/module/renderer/components/shaders/FractalNoise.js.map +1 -1
  663. package/lib/module/renderer/components/shaders/Gradient.js +3 -3
  664. package/lib/module/renderer/components/shaders/Gradient.js.map +1 -1
  665. package/lib/module/renderer/components/shaders/LinearGradient.js +5 -3
  666. package/lib/module/renderer/components/shaders/LinearGradient.js.map +1 -1
  667. package/lib/module/renderer/components/shaders/RadialGradient.js +5 -3
  668. package/lib/module/renderer/components/shaders/RadialGradient.js.map +1 -1
  669. package/lib/module/renderer/components/shaders/Shader.js +6 -45
  670. package/lib/module/renderer/components/shaders/Shader.js.map +1 -1
  671. package/lib/module/renderer/components/shaders/SweepGradient.js +5 -3
  672. package/lib/module/renderer/components/shaders/SweepGradient.js.map +1 -1
  673. package/lib/module/renderer/components/shaders/Turbulence.js +4 -2
  674. package/lib/module/renderer/components/shaders/Turbulence.js.map +1 -1
  675. package/lib/module/renderer/components/shaders/TwoPointConicalGradient.js +5 -3
  676. package/lib/module/renderer/components/shaders/TwoPointConicalGradient.js.map +1 -1
  677. package/lib/module/renderer/components/shapes/Box.js +20 -19
  678. package/lib/module/renderer/components/shapes/Box.js.map +1 -1
  679. package/lib/module/renderer/components/shapes/Circle.js +7 -4
  680. package/lib/module/renderer/components/shapes/Circle.js.map +1 -1
  681. package/lib/module/renderer/components/shapes/DiffRect.js.map +1 -1
  682. package/lib/module/renderer/components/shapes/FitBox.js.map +1 -1
  683. package/lib/module/renderer/components/shapes/Line.js.map +1 -1
  684. package/lib/module/renderer/components/shapes/Oval.js +3 -2
  685. package/lib/module/renderer/components/shapes/Oval.js.map +1 -1
  686. package/lib/module/renderer/components/shapes/Patch.js +5 -4
  687. package/lib/module/renderer/components/shapes/Patch.js.map +1 -1
  688. package/lib/module/renderer/components/shapes/Path.js +4 -3
  689. package/lib/module/renderer/components/shapes/Path.js.map +1 -1
  690. package/lib/module/renderer/components/shapes/Points.js +1 -1
  691. package/lib/module/renderer/components/shapes/Points.js.map +1 -1
  692. package/lib/module/renderer/components/shapes/Rect.js +3 -2
  693. package/lib/module/renderer/components/shapes/Rect.js.map +1 -1
  694. package/lib/module/renderer/components/shapes/RoundedRect.js +3 -2
  695. package/lib/module/renderer/components/shapes/RoundedRect.js.map +1 -1
  696. package/lib/module/renderer/components/shapes/Vertices.js +5 -3
  697. package/lib/module/renderer/components/shapes/Vertices.js.map +1 -1
  698. package/lib/module/renderer/components/text/Glyphs.js +3 -2
  699. package/lib/module/renderer/components/text/Glyphs.js.map +1 -1
  700. package/lib/module/renderer/components/text/Text.js +3 -2
  701. package/lib/module/renderer/components/text/Text.js.map +1 -1
  702. package/lib/module/renderer/components/text/TextBlob.js.map +1 -1
  703. package/lib/module/renderer/components/text/TextPath.js +3 -3
  704. package/lib/module/renderer/components/text/TextPath.js.map +1 -1
  705. package/lib/module/renderer/index.js +2 -1
  706. package/lib/module/renderer/index.js.map +1 -1
  707. package/lib/module/renderer/nodes/Declaration.js.map +1 -1
  708. package/lib/module/renderer/nodes/Drawing.js +3 -3
  709. package/lib/module/renderer/nodes/Drawing.js.map +1 -1
  710. package/lib/module/renderer/nodes/Node.js.map +1 -1
  711. package/lib/module/renderer/processors/Animations/Animations.js.map +1 -1
  712. package/lib/module/renderer/processors/Circles.js +2 -4
  713. package/lib/module/renderer/processors/Circles.js.map +1 -1
  714. package/lib/module/renderer/processors/Clips.js +3 -3
  715. package/lib/module/renderer/processors/Clips.js.map +1 -1
  716. package/lib/module/renderer/processors/Color.js +11 -0
  717. package/lib/module/renderer/processors/Color.js.map +1 -0
  718. package/lib/module/renderer/processors/Font.js +3 -2
  719. package/lib/module/renderer/processors/Font.js.map +1 -1
  720. package/lib/module/renderer/processors/Paint.js +8 -5
  721. package/lib/module/renderer/processors/Paint.js.map +1 -1
  722. package/lib/module/renderer/processors/Paths.js +2 -2
  723. package/lib/module/renderer/processors/Paths.js.map +1 -1
  724. package/lib/module/renderer/processors/Radius.js +2 -3
  725. package/lib/module/renderer/processors/Radius.js.map +1 -1
  726. package/lib/module/renderer/processors/Rects.js +7 -25
  727. package/lib/module/renderer/processors/Rects.js.map +1 -1
  728. package/lib/module/renderer/processors/Transform.js +24 -16
  729. package/lib/module/renderer/processors/Transform.js.map +1 -1
  730. package/lib/module/renderer/processors/index.js +2 -1
  731. package/lib/module/renderer/processors/index.js.map +1 -1
  732. package/lib/module/renderer/processors/math/Coordinates.js.map +1 -1
  733. package/lib/module/renderer/processors/math/Transforms.js.map +1 -1
  734. package/lib/module/renderer/processors/math/index.js +0 -2
  735. package/lib/module/renderer/processors/math/index.js.map +1 -1
  736. package/lib/module/renderer/useCanvas.js +13 -0
  737. package/lib/module/renderer/useCanvas.js.map +1 -0
  738. package/lib/module/skia/NativeSetup.js +2 -2
  739. package/lib/module/skia/NativeSetup.js.map +1 -1
  740. package/lib/module/skia/Skia.js +2 -35
  741. package/lib/module/skia/Skia.js.map +1 -1
  742. package/lib/module/skia/Skia.web.js +3 -0
  743. package/lib/module/skia/Skia.web.js.map +1 -0
  744. package/lib/module/skia/core/Data.js +62 -0
  745. package/lib/module/skia/core/Data.js.map +1 -0
  746. package/lib/module/skia/core/Font.js +22 -0
  747. package/lib/module/skia/core/Font.js.map +1 -0
  748. package/lib/module/skia/core/Image.js +8 -0
  749. package/lib/module/skia/core/Image.js.map +1 -0
  750. package/lib/module/skia/core/Matrix.js +4 -0
  751. package/lib/module/skia/core/Matrix.js.map +1 -0
  752. package/lib/module/skia/core/Paint.js +17 -0
  753. package/lib/module/skia/core/Paint.js.map +1 -0
  754. package/lib/module/skia/core/Path.js +53 -0
  755. package/lib/module/skia/core/Path.js.map +1 -0
  756. package/lib/module/skia/core/Picture.js +19 -0
  757. package/lib/module/skia/core/Picture.js.map +1 -0
  758. package/lib/module/skia/core/RRect.js +3 -0
  759. package/lib/module/skia/core/RRect.js.map +1 -0
  760. package/lib/module/skia/core/Rect.js +17 -0
  761. package/lib/module/skia/core/Rect.js.map +1 -0
  762. package/lib/module/skia/core/SVG.js +4 -0
  763. package/lib/module/skia/core/SVG.js.map +1 -0
  764. package/lib/module/skia/core/Typeface.js +8 -0
  765. package/lib/module/skia/core/Typeface.js.map +1 -0
  766. package/lib/module/skia/core/Vector.js +23 -0
  767. package/lib/module/skia/core/Vector.js.map +1 -0
  768. package/lib/module/skia/core/index.js +13 -0
  769. package/lib/module/skia/core/index.js.map +1 -0
  770. package/lib/module/skia/index.js +2 -23
  771. package/lib/module/skia/index.js.map +1 -1
  772. package/lib/module/skia/{Canvas.js → types/Canvas.js} +0 -0
  773. package/lib/module/skia/{Canvas.js.map → types/Canvas.js.map} +0 -0
  774. package/lib/module/skia/types/Color.js +2 -0
  775. package/lib/module/skia/{ContourMeasure.js.map → types/Color.js.map} +0 -0
  776. package/lib/module/skia/{ColorFilter → types/ColorFilter}/ColorFilter.js +0 -0
  777. package/lib/module/skia/{ColorFilter → types/ColorFilter}/ColorFilter.js.map +0 -0
  778. package/lib/module/skia/{ColorFilter → types/ColorFilter}/ColorFilterFactory.js +0 -0
  779. package/lib/module/skia/{FontMgr/FontMgr.js.map → types/ColorFilter/ColorFilterFactory.js.map} +0 -0
  780. package/lib/module/skia/{ColorFilter → types/ColorFilter}/index.js +0 -0
  781. package/lib/module/skia/{ColorFilter → types/ColorFilter}/index.js.map +0 -0
  782. package/lib/module/skia/{ContourMeasure.js → types/ContourMeasure.js} +0 -0
  783. package/lib/module/skia/{FontMgr/FontMgrFactory.js.map → types/ContourMeasure.js.map} +0 -0
  784. package/lib/module/skia/types/Data/Data.js +2 -0
  785. package/lib/module/skia/{JsiInstance.js.map → types/Data/Data.js.map} +0 -0
  786. package/lib/module/skia/{Data → types/Data}/DataFactory.js +0 -0
  787. package/lib/module/skia/{Path/PathFactory.js.map → types/Data/DataFactory.js.map} +0 -0
  788. package/lib/module/skia/{Data → types/Data}/index.js +0 -0
  789. package/lib/module/skia/{Data → types/Data}/index.js.map +0 -0
  790. package/lib/module/skia/{Font → types/Font}/Font.js +0 -0
  791. package/lib/module/skia/types/Font/Font.js.map +1 -0
  792. package/lib/module/skia/types/Font/index.js +2 -0
  793. package/lib/module/skia/types/Font/index.js.map +1 -0
  794. package/lib/module/skia/{FontMgr → types/FontMgr}/FontMgr.js +0 -0
  795. package/lib/module/skia/{Picture/Picture.js.map → types/FontMgr/FontMgr.js.map} +0 -0
  796. package/lib/module/skia/{FontMgr → types/FontMgr}/FontMgrFactory.js +0 -0
  797. package/lib/module/skia/{Picture/PictureFactory.js.map → types/FontMgr/FontMgrFactory.js.map} +0 -0
  798. package/lib/module/skia/types/FontMgr/index.js +3 -0
  799. package/lib/module/skia/types/FontMgr/index.js.map +1 -0
  800. package/lib/module/skia/{Image → types/Image}/Image.js +0 -0
  801. package/lib/module/skia/types/Image/Image.js.map +1 -0
  802. package/lib/module/skia/{Image → types/Image}/ImageFactory.js +0 -0
  803. package/lib/module/skia/types/Image/ImageFactory.js.map +1 -0
  804. package/lib/module/skia/types/Image/index.js +3 -0
  805. package/lib/module/skia/types/Image/index.js.map +1 -0
  806. package/lib/module/skia/{ImageFilter → types/ImageFilter}/ImageFilter.js +0 -0
  807. package/lib/module/skia/{ImageFilter → types/ImageFilter}/ImageFilter.js.map +0 -0
  808. package/lib/module/skia/{ImageFilter → types/ImageFilter}/ImageFilterFactory.js +0 -0
  809. package/lib/module/skia/types/ImageFilter/ImageFilterFactory.js.map +1 -0
  810. package/lib/module/skia/{ImageFilter → types/ImageFilter}/index.js +0 -0
  811. package/lib/module/skia/{ImageFilter → types/ImageFilter}/index.js.map +0 -0
  812. package/lib/module/skia/{JsiInstance.js → types/JsiInstance.js} +0 -0
  813. package/lib/module/skia/{Picture/PictureRecorder.js.map → types/JsiInstance.js.map} +0 -0
  814. package/lib/module/skia/{MaskFilter.js → types/MaskFilter.js} +0 -0
  815. package/lib/module/skia/types/MaskFilter.js.map +1 -0
  816. package/lib/module/skia/types/Matrix.js +69 -0
  817. package/lib/module/skia/types/Matrix.js.map +1 -0
  818. package/lib/module/skia/{Paint → types/Paint}/BlendMode.js +0 -0
  819. package/lib/module/skia/{Paint → types/Paint}/BlendMode.js.map +0 -0
  820. package/lib/module/skia/types/Paint/Paint.js +25 -0
  821. package/lib/module/skia/types/Paint/Paint.js.map +1 -0
  822. package/lib/module/skia/types/Paint/index.js +3 -0
  823. package/lib/module/skia/types/Paint/index.js.map +1 -0
  824. package/lib/module/skia/types/Path/Path.js +36 -0
  825. package/lib/module/skia/types/Path/Path.js.map +1 -0
  826. package/lib/module/skia/{Path → types/Path}/PathFactory.js +0 -0
  827. package/lib/module/skia/{RRect.js.map → types/Path/PathFactory.js.map} +0 -0
  828. package/lib/module/skia/types/Path/index.js +3 -0
  829. package/lib/module/skia/types/Path/index.js.map +1 -0
  830. package/lib/module/skia/{PathEffect.js → types/PathEffect.js} +0 -0
  831. package/lib/module/skia/types/PathEffect.js.map +1 -0
  832. package/lib/module/skia/{Picture → types/Picture}/Picture.js +0 -0
  833. package/lib/module/skia/{RSXform.js.map → types/Picture/Picture.js.map} +0 -0
  834. package/lib/module/skia/{Picture → types/Picture}/PictureFactory.js +0 -0
  835. package/lib/module/skia/{Rect.js.map → types/Picture/PictureFactory.js.map} +0 -0
  836. package/lib/module/skia/{Picture → types/Picture}/PictureRecorder.js +0 -0
  837. package/lib/module/skia/{RuntimeEffect/RuntimeEffect.js.map → types/Picture/PictureRecorder.js.map} +0 -0
  838. package/lib/module/skia/types/Picture/index.js +4 -0
  839. package/lib/module/skia/types/Picture/index.js.map +1 -0
  840. package/lib/module/skia/{Point.js → types/Point.js} +0 -0
  841. package/lib/module/skia/types/Point.js.map +1 -0
  842. package/lib/module/skia/types/RRect.js +4 -0
  843. package/lib/module/skia/types/RRect.js.map +1 -0
  844. package/lib/module/skia/{RSXform.js → types/RSXform.js} +0 -0
  845. package/lib/module/skia/{RuntimeEffect/RuntimeEffectFactory.js.map → types/RSXform.js.map} +0 -0
  846. package/lib/module/skia/{Rect.js → types/Rect.js} +0 -0
  847. package/lib/module/skia/{SVG/SVG.js.map → types/Rect.js.map} +0 -0
  848. package/lib/module/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffect.js +0 -0
  849. package/lib/module/skia/{SVG/SVGFactory.js.map → types/RuntimeEffect/RuntimeEffect.js.map} +0 -0
  850. package/lib/module/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffectFactory.js +0 -0
  851. package/lib/module/skia/{Shader/ShaderFactory.js.map → types/RuntimeEffect/RuntimeEffectFactory.js.map} +0 -0
  852. package/lib/module/skia/{RuntimeEffect → types/RuntimeEffect}/index.js +0 -0
  853. package/lib/module/skia/{RuntimeEffect → types/RuntimeEffect}/index.js.map +0 -0
  854. package/lib/module/skia/{SVG → types/SVG}/SVG.js +0 -0
  855. package/lib/module/skia/{Surface/Surface.js.map → types/SVG/SVG.js.map} +0 -0
  856. package/lib/module/skia/{SVG → types/SVG}/SVGFactory.js +0 -0
  857. package/lib/module/skia/{Surface/SurfaceFactory.js.map → types/SVG/SVGFactory.js.map} +0 -0
  858. package/lib/module/skia/types/SVG/index.js +3 -0
  859. package/lib/module/skia/types/SVG/index.js.map +1 -0
  860. package/lib/module/skia/types/Shader/Shader.js +50 -0
  861. package/lib/module/skia/types/Shader/Shader.js.map +1 -0
  862. package/lib/module/skia/{Shader → types/Shader}/ShaderFactory.js +0 -0
  863. package/lib/module/skia/{TextBlob.js.map → types/Shader/ShaderFactory.js.map} +0 -0
  864. package/lib/module/skia/types/Shader/index.js +3 -0
  865. package/lib/module/skia/types/Shader/index.js.map +1 -0
  866. package/lib/module/skia/types/Skia.js +2 -0
  867. package/lib/module/skia/{Typeface/Typeface.js.map → types/Skia.js.map} +0 -0
  868. package/lib/module/skia/{Surface → types/Surface}/Surface.js +0 -0
  869. package/lib/module/skia/{Typeface/TypefaceFactory.js.map → types/Surface/Surface.js.map} +0 -0
  870. package/lib/module/skia/{Surface → types/Surface}/SurfaceFactory.js +0 -0
  871. package/lib/module/skia/types/Surface/SurfaceFactory.js.map +1 -0
  872. package/lib/module/skia/{Surface → types/Surface}/index.js +0 -0
  873. package/lib/module/skia/{Surface → types/Surface}/index.js.map +0 -0
  874. package/lib/module/skia/{TextBlob.js → types/TextBlob.js} +0 -0
  875. package/lib/module/skia/types/TextBlob.js.map +1 -0
  876. package/lib/module/skia/{Typeface → types/Typeface}/Typeface.js +0 -0
  877. package/lib/module/skia/types/Typeface/Typeface.js.map +1 -0
  878. package/lib/module/skia/{Typeface → types/Typeface}/TypefaceFactory.js +0 -0
  879. package/lib/module/skia/types/Typeface/TypefaceFactory.js.map +1 -0
  880. package/lib/module/skia/types/Typeface/index.js +3 -0
  881. package/lib/module/skia/types/Typeface/index.js.map +1 -0
  882. package/lib/module/skia/{Vertices → types/Vertices}/Vertices.js +0 -0
  883. package/lib/module/skia/{Vertices → types/Vertices}/Vertices.js.map +0 -0
  884. package/lib/module/skia/{Vertices → types/Vertices}/index.js +0 -0
  885. package/lib/module/skia/{Vertices → types/Vertices}/index.js.map +0 -0
  886. package/lib/module/skia/types/index.js +29 -0
  887. package/lib/module/skia/types/index.js.map +1 -0
  888. package/lib/module/skia/web/Host.js +42 -0
  889. package/lib/module/skia/web/Host.js.map +1 -0
  890. package/lib/module/skia/web/JsiImageFilterFactory.js +57 -0
  891. package/lib/module/skia/web/JsiImageFilterFactory.js.map +1 -0
  892. package/lib/module/skia/web/JsiSkCanvas.js +173 -0
  893. package/lib/module/skia/web/JsiSkCanvas.js.map +1 -0
  894. package/lib/module/skia/web/JsiSkColor.js +330 -0
  895. package/lib/module/skia/web/JsiSkColor.js.map +1 -0
  896. package/lib/module/skia/web/JsiSkColorFilter.js +8 -0
  897. package/lib/module/skia/web/JsiSkColorFilter.js.map +1 -0
  898. package/lib/module/skia/web/JsiSkColorFilterFactory.js +37 -0
  899. package/lib/module/skia/web/JsiSkColorFilterFactory.js.map +1 -0
  900. package/lib/module/skia/web/JsiSkContourMeasure.js +31 -0
  901. package/lib/module/skia/web/JsiSkContourMeasure.js.map +1 -0
  902. package/lib/module/skia/web/JsiSkContourMeasureIter.js +19 -0
  903. package/lib/module/skia/web/JsiSkContourMeasureIter.js.map +1 -0
  904. package/lib/module/skia/web/JsiSkData.js +8 -0
  905. package/lib/module/skia/web/JsiSkData.js.map +1 -0
  906. package/lib/module/skia/web/JsiSkDataFactory.js +33 -0
  907. package/lib/module/skia/web/JsiSkDataFactory.js.map +1 -0
  908. package/lib/module/skia/web/JsiSkFont.js +99 -0
  909. package/lib/module/skia/web/JsiSkFont.js.map +1 -0
  910. package/lib/module/skia/web/JsiSkFontMgr.js +25 -0
  911. package/lib/module/skia/web/JsiSkFontMgr.js.map +1 -0
  912. package/lib/module/skia/web/JsiSkFontMgrFactory.js +14 -0
  913. package/lib/module/skia/web/JsiSkFontMgrFactory.js.map +1 -0
  914. package/lib/module/skia/web/JsiSkImage.js +46 -0
  915. package/lib/module/skia/web/JsiSkImage.js.map +1 -0
  916. package/lib/module/skia/web/JsiSkImageFactory.js +36 -0
  917. package/lib/module/skia/web/JsiSkImageFactory.js.map +1 -0
  918. package/lib/module/skia/web/JsiSkImageFilter.js +8 -0
  919. package/lib/module/skia/web/JsiSkImageFilter.js.map +1 -0
  920. package/lib/module/skia/web/JsiSkMaskFilter.js +8 -0
  921. package/lib/module/skia/web/JsiSkMaskFilter.js.map +1 -0
  922. package/lib/module/skia/web/JsiSkMaskFilterFactory.js +13 -0
  923. package/lib/module/skia/web/JsiSkMaskFilterFactory.js.map +1 -0
  924. package/lib/module/skia/web/JsiSkMatrix.js +28 -0
  925. package/lib/module/skia/web/JsiSkMatrix.js.map +1 -0
  926. package/lib/module/skia/web/JsiSkPaint.js +91 -0
  927. package/lib/module/skia/web/JsiSkPaint.js.map +1 -0
  928. package/lib/module/skia/web/JsiSkPath.js +311 -0
  929. package/lib/module/skia/web/JsiSkPath.js.map +1 -0
  930. package/lib/module/skia/web/JsiSkPathEffect.js +8 -0
  931. package/lib/module/skia/web/JsiSkPathEffect.js.map +1 -0
  932. package/lib/module/skia/web/JsiSkPathEffectFactory.js +67 -0
  933. package/lib/module/skia/web/JsiSkPathEffectFactory.js.map +1 -0
  934. package/lib/module/skia/web/JsiSkPathFactory.js +47 -0
  935. package/lib/module/skia/web/JsiSkPathFactory.js.map +1 -0
  936. package/lib/module/skia/web/JsiSkPicture.js +18 -0
  937. package/lib/module/skia/web/JsiSkPicture.js.map +1 -0
  938. package/lib/module/skia/web/JsiSkPictureFactory.js +19 -0
  939. package/lib/module/skia/web/JsiSkPictureFactory.js.map +1 -0
  940. package/lib/module/skia/web/JsiSkPictureRecorder.js +18 -0
  941. package/lib/module/skia/web/JsiSkPictureRecorder.js.map +1 -0
  942. package/lib/module/skia/web/JsiSkPoint.js +16 -0
  943. package/lib/module/skia/web/JsiSkPoint.js.map +1 -0
  944. package/lib/module/skia/web/JsiSkRRect.js +21 -0
  945. package/lib/module/skia/web/JsiSkRRect.js.map +1 -0
  946. package/lib/module/skia/web/JsiSkRSXform.js +8 -0
  947. package/lib/module/skia/web/JsiSkRSXform.js.map +1 -0
  948. package/lib/module/skia/web/JsiSkRect.js +32 -0
  949. package/lib/module/skia/web/JsiSkRect.js.map +1 -0
  950. package/lib/module/skia/web/JsiSkRuntimeEffect.js +33 -0
  951. package/lib/module/skia/web/JsiSkRuntimeEffect.js.map +1 -0
  952. package/lib/module/skia/web/JsiSkRuntimeEffectFactory.js +19 -0
  953. package/lib/module/skia/web/JsiSkRuntimeEffectFactory.js.map +1 -0
  954. package/lib/module/skia/web/JsiSkSVGFactory.js +16 -0
  955. package/lib/module/skia/web/JsiSkSVGFactory.js.map +1 -0
  956. package/lib/module/skia/web/JsiSkShader.js +8 -0
  957. package/lib/module/skia/web/JsiSkShader.js.map +1 -0
  958. package/lib/module/skia/web/JsiSkShaderFactory.js +41 -0
  959. package/lib/module/skia/web/JsiSkShaderFactory.js.map +1 -0
  960. package/lib/module/skia/web/JsiSkSurface.js +19 -0
  961. package/lib/module/skia/web/JsiSkSurface.js.map +1 -0
  962. package/lib/module/skia/web/JsiSkSurfaceFactory.js +19 -0
  963. package/lib/module/skia/web/JsiSkSurfaceFactory.js.map +1 -0
  964. package/lib/module/skia/web/JsiSkTextBlob.js +8 -0
  965. package/lib/module/skia/web/JsiSkTextBlob.js.map +1 -0
  966. package/lib/module/skia/web/JsiSkTextBlobFactory.js +25 -0
  967. package/lib/module/skia/web/JsiSkTextBlobFactory.js.map +1 -0
  968. package/lib/module/skia/web/JsiSkTypeface.js +18 -0
  969. package/lib/module/skia/web/JsiSkTypeface.js.map +1 -0
  970. package/lib/module/skia/web/JsiSkTypefaceFactory.js +19 -0
  971. package/lib/module/skia/web/JsiSkTypefaceFactory.js.map +1 -0
  972. package/lib/module/skia/web/JsiSkVertices.js +17 -0
  973. package/lib/module/skia/web/JsiSkVertices.js.map +1 -0
  974. package/lib/module/skia/web/JsiSkVerticesFactory.js +16 -0
  975. package/lib/module/skia/web/JsiSkVerticesFactory.js.map +1 -0
  976. package/lib/module/skia/web/JsiSkia.js +61 -0
  977. package/lib/module/skia/web/JsiSkia.js.map +1 -0
  978. package/lib/module/skia/web/index.js +2 -0
  979. package/lib/module/skia/web/index.js.map +1 -0
  980. package/lib/module/values/hooks/useValue.js.map +1 -1
  981. package/lib/module/values/hooks/useValueEffect.js.map +1 -1
  982. package/lib/module/values/web/RNSkReadonlyValue.js.map +1 -1
  983. package/lib/module/values/web/api.js +2 -2
  984. package/lib/module/values/web/api.js.map +1 -1
  985. package/lib/module/views/SkiaView.js.map +1 -1
  986. package/lib/module/views/SkiaView.web.js +202 -0
  987. package/lib/module/views/SkiaView.web.js.map +1 -0
  988. package/lib/module/views/types.js.map +1 -1
  989. package/lib/module/views/useTouchHandler.js +64 -43
  990. package/lib/module/views/useTouchHandler.js.map +1 -1
  991. package/lib/module/web/index.js +8 -0
  992. package/lib/module/web/index.js.map +1 -0
  993. package/lib/typescript/src/animation/decay/runDecay.d.ts +2 -2
  994. package/lib/typescript/src/animation/functions/index.d.ts +4 -2
  995. package/lib/typescript/src/animation/functions/interpolatePaths.d.ts +17 -0
  996. package/lib/typescript/src/animation/functions/interpolateVector.d.ts +10 -0
  997. package/lib/typescript/src/animation/spring/runSpring.d.ts +2 -2
  998. package/lib/typescript/src/animation/spring/useSpring.d.ts +2 -2
  999. package/lib/typescript/src/animation/timing/createTiming.d.ts +2 -2
  1000. package/lib/typescript/src/animation/timing/runTiming.d.ts +2 -2
  1001. package/lib/typescript/src/animation/timing/useLoop.d.ts +1 -1
  1002. package/lib/typescript/src/animation/timing/useTiming.d.ts +2 -2
  1003. package/lib/typescript/src/index.d.ts +1 -0
  1004. package/lib/typescript/src/renderer/Canvas.d.ts +3 -14
  1005. package/lib/typescript/src/renderer/DependencyManager.d.ts +2 -2
  1006. package/lib/typescript/src/renderer/DrawingContext.d.ts +3 -4
  1007. package/lib/typescript/src/renderer/components/Blend.d.ts +1 -1
  1008. package/lib/typescript/src/renderer/components/Group.d.ts +1 -1
  1009. package/lib/typescript/src/renderer/components/Paint.d.ts +1 -1
  1010. package/lib/typescript/src/renderer/components/Picture.d.ts +1 -1
  1011. package/lib/typescript/src/renderer/components/colorFilters/BlendColor.d.ts +2 -2
  1012. package/lib/typescript/src/renderer/components/colorFilters/Compose.d.ts +2 -2
  1013. package/lib/typescript/src/renderer/components/image/BoxFit.d.ts +13 -3
  1014. package/lib/typescript/src/renderer/components/image/Image.d.ts +1 -1
  1015. package/lib/typescript/src/renderer/components/image/ImageSVG.d.ts +1 -1
  1016. package/lib/typescript/src/renderer/components/image/ImageShader.d.ts +2 -2
  1017. package/lib/typescript/src/renderer/components/imageFilters/Blur.d.ts +1 -1
  1018. package/lib/typescript/src/renderer/components/imageFilters/DisplacementMap.d.ts +1 -1
  1019. package/lib/typescript/src/renderer/components/imageFilters/InnerShadow.d.ts +2 -3
  1020. package/lib/typescript/src/renderer/components/imageFilters/RuntimeShader.d.ts +2 -1
  1021. package/lib/typescript/src/renderer/components/imageFilters/Shadow.d.ts +1 -1
  1022. package/lib/typescript/src/renderer/components/imageFilters/getInput.d.ts +2 -1
  1023. package/lib/typescript/src/renderer/components/maskFilters/Blur.d.ts +1 -1
  1024. package/lib/typescript/src/renderer/components/pathEffects/Line2D.d.ts +1 -1
  1025. package/lib/typescript/src/renderer/components/pathEffects/Path1D.d.ts +1 -1
  1026. package/lib/typescript/src/renderer/components/pathEffects/Path2D.d.ts +1 -1
  1027. package/lib/typescript/src/renderer/components/shaders/Color.d.ts +1 -1
  1028. package/lib/typescript/src/renderer/components/shaders/Gradient.d.ts +4 -4
  1029. package/lib/typescript/src/renderer/components/shaders/LinearGradient.d.ts +2 -1
  1030. package/lib/typescript/src/renderer/components/shaders/RadialGradient.d.ts +2 -1
  1031. package/lib/typescript/src/renderer/components/shaders/Shader.d.ts +2 -9
  1032. package/lib/typescript/src/renderer/components/shaders/SweepGradient.d.ts +2 -1
  1033. package/lib/typescript/src/renderer/components/shaders/TwoPointConicalGradient.d.ts +2 -1
  1034. package/lib/typescript/src/renderer/components/shapes/Box.d.ts +1 -2
  1035. package/lib/typescript/src/renderer/components/shapes/Circle.d.ts +4 -1
  1036. package/lib/typescript/src/renderer/components/shapes/DiffRect.d.ts +1 -1
  1037. package/lib/typescript/src/renderer/components/shapes/FitBox.d.ts +1 -1
  1038. package/lib/typescript/src/renderer/components/shapes/Line.d.ts +2 -1
  1039. package/lib/typescript/src/renderer/components/shapes/Patch.d.ts +3 -3
  1040. package/lib/typescript/src/renderer/components/shapes/Path.d.ts +1 -1
  1041. package/lib/typescript/src/renderer/components/shapes/Points.d.ts +2 -2
  1042. package/lib/typescript/src/renderer/components/shapes/Vertices.d.ts +2 -2
  1043. package/lib/typescript/src/renderer/components/text/Glyphs.d.ts +1 -1
  1044. package/lib/typescript/src/renderer/components/text/TextBlob.d.ts +1 -1
  1045. package/lib/typescript/src/renderer/components/text/TextPath.d.ts +1 -1
  1046. package/lib/typescript/src/renderer/index.d.ts +2 -1
  1047. package/lib/typescript/src/renderer/nodes/Declaration.d.ts +1 -1
  1048. package/lib/typescript/src/renderer/nodes/Node.d.ts +1 -1
  1049. package/lib/typescript/src/renderer/processors/Animations/Animations.d.ts +3 -5
  1050. package/lib/typescript/src/renderer/processors/Circles.d.ts +2 -2
  1051. package/lib/typescript/src/renderer/processors/Clips.d.ts +2 -3
  1052. package/lib/typescript/src/renderer/processors/Color.d.ts +7 -0
  1053. package/lib/typescript/src/renderer/processors/Font.d.ts +2 -3
  1054. package/lib/typescript/src/renderer/processors/Paint.d.ts +3 -3
  1055. package/lib/typescript/src/renderer/processors/Paths.d.ts +2 -2
  1056. package/lib/typescript/src/renderer/processors/Radius.d.ts +2 -2
  1057. package/lib/typescript/src/renderer/processors/Rects.d.ts +4 -13
  1058. package/lib/typescript/src/renderer/processors/Transform.d.ts +3 -4
  1059. package/lib/typescript/src/renderer/processors/index.d.ts +2 -1
  1060. package/lib/typescript/src/renderer/processors/math/Coordinates.d.ts +1 -1
  1061. package/lib/typescript/src/renderer/processors/math/Transforms.d.ts +1 -1
  1062. package/lib/typescript/src/renderer/processors/math/index.d.ts +0 -2
  1063. package/lib/typescript/src/renderer/useCanvas.d.ts +14 -0
  1064. package/lib/typescript/src/skia/Skia.d.ts +2 -35
  1065. package/lib/typescript/src/skia/Skia.web.d.ts +1 -0
  1066. package/lib/typescript/src/skia/core/Data.d.ts +5 -0
  1067. package/lib/typescript/src/skia/core/Font.d.ts +5 -0
  1068. package/lib/typescript/src/skia/core/Image.d.ts +5 -0
  1069. package/lib/typescript/src/skia/core/Matrix.d.ts +2 -0
  1070. package/lib/typescript/src/skia/core/Paint.d.ts +6 -0
  1071. package/lib/typescript/src/skia/core/Path.d.ts +21 -0
  1072. package/lib/typescript/src/skia/core/Picture.d.ts +9 -0
  1073. package/lib/typescript/src/skia/core/RRect.d.ts +2 -0
  1074. package/lib/typescript/src/skia/core/Rect.d.ts +8 -0
  1075. package/lib/typescript/src/skia/core/SVG.d.ts +2 -0
  1076. package/lib/typescript/src/skia/core/Typeface.d.ts +5 -0
  1077. package/lib/typescript/src/skia/core/Vector.d.ts +12 -0
  1078. package/lib/typescript/src/skia/core/index.d.ts +12 -0
  1079. package/lib/typescript/src/skia/index.d.ts +2 -23
  1080. package/lib/typescript/src/skia/{Canvas.d.ts → types/Canvas.d.ts} +0 -0
  1081. package/lib/typescript/src/skia/types/Color.d.ts +2 -0
  1082. package/lib/typescript/src/skia/{ColorFilter → types/ColorFilter}/ColorFilter.d.ts +0 -0
  1083. package/lib/typescript/src/skia/types/ColorFilter/ColorFilterFactory.d.ts +43 -0
  1084. package/lib/typescript/src/skia/{ColorFilter → types/ColorFilter}/index.d.ts +0 -0
  1085. package/lib/typescript/src/skia/types/ContourMeasure.d.ts +40 -0
  1086. package/lib/typescript/src/skia/types/Data/Data.d.ts +5 -0
  1087. package/lib/typescript/src/skia/types/Data/DataFactory.d.ts +18 -0
  1088. package/lib/typescript/src/skia/{Data → types/Data}/index.d.ts +0 -0
  1089. package/lib/typescript/src/skia/types/Font/Font.d.ts +187 -0
  1090. package/lib/typescript/src/skia/types/Font/index.d.ts +1 -0
  1091. package/lib/typescript/src/skia/types/FontMgr/FontMgr.d.ts +18 -0
  1092. package/lib/typescript/src/skia/types/FontMgr/FontMgrFactory.d.ts +4 -0
  1093. package/lib/typescript/src/skia/types/FontMgr/index.d.ts +2 -0
  1094. package/lib/typescript/src/skia/types/Image/Image.d.ts +75 -0
  1095. package/lib/typescript/src/skia/types/Image/ImageFactory.d.ts +62 -0
  1096. package/lib/typescript/src/skia/types/Image/index.d.ts +2 -0
  1097. package/lib/typescript/src/skia/{ImageFilter → types/ImageFilter}/ImageFilter.d.ts +0 -0
  1098. package/lib/typescript/src/skia/types/ImageFilter/ImageFilterFactory.d.ts +130 -0
  1099. package/lib/typescript/src/skia/{ImageFilter → types/ImageFilter}/index.d.ts +0 -0
  1100. package/lib/typescript/src/skia/{JsiInstance.d.ts → types/JsiInstance.d.ts} +0 -0
  1101. package/lib/typescript/src/skia/types/MaskFilter.d.ts +21 -0
  1102. package/lib/typescript/src/skia/types/Matrix.d.ts +29 -0
  1103. package/lib/typescript/src/skia/{Paint → types/Paint}/BlendMode.d.ts +0 -0
  1104. package/lib/typescript/src/skia/types/Paint/Paint.d.ts +127 -0
  1105. package/lib/typescript/src/skia/types/Paint/index.d.ts +2 -0
  1106. package/lib/typescript/src/skia/types/Path/Path.d.ts +462 -0
  1107. package/lib/typescript/src/skia/types/Path/PathFactory.d.ts +29 -0
  1108. package/lib/typescript/src/skia/types/Path/index.d.ts +2 -0
  1109. package/lib/typescript/src/skia/types/PathEffect.d.ts +75 -0
  1110. package/lib/typescript/src/skia/types/Picture/Picture.d.ts +26 -0
  1111. package/lib/typescript/src/skia/{Picture → types/Picture}/PictureFactory.d.ts +0 -0
  1112. package/lib/typescript/src/skia/{Picture → types/Picture}/PictureRecorder.d.ts +0 -0
  1113. package/lib/typescript/src/skia/types/Picture/index.d.ts +3 -0
  1114. package/lib/typescript/src/skia/types/Point.d.ts +10 -0
  1115. package/lib/typescript/src/skia/types/RRect.d.ts +7 -0
  1116. package/lib/typescript/src/skia/{RSXform.d.ts → types/RSXform.d.ts} +0 -0
  1117. package/lib/typescript/src/skia/{Rect.d.ts → types/Rect.d.ts} +0 -0
  1118. package/lib/typescript/src/skia/types/RuntimeEffect/RuntimeEffect.d.ts +47 -0
  1119. package/lib/typescript/src/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffectFactory.d.ts +0 -0
  1120. package/lib/typescript/src/skia/{RuntimeEffect → types/RuntimeEffect}/index.d.ts +0 -0
  1121. package/lib/typescript/src/skia/{SVG → types/SVG}/SVG.d.ts +0 -0
  1122. package/lib/typescript/src/skia/types/SVG/SVGFactory.d.ts +6 -0
  1123. package/lib/typescript/src/skia/types/SVG/index.d.ts +2 -0
  1124. package/lib/typescript/src/skia/types/Shader/Shader.d.ts +11 -0
  1125. package/lib/typescript/src/skia/{Shader → types/Shader}/ShaderFactory.d.ts +0 -0
  1126. package/lib/typescript/src/skia/types/Shader/index.d.ts +2 -0
  1127. package/lib/typescript/src/skia/types/Skia.d.ts +68 -0
  1128. package/lib/typescript/src/skia/{Surface → types/Surface}/Surface.d.ts +0 -0
  1129. package/lib/typescript/src/skia/{Surface → types/Surface}/SurfaceFactory.d.ts +0 -0
  1130. package/lib/typescript/src/skia/{Surface → types/Surface}/index.d.ts +0 -0
  1131. package/lib/typescript/src/skia/{TextBlob.d.ts → types/TextBlob.d.ts} +0 -0
  1132. package/lib/typescript/src/skia/{Typeface → types/Typeface}/Typeface.d.ts +0 -0
  1133. package/lib/typescript/src/skia/types/Typeface/TypefaceFactory.d.ts +5 -0
  1134. package/lib/typescript/src/skia/types/Typeface/index.d.ts +2 -0
  1135. package/lib/typescript/src/skia/{Vertices → types/Vertices}/Vertices.d.ts +0 -0
  1136. package/lib/typescript/src/skia/{Vertices → types/Vertices}/index.d.ts +0 -0
  1137. package/lib/typescript/src/skia/types/index.d.ts +28 -0
  1138. package/lib/typescript/src/skia/web/Host.d.ts +21 -0
  1139. package/lib/typescript/src/skia/web/JsiImageFilterFactory.d.ts +19 -0
  1140. package/lib/typescript/src/skia/web/JsiSkCanvas.d.ts +44 -0
  1141. package/lib/typescript/src/skia/web/JsiSkColor.d.ts +2 -0
  1142. package/lib/typescript/src/skia/web/JsiSkColorFilter.d.ts +6 -0
  1143. package/lib/typescript/src/skia/web/JsiSkColorFilterFactory.d.ts +14 -0
  1144. package/lib/typescript/src/skia/web/JsiSkContourMeasure.d.ts +16 -0
  1145. package/lib/typescript/src/skia/web/JsiSkContourMeasureIter.d.ts +8 -0
  1146. package/lib/typescript/src/skia/web/JsiSkData.d.ts +8 -0
  1147. package/lib/typescript/src/skia/web/JsiSkDataFactory.d.ts +19 -0
  1148. package/lib/typescript/src/skia/web/JsiSkFont.d.ts +33 -0
  1149. package/lib/typescript/src/skia/web/JsiSkFontMgr.d.ts +9 -0
  1150. package/lib/typescript/src/skia/web/JsiSkFontMgrFactory.d.ts +8 -0
  1151. package/lib/typescript/src/skia/web/JsiSkImage.d.ts +12 -0
  1152. package/lib/typescript/src/skia/web/JsiSkImageFactory.d.ts +10 -0
  1153. package/lib/typescript/src/skia/web/JsiSkImageFilter.d.ts +6 -0
  1154. package/lib/typescript/src/skia/web/JsiSkMaskFilter.d.ts +6 -0
  1155. package/lib/typescript/src/skia/web/JsiSkMaskFilterFactory.d.ts +9 -0
  1156. package/lib/typescript/src/skia/web/JsiSkMatrix.d.ts +11 -0
  1157. package/lib/typescript/src/skia/web/JsiSkPaint.d.ts +26 -0
  1158. package/lib/typescript/src/skia/web/JsiSkPath.d.ts +56 -0
  1159. package/lib/typescript/src/skia/web/JsiSkPathEffect.d.ts +6 -0
  1160. package/lib/typescript/src/skia/web/JsiSkPathEffectFactory.d.ts +15 -0
  1161. package/lib/typescript/src/skia/web/JsiSkPathFactory.d.ts +13 -0
  1162. package/lib/typescript/src/skia/web/JsiSkPicture.d.ts +9 -0
  1163. package/lib/typescript/src/skia/web/JsiSkPictureFactory.d.ts +8 -0
  1164. package/lib/typescript/src/skia/web/JsiSkPictureRecorder.d.ts +11 -0
  1165. package/lib/typescript/src/skia/web/JsiSkPoint.d.ts +8 -0
  1166. package/lib/typescript/src/skia/web/JsiSkRRect.d.ts +10 -0
  1167. package/lib/typescript/src/skia/web/JsiSkRSXform.d.ts +8 -0
  1168. package/lib/typescript/src/skia/web/JsiSkRect.d.ts +11 -0
  1169. package/lib/typescript/src/skia/web/JsiSkRuntimeEffect.d.ts +14 -0
  1170. package/lib/typescript/src/skia/web/JsiSkRuntimeEffectFactory.d.ts +8 -0
  1171. package/lib/typescript/src/skia/web/JsiSkSVGFactory.d.ts +9 -0
  1172. package/lib/typescript/src/skia/web/JsiSkShader.d.ts +6 -0
  1173. package/lib/typescript/src/skia/web/JsiSkShaderFactory.d.ts +16 -0
  1174. package/lib/typescript/src/skia/web/JsiSkSurface.d.ts +8 -0
  1175. package/lib/typescript/src/skia/web/JsiSkSurfaceFactory.d.ts +8 -0
  1176. package/lib/typescript/src/skia/web/JsiSkTextBlob.d.ts +6 -0
  1177. package/lib/typescript/src/skia/web/JsiSkTextBlobFactory.d.ts +12 -0
  1178. package/lib/typescript/src/skia/web/JsiSkTypeface.d.ts +8 -0
  1179. package/lib/typescript/src/skia/web/JsiSkTypefaceFactory.d.ts +8 -0
  1180. package/lib/typescript/src/skia/web/JsiSkVertices.d.ts +9 -0
  1181. package/lib/typescript/src/skia/web/JsiSkVerticesFactory.d.ts +4 -0
  1182. package/lib/typescript/src/skia/web/JsiSkia.d.ts +3 -0
  1183. package/lib/typescript/src/skia/web/index.d.ts +1 -0
  1184. package/lib/typescript/src/values/api.d.ts +1 -1
  1185. package/lib/typescript/src/values/api.web.d.ts +1 -1
  1186. package/lib/typescript/src/values/hooks/useDerivedValue.d.ts +1 -1
  1187. package/lib/typescript/src/values/hooks/useValue.d.ts +2 -2
  1188. package/lib/typescript/src/values/hooks/useValueEffect.d.ts +2 -2
  1189. package/lib/typescript/src/values/types.d.ts +5 -5
  1190. package/lib/typescript/src/values/web/RNSkReadonlyValue.d.ts +2 -2
  1191. package/lib/typescript/src/views/SkiaView.d.ts +4 -4
  1192. package/lib/typescript/src/views/SkiaView.web.d.ts +56 -0
  1193. package/lib/typescript/src/views/types.d.ts +4 -4
  1194. package/lib/typescript/src/views/useTouchHandler.d.ts +11 -1
  1195. package/lib/typescript/src/web/index.d.ts +5 -0
  1196. package/libs/android/arm64-v8a/libskia.a +0 -0
  1197. package/libs/android/arm64-v8a/libsvg.a +0 -0
  1198. package/libs/android/armeabi-v7a/libskia.a +0 -0
  1199. package/libs/android/armeabi-v7a/libsvg.a +0 -0
  1200. package/libs/android/x86/libskia.a +0 -0
  1201. package/libs/android/x86/libsvg.a +0 -0
  1202. package/libs/android/x86_64/libskia.a +0 -0
  1203. package/libs/android/x86_64/libsvg.a +0 -0
  1204. package/libs/ios/libskia.xcframework/Info.plist +5 -5
  1205. package/libs/ios/libskia.xcframework/ios-arm64_arm64e/libskia.a +0 -0
  1206. package/libs/ios/libskia.xcframework/ios-arm64_arm64e_x86_64-simulator/libskia.a +0 -0
  1207. package/libs/ios/libskshaper.xcframework/Info.plist +5 -5
  1208. package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e/libskshaper.a +0 -0
  1209. package/libs/ios/libskshaper.xcframework/ios-arm64_arm64e_x86_64-simulator/libskshaper.a +0 -0
  1210. package/libs/ios/libsvg.xcframework/ios-arm64_arm64e/libsvg.a +0 -0
  1211. package/libs/ios/libsvg.xcframework/ios-arm64_arm64e_x86_64-simulator/libsvg.a +0 -0
  1212. package/package.json +3 -2
  1213. package/src/animation/decay/runDecay.ts +5 -2
  1214. package/src/animation/functions/index.ts +4 -2
  1215. package/src/animation/functions/interpolateColors.ts +1 -2
  1216. package/src/animation/functions/interpolatePaths.ts +38 -0
  1217. package/src/animation/functions/interpolateVector.ts +26 -0
  1218. package/src/animation/spring/runSpring.ts +2 -2
  1219. package/src/animation/spring/useSpring.ts +2 -2
  1220. package/src/animation/timing/createTiming.ts +2 -2
  1221. package/src/animation/timing/runTiming.ts +2 -2
  1222. package/src/animation/timing/useTiming.ts +2 -2
  1223. package/src/index.ts +1 -1
  1224. package/src/renderer/Canvas.tsx +13 -36
  1225. package/src/renderer/DependencyManager.tsx +2 -2
  1226. package/src/renderer/DrawingContext.ts +3 -5
  1227. package/src/renderer/HostConfig.ts +2 -2
  1228. package/src/renderer/components/Blend.tsx +12 -11
  1229. package/src/renderer/components/Compose.tsx +2 -4
  1230. package/src/renderer/components/Group.tsx +11 -6
  1231. package/src/renderer/components/Mask.tsx +5 -3
  1232. package/src/renderer/components/Paint.tsx +5 -4
  1233. package/src/renderer/components/Picture.tsx +1 -1
  1234. package/src/renderer/components/backdrop/BackdropFilter.tsx +1 -1
  1235. package/src/renderer/components/colorFilters/BlendColor.tsx +4 -4
  1236. package/src/renderer/components/colorFilters/Compose.ts +3 -2
  1237. package/src/renderer/components/colorFilters/Lerp.tsx +3 -3
  1238. package/src/renderer/components/colorFilters/LinearToSRGBGamma.tsx +2 -3
  1239. package/src/renderer/components/colorFilters/LumaColorFilter.tsx +2 -3
  1240. package/src/renderer/components/colorFilters/Matrix.tsx +2 -3
  1241. package/src/renderer/components/colorFilters/SRGBToLinearGamma.tsx +2 -3
  1242. package/src/renderer/components/image/BoxFit.ts +7 -13
  1243. package/src/renderer/components/image/Image.tsx +3 -3
  1244. package/src/renderer/components/image/ImageSVG.tsx +3 -3
  1245. package/src/renderer/components/image/ImageShader.tsx +8 -7
  1246. package/src/renderer/components/imageFilters/Blur.tsx +12 -10
  1247. package/src/renderer/components/imageFilters/DisplacementMap.tsx +4 -5
  1248. package/src/renderer/components/imageFilters/InnerShadow.tsx +4 -4
  1249. package/src/renderer/components/imageFilters/Morphology.tsx +3 -4
  1250. package/src/renderer/components/imageFilters/Offset.tsx +5 -4
  1251. package/src/renderer/components/imageFilters/RuntimeShader.tsx +12 -4
  1252. package/src/renderer/components/imageFilters/Shadow.tsx +10 -7
  1253. package/src/renderer/components/imageFilters/getInput.ts +3 -2
  1254. package/src/renderer/components/maskFilters/Blur.tsx +2 -3
  1255. package/src/renderer/components/pathEffects/Corner.tsx +2 -3
  1256. package/src/renderer/components/pathEffects/Dash.tsx +2 -3
  1257. package/src/renderer/components/pathEffects/Discrete.tsx +2 -3
  1258. package/src/renderer/components/pathEffects/Line2D.tsx +3 -4
  1259. package/src/renderer/components/pathEffects/Path1D.tsx +3 -4
  1260. package/src/renderer/components/pathEffects/Path2D.tsx +4 -5
  1261. package/src/renderer/components/pathEffects/Sum.tsx +7 -6
  1262. package/src/renderer/components/shaders/Color.tsx +7 -5
  1263. package/src/renderer/components/shaders/FractalNoise.tsx +1 -2
  1264. package/src/renderer/components/shaders/Gradient.ts +7 -10
  1265. package/src/renderer/components/shaders/LinearGradient.tsx +4 -4
  1266. package/src/renderer/components/shaders/RadialGradient.tsx +4 -4
  1267. package/src/renderer/components/shaders/Shader.tsx +6 -58
  1268. package/src/renderer/components/shaders/SweepGradient.tsx +4 -4
  1269. package/src/renderer/components/shaders/Turbulence.tsx +1 -2
  1270. package/src/renderer/components/shaders/TwoPointConicalGradient.tsx +4 -4
  1271. package/src/renderer/components/shapes/Box.tsx +36 -19
  1272. package/src/renderer/components/shapes/Circle.tsx +3 -4
  1273. package/src/renderer/components/shapes/DiffRect.tsx +1 -1
  1274. package/src/renderer/components/shapes/FitBox.tsx +1 -1
  1275. package/src/renderer/components/shapes/Line.tsx +2 -1
  1276. package/src/renderer/components/shapes/Oval.tsx +6 -4
  1277. package/src/renderer/components/shapes/Patch.tsx +6 -11
  1278. package/src/renderer/components/shapes/Path.tsx +3 -3
  1279. package/src/renderer/components/shapes/Points.tsx +2 -2
  1280. package/src/renderer/components/shapes/Rect.tsx +6 -4
  1281. package/src/renderer/components/shapes/RoundedRect.tsx +2 -2
  1282. package/src/renderer/components/shapes/Vertices.tsx +5 -4
  1283. package/src/renderer/components/text/Glyphs.tsx +6 -3
  1284. package/src/renderer/components/text/Text.tsx +2 -2
  1285. package/src/renderer/components/text/TextBlob.tsx +1 -1
  1286. package/src/renderer/components/text/TextPath.tsx +3 -5
  1287. package/src/renderer/index.ts +2 -1
  1288. package/src/renderer/nodes/Declaration.tsx +1 -1
  1289. package/src/renderer/nodes/Drawing.tsx +3 -2
  1290. package/src/renderer/nodes/Node.ts +1 -1
  1291. package/src/renderer/processors/Animations/Animations.ts +5 -11
  1292. package/src/renderer/processors/Circles.ts +4 -4
  1293. package/src/renderer/processors/Clips.ts +9 -5
  1294. package/src/renderer/processors/Color.ts +15 -0
  1295. package/src/renderer/processors/Font.ts +10 -4
  1296. package/src/renderer/processors/Paint.ts +12 -7
  1297. package/src/renderer/processors/Paths.ts +3 -3
  1298. package/src/renderer/processors/Radius.ts +3 -4
  1299. package/src/renderer/processors/Rects.ts +12 -43
  1300. package/src/renderer/processors/Transform.ts +28 -19
  1301. package/src/renderer/processors/index.ts +2 -1
  1302. package/src/renderer/processors/math/Coordinates.ts +1 -1
  1303. package/src/renderer/processors/math/Transforms.ts +2 -1
  1304. package/src/renderer/processors/math/index.ts +0 -2
  1305. package/src/renderer/useCanvas.ts +21 -0
  1306. package/src/skia/NativeSetup.ts +2 -2
  1307. package/src/skia/Skia.ts +2 -38
  1308. package/src/skia/Skia.web.ts +3 -0
  1309. package/src/skia/core/Data.ts +81 -0
  1310. package/src/skia/core/Font.ts +28 -0
  1311. package/src/skia/core/Image.ts +12 -0
  1312. package/src/skia/core/Matrix.ts +6 -0
  1313. package/src/skia/core/Paint.ts +22 -0
  1314. package/src/skia/core/Path.ts +60 -0
  1315. package/src/skia/core/Picture.ts +25 -0
  1316. package/src/skia/core/RRect.tsx +5 -0
  1317. package/src/skia/core/Rect.ts +33 -0
  1318. package/src/skia/core/SVG.ts +9 -0
  1319. package/src/skia/core/Typeface.ts +11 -0
  1320. package/src/skia/core/Vector.ts +11 -0
  1321. package/src/skia/core/index.ts +12 -0
  1322. package/src/skia/index.ts +2 -23
  1323. package/src/skia/{Canvas.ts → types/Canvas.ts} +0 -0
  1324. package/src/skia/types/Color.ts +4 -0
  1325. package/src/skia/{ColorFilter → types/ColorFilter}/ColorFilter.ts +0 -0
  1326. package/src/skia/types/ColorFilter/ColorFilterFactory.ts +52 -0
  1327. package/src/skia/{ColorFilter → types/ColorFilter}/index.ts +0 -0
  1328. package/src/skia/types/ContourMeasure.tsx +47 -0
  1329. package/src/skia/types/Data/Data.ts +5 -0
  1330. package/src/skia/types/Data/DataFactory.ts +19 -0
  1331. package/src/skia/{Data → types/Data}/index.ts +0 -0
  1332. package/src/skia/types/Font/Font.ts +230 -0
  1333. package/src/skia/types/Font/index.ts +1 -0
  1334. package/src/skia/types/FontMgr/FontMgr.ts +24 -0
  1335. package/src/skia/types/FontMgr/FontMgrFactory.ts +12 -0
  1336. package/src/skia/types/FontMgr/index.ts +2 -0
  1337. package/src/skia/types/Image/Image.ts +96 -0
  1338. package/src/skia/types/Image/ImageFactory.ts +78 -0
  1339. package/src/skia/types/Image/index.ts +2 -0
  1340. package/src/skia/{ImageFilter → types/ImageFilter}/ImageFilter.ts +0 -0
  1341. package/src/skia/types/ImageFilter/ImageFilterFactory.ts +192 -0
  1342. package/src/skia/{ImageFilter → types/ImageFilter}/index.ts +0 -0
  1343. package/src/skia/{JsiInstance.ts → types/JsiInstance.ts} +0 -0
  1344. package/src/skia/types/MaskFilter.ts +27 -0
  1345. package/src/skia/types/Matrix.ts +95 -0
  1346. package/src/skia/{Paint → types/Paint}/BlendMode.ts +0 -0
  1347. package/src/skia/types/Paint/Paint.ts +153 -0
  1348. package/src/skia/types/Paint/index.ts +2 -0
  1349. package/src/skia/types/Path/Path.ts +565 -0
  1350. package/src/skia/types/Path/PathFactory.ts +34 -0
  1351. package/src/skia/types/Path/index.ts +2 -0
  1352. package/src/skia/types/PathEffect.ts +97 -0
  1353. package/src/skia/types/Picture/Picture.ts +34 -0
  1354. package/src/skia/{Picture → types/Picture}/PictureFactory.ts +0 -0
  1355. package/src/skia/{Picture → types/Picture}/PictureRecorder.ts +0 -0
  1356. package/src/skia/types/Picture/index.ts +3 -0
  1357. package/src/skia/types/Point.ts +12 -0
  1358. package/src/skia/types/RRect.ts +12 -0
  1359. package/src/skia/{RSXform.ts → types/RSXform.ts} +0 -0
  1360. package/src/skia/{Rect.ts → types/Rect.ts} +0 -0
  1361. package/src/skia/types/RuntimeEffect/RuntimeEffect.ts +60 -0
  1362. package/src/skia/{RuntimeEffect → types/RuntimeEffect}/RuntimeEffectFactory.ts +0 -0
  1363. package/src/skia/{RuntimeEffect → types/RuntimeEffect}/index.ts +0 -0
  1364. package/src/skia/{SVG → types/SVG}/SVG.ts +0 -0
  1365. package/src/skia/types/SVG/SVGFactory.ts +8 -0
  1366. package/src/skia/types/SVG/index.ts +2 -0
  1367. package/src/skia/types/Shader/Shader.ts +67 -0
  1368. package/src/skia/{Shader → types/Shader}/ShaderFactory.ts +0 -0
  1369. package/src/skia/types/Shader/index.ts +2 -0
  1370. package/src/skia/types/Skia.ts +84 -0
  1371. package/src/skia/{Surface → types/Surface}/Surface.ts +0 -0
  1372. package/src/skia/{Surface → types/Surface}/SurfaceFactory.ts +0 -0
  1373. package/src/skia/{Surface → types/Surface}/index.ts +0 -0
  1374. package/src/skia/{TextBlob.ts → types/TextBlob.ts} +0 -0
  1375. package/src/skia/{Typeface → types/Typeface}/Typeface.ts +0 -0
  1376. package/src/skia/types/Typeface/TypefaceFactory.ts +7 -0
  1377. package/src/skia/types/Typeface/index.ts +2 -0
  1378. package/src/skia/{Vertices → types/Vertices}/Vertices.tsx +0 -0
  1379. package/src/skia/{Vertices → types/Vertices}/index.ts +0 -0
  1380. package/src/skia/types/index.ts +28 -0
  1381. package/src/skia/web/Host.ts +56 -0
  1382. package/src/skia/web/JsiImageFilterFactory.ts +144 -0
  1383. package/src/skia/web/JsiSkCanvas.ts +330 -0
  1384. package/src/skia/web/JsiSkColor.ts +327 -0
  1385. package/src/skia/web/JsiSkColorFilter.ts +14 -0
  1386. package/src/skia/web/JsiSkColorFilterFactory.ts +67 -0
  1387. package/src/skia/web/JsiSkContourMeasure.ts +35 -0
  1388. package/src/skia/web/JsiSkContourMeasureIter.ts +23 -0
  1389. package/src/skia/web/JsiSkData.ts +13 -0
  1390. package/src/skia/web/JsiSkDataFactory.ts +35 -0
  1391. package/src/skia/web/JsiSkFont.ts +124 -0
  1392. package/src/skia/web/JsiSkFontMgr.ts +42 -0
  1393. package/src/skia/web/JsiSkFontMgrFactory.ts +18 -0
  1394. package/src/skia/web/JsiSkImage.ts +66 -0
  1395. package/src/skia/web/JsiSkImageFactory.ts +40 -0
  1396. package/src/skia/web/JsiSkImageFilter.ts +14 -0
  1397. package/src/skia/web/JsiSkMaskFilter.ts +14 -0
  1398. package/src/skia/web/JsiSkMaskFilterFactory.ts +20 -0
  1399. package/src/skia/web/JsiSkMatrix.ts +54 -0
  1400. package/src/skia/web/JsiSkPaint.ts +104 -0
  1401. package/src/skia/web/JsiSkPath.ts +369 -0
  1402. package/src/skia/web/JsiSkPathEffect.ts +14 -0
  1403. package/src/skia/web/JsiSkPathEffectFactory.ts +85 -0
  1404. package/src/skia/web/JsiSkPathFactory.ts +54 -0
  1405. package/src/skia/web/JsiSkPicture.ts +45 -0
  1406. package/src/skia/web/JsiSkPictureFactory.ts +20 -0
  1407. package/src/skia/web/JsiSkPictureRecorder.ts +31 -0
  1408. package/src/skia/web/JsiSkPoint.ts +19 -0
  1409. package/src/skia/web/JsiSkRRect.ts +27 -0
  1410. package/src/skia/web/JsiSkRSXform.ts +16 -0
  1411. package/src/skia/web/JsiSkRect.ts +37 -0
  1412. package/src/skia/web/JsiSkRuntimeEffect.ts +57 -0
  1413. package/src/skia/web/JsiSkRuntimeEffectFactory.ts +23 -0
  1414. package/src/skia/web/JsiSkSVGFactory.ts +20 -0
  1415. package/src/skia/web/JsiSkShader.ts +14 -0
  1416. package/src/skia/web/JsiSkShaderFactory.ts +178 -0
  1417. package/src/skia/web/JsiSkSurface.ts +25 -0
  1418. package/src/skia/web/JsiSkSurfaceFactory.ts +20 -0
  1419. package/src/skia/web/JsiSkTextBlob.ts +14 -0
  1420. package/src/skia/web/JsiSkTextBlobFactory.ts +49 -0
  1421. package/src/skia/web/JsiSkTypeface.ts +28 -0
  1422. package/src/skia/web/JsiSkTypefaceFactory.tsx +20 -0
  1423. package/src/skia/web/JsiSkVertices.ts +23 -0
  1424. package/src/skia/web/JsiSkVerticesFactory.ts +27 -0
  1425. package/src/skia/web/JsiSkia.ts +98 -0
  1426. package/src/skia/web/index.ts +1 -0
  1427. package/src/values/hooks/useValue.ts +2 -2
  1428. package/src/values/hooks/useValueEffect.ts +2 -5
  1429. package/src/values/types.ts +6 -6
  1430. package/src/values/web/RNSkReadonlyValue.ts +2 -2
  1431. package/src/values/web/api.ts +6 -6
  1432. package/src/views/SkiaView.tsx +3 -3
  1433. package/src/views/SkiaView.web.tsx +192 -0
  1434. package/src/views/types.ts +4 -4
  1435. package/src/views/useTouchHandler.ts +82 -51
  1436. package/src/web/index.ts +13 -0
  1437. package/cpp/skia/include/core/SkCustomMesh.h +0 -202
  1438. package/cpp/skia/include/core/SkStringView.h +0 -185
  1439. package/cpp/skia/include/private/GrContext_Base.h +0 -92
  1440. package/cpp/skia/include/private/GrGLTypesPriv.h +0 -107
  1441. package/cpp/skia/include/private/GrImageContext.h +0 -55
  1442. package/cpp/skia/include/private/GrSingleOwner.h +0 -65
  1443. package/cpp/skia/include/private/GrTypesPriv.h +0 -1354
  1444. package/cpp/skia/include/private/SkPaintParamsKey.h +0 -110
  1445. package/cpp/skia/include/private/SkShaderCodeDictionary.h +0 -63
  1446. package/cpp/skia/include/private/SkTOptional.h +0 -362
  1447. package/lib/commonjs/renderer/processors/math/Matrix3.js +0 -66
  1448. package/lib/commonjs/renderer/processors/math/Matrix3.js.map +0 -1
  1449. package/lib/commonjs/renderer/processors/math/Vector.js +0 -60
  1450. package/lib/commonjs/renderer/processors/math/Vector.js.map +0 -1
  1451. package/lib/commonjs/skia/Color.js +0 -31
  1452. package/lib/commonjs/skia/Color.js.map +0 -1
  1453. package/lib/commonjs/skia/Data/Data.js +0 -53
  1454. package/lib/commonjs/skia/Data/Data.js.map +0 -1
  1455. package/lib/commonjs/skia/Font/Font.js.map +0 -1
  1456. package/lib/commonjs/skia/Font/index.js +0 -32
  1457. package/lib/commonjs/skia/Font/index.js.map +0 -1
  1458. package/lib/commonjs/skia/Font/useFont.js +0 -36
  1459. package/lib/commonjs/skia/Font/useFont.js.map +0 -1
  1460. package/lib/commonjs/skia/FontMgr/index.js +0 -19
  1461. package/lib/commonjs/skia/FontMgr/index.js.map +0 -1
  1462. package/lib/commonjs/skia/Image/Image.js.map +0 -1
  1463. package/lib/commonjs/skia/Image/ImageFactory.js.map +0 -1
  1464. package/lib/commonjs/skia/Image/index.js +0 -45
  1465. package/lib/commonjs/skia/Image/index.js.map +0 -1
  1466. package/lib/commonjs/skia/Image/useImage.js +0 -18
  1467. package/lib/commonjs/skia/Image/useImage.js.map +0 -1
  1468. package/lib/commonjs/skia/ImageFilter/ImageFilterFactory.js.map +0 -1
  1469. package/lib/commonjs/skia/MaskFilter.js.map +0 -1
  1470. package/lib/commonjs/skia/Matrix.js +0 -21
  1471. package/lib/commonjs/skia/Matrix.js.map +0 -1
  1472. package/lib/commonjs/skia/Paint/Paint.js +0 -48
  1473. package/lib/commonjs/skia/Paint/Paint.js.map +0 -1
  1474. package/lib/commonjs/skia/Paint/index.js +0 -45
  1475. package/lib/commonjs/skia/Paint/index.js.map +0 -1
  1476. package/lib/commonjs/skia/Paint/usePaint.js +0 -26
  1477. package/lib/commonjs/skia/Paint/usePaint.js.map +0 -1
  1478. package/lib/commonjs/skia/Path/Path.js +0 -47
  1479. package/lib/commonjs/skia/Path/Path.js.map +0 -1
  1480. package/lib/commonjs/skia/Path/index.js +0 -45
  1481. package/lib/commonjs/skia/Path/index.js.map +0 -1
  1482. package/lib/commonjs/skia/Path/usePath.js +0 -60
  1483. package/lib/commonjs/skia/Path/usePath.js.map +0 -1
  1484. package/lib/commonjs/skia/PathEffect.js.map +0 -1
  1485. package/lib/commonjs/skia/Picture/index.js +0 -58
  1486. package/lib/commonjs/skia/Picture/index.js.map +0 -1
  1487. package/lib/commonjs/skia/Picture/usePicture.js +0 -30
  1488. package/lib/commonjs/skia/Picture/usePicture.js.map +0 -1
  1489. package/lib/commonjs/skia/Point.js.map +0 -1
  1490. package/lib/commonjs/skia/RRect.js +0 -6
  1491. package/lib/commonjs/skia/SVG/index.js +0 -45
  1492. package/lib/commonjs/skia/SVG/index.js.map +0 -1
  1493. package/lib/commonjs/skia/SVG/useSvg.js +0 -15
  1494. package/lib/commonjs/skia/SVG/useSvg.js.map +0 -1
  1495. package/lib/commonjs/skia/Shader/Shader.js +0 -11
  1496. package/lib/commonjs/skia/Shader/Shader.js.map +0 -1
  1497. package/lib/commonjs/skia/Shader/index.js +0 -45
  1498. package/lib/commonjs/skia/Shader/index.js.map +0 -1
  1499. package/lib/commonjs/skia/Shader/useShader.js +0 -18
  1500. package/lib/commonjs/skia/Shader/useShader.js.map +0 -1
  1501. package/lib/commonjs/skia/SkiaApi.js +0 -4
  1502. package/lib/commonjs/skia/SkiaApi.js.map +0 -1
  1503. package/lib/commonjs/skia/Typeface/index.js +0 -45
  1504. package/lib/commonjs/skia/Typeface/index.js.map +0 -1
  1505. package/lib/commonjs/skia/Typeface/useTypeface.js +0 -18
  1506. package/lib/commonjs/skia/Typeface/useTypeface.js.map +0 -1
  1507. package/lib/module/renderer/processors/math/Matrix3.js +0 -55
  1508. package/lib/module/renderer/processors/math/Matrix3.js.map +0 -1
  1509. package/lib/module/renderer/processors/math/Vector.js +0 -28
  1510. package/lib/module/renderer/processors/math/Vector.js.map +0 -1
  1511. package/lib/module/skia/Color.js +0 -13
  1512. package/lib/module/skia/Color.js.map +0 -1
  1513. package/lib/module/skia/Data/Data.js +0 -35
  1514. package/lib/module/skia/Data/Data.js.map +0 -1
  1515. package/lib/module/skia/Font/Font.js.map +0 -1
  1516. package/lib/module/skia/Font/index.js +0 -3
  1517. package/lib/module/skia/Font/index.js.map +0 -1
  1518. package/lib/module/skia/Font/useFont.js +0 -24
  1519. package/lib/module/skia/Font/useFont.js.map +0 -1
  1520. package/lib/module/skia/FontMgr/index.js +0 -2
  1521. package/lib/module/skia/FontMgr/index.js.map +0 -1
  1522. package/lib/module/skia/Image/Image.js.map +0 -1
  1523. package/lib/module/skia/Image/ImageFactory.js.map +0 -1
  1524. package/lib/module/skia/Image/index.js +0 -4
  1525. package/lib/module/skia/Image/index.js.map +0 -1
  1526. package/lib/module/skia/Image/useImage.js +0 -8
  1527. package/lib/module/skia/Image/useImage.js.map +0 -1
  1528. package/lib/module/skia/ImageFilter/ImageFilterFactory.js.map +0 -1
  1529. package/lib/module/skia/MaskFilter.js.map +0 -1
  1530. package/lib/module/skia/Matrix.js +0 -14
  1531. package/lib/module/skia/Matrix.js.map +0 -1
  1532. package/lib/module/skia/Paint/Paint.js +0 -31
  1533. package/lib/module/skia/Paint/Paint.js.map +0 -1
  1534. package/lib/module/skia/Paint/index.js +0 -4
  1535. package/lib/module/skia/Paint/index.js.map +0 -1
  1536. package/lib/module/skia/Paint/usePaint.js +0 -16
  1537. package/lib/module/skia/Paint/usePaint.js.map +0 -1
  1538. package/lib/module/skia/Path/Path.js +0 -35
  1539. package/lib/module/skia/Path/Path.js.map +0 -1
  1540. package/lib/module/skia/Path/index.js +0 -4
  1541. package/lib/module/skia/Path/index.js.map +0 -1
  1542. package/lib/module/skia/Path/usePath.js +0 -44
  1543. package/lib/module/skia/Path/usePath.js.map +0 -1
  1544. package/lib/module/skia/PathEffect.js.map +0 -1
  1545. package/lib/module/skia/Picture/index.js +0 -5
  1546. package/lib/module/skia/Picture/index.js.map +0 -1
  1547. package/lib/module/skia/Picture/usePicture.js +0 -19
  1548. package/lib/module/skia/Picture/usePicture.js.map +0 -1
  1549. package/lib/module/skia/Point.js.map +0 -1
  1550. package/lib/module/skia/RRect.js +0 -2
  1551. package/lib/module/skia/SVG/index.js +0 -4
  1552. package/lib/module/skia/SVG/index.js.map +0 -1
  1553. package/lib/module/skia/SVG/useSvg.js +0 -4
  1554. package/lib/module/skia/SVG/useSvg.js.map +0 -1
  1555. package/lib/module/skia/Shader/Shader.js +0 -2
  1556. package/lib/module/skia/Shader/Shader.js.map +0 -1
  1557. package/lib/module/skia/Shader/index.js +0 -4
  1558. package/lib/module/skia/Shader/index.js.map +0 -1
  1559. package/lib/module/skia/Shader/useShader.js +0 -7
  1560. package/lib/module/skia/Shader/useShader.js.map +0 -1
  1561. package/lib/module/skia/SkiaApi.js +0 -2
  1562. package/lib/module/skia/SkiaApi.js.map +0 -1
  1563. package/lib/module/skia/Typeface/index.js +0 -4
  1564. package/lib/module/skia/Typeface/index.js.map +0 -1
  1565. package/lib/module/skia/Typeface/useTypeface.js +0 -8
  1566. package/lib/module/skia/Typeface/useTypeface.js.map +0 -1
  1567. package/lib/typescript/src/renderer/processors/math/Matrix3.d.ts +0 -10
  1568. package/lib/typescript/src/renderer/processors/math/Vector.d.ts +0 -23
  1569. package/lib/typescript/src/skia/Color.d.ts +0 -8
  1570. package/lib/typescript/src/skia/ColorFilter/ColorFilterFactory.d.ts +0 -43
  1571. package/lib/typescript/src/skia/ContourMeasure.d.ts +0 -42
  1572. package/lib/typescript/src/skia/Data/Data.d.ts +0 -9
  1573. package/lib/typescript/src/skia/Data/DataFactory.d.ts +0 -18
  1574. package/lib/typescript/src/skia/Font/Font.d.ts +0 -187
  1575. package/lib/typescript/src/skia/Font/index.d.ts +0 -2
  1576. package/lib/typescript/src/skia/Font/useFont.d.ts +0 -6
  1577. package/lib/typescript/src/skia/FontMgr/FontMgr.d.ts +0 -18
  1578. package/lib/typescript/src/skia/FontMgr/FontMgrFactory.d.ts +0 -4
  1579. package/lib/typescript/src/skia/FontMgr/index.d.ts +0 -1
  1580. package/lib/typescript/src/skia/Image/Image.d.ts +0 -75
  1581. package/lib/typescript/src/skia/Image/ImageFactory.d.ts +0 -62
  1582. package/lib/typescript/src/skia/Image/index.d.ts +0 -3
  1583. package/lib/typescript/src/skia/Image/useImage.d.ts +0 -5
  1584. package/lib/typescript/src/skia/ImageFilter/ImageFilterFactory.d.ts +0 -130
  1585. package/lib/typescript/src/skia/MaskFilter.d.ts +0 -21
  1586. package/lib/typescript/src/skia/Matrix.d.ts +0 -28
  1587. package/lib/typescript/src/skia/Paint/Paint.d.ts +0 -128
  1588. package/lib/typescript/src/skia/Paint/index.d.ts +0 -3
  1589. package/lib/typescript/src/skia/Paint/usePaint.d.ts +0 -6
  1590. package/lib/typescript/src/skia/Path/Path.d.ts +0 -456
  1591. package/lib/typescript/src/skia/Path/PathFactory.d.ts +0 -24
  1592. package/lib/typescript/src/skia/Path/index.d.ts +0 -3
  1593. package/lib/typescript/src/skia/Path/usePath.d.ts +0 -22
  1594. package/lib/typescript/src/skia/PathEffect.d.ts +0 -75
  1595. package/lib/typescript/src/skia/Picture/Picture.d.ts +0 -26
  1596. package/lib/typescript/src/skia/Picture/index.d.ts +0 -4
  1597. package/lib/typescript/src/skia/Picture/usePicture.d.ts +0 -11
  1598. package/lib/typescript/src/skia/Point.d.ts +0 -9
  1599. package/lib/typescript/src/skia/RRect.d.ts +0 -6
  1600. package/lib/typescript/src/skia/RuntimeEffect/RuntimeEffect.d.ts +0 -48
  1601. package/lib/typescript/src/skia/SVG/SVGFactory.d.ts +0 -6
  1602. package/lib/typescript/src/skia/SVG/index.d.ts +0 -3
  1603. package/lib/typescript/src/skia/SVG/useSvg.d.ts +0 -2
  1604. package/lib/typescript/src/skia/Shader/Shader.d.ts +0 -3
  1605. package/lib/typescript/src/skia/Shader/index.d.ts +0 -3
  1606. package/lib/typescript/src/skia/Shader/useShader.d.ts +0 -1
  1607. package/lib/typescript/src/skia/SkiaApi.d.ts +0 -71
  1608. package/lib/typescript/src/skia/Typeface/TypefaceFactory.d.ts +0 -5
  1609. package/lib/typescript/src/skia/Typeface/index.d.ts +0 -3
  1610. package/lib/typescript/src/skia/Typeface/useTypeface.d.ts +0 -5
  1611. package/src/animation/timing/functions/__tests__/timing.spec.ts +0 -29
  1612. package/src/renderer/processors/math/Matrix3.ts +0 -73
  1613. package/src/renderer/processors/math/Vector.ts +0 -38
  1614. package/src/skia/Color.ts +0 -20
  1615. package/src/skia/ColorFilter/ColorFilterFactory.ts +0 -52
  1616. package/src/skia/ContourMeasure.tsx +0 -49
  1617. package/src/skia/Data/Data.ts +0 -61
  1618. package/src/skia/Data/DataFactory.ts +0 -19
  1619. package/src/skia/Font/Font.ts +0 -230
  1620. package/src/skia/Font/index.ts +0 -2
  1621. package/src/skia/Font/useFont.ts +0 -27
  1622. package/src/skia/FontMgr/FontMgr.ts +0 -24
  1623. package/src/skia/FontMgr/FontMgrFactory.ts +0 -17
  1624. package/src/skia/FontMgr/index.ts +0 -1
  1625. package/src/skia/Image/Image.ts +0 -96
  1626. package/src/skia/Image/ImageFactory.ts +0 -78
  1627. package/src/skia/Image/index.ts +0 -3
  1628. package/src/skia/Image/useImage.ts +0 -9
  1629. package/src/skia/ImageFilter/ImageFilterFactory.ts +0 -192
  1630. package/src/skia/MaskFilter.ts +0 -27
  1631. package/src/skia/Matrix.ts +0 -30
  1632. package/src/skia/Paint/Paint.ts +0 -160
  1633. package/src/skia/Paint/index.ts +0 -3
  1634. package/src/skia/Paint/usePaint.ts +0 -21
  1635. package/src/skia/Path/Path.ts +0 -554
  1636. package/src/skia/Path/PathFactory.ts +0 -27
  1637. package/src/skia/Path/index.ts +0 -3
  1638. package/src/skia/Path/usePath.ts +0 -54
  1639. package/src/skia/PathEffect.ts +0 -93
  1640. package/src/skia/Picture/Picture.ts +0 -34
  1641. package/src/skia/Picture/index.ts +0 -4
  1642. package/src/skia/Picture/usePicture.ts +0 -28
  1643. package/src/skia/Point.ts +0 -10
  1644. package/src/skia/RRect.ts +0 -7
  1645. package/src/skia/RuntimeEffect/RuntimeEffect.ts +0 -65
  1646. package/src/skia/SVG/SVGFactory.ts +0 -8
  1647. package/src/skia/SVG/index.ts +0 -3
  1648. package/src/skia/SVG/useSvg.ts +0 -6
  1649. package/src/skia/Shader/Shader.ts +0 -6
  1650. package/src/skia/Shader/index.ts +0 -3
  1651. package/src/skia/Shader/useShader.ts +0 -9
  1652. package/src/skia/SkiaApi.ts +0 -86
  1653. package/src/skia/Typeface/TypefaceFactory.ts +0 -7
  1654. package/src/skia/Typeface/index.ts +0 -3
  1655. package/src/skia/Typeface/useTypeface.ts +0 -9
  1656. package/src/values/web/__tests__/RNSkAnimation.spec.ts +0 -21
  1657. package/src/values/web/__tests__/RNSkDerivedValue.spec.ts +0 -15
  1658. package/src/values/web/__tests__/RNSkReadonlyValue.spec.ts +0 -8
  1659. package/src/values/web/__tests__/RNSkValue.spec.ts +0 -11
@@ -1 +1 @@
1
- {"version":3,"sources":["Paint.ts"],"names":["BlendMode","PaintStyle","StrokeJoin","StrokeCap","processColor","isShader","isMaskFilter","isColorFilter","isPathEffect","isImageFilter","Skia","enumKey","k","charAt","toUpperCase","slice","processPaint","paint","currentOpacity","children","paintRef","color","blendMode","style","strokeWidth","strokeJoin","strokeCap","strokeMiter","opacity","antiAlias","current","undefined","c","setShader","setColor","getColor","setBlendMode","setStyle","setStrokeJoin","setStrokeCap","setStrokeMiter","setStrokeWidth","setAlphaf","setAntiAlias","forEach","child","setMaskFilter","setColorFilter","setPathEffect","filters","filter","length","setImageFilter","reverse","reduce","ImageFilter","MakeCompose"],"mappings":"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","sourcesContent":["import type { ReactNode, RefObject } from \"react\";\n\nimport {\n BlendMode,\n PaintStyle,\n StrokeJoin,\n StrokeCap,\n processColor,\n isShader,\n isMaskFilter,\n isColorFilter,\n isPathEffect,\n isImageFilter,\n Skia,\n} from \"../../skia\";\nimport type { SkPaint, Color, SkImageFilter } from \"../../skia\";\nimport type { DeclarationResult } from \"../nodes\";\nexport type SkEnum<T> = Uncapitalize<keyof T extends string ? keyof T : never>;\n\nexport interface ChildrenProps {\n children?: ReactNode | ReactNode[];\n}\n\n// TODO: rename to paint props?\nexport interface CustomPaintProps extends ChildrenProps {\n paint?: RefObject<SkPaint>;\n color?: Color;\n strokeWidth?: number;\n blendMode?: SkEnum<typeof BlendMode>;\n style?: SkEnum<typeof PaintStyle>;\n strokeJoin?: SkEnum<typeof StrokeJoin>;\n strokeCap?: SkEnum<typeof StrokeCap>;\n strokeMiter?: number;\n opacity?: number;\n antiAlias?: boolean;\n}\n\nexport const enumKey = <K extends string>(k: K) =>\n (k.charAt(0).toUpperCase() + k.slice(1)) as Capitalize<K>;\n\nexport const processPaint = (\n paint: SkPaint,\n currentOpacity: number,\n {\n paint: paintRef,\n color,\n blendMode,\n style,\n strokeWidth,\n strokeJoin,\n strokeCap,\n strokeMiter,\n opacity,\n antiAlias,\n }: CustomPaintProps,\n children: DeclarationResult[]\n) => {\n if (paintRef && paintRef.current) {\n return paintRef.current;\n }\n if (color !== undefined) {\n const c = processColor(color, currentOpacity);\n paint.setShader(null);\n paint.setColor(c);\n } else {\n const c = processColor(paint.getColor(), currentOpacity);\n paint.setColor(c);\n }\n if (blendMode !== undefined) {\n paint.setBlendMode(BlendMode[enumKey(blendMode)]);\n }\n if (style !== undefined) {\n paint.setStyle(PaintStyle[enumKey(style)]);\n }\n if (strokeJoin !== undefined) {\n paint.setStrokeJoin(StrokeJoin[enumKey(strokeJoin)]);\n }\n if (strokeCap !== undefined) {\n paint.setStrokeCap(StrokeCap[enumKey(strokeCap)]);\n }\n if (strokeMiter !== undefined) {\n paint.setStrokeMiter(strokeMiter);\n }\n if (strokeWidth !== undefined) {\n paint.setStrokeWidth(strokeWidth);\n }\n if (opacity !== undefined) {\n paint.setAlphaf(opacity);\n }\n if (antiAlias !== undefined) {\n paint.setAntiAlias(antiAlias);\n }\n children.forEach((child) => {\n if (isShader(child)) {\n paint.setShader(child);\n } else if (isMaskFilter(child)) {\n paint.setMaskFilter(child);\n } else if (isColorFilter(child)) {\n paint.setColorFilter(child);\n } else if (isPathEffect(child)) {\n paint.setPathEffect(child);\n }\n });\n const filters = children.filter(isImageFilter);\n if (filters.length > 0) {\n paint.setImageFilter(\n filters\n .reverse()\n .reduce<SkImageFilter | null>(Skia.ImageFilter.MakeCompose, null)\n );\n }\n return paint;\n};\n"]}
1
+ {"version":3,"sources":["Paint.ts"],"names":["BlendMode","PaintStyle","StrokeJoin","StrokeCap","isShader","isMaskFilter","isColorFilter","isPathEffect","isImageFilter","processColor","enumKey","k","charAt","toUpperCase","slice","processPaint","Skia","paint","currentOpacity","children","paintRef","color","blendMode","style","strokeWidth","strokeJoin","strokeCap","strokeMiter","opacity","antiAlias","current","undefined","c","setShader","setColor","getColor","setBlendMode","setStyle","setStrokeJoin","setStrokeCap","setStrokeMiter","setStrokeWidth","setAlphaf","setAntiAlias","forEach","child","setMaskFilter","setColorFilter","setPathEffect","filters","filter","length","setImageFilter","reverse","reduce","ImageFilter","MakeCompose"],"mappings":"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","sourcesContent":["import type { ReactNode, RefObject } from \"react\";\n\nimport {\n BlendMode,\n PaintStyle,\n StrokeJoin,\n StrokeCap,\n isShader,\n isMaskFilter,\n isColorFilter,\n isPathEffect,\n isImageFilter,\n} from \"../../skia/types\";\nimport type { SkPaint, Color, SkImageFilter, Skia } from \"../../skia/types\";\nimport type { DeclarationResult } from \"../nodes\";\n\nimport { processColor } from \"./Color\";\nexport type SkEnum<T> = Uncapitalize<keyof T extends string ? keyof T : never>;\n\nexport interface ChildrenProps {\n children?: ReactNode | ReactNode[];\n}\n\n// TODO: rename to paint props?\nexport interface CustomPaintProps extends ChildrenProps {\n paint?: RefObject<SkPaint>;\n color?: Color;\n strokeWidth?: number;\n blendMode?: SkEnum<typeof BlendMode>;\n style?: SkEnum<typeof PaintStyle>;\n strokeJoin?: SkEnum<typeof StrokeJoin>;\n strokeCap?: SkEnum<typeof StrokeCap>;\n strokeMiter?: number;\n opacity?: number;\n antiAlias?: boolean;\n}\n\nexport const enumKey = <K extends string>(k: K) =>\n (k.charAt(0).toUpperCase() + k.slice(1)) as Capitalize<K>;\n\nexport const processPaint = (\n Skia: Skia,\n paint: SkPaint,\n currentOpacity: number,\n {\n paint: paintRef,\n color,\n blendMode,\n style,\n strokeWidth,\n strokeJoin,\n strokeCap,\n strokeMiter,\n opacity,\n antiAlias,\n }: CustomPaintProps,\n children: DeclarationResult[]\n) => {\n if (paintRef && paintRef.current) {\n return paintRef.current;\n }\n if (color !== undefined) {\n const c = processColor(Skia, color, currentOpacity);\n paint.setShader(null);\n paint.setColor(c);\n } else {\n const c = processColor(Skia, paint.getColor(), currentOpacity);\n paint.setColor(c);\n }\n if (blendMode !== undefined) {\n paint.setBlendMode(BlendMode[enumKey(blendMode)]);\n }\n if (style !== undefined) {\n paint.setStyle(PaintStyle[enumKey(style)]);\n }\n if (strokeJoin !== undefined) {\n paint.setStrokeJoin(StrokeJoin[enumKey(strokeJoin)]);\n }\n if (strokeCap !== undefined) {\n paint.setStrokeCap(StrokeCap[enumKey(strokeCap)]);\n }\n if (strokeMiter !== undefined) {\n paint.setStrokeMiter(strokeMiter);\n }\n if (strokeWidth !== undefined) {\n paint.setStrokeWidth(strokeWidth);\n }\n if (opacity !== undefined) {\n paint.setAlphaf(opacity);\n }\n if (antiAlias !== undefined) {\n paint.setAntiAlias(antiAlias);\n }\n children.forEach((child) => {\n if (isShader(child)) {\n paint.setShader(child);\n } else if (isMaskFilter(child)) {\n paint.setMaskFilter(child);\n } else if (isColorFilter(child)) {\n paint.setColorFilter(child);\n } else if (isPathEffect(child)) {\n paint.setPathEffect(child);\n }\n });\n const filters = children.filter(isImageFilter);\n if (filters.length > 0) {\n paint.setImageFilter(\n filters\n .reverse()\n .reduce<SkImageFilter | null>(\n (...args: Parameters<typeof Skia.ImageFilter.MakeCompose>) =>\n Skia.ImageFilter.MakeCompose(...args),\n null\n )\n );\n }\n return paint;\n};\n"]}
@@ -1,5 +1,5 @@
1
- import { Skia, isPath } from "../../skia";
2
- export const processPath = rawPath => {
1
+ import { isPath } from "../../skia/types";
2
+ export const processPath = (Skia, rawPath) => {
3
3
  const path = typeof rawPath === "string" ? Skia.Path.MakeFromSVGString(rawPath) : rawPath;
4
4
 
5
5
  if (!path) {
@@ -1 +1 @@
1
- {"version":3,"sources":["Paths.ts"],"names":["Skia","isPath","processPath","rawPath","path","Path","MakeFromSVGString","Error","isPathDef","def"],"mappings":"AACA,SAASA,IAAT,EAAeC,MAAf,QAA6B,YAA7B;AAIA,OAAO,MAAMC,WAAW,GAAIC,OAAD,IAAsB;AAC/C,QAAMC,IAAI,GACR,OAAOD,OAAP,KAAmB,QAAnB,GACIH,IAAI,CAACK,IAAL,CAAUC,iBAAV,CAA4BH,OAA5B,CADJ,GAEIA,OAHN;;AAIA,MAAI,CAACC,IAAL,EAAW;AACT,UAAM,IAAIG,KAAJ,CAAU,mBAAmBJ,OAA7B,CAAN;AACD;;AACD,SAAOC,IAAP;AACD,CATM,C,CAWP;;AACA,OAAO,MAAMI,SAAS,GAAIC,GAAD,IACvB,OAAOA,GAAP,KAAe,QAAf,IAA2BR,MAAM,CAACQ,GAAD,CAD5B","sourcesContent":["import type { SkPath } from \"../../skia\";\nimport { Skia, isPath } from \"../../skia\";\n\nexport type PathDef = string | SkPath;\n\nexport const processPath = (rawPath: PathDef) => {\n const path =\n typeof rawPath === \"string\"\n ? Skia.Path.MakeFromSVGString(rawPath)\n : rawPath;\n if (!path) {\n throw new Error(\"Invalid path: \" + rawPath);\n }\n return path;\n};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isPathDef = (def: any): def is PathDef =>\n typeof def === \"string\" || isPath(def);\n"]}
1
+ {"version":3,"sources":["Paths.ts"],"names":["isPath","processPath","Skia","rawPath","path","Path","MakeFromSVGString","Error","isPathDef","def"],"mappings":"AACA,SAASA,MAAT,QAAuB,kBAAvB;AAIA,OAAO,MAAMC,WAAW,GAAG,CAACC,IAAD,EAAaC,OAAb,KAAkC;AAC3D,QAAMC,IAAI,GACR,OAAOD,OAAP,KAAmB,QAAnB,GACID,IAAI,CAACG,IAAL,CAAUC,iBAAV,CAA4BH,OAA5B,CADJ,GAEIA,OAHN;;AAIA,MAAI,CAACC,IAAL,EAAW;AACT,UAAM,IAAIG,KAAJ,CAAU,mBAAmBJ,OAA7B,CAAN;AACD;;AACD,SAAOC,IAAP;AACD,CATM,C,CAWP;;AACA,OAAO,MAAMI,SAAS,GAAIC,GAAD,IACvB,OAAOA,GAAP,KAAe,QAAf,IAA2BT,MAAM,CAACS,GAAD,CAD5B","sourcesContent":["import type { SkPath, Skia } from \"../../skia/types\";\nimport { isPath } from \"../../skia/types\";\n\nexport type PathDef = string | SkPath;\n\nexport const processPath = (Skia: Skia, rawPath: PathDef) => {\n const path =\n typeof rawPath === \"string\"\n ? Skia.Path.MakeFromSVGString(rawPath)\n : rawPath;\n if (!path) {\n throw new Error(\"Invalid path: \" + rawPath);\n }\n return path;\n};\n\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport const isPathDef = (def: any): def is PathDef =>\n typeof def === \"string\" || isPath(def);\n"]}
@@ -1,7 +1,6 @@
1
- import { vec } from "./math";
2
- export const processRadius = radius => {
1
+ export const processRadius = (Skia, radius) => {
3
2
  if (typeof radius === "number") {
4
- return vec(radius, radius);
3
+ return Skia.Point(radius, radius);
5
4
  }
6
5
 
7
6
  return radius;
@@ -1 +1 @@
1
- {"version":3,"sources":["Radius.ts"],"names":["vec","processRadius","radius"],"mappings":"AACA,SAASA,GAAT,QAAoB,QAApB;AAIA,OAAO,MAAMC,aAAa,GAAIC,MAAD,IAA4B;AACvD,MAAI,OAAOA,MAAP,KAAkB,QAAtB,EAAgC;AAC9B,WAAOF,GAAG,CAACE,MAAD,EAASA,MAAT,CAAV;AACD;;AACD,SAAOA,MAAP;AACD,CALM","sourcesContent":["import type { Vector } from \"./math\";\nimport { vec } from \"./math\";\n\nexport type Radius = number | Vector;\n\nexport const processRadius = (radius: Radius): Vector => {\n if (typeof radius === \"number\") {\n return vec(radius, radius);\n }\n return radius;\n};\n"]}
1
+ {"version":3,"sources":["Radius.ts"],"names":["processRadius","Skia","radius","Point"],"mappings":"AAIA,OAAO,MAAMA,aAAa,GAAG,CAACC,IAAD,EAAaC,MAAb,KAAwC;AACnE,MAAI,OAAOA,MAAP,KAAkB,QAAtB,EAAgC;AAC9B,WAAOD,IAAI,CAACE,KAAL,CAAWD,MAAX,EAAmBA,MAAnB,CAAP;AACD;;AACD,SAAOA,MAAP;AACD,CALM","sourcesContent":["import type { Skia, Vector } from \"../../skia/types\";\n\nexport type Radius = number | Vector;\n\nexport const processRadius = (Skia: Skia, radius: Radius): Vector => {\n if (typeof radius === \"number\") {\n return Skia.Point(radius, radius);\n }\n return radius;\n};\n"]}
@@ -1,41 +1,23 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { Skia } from "../../skia";
3
- import { vec } from "./math/Vector";
4
2
  import { processRadius } from "./Radius";
5
- export const point = (x, y) => Skia.Point(x, y);
6
- export const rect = (x, y, width, height) => Skia.XYWHRect(x, y, width, height);
7
- export const rrect = (r, rx, ry) => Skia.RRectXY(r, rx, ry);
8
- export const bounds = rects => {
9
- const x = Math.min(...rects.map(r => r.x));
10
- const y = Math.min(...rects.map(r => r.y));
11
- const width = Math.max(...rects.map(r => r.x + r.width));
12
- const height = Math.max(...rects.map(r => r.y + r.height));
13
- return rect(x, y, width, height);
14
- };
15
- export const topLeft = r => isRRect(r) ? vec(r.rect.x, r.rect.y) : vec(r.x, r.y);
16
- export const topRight = r => isRRect(r) ? vec(r.rect.x + r.rect.width, r.rect.y) : vec(r.x + r.width, r.y);
17
- export const bottomLeft = r => isRRect(r) ? vec(r.rect.x, r.rect.y + r.rect.height) : vec(r.x, r.y + r.height);
18
- export const bottomRight = r => isRRect(r) ? vec(r.rect.x + r.rect.width, r.rect.y + r.rect.height) : vec(r.x + r.width, r.y + r.height);
19
- export const center = r => isRRect(r) ? vec(r.rect.x + r.rect.width / 2, r.rect.y + r.rect.height / 2) : vec(r.x + r.width / 2, r.y + r.height / 2); // We have an issue to check property existence on JSI backed instances
3
+ export const isEdge = (pos, b) => pos.x === b.x || pos.y === b.y || pos.x === b.width || pos.y === b.height; // We have an issue to check property existence on JSI backed instances
20
4
 
21
5
  const isRRectCtor = def => def.rect === undefined; // We have an issue to check property existence on JSI backed instances
22
6
 
23
7
 
24
- const isRectCtor = def => def.rect === undefined; // We have an issue to check property existence on JSI backed instances
25
-
8
+ const isRectCtor = def => def.rect === undefined;
26
9
 
27
- export const isRRect = def => def.rect !== undefined;
28
- export const processRect = def => {
10
+ export const processRect = (Skia, def) => {
29
11
  if (isRectCtor(def)) {
30
- return rect(def.x, def.y, def.width, def.height);
12
+ return Skia.XYWHRect(def.x, def.y, def.width, def.height);
31
13
  } else {
32
14
  return def.rect;
33
15
  }
34
16
  };
35
- export const processRRect = def => {
17
+ export const processRRect = (Skia, def) => {
36
18
  if (isRRectCtor(def)) {
37
- const r = processRadius(def.r);
38
- return rrect(rect(def.x, def.y, def.width, def.height), r.x, r.y);
19
+ const r = processRadius(Skia, def.r);
20
+ return Skia.RRectXY(Skia.XYWHRect(def.x, def.y, def.width, def.height), r.x, r.y);
39
21
  } else {
40
22
  return def.rect;
41
23
  }
@@ -1 +1 @@
1
- {"version":3,"sources":["Rects.ts"],"names":["Skia","vec","processRadius","point","x","y","Point","rect","width","height","XYWHRect","rrect","r","rx","ry","RRectXY","bounds","rects","Math","min","map","max","topLeft","isRRect","topRight","bottomLeft","bottomRight","center","isRRectCtor","def","undefined","isRectCtor","processRect","processRRect"],"mappings":"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","sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\nimport type { SkRect, SkRRect } from \"../../skia\";\nimport { Skia } from \"../../skia\";\n\nimport { vec } from \"./math/Vector\";\nimport type { Radius } from \"./Radius\";\nimport { processRadius } from \"./Radius\";\n\nexport const point = (x: number, y: number) => Skia.Point(x, y);\n\nexport const rect = (x: number, y: number, width: number, height: number) =>\n Skia.XYWHRect(x, y, width, height);\n\nexport const rrect = (r: SkRect, rx: number, ry: number) =>\n Skia.RRectXY(r, rx, ry);\n\nexport const bounds = (rects: SkRect[]) => {\n const x = Math.min(...rects.map((r) => r.x));\n const y = Math.min(...rects.map((r) => r.y));\n const width = Math.max(...rects.map((r) => r.x + r.width));\n const height = Math.max(...rects.map((r) => r.y + r.height));\n return rect(x, y, width, height);\n};\n\nexport const topLeft = (r: SkRect | SkRRect) =>\n isRRect(r) ? vec(r.rect.x, r.rect.y) : vec(r.x, r.y);\nexport const topRight = (r: SkRect | SkRRect) =>\n isRRect(r) ? vec(r.rect.x + r.rect.width, r.rect.y) : vec(r.x + r.width, r.y);\nexport const bottomLeft = (r: SkRect | SkRRect) =>\n isRRect(r)\n ? vec(r.rect.x, r.rect.y + r.rect.height)\n : vec(r.x, r.y + r.height);\nexport const bottomRight = (r: SkRect | SkRRect) =>\n isRRect(r)\n ? vec(r.rect.x + r.rect.width, r.rect.y + r.rect.height)\n : vec(r.x + r.width, r.y + r.height);\nexport const center = (r: SkRect | SkRRect) =>\n isRRect(r)\n ? vec(r.rect.x + r.rect.width / 2, r.rect.y + r.rect.height / 2)\n : vec(r.x + r.width / 2, r.y + r.height / 2);\n\n// We have an issue to check property existence on JSI backed instances\nconst isRRectCtor = (def: RRectDef): def is RRectCtor =>\n (def as any).rect === undefined;\n// We have an issue to check property existence on JSI backed instances\nconst isRectCtor = (def: RectDef): def is RectCtor =>\n (def as any).rect === undefined;\n// We have an issue to check property existence on JSI backed instances\nexport const isRRect = (def: SkRect | SkRRect): def is SkRRect =>\n (def as any).rect !== undefined;\n\nexport interface RectCtor {\n x: number;\n y: number;\n width: number;\n height: number;\n}\n\nexport interface RRectCtor extends RectCtor {\n r: Radius;\n}\n\nexport type RectDef = RectCtor | { rect: SkRect };\nexport type RRectDef = RRectCtor | { rect: SkRRect };\n\nexport const processRect = (def: RectDef) => {\n if (isRectCtor(def)) {\n return rect(def.x, def.y, def.width, def.height);\n } else {\n return def.rect;\n }\n};\n\nexport const processRRect = (def: RRectDef) => {\n if (isRRectCtor(def)) {\n const r = processRadius(def.r);\n return rrect(rect(def.x, def.y, def.width, def.height), r.x, r.y);\n } else {\n return def.rect;\n }\n};\n"]}
1
+ {"version":3,"sources":["Rects.ts"],"names":["processRadius","isEdge","pos","b","x","y","width","height","isRRectCtor","def","rect","undefined","isRectCtor","processRect","Skia","XYWHRect","processRRect","r","RRectXY"],"mappings":"AAAA;AAIA,SAASA,aAAT,QAA8B,UAA9B;AAEA,OAAO,MAAMC,MAAM,GAAG,CAACC,GAAD,EAAcC,CAAd,KACpBD,GAAG,CAACE,CAAJ,KAAUD,CAAC,CAACC,CAAZ,IAAiBF,GAAG,CAACG,CAAJ,KAAUF,CAAC,CAACE,CAA7B,IAAkCH,GAAG,CAACE,CAAJ,KAAUD,CAAC,CAACG,KAA9C,IAAuDJ,GAAG,CAACG,CAAJ,KAAUF,CAAC,CAACI,MAD9D,C,CAGP;;AACA,MAAMC,WAAW,GAAIC,GAAD,IACjBA,GAAD,CAAaC,IAAb,KAAsBC,SADxB,C,CAEA;;;AACA,MAAMC,UAAU,GAAIH,GAAD,IAChBA,GAAD,CAAaC,IAAb,KAAsBC,SADxB;;AAiBA,OAAO,MAAME,WAAW,GAAG,CAACC,IAAD,EAAaL,GAAb,KAA8B;AACvD,MAAIG,UAAU,CAACH,GAAD,CAAd,EAAqB;AACnB,WAAOK,IAAI,CAACC,QAAL,CAAcN,GAAG,CAACL,CAAlB,EAAqBK,GAAG,CAACJ,CAAzB,EAA4BI,GAAG,CAACH,KAAhC,EAAuCG,GAAG,CAACF,MAA3C,CAAP;AACD,GAFD,MAEO;AACL,WAAOE,GAAG,CAACC,IAAX;AACD;AACF,CANM;AAQP,OAAO,MAAMM,YAAY,GAAG,CAACF,IAAD,EAAaL,GAAb,KAA+B;AACzD,MAAID,WAAW,CAACC,GAAD,CAAf,EAAsB;AACpB,UAAMQ,CAAC,GAAGjB,aAAa,CAACc,IAAD,EAAOL,GAAG,CAACQ,CAAX,CAAvB;AACA,WAAOH,IAAI,CAACI,OAAL,CACLJ,IAAI,CAACC,QAAL,CAAcN,GAAG,CAACL,CAAlB,EAAqBK,GAAG,CAACJ,CAAzB,EAA4BI,GAAG,CAACH,KAAhC,EAAuCG,GAAG,CAACF,MAA3C,CADK,EAELU,CAAC,CAACb,CAFG,EAGLa,CAAC,CAACZ,CAHG,CAAP;AAKD,GAPD,MAOO;AACL,WAAOI,GAAG,CAACC,IAAX;AACD;AACF,CAXM","sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\nimport type { Skia, SkRect, SkRRect, Vector } from \"../../skia/types\";\n\nimport type { Radius } from \"./Radius\";\nimport { processRadius } from \"./Radius\";\n\nexport const isEdge = (pos: Vector, b: SkRect) =>\n pos.x === b.x || pos.y === b.y || pos.x === b.width || pos.y === b.height;\n\n// We have an issue to check property existence on JSI backed instances\nconst isRRectCtor = (def: RRectDef): def is RRectCtor =>\n (def as any).rect === undefined;\n// We have an issue to check property existence on JSI backed instances\nconst isRectCtor = (def: RectDef): def is RectCtor =>\n (def as any).rect === undefined;\n\nexport interface RectCtor {\n x: number;\n y: number;\n width: number;\n height: number;\n}\n\nexport interface RRectCtor extends RectCtor {\n r: Radius;\n}\n\nexport type RectDef = RectCtor | { rect: SkRect };\nexport type RRectDef = RRectCtor | { rect: SkRRect };\n\nexport const processRect = (Skia: Skia, def: RectDef) => {\n if (isRectCtor(def)) {\n return Skia.XYWHRect(def.x, def.y, def.width, def.height);\n } else {\n return def.rect;\n }\n};\n\nexport const processRRect = (Skia: Skia, def: RRectDef) => {\n if (isRRectCtor(def)) {\n const r = processRadius(Skia, def.r);\n return Skia.RRectXY(\n Skia.XYWHRect(def.x, def.y, def.width, def.height),\n r.x,\n r.y\n );\n } else {\n return def.rect;\n }\n};\n"]}
@@ -1,7 +1,8 @@
1
- import { neg, processTransform2d } from "./math";
2
- export const processTransform = (_ref, _ref2) => {
1
+ import { processTransform } from "../../skia/types";
2
+ export const processCanvasTransform = (_ref, _ref2) => {
3
3
  let {
4
- canvas
4
+ canvas,
5
+ Skia
5
6
  } = _ref;
6
7
  let {
7
8
  transform,
@@ -9,33 +10,40 @@ export const processTransform = (_ref, _ref2) => {
9
10
  matrix
10
11
  } = _ref2;
11
12
 
12
- if (transform) {
13
- if (matrix) {
14
- canvas.concat(matrix);
15
- } else {
16
- const m3 = processTransform2d(origin ? transformOrigin(origin, transform) : transform);
13
+ if (matrix) {
14
+ if (origin) {
15
+ const m3 = Skia.Matrix();
16
+ m3.translate(origin.x, origin.y);
17
+ m3.concat(matrix);
18
+ m3.translate(-origin.x, -origin.y);
17
19
  canvas.concat(m3);
20
+ } else {
21
+ canvas.concat(matrix);
18
22
  }
23
+ } else if (transform) {
24
+ const m3 = processTransform(Skia.Matrix(), origin ? transformOrigin(origin, transform) : transform);
25
+ canvas.concat(m3);
19
26
  }
20
27
  };
21
- export const localMatrix = _ref3 => {
28
+ export const localMatrix = (m, _ref3) => {
22
29
  let {
23
30
  transform,
24
31
  origin
25
32
  } = _ref3;
26
33
 
27
34
  if (transform) {
28
- return processTransform2d(origin ? transformOrigin(origin, transform) : transform);
35
+ return processTransform(m, origin ? transformOrigin(origin, transform) : transform);
29
36
  }
30
37
 
31
38
  return undefined;
32
39
  };
33
-
34
- const translate = a => [{
35
- translateX: a.x
40
+ export const transformOrigin = (origin, transform) => [{
41
+ translateX: origin.x
36
42
  }, {
37
- translateY: a.y
43
+ translateY: origin.y
44
+ }, ...transform, {
45
+ translateX: -origin.x
46
+ }, {
47
+ translateY: -origin.y
38
48
  }];
39
-
40
- export const transformOrigin = (origin, transform) => [...translate(origin), ...transform, ...translate(neg(origin))];
41
49
  //# sourceMappingURL=Transform.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["Transform.ts"],"names":["neg","processTransform2d","processTransform","canvas","transform","origin","matrix","concat","m3","transformOrigin","localMatrix","undefined","translate","a","translateX","x","translateY","y"],"mappings":"AAGA,SAASA,GAAT,EAAcC,kBAAd,QAAwC,QAAxC;AASA,OAAO,MAAMC,gBAAgB,GAAG,iBAG3B;AAAA,MAFH;AAAEC,IAAAA;AAAF,GAEG;AAAA,MADH;AAAEC,IAAAA,SAAF;AAAaC,IAAAA,MAAb;AAAqBC,IAAAA;AAArB,GACG;;AACH,MAAIF,SAAJ,EAAe;AACb,QAAIE,MAAJ,EAAY;AACVH,MAAAA,MAAM,CAACI,MAAP,CAAcD,MAAd;AACD,KAFD,MAEO;AACL,YAAME,EAAE,GAAGP,kBAAkB,CAC3BI,MAAM,GAAGI,eAAe,CAACJ,MAAD,EAASD,SAAT,CAAlB,GAAwCA,SADnB,CAA7B;AAGAD,MAAAA,MAAM,CAACI,MAAP,CAAcC,EAAd;AACD;AACF;AACF,CAdM;AAgBP,OAAO,MAAME,WAAW,GAAG,SAA2C;AAAA,MAA1C;AAAEN,IAAAA,SAAF;AAAaC,IAAAA;AAAb,GAA0C;;AACpE,MAAID,SAAJ,EAAe;AACb,WAAOH,kBAAkB,CACvBI,MAAM,GAAGI,eAAe,CAACJ,MAAD,EAASD,SAAT,CAAlB,GAAwCA,SADvB,CAAzB;AAGD;;AACD,SAAOO,SAAP;AACD,CAPM;;AASP,MAAMC,SAAS,GAAIC,CAAD,IAAe,CAAC;AAAEC,EAAAA,UAAU,EAAED,CAAC,CAACE;AAAhB,CAAD,EAAsB;AAAEC,EAAAA,UAAU,EAAEH,CAAC,CAACI;AAAhB,CAAtB,CAAjC;;AAEA,OAAO,MAAMR,eAAe,GAAG,CAACJ,MAAD,EAAiBD,SAAjB,KAA6C,CAC1E,GAAGQ,SAAS,CAACP,MAAD,CAD8D,EAE1E,GAAGD,SAFuE,EAG1E,GAAGQ,SAAS,CAACZ,GAAG,CAACK,MAAD,CAAJ,CAH8D,CAArE","sourcesContent":["import type { DrawingContext } from \"../DrawingContext\";\nimport type { SkMatrix } from \"../../skia/Matrix\";\n\nimport { neg, processTransform2d } from \"./math\";\nimport type { Transforms2d, Vector } from \"./math\";\n\nexport interface TransformProps {\n transform?: Transforms2d;\n origin?: Vector;\n matrix?: SkMatrix;\n}\n\nexport const processTransform = (\n { canvas }: DrawingContext,\n { transform, origin, matrix }: TransformProps\n) => {\n if (transform) {\n if (matrix) {\n canvas.concat(matrix);\n } else {\n const m3 = processTransform2d(\n origin ? transformOrigin(origin, transform) : transform\n );\n canvas.concat(m3);\n }\n }\n};\n\nexport const localMatrix = ({ transform, origin }: TransformProps) => {\n if (transform) {\n return processTransform2d(\n origin ? transformOrigin(origin, transform) : transform\n );\n }\n return undefined;\n};\n\nconst translate = (a: Vector) => [{ translateX: a.x }, { translateY: a.y }];\n\nexport const transformOrigin = (origin: Vector, transform: Transforms2d) => [\n ...translate(origin),\n ...transform,\n ...translate(neg(origin)),\n];\n"]}
1
+ {"version":3,"sources":["Transform.ts"],"names":["processTransform","processCanvasTransform","canvas","Skia","transform","origin","matrix","m3","Matrix","translate","x","y","concat","transformOrigin","localMatrix","m","undefined","translateX","translateY"],"mappings":"AAEA,SAASA,gBAAT,QAAiC,kBAAjC;AAQA,OAAO,MAAMC,sBAAsB,GAAG,iBAGjC;AAAA,MAFH;AAAEC,IAAAA,MAAF;AAAUC,IAAAA;AAAV,GAEG;AAAA,MADH;AAAEC,IAAAA,SAAF;AAAaC,IAAAA,MAAb;AAAqBC,IAAAA;AAArB,GACG;;AACH,MAAIA,MAAJ,EAAY;AACV,QAAID,MAAJ,EAAY;AACV,YAAME,EAAE,GAAGJ,IAAI,CAACK,MAAL,EAAX;AACAD,MAAAA,EAAE,CAACE,SAAH,CAAaJ,MAAM,CAACK,CAApB,EAAuBL,MAAM,CAACM,CAA9B;AACAJ,MAAAA,EAAE,CAACK,MAAH,CAAUN,MAAV;AACAC,MAAAA,EAAE,CAACE,SAAH,CAAa,CAACJ,MAAM,CAACK,CAArB,EAAwB,CAACL,MAAM,CAACM,CAAhC;AACAT,MAAAA,MAAM,CAACU,MAAP,CAAcL,EAAd;AACD,KAND,MAMO;AACLL,MAAAA,MAAM,CAACU,MAAP,CAAcN,MAAd;AACD;AACF,GAVD,MAUO,IAAIF,SAAJ,EAAe;AACpB,UAAMG,EAAE,GAAGP,gBAAgB,CACzBG,IAAI,CAACK,MAAL,EADyB,EAEzBH,MAAM,GAAGQ,eAAe,CAACR,MAAD,EAASD,SAAT,CAAlB,GAAwCA,SAFrB,CAA3B;AAIAF,IAAAA,MAAM,CAACU,MAAP,CAAcL,EAAd;AACD;AACF,CArBM;AAuBP,OAAO,MAAMO,WAAW,GAAG,CACzBC,CADyB,YAGtB;AAAA,MADH;AAAEX,IAAAA,SAAF;AAAaC,IAAAA;AAAb,GACG;;AACH,MAAID,SAAJ,EAAe;AACb,WAAOJ,gBAAgB,CACrBe,CADqB,EAErBV,MAAM,GAAGQ,eAAe,CAACR,MAAD,EAASD,SAAT,CAAlB,GAAwCA,SAFzB,CAAvB;AAID;;AACD,SAAOY,SAAP;AACD,CAXM;AAaP,OAAO,MAAMH,eAAe,GAAG,CAACR,MAAD,EAAiBD,SAAjB,KAA6C,CAC1E;AAAEa,EAAAA,UAAU,EAAEZ,MAAM,CAACK;AAArB,CAD0E,EAE1E;AAAEQ,EAAAA,UAAU,EAAEb,MAAM,CAACM;AAArB,CAF0E,EAG1E,GAAGP,SAHuE,EAI1E;AAAEa,EAAAA,UAAU,EAAE,CAACZ,MAAM,CAACK;AAAtB,CAJ0E,EAK1E;AAAEQ,EAAAA,UAAU,EAAE,CAACb,MAAM,CAACM;AAAtB,CAL0E,CAArE","sourcesContent":["import type { DrawingContext } from \"../DrawingContext\";\nimport type { SkMatrix, Vector, Transforms2d } from \"../../skia/types\";\nimport { processTransform } from \"../../skia/types\";\n\nexport interface TransformProps {\n transform?: Transforms2d;\n origin?: Vector;\n matrix?: SkMatrix;\n}\n\nexport const processCanvasTransform = (\n { canvas, Skia }: DrawingContext,\n { transform, origin, matrix }: TransformProps\n) => {\n if (matrix) {\n if (origin) {\n const m3 = Skia.Matrix();\n m3.translate(origin.x, origin.y);\n m3.concat(matrix);\n m3.translate(-origin.x, -origin.y);\n canvas.concat(m3);\n } else {\n canvas.concat(matrix);\n }\n } else if (transform) {\n const m3 = processTransform(\n Skia.Matrix(),\n origin ? transformOrigin(origin, transform) : transform\n );\n canvas.concat(m3);\n }\n};\n\nexport const localMatrix = (\n m: SkMatrix,\n { transform, origin }: TransformProps\n) => {\n if (transform) {\n return processTransform(\n m,\n origin ? transformOrigin(origin, transform) : transform\n );\n }\n return undefined;\n};\n\nexport const transformOrigin = (origin: Vector, transform: Transforms2d) => [\n { translateX: origin.x },\n { translateY: origin.y },\n ...transform,\n { translateX: -origin.x },\n { translateY: -origin.y },\n];\n"]}
@@ -1,4 +1,3 @@
1
- export * from "./Paint";
2
1
  export * from "./Transform";
3
2
  export * from "./Animations";
4
3
  export * from "./Circles";
@@ -8,4 +7,6 @@ export * from "./Font";
8
7
  export * from "./Paths";
9
8
  export * from "./Clips";
10
9
  export * from "./Radius";
10
+ export * from "./Color";
11
+ export * from "./Paint";
11
12
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAd;AACA,cAAc,aAAd;AACA,cAAc,cAAd;AACA,cAAc,WAAd;AACA,cAAc,SAAd;AACA,cAAc,QAAd;AACA,cAAc,QAAd;AACA,cAAc,SAAd;AACA,cAAc,SAAd;AACA,cAAc,UAAd","sourcesContent":["export * from \"./Paint\";\nexport * from \"./Transform\";\nexport * from \"./Animations\";\nexport * from \"./Circles\";\nexport * from \"./Rects\";\nexport * from \"./math\";\nexport * from \"./Font\";\nexport * from \"./Paths\";\nexport * from \"./Clips\";\nexport * from \"./Radius\";\n"]}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAd;AACA,cAAc,cAAd;AACA,cAAc,WAAd;AACA,cAAc,SAAd;AACA,cAAc,QAAd;AACA,cAAc,QAAd;AACA,cAAc,SAAd;AACA,cAAc,SAAd;AACA,cAAc,UAAd;AACA,cAAc,SAAd;AACA,cAAc,SAAd","sourcesContent":["export * from \"./Transform\";\nexport * from \"./Animations\";\nexport * from \"./Circles\";\nexport * from \"./Rects\";\nexport * from \"./math\";\nexport * from \"./Font\";\nexport * from \"./Paths\";\nexport * from \"./Clips\";\nexport * from \"./Radius\";\nexport * from \"./Color\";\nexport * from \"./Paint\";\n"]}
@@ -1 +1 @@
1
- {"version":3,"sources":["Coordinates.ts"],"names":["canvas2Cartesian","v","center","x","y","cartesian2Canvas","cartesian2Polar","theta","Math","atan2","radius","sqrt","polar2Cartesian","p","cos","sin","polar2Canvas","canvas2Polar"],"mappings":"AAOA,OAAO,MAAMA,gBAAgB,GAAG,CAACC,CAAD,EAAYC,MAAZ,MAAgC;AAC9DC,EAAAA,CAAC,EAAEF,CAAC,CAACE,CAAF,GAAMD,MAAM,CAACC,CAD8C;AAE9DC,EAAAA,CAAC,EAAE,CAAC,CAAD,IAAMH,CAAC,CAACG,CAAF,GAAMF,MAAM,CAACE,CAAnB;AAF2D,CAAhC,CAAzB;AAKP,OAAO,MAAMC,gBAAgB,GAAG,CAACJ,CAAD,EAAYC,MAAZ,MAAgC;AAC9DC,EAAAA,CAAC,EAAEF,CAAC,CAACE,CAAF,GAAMD,MAAM,CAACC,CAD8C;AAE9DC,EAAAA,CAAC,EAAE,CAAC,CAAD,GAAKH,CAAC,CAACG,CAAP,GAAWF,MAAM,CAACE;AAFyC,CAAhC,CAAzB;AAKP,OAAO,MAAME,eAAe,GAAIL,CAAD,KAAgB;AAC7CM,EAAAA,KAAK,EAAEC,IAAI,CAACC,KAAL,CAAWR,CAAC,CAACG,CAAb,EAAgBH,CAAC,CAACE,CAAlB,CADsC;AAE7CO,EAAAA,MAAM,EAAEF,IAAI,CAACG,IAAL,CAAUV,CAAC,CAACE,CAAF,IAAO,CAAP,GAAWF,CAAC,CAACG,CAAF,IAAO,CAA5B;AAFqC,CAAhB,CAAxB;AAKP,OAAO,MAAMQ,eAAe,GAAIC,CAAD,KAAoB;AACjDV,EAAAA,CAAC,EAAEU,CAAC,CAACH,MAAF,GAAWF,IAAI,CAACM,GAAL,CAASD,CAAC,CAACN,KAAX,CADmC;AAEjDH,EAAAA,CAAC,EAAES,CAAC,CAACH,MAAF,GAAWF,IAAI,CAACO,GAAL,CAASF,CAAC,CAACN,KAAX;AAFmC,CAApB,CAAxB;AAKP,OAAO,MAAMS,YAAY,GAAG,CAACH,CAAD,EAAgBX,MAAhB,KAC1BG,gBAAgB,CAACO,eAAe,CAACC,CAAD,CAAhB,EAAqBX,MAArB,CADX;AAGP,OAAO,MAAMe,YAAY,GAAG,CAAChB,CAAD,EAAYC,MAAZ,KAC1BI,eAAe,CAACN,gBAAgB,CAACC,CAAD,EAAIC,MAAJ,CAAjB,CADV","sourcesContent":["import type { Vector } from \"./Vector\";\n\nexport interface PolarPoint {\n theta: number;\n radius: number;\n}\n\nexport const canvas2Cartesian = (v: Vector, center: Vector) => ({\n x: v.x - center.x,\n y: -1 * (v.y - center.y),\n});\n\nexport const cartesian2Canvas = (v: Vector, center: Vector) => ({\n x: v.x + center.x,\n y: -1 * v.y + center.y,\n});\n\nexport const cartesian2Polar = (v: Vector) => ({\n theta: Math.atan2(v.y, v.x),\n radius: Math.sqrt(v.x ** 2 + v.y ** 2),\n});\n\nexport const polar2Cartesian = (p: PolarPoint) => ({\n x: p.radius * Math.cos(p.theta),\n y: p.radius * Math.sin(p.theta),\n});\n\nexport const polar2Canvas = (p: PolarPoint, center: Vector) =>\n cartesian2Canvas(polar2Cartesian(p), center);\n\nexport const canvas2Polar = (v: Vector, center: Vector) =>\n cartesian2Polar(canvas2Cartesian(v, center));\n"]}
1
+ {"version":3,"sources":["Coordinates.ts"],"names":["canvas2Cartesian","v","center","x","y","cartesian2Canvas","cartesian2Polar","theta","Math","atan2","radius","sqrt","polar2Cartesian","p","cos","sin","polar2Canvas","canvas2Polar"],"mappings":"AAOA,OAAO,MAAMA,gBAAgB,GAAG,CAACC,CAAD,EAAYC,MAAZ,MAAgC;AAC9DC,EAAAA,CAAC,EAAEF,CAAC,CAACE,CAAF,GAAMD,MAAM,CAACC,CAD8C;AAE9DC,EAAAA,CAAC,EAAE,CAAC,CAAD,IAAMH,CAAC,CAACG,CAAF,GAAMF,MAAM,CAACE,CAAnB;AAF2D,CAAhC,CAAzB;AAKP,OAAO,MAAMC,gBAAgB,GAAG,CAACJ,CAAD,EAAYC,MAAZ,MAAgC;AAC9DC,EAAAA,CAAC,EAAEF,CAAC,CAACE,CAAF,GAAMD,MAAM,CAACC,CAD8C;AAE9DC,EAAAA,CAAC,EAAE,CAAC,CAAD,GAAKH,CAAC,CAACG,CAAP,GAAWF,MAAM,CAACE;AAFyC,CAAhC,CAAzB;AAKP,OAAO,MAAME,eAAe,GAAIL,CAAD,KAAgB;AAC7CM,EAAAA,KAAK,EAAEC,IAAI,CAACC,KAAL,CAAWR,CAAC,CAACG,CAAb,EAAgBH,CAAC,CAACE,CAAlB,CADsC;AAE7CO,EAAAA,MAAM,EAAEF,IAAI,CAACG,IAAL,CAAUV,CAAC,CAACE,CAAF,IAAO,CAAP,GAAWF,CAAC,CAACG,CAAF,IAAO,CAA5B;AAFqC,CAAhB,CAAxB;AAKP,OAAO,MAAMQ,eAAe,GAAIC,CAAD,KAAoB;AACjDV,EAAAA,CAAC,EAAEU,CAAC,CAACH,MAAF,GAAWF,IAAI,CAACM,GAAL,CAASD,CAAC,CAACN,KAAX,CADmC;AAEjDH,EAAAA,CAAC,EAAES,CAAC,CAACH,MAAF,GAAWF,IAAI,CAACO,GAAL,CAASF,CAAC,CAACN,KAAX;AAFmC,CAApB,CAAxB;AAKP,OAAO,MAAMS,YAAY,GAAG,CAACH,CAAD,EAAgBX,MAAhB,KAC1BG,gBAAgB,CAACO,eAAe,CAACC,CAAD,CAAhB,EAAqBX,MAArB,CADX;AAGP,OAAO,MAAMe,YAAY,GAAG,CAAChB,CAAD,EAAYC,MAAZ,KAC1BI,eAAe,CAACN,gBAAgB,CAACC,CAAD,EAAIC,MAAJ,CAAjB,CADV","sourcesContent":["import type { Vector } from \"../../../skia/types\";\n\nexport interface PolarPoint {\n theta: number;\n radius: number;\n}\n\nexport const canvas2Cartesian = (v: Vector, center: Vector) => ({\n x: v.x - center.x,\n y: -1 * (v.y - center.y),\n});\n\nexport const cartesian2Canvas = (v: Vector, center: Vector) => ({\n x: v.x + center.x,\n y: -1 * v.y + center.y,\n});\n\nexport const cartesian2Polar = (v: Vector) => ({\n theta: Math.atan2(v.y, v.x),\n radius: Math.sqrt(v.x ** 2 + v.y ** 2),\n});\n\nexport const polar2Cartesian = (p: PolarPoint) => ({\n x: p.radius * Math.cos(p.theta),\n y: p.radius * Math.sin(p.theta),\n});\n\nexport const polar2Canvas = (p: PolarPoint, center: Vector) =>\n cartesian2Canvas(polar2Cartesian(p), center);\n\nexport const canvas2Polar = (v: Vector, center: Vector) =>\n cartesian2Polar(canvas2Cartesian(v, center));\n"]}
@@ -1 +1 @@
1
- {"version":3,"sources":["Transforms.ts"],"names":["canvas2Polar","polar2Canvas","rotate","tr","origin","rotation","radius","theta"],"mappings":"AAAA,SAASA,YAAT,EAAuBC,YAAvB,QAA2C,eAA3C;AAGA,OAAO,MAAMC,MAAM,GAAG,CAACC,EAAD,EAAaC,MAAb,EAA6BC,QAA7B,KAAkD;AACtE,QAAM;AAAEC,IAAAA,MAAF;AAAUC,IAAAA;AAAV,MAAoBP,YAAY,CAACG,EAAD,EAAKC,MAAL,CAAtC;AACA,SAAOH,YAAY,CAAC;AAAEK,IAAAA,MAAF;AAAUC,IAAAA,KAAK,EAAEA,KAAK,GAAGF;AAAzB,GAAD,EAAsCD,MAAtC,CAAnB;AACD,CAHM","sourcesContent":["import { canvas2Polar, polar2Canvas } from \"./Coordinates\";\nimport type { Vector } from \"./Vector\";\n\nexport const rotate = (tr: Vector, origin: Vector, rotation: number) => {\n const { radius, theta } = canvas2Polar(tr, origin);\n return polar2Canvas({ radius, theta: theta + rotation }, origin);\n};\n"]}
1
+ {"version":3,"sources":["Transforms.ts"],"names":["canvas2Polar","polar2Canvas","rotate","tr","origin","rotation","radius","theta"],"mappings":"AAEA,SAASA,YAAT,EAAuBC,YAAvB,QAA2C,eAA3C;AAEA,OAAO,MAAMC,MAAM,GAAG,CAACC,EAAD,EAAaC,MAAb,EAA6BC,QAA7B,KAAkD;AACtE,QAAM;AAAEC,IAAAA,MAAF;AAAUC,IAAAA;AAAV,MAAoBP,YAAY,CAACG,EAAD,EAAKC,MAAL,CAAtC;AACA,SAAOH,YAAY,CAAC;AAAEK,IAAAA,MAAF;AAAUC,IAAAA,KAAK,EAAEA,KAAK,GAAGF;AAAzB,GAAD,EAAsCD,MAAtC,CAAnB;AACD,CAHM","sourcesContent":["import type { Vector } from \"../../../skia/types\";\n\nimport { canvas2Polar, polar2Canvas } from \"./Coordinates\";\n\nexport const rotate = (tr: Vector, origin: Vector, rotation: number) => {\n const { radius, theta } = canvas2Polar(tr, origin);\n return polar2Canvas({ radius, theta: theta + rotation }, origin);\n};\n"]}
@@ -1,6 +1,4 @@
1
- export * from "./Vector";
2
1
  export * from "./Coordinates";
3
- export * from "./Matrix3";
4
2
  export * from "./Math";
5
3
  export * from "./Transforms";
6
4
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAd;AACA,cAAc,eAAd;AACA,cAAc,WAAd;AACA,cAAc,QAAd;AACA,cAAc,cAAd","sourcesContent":["export * from \"./Vector\";\nexport * from \"./Coordinates\";\nexport * from \"./Matrix3\";\nexport * from \"./Math\";\nexport * from \"./Transforms\";\n"]}
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAd;AACA,cAAc,QAAd;AACA,cAAc,cAAd","sourcesContent":["export * from \"./Coordinates\";\nexport * from \"./Math\";\nexport * from \"./Transforms\";\n"]}
@@ -0,0 +1,13 @@
1
+ import React, { useContext } from "react";
2
+ const CanvasContext = /*#__PURE__*/React.createContext(null);
3
+ export const CanvasProvider = CanvasContext.Provider;
4
+ export const useCanvas = () => {
5
+ const ctx = useContext(CanvasContext);
6
+
7
+ if (!ctx) {
8
+ throw new Error("Canvas context is not available");
9
+ }
10
+
11
+ return ctx;
12
+ };
13
+ //# sourceMappingURL=useCanvas.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["useCanvas.ts"],"names":["React","useContext","CanvasContext","createContext","CanvasProvider","Provider","useCanvas","ctx","Error"],"mappings":"AAAA,OAAOA,KAAP,IAAgBC,UAAhB,QAAkC,OAAlC;AAUA,MAAMC,aAAa,gBAAGF,KAAK,CAACG,aAAN,CAA0C,IAA1C,CAAtB;AAEA,OAAO,MAAMC,cAAc,GAAGF,aAAa,CAACG,QAArC;AAEP,OAAO,MAAMC,SAAS,GAAG,MAAM;AAC7B,QAAMC,GAAG,GAAGN,UAAU,CAACC,aAAD,CAAtB;;AACA,MAAI,CAACK,GAAL,EAAU;AACR,UAAM,IAAIC,KAAJ,CAAU,iCAAV,CAAN;AACD;;AACD,SAAOD,GAAP;AACD,CANM","sourcesContent":["import React, { useContext } from \"react\";\n\nimport type { Skia } from \"../skia/types\";\nimport type { SkiaValue } from \"../values/types\";\n\ninterface CanvasContext {\n Skia: Skia;\n size: SkiaValue<{ width: number; height: number }>;\n}\n\nconst CanvasContext = React.createContext<CanvasContext | null>(null);\n\nexport const CanvasProvider = CanvasContext.Provider;\n\nexport const useCanvas = () => {\n const ctx = useContext(CanvasContext);\n if (!ctx) {\n throw new Error(\"Canvas context is not available\");\n }\n return ctx;\n};\n"]}
@@ -1,6 +1,6 @@
1
- import { NativeModules } from "react-native";
1
+ import { NativeModules, Platform } from "react-native";
2
2
 
3
- if (global.SkiaApi == null) {
3
+ if (Platform.OS !== "web" && global.SkiaApi == null) {
4
4
  // Initialize RN Skia
5
5
  const SkiaModule = NativeModules.RNSkia;
6
6
 
@@ -1 +1 @@
1
- {"version":3,"sources":["NativeSetup.ts"],"names":["NativeModules","global","SkiaApi","SkiaModule","RNSkia","install","Error","result"],"mappings":"AAAA,SAASA,aAAT,QAA8B,cAA9B;;AAEA,IAAIC,MAAM,CAACC,OAAP,IAAkB,IAAtB,EAA4B;AAC1B;AACA,QAAMC,UAAU,GAAGH,aAAa,CAACI,MAAjC;;AACA,MAAID,UAAU,IAAI,IAAd,IAAsB,OAAOA,UAAU,CAACE,OAAlB,KAA8B,UAAxD,EAAoE;AAClE,UAAM,IAAIC,KAAJ,CACJ,mEACE,qDAFE,CAAN;AAID;;AACD,QAAMC,MAAM,GAAGJ,UAAU,CAACE,OAAX,EAAf;;AACA,MAAIE,MAAM,KAAK,IAAf,EAAqB;AACnB,UAAM,IAAID,KAAJ,CACH,wEAAuEC,MAAO,EAD3E,CAAN;AAGD;AACF","sourcesContent":["import { NativeModules } from \"react-native\";\n\nif (global.SkiaApi == null) {\n // Initialize RN Skia\n const SkiaModule = NativeModules.RNSkia;\n if (SkiaModule == null || typeof SkiaModule.install !== \"function\") {\n throw new Error(\n \"Native RNSkia Module cannot be found! Make sure you correctly \" +\n \"installed native dependencies and rebuilt your app.\"\n );\n }\n const result = SkiaModule.install();\n if (result !== true) {\n throw new Error(\n `Native Skia Module failed to correctly install JSI Bindings! Result: ${result}`\n );\n }\n}\n"]}
1
+ {"version":3,"sources":["NativeSetup.ts"],"names":["NativeModules","Platform","OS","global","SkiaApi","SkiaModule","RNSkia","install","Error","result"],"mappings":"AAAA,SAASA,aAAT,EAAwBC,QAAxB,QAAwC,cAAxC;;AAEA,IAAIA,QAAQ,CAACC,EAAT,KAAgB,KAAhB,IAAyBC,MAAM,CAACC,OAAP,IAAkB,IAA/C,EAAqD;AACnD;AACA,QAAMC,UAAU,GAAGL,aAAa,CAACM,MAAjC;;AACA,MAAID,UAAU,IAAI,IAAd,IAAsB,OAAOA,UAAU,CAACE,OAAlB,KAA8B,UAAxD,EAAoE;AAClE,UAAM,IAAIC,KAAJ,CACJ,mEACE,qDAFE,CAAN;AAID;;AACD,QAAMC,MAAM,GAAGJ,UAAU,CAACE,OAAX,EAAf;;AACA,MAAIE,MAAM,KAAK,IAAf,EAAqB;AACnB,UAAM,IAAID,KAAJ,CACH,wEAAuEC,MAAO,EAD3E,CAAN;AAGD;AACF","sourcesContent":["import { NativeModules, Platform } from \"react-native\";\n\nif (Platform.OS !== \"web\" && global.SkiaApi == null) {\n // Initialize RN Skia\n const SkiaModule = NativeModules.RNSkia;\n if (SkiaModule == null || typeof SkiaModule.install !== \"function\") {\n throw new Error(\n \"Native RNSkia Module cannot be found! Make sure you correctly \" +\n \"installed native dependencies and rebuilt your app.\"\n );\n }\n const result = SkiaModule.install();\n if (result !== true) {\n throw new Error(\n `Native Skia Module failed to correctly install JSI Bindings! Result: ${result}`\n );\n }\n}\n"]}
@@ -1,40 +1,7 @@
1
1
  /*global SkiaApi*/
2
- import "./NativeSetup";
3
2
 
4
3
  /**
5
- * Declares the implemented API with overrides.
4
+ * Declares the SkiaApi as an available object in the global scope
6
5
  */
7
- export const Skia = {
8
- // Factories
9
- Typeface: SkiaApi.Typeface,
10
- MaskFilter: SkiaApi.MaskFilter,
11
- RuntimeEffect: SkiaApi.RuntimeEffect,
12
- Shader: SkiaApi.Shader,
13
- ImageFilter: SkiaApi.ImageFilter,
14
- PathEffect: SkiaApi.PathEffect,
15
- Data: SkiaApi.Data,
16
- SVG: SkiaApi.SVG,
17
- FontMgr: SkiaApi.FontMgr,
18
- TextBlob: SkiaApi.TextBlob,
19
- // Constructors
20
- Matrix: SkiaApi.Matrix,
21
- Font: SkiaApi.Font,
22
- Point: SkiaApi.Point,
23
- XYWHRect: SkiaApi.XYWHRect,
24
- RRectXY: SkiaApi.RRectXY,
25
- RuntimeShaderBuilder: SkiaApi.RuntimeShaderBuilder,
26
- Paint: SkiaApi.Paint,
27
- PictureRecorder: SkiaApi.PictureRecorder,
28
- Picture: SkiaApi.Picture,
29
- Path: SkiaApi.Path,
30
- ColorFilter: SkiaApi.ColorFilter,
31
- ContourMeasureIter: SkiaApi.ContourMeasureIter,
32
- Color: SkiaApi.Color,
33
- RSXform: SkiaApi.RSXform,
34
- // For the following methods the factory symmetry is broken to be comptatible with CanvasKit
35
- MakeSurface: SkiaApi.Surface.Make,
36
- MakeImageFromEncoded: SkiaApi.Image.MakeImageFromEncoded,
37
- MakeImage: SkiaApi.Image.MakeImage,
38
- MakeVertices: SkiaApi.MakeVertices
39
- };
6
+ export const Skia = SkiaApi;
40
7
  //# sourceMappingURL=Skia.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["Skia.ts"],"names":["Skia","Typeface","SkiaApi","MaskFilter","RuntimeEffect","Shader","ImageFilter","PathEffect","Data","SVG","FontMgr","TextBlob","Matrix","Font","Point","XYWHRect","RRectXY","RuntimeShaderBuilder","Paint","PictureRecorder","Picture","Path","ColorFilter","ContourMeasureIter","Color","RSXform","MakeSurface","Surface","Make","MakeImageFromEncoded","Image","MakeImage","MakeVertices"],"mappings":"AAAA;AACA,OAAO,eAAP;;AAUA;AACA;AACA;AACA,OAAO,MAAMA,IAAI,GAAG;AAClB;AACAC,EAAAA,QAAQ,EAAEC,OAAO,CAACD,QAFA;AAGlBE,EAAAA,UAAU,EAAED,OAAO,CAACC,UAHF;AAIlBC,EAAAA,aAAa,EAAEF,OAAO,CAACE,aAJL;AAKlBC,EAAAA,MAAM,EAAEH,OAAO,CAACG,MALE;AAMlBC,EAAAA,WAAW,EAAEJ,OAAO,CAACI,WANH;AAOlBC,EAAAA,UAAU,EAAEL,OAAO,CAACK,UAPF;AAQlBC,EAAAA,IAAI,EAAEN,OAAO,CAACM,IARI;AASlBC,EAAAA,GAAG,EAAEP,OAAO,CAACO,GATK;AAUlBC,EAAAA,OAAO,EAAER,OAAO,CAACQ,OAVC;AAWlBC,EAAAA,QAAQ,EAAET,OAAO,CAACS,QAXA;AAYlB;AACAC,EAAAA,MAAM,EAAEV,OAAO,CAACU,MAbE;AAclBC,EAAAA,IAAI,EAAEX,OAAO,CAACW,IAdI;AAelBC,EAAAA,KAAK,EAAEZ,OAAO,CAACY,KAfG;AAgBlBC,EAAAA,QAAQ,EAAEb,OAAO,CAACa,QAhBA;AAiBlBC,EAAAA,OAAO,EAAEd,OAAO,CAACc,OAjBC;AAkBlBC,EAAAA,oBAAoB,EAAEf,OAAO,CAACe,oBAlBZ;AAmBlBC,EAAAA,KAAK,EAAEhB,OAAO,CAACgB,KAnBG;AAoBlBC,EAAAA,eAAe,EAAEjB,OAAO,CAACiB,eApBP;AAqBlBC,EAAAA,OAAO,EAAElB,OAAO,CAACkB,OArBC;AAsBlBC,EAAAA,IAAI,EAAEnB,OAAO,CAACmB,IAtBI;AAuBlBC,EAAAA,WAAW,EAAEpB,OAAO,CAACoB,WAvBH;AAwBlBC,EAAAA,kBAAkB,EAAErB,OAAO,CAACqB,kBAxBV;AAyBlBC,EAAAA,KAAK,EAAEtB,OAAO,CAACsB,KAzBG;AA0BlBC,EAAAA,OAAO,EAAEvB,OAAO,CAACuB,OA1BC;AA2BlB;AACAC,EAAAA,WAAW,EAAExB,OAAO,CAACyB,OAAR,CAAgBC,IA5BX;AA6BlBC,EAAAA,oBAAoB,EAAE3B,OAAO,CAAC4B,KAAR,CAAcD,oBA7BlB;AA8BlBE,EAAAA,SAAS,EAAE7B,OAAO,CAAC4B,KAAR,CAAcC,SA9BP;AA+BlBC,EAAAA,YAAY,EAAE9B,OAAO,CAAC8B;AA/BJ,CAAb","sourcesContent":["/*global SkiaApi*/\nimport \"./NativeSetup\";\nimport type { SkiaApi as SkSkiaApi } from \"./SkiaApi\";\n\n/**\n * Declares the SkiaApi as an available object in the global scope\n */\ndeclare global {\n var SkiaApi: SkSkiaApi;\n}\n\n/**\n * Declares the implemented API with overrides.\n */\nexport const Skia = {\n // Factories\n Typeface: SkiaApi.Typeface,\n MaskFilter: SkiaApi.MaskFilter,\n RuntimeEffect: SkiaApi.RuntimeEffect,\n Shader: SkiaApi.Shader,\n ImageFilter: SkiaApi.ImageFilter,\n PathEffect: SkiaApi.PathEffect,\n Data: SkiaApi.Data,\n SVG: SkiaApi.SVG,\n FontMgr: SkiaApi.FontMgr,\n TextBlob: SkiaApi.TextBlob,\n // Constructors\n Matrix: SkiaApi.Matrix,\n Font: SkiaApi.Font,\n Point: SkiaApi.Point,\n XYWHRect: SkiaApi.XYWHRect,\n RRectXY: SkiaApi.RRectXY,\n RuntimeShaderBuilder: SkiaApi.RuntimeShaderBuilder,\n Paint: SkiaApi.Paint,\n PictureRecorder: SkiaApi.PictureRecorder,\n Picture: SkiaApi.Picture,\n Path: SkiaApi.Path,\n ColorFilter: SkiaApi.ColorFilter,\n ContourMeasureIter: SkiaApi.ContourMeasureIter,\n Color: SkiaApi.Color,\n RSXform: SkiaApi.RSXform,\n // For the following methods the factory symmetry is broken to be comptatible with CanvasKit\n MakeSurface: SkiaApi.Surface.Make,\n MakeImageFromEncoded: SkiaApi.Image.MakeImageFromEncoded,\n MakeImage: SkiaApi.Image.MakeImage,\n MakeVertices: SkiaApi.MakeVertices,\n};\n"]}
1
+ {"version":3,"sources":["Skia.ts"],"names":["Skia","SkiaApi"],"mappings":"AAAA;;AAGA;AACA;AACA;AAKA,OAAO,MAAMA,IAAI,GAAGC,OAAb","sourcesContent":["/*global SkiaApi*/\nimport type { Skia as SkSkiaApi } from \"./types\";\n\n/**\n * Declares the SkiaApi as an available object in the global scope\n */\ndeclare global {\n var SkiaApi: SkSkiaApi;\n}\n\nexport const Skia = SkiaApi;\n"]}
@@ -0,0 +1,3 @@
1
+ import { JsiSkApi } from "./web";
2
+ export const Skia = JsiSkApi(global.CanvasKit);
3
+ //# sourceMappingURL=Skia.web.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Skia.web.ts"],"names":["JsiSkApi","Skia","global","CanvasKit"],"mappings":"AAAA,SAASA,QAAT,QAAyB,OAAzB;AAEA,OAAO,MAAMC,IAAI,GAAGD,QAAQ,CAACE,MAAM,CAACC,SAAR,CAArB","sourcesContent":["import { JsiSkApi } from \"./web\";\n\nexport const Skia = JsiSkApi(global.CanvasKit);\n"]}
@@ -0,0 +1,62 @@
1
+ import { useRef, useEffect, useState } from "react";
2
+ import { Image, Platform } from "react-native";
3
+ import { Skia } from "../Skia";
4
+
5
+ const resolveAsset = source => {
6
+ return Platform.OS === "web" ? source.default : Image.resolveAssetSource(source).uri;
7
+ };
8
+
9
+ export const useDataCollection = function (sources, factory) {
10
+ let deps = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
11
+ const [data, setData] = useState(null);
12
+ useEffect(() => {
13
+ const bytesOrURIs = sources.map(source => {
14
+ if (source instanceof Uint8Array) {
15
+ return source;
16
+ }
17
+
18
+ return typeof source === "string" ? source : resolveAsset(source);
19
+ });
20
+ Promise.all(bytesOrURIs.map(bytesOrURI => bytesOrURI instanceof Uint8Array ? Skia.Data.fromBytes(bytesOrURI) : Skia.Data.fromURI(bytesOrURI))).then(d => setData(factory(d))); // eslint-disable-next-line react-hooks/exhaustive-deps
21
+ }, deps);
22
+ return data;
23
+ };
24
+ export const useRawData = (source, factory, onError) => {
25
+ const [data, setData] = useState(null);
26
+ const prevSourceRef = useRef();
27
+ useEffect(() => {
28
+ // Track to avoid re-fetching the same data
29
+ if (prevSourceRef.current !== source) {
30
+ prevSourceRef.current = source;
31
+
32
+ if (source !== null && source !== undefined) {
33
+ const factoryWrapper = data2 => {
34
+ const factoryResult = factory(data2);
35
+
36
+ if (factoryResult === null) {
37
+ onError && onError(new Error("Could not load data"));
38
+ setData(null);
39
+ } else {
40
+ setData(factoryResult);
41
+ }
42
+ };
43
+
44
+ if (source instanceof Uint8Array) {
45
+ factoryWrapper(Skia.Data.fromBytes(source));
46
+ } else {
47
+ const uri = typeof source === "string" ? source : resolveAsset(source);
48
+ Skia.Data.fromURI(uri).then(d => factoryWrapper(d));
49
+ }
50
+ } else {
51
+ // new source is null or undefined -> remove cached data
52
+ setData(null);
53
+ }
54
+ }
55
+ }, [factory, onError, source]);
56
+ return data;
57
+ };
58
+
59
+ const identity = data => data;
60
+
61
+ export const useData = (source, onError) => useRawData(source, identity, onError);
62
+ //# sourceMappingURL=Data.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Data.ts"],"names":["useRef","useEffect","useState","Image","Platform","Skia","resolveAsset","source","OS","default","resolveAssetSource","uri","useDataCollection","sources","factory","deps","data","setData","bytesOrURIs","map","Uint8Array","Promise","all","bytesOrURI","Data","fromBytes","fromURI","then","d","useRawData","onError","prevSourceRef","current","undefined","factoryWrapper","data2","factoryResult","Error","identity","useData"],"mappings":"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","sourcesContent":["import type { DependencyList } from \"react\";\nimport { useRef, useEffect, useState } from \"react\";\nimport { Image, Platform } from \"react-native\";\n\nimport { Skia } from \"../Skia\";\nimport type { SkData, DataSource } from \"../types\";\n\nconst resolveAsset = (source: ReturnType<typeof require>) => {\n return Platform.OS === \"web\"\n ? source.default\n : Image.resolveAssetSource(source).uri;\n};\n\nexport const useDataCollection = <T>(\n sources: DataSource[],\n factory: (data: SkData[]) => T,\n deps: DependencyList = []\n) => {\n const [data, setData] = useState<T | null>(null);\n useEffect(() => {\n const bytesOrURIs = sources.map((source) => {\n if (source instanceof Uint8Array) {\n return source;\n }\n return typeof source === \"string\" ? source : resolveAsset(source);\n });\n Promise.all(\n bytesOrURIs.map((bytesOrURI) =>\n bytesOrURI instanceof Uint8Array\n ? Skia.Data.fromBytes(bytesOrURI)\n : Skia.Data.fromURI(bytesOrURI)\n )\n ).then((d) => setData(factory(d)));\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, deps);\n return data;\n};\n\nexport const useRawData = <T>(\n source: DataSource | null | undefined,\n factory: (data: SkData) => T,\n onError?: (err: Error) => void\n) => {\n const [data, setData] = useState<T | null>(null);\n const prevSourceRef = useRef<DataSource | null | undefined>();\n useEffect(() => {\n // Track to avoid re-fetching the same data\n if (prevSourceRef.current !== source) {\n prevSourceRef.current = source;\n if (source !== null && source !== undefined) {\n const factoryWrapper = (data2: SkData) => {\n const factoryResult = factory(data2);\n if (factoryResult === null) {\n onError && onError(new Error(\"Could not load data\"));\n setData(null);\n } else {\n setData(factoryResult);\n }\n };\n if (source instanceof Uint8Array) {\n factoryWrapper(Skia.Data.fromBytes(source));\n } else {\n const uri =\n typeof source === \"string\" ? source : resolveAsset(source);\n Skia.Data.fromURI(uri).then((d) => factoryWrapper(d));\n }\n } else {\n // new source is null or undefined -> remove cached data\n setData(null);\n }\n }\n }, [factory, onError, source]);\n return data;\n};\n\nconst identity = (data: SkData) => data;\n\nexport const useData = (\n source: DataSource | null | undefined,\n onError?: (err: Error) => void\n) => useRawData(source, identity, onError);\n"]}
@@ -0,0 +1,22 @@
1
+ /*global SkiaApi*/
2
+ import { useMemo } from "react";
3
+ import { Skia } from "../Skia";
4
+ import { useTypeface } from "./Typeface";
5
+ /**
6
+ * Returns a Skia Font object
7
+ * */
8
+
9
+ export const useFont = (font, size, onError) => {
10
+ const typeface = useTypeface(font, onError);
11
+ return useMemo(() => {
12
+ if (typeface && size) {
13
+ return Skia.Font(typeface, size);
14
+ } else if (typeface && !size) {
15
+ return Skia.Font(typeface);
16
+ } else {
17
+ return null;
18
+ } // eslint-disable-next-line react-hooks/exhaustive-deps
19
+
20
+ }, [typeface]);
21
+ };
22
+ //# sourceMappingURL=Font.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Font.ts"],"names":["useMemo","Skia","useTypeface","useFont","font","size","onError","typeface","Font"],"mappings":"AAAA;AACA,SAASA,OAAT,QAAwB,OAAxB;AAEA,SAASC,IAAT,QAAqB,SAArB;AAGA,SAASC,WAAT,QAA4B,YAA5B;AAEA;AACA;AACA;;AACA,OAAO,MAAMC,OAAO,GAAG,CACrBC,IADqB,EAErBC,IAFqB,EAGrBC,OAHqB,KAIH;AAClB,QAAMC,QAAQ,GAAGL,WAAW,CAACE,IAAD,EAAOE,OAAP,CAA5B;AACA,SAAON,OAAO,CAAC,MAAM;AACnB,QAAIO,QAAQ,IAAIF,IAAhB,EAAsB;AACpB,aAAOJ,IAAI,CAACO,IAAL,CAAUD,QAAV,EAAoBF,IAApB,CAAP;AACD,KAFD,MAEO,IAAIE,QAAQ,IAAI,CAACF,IAAjB,EAAuB;AAC5B,aAAOJ,IAAI,CAACO,IAAL,CAAUD,QAAV,CAAP;AACD,KAFM,MAEA;AACL,aAAO,IAAP;AACD,KAPkB,CAQnB;;AACD,GATa,EASX,CAACA,QAAD,CATW,CAAd;AAUD,CAhBM","sourcesContent":["/*global SkiaApi*/\nimport { useMemo } from \"react\";\n\nimport { Skia } from \"../Skia\";\nimport type { DataSource, SkFont } from \"../types\";\n\nimport { useTypeface } from \"./Typeface\";\n\n/**\n * Returns a Skia Font object\n * */\nexport const useFont = (\n font: DataSource | null | undefined,\n size?: number,\n onError?: (err: Error) => void\n): SkFont | null => {\n const typeface = useTypeface(font, onError);\n return useMemo(() => {\n if (typeface && size) {\n return Skia.Font(typeface, size);\n } else if (typeface && !size) {\n return Skia.Font(typeface);\n } else {\n return null;\n }\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, [typeface]);\n};\n"]}
@@ -0,0 +1,8 @@
1
+ import { Skia } from "../Skia";
2
+ import { useRawData } from "./Data";
3
+ /**
4
+ * Returns a Skia Image object
5
+ * */
6
+
7
+ export const useImage = (source, onError) => useRawData(source, Skia.Image.MakeImageFromEncoded, onError);
8
+ //# sourceMappingURL=Image.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Image.ts"],"names":["Skia","useRawData","useImage","source","onError","Image","MakeImageFromEncoded"],"mappings":"AAAA,SAASA,IAAT,QAAqB,SAArB;AAGA,SAASC,UAAT,QAA2B,QAA3B;AAEA;AACA;AACA;;AACA,OAAO,MAAMC,QAAQ,GAAG,CACtBC,MADsB,EAEtBC,OAFsB,KAGnBH,UAAU,CAACE,MAAD,EAASH,IAAI,CAACK,KAAL,CAAWC,oBAApB,EAA0CF,OAA1C,CAHR","sourcesContent":["import { Skia } from \"../Skia\";\nimport type { DataSource } from \"../types\";\n\nimport { useRawData } from \"./Data\";\n\n/**\n * Returns a Skia Image object\n * */\nexport const useImage = (\n source: DataSource | null | undefined,\n onError?: (err: Error) => void\n) => useRawData(source, Skia.Image.MakeImageFromEncoded, onError);\n"]}
@@ -0,0 +1,4 @@
1
+ import { Skia } from "../Skia";
2
+ import { processTransform } from "../types";
3
+ export const processTransform2d = transforms => processTransform(Skia.Matrix(), transforms);
4
+ //# sourceMappingURL=Matrix.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Matrix.ts"],"names":["Skia","processTransform","processTransform2d","transforms","Matrix"],"mappings":"AAAA,SAASA,IAAT,QAAqB,SAArB;AAEA,SAASC,gBAAT,QAAiC,UAAjC;AAEA,OAAO,MAAMC,kBAAkB,GAAIC,UAAD,IAChCF,gBAAgB,CAACD,IAAI,CAACI,MAAL,EAAD,EAAgBD,UAAhB,CADX","sourcesContent":["import { Skia } from \"../Skia\";\nimport type { Transforms2d } from \"../types\";\nimport { processTransform } from \"../types\";\n\nexport const processTransform2d = (transforms: Transforms2d) =>\n processTransform(Skia.Matrix(), transforms);\n"]}
@@ -0,0 +1,17 @@
1
+ import { useMemo } from "react";
2
+ import { Skia } from "../Skia";
3
+
4
+ /**
5
+ * Returns a Skia Paint object
6
+ * */
7
+ export const usePaint = (initializer, deps) => useMemo(() => {
8
+ console.warn("usePaint() is deprecated. Use Skia.Paint() instead.");
9
+ const p = Skia.Paint();
10
+
11
+ if (initializer) {
12
+ initializer(p);
13
+ }
14
+
15
+ return p; // eslint-disable-next-line react-hooks/exhaustive-deps
16
+ }, deps);
17
+ //# sourceMappingURL=Paint.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Paint.ts"],"names":["useMemo","Skia","usePaint","initializer","deps","console","warn","p","Paint"],"mappings":"AACA,SAASA,OAAT,QAAwB,OAAxB;AAEA,SAASC,IAAT,QAAqB,SAArB;;AAGA;AACA;AACA;AACA,OAAO,MAAMC,QAAQ,GAAG,CACtBC,WADsB,EAEtBC,IAFsB,KAItBJ,OAAO,CAAC,MAAM;AACZK,EAAAA,OAAO,CAACC,IAAR,CAAa,qDAAb;AACA,QAAMC,CAAC,GAAGN,IAAI,CAACO,KAAL,EAAV;;AACA,MAAIL,WAAJ,EAAiB;AACfA,IAAAA,WAAW,CAACI,CAAD,CAAX;AACD;;AACD,SAAOA,CAAP,CANY,CAOZ;AACD,CARM,EAQJH,IARI,CAJF","sourcesContent":["import type { DependencyList } from \"react\";\nimport { useMemo } from \"react\";\n\nimport { Skia } from \"../Skia\";\nimport type { SkPaint } from \"../types\";\n\n/**\n * Returns a Skia Paint object\n * */\nexport const usePaint = (\n initializer?: (paint: SkPaint) => void,\n deps?: DependencyList\n) =>\n useMemo(() => {\n console.warn(\"usePaint() is deprecated. Use Skia.Paint() instead.\");\n const p = Skia.Paint();\n if (initializer) {\n initializer(p);\n }\n return p;\n // eslint-disable-next-line react-hooks/exhaustive-deps\n }, deps);\n"]}