@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
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Path.ts"],"names":["FillType","PathOp","PathVerb","isPath","obj","__typename__"],"mappings":"AAOA;AACA;AACA;AAeA,WAAYA,QAAZ;;WAAYA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;GAAAA,Q,KAAAA,Q;;AAOZ,WAAYC,MAAZ;;WAAYA,M;AAAAA,EAAAA,M,CAAAA,M;AAAAA,EAAAA,M,CAAAA,M;AAAAA,EAAAA,M,CAAAA,M;AAAAA,EAAAA,M,CAAAA,M;AAAAA,EAAAA,M,CAAAA,M;GAAAA,M,KAAAA,M;;AAQZ,WAAYC,QAAZ;;WAAYA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;AAAAA,EAAAA,Q,CAAAA,Q;GAAAA,Q,KAAAA,Q;;AAYZ,OAAO,MAAMC,MAAM,GAAIC,GAAD,IACpBA,GAAG,KAAK,IAAR,IAAgBA,GAAG,CAACC,YAAJ,KAAqB,MADhC","sourcesContent":["import type { SkRect } from \"../Rect\";\nimport type { SkPoint } from \"../Point\";\nimport type { SkRRect } from \"../RRect\";\nimport type { StrokeJoin, StrokeCap } from \"../Paint\";\nimport type { SkMatrix } from \"../Matrix\";\nimport type { SkJSIInstance } from \"../JsiInstance\";\n\n/**\n * Options used for Path.stroke(). If an option is omitted, a sensible default will be used.\n */\nexport interface StrokeOpts {\n /** The width of the stroked lines. */\n width?: number;\n // eslint-disable-next-line camelcase\n miter_limit?: number;\n /**\n * if > 1, increase precision, else if (0 < resScale < 1) reduce precision to\n * favor speed and size\n */\n precision?: number;\n join?: StrokeJoin;\n cap?: StrokeCap;\n}\n\nexport enum FillType {\n Winding,\n EvenOdd,\n InverseWinding,\n InverseEvenOdd,\n}\n\nexport enum PathOp {\n Difference, //!< subtract the op path from the first path\n Intersect, //!< intersect the two paths\n Union, //!< union (inclusive-or) the two paths\n XOR, //!< exclusive-or the two paths\n ReverseDifference,\n}\n\nexport enum PathVerb {\n Move,\n Line,\n Quad,\n Conic,\n Cubic,\n Close,\n Done,\n}\n\nexport type PathCommand = number[];\n\nexport const isPath = (obj: SkJSIInstance<string> | null): obj is SkPath =>\n obj !== null && obj.__typename__ === \"Path\";\n\nexport interface SkPath extends SkJSIInstance<\"Path\"> {\n /**\n * Appends arc to Path, as the start of new contour. Arc added is part of ellipse\n * bounded by oval, from startAngle through sweepAngle. Both startAngle and\n * sweepAngle are measured in degrees, where zero degrees is aligned with the\n * positive x-axis, and positive sweeps extends arc clockwise.\n * Returns the modified path for easier chaining.\n * @param oval\n * @param startAngle\n * @param sweepAngle\n */\n addArc(\n oval: SkRect,\n startAngleInDegrees: number,\n sweepAngleInDegrees: number\n ): SkPath;\n\n /**\n * Adds oval to Path, appending kMove_Verb, four kConic_Verb, and kClose_Verb.\n * Oval is upright ellipse bounded by Rect oval with radii equal to half oval width\n * and half oval height. Oval begins at start and continues clockwise by default.\n * Returns the modified path for easier chaining.\n * @param oval\n * @param isCCW - if the path should be drawn counter-clockwise or not\n * @param startIndex - index of initial point of ellipse\n */\n addOval(oval: SkRect, isCCW?: boolean, startIndex?: number): SkPath;\n\n /**\n * Returns the number of points in this path. Initially zero.\n */\n countPoints(): number;\n\n /**\n * Adds contour created from array of n points, adding (count - 1) line segments.\n * Contour added starts at pts[0], then adds a line for every additional point\n * in pts array. If close is true, appends kClose_Verb to Path, connecting\n * pts[count - 1] and pts[0].\n * Returns the modified path for easier chaining.\n * @param points\n * @param close - if true, will add a line connecting last point to the first point.\n */\n addPoly(points: SkPoint[], close: boolean): SkPath;\n\n /** Adds beginning of contour at SkPoint (x, y).\n\n @param x x-axis value of contour start\n @param y y-axis value of contour start\n @return reference to SkPath\n\n example: https://fiddle.skia.org/c/@Path_moveTo\n */\n moveTo(x: number, y: number): SkPath;\n /** Adds line from last point to (x, y). If SkPath is empty, or last SkPath::Verb is\n kClose_Verb, last point is set to (0, 0) before adding line.\n\n lineTo() appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed.\n lineTo() then appends kLine_Verb to verb array and (x, y) to SkPoint array.\n\n @param x end of added line on x-axis\n @param y end of added line on y-axis\n @return reference to SkPath\n\n example: https://fiddle.skia.org/c/@Path_lineTo\n */\n lineTo(x: number, y: number): SkPath;\n\n /**\n * Returns a new path that covers the same area as the original path, but with the\n * Winding FillType. This may re-draw some contours in the path as counter-clockwise\n * instead of clockwise to achieve that effect. If such a transformation cannot\n * be done, null is returned.\n */\n makeAsWinding(): SkPath | null;\n\n /**\n * Translates all the points in the path by dx, dy.\n * @param dx\n * @param dy\n */\n offset(dx: number, dy: number): SkPath;\n\n /**\n * Relative version of arcToRotated.\n * @param rx\n * @param ry\n * @param xAxisRotate\n * @param useSmallArc\n * @param isCCW\n * @param dx\n * @param dy\n */\n rArcTo(\n rx: number,\n ry: number,\n xAxisRotateInDegrees: number,\n useSmallArc: boolean,\n isCCW: boolean,\n dx: number,\n dy: number\n ): SkPath;\n\n /**\n * Relative version of conicTo.\n * @param dx1\n * @param dy1\n * @param dx2\n * @param dy2\n * @param w\n */\n rConicTo(\n dx1: number,\n dy1: number,\n dx2: number,\n dy2: number,\n w: number\n ): SkPath;\n\n /**\n * Relative version of cubicTo.\n * @param cpx1\n * @param cpy1\n * @param cpx2\n * @param cpy2\n * @param x\n * @param y\n */\n rCubicTo(\n cpx1: number,\n cpy1: number,\n cpx2: number,\n cpy2: number,\n x: number,\n y: number\n ): SkPath;\n\n /**\n * Relative version of moveTo.\n * @param x\n * @param y\n */\n rMoveTo(x: number, y: number): SkPath;\n\n /**\n * Relative version of lineTo.\n * @param x\n * @param y\n */\n rLineTo(x: number, y: number): SkPath;\n\n /**\n * Relative version of quadTo.\n * @param x1\n * @param y1\n * @param x2\n * @param y2\n */\n rQuadTo(x1: number, y1: number, x2: number, y2: number): SkPath;\n\n /**\n * Sets FillType, the rule used to fill Path.\n * @param fill\n */\n setFillType(fill: FillType): void;\n\n /**\n * Specifies whether Path is volatile; whether it will be altered or discarded\n * by the caller after it is drawn. Path by default have volatile set false.\n *\n * Mark animating or temporary paths as volatile to improve performance.\n * Mark unchanging Path non-volatile to improve repeated rendering.\n * @param volatile\n */\n setIsVolatile(volatile: boolean): void;\n\n /**\n * Turns this path into the filled equivalent of the stroked path. Returns false if the operation\n * fails (e.g. the path is a hairline).\n * @param opts - describe how stroked path should look.\n * If such a transformation cannot be done, null is returned.\n */\n stroke(opts?: StrokeOpts): null | SkPath;\n\n /**\n * Appends CLOSE_VERB to Path. A closed contour connects the first and last point\n * with a line, forming a continuous loop.\n */\n close(): void;\n\n /**\n * Sets Path to its initial state.\n * Removes verb array, point array, and weights, and sets FillType to Winding.\n * Internal storage associated with Path is released\n */\n reset(): void;\n\n /**\n * Sets Path to its initial state.\n * Removes verb array, point array, and weights, and sets FillType to Winding.\n * Internal storage associated with Path is *not* released.\n * Use rewind() instead of reset() if Path storage will be reused and performance\n * is critical.\n */\n rewind(): void;\n\n /**\n * Returns minimum and maximum axes values of the lines and curves in Path.\n * Returns (0, 0, 0, 0) if Path contains no points.\n * Returned bounds width and height may be larger or smaller than area affected\n * when Path is drawn.\n *\n * Behaves identically to getBounds() when Path contains\n * only lines. If Path contains curves, computed bounds includes\n * the maximum extent of the quad, conic, or cubic; is slower than getBounds();\n * and unlike getBounds(), does not cache the result.\n */\n computeTightBounds(): SkRect;\n\n /**\n * Appends arc to Path. Arc added is part of ellipse\n * bounded by oval, from startAngle through sweepAngle. Both startAngle and\n * sweepAngle are measured in degrees, where zero degrees is aligned with the\n * positive x-axis, and positive sweeps extends arc clockwise.\n * Returns the modified path for easier chaining.\n * @param oval\n * @param startAngleInDegrees\n * @param sweepAngleInDegrees\n * @param forceMoveTo\n */\n arcToOval(\n oval: SkRect,\n startAngleInDegrees: number,\n sweepAngleInDegrees: number,\n forceMoveTo: boolean\n ): SkPath;\n\n /**\n * Appends arc to Path. Arc is implemented by one or more conics weighted to\n * describe part of oval with radii (rx, ry) rotated by xAxisRotate degrees. Arc\n * curves from last Path Point to (x, y), choosing one of four possible routes:\n * clockwise or counterclockwise, and smaller or larger. See SkPath.h for more details.\n * Returns the modified path for easier chaining.\n * @param rx\n * @param ry\n * @param xAxisRotate\n * @param useSmallArc\n * @param isCCW\n * @param x\n * @param y\n */\n arcToRotated(\n rx: number,\n ry: number,\n xAxisRotateInDegrees: number,\n useSmallArc: boolean,\n isCCW: boolean,\n x: number,\n y: number\n ): SkPath;\n\n /**\n * Appends arc to Path, after appending line if needed. Arc is implemented by conic\n * weighted to describe part of circle. Arc is contained by tangent from\n * last Path point to (x1, y1), and tangent from (x1, y1) to (x2, y2). Arc\n * is part of circle sized to radius, positioned so it touches both tangent lines.\n * Returns the modified path for easier chaining.\n * @param x1\n * @param y1\n * @param x2\n * @param y2\n * @param radius\n */\n arcToTangent(\n x1: number,\n y1: number,\n x2: number,\n y2: number,\n radius: number\n ): SkPath;\n\n /**\n * Adds conic from last point towards (x1, y1), to (x2, y2), weighted by w.\n * If Path is empty, or path is closed, the last point is set to (0, 0)\n * before adding conic.\n * Returns the modified path for easier chaining.\n * @param x1\n * @param y1\n * @param x2\n * @param y2\n * @param w\n */\n conicTo(x1: number, y1: number, x2: number, y2: number, w: number): SkPath;\n\n /**\n * Returns true if the point (x, y) is contained by Path, taking into\n * account FillType.\n * @param x\n * @param y\n */\n contains(x: number, y: number): boolean;\n\n /**\n * Returns a copy of this Path.\n */\n copy(): SkPath;\n\n /**\n * Adds cubic from last point towards (x1, y1), then towards (x2, y2), ending at\n * (x3, y3). If Path is empty, or path is closed, the last point is set to\n * (0, 0) before adding cubic.\n * @param cpx1\n * @param cpy1\n * @param cpx2\n * @param cpy2\n * @param x\n * @param y\n */\n cubicTo(\n cpx1: number,\n cpy1: number,\n cpx2: number,\n cpy2: number,\n x: number,\n y: number\n ): SkPath;\n\n /**\n * Changes this path to be the dashed version of itself. This is the same effect as creating\n * a DashPathEffect and calling filterPath on this path.\n * @param on\n * @param off\n * @param phase\n */\n dash(on: number, off: number, phase: number): boolean;\n\n /**\n * Returns true if other path is equal to this path.\n * @param other\n */\n equals(other: SkPath): boolean;\n\n /**\n * Returns minimum and maximum axes values of Point array.\n * Returns (0, 0, 0, 0) if Path contains no points. Returned bounds width and height may\n * be larger or smaller than area affected when Path is drawn.\n */\n getBounds(): SkRect;\n\n /**\n * Return the FillType for this path.\n */\n getFillType(): FillType;\n\n /**\n Adds quad from last point towards (x1, y1), to (x2, y2).\n\n If SkPath is empty, or last SkPath::Verb is kClose_Verb, last point is set to (0, 0) before adding quad.\n\n Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed; then appends kQuad_Verb to verb array;\n and (x1, y1), (x2, y2) to SkPoint array.\n\n Parameters\n x1\tcontrol SkPoint of quad on x-axis\n y1\tcontrol SkPoint of quad on y-axis\n x2\tend SkPoint of quad on x-axis\n y2\tend SkPoint of quad on y-axis\n Returns\n reference to SkPath\n example: https://fiddle.skia.org/c/@Path_quadTo\n */\n quadTo(x1: number, y1: number, x2: number, y2: number): void;\n\n /**\n * Adds Rect to Path, appending kMove_Verb, three kLine_Verb, and kClose_Verb,\n * starting with top-left corner of Rect; followed by top-right, bottom-right,\n * and bottom-left if isCCW is false; or followed by bottom-left,\n * bottom-right, and top-right if isCCW is true.\n * Returns the modified path for easier chaining.\n * @param rect\n * @param isCCW\n */\n addRect(rect: SkRect, isCCW?: boolean): void;\n\n /**\n * Adds rrect to Path, creating a new closed contour.\n * Returns the modified path for easier chaining.\n * @param rrect\n * @param isCCW\n */\n addRRect(rrect: SkRRect, isCCW?: boolean): SkPath;\n\n /**\n * Returns the Point at index in Point array. Valid range for index is\n * 0 to countPoints() - 1.\n * @param index\n */\n getPoint(index: number): SkPoint;\n\n /**\n * Returns true if there are no verbs in the path.\n */\n isEmpty(): boolean;\n\n /**\n * Returns true if the path is volatile; it will not be altered or discarded\n * by the caller after it is drawn. Path by default have volatile set false, allowing\n * Surface to attach a cache of data which speeds repeated drawing. If true, Surface\n * may not speed repeated drawing.\n */\n isVolatile(): boolean;\n\n /** Adds circle centered at (x, y) of size radius to SkPath, appending kMove_Verb,\n four kConic_Verb, and kClose_Verb. Circle begins at: (x + radius, y), continuing\n clockwise if dir is kCW_Direction, and counterclockwise if dir is kCCW_Direction.\n\n Has no effect if radius is zero or negative.\n\n @param x center of circle\n @param y center of circle\n @param radius distance from center to edge \n @return reference to SkPath\n */\n addCircle(x: number, y: number, r: number): SkPath;\n\n getLastPt(): { x: number; y: number };\n\n /** Set this path to the result of applying the Op to this path and the\n specified path: this = (this op operand).\n The resulting path will be constructed from non-overlapping contours.\n The curve order is reduced where possible so that cubics may be turned\n into quadratics, and quadratics maybe turned into lines.\n\n Returns true if operation was able to produce a result;\n otherwise, result is unmodified.\n\n @param path The second path (for difference, the subtrahend)\n @param op The operator to apply.\n @param result The product of the operands. The result may be one of the\n inputs.\n @return True if the operation succeeded.\n */\n op(path: SkPath, op: PathOp): boolean;\n\n /** Set this path to a set of non-overlapping contours that describe the\n same area as the original path.\n The curve order is reduced where possible so that cubics may\n be turned into quadratics, and quadratics maybe turned into lines.\n\n Returns true if operation was able to produce a result;\n otherwise, result is unmodified.\n\n @param result The simplified path. The result may be the input.\n @return True if simplification succeeded.\n */\n simplify(): boolean;\n\n /**\n * Returns this path as an SVG string.\n */\n toSVGString(): string;\n\n /**\n * Take start and stop \"t\" values (values between 0...1), and modify this path such that\n * it is a subset of the original path.\n * The trim values apply to the entire path, so if it contains several contours, all of them\n * are including in the calculation.\n * Null is returned if either input value is NaN.\n * @param startT - a value in the range [0.0, 1.0]. 0.0 is the beginning of the path.\n * @param stopT - a value in the range [0.0, 1.0]. 1.0 is the end of the path.\n * @param isComplement\n */\n trim(startT: number, stopT: number, isComplement: boolean): null | SkPath;\n\n /**\n * Transforms the path by the specified matrix.\n */\n transform(m3: SkMatrix): void;\n\n /**\n * Interpolates between Path with point array of equal size.\n * Copy verb array and weights to result, and set result path to a weighted\n * average of this path array and ending path.\n\n * weight is most useful when between zero (ending path) and\n one (this path); will work with values outside of this\n range.\n\n * interpolate() returns undefined if path is not\n * the same size as ending path. Call isInterpolatable() to check Path\n * compatibility prior to calling interpolate().\n\n * @param ending path to interpolate with\n * @param weight contribution of this path, and\n * one minus contribution of ending path\n * @return Path replaced by interpolated averages or null if \n * not interpolatable\n * */\n interpolate(end: SkPath, weight: number): SkPath | null;\n\n /** Returns true if Path contain equal verbs and equal weights.\n * @param compare path to compare\n * @return true if Path can be interpolated equivalent\n *\n * */\n isInterpolatable(compare: SkPath): boolean;\n\n /**\n * Serializes the contents of this path as a series of commands.\n */\n toCmds(): PathCommand[];\n}\n"]}
@@ -0,0 +1,3 @@
1
+ export * from "./Path";
2
+ export * from "./PathFactory";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAd;AACA,cAAc,eAAd","sourcesContent":["export * from \"./Path\";\nexport * from \"./PathFactory\";\n"]}
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["PathEffect.ts"],"names":["isPathEffect","obj","__typename__","Path1DEffectStyle"],"mappings":"AAMA,OAAO,MAAMA,YAAY,GACvBC,GAD0B,IAEFA,GAAG,KAAK,IAAR,IAAgBA,GAAG,CAACC,YAAJ,KAAqB,YAFxD;AAIP,WAAYC,iBAAZ;;WAAYA,iB;AAAAA,EAAAA,iB,CAAAA,iB;AAAAA,EAAAA,iB,CAAAA,iB;AAAAA,EAAAA,iB,CAAAA,iB;GAAAA,iB,KAAAA,iB","sourcesContent":["import type { SkJSIInstance } from \"./JsiInstance\";\nimport type { SkPath } from \"./Path/Path\";\nimport type { SkMatrix } from \"./Matrix\";\n\nexport type SkPathEffect = SkJSIInstance<\"PathEffect\">;\n\nexport const isPathEffect = (\n obj: SkJSIInstance<string> | null\n): obj is SkPathEffect => obj !== null && obj.__typename__ === \"PathEffect\";\n\nexport enum Path1DEffectStyle {\n Translate,\n Rotate,\n Morph,\n}\n\nexport interface PathEffectFactory {\n /**\n * Returns a PathEffect that can turn sharp corners into rounded corners.\n * @param radius - if <=0, returns null\n */\n MakeCorner(radius: number): SkPathEffect | null;\n\n /**\n * Returns a PathEffect that add dashes to the path.\n *\n * See SkDashPathEffect.h for more details.\n *\n * @param intervals - even number of entries with even indicies specifying the length of\n * the \"on\" intervals, and the odd indices specifying the length of \"off\".\n * @param phase - offset length into the intervals array. Defaults to 0.\n */\n MakeDash(intervals: number[], phase?: number): SkPathEffect;\n\n /**\n * Returns a PathEffect that breaks path into segments of segLength length, and randomly move\n * the endpoints away from the original path by a maximum of deviation.\n * @param segLength - length of the subsegments.\n * @param dev - limit of the movement of the endpoints.\n * @param seedAssist - modifies the randomness. See SkDiscretePathEffect.h for more.\n */\n MakeDiscrete(\n segLength: number,\n dev: number,\n seedAssist: number\n ): SkPathEffect;\n\n /**\n *\n * A pathEffect whose effect is to apply first the inner pathEffect and the the\n * outer pathEffect (i.e. outer(inner(path))).\n *\n */\n MakeCompose(outer: SkPathEffect, inner: SkPathEffect): SkPathEffect;\n\n /**\n *\n * A pathEffect pathEffect whose effect is to apply two effects,\n * in sequence (i.e. first(path) + second(path)).\n *\n */\n MakeSum(outer: SkPathEffect, inner: SkPathEffect): SkPathEffect;\n\n /**\n * Returns a PathEffect that will fill the drawing path with a pattern made by applying\n * the given matrix to a repeating set of infinitely long lines of the given width.\n * For example, the scale of the provided matrix will determine how far apart the lines\n * should be drawn its rotation affects the lines' orientation.\n * @param width - must be >= 0\n * @param matrix\n */\n MakeLine2D(width: number, matrix: SkMatrix): SkPathEffect | null;\n\n /**\n * Returns a PathEffect which implements dashing by replicating the specified path.\n * @param path The path to replicate (dash)\n * @param advance The space between instances of path\n * @param phase distance (mod advance) along path for its initial position\n * @param style how to transform path at each point (based on the current\n * position and tangent)\n */\n MakePath1D(\n path: SkPath,\n advance: number,\n phase: number,\n style: Path1DEffectStyle\n ): SkPathEffect | null;\n\n /**\n * Returns a PathEffect that will fill the drawing path with a pattern by repeating the\n * given path according to the provided matrix. For example, the scale of the matrix\n * determines how far apart the path instances should be drawn.\n * @param matrix\n * @param path\n */\n MakePath2D(matrix: SkMatrix, path: SkPath): SkPathEffect | null;\n}\n"]}
@@ -0,0 +1,4 @@
1
+ export * from "./Picture";
2
+ export * from "./PictureRecorder";
3
+ export * from "./PictureFactory";
4
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAd;AACA,cAAc,mBAAd;AACA,cAAc,kBAAd","sourcesContent":["export * from \"./Picture\";\nexport * from \"./PictureRecorder\";\nexport * from \"./PictureFactory\";\n"]}
File without changes
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Point.ts"],"names":["PointMode"],"mappings":"AAAA,WAAYA,SAAZ;;WAAYA,S;AAAAA,EAAAA,S,CAAAA,S;AAAAA,EAAAA,S,CAAAA,S;AAAAA,EAAAA,S,CAAAA,S;GAAAA,S,KAAAA,S","sourcesContent":["export enum PointMode {\n Points,\n Lines,\n Polygon,\n}\n\nexport interface SkPoint {\n readonly x: number;\n readonly y: number;\n}\n\nexport type Vector = SkPoint;\n"]}
@@ -0,0 +1,4 @@
1
+ // We have an issue to check property existence on JSI backed instances
2
+ export const isRRect = def => // eslint-disable-next-line @typescript-eslint/no-explicit-any
3
+ def.rect !== undefined;
4
+ //# sourceMappingURL=RRect.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["RRect.ts"],"names":["isRRect","def","rect","undefined"],"mappings":"AAQA;AACA,OAAO,MAAMA,OAAO,GAAIC,GAAD,IACrB;AACCA,GAAD,CAAaC,IAAb,KAAsBC,SAFjB","sourcesContent":["import type { SkRect } from \"./Rect\";\n\nexport interface SkRRect {\n readonly rect: SkRect;\n readonly rx: number;\n readonly ry: number;\n}\n\n// We have an issue to check property existence on JSI backed instances\nexport const isRRect = (def: SkRect | SkRRect): def is SkRRect =>\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (def as any).rect !== undefined;\n"]}
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,3 @@
1
+ export * from "./SVG";
2
+ export * from "./SVGFactory";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAd;AACA,cAAc,cAAd","sourcesContent":["export * from \"./SVG\";\nexport * from \"./SVGFactory\";\n"]}
@@ -0,0 +1,50 @@
1
+ export const isShader = obj => obj !== null && obj.__typename__ === "Shader";
2
+
3
+ const isVector = obj => // We have an issue to check property existence on JSI backed instances
4
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
5
+ obj.x !== undefined && obj.y !== undefined;
6
+
7
+ const processValue = value => {
8
+ if (isVector(value)) {
9
+ return [value.x, value.y];
10
+ }
11
+
12
+ return value;
13
+ };
14
+
15
+ export const processUniforms = (source, uniforms, builder) => {
16
+ const processed = new Array(source.getUniformCount()).fill(0).flatMap((_, i) => {
17
+ const name = source.getUniformName(i);
18
+ const value = uniforms[name];
19
+
20
+ if (value === undefined) {
21
+ throw new Error(`No value specified for uniform ${name}`);
22
+ }
23
+
24
+ let result;
25
+
26
+ if (Array.isArray(value)) {
27
+ result = value.flatMap(processValue);
28
+ }
29
+
30
+ result = processValue(value);
31
+ builder === null || builder === void 0 ? void 0 : builder.setUniform(name, typeof result === "number" ? [result] : result);
32
+ return result;
33
+ });
34
+ const names = Object.keys(uniforms);
35
+
36
+ if (names.length > source.getUniformCount()) {
37
+ const usedUniforms = new Array(source.getUniformCount()).fill(0).map((_, i) => source.getUniformName(i));
38
+ const unusedUniform = names.map(name => {
39
+ if (usedUniforms.indexOf(name) === -1) {
40
+ return name;
41
+ }
42
+
43
+ return null;
44
+ }).filter(n => n !== null);
45
+ console.warn("Unused uniforms were provided: " + unusedUniform.join(", "));
46
+ }
47
+
48
+ return processed;
49
+ };
50
+ //# sourceMappingURL=Shader.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Shader.ts"],"names":["isShader","obj","__typename__","isVector","x","undefined","y","processValue","value","processUniforms","source","uniforms","builder","processed","Array","getUniformCount","fill","flatMap","_","i","name","getUniformName","Error","result","isArray","setUniform","names","Object","keys","length","usedUniforms","map","unusedUniform","indexOf","filter","n","console","warn","join"],"mappings":"AAIA,OAAO,MAAMA,QAAQ,GAAIC,GAAD,IACtBA,GAAG,KAAK,IAAR,IAAgBA,GAAG,CAACC,YAAJ,KAAqB,QADhC;;AAaP,MAAMC,QAAQ,GAAIF,GAAD,IACf;AACA;AACCA,GAAD,CAAaG,CAAb,KAAmBC,SAAnB,IAAiCJ,GAAD,CAAaK,CAAb,KAAmBD,SAHrD;;AAKA,MAAME,YAAY,GAAIC,KAAD,IAAqD;AACxE,MAAIL,QAAQ,CAACK,KAAD,CAAZ,EAAqB;AACnB,WAAO,CAACA,KAAK,CAACJ,CAAP,EAAUI,KAAK,CAACF,CAAhB,CAAP;AACD;;AACD,SAAOE,KAAP;AACD,CALD;;AAOA,OAAO,MAAMC,eAAe,GAAG,CAC7BC,MAD6B,EAE7BC,QAF6B,EAG7BC,OAH6B,KAI1B;AACH,QAAMC,SAAS,GAAG,IAAIC,KAAJ,CAAUJ,MAAM,CAACK,eAAP,EAAV,EACfC,IADe,CACV,CADU,EAEfC,OAFe,CAEP,CAACC,CAAD,EAAIC,CAAJ,KAAU;AACjB,UAAMC,IAAI,GAAGV,MAAM,CAACW,cAAP,CAAsBF,CAAtB,CAAb;AACA,UAAMX,KAAK,GAAGG,QAAQ,CAACS,IAAD,CAAtB;;AACA,QAAIZ,KAAK,KAAKH,SAAd,EAAyB;AACvB,YAAM,IAAIiB,KAAJ,CAAW,kCAAiCF,IAAK,EAAjD,CAAN;AACD;;AACD,QAAIG,MAAJ;;AACA,QAAIT,KAAK,CAACU,OAAN,CAAchB,KAAd,CAAJ,EAA0B;AACxBe,MAAAA,MAAM,GAAGf,KAAK,CAACS,OAAN,CAAcV,YAAd,CAAT;AACD;;AACDgB,IAAAA,MAAM,GAAGhB,YAAY,CAACC,KAAD,CAArB;AACAI,IAAAA,OAAO,SAAP,IAAAA,OAAO,WAAP,YAAAA,OAAO,CAAEa,UAAT,CAAoBL,IAApB,EAA0B,OAAOG,MAAP,KAAkB,QAAlB,GAA6B,CAACA,MAAD,CAA7B,GAAwCA,MAAlE;AACA,WAAOA,MAAP;AACD,GAfe,CAAlB;AAgBA,QAAMG,KAAK,GAAGC,MAAM,CAACC,IAAP,CAAYjB,QAAZ,CAAd;;AACA,MAAIe,KAAK,CAACG,MAAN,GAAenB,MAAM,CAACK,eAAP,EAAnB,EAA6C;AAC3C,UAAMe,YAAY,GAAG,IAAIhB,KAAJ,CAAUJ,MAAM,CAACK,eAAP,EAAV,EAClBC,IADkB,CACb,CADa,EAElBe,GAFkB,CAEd,CAACb,CAAD,EAAIC,CAAJ,KAAUT,MAAM,CAACW,cAAP,CAAsBF,CAAtB,CAFI,CAArB;AAGA,UAAMa,aAAa,GAAGN,KAAK,CACxBK,GADmB,CACdX,IAAD,IAAU;AACb,UAAIU,YAAY,CAACG,OAAb,CAAqBb,IAArB,MAA+B,CAAC,CAApC,EAAuC;AACrC,eAAOA,IAAP;AACD;;AACD,aAAO,IAAP;AACD,KANmB,EAOnBc,MAPmB,CAOXC,CAAD,IAAOA,CAAC,KAAK,IAPD,CAAtB;AAQAC,IAAAA,OAAO,CAACC,IAAR,CAAa,oCAAoCL,aAAa,CAACM,IAAd,CAAmB,IAAnB,CAAjD;AACD;;AACD,SAAOzB,SAAP;AACD,CArCM","sourcesContent":["import type { SkJSIInstance } from \"../JsiInstance\";\nimport type { Vector } from \"../Point\";\nimport type { SkRuntimeEffect, SkRuntimeShaderBuilder } from \"../RuntimeEffect\";\n\nexport const isShader = (obj: SkJSIInstance<string> | null): obj is SkShader =>\n obj !== null && obj.__typename__ === \"Shader\";\n\nexport type SkShader = SkJSIInstance<\"Shader\">;\n\nexport type UniformValue = number | Vector | readonly number[];\n\nexport type Uniform = UniformValue | readonly UniformValue[];\n\nexport interface Uniforms {\n [name: string]: Uniform;\n}\n\nconst isVector = (obj: unknown): obj is Vector =>\n // We have an issue to check property existence on JSI backed instances\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n (obj as any).x !== undefined && (obj as any).y !== undefined;\n\nconst processValue = (value: UniformValue): number | readonly number[] => {\n if (isVector(value)) {\n return [value.x, value.y];\n }\n return value;\n};\n\nexport const processUniforms = (\n source: SkRuntimeEffect,\n uniforms: Uniforms,\n builder?: SkRuntimeShaderBuilder\n) => {\n const processed = new Array(source.getUniformCount())\n .fill(0)\n .flatMap((_, i) => {\n const name = source.getUniformName(i);\n const value = uniforms[name];\n if (value === undefined) {\n throw new Error(`No value specified for uniform ${name}`);\n }\n let result: number | readonly number[];\n if (Array.isArray(value)) {\n result = value.flatMap(processValue);\n }\n result = processValue(value as UniformValue);\n builder?.setUniform(name, typeof result === \"number\" ? [result] : result);\n return result;\n });\n const names = Object.keys(uniforms);\n if (names.length > source.getUniformCount()) {\n const usedUniforms = new Array(source.getUniformCount())\n .fill(0)\n .map((_, i) => source.getUniformName(i));\n const unusedUniform = names\n .map((name) => {\n if (usedUniforms.indexOf(name) === -1) {\n return name;\n }\n return null;\n })\n .filter((n) => n !== null);\n console.warn(\"Unused uniforms were provided: \" + unusedUniform.join(\", \"));\n }\n return processed;\n};\n"]}
@@ -0,0 +1,3 @@
1
+ export * from "./Shader";
2
+ export * from "./ShaderFactory";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAd;AACA,cAAc,iBAAd","sourcesContent":["export * from \"./Shader\";\nexport * from \"./ShaderFactory\";\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=Skia.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[]}
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[]}
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[]}
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","sourcesContent":[]}
@@ -0,0 +1,3 @@
1
+ export * from "./Typeface";
2
+ export * from "./TypefaceFactory";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAd;AACA,cAAc,mBAAd","sourcesContent":["export * from \"./Typeface\";\nexport * from \"./TypefaceFactory\";\n"]}
@@ -0,0 +1,29 @@
1
+ export * from "./Picture";
2
+ export * from "./Data";
3
+ export * from "./SVG";
4
+ export * from "./Surface";
5
+ export * from "./FontMgr";
6
+ export * from "./Vertices";
7
+ export * from "./RuntimeEffect";
8
+ export * from "./Shader";
9
+ export * from "./Image";
10
+ export * from "./ColorFilter";
11
+ export * from "./ImageFilter";
12
+ export * from "./Font";
13
+ export * from "./Typeface";
14
+ export * from "./Paint";
15
+ export * from "./Path";
16
+ export * from "./Color";
17
+ export * from "./Canvas";
18
+ export * from "./ContourMeasure";
19
+ export * from "./MaskFilter";
20
+ export * from "./Matrix";
21
+ export * from "./PathEffect";
22
+ export * from "./Point";
23
+ export * from "./Rect";
24
+ export * from "./RRect";
25
+ export * from "./RSXform";
26
+ export * from "./JsiInstance";
27
+ export * from "./Skia";
28
+ export * from "./TextBlob";
29
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAd;AACA,cAAc,QAAd;AACA,cAAc,OAAd;AACA,cAAc,WAAd;AACA,cAAc,WAAd;AACA,cAAc,YAAd;AACA,cAAc,iBAAd;AACA,cAAc,UAAd;AACA,cAAc,SAAd;AACA,cAAc,eAAd;AACA,cAAc,eAAd;AACA,cAAc,QAAd;AACA,cAAc,YAAd;AACA,cAAc,SAAd;AACA,cAAc,QAAd;AACA,cAAc,SAAd;AACA,cAAc,UAAd;AACA,cAAc,kBAAd;AACA,cAAc,cAAd;AACA,cAAc,UAAd;AACA,cAAc,cAAd;AACA,cAAc,SAAd;AACA,cAAc,QAAd;AACA,cAAc,SAAd;AACA,cAAc,WAAd;AACA,cAAc,eAAd;AACA,cAAc,QAAd;AACA,cAAc,YAAd","sourcesContent":["export * from \"./Picture\";\nexport * from \"./Data\";\nexport * from \"./SVG\";\nexport * from \"./Surface\";\nexport * from \"./FontMgr\";\nexport * from \"./Vertices\";\nexport * from \"./RuntimeEffect\";\nexport * from \"./Shader\";\nexport * from \"./Image\";\nexport * from \"./ColorFilter\";\nexport * from \"./ImageFilter\";\nexport * from \"./Font\";\nexport * from \"./Typeface\";\nexport * from \"./Paint\";\nexport * from \"./Path\";\nexport * from \"./Color\";\nexport * from \"./Canvas\";\nexport * from \"./ContourMeasure\";\nexport * from \"./MaskFilter\";\nexport * from \"./Matrix\";\nexport * from \"./PathEffect\";\nexport * from \"./Point\";\nexport * from \"./Rect\";\nexport * from \"./RRect\";\nexport * from \"./RSXform\";\nexport * from \"./JsiInstance\";\nexport * from \"./Skia\";\nexport * from \"./TextBlob\";\n"]}
@@ -0,0 +1,42 @@
1
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
2
+
3
+ /* eslint-disable no-nested-ternary */
4
+ export class NotImplementedOnRNWeb extends Error {
5
+ constructor() {
6
+ super("Not implemented on React Native Web");
7
+ }
8
+
9
+ }
10
+ export class Host {
11
+ constructor(CanvasKit) {
12
+ _defineProperty(this, "CanvasKit", void 0);
13
+
14
+ this.CanvasKit = CanvasKit;
15
+ }
16
+
17
+ }
18
+ export class HostObject extends Host {
19
+ constructor(CanvasKit, ref, typename) {
20
+ super(CanvasKit);
21
+
22
+ _defineProperty(this, "__typename__", void 0);
23
+
24
+ _defineProperty(this, "ref", void 0);
25
+
26
+ this.ref = ref;
27
+ this.__typename__ = typename;
28
+ }
29
+
30
+ } // eslint-disable-next-line @typescript-eslint/ban-types
31
+
32
+ export const toOptionalValue = value => value === undefined ? undefined : value === null ? null : toValue(value);
33
+ export const toUndefinedableValue = value => value === undefined ? undefined : toValue(value);
34
+ export const toNullableValue = value => value === null ? null : toValue(value);
35
+ export const toValue = value => value.ref;
36
+ export const ckEnum = value => ({
37
+ value
38
+ });
39
+ export const optEnum = value => value === undefined ? undefined : {
40
+ value
41
+ };
42
+ //# sourceMappingURL=Host.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["Host.ts"],"names":["NotImplementedOnRNWeb","Error","constructor","Host","CanvasKit","HostObject","ref","typename","__typename__","toOptionalValue","value","undefined","toValue","toUndefinedableValue","toNullableValue","ckEnum","optEnum"],"mappings":";;AAAA;AAKA,OAAO,MAAMA,qBAAN,SAAoCC,KAApC,CAA0C;AAC/CC,EAAAA,WAAW,GAAG;AACZ,UAAM,qCAAN;AACD;;AAH8C;AAMjD,OAAO,MAAeC,IAAf,CAAoB;AAGzBD,EAAAA,WAAW,CAACE,SAAD,EAAuB;AAAA;;AAChC,SAAKA,SAAL,GAAiBA,SAAjB;AACD;;AALwB;AAQ3B,OAAO,MAAeC,UAAf,SACGF,IADH,CAGP;AAIED,EAAAA,WAAW,CAACE,SAAD,EAAuBE,GAAvB,EAA+BC,QAA/B,EAA4C;AACrD,UAAMH,SAAN;;AADqD;;AAAA;;AAErD,SAAKE,GAAL,GAAWA,GAAX;AACA,SAAKE,YAAL,GAAoBD,QAApB;AACD;;AARH,C,CAWA;;AAGA,OAAO,MAAME,eAAe,GAC1BC,KAD6B,IAG7BA,KAAK,KAAKC,SAAV,GAAsBA,SAAtB,GAAkCD,KAAK,KAAK,IAAV,GAAiB,IAAjB,GAAwBE,OAAO,CAACF,KAAD,CAH5D;AAKP,OAAO,MAAMG,oBAAoB,GAC/BH,KADkC,IAEfA,KAAK,KAAKC,SAAV,GAAsBA,SAAtB,GAAkCC,OAAO,CAACF,KAAD,CAFvD;AAIP,OAAO,MAAMI,eAAe,GAAOJ,KAAJ,IAC7BA,KAAK,KAAK,IAAV,GAAiB,IAAjB,GAAwBE,OAAO,CAACF,KAAD,CAD1B;AAGP,OAAO,MAAME,OAAO,GAAOF,KAAJ,IACpBA,KAAD,CAAiCJ,GAD5B;AAGP,OAAO,MAAMS,MAAM,GAAIL,KAAD,KAAsC;AAAEA,EAAAA;AAAF,CAAtC,CAAf;AACP,OAAO,MAAMM,OAAO,GAClBN,KADqB,IAGrBA,KAAK,KAAKC,SAAV,GAAsBA,SAAtB,GAAkC;AAAED,EAAAA;AAAF,CAH7B","sourcesContent":["/* eslint-disable no-nested-ternary */\nimport type { CanvasKit, EmbindEnumEntity } from \"canvaskit-wasm\";\n\nimport type { SkJSIInstance } from \"../types\";\n\nexport class NotImplementedOnRNWeb extends Error {\n constructor() {\n super(\"Not implemented on React Native Web\");\n }\n}\n\nexport abstract class Host {\n readonly CanvasKit: CanvasKit;\n\n constructor(CanvasKit: CanvasKit) {\n this.CanvasKit = CanvasKit;\n }\n}\n\nexport abstract class HostObject<T, N extends string>\n extends Host\n implements SkJSIInstance<N>\n{\n readonly __typename__: N;\n readonly ref: T;\n\n constructor(CanvasKit: CanvasKit, ref: T, typename: N) {\n super(CanvasKit);\n this.ref = ref;\n this.__typename__ = typename;\n }\n}\n\n// eslint-disable-next-line @typescript-eslint/ban-types\nexport type NonNullish = {};\n\nexport const toOptionalValue = <T>(\n value: NonNullish | undefined | null\n): T | undefined | null =>\n value === undefined ? undefined : value === null ? null : toValue(value);\n\nexport const toUndefinedableValue = <T>(\n value: NonNullish | undefined\n): T | undefined => (value === undefined ? undefined : toValue(value));\n\nexport const toNullableValue = <T>(value: NonNullish | null): T | null =>\n value === null ? null : toValue(value);\n\nexport const toValue = <T>(value: NonNullish): T =>\n (value as HostObject<T, string>).ref;\n\nexport const ckEnum = (value: number): EmbindEnumEntity => ({ value });\nexport const optEnum = (\n value: number | undefined\n): EmbindEnumEntity | undefined =>\n value === undefined ? undefined : { value };\n"]}
@@ -0,0 +1,57 @@
1
+ import { Host, NotImplementedOnRNWeb, ckEnum, toValue } from "./Host";
2
+ import { JsiSkImageFilter } from "./JsiSkImageFilter";
3
+ export class JsiSkImageFilterFactory extends Host {
4
+ constructor(CanvasKit) {
5
+ super(CanvasKit);
6
+ }
7
+
8
+ MakeOffset(_dx, _dy, _input) {
9
+ throw new NotImplementedOnRNWeb();
10
+ }
11
+
12
+ MakeDisplacementMap(_channelX, _channelY, _scale, _in1, _input) {
13
+ throw new NotImplementedOnRNWeb();
14
+ }
15
+
16
+ MakeShader(_shader, _input) {
17
+ throw new NotImplementedOnRNWeb();
18
+ }
19
+
20
+ MakeBlur(sigmaX, sigmaY, mode, input) {
21
+ return new JsiSkImageFilter(this.CanvasKit, this.CanvasKit.ImageFilter.MakeBlur(sigmaX, sigmaY, ckEnum(mode), input === null ? null : toValue(input)));
22
+ }
23
+
24
+ MakeColorFilter(cf, input) {
25
+ return new JsiSkImageFilter(this.CanvasKit, this.CanvasKit.ImageFilter.MakeColorFilter(toValue(cf), input === null ? null : toValue(input)));
26
+ }
27
+
28
+ MakeCompose(outer, inner) {
29
+ return new JsiSkImageFilter(this.CanvasKit, this.CanvasKit.ImageFilter.MakeCompose(outer === null ? null : toValue(outer), inner === null ? null : toValue(inner)));
30
+ }
31
+
32
+ MakeDropShadow(_dx, _dy, _sigmaX, _sigmaY, _color, _input, _cropRect) {
33
+ throw new NotImplementedOnRNWeb();
34
+ }
35
+
36
+ MakeDropShadowOnly(_dx, _dy, _sigmaX, _sigmaY, _color, _input, _cropRect) {
37
+ throw new NotImplementedOnRNWeb();
38
+ }
39
+
40
+ MakeErode(_rx, _ry, _input, _cropRect) {
41
+ throw new NotImplementedOnRNWeb();
42
+ }
43
+
44
+ MakeDilate(_rx, _ry, _input, _cropRect) {
45
+ throw new NotImplementedOnRNWeb();
46
+ }
47
+
48
+ MakeBlend(_mode, _background, _foreground, _cropRect) {
49
+ throw new NotImplementedOnRNWeb();
50
+ }
51
+
52
+ MakeRuntimeShader(_builder, _childShaderName, _input) {
53
+ throw new NotImplementedOnRNWeb();
54
+ }
55
+
56
+ }
57
+ //# sourceMappingURL=JsiImageFilterFactory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["JsiImageFilterFactory.ts"],"names":["Host","NotImplementedOnRNWeb","ckEnum","toValue","JsiSkImageFilter","JsiSkImageFilterFactory","constructor","CanvasKit","MakeOffset","_dx","_dy","_input","MakeDisplacementMap","_channelX","_channelY","_scale","_in1","MakeShader","_shader","MakeBlur","sigmaX","sigmaY","mode","input","ImageFilter","MakeColorFilter","cf","MakeCompose","outer","inner","MakeDropShadow","_sigmaX","_sigmaY","_color","_cropRect","MakeDropShadowOnly","MakeErode","_rx","_ry","MakeDilate","MakeBlend","_mode","_background","_foreground","MakeRuntimeShader","_builder","_childShaderName"],"mappings":"AAeA,SAASA,IAAT,EAAeC,qBAAf,EAAsCC,MAAtC,EAA8CC,OAA9C,QAA6D,QAA7D;AACA,SAASC,gBAAT,QAAiC,oBAAjC;AAEA,OAAO,MAAMC,uBAAN,SACGL,IADH,CAGP;AACEM,EAAAA,WAAW,CAACC,SAAD,EAAuB;AAChC,UAAMA,SAAN;AACD;;AAEDC,EAAAA,UAAU,CACRC,GADQ,EAERC,GAFQ,EAGRC,MAHQ,EAIO;AACf,UAAM,IAAIV,qBAAJ,EAAN;AACD;;AAEDW,EAAAA,mBAAmB,CACjBC,SADiB,EAEjBC,SAFiB,EAGjBC,MAHiB,EAIjBC,IAJiB,EAKjBL,MALiB,EAMF;AACf,UAAM,IAAIV,qBAAJ,EAAN;AACD;;AAEDgB,EAAAA,UAAU,CAACC,OAAD,EAAoBP,MAApB,EAAiE;AACzE,UAAM,IAAIV,qBAAJ,EAAN;AACD;;AAEDkB,EAAAA,QAAQ,CACNC,MADM,EAENC,MAFM,EAGNC,IAHM,EAINC,KAJM,EAKN;AACA,WAAO,IAAInB,gBAAJ,CACL,KAAKG,SADA,EAEL,KAAKA,SAAL,CAAeiB,WAAf,CAA2BL,QAA3B,CACEC,MADF,EAEEC,MAFF,EAGEnB,MAAM,CAACoB,IAAD,CAHR,EAIEC,KAAK,KAAK,IAAV,GAAiB,IAAjB,GAAwBpB,OAAO,CAACoB,KAAD,CAJjC,CAFK,CAAP;AASD;;AAEDE,EAAAA,eAAe,CAACC,EAAD,EAAoBH,KAApB,EAAiD;AAC9D,WAAO,IAAInB,gBAAJ,CACL,KAAKG,SADA,EAEL,KAAKA,SAAL,CAAeiB,WAAf,CAA2BC,eAA3B,CACEtB,OAAO,CAACuB,EAAD,CADT,EAEEH,KAAK,KAAK,IAAV,GAAiB,IAAjB,GAAwBpB,OAAO,CAACoB,KAAD,CAFjC,CAFK,CAAP;AAOD;;AAEDI,EAAAA,WAAW,CAACC,KAAD,EAA8BC,KAA9B,EAA2D;AACpE,WAAO,IAAIzB,gBAAJ,CACL,KAAKG,SADA,EAEL,KAAKA,SAAL,CAAeiB,WAAf,CAA2BG,WAA3B,CACEC,KAAK,KAAK,IAAV,GAAiB,IAAjB,GAAwBzB,OAAO,CAACyB,KAAD,CADjC,EAEEC,KAAK,KAAK,IAAV,GAAiB,IAAjB,GAAwB1B,OAAO,CAAC0B,KAAD,CAFjC,CAFK,CAAP;AAOD;;AAEDC,EAAAA,cAAc,CACZrB,GADY,EAEZC,GAFY,EAGZqB,OAHY,EAIZC,OAJY,EAKZC,MALY,EAMZtB,MANY,EAOZuB,SAPY,EAQG;AACf,UAAM,IAAIjC,qBAAJ,EAAN;AACD;;AAEDkC,EAAAA,kBAAkB,CAChB1B,GADgB,EAEhBC,GAFgB,EAGhBqB,OAHgB,EAIhBC,OAJgB,EAKhBC,MALgB,EAMhBtB,MANgB,EAOhBuB,SAPgB,EAQD;AACf,UAAM,IAAIjC,qBAAJ,EAAN;AACD;;AAEDmC,EAAAA,SAAS,CACPC,GADO,EAEPC,GAFO,EAGP3B,MAHO,EAIPuB,SAJO,EAKQ;AACf,UAAM,IAAIjC,qBAAJ,EAAN;AACD;;AAEDsC,EAAAA,UAAU,CACRF,GADQ,EAERC,GAFQ,EAGR3B,MAHQ,EAIRuB,SAJQ,EAKO;AACf,UAAM,IAAIjC,qBAAJ,EAAN;AACD;;AAEDuC,EAAAA,SAAS,CACPC,KADO,EAEPC,WAFO,EAGPC,WAHO,EAIPT,SAJO,EAKQ;AACf,UAAM,IAAIjC,qBAAJ,EAAN;AACD;;AAED2C,EAAAA,iBAAiB,CACfC,QADe,EAEfC,gBAFe,EAGfnC,MAHe,EAIA;AACf,UAAM,IAAIV,qBAAJ,EAAN;AACD;;AAzHH","sourcesContent":["import type { CanvasKit } from \"canvaskit-wasm\";\n\nimport type {\n ColorChannel,\n ImageFilterFactory,\n SkColor,\n SkColorFilter,\n SkImageFilter,\n BlendMode,\n SkRect,\n SkRuntimeShaderBuilder,\n SkShader,\n TileMode,\n} from \"../types\";\n\nimport { Host, NotImplementedOnRNWeb, ckEnum, toValue } from \"./Host\";\nimport { JsiSkImageFilter } from \"./JsiSkImageFilter\";\n\nexport class JsiSkImageFilterFactory\n extends Host\n implements ImageFilterFactory\n{\n constructor(CanvasKit: CanvasKit) {\n super(CanvasKit);\n }\n\n MakeOffset(\n _dx: number,\n _dy: number,\n _input: SkImageFilter | null\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeDisplacementMap(\n _channelX: ColorChannel,\n _channelY: ColorChannel,\n _scale: number,\n _in1: SkImageFilter,\n _input: SkImageFilter | null\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeShader(_shader: SkShader, _input: SkImageFilter | null): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeBlur(\n sigmaX: number,\n sigmaY: number,\n mode: TileMode,\n input: SkImageFilter | null\n ) {\n return new JsiSkImageFilter(\n this.CanvasKit,\n this.CanvasKit.ImageFilter.MakeBlur(\n sigmaX,\n sigmaY,\n ckEnum(mode),\n input === null ? null : toValue(input)\n )\n );\n }\n\n MakeColorFilter(cf: SkColorFilter, input: SkImageFilter | null) {\n return new JsiSkImageFilter(\n this.CanvasKit,\n this.CanvasKit.ImageFilter.MakeColorFilter(\n toValue(cf),\n input === null ? null : toValue(input)\n )\n );\n }\n\n MakeCompose(outer: SkImageFilter | null, inner: SkImageFilter | null) {\n return new JsiSkImageFilter(\n this.CanvasKit,\n this.CanvasKit.ImageFilter.MakeCompose(\n outer === null ? null : toValue(outer),\n inner === null ? null : toValue(inner)\n )\n );\n }\n\n MakeDropShadow(\n _dx: number,\n _dy: number,\n _sigmaX: number,\n _sigmaY: number,\n _color: SkColor,\n _input: SkImageFilter | null,\n _cropRect?: SkRect\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeDropShadowOnly(\n _dx: number,\n _dy: number,\n _sigmaX: number,\n _sigmaY: number,\n _color: SkColor,\n _input: SkImageFilter | null,\n _cropRect?: SkRect\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeErode(\n _rx: number,\n _ry: number,\n _input: SkImageFilter | null,\n _cropRect?: SkRect\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeDilate(\n _rx: number,\n _ry: number,\n _input: SkImageFilter | null,\n _cropRect?: SkRect\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeBlend(\n _mode: BlendMode,\n _background: SkImageFilter,\n _foreground: SkImageFilter | null,\n _cropRect?: SkRect\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n\n MakeRuntimeShader(\n _builder: SkRuntimeShaderBuilder,\n _childShaderName: string | null,\n _input: SkImageFilter | null\n ): SkImageFilter {\n throw new NotImplementedOnRNWeb();\n }\n}\n"]}
@@ -0,0 +1,173 @@
1
+ import { ckEnum, HostObject, toValue, toUndefinedableValue, toOptionalValue } from "./Host";
2
+ import { JsiSkRect } from "./JsiSkRect";
3
+ export class JsiSkCanvas extends HostObject {
4
+ constructor(CanvasKit, ref) {
5
+ super(CanvasKit, ref, "Canvas");
6
+ }
7
+
8
+ drawRect(rect, paint) {
9
+ this.ref.drawRect(JsiSkRect.fromValue(this.CanvasKit, rect).ref, toValue(paint));
10
+ }
11
+
12
+ drawImage(image, x, y, paint) {
13
+ this.ref.drawImage(toValue(image), x, y, toOptionalValue(paint));
14
+ }
15
+
16
+ drawImageRect(img, src, dest, paint, fastSample) {
17
+ this.ref.drawImageRect(toValue(img), JsiSkRect.fromValue(this.CanvasKit, src).ref, JsiSkRect.fromValue(this.CanvasKit, dest).ref, toValue(paint), fastSample);
18
+ }
19
+
20
+ drawImageCubic(img, left, top, B, C, paint) {
21
+ this.ref.drawImageCubic(toValue(img), left, top, B, C, toOptionalValue(paint));
22
+ }
23
+
24
+ drawImageOptions(img, left, top, fm, mm, paint) {
25
+ this.ref.drawImageOptions(toValue(img), left, top, ckEnum(fm), ckEnum(mm), toOptionalValue(paint));
26
+ }
27
+
28
+ drawImageNine(img, center, dest, filter, paint) {
29
+ this.ref.drawImageNine(toValue(img), toValue(center), toValue(dest), ckEnum(filter), toOptionalValue(paint));
30
+ }
31
+
32
+ drawImageRectCubic(img, src, dest, B, C, paint) {
33
+ this.ref.drawImageRectCubic(toValue(img), JsiSkRect.fromValue(this.CanvasKit, src).ref, JsiSkRect.fromValue(this.CanvasKit, dest).ref, B, C, toOptionalValue(paint));
34
+ }
35
+
36
+ drawImageRectOptions(img, src, dest, fm, mm, paint) {
37
+ this.ref.drawImageRectOptions(toValue(img), JsiSkRect.fromValue(this.CanvasKit, src).ref, JsiSkRect.fromValue(this.CanvasKit, dest).ref, ckEnum(fm), ckEnum(mm), toOptionalValue(paint));
38
+ }
39
+
40
+ drawPaint(paint) {
41
+ this.ref.drawPaint(toValue(paint));
42
+ }
43
+
44
+ drawLine(x0, y0, x1, y1, paint) {
45
+ this.ref.drawLine(x0, y0, x1, y1, toValue(paint));
46
+ }
47
+
48
+ drawCircle(cx, cy, radius, paint) {
49
+ this.ref.drawCircle(cx, cy, radius, toValue(paint));
50
+ }
51
+
52
+ drawVertices(verts, mode, paint) {
53
+ this.ref.drawVertices(toValue(verts), ckEnum(mode), toValue(paint));
54
+ }
55
+
56
+ drawPatch(cubics, colors, texs, mode, paint) {
57
+ this.ref.drawPatch(cubics.map(_ref => {
58
+ let {
59
+ x,
60
+ y
61
+ } = _ref;
62
+ return [x, y];
63
+ }).flat(), colors, toOptionalValue(texs), mode ? ckEnum(mode) : null, toUndefinedableValue(paint));
64
+ }
65
+
66
+ restoreToCount(saveCount) {
67
+ this.ref.restoreToCount(saveCount);
68
+ }
69
+
70
+ drawPoints(mode, points, paint) {
71
+ this.ref.drawPoints(ckEnum(mode), points.map(_ref2 => {
72
+ let {
73
+ x,
74
+ y
75
+ } = _ref2;
76
+ return [x, y];
77
+ }).flat(), toValue(paint));
78
+ }
79
+
80
+ drawArc(oval, startAngle, sweepAngle, useCenter, paint) {
81
+ this.ref.drawArc(toValue(oval), startAngle, sweepAngle, useCenter, toValue(paint));
82
+ }
83
+
84
+ drawRRect(rrect, paint) {
85
+ this.ref.drawRRect(toValue(rrect), toValue(paint));
86
+ }
87
+
88
+ drawDRRect(outer, inner, paint) {
89
+ this.ref.drawDRRect(toValue(outer), toValue(inner), toValue(paint));
90
+ }
91
+
92
+ drawOval(oval, paint) {
93
+ this.ref.drawOval(toValue(oval), toValue(paint));
94
+ }
95
+
96
+ drawPath(path, paint) {
97
+ this.ref.drawPath(toValue(path), toValue(paint));
98
+ }
99
+
100
+ drawText(str, x, y, paint, font) {
101
+ this.ref.drawText(str, x, y, toValue(paint), toValue(font));
102
+ }
103
+
104
+ drawTextBlob(blob, x, y, paint) {
105
+ this.ref.drawTextBlob(toValue(blob), x, y, toValue(paint));
106
+ }
107
+
108
+ drawGlyphs(glyphs, positions, x, y, font, paint) {
109
+ this.ref.drawGlyphs(glyphs, toValue(positions), x, y, toValue(font), toValue(paint));
110
+ }
111
+
112
+ drawSvg(_svgDom, _width, _height) {
113
+ throw new Error("drawSvg is not implemented on React Native Web");
114
+ }
115
+
116
+ save() {
117
+ return this.ref.save();
118
+ }
119
+
120
+ saveLayer(paint, bounds, backdrop, flags) {
121
+ return this.ref.saveLayer(toUndefinedableValue(paint), toOptionalValue(bounds), toOptionalValue(backdrop), flags);
122
+ }
123
+
124
+ restore() {
125
+ this.ref.restore();
126
+ }
127
+
128
+ rotate(rotationInDegrees, rx, ry) {
129
+ this.ref.rotate(rotationInDegrees, rx, ry);
130
+ }
131
+
132
+ scale(sx, sy) {
133
+ this.ref.scale(sx, sy);
134
+ }
135
+
136
+ skew(sx, sy) {
137
+ this.ref.skew(sx, sy);
138
+ }
139
+
140
+ translate(dx, dy) {
141
+ this.ref.translate(dx, dy);
142
+ }
143
+
144
+ drawColor(color, blendMode) {
145
+ this.ref.drawColor(color, blendMode ? ckEnum(blendMode) : undefined);
146
+ }
147
+
148
+ clear(color) {
149
+ this.ref.clear(color);
150
+ }
151
+
152
+ clipPath(path, op, doAntiAlias) {
153
+ this.ref.clipPath(toValue(path), ckEnum(op), doAntiAlias);
154
+ }
155
+
156
+ clipRect(rect, op, doAntiAlias) {
157
+ this.ref.clipRect(toValue(rect), ckEnum(op), doAntiAlias);
158
+ }
159
+
160
+ clipRRect(rrect, op, doAntiAlias) {
161
+ this.ref.clipRRect(toValue(rrect), ckEnum(op), doAntiAlias);
162
+ }
163
+
164
+ concat(m) {
165
+ this.ref.concat(toValue(m));
166
+ }
167
+
168
+ drawPicture(skp) {
169
+ this.ref.drawPicture(toValue(skp));
170
+ }
171
+
172
+ }
173
+ //# sourceMappingURL=JsiSkCanvas.js.map