@react-native-ohos/react-native-svg 15.0.2-rc.5 → 15.12.1-rc.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (548) hide show
  1. package/README.OpenSource +11 -0
  2. package/README.md +13 -0
  3. package/harmony/svg/BuildProfile.ets +17 -0
  4. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/.ts_checker_cache +3052 -0
  5. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/.tsbuildinfo +1 -0
  6. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/.tsbuildinfo.linter +1 -0
  7. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/compileInfo.json +1 -0
  8. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/modules/RNSVGImageModule.ts-7c464e69f4a700eeeaae44cf66ca5fd3b3e84299010d5c3a5643612ba1a48d70.msgpack +0 -0
  9. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/modules/RNSVGRenderableModule.ts-c2df5206c2aa9e868b7f24f706a131fff1236faaff78688ffdeec3ce25bf5d91.msgpack +0 -0
  10. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/modules/RNSVGSvgViewModule.ts-b9a699770b693eeaa2eb98307323dc9087e44afc9c01b08d222555636b3fac0d.msgpack +0 -0
  11. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/modules/SvgPackage.ts-08ac57d81b1742792af8813eac27abe5eca1a5714b1a5b76f97436b13abe48e4.msgpack +0 -0
  12. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/modules/index.ets-0e520bf323178f6f973ec12f44622042dcdd19e5032efd9bd02ac5606fb58275.msgpack +0 -0
  13. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/modules/ts.ts-1d50b47087f159616212dd3c5ecd04a204a5be09940b7dbba77a59e3a66499c2.msgpack +0 -0
  14. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/other/pkgName2SourceRoots.msgpack +1 -0
  15. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/compiler.cache/plugins/plugins.msgpack +0 -0
  16. package/harmony/svg/build/default/cache/default/default@HarCompileArkTS/esmodule/debug/dep_info.json +1 -0
  17. package/harmony/svg/build/default/cache/default/default@PackageHar/BuildProfile.ets +17 -0
  18. package/harmony/svg/build/default/cache/default/default@PackageHar/ResourceTable.txt +1 -0
  19. package/harmony/svg/build/default/cache/default/default@PackageHar/build-profile.json5 +9 -0
  20. package/harmony/svg/build/default/cache/default/default@PackageHar/hvigorfile.ts +2 -0
  21. package/harmony/svg/build/default/cache/default/default@PackageHar/index.ets +7 -0
  22. package/harmony/svg/build/default/cache/default/default@PackageHar/oh-package-lock.json5 +19 -0
  23. package/harmony/svg/build/default/cache/default/default@PackageHar/oh-package.json5 +1 -0
  24. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/Attribute.h +52 -0
  25. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/CMakeLists.txt +32 -0
  26. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/FallbackProps.h +0 -0
  27. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/FontHolderBase.cpp +22 -0
  28. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/FontHolderBase.h +54 -0
  29. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SVGPackage.cpp +135 -0
  30. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SVGPackage.h +157 -0
  31. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgArkUINode.cpp +78 -0
  32. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgArkUINode.h +51 -0
  33. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgBaseAttribute.h +83 -0
  34. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgCircle.cpp +29 -0
  35. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgCircle.h +29 -0
  36. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgClipPath.h +22 -0
  37. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgContext.cpp +56 -0
  38. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgContext.h +71 -0
  39. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgDefs.h +46 -0
  40. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgEllipse.cpp +32 -0
  41. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgEllipse.h +34 -0
  42. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgFilter.cpp +505 -0
  43. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgFilter.h +112 -0
  44. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgForeignObjectNode.cpp +86 -0
  45. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgForeignObjectNode.h +81 -0
  46. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgForeignObjectNodeDelegate.h +30 -0
  47. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgForeignProps.h +39 -0
  48. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgGradient.cpp +117 -0
  49. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgGradient.h +49 -0
  50. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgGraphic.cpp +553 -0
  51. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgGraphic.h +77 -0
  52. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgGroup.cpp +93 -0
  53. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgGroup.h +41 -0
  54. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgHost.cpp +27 -0
  55. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgHost.h +38 -0
  56. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgImage.cpp +168 -0
  57. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgImage.h +52 -0
  58. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgLine.cpp +28 -0
  59. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgLine.h +32 -0
  60. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgMarker.cpp +61 -0
  61. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgMarker.h +86 -0
  62. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgMask.cpp +72 -0
  63. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgMask.h +68 -0
  64. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgNode.cpp +395 -0
  65. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgNode.h +377 -0
  66. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgPath.cpp +42 -0
  67. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgPath.h +29 -0
  68. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgPattern.cpp +77 -0
  69. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgPattern.h +64 -0
  70. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgQuote.h +87 -0
  71. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgRect.cpp +58 -0
  72. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgRect.h +33 -0
  73. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgSvg.cpp +83 -0
  74. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgSvg.h +52 -0
  75. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgSymbol.cpp +25 -0
  76. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgSymbol.h +37 -0
  77. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgTSpan.cpp +501 -0
  78. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgTSpan.h +101 -0
  79. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgText.cpp +48 -0
  80. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgText.h +29 -0
  81. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgTextPath.cpp +35 -0
  82. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgTextPath.h +51 -0
  83. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgUse.cpp +65 -0
  84. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgUse.h +46 -0
  85. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgViewManager.cpp +36 -0
  86. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/SvgViewManager.h +37 -0
  87. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/TextBase.cpp +20 -0
  88. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/TextBase.h +114 -0
  89. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGBaseComponentInstance.h +212 -0
  90. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGCircleComponentInstance.cpp +31 -0
  91. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGCircleComponentInstance.h +27 -0
  92. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGClipPathComponentInstance.cpp +23 -0
  93. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGClipPathComponentInstance.h +27 -0
  94. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGDefsComponentInstance.cpp +23 -0
  95. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGDefsComponentInstance.h +28 -0
  96. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGEllipseComponentInstance.cpp +27 -0
  97. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGEllipseComponentInstance.h +27 -0
  98. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeBlendComponentInstance.cpp +40 -0
  99. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeBlendComponentInstance.h +48 -0
  100. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeColorMatrixComponentInstance.cpp +33 -0
  101. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeColorMatrixComponentInstance.h +48 -0
  102. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeCompositeComponentInstance.cpp +39 -0
  103. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeCompositeComponentInstance.h +55 -0
  104. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeFloodComponentInstance.cpp +33 -0
  105. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeFloodComponentInstance.h +49 -0
  106. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeGaussianBlurComponentInstance.cpp +34 -0
  107. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeGaussianBlurComponentInstance.h +48 -0
  108. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeOffsetComponentInstance.cpp +35 -0
  109. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFeOffsetComponentInstance.h +46 -0
  110. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFilterComponentInstance.cpp +199 -0
  111. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGFilterComponentInstance.h +48 -0
  112. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGForeignObjectComponentInstance.cpp +93 -0
  113. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGForeignObjectComponentInstance.h +55 -0
  114. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGGroupComponentInstance.cpp +32 -0
  115. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGGroupComponentInstance.h +31 -0
  116. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGImageComponentInstance.cpp +103 -0
  117. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGImageComponentInstance.h +43 -0
  118. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGLineComponentInstance.cpp +27 -0
  119. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGLineComponentInstance.h +27 -0
  120. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGLinearGradientComponentInstance.cpp +30 -0
  121. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGLinearGradientComponentInstance.h +28 -0
  122. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGMarkerComponentInstance.cpp +35 -0
  123. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGMarkerComponentInstance.h +27 -0
  124. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGMaskComponentInstance.cpp +30 -0
  125. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGMaskComponentInstance.h +27 -0
  126. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGPathComponentInstance.cpp +33 -0
  127. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGPathComponentInstance.h +29 -0
  128. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGPatternComponentInstance.cpp +40 -0
  129. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGPatternComponentInstance.h +27 -0
  130. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGRadialGradientComponentInstance.cpp +32 -0
  131. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGRadialGradientComponentInstance.h +28 -0
  132. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGRectComponentInstance.cpp +36 -0
  133. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGRectComponentInstance.h +27 -0
  134. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGSvgViewComponentInstance.cpp +124 -0
  135. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGSvgViewComponentInstance.h +56 -0
  136. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGSymbolComponentInstance.cpp +30 -0
  137. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGSymbolComponentInstance.h +27 -0
  138. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGTSpanComponentInstance.cpp +27 -0
  139. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGTSpanComponentInstance.h +27 -0
  140. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGTextComponentInstance.cpp +25 -0
  141. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGTextComponentInstance.h +27 -0
  142. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGTextPathComponentInstance.cpp +32 -0
  143. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGTextPathComponentInstance.h +27 -0
  144. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGUseComponentInstance.cpp +32 -0
  145. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/componentInstances/RNSVGUseComponentInstance.h +32 -0
  146. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/downloadUtils/HttpTaskProcessor.cpp +266 -0
  147. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/downloadUtils/HttpTaskProcessor.h +88 -0
  148. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/downloadUtils/ImageSourceResolver.cpp +134 -0
  149. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/downloadUtils/ImageSourceResolver.h +93 -0
  150. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/downloadUtils/LRUCache.h +98 -0
  151. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Brush.cpp +50 -0
  152. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Brush.h +52 -0
  153. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/GlyPathBag.cpp +20 -0
  154. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/GlyPathBag.h +31 -0
  155. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Matrix.cpp +100 -0
  156. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Matrix.h +68 -0
  157. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Path.cpp +173 -0
  158. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Path.h +127 -0
  159. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Pen.cpp +57 -0
  160. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Pen.h +59 -0
  161. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Rect.cpp +47 -0
  162. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Rect.h +56 -0
  163. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/RoundRect.cpp +24 -0
  164. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/RoundRect.h +39 -0
  165. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/ShaderEffect.cpp +37 -0
  166. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/ShaderEffect.h +51 -0
  167. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/TextStyle.cpp +49 -0
  168. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/TextStyle.h +41 -0
  169. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Typography.cpp +9 -0
  170. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/Typography.h +25 -0
  171. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/TypographyStyle.cpp +31 -0
  172. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/drawing/TypographyStyle.h +41 -0
  173. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGCircleJSIBinder.h +54 -0
  174. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGClipPathJSIBinder.h +54 -0
  175. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGDefsJSIBinder.h +38 -0
  176. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGEllipseJSIBinder.h +55 -0
  177. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGFeBlendJSIBinder.h +26 -0
  178. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGFeColorMatrixJSIBinder.h +26 -0
  179. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGFeCompositeJSIBinder.h +30 -0
  180. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGFeFloodJSIBinder.h +26 -0
  181. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGFeGaussianBlurJSIBinder.h +27 -0
  182. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGFeOffsetJSIBinder.h +26 -0
  183. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGFilterJSIBinder.h +44 -0
  184. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGForeignObjectJSIBinder.h +57 -0
  185. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGGroupJSIBinder.h +54 -0
  186. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGImageJSIBinder.h +58 -0
  187. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGLineJSIBinder.h +55 -0
  188. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGLinearGradientJSIBinder.h +45 -0
  189. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGMarkerJSIBinder.h +66 -0
  190. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGMaskJSIBinder.h +60 -0
  191. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGPathJSIBinder.h +52 -0
  192. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGPatternJSIBinder.h +67 -0
  193. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGRadialGradientJSIBinder.h +47 -0
  194. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGRectJSIBinder.h +57 -0
  195. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGSvgViewAndroidJSIBinder.h +67 -0
  196. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGSvgViewJSIBinder.h +36 -0
  197. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGSymbolJSIBinder.h +60 -0
  198. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGTSpanJSIBinder.h +66 -0
  199. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGTextJSIBinder.h +65 -0
  200. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGTextPathJSIBinder.h +71 -0
  201. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/RNOH/generated/components/RNSVGUseJSIBinder.h +56 -0
  202. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/ComponentDescriptors.h +48 -0
  203. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/EventEmitters.cpp +20 -0
  204. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/EventEmitters.h +253 -0
  205. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/Props.cpp +977 -0
  206. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/Props.h +1280 -0
  207. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/ShadowNodes.cpp +45 -0
  208. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/ShadowNodes.h +331 -0
  209. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/States.cpp +18 -0
  210. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/generated/react/renderer/components/react_native_svg/States.h +441 -0
  211. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Color.cpp +458 -0
  212. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Color.h +144 -0
  213. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Decoration.cpp +41 -0
  214. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Decoration.h +483 -0
  215. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Dimension.cpp +64 -0
  216. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Dimension.h +257 -0
  217. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Font.cpp +166 -0
  218. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Font.h +163 -0
  219. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Offset.h +119 -0
  220. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/PaintState.h +240 -0
  221. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Rect.h +423 -0
  222. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/Size.h +246 -0
  223. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/SvgPaintState.h +452 -0
  224. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/TextProperties.cpp +91 -0
  225. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/TextProperties.h +56 -0
  226. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/properties/ViewBox.h +108 -0
  227. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/svgImage/RNSVGImageComponentDescriptor.h +41 -0
  228. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/svgImage/RNSVGImageShadowNode.cpp +62 -0
  229. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/svgImage/RNSVGImageShadowNode.h +63 -0
  230. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/svgImage/RNSVGImageState.cpp +17 -0
  231. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/svgImage/RNSVGImageState.h +58 -0
  232. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/turboModules/RNSVGImageModule.cpp +83 -0
  233. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/turboModules/RNSVGImageModule.h +32 -0
  234. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/turboModules/RNSVGRenderableModule.cpp +101 -0
  235. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/turboModules/RNSVGRenderableModule.h +32 -0
  236. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/turboModules/RNSVGSvgViewModule.cpp +71 -0
  237. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/turboModules/RNSVGSvgViewModule.h +32 -0
  238. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/DynamicUtils.h +55 -0
  239. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/FilterManager.h +190 -0
  240. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/GlyphContext.cpp +221 -0
  241. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/GlyphContext.h +106 -0
  242. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/LinearMap.h +69 -0
  243. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/PathParserUtils.cpp +591 -0
  244. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/PathParserUtils.h +93 -0
  245. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/StringUtils.cpp +134 -0
  246. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/StringUtils.h +644 -0
  247. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/SvgAttributesParser.cpp +239 -0
  248. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/SvgAttributesParser.h +277 -0
  249. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/SvgMarkerPositionUtils.h +200 -0
  250. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/SvgUtils.h +176 -0
  251. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/TextPathHelper.cpp +94 -0
  252. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/cpp/utils/TextPathHelper.h +61 -0
  253. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/ets/RNSVGImageModule.ts +21 -0
  254. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/ets/RNSVGRenderableModule.ts +16 -0
  255. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/ets/RNSVGSvgViewModule.ts +18 -0
  256. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/ets/SvgPackage.ts +58 -0
  257. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/module.json +30 -0
  258. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/resources/base/element/string.json +8 -0
  259. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/resources/en_US/element/string.json +8 -0
  260. package/harmony/svg/build/default/cache/default/default@PackageHar/src/main/resources/zh_CN/element/string.json +8 -0
  261. package/harmony/svg/build/default/cache/default/default@PackageHar/ts.ts +8 -0
  262. package/harmony/svg/build/default/generated/pm/default/oh-package.json5 +1 -0
  263. package/harmony/svg/build/default/generated/r/default/ResourceTable.h +24 -0
  264. package/harmony/svg/build/default/intermediates/loader/default/loader.json +26 -0
  265. package/harmony/svg/build/default/intermediates/merge_profile/default/module.json +27 -0
  266. package/harmony/svg/build/default/intermediates/patch/default/base_native_libs.json +1 -0
  267. package/harmony/svg/build/default/intermediates/process_profile/default/module.json +30 -0
  268. package/harmony/svg/build/default/intermediates/res/default/ResourceTable.txt +1 -0
  269. package/harmony/svg/build/default/intermediates/res/default/ark_module.json +1 -0
  270. package/harmony/svg/build/default/intermediates/res/default/ids_map/id_defined.json +7 -0
  271. package/harmony/svg/build/default/intermediates/res/default/module.json +28 -0
  272. package/harmony/svg/build/default/intermediates/res/default/opt-compression.json +1 -0
  273. package/harmony/svg/build/default/intermediates/res/default/resConfig.json +1 -0
  274. package/harmony/svg/build/default/intermediates/res/default/resources/rawfile/rnoh.profdata +0 -0
  275. package/harmony/svg/build/default/intermediates/res/default/resources.index +0 -0
  276. package/harmony/svg/build/default/outputs/default/svg.har +0 -0
  277. package/harmony/svg/build-profile.json5 +9 -0
  278. package/harmony/svg/hvigorfile.ts +2 -0
  279. package/harmony/svg/index.ets +7 -0
  280. package/harmony/svg/oh-package.json5 +13 -0
  281. package/harmony/svg/src/main/cpp/Attribute.h +52 -0
  282. package/harmony/svg/src/main/cpp/CMakeLists.txt +32 -0
  283. package/harmony/svg/src/main/cpp/FallbackProps.h +0 -0
  284. package/harmony/svg/src/main/cpp/FontHolderBase.cpp +22 -0
  285. package/harmony/svg/src/main/cpp/FontHolderBase.h +54 -0
  286. package/harmony/svg/src/main/cpp/SVGPackage.cpp +135 -0
  287. package/harmony/svg/src/main/cpp/SVGPackage.h +157 -0
  288. package/harmony/svg/src/main/cpp/SvgArkUINode.cpp +78 -0
  289. package/harmony/svg/src/main/cpp/SvgArkUINode.h +51 -0
  290. package/harmony/svg/src/main/cpp/SvgBaseAttribute.h +83 -0
  291. package/harmony/svg/src/main/cpp/SvgCircle.cpp +29 -0
  292. package/harmony/svg/src/main/cpp/SvgCircle.h +29 -0
  293. package/harmony/svg/src/main/cpp/SvgClipPath.h +22 -0
  294. package/harmony/svg/src/main/cpp/SvgContext.cpp +56 -0
  295. package/harmony/svg/src/main/cpp/SvgContext.h +71 -0
  296. package/harmony/svg/src/main/cpp/SvgDefs.h +46 -0
  297. package/harmony/svg/src/main/cpp/SvgEllipse.cpp +32 -0
  298. package/harmony/svg/src/main/cpp/SvgEllipse.h +34 -0
  299. package/harmony/svg/src/main/cpp/SvgFilter.cpp +505 -0
  300. package/harmony/svg/src/main/cpp/SvgFilter.h +112 -0
  301. package/harmony/svg/src/main/cpp/SvgForeignObjectNode.cpp +86 -0
  302. package/harmony/svg/src/main/cpp/SvgForeignObjectNode.h +81 -0
  303. package/harmony/svg/src/main/cpp/SvgForeignObjectNodeDelegate.h +30 -0
  304. package/harmony/svg/src/main/cpp/SvgForeignProps.h +39 -0
  305. package/harmony/svg/src/main/cpp/SvgGradient.cpp +117 -0
  306. package/harmony/svg/src/main/cpp/SvgGradient.h +49 -0
  307. package/harmony/svg/src/main/cpp/SvgGraphic.cpp +553 -0
  308. package/harmony/svg/src/main/cpp/SvgGraphic.h +77 -0
  309. package/harmony/svg/src/main/cpp/SvgGroup.cpp +93 -0
  310. package/harmony/svg/src/main/cpp/SvgGroup.h +41 -0
  311. package/harmony/svg/src/main/cpp/SvgHost.cpp +27 -0
  312. package/harmony/svg/src/main/cpp/SvgHost.h +38 -0
  313. package/harmony/svg/src/main/cpp/SvgImage.cpp +168 -0
  314. package/harmony/svg/src/main/cpp/SvgImage.h +52 -0
  315. package/harmony/svg/src/main/cpp/SvgLine.cpp +28 -0
  316. package/harmony/svg/src/main/cpp/SvgLine.h +32 -0
  317. package/harmony/svg/src/main/cpp/SvgMarker.cpp +61 -0
  318. package/harmony/svg/src/main/cpp/SvgMarker.h +86 -0
  319. package/harmony/svg/src/main/cpp/SvgMask.cpp +72 -0
  320. package/harmony/svg/src/main/cpp/SvgMask.h +68 -0
  321. package/harmony/svg/src/main/cpp/SvgNode.cpp +395 -0
  322. package/harmony/svg/src/main/cpp/SvgNode.h +377 -0
  323. package/harmony/svg/src/main/cpp/SvgPath.cpp +42 -0
  324. package/harmony/svg/src/main/cpp/SvgPath.h +29 -0
  325. package/harmony/svg/src/main/cpp/SvgPattern.cpp +77 -0
  326. package/harmony/svg/src/main/cpp/SvgPattern.h +64 -0
  327. package/harmony/svg/src/main/cpp/SvgQuote.h +87 -0
  328. package/harmony/svg/src/main/cpp/SvgRect.cpp +58 -0
  329. package/harmony/svg/src/main/cpp/SvgRect.h +33 -0
  330. package/harmony/svg/src/main/cpp/SvgSvg.cpp +83 -0
  331. package/harmony/svg/src/main/cpp/SvgSvg.h +52 -0
  332. package/harmony/svg/src/main/cpp/SvgSymbol.cpp +25 -0
  333. package/harmony/svg/src/main/cpp/SvgSymbol.h +37 -0
  334. package/harmony/svg/src/main/cpp/SvgTSpan.cpp +501 -0
  335. package/harmony/svg/src/main/cpp/SvgTSpan.h +101 -0
  336. package/harmony/svg/src/main/cpp/SvgText.cpp +48 -0
  337. package/harmony/svg/src/main/cpp/SvgText.h +29 -0
  338. package/harmony/svg/src/main/cpp/SvgTextPath.cpp +35 -0
  339. package/harmony/svg/src/main/cpp/SvgTextPath.h +51 -0
  340. package/harmony/svg/src/main/cpp/SvgUse.cpp +65 -0
  341. package/harmony/svg/src/main/cpp/SvgUse.h +46 -0
  342. package/harmony/svg/src/main/cpp/SvgViewManager.cpp +36 -0
  343. package/harmony/svg/src/main/cpp/SvgViewManager.h +37 -0
  344. package/harmony/svg/src/main/cpp/TextBase.cpp +20 -0
  345. package/harmony/svg/src/main/cpp/TextBase.h +114 -0
  346. package/harmony/svg/src/main/cpp/componentInstances/RNSVGBaseComponentInstance.h +212 -0
  347. package/harmony/svg/src/main/cpp/componentInstances/RNSVGCircleComponentInstance.cpp +31 -0
  348. package/harmony/svg/src/main/cpp/componentInstances/RNSVGCircleComponentInstance.h +27 -0
  349. package/harmony/svg/src/main/cpp/componentInstances/RNSVGClipPathComponentInstance.cpp +23 -0
  350. package/harmony/svg/src/main/cpp/componentInstances/RNSVGClipPathComponentInstance.h +27 -0
  351. package/harmony/svg/src/main/cpp/componentInstances/RNSVGDefsComponentInstance.cpp +23 -0
  352. package/harmony/svg/src/main/cpp/componentInstances/RNSVGDefsComponentInstance.h +28 -0
  353. package/harmony/svg/src/main/cpp/componentInstances/RNSVGEllipseComponentInstance.cpp +27 -0
  354. package/harmony/svg/src/main/cpp/componentInstances/RNSVGEllipseComponentInstance.h +27 -0
  355. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeBlendComponentInstance.cpp +40 -0
  356. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeBlendComponentInstance.h +48 -0
  357. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeColorMatrixComponentInstance.cpp +33 -0
  358. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeColorMatrixComponentInstance.h +48 -0
  359. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeCompositeComponentInstance.cpp +39 -0
  360. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeCompositeComponentInstance.h +55 -0
  361. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeFloodComponentInstance.cpp +33 -0
  362. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeFloodComponentInstance.h +49 -0
  363. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeGaussianBlurComponentInstance.cpp +34 -0
  364. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeGaussianBlurComponentInstance.h +48 -0
  365. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeOffsetComponentInstance.cpp +35 -0
  366. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeOffsetComponentInstance.h +46 -0
  367. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFilterComponentInstance.cpp +199 -0
  368. package/harmony/svg/src/main/cpp/componentInstances/RNSVGFilterComponentInstance.h +48 -0
  369. package/harmony/svg/src/main/cpp/componentInstances/RNSVGForeignObjectComponentInstance.cpp +93 -0
  370. package/harmony/svg/src/main/cpp/componentInstances/RNSVGForeignObjectComponentInstance.h +55 -0
  371. package/harmony/svg/src/main/cpp/componentInstances/RNSVGGroupComponentInstance.cpp +32 -0
  372. package/harmony/svg/src/main/cpp/componentInstances/RNSVGGroupComponentInstance.h +31 -0
  373. package/harmony/svg/src/main/cpp/componentInstances/RNSVGImageComponentInstance.cpp +103 -0
  374. package/harmony/svg/src/main/cpp/componentInstances/RNSVGImageComponentInstance.h +43 -0
  375. package/harmony/svg/src/main/cpp/componentInstances/RNSVGLineComponentInstance.cpp +27 -0
  376. package/harmony/svg/src/main/cpp/componentInstances/RNSVGLineComponentInstance.h +27 -0
  377. package/harmony/svg/src/main/cpp/componentInstances/RNSVGLinearGradientComponentInstance.cpp +30 -0
  378. package/harmony/svg/src/main/cpp/componentInstances/RNSVGLinearGradientComponentInstance.h +28 -0
  379. package/harmony/svg/src/main/cpp/componentInstances/RNSVGMarkerComponentInstance.cpp +35 -0
  380. package/harmony/svg/src/main/cpp/componentInstances/RNSVGMarkerComponentInstance.h +27 -0
  381. package/harmony/svg/src/main/cpp/componentInstances/RNSVGMaskComponentInstance.cpp +30 -0
  382. package/harmony/svg/src/main/cpp/componentInstances/RNSVGMaskComponentInstance.h +27 -0
  383. package/harmony/svg/src/main/cpp/componentInstances/RNSVGPathComponentInstance.cpp +33 -0
  384. package/harmony/svg/src/main/cpp/componentInstances/RNSVGPathComponentInstance.h +29 -0
  385. package/harmony/svg/src/main/cpp/componentInstances/RNSVGPatternComponentInstance.cpp +40 -0
  386. package/harmony/svg/src/main/cpp/componentInstances/RNSVGPatternComponentInstance.h +27 -0
  387. package/harmony/svg/src/main/cpp/componentInstances/RNSVGRadialGradientComponentInstance.cpp +32 -0
  388. package/harmony/svg/src/main/cpp/componentInstances/RNSVGRadialGradientComponentInstance.h +28 -0
  389. package/harmony/svg/src/main/cpp/componentInstances/RNSVGRectComponentInstance.cpp +36 -0
  390. package/harmony/svg/src/main/cpp/componentInstances/RNSVGRectComponentInstance.h +27 -0
  391. package/harmony/svg/src/main/cpp/componentInstances/RNSVGSvgViewComponentInstance.cpp +124 -0
  392. package/harmony/svg/src/main/cpp/componentInstances/RNSVGSvgViewComponentInstance.h +56 -0
  393. package/harmony/svg/src/main/cpp/componentInstances/RNSVGSymbolComponentInstance.cpp +30 -0
  394. package/harmony/svg/src/main/cpp/componentInstances/RNSVGSymbolComponentInstance.h +27 -0
  395. package/harmony/svg/src/main/cpp/componentInstances/RNSVGTSpanComponentInstance.cpp +27 -0
  396. package/harmony/svg/src/main/cpp/componentInstances/RNSVGTSpanComponentInstance.h +27 -0
  397. package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextComponentInstance.cpp +25 -0
  398. package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextComponentInstance.h +27 -0
  399. package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextPathComponentInstance.cpp +32 -0
  400. package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextPathComponentInstance.h +27 -0
  401. package/harmony/svg/src/main/cpp/componentInstances/RNSVGUseComponentInstance.cpp +32 -0
  402. package/harmony/svg/src/main/cpp/componentInstances/RNSVGUseComponentInstance.h +32 -0
  403. package/harmony/svg/src/main/cpp/downloadUtils/HttpTaskProcessor.cpp +266 -0
  404. package/harmony/svg/src/main/cpp/downloadUtils/HttpTaskProcessor.h +88 -0
  405. package/harmony/svg/src/main/cpp/downloadUtils/ImageSourceResolver.cpp +134 -0
  406. package/harmony/svg/src/main/cpp/downloadUtils/ImageSourceResolver.h +93 -0
  407. package/harmony/svg/src/main/cpp/downloadUtils/LRUCache.h +98 -0
  408. package/harmony/svg/src/main/cpp/drawing/Brush.cpp +50 -0
  409. package/harmony/svg/src/main/cpp/drawing/Brush.h +52 -0
  410. package/harmony/svg/src/main/cpp/drawing/GlyPathBag.cpp +20 -0
  411. package/harmony/svg/src/main/cpp/drawing/GlyPathBag.h +31 -0
  412. package/harmony/svg/src/main/cpp/drawing/Matrix.cpp +100 -0
  413. package/harmony/svg/src/main/cpp/drawing/Matrix.h +68 -0
  414. package/harmony/svg/src/main/cpp/drawing/Path.cpp +173 -0
  415. package/harmony/svg/src/main/cpp/drawing/Path.h +127 -0
  416. package/harmony/svg/src/main/cpp/drawing/Pen.cpp +57 -0
  417. package/harmony/svg/src/main/cpp/drawing/Pen.h +59 -0
  418. package/harmony/svg/src/main/cpp/drawing/Rect.cpp +47 -0
  419. package/harmony/svg/src/main/cpp/drawing/Rect.h +56 -0
  420. package/harmony/svg/src/main/cpp/drawing/RoundRect.cpp +24 -0
  421. package/harmony/svg/src/main/cpp/drawing/RoundRect.h +39 -0
  422. package/harmony/svg/src/main/cpp/drawing/ShaderEffect.cpp +37 -0
  423. package/harmony/svg/src/main/cpp/drawing/ShaderEffect.h +51 -0
  424. package/harmony/svg/src/main/cpp/drawing/TextStyle.cpp +49 -0
  425. package/harmony/svg/src/main/cpp/drawing/TextStyle.h +41 -0
  426. package/harmony/svg/src/main/cpp/drawing/Typography.cpp +9 -0
  427. package/harmony/svg/src/main/cpp/drawing/Typography.h +25 -0
  428. package/harmony/svg/src/main/cpp/drawing/TypographyStyle.cpp +31 -0
  429. package/harmony/svg/src/main/cpp/drawing/TypographyStyle.h +41 -0
  430. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGCircleJSIBinder.h +54 -0
  431. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGClipPathJSIBinder.h +54 -0
  432. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGDefsJSIBinder.h +38 -0
  433. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGEllipseJSIBinder.h +55 -0
  434. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeBlendJSIBinder.h +26 -0
  435. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeColorMatrixJSIBinder.h +26 -0
  436. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeCompositeJSIBinder.h +30 -0
  437. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeFloodJSIBinder.h +26 -0
  438. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeGaussianBlurJSIBinder.h +27 -0
  439. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeOffsetJSIBinder.h +26 -0
  440. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFilterJSIBinder.h +44 -0
  441. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGForeignObjectJSIBinder.h +57 -0
  442. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGGroupJSIBinder.h +54 -0
  443. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGImageJSIBinder.h +58 -0
  444. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGLineJSIBinder.h +55 -0
  445. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGLinearGradientJSIBinder.h +45 -0
  446. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGMarkerJSIBinder.h +66 -0
  447. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGMaskJSIBinder.h +60 -0
  448. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGPathJSIBinder.h +52 -0
  449. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGPatternJSIBinder.h +67 -0
  450. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGRadialGradientJSIBinder.h +47 -0
  451. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGRectJSIBinder.h +57 -0
  452. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGSvgViewAndroidJSIBinder.h +67 -0
  453. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGSvgViewJSIBinder.h +36 -0
  454. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGSymbolJSIBinder.h +60 -0
  455. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGTSpanJSIBinder.h +66 -0
  456. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGTextJSIBinder.h +65 -0
  457. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGTextPathJSIBinder.h +71 -0
  458. package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGUseJSIBinder.h +56 -0
  459. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/ComponentDescriptors.h +48 -0
  460. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/EventEmitters.cpp +20 -0
  461. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/EventEmitters.h +253 -0
  462. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/Props.cpp +977 -0
  463. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/Props.h +1280 -0
  464. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/ShadowNodes.cpp +45 -0
  465. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/ShadowNodes.h +331 -0
  466. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/States.cpp +18 -0
  467. package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/States.h +441 -0
  468. package/harmony/svg/src/main/cpp/properties/Color.cpp +458 -0
  469. package/harmony/svg/src/main/cpp/properties/Color.h +144 -0
  470. package/harmony/svg/src/main/cpp/properties/Decoration.cpp +41 -0
  471. package/harmony/svg/src/main/cpp/properties/Decoration.h +483 -0
  472. package/harmony/svg/src/main/cpp/properties/Dimension.cpp +64 -0
  473. package/harmony/svg/src/main/cpp/properties/Dimension.h +257 -0
  474. package/harmony/svg/src/main/cpp/properties/Font.cpp +166 -0
  475. package/harmony/svg/src/main/cpp/properties/Font.h +163 -0
  476. package/harmony/svg/src/main/cpp/properties/Offset.h +119 -0
  477. package/harmony/svg/src/main/cpp/properties/PaintState.h +240 -0
  478. package/harmony/svg/src/main/cpp/properties/Rect.h +423 -0
  479. package/harmony/svg/src/main/cpp/properties/Size.h +246 -0
  480. package/harmony/svg/src/main/cpp/properties/SvgPaintState.h +452 -0
  481. package/harmony/svg/src/main/cpp/properties/TextProperties.cpp +91 -0
  482. package/harmony/svg/src/main/cpp/properties/TextProperties.h +56 -0
  483. package/harmony/svg/src/main/cpp/properties/ViewBox.h +108 -0
  484. package/harmony/svg/src/main/cpp/svgImage/RNSVGImageComponentDescriptor.h +41 -0
  485. package/harmony/svg/src/main/cpp/svgImage/RNSVGImageShadowNode.cpp +62 -0
  486. package/harmony/svg/src/main/cpp/svgImage/RNSVGImageShadowNode.h +63 -0
  487. package/harmony/svg/src/main/cpp/svgImage/RNSVGImageState.cpp +17 -0
  488. package/harmony/svg/src/main/cpp/svgImage/RNSVGImageState.h +58 -0
  489. package/harmony/svg/src/main/cpp/turboModules/RNSVGImageModule.cpp +83 -0
  490. package/harmony/svg/src/main/cpp/turboModules/RNSVGImageModule.h +32 -0
  491. package/harmony/svg/src/main/cpp/turboModules/RNSVGRenderableModule.cpp +101 -0
  492. package/harmony/svg/src/main/cpp/turboModules/RNSVGRenderableModule.h +32 -0
  493. package/harmony/svg/src/main/cpp/turboModules/RNSVGSvgViewModule.cpp +71 -0
  494. package/harmony/svg/src/main/cpp/turboModules/RNSVGSvgViewModule.h +32 -0
  495. package/harmony/svg/src/main/cpp/utils/DynamicUtils.h +55 -0
  496. package/harmony/svg/src/main/cpp/utils/FilterManager.h +190 -0
  497. package/harmony/svg/src/main/cpp/utils/GlyphContext.cpp +221 -0
  498. package/harmony/svg/src/main/cpp/utils/GlyphContext.h +106 -0
  499. package/harmony/svg/src/main/cpp/utils/LinearMap.h +69 -0
  500. package/harmony/svg/src/main/cpp/utils/PathParserUtils.cpp +591 -0
  501. package/harmony/svg/src/main/cpp/utils/PathParserUtils.h +93 -0
  502. package/harmony/svg/src/main/cpp/utils/StringUtils.cpp +134 -0
  503. package/harmony/svg/src/main/cpp/utils/StringUtils.h +644 -0
  504. package/harmony/svg/src/main/cpp/utils/SvgAttributesParser.cpp +239 -0
  505. package/harmony/svg/src/main/cpp/utils/SvgAttributesParser.h +277 -0
  506. package/harmony/svg/src/main/cpp/utils/SvgMarkerPositionUtils.h +200 -0
  507. package/harmony/svg/src/main/cpp/utils/SvgUtils.h +176 -0
  508. package/harmony/svg/src/main/cpp/utils/TextPathHelper.cpp +94 -0
  509. package/harmony/svg/src/main/cpp/utils/TextPathHelper.h +61 -0
  510. package/harmony/svg/src/main/ets/RNSVGImageModule.ts +21 -0
  511. package/harmony/svg/src/main/ets/RNSVGRenderableModule.ts +16 -0
  512. package/harmony/svg/src/main/ets/RNSVGSvgViewModule.ts +18 -0
  513. package/harmony/svg/src/main/ets/SvgPackage.ts +58 -0
  514. package/harmony/svg/src/main/module.json5 +7 -0
  515. package/harmony/svg/src/main/resources/base/element/string.json +8 -0
  516. package/harmony/svg/src/main/resources/en_US/element/string.json +8 -0
  517. package/harmony/svg/src/main/resources/zh_CN/element/string.json +8 -0
  518. package/harmony/svg/ts.ts +8 -0
  519. package/harmony/svg.har +0 -0
  520. package/lib/typescript/babel.config.d.ts +8 -0
  521. package/lib/typescript/babel.config.d.ts.map +1 -0
  522. package/lib/typescript/example/babel.config.d.ts +3 -0
  523. package/lib/typescript/example/babel.config.d.ts.map +1 -0
  524. package/lib/typescript/example/contexts.d.ts +3 -0
  525. package/lib/typescript/example/contexts.d.ts.map +1 -0
  526. package/lib/typescript/example/harmony/entry/hvigorfile.d.ts +2 -0
  527. package/lib/typescript/example/harmony/entry/hvigorfile.d.ts.map +1 -0
  528. package/lib/typescript/example/harmony/hvigorfile.d.ts +2 -0
  529. package/lib/typescript/example/harmony/hvigorfile.d.ts.map +1 -0
  530. package/lib/typescript/example/index.d.ts +2 -0
  531. package/lib/typescript/example/index.d.ts.map +1 -0
  532. package/lib/typescript/example/jest.config.d.ts +3 -0
  533. package/lib/typescript/example/jest.config.d.ts.map +1 -0
  534. package/lib/typescript/example/metro.config.d.ts +3 -0
  535. package/lib/typescript/example/metro.config.d.ts.map +1 -0
  536. package/lib/typescript/example/react-native.config.d.ts +3 -0
  537. package/lib/typescript/example/react-native.config.d.ts.map +1 -0
  538. package/lib/typescript/example/scripts/create-build-profile.d.ts +2 -0
  539. package/lib/typescript/example/scripts/create-build-profile.d.ts.map +1 -0
  540. package/lib/typescript/example/src/index.d.ts +3 -0
  541. package/lib/typescript/example/src/index.d.ts.map +1 -0
  542. package/lib/typescript/src/css/index.d.ts.map +1 -0
  543. package/lib/typescript/src/index.d.ts.map +1 -0
  544. package/package.json +10 -15
  545. package/lib/typescript/css/index.d.ts.map +0 -1
  546. package/lib/typescript/index.d.ts.map +0 -1
  547. /package/lib/typescript/{css → src/css}/index.d.ts +0 -0
  548. /package/lib/typescript/{index.d.ts → src/index.d.ts} +0 -0
@@ -0,0 +1,977 @@
1
+
2
+ /**
3
+ * This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
4
+ *
5
+ * Do not edit this file as changes may cause incorrect behavior and will be lost
6
+ * once the code is regenerated.
7
+ *
8
+ * @generated by codegen project: GeneratePropsCpp.js
9
+ */
10
+
11
+ #include "Props.h"
12
+ #include <folly/dynamic.h>
13
+ #include <react/renderer/components/image/conversions.h>
14
+ #include <react/renderer/core/PropsParserContext.h>
15
+ #include <react/renderer/core/propsConversions.h>
16
+
17
+ namespace facebook::react {
18
+
19
+ RNSVGSvgViewAndroidProps::RNSVGSvgViewAndroidProps(
20
+ const PropsParserContext &context,
21
+ const RNSVGSvgViewAndroidProps &sourceProps,
22
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
23
+
24
+ bbWidth(convertRawProp(context, rawProps, "bbWidth", sourceProps.bbWidth, {})),
25
+ bbHeight(convertRawProp(context, rawProps, "bbHeight", sourceProps.bbHeight, {})),
26
+ minX(convertRawProp(context, rawProps, "minX", sourceProps.minX, {0.0})),
27
+ minY(convertRawProp(context, rawProps, "minY", sourceProps.minY, {0.0})),
28
+ vbWidth(convertRawProp(context, rawProps, "vbWidth", sourceProps.vbWidth, {0.0})),
29
+ vbHeight(convertRawProp(context, rawProps, "vbHeight", sourceProps.vbHeight, {0.0})),
30
+ align(convertRawProp(context, rawProps, "align", sourceProps.align, {})),
31
+ meetOrSlice(convertRawProp(context, rawProps, "meetOrSlice", sourceProps.meetOrSlice, {0})),
32
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
33
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
34
+ hasTVPreferredFocus(convertRawProp(context, rawProps, "hasTVPreferredFocus", sourceProps.hasTVPreferredFocus, {false})),
35
+ borderBottomColor(convertRawProp(context, rawProps, "borderBottomColor", sourceProps.borderBottomColor, {})),
36
+ nextFocusDown(convertRawProp(context, rawProps, "nextFocusDown", sourceProps.nextFocusDown, {0})),
37
+ borderRightColor(convertRawProp(context, rawProps, "borderRightColor", sourceProps.borderRightColor, {})),
38
+ nextFocusRight(convertRawProp(context, rawProps, "nextFocusRight", sourceProps.nextFocusRight, {0})),
39
+ borderLeftColor(convertRawProp(context, rawProps, "borderLeftColor", sourceProps.borderLeftColor, {})),
40
+ borderColor(convertRawProp(context, rawProps, "borderColor", sourceProps.borderColor, {})),
41
+ removeClippedSubviews(convertRawProp(context, rawProps, "removeClippedSubviews", sourceProps.removeClippedSubviews, {false})),
42
+ nextFocusForward(convertRawProp(context, rawProps, "nextFocusForward", sourceProps.nextFocusForward, {0})),
43
+ nextFocusUp(convertRawProp(context, rawProps, "nextFocusUp", sourceProps.nextFocusUp, {0})),
44
+ accessible(convertRawProp(context, rawProps, "accessible", sourceProps.accessible, {false})),
45
+ borderStartColor(convertRawProp(context, rawProps, "borderStartColor", sourceProps.borderStartColor, {})),
46
+ borderEndColor(convertRawProp(context, rawProps, "borderEndColor", sourceProps.borderEndColor, {})),
47
+ focusable(convertRawProp(context, rawProps, "focusable", sourceProps.focusable, {false})),
48
+ nativeBackgroundAndroid(convertRawProp(context, rawProps, "nativeBackgroundAndroid", sourceProps.nativeBackgroundAndroid, {})),
49
+ nativeForegroundAndroid(convertRawProp(context, rawProps, "nativeForegroundAndroid", sourceProps.nativeForegroundAndroid, {})),
50
+ backfaceVisibility(convertRawProp(context, rawProps, "backfaceVisibility", sourceProps.backfaceVisibility, {})),
51
+ borderStyle(convertRawProp(context, rawProps, "borderStyle", sourceProps.borderStyle, {})),
52
+ needsOffscreenAlphaCompositing(convertRawProp(context, rawProps, "needsOffscreenAlphaCompositing", sourceProps.needsOffscreenAlphaCompositing, {false})),
53
+ hitSlop(convertRawProp(context, rawProps, "hitSlop", sourceProps.hitSlop, {})),
54
+ borderTopColor(convertRawProp(context, rawProps, "borderTopColor", sourceProps.borderTopColor, {})),
55
+ nextFocusLeft(convertRawProp(context, rawProps, "nextFocusLeft", sourceProps.nextFocusLeft, {0})),
56
+ borderBlockColor(convertRawProp(context, rawProps, "borderBlockColor", sourceProps.borderBlockColor, {})),
57
+ borderBlockEndColor(convertRawProp(context, rawProps, "borderBlockEndColor", sourceProps.borderBlockEndColor, {})),
58
+ borderBlockStartColor(convertRawProp(context, rawProps, "borderBlockStartColor", sourceProps.borderBlockStartColor, {})),
59
+ borderRadius(convertRawProp(context, rawProps, "borderRadius", sourceProps.borderRadius, {})),
60
+ borderTopLeftRadius(convertRawProp(context, rawProps, "borderTopLeftRadius", sourceProps.borderTopLeftRadius, {})),
61
+ borderTopRightRadius(convertRawProp(context, rawProps, "borderTopRightRadius", sourceProps.borderTopRightRadius, {})),
62
+ borderBottomRightRadius(convertRawProp(context, rawProps, "borderBottomRightRadius", sourceProps.borderBottomRightRadius, {})),
63
+ borderBottomLeftRadius(convertRawProp(context, rawProps, "borderBottomLeftRadius", sourceProps.borderBottomLeftRadius, {})),
64
+ borderTopStartRadius(convertRawProp(context, rawProps, "borderTopStartRadius", sourceProps.borderTopStartRadius, {})),
65
+ borderTopEndRadius(convertRawProp(context, rawProps, "borderTopEndRadius", sourceProps.borderTopEndRadius, {})),
66
+ borderBottomStartRadius(convertRawProp(context, rawProps, "borderBottomStartRadius", sourceProps.borderBottomStartRadius, {})),
67
+ borderBottomEndRadius(convertRawProp(context, rawProps, "borderBottomEndRadius", sourceProps.borderBottomEndRadius, {})),
68
+ borderEndEndRadius(convertRawProp(context, rawProps, "borderEndEndRadius", sourceProps.borderEndEndRadius, {})),
69
+ borderEndStartRadius(convertRawProp(context, rawProps, "borderEndStartRadius", sourceProps.borderEndStartRadius, {})),
70
+ borderStartEndRadius(convertRawProp(context, rawProps, "borderStartEndRadius", sourceProps.borderStartEndRadius, {})),
71
+ borderStartStartRadius(convertRawProp(context, rawProps, "borderStartStartRadius", sourceProps.borderStartStartRadius, {}))
72
+ {}
73
+ RNSVGCircleProps::RNSVGCircleProps(
74
+ const PropsParserContext &context,
75
+ const RNSVGCircleProps &sourceProps,
76
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
77
+
78
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
79
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
80
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
81
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
82
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
83
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
84
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
85
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
86
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
87
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
88
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
89
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
90
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
91
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
92
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
93
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
94
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
95
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
96
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
97
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
98
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
99
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
100
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
101
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
102
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
103
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
104
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
105
+ cx(convertRawProp(context, rawProps, "cx", sourceProps.cx, {})),
106
+ cy(convertRawProp(context, rawProps, "cy", sourceProps.cy, {})),
107
+ r(convertRawProp(context, rawProps, "r", sourceProps.r, {}))
108
+ {}
109
+ RNSVGClipPathProps::RNSVGClipPathProps(
110
+ const PropsParserContext &context,
111
+ const RNSVGClipPathProps &sourceProps,
112
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
113
+
114
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
115
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
116
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
117
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
118
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
119
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
120
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
121
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
122
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
123
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
124
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
125
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
126
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
127
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
128
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
129
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
130
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
131
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
132
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
133
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
134
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
135
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
136
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
137
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
138
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
139
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
140
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
141
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
142
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
143
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {}))
144
+ {}
145
+ RNSVGDefsProps::RNSVGDefsProps(
146
+ const PropsParserContext &context,
147
+ const RNSVGDefsProps &sourceProps,
148
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
149
+
150
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
151
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
152
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
153
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
154
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
155
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
156
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
157
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
158
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
159
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
160
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
161
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {}))
162
+ {}
163
+ RNSVGEllipseProps::RNSVGEllipseProps(
164
+ const PropsParserContext &context,
165
+ const RNSVGEllipseProps &sourceProps,
166
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
167
+
168
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
169
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
170
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
171
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
172
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
173
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
174
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
175
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
176
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
177
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
178
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
179
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
180
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
181
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
182
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
183
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
184
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
185
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
186
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
187
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
188
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
189
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
190
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
191
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
192
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
193
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
194
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
195
+ cx(convertRawProp(context, rawProps, "cx", sourceProps.cx, {})),
196
+ cy(convertRawProp(context, rawProps, "cy", sourceProps.cy, {})),
197
+ rx(convertRawProp(context, rawProps, "rx", sourceProps.rx, {})),
198
+ ry(convertRawProp(context, rawProps, "ry", sourceProps.ry, {}))
199
+ {}
200
+ RNSVGFeBlendProps::RNSVGFeBlendProps(
201
+ const PropsParserContext &context,
202
+ const RNSVGFeBlendProps &sourceProps,
203
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
204
+
205
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
206
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
207
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
208
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
209
+ result(convertRawProp(context, rawProps, "result", sourceProps.result, {})),
210
+ in1(convertRawProp(context, rawProps, "in1", sourceProps.in1, {})),
211
+ in2(convertRawProp(context, rawProps, "in2", sourceProps.in2, {})),
212
+ mode(convertRawProp(context, rawProps, "mode", sourceProps.mode, {RNSVGFeBlendMode::Normal}))
213
+ {}
214
+ RNSVGFeColorMatrixProps::RNSVGFeColorMatrixProps(
215
+ const PropsParserContext &context,
216
+ const RNSVGFeColorMatrixProps &sourceProps,
217
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
218
+
219
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
220
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
221
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
222
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
223
+ result(convertRawProp(context, rawProps, "result", sourceProps.result, {})),
224
+ in1(convertRawProp(context, rawProps, "in1", sourceProps.in1, {})),
225
+ type(convertRawProp(context, rawProps, "type", sourceProps.type, {RNSVGFeColorMatrixType::Matrix})),
226
+ values(convertRawProp(context, rawProps, "values", sourceProps.values, {}))
227
+ {}
228
+ RNSVGFeCompositeProps::RNSVGFeCompositeProps(
229
+ const PropsParserContext &context,
230
+ const RNSVGFeCompositeProps &sourceProps,
231
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
232
+
233
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
234
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
235
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
236
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
237
+ result(convertRawProp(context, rawProps, "result", sourceProps.result, {})),
238
+ in1(convertRawProp(context, rawProps, "in1", sourceProps.in1, {})),
239
+ in2(convertRawProp(context, rawProps, "in2", sourceProps.in2, {})),
240
+ operator1(convertRawProp(context, rawProps, "operator1", sourceProps.operator1, {RNSVGFeCompositeOperator1::Over})),
241
+ k1(convertRawProp(context, rawProps, "k1", sourceProps.k1, {0.0})),
242
+ k2(convertRawProp(context, rawProps, "k2", sourceProps.k2, {0.0})),
243
+ k3(convertRawProp(context, rawProps, "k3", sourceProps.k3, {0.0})),
244
+ k4(convertRawProp(context, rawProps, "k4", sourceProps.k4, {0.0}))
245
+ {}
246
+ RNSVGFeFloodProps::RNSVGFeFloodProps(
247
+ const PropsParserContext &context,
248
+ const RNSVGFeFloodProps &sourceProps,
249
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
250
+
251
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
252
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
253
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
254
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
255
+ result(convertRawProp(context, rawProps, "result", sourceProps.result, {})),
256
+ floodColor(convertRawProp(context, rawProps, "floodColor", sourceProps.floodColor, {})),
257
+ floodOpacity(convertRawProp(context, rawProps, "floodOpacity", sourceProps.floodOpacity, {1.0}))
258
+ {}
259
+ RNSVGFeGaussianBlurProps::RNSVGFeGaussianBlurProps(
260
+ const PropsParserContext &context,
261
+ const RNSVGFeGaussianBlurProps &sourceProps,
262
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
263
+
264
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
265
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
266
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
267
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
268
+ result(convertRawProp(context, rawProps, "result", sourceProps.result, {})),
269
+ in1(convertRawProp(context, rawProps, "in1", sourceProps.in1, {})),
270
+ stdDeviationX(convertRawProp(context, rawProps, "stdDeviationX", sourceProps.stdDeviationX, {0.0})),
271
+ stdDeviationY(convertRawProp(context, rawProps, "stdDeviationY", sourceProps.stdDeviationY, {0.0})),
272
+ edgeMode(convertRawProp(context, rawProps, "edgeMode", sourceProps.edgeMode, {RNSVGFeGaussianBlurEdgeMode::None}))
273
+ {}
274
+ RNSVGFeMergeProps::RNSVGFeMergeProps(
275
+ const PropsParserContext &context,
276
+ const RNSVGFeMergeProps &sourceProps,
277
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
278
+
279
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
280
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
281
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
282
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
283
+ result(convertRawProp(context, rawProps, "result", sourceProps.result, {})),
284
+ nodes(convertRawProp(context, rawProps, "nodes", sourceProps.nodes, {}))
285
+ {}
286
+ RNSVGFeOffsetProps::RNSVGFeOffsetProps(
287
+ const PropsParserContext &context,
288
+ const RNSVGFeOffsetProps &sourceProps,
289
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
290
+
291
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
292
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
293
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
294
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
295
+ result(convertRawProp(context, rawProps, "result", sourceProps.result, {})),
296
+ in1(convertRawProp(context, rawProps, "in1", sourceProps.in1, {})),
297
+ dx(convertRawProp(context, rawProps, "dx", sourceProps.dx, {})),
298
+ dy(convertRawProp(context, rawProps, "dy", sourceProps.dy, {}))
299
+ {}
300
+ RNSVGFilterProps::RNSVGFilterProps(
301
+ const PropsParserContext &context,
302
+ const RNSVGFilterProps &sourceProps,
303
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
304
+
305
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
306
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
307
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
308
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
309
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
310
+ filterUnits(convertRawProp(context, rawProps, "filterUnits", sourceProps.filterUnits, {RNSVGFilterFilterUnits::ObjectBoundingBox})),
311
+ primitiveUnits(convertRawProp(context, rawProps, "primitiveUnits", sourceProps.primitiveUnits, {RNSVGFilterPrimitiveUnits::UserSpaceOnUse}))
312
+ {}
313
+ RNSVGForeignObjectProps::RNSVGForeignObjectProps(
314
+ const PropsParserContext &context,
315
+ const RNSVGForeignObjectProps &sourceProps,
316
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
317
+
318
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
319
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
320
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
321
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
322
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
323
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
324
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
325
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
326
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
327
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
328
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
329
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
330
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
331
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
332
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
333
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
334
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
335
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
336
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
337
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
338
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
339
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
340
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
341
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
342
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
343
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
344
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
345
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
346
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
347
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
348
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
349
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
350
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
351
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {}))
352
+ {}
353
+ RNSVGGroupProps::RNSVGGroupProps(
354
+ const PropsParserContext &context,
355
+ const RNSVGGroupProps &sourceProps,
356
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
357
+
358
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
359
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
360
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
361
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
362
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
363
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
364
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
365
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
366
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
367
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
368
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
369
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
370
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
371
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
372
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
373
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
374
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
375
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
376
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
377
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
378
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
379
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
380
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
381
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
382
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
383
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
384
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
385
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
386
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
387
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {}))
388
+ {}
389
+ RNSVGSvgViewProps::RNSVGSvgViewProps(
390
+ const PropsParserContext &context,
391
+ const RNSVGSvgViewProps &sourceProps,
392
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
393
+
394
+ bbWidth(convertRawProp(context, rawProps, "bbWidth", sourceProps.bbWidth, {})),
395
+ bbHeight(convertRawProp(context, rawProps, "bbHeight", sourceProps.bbHeight, {})),
396
+ minX(convertRawProp(context, rawProps, "minX", sourceProps.minX, {0.0})),
397
+ minY(convertRawProp(context, rawProps, "minY", sourceProps.minY, {0.0})),
398
+ vbWidth(convertRawProp(context, rawProps, "vbWidth", sourceProps.vbWidth, {0.0})),
399
+ vbHeight(convertRawProp(context, rawProps, "vbHeight", sourceProps.vbHeight, {0.0})),
400
+ align(convertRawProp(context, rawProps, "align", sourceProps.align, {})),
401
+ meetOrSlice(convertRawProp(context, rawProps, "meetOrSlice", sourceProps.meetOrSlice, {0})),
402
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
403
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
404
+ hitSlop(convertRawProp(context, rawProps, "hitSlop", sourceProps.hitSlop, {}))
405
+ {}
406
+ RNSVGImageProps::RNSVGImageProps(
407
+ const PropsParserContext &context,
408
+ const RNSVGImageProps &sourceProps,
409
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
410
+
411
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
412
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
413
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
414
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
415
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
416
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
417
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
418
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
419
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
420
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
421
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
422
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
423
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
424
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
425
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
426
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
427
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
428
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
429
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
430
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
431
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
432
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
433
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
434
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
435
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
436
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
437
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
438
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
439
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
440
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
441
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
442
+ src(convertRawProp(context, rawProps, "src", sourceProps.src, {})),
443
+ align(convertRawProp(context, rawProps, "align", sourceProps.align, {})),
444
+ meetOrSlice(convertRawProp(context, rawProps, "meetOrSlice", sourceProps.meetOrSlice, {0}))
445
+ {}
446
+ RNSVGLineProps::RNSVGLineProps(
447
+ const PropsParserContext &context,
448
+ const RNSVGLineProps &sourceProps,
449
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
450
+
451
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
452
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
453
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
454
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
455
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
456
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
457
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
458
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
459
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
460
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
461
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
462
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
463
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
464
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
465
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
466
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
467
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
468
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
469
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
470
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
471
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
472
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
473
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
474
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
475
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
476
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
477
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
478
+ x1(convertRawProp(context, rawProps, "x1", sourceProps.x1, {})),
479
+ y1(convertRawProp(context, rawProps, "y1", sourceProps.y1, {})),
480
+ x2(convertRawProp(context, rawProps, "x2", sourceProps.x2, {})),
481
+ y2(convertRawProp(context, rawProps, "y2", sourceProps.y2, {}))
482
+ {}
483
+ RNSVGLinearGradientProps::RNSVGLinearGradientProps(
484
+ const PropsParserContext &context,
485
+ const RNSVGLinearGradientProps &sourceProps,
486
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
487
+
488
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
489
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
490
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
491
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
492
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
493
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
494
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
495
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
496
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
497
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
498
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
499
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
500
+ x1(convertRawProp(context, rawProps, "x1", sourceProps.x1, {})),
501
+ y1(convertRawProp(context, rawProps, "y1", sourceProps.y1, {})),
502
+ x2(convertRawProp(context, rawProps, "x2", sourceProps.x2, {})),
503
+ y2(convertRawProp(context, rawProps, "y2", sourceProps.y2, {})),
504
+ gradient(convertRawProp(context, rawProps, "gradient", sourceProps.gradient, {})),
505
+ gradientUnits(convertRawProp(context, rawProps, "gradientUnits", sourceProps.gradientUnits, {0})),
506
+ gradientTransform(convertRawProp(context, rawProps, "gradientTransform", sourceProps.gradientTransform, {}))
507
+ {}
508
+ RNSVGMarkerProps::RNSVGMarkerProps(
509
+ const PropsParserContext &context,
510
+ const RNSVGMarkerProps &sourceProps,
511
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
512
+
513
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
514
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
515
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
516
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
517
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
518
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
519
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
520
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
521
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
522
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
523
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
524
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
525
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
526
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
527
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
528
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
529
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
530
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
531
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
532
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
533
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
534
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
535
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
536
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
537
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
538
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
539
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
540
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
541
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
542
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
543
+ refX(convertRawProp(context, rawProps, "refX", sourceProps.refX, {})),
544
+ refY(convertRawProp(context, rawProps, "refY", sourceProps.refY, {})),
545
+ markerHeight(convertRawProp(context, rawProps, "markerHeight", sourceProps.markerHeight, {})),
546
+ markerWidth(convertRawProp(context, rawProps, "markerWidth", sourceProps.markerWidth, {})),
547
+ markerUnits(convertRawProp(context, rawProps, "markerUnits", sourceProps.markerUnits, {})),
548
+ orient(convertRawProp(context, rawProps, "orient", sourceProps.orient, {})),
549
+ minX(convertRawProp(context, rawProps, "minX", sourceProps.minX, {0.0})),
550
+ minY(convertRawProp(context, rawProps, "minY", sourceProps.minY, {0.0})),
551
+ vbWidth(convertRawProp(context, rawProps, "vbWidth", sourceProps.vbWidth, {0.0})),
552
+ vbHeight(convertRawProp(context, rawProps, "vbHeight", sourceProps.vbHeight, {0.0})),
553
+ align(convertRawProp(context, rawProps, "align", sourceProps.align, {})),
554
+ meetOrSlice(convertRawProp(context, rawProps, "meetOrSlice", sourceProps.meetOrSlice, {0}))
555
+ {}
556
+ RNSVGMaskProps::RNSVGMaskProps(
557
+ const PropsParserContext &context,
558
+ const RNSVGMaskProps &sourceProps,
559
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
560
+
561
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
562
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
563
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
564
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
565
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
566
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
567
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
568
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
569
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
570
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
571
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
572
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
573
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
574
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
575
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
576
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
577
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
578
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
579
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
580
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
581
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
582
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
583
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
584
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
585
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
586
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
587
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
588
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
589
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
590
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
591
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
592
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
593
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
594
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
595
+ maskUnits(convertRawProp(context, rawProps, "maskUnits", sourceProps.maskUnits, {0})),
596
+ maskContentUnits(convertRawProp(context, rawProps, "maskContentUnits", sourceProps.maskContentUnits, {0})),
597
+ maskType(convertRawProp(context, rawProps, "maskType", sourceProps.maskType, {0}))
598
+ {}
599
+ RNSVGPathProps::RNSVGPathProps(
600
+ const PropsParserContext &context,
601
+ const RNSVGPathProps &sourceProps,
602
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
603
+
604
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
605
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
606
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
607
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
608
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
609
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
610
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
611
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
612
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
613
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
614
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
615
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
616
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
617
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
618
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
619
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
620
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
621
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
622
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
623
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
624
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
625
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
626
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
627
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
628
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
629
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
630
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
631
+ d(convertRawProp(context, rawProps, "d", sourceProps.d, {}))
632
+ {}
633
+ RNSVGPatternProps::RNSVGPatternProps(
634
+ const PropsParserContext &context,
635
+ const RNSVGPatternProps &sourceProps,
636
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
637
+
638
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
639
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
640
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
641
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
642
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
643
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
644
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
645
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
646
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
647
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
648
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
649
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
650
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
651
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
652
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
653
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
654
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
655
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
656
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
657
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
658
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
659
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
660
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
661
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
662
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
663
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
664
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
665
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
666
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
667
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
668
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
669
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
670
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
671
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
672
+ patternUnits(convertRawProp(context, rawProps, "patternUnits", sourceProps.patternUnits, {0})),
673
+ patternContentUnits(convertRawProp(context, rawProps, "patternContentUnits", sourceProps.patternContentUnits, {0})),
674
+ patternTransform(convertRawProp(context, rawProps, "patternTransform", sourceProps.patternTransform, {})),
675
+ minX(convertRawProp(context, rawProps, "minX", sourceProps.minX, {0.0})),
676
+ minY(convertRawProp(context, rawProps, "minY", sourceProps.minY, {0.0})),
677
+ vbWidth(convertRawProp(context, rawProps, "vbWidth", sourceProps.vbWidth, {0.0})),
678
+ vbHeight(convertRawProp(context, rawProps, "vbHeight", sourceProps.vbHeight, {0.0})),
679
+ align(convertRawProp(context, rawProps, "align", sourceProps.align, {})),
680
+ meetOrSlice(convertRawProp(context, rawProps, "meetOrSlice", sourceProps.meetOrSlice, {0}))
681
+ {}
682
+ RNSVGRadialGradientProps::RNSVGRadialGradientProps(
683
+ const PropsParserContext &context,
684
+ const RNSVGRadialGradientProps &sourceProps,
685
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
686
+
687
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
688
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
689
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
690
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
691
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
692
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
693
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
694
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
695
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
696
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
697
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
698
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
699
+ fx(convertRawProp(context, rawProps, "fx", sourceProps.fx, {})),
700
+ fy(convertRawProp(context, rawProps, "fy", sourceProps.fy, {})),
701
+ cx(convertRawProp(context, rawProps, "cx", sourceProps.cx, {})),
702
+ cy(convertRawProp(context, rawProps, "cy", sourceProps.cy, {})),
703
+ rx(convertRawProp(context, rawProps, "rx", sourceProps.rx, {})),
704
+ ry(convertRawProp(context, rawProps, "ry", sourceProps.ry, {})),
705
+ gradient(convertRawProp(context, rawProps, "gradient", sourceProps.gradient, {})),
706
+ gradientUnits(convertRawProp(context, rawProps, "gradientUnits", sourceProps.gradientUnits, {0})),
707
+ gradientTransform(convertRawProp(context, rawProps, "gradientTransform", sourceProps.gradientTransform, {}))
708
+ {}
709
+ RNSVGRectProps::RNSVGRectProps(
710
+ const PropsParserContext &context,
711
+ const RNSVGRectProps &sourceProps,
712
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
713
+
714
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
715
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
716
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
717
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
718
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
719
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
720
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
721
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
722
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
723
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
724
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
725
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
726
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
727
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
728
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
729
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
730
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
731
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
732
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
733
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
734
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
735
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
736
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
737
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
738
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
739
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
740
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
741
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
742
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
743
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
744
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {})),
745
+ rx(convertRawProp(context, rawProps, "rx", sourceProps.rx, {})),
746
+ ry(convertRawProp(context, rawProps, "ry", sourceProps.ry, {}))
747
+ {}
748
+ RNSVGSymbolProps::RNSVGSymbolProps(
749
+ const PropsParserContext &context,
750
+ const RNSVGSymbolProps &sourceProps,
751
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
752
+
753
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
754
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
755
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
756
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
757
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
758
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
759
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
760
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
761
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
762
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
763
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
764
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
765
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
766
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
767
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
768
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
769
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
770
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
771
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
772
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
773
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
774
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
775
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
776
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
777
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
778
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
779
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
780
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
781
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
782
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
783
+ minX(convertRawProp(context, rawProps, "minX", sourceProps.minX, {0.0})),
784
+ minY(convertRawProp(context, rawProps, "minY", sourceProps.minY, {0.0})),
785
+ vbWidth(convertRawProp(context, rawProps, "vbWidth", sourceProps.vbWidth, {0.0})),
786
+ vbHeight(convertRawProp(context, rawProps, "vbHeight", sourceProps.vbHeight, {0.0})),
787
+ align(convertRawProp(context, rawProps, "align", sourceProps.align, {})),
788
+ meetOrSlice(convertRawProp(context, rawProps, "meetOrSlice", sourceProps.meetOrSlice, {0}))
789
+ {}
790
+ RNSVGTSpanProps::RNSVGTSpanProps(
791
+ const PropsParserContext &context,
792
+ const RNSVGTSpanProps &sourceProps,
793
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
794
+
795
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
796
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
797
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
798
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
799
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
800
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
801
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
802
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
803
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
804
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
805
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
806
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
807
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
808
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
809
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
810
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
811
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
812
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
813
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
814
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
815
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
816
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
817
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
818
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
819
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
820
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
821
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
822
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
823
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
824
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
825
+ dx(convertRawProp(context, rawProps, "dx", sourceProps.dx, {})),
826
+ dy(convertRawProp(context, rawProps, "dy", sourceProps.dy, {})),
827
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
828
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
829
+ rotate(convertRawProp(context, rawProps, "rotate", sourceProps.rotate, {})),
830
+ inlineSize(convertRawProp(context, rawProps, "inlineSize", sourceProps.inlineSize, {})),
831
+ textLength(convertRawProp(context, rawProps, "textLength", sourceProps.textLength, {})),
832
+ baselineShift(convertRawProp(context, rawProps, "baselineShift", sourceProps.baselineShift, {})),
833
+ lengthAdjust(convertRawProp(context, rawProps, "lengthAdjust", sourceProps.lengthAdjust, {})),
834
+ alignmentBaseline(convertRawProp(context, rawProps, "alignmentBaseline", sourceProps.alignmentBaseline, {})),
835
+ verticalAlign(convertRawProp(context, rawProps, "verticalAlign", sourceProps.verticalAlign, {})),
836
+ content(convertRawProp(context, rawProps, "content", sourceProps.content, {}))
837
+ {}
838
+ RNSVGTextProps::RNSVGTextProps(
839
+ const PropsParserContext &context,
840
+ const RNSVGTextProps &sourceProps,
841
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
842
+
843
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
844
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
845
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
846
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
847
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
848
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
849
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
850
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
851
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
852
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
853
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
854
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
855
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
856
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
857
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
858
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
859
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
860
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
861
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
862
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
863
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
864
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
865
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
866
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
867
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
868
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
869
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
870
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
871
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
872
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
873
+ dx(convertRawProp(context, rawProps, "dx", sourceProps.dx, {})),
874
+ dy(convertRawProp(context, rawProps, "dy", sourceProps.dy, {})),
875
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
876
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
877
+ rotate(convertRawProp(context, rawProps, "rotate", sourceProps.rotate, {})),
878
+ inlineSize(convertRawProp(context, rawProps, "inlineSize", sourceProps.inlineSize, {})),
879
+ textLength(convertRawProp(context, rawProps, "textLength", sourceProps.textLength, {})),
880
+ baselineShift(convertRawProp(context, rawProps, "baselineShift", sourceProps.baselineShift, {})),
881
+ lengthAdjust(convertRawProp(context, rawProps, "lengthAdjust", sourceProps.lengthAdjust, {})),
882
+ alignmentBaseline(convertRawProp(context, rawProps, "alignmentBaseline", sourceProps.alignmentBaseline, {})),
883
+ verticalAlign(convertRawProp(context, rawProps, "verticalAlign", sourceProps.verticalAlign, {}))
884
+ {}
885
+ RNSVGTextPathProps::RNSVGTextPathProps(
886
+ const PropsParserContext &context,
887
+ const RNSVGTextPathProps &sourceProps,
888
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
889
+
890
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
891
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
892
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
893
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
894
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
895
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
896
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
897
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
898
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
899
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
900
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
901
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
902
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
903
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
904
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
905
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
906
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
907
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
908
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
909
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
910
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
911
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
912
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
913
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
914
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
915
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
916
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
917
+ fontSize(convertRawProp(context, rawProps, "fontSize", sourceProps.fontSize, {})),
918
+ fontWeight(convertRawProp(context, rawProps, "fontWeight", sourceProps.fontWeight, {})),
919
+ font(convertRawProp(context, rawProps, "font", sourceProps.font, {})),
920
+ dx(convertRawProp(context, rawProps, "dx", sourceProps.dx, {})),
921
+ dy(convertRawProp(context, rawProps, "dy", sourceProps.dy, {})),
922
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
923
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
924
+ rotate(convertRawProp(context, rawProps, "rotate", sourceProps.rotate, {})),
925
+ inlineSize(convertRawProp(context, rawProps, "inlineSize", sourceProps.inlineSize, {})),
926
+ textLength(convertRawProp(context, rawProps, "textLength", sourceProps.textLength, {})),
927
+ baselineShift(convertRawProp(context, rawProps, "baselineShift", sourceProps.baselineShift, {})),
928
+ lengthAdjust(convertRawProp(context, rawProps, "lengthAdjust", sourceProps.lengthAdjust, {})),
929
+ alignmentBaseline(convertRawProp(context, rawProps, "alignmentBaseline", sourceProps.alignmentBaseline, {})),
930
+ verticalAlign(convertRawProp(context, rawProps, "verticalAlign", sourceProps.verticalAlign, {})),
931
+ href(convertRawProp(context, rawProps, "href", sourceProps.href, {})),
932
+ side(convertRawProp(context, rawProps, "side", sourceProps.side, {})),
933
+ method(convertRawProp(context, rawProps, "method", sourceProps.method, {})),
934
+ midLine(convertRawProp(context, rawProps, "midLine", sourceProps.midLine, {})),
935
+ spacing(convertRawProp(context, rawProps, "spacing", sourceProps.spacing, {})),
936
+ startOffset(convertRawProp(context, rawProps, "startOffset", sourceProps.startOffset, {}))
937
+ {}
938
+ RNSVGUseProps::RNSVGUseProps(
939
+ const PropsParserContext &context,
940
+ const RNSVGUseProps &sourceProps,
941
+ const RawProps &rawProps): ViewProps(context, sourceProps, rawProps),
942
+
943
+ name(convertRawProp(context, rawProps, "name", sourceProps.name, {})),
944
+ opacity(convertRawProp(context, rawProps, "opacity", sourceProps.opacity, {1.0})),
945
+ matrix(convertRawProp(context, rawProps, "matrix", sourceProps.matrix, {})),
946
+ mask(convertRawProp(context, rawProps, "mask", sourceProps.mask, {})),
947
+ markerStart(convertRawProp(context, rawProps, "markerStart", sourceProps.markerStart, {})),
948
+ markerMid(convertRawProp(context, rawProps, "markerMid", sourceProps.markerMid, {})),
949
+ markerEnd(convertRawProp(context, rawProps, "markerEnd", sourceProps.markerEnd, {})),
950
+ clipPath(convertRawProp(context, rawProps, "clipPath", sourceProps.clipPath, {})),
951
+ clipRule(convertRawProp(context, rawProps, "clipRule", sourceProps.clipRule, {0})),
952
+ responsible(convertRawProp(context, rawProps, "responsible", sourceProps.responsible, {false})),
953
+ display(convertRawProp(context, rawProps, "display", sourceProps.display, {})),
954
+ pointerEvents(convertRawProp(context, rawProps, "pointerEvents", sourceProps.pointerEvents, {})),
955
+ color(convertRawProp(context, rawProps, "color", sourceProps.color, {})),
956
+ fill(convertRawProp(context, rawProps, "fill", sourceProps.fill, {})),
957
+ fillOpacity(convertRawProp(context, rawProps, "fillOpacity", sourceProps.fillOpacity, {1.0})),
958
+ fillRule(convertRawProp(context, rawProps, "fillRule", sourceProps.fillRule, {1})),
959
+ stroke(convertRawProp(context, rawProps, "stroke", sourceProps.stroke, {})),
960
+ strokeOpacity(convertRawProp(context, rawProps, "strokeOpacity", sourceProps.strokeOpacity, {1.0})),
961
+ strokeWidth(convertRawProp(context, rawProps, "strokeWidth", sourceProps.strokeWidth, {})),
962
+ strokeLinecap(convertRawProp(context, rawProps, "strokeLinecap", sourceProps.strokeLinecap, {0})),
963
+ strokeLinejoin(convertRawProp(context, rawProps, "strokeLinejoin", sourceProps.strokeLinejoin, {0})),
964
+ strokeDasharray(convertRawProp(context, rawProps, "strokeDasharray", sourceProps.strokeDasharray, {})),
965
+ strokeDashoffset(convertRawProp(context, rawProps, "strokeDashoffset", sourceProps.strokeDashoffset, {0.0})),
966
+ strokeMiterlimit(convertRawProp(context, rawProps, "strokeMiterlimit", sourceProps.strokeMiterlimit, {0.0})),
967
+ vectorEffect(convertRawProp(context, rawProps, "vectorEffect", sourceProps.vectorEffect, {0})),
968
+ propList(convertRawProp(context, rawProps, "propList", sourceProps.propList, {})),
969
+ filter(convertRawProp(context, rawProps, "filter", sourceProps.filter, {})),
970
+ href(convertRawProp(context, rawProps, "href", sourceProps.href, {})),
971
+ x(convertRawProp(context, rawProps, "x", sourceProps.x, {})),
972
+ y(convertRawProp(context, rawProps, "y", sourceProps.y, {})),
973
+ height(convertRawProp(context, rawProps, "height", sourceProps.height, {})),
974
+ width(convertRawProp(context, rawProps, "width", sourceProps.width, {}))
975
+ {}
976
+
977
+ } // namespace facebook::react