@react-native-ohos/react-native-svg 15.12.1-rc.1
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.
- package/LICENSE +21 -0
- package/README.OpenSource +11 -0
- package/README.md +13 -0
- package/css/package.json +6 -0
- package/harmony/svg/BuildProfile.ets +17 -0
- package/harmony/svg/build-profile.json5 +9 -0
- package/harmony/svg/hvigorfile.ts +2 -0
- package/harmony/svg/index.ets +7 -0
- package/harmony/svg/oh-package.json5 +13 -0
- package/harmony/svg/src/main/cpp/Attribute.h +52 -0
- package/harmony/svg/src/main/cpp/CMakeLists.txt +32 -0
- package/harmony/svg/src/main/cpp/FallbackProps.h +0 -0
- package/harmony/svg/src/main/cpp/FontHolderBase.cpp +22 -0
- package/harmony/svg/src/main/cpp/FontHolderBase.h +54 -0
- package/harmony/svg/src/main/cpp/SVGPackage.cpp +135 -0
- package/harmony/svg/src/main/cpp/SVGPackage.h +153 -0
- package/harmony/svg/src/main/cpp/SvgArkUINode.cpp +75 -0
- package/harmony/svg/src/main/cpp/SvgArkUINode.h +45 -0
- package/harmony/svg/src/main/cpp/SvgBaseAttribute.h +83 -0
- package/harmony/svg/src/main/cpp/SvgCircle.cpp +29 -0
- package/harmony/svg/src/main/cpp/SvgCircle.h +29 -0
- package/harmony/svg/src/main/cpp/SvgClipPath.h +22 -0
- package/harmony/svg/src/main/cpp/SvgContext.cpp +56 -0
- package/harmony/svg/src/main/cpp/SvgContext.h +71 -0
- package/harmony/svg/src/main/cpp/SvgDefs.h +46 -0
- package/harmony/svg/src/main/cpp/SvgEllipse.cpp +32 -0
- package/harmony/svg/src/main/cpp/SvgEllipse.h +34 -0
- package/harmony/svg/src/main/cpp/SvgFilter.cpp +505 -0
- package/harmony/svg/src/main/cpp/SvgFilter.h +112 -0
- package/harmony/svg/src/main/cpp/SvgGradient.cpp +116 -0
- package/harmony/svg/src/main/cpp/SvgGradient.h +49 -0
- package/harmony/svg/src/main/cpp/SvgGraphic.cpp +553 -0
- package/harmony/svg/src/main/cpp/SvgGraphic.h +77 -0
- package/harmony/svg/src/main/cpp/SvgGroup.cpp +86 -0
- package/harmony/svg/src/main/cpp/SvgGroup.h +41 -0
- package/harmony/svg/src/main/cpp/SvgHost.cpp +27 -0
- package/harmony/svg/src/main/cpp/SvgHost.h +38 -0
- package/harmony/svg/src/main/cpp/SvgImage.cpp +168 -0
- package/harmony/svg/src/main/cpp/SvgImage.h +52 -0
- package/harmony/svg/src/main/cpp/SvgLine.cpp +28 -0
- package/harmony/svg/src/main/cpp/SvgLine.h +32 -0
- package/harmony/svg/src/main/cpp/SvgMarker.cpp +61 -0
- package/harmony/svg/src/main/cpp/SvgMarker.h +86 -0
- package/harmony/svg/src/main/cpp/SvgMask.cpp +72 -0
- package/harmony/svg/src/main/cpp/SvgMask.h +68 -0
- package/harmony/svg/src/main/cpp/SvgNode.cpp +289 -0
- package/harmony/svg/src/main/cpp/SvgNode.h +347 -0
- package/harmony/svg/src/main/cpp/SvgPath.cpp +42 -0
- package/harmony/svg/src/main/cpp/SvgPath.h +29 -0
- package/harmony/svg/src/main/cpp/SvgPattern.cpp +77 -0
- package/harmony/svg/src/main/cpp/SvgPattern.h +64 -0
- package/harmony/svg/src/main/cpp/SvgQuote.h +87 -0
- package/harmony/svg/src/main/cpp/SvgRect.cpp +58 -0
- package/harmony/svg/src/main/cpp/SvgRect.h +33 -0
- package/harmony/svg/src/main/cpp/SvgSvg.cpp +83 -0
- package/harmony/svg/src/main/cpp/SvgSvg.h +52 -0
- package/harmony/svg/src/main/cpp/SvgSymbol.cpp +25 -0
- package/harmony/svg/src/main/cpp/SvgSymbol.h +37 -0
- package/harmony/svg/src/main/cpp/SvgTSpan.cpp +501 -0
- package/harmony/svg/src/main/cpp/SvgTSpan.h +101 -0
- package/harmony/svg/src/main/cpp/SvgText.cpp +48 -0
- package/harmony/svg/src/main/cpp/SvgText.h +29 -0
- package/harmony/svg/src/main/cpp/SvgTextPath.cpp +35 -0
- package/harmony/svg/src/main/cpp/SvgTextPath.h +51 -0
- package/harmony/svg/src/main/cpp/SvgUse.cpp +65 -0
- package/harmony/svg/src/main/cpp/SvgUse.h +46 -0
- package/harmony/svg/src/main/cpp/SvgViewManager.cpp +36 -0
- package/harmony/svg/src/main/cpp/SvgViewManager.h +37 -0
- package/harmony/svg/src/main/cpp/TextBase.cpp +20 -0
- package/harmony/svg/src/main/cpp/TextBase.h +114 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGBaseComponentInstance.h +212 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGCircleComponentInstance.cpp +31 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGCircleComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGClipPathComponentInstance.cpp +23 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGClipPathComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGDefsComponentInstance.cpp +23 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGDefsComponentInstance.h +28 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGEllipseComponentInstance.cpp +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGEllipseComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeBlendComponentInstance.cpp +40 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeBlendComponentInstance.h +48 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeColorMatrixComponentInstance.cpp +33 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeColorMatrixComponentInstance.h +48 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeCompositeComponentInstance.cpp +39 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeCompositeComponentInstance.h +55 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeFloodComponentInstance.cpp +33 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeFloodComponentInstance.h +49 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeGaussianBlurComponentInstance.cpp +34 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeGaussianBlurComponentInstance.h +48 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeOffsetComponentInstance.cpp +35 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFeOffsetComponentInstance.h +46 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFilterComponentInstance.cpp +199 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGFilterComponentInstance.h +48 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGGroupComponentInstance.cpp +32 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGGroupComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGImageComponentInstance.cpp +100 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGImageComponentInstance.h +43 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGLineComponentInstance.cpp +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGLineComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGLinearGradientComponentInstance.cpp +30 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGLinearGradientComponentInstance.h +28 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGMarkerComponentInstance.cpp +35 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGMarkerComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGMaskComponentInstance.cpp +30 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGMaskComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGPathComponentInstance.cpp +33 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGPathComponentInstance.h +29 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGPatternComponentInstance.cpp +40 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGPatternComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGRadialGradientComponentInstance.cpp +32 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGRadialGradientComponentInstance.h +28 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGRectComponentInstance.cpp +36 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGRectComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGSvgViewComponentInstance.cpp +86 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGSvgViewComponentInstance.h +47 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGSymbolComponentInstance.cpp +30 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGSymbolComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGTSpanComponentInstance.cpp +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGTSpanComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextComponentInstance.cpp +25 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextPathComponentInstance.cpp +32 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGTextPathComponentInstance.h +27 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGUseComponentInstance.cpp +32 -0
- package/harmony/svg/src/main/cpp/componentInstances/RNSVGUseComponentInstance.h +32 -0
- package/harmony/svg/src/main/cpp/downloadUtils/HttpTaskProcessor.cpp +207 -0
- package/harmony/svg/src/main/cpp/downloadUtils/HttpTaskProcessor.h +88 -0
- package/harmony/svg/src/main/cpp/downloadUtils/ImageSourceResolver.cpp +106 -0
- package/harmony/svg/src/main/cpp/downloadUtils/ImageSourceResolver.h +97 -0
- package/harmony/svg/src/main/cpp/downloadUtils/LRUCache.h +98 -0
- package/harmony/svg/src/main/cpp/drawing/Brush.cpp +50 -0
- package/harmony/svg/src/main/cpp/drawing/Brush.h +52 -0
- package/harmony/svg/src/main/cpp/drawing/GlyPathBag.cpp +20 -0
- package/harmony/svg/src/main/cpp/drawing/GlyPathBag.h +31 -0
- package/harmony/svg/src/main/cpp/drawing/Matrix.cpp +100 -0
- package/harmony/svg/src/main/cpp/drawing/Matrix.h +68 -0
- package/harmony/svg/src/main/cpp/drawing/Path.cpp +173 -0
- package/harmony/svg/src/main/cpp/drawing/Path.h +127 -0
- package/harmony/svg/src/main/cpp/drawing/Pen.cpp +57 -0
- package/harmony/svg/src/main/cpp/drawing/Pen.h +59 -0
- package/harmony/svg/src/main/cpp/drawing/Rect.cpp +47 -0
- package/harmony/svg/src/main/cpp/drawing/Rect.h +56 -0
- package/harmony/svg/src/main/cpp/drawing/RoundRect.cpp +24 -0
- package/harmony/svg/src/main/cpp/drawing/RoundRect.h +39 -0
- package/harmony/svg/src/main/cpp/drawing/ShaderEffect.cpp +37 -0
- package/harmony/svg/src/main/cpp/drawing/ShaderEffect.h +51 -0
- package/harmony/svg/src/main/cpp/drawing/TextStyle.cpp +49 -0
- package/harmony/svg/src/main/cpp/drawing/TextStyle.h +41 -0
- package/harmony/svg/src/main/cpp/drawing/Typography.cpp +9 -0
- package/harmony/svg/src/main/cpp/drawing/Typography.h +25 -0
- package/harmony/svg/src/main/cpp/drawing/TypographyStyle.cpp +31 -0
- package/harmony/svg/src/main/cpp/drawing/TypographyStyle.h +41 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGCircleJSIBinder.h +54 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGClipPathJSIBinder.h +54 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGDefsJSIBinder.h +38 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGEllipseJSIBinder.h +55 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeBlendJSIBinder.h +26 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeColorMatrixJSIBinder.h +26 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeCompositeJSIBinder.h +30 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeFloodJSIBinder.h +26 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeGaussianBlurJSIBinder.h +27 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFeOffsetJSIBinder.h +26 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGFilterJSIBinder.h +44 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGForeignObjectJSIBinder.h +57 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGGroupJSIBinder.h +54 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGImageJSIBinder.h +58 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGLineJSIBinder.h +55 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGLinearGradientJSIBinder.h +45 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGMarkerJSIBinder.h +66 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGMaskJSIBinder.h +60 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGPathJSIBinder.h +52 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGPatternJSIBinder.h +67 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGRadialGradientJSIBinder.h +47 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGRectJSIBinder.h +57 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGSvgViewAndroidJSIBinder.h +67 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGSvgViewJSIBinder.h +36 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGSymbolJSIBinder.h +60 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGTSpanJSIBinder.h +66 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGTextJSIBinder.h +65 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGTextPathJSIBinder.h +71 -0
- package/harmony/svg/src/main/cpp/generated/RNOH/generated/components/RNSVGUseJSIBinder.h +56 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/ComponentDescriptors.h +48 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/EventEmitters.cpp +20 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/EventEmitters.h +253 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/Props.cpp +977 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/Props.h +1280 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/ShadowNodes.cpp +45 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/ShadowNodes.h +331 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/States.cpp +18 -0
- package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/States.h +441 -0
- package/harmony/svg/src/main/cpp/properties/Color.cpp +458 -0
- package/harmony/svg/src/main/cpp/properties/Color.h +144 -0
- package/harmony/svg/src/main/cpp/properties/Decoration.cpp +41 -0
- package/harmony/svg/src/main/cpp/properties/Decoration.h +483 -0
- package/harmony/svg/src/main/cpp/properties/Dimension.cpp +64 -0
- package/harmony/svg/src/main/cpp/properties/Dimension.h +243 -0
- package/harmony/svg/src/main/cpp/properties/Font.cpp +166 -0
- package/harmony/svg/src/main/cpp/properties/Font.h +163 -0
- package/harmony/svg/src/main/cpp/properties/Offset.h +119 -0
- package/harmony/svg/src/main/cpp/properties/PaintState.h +240 -0
- package/harmony/svg/src/main/cpp/properties/Rect.h +423 -0
- package/harmony/svg/src/main/cpp/properties/Size.h +246 -0
- package/harmony/svg/src/main/cpp/properties/SvgPaintState.h +452 -0
- package/harmony/svg/src/main/cpp/properties/TextProperties.cpp +91 -0
- package/harmony/svg/src/main/cpp/properties/TextProperties.h +56 -0
- package/harmony/svg/src/main/cpp/properties/ViewBox.h +108 -0
- package/harmony/svg/src/main/cpp/svgImage/RNSVGImageComponentDescriptor.h +41 -0
- package/harmony/svg/src/main/cpp/svgImage/RNSVGImageShadowNode.cpp +62 -0
- package/harmony/svg/src/main/cpp/svgImage/RNSVGImageShadowNode.h +63 -0
- package/harmony/svg/src/main/cpp/svgImage/RNSVGImageState.cpp +17 -0
- package/harmony/svg/src/main/cpp/svgImage/RNSVGImageState.h +58 -0
- package/harmony/svg/src/main/cpp/turboModules/RNSVGImageModule.cpp +54 -0
- package/harmony/svg/src/main/cpp/turboModules/RNSVGImageModule.h +32 -0
- package/harmony/svg/src/main/cpp/turboModules/RNSVGRenderableModule.cpp +101 -0
- package/harmony/svg/src/main/cpp/turboModules/RNSVGRenderableModule.h +32 -0
- package/harmony/svg/src/main/cpp/turboModules/RNSVGSvgViewModule.cpp +71 -0
- package/harmony/svg/src/main/cpp/turboModules/RNSVGSvgViewModule.h +32 -0
- package/harmony/svg/src/main/cpp/utils/DynamicUtils.h +55 -0
- package/harmony/svg/src/main/cpp/utils/FilterManager.h +190 -0
- package/harmony/svg/src/main/cpp/utils/GlyphContext.cpp +221 -0
- package/harmony/svg/src/main/cpp/utils/GlyphContext.h +106 -0
- package/harmony/svg/src/main/cpp/utils/LinearMap.h +69 -0
- package/harmony/svg/src/main/cpp/utils/PathParserUtils.cpp +591 -0
- package/harmony/svg/src/main/cpp/utils/PathParserUtils.h +93 -0
- package/harmony/svg/src/main/cpp/utils/StringUtils.cpp +134 -0
- package/harmony/svg/src/main/cpp/utils/StringUtils.h +644 -0
- package/harmony/svg/src/main/cpp/utils/SvgAttributesParser.cpp +239 -0
- package/harmony/svg/src/main/cpp/utils/SvgAttributesParser.h +277 -0
- package/harmony/svg/src/main/cpp/utils/SvgMarkerPositionUtils.h +200 -0
- package/harmony/svg/src/main/cpp/utils/SvgUtils.h +176 -0
- package/harmony/svg/src/main/cpp/utils/TextPathHelper.cpp +94 -0
- package/harmony/svg/src/main/cpp/utils/TextPathHelper.h +61 -0
- package/harmony/svg/src/main/ets/RNSVGImageModule.ts +21 -0
- package/harmony/svg/src/main/ets/RNSVGRenderableModule.ts +16 -0
- package/harmony/svg/src/main/ets/RNSVGSvgViewModule.ts +18 -0
- package/harmony/svg/src/main/ets/SvgPackage.ts +58 -0
- package/harmony/svg/src/main/module.json5 +7 -0
- package/harmony/svg/src/main/resources/base/element/string.json +8 -0
- package/harmony/svg/src/main/resources/en_US/element/string.json +8 -0
- package/harmony/svg/src/main/resources/zh_CN/element/string.json +8 -0
- package/harmony/svg/ts.ts +8 -0
- package/harmony/svg.har +0 -0
- package/lib/commonjs/css/index.js +55 -0
- package/lib/commonjs/css/index.js.map +1 -0
- package/lib/commonjs/index.js +26 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/module/css/index.js +4 -0
- package/lib/module/css/index.js.map +1 -0
- package/lib/module/index.js +3 -0
- package/lib/module/index.js.map +1 -0
- package/lib/typescript/babel.config.d.ts +8 -0
- package/lib/typescript/babel.config.d.ts.map +1 -0
- package/lib/typescript/example/babel.config.d.ts +3 -0
- package/lib/typescript/example/babel.config.d.ts.map +1 -0
- package/lib/typescript/example/contexts.d.ts +3 -0
- package/lib/typescript/example/contexts.d.ts.map +1 -0
- package/lib/typescript/example/harmony/entry/hvigorfile.d.ts +2 -0
- package/lib/typescript/example/harmony/entry/hvigorfile.d.ts.map +1 -0
- package/lib/typescript/example/harmony/hvigorfile.d.ts +2 -0
- package/lib/typescript/example/harmony/hvigorfile.d.ts.map +1 -0
- package/lib/typescript/example/index.d.ts +2 -0
- package/lib/typescript/example/index.d.ts.map +1 -0
- package/lib/typescript/example/jest.config.d.ts +3 -0
- package/lib/typescript/example/jest.config.d.ts.map +1 -0
- package/lib/typescript/example/metro.config.d.ts +3 -0
- package/lib/typescript/example/metro.config.d.ts.map +1 -0
- package/lib/typescript/example/react-native.config.d.ts +3 -0
- package/lib/typescript/example/react-native.config.d.ts.map +1 -0
- package/lib/typescript/example/scripts/create-build-profile.d.ts +2 -0
- package/lib/typescript/example/scripts/create-build-profile.d.ts.map +1 -0
- package/lib/typescript/example/src/index.d.ts +3 -0
- package/lib/typescript/example/src/index.d.ts.map +1 -0
- package/lib/typescript/src/css/index.d.ts +4 -0
- package/lib/typescript/src/css/index.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +3 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/package.json +54 -0
- package/src/css/index.tsx +20 -0
- package/src/index.tsx +3 -0
- package/tsconfig.json +12 -0
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
+
*
|
|
4
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
+
* once the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @generated by codegen project: GenerateShadowNodeCpp.js
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
#include <react/renderer/components/react_native_svg/ShadowNodes.h>
|
|
11
|
+
|
|
12
|
+
namespace facebook {
|
|
13
|
+
namespace react {
|
|
14
|
+
|
|
15
|
+
extern const char RNSVGSvgViewAndroidComponentName[] = "RNSVGSvgViewAndroid";
|
|
16
|
+
extern const char RNSVGCircleComponentName[] = "RNSVGCircle";
|
|
17
|
+
extern const char RNSVGClipPathComponentName[] = "RNSVGClipPath";
|
|
18
|
+
extern const char RNSVGDefsComponentName[] = "RNSVGDefs";
|
|
19
|
+
extern const char RNSVGEllipseComponentName[] = "RNSVGEllipse";
|
|
20
|
+
extern const char RNSVGFilterComponentName[] = "RNSVGFilter";
|
|
21
|
+
extern const char RNSVGForeignObjectComponentName[] = "RNSVGForeignObject";
|
|
22
|
+
extern const char RNSVGGroupComponentName[] = "RNSVGGroup";
|
|
23
|
+
extern const char RNSVGSvgViewComponentName[] = "RNSVGSvgView";
|
|
24
|
+
extern const char RNSVGLinearGradientComponentName[] = "RNSVGLinearGradient";
|
|
25
|
+
extern const char RNSVGLineComponentName[] = "RNSVGLine";
|
|
26
|
+
extern const char RNSVGMarkerComponentName[] = "RNSVGMarker";
|
|
27
|
+
extern const char RNSVGMaskComponentName[] = "RNSVGMask";
|
|
28
|
+
extern const char RNSVGPathComponentName[] = "RNSVGPath";
|
|
29
|
+
extern const char RNSVGPatternComponentName[] = "RNSVGPattern";
|
|
30
|
+
extern const char RNSVGRadialGradientComponentName[] = "RNSVGRadialGradient";
|
|
31
|
+
extern const char RNSVGRectComponentName[] = "RNSVGRect";
|
|
32
|
+
extern const char RNSVGSymbolComponentName[] = "RNSVGSymbol";
|
|
33
|
+
extern const char RNSVGTextComponentName[] = "RNSVGText";
|
|
34
|
+
extern const char RNSVGTextPathComponentName[] = "RNSVGTextPath";
|
|
35
|
+
extern const char RNSVGTSpanComponentName[] = "RNSVGTSpan";
|
|
36
|
+
extern const char RNSVGUseComponentName[] = "RNSVGUse";
|
|
37
|
+
extern const char RNSVGFeBlendComponentName[] = "RNSVGFeBlend";
|
|
38
|
+
extern const char RNSVGFeColorMatrixComponentName[] = "RNSVGFeColorMatrix";
|
|
39
|
+
extern const char RNSVGFeCompositeComponentName[] = "RNSVGFeComposite";
|
|
40
|
+
extern const char RNSVGFeGaussianBlurComponentName[] = "RNSVGFeGaussianBlur";
|
|
41
|
+
extern const char RNSVGFeFloodComponentName[] = "RNSVGFeFlood";
|
|
42
|
+
extern const char RNSVGFeOffsetComponentName[] = "RNSVGFeOffset";
|
|
43
|
+
|
|
44
|
+
} // namespace react
|
|
45
|
+
} // namespace facebook
|
package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/ShadowNodes.h
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This code was generated by [react-native-codegen](https://www.npmjs.com/package/react-native-codegen).
|
|
3
|
+
*
|
|
4
|
+
* Do not edit this file as changes may cause incorrect behavior and will be lost
|
|
5
|
+
* once the code is regenerated.
|
|
6
|
+
*
|
|
7
|
+
* @generated by codegen project: GenerateShadowNodeH.js
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
#pragma once
|
|
11
|
+
|
|
12
|
+
#include <react/renderer/components/react_native_svg/EventEmitters.h>
|
|
13
|
+
#include <react/renderer/components/react_native_svg/Props.h>
|
|
14
|
+
#include <react/renderer/components/react_native_svg/States.h>
|
|
15
|
+
#include <react/renderer/components/view/ConcreteViewShadowNode.h>
|
|
16
|
+
#include <jsi/jsi.h>
|
|
17
|
+
|
|
18
|
+
namespace facebook {
|
|
19
|
+
namespace react {
|
|
20
|
+
|
|
21
|
+
JSI_EXPORT extern const char RNSVGSvgViewAndroidComponentName[];
|
|
22
|
+
|
|
23
|
+
/*
|
|
24
|
+
* `ShadowNode` for <RNSVGSvgViewAndroid> component.
|
|
25
|
+
*/
|
|
26
|
+
using RNSVGSvgViewAndroidShadowNode = ConcreteViewShadowNode<
|
|
27
|
+
RNSVGSvgViewAndroidComponentName,
|
|
28
|
+
RNSVGSvgViewAndroidProps,
|
|
29
|
+
RNSVGSvgViewAndroidEventEmitter,
|
|
30
|
+
RNSVGSvgViewAndroidState>;
|
|
31
|
+
|
|
32
|
+
JSI_EXPORT extern const char RNSVGCircleComponentName[];
|
|
33
|
+
|
|
34
|
+
/*
|
|
35
|
+
* `ShadowNode` for <RNSVGCircle> component.
|
|
36
|
+
*/
|
|
37
|
+
using RNSVGCircleShadowNode = ConcreteViewShadowNode<
|
|
38
|
+
RNSVGCircleComponentName,
|
|
39
|
+
RNSVGCircleProps,
|
|
40
|
+
RNSVGCircleEventEmitter,
|
|
41
|
+
RNSVGCircleState>;
|
|
42
|
+
|
|
43
|
+
JSI_EXPORT extern const char RNSVGClipPathComponentName[];
|
|
44
|
+
|
|
45
|
+
/*
|
|
46
|
+
* `ShadowNode` for <RNSVGClipPath> component.
|
|
47
|
+
*/
|
|
48
|
+
using RNSVGClipPathShadowNode = ConcreteViewShadowNode<
|
|
49
|
+
RNSVGClipPathComponentName,
|
|
50
|
+
RNSVGClipPathProps,
|
|
51
|
+
RNSVGClipPathEventEmitter,
|
|
52
|
+
RNSVGClipPathState>;
|
|
53
|
+
|
|
54
|
+
JSI_EXPORT extern const char RNSVGDefsComponentName[];
|
|
55
|
+
|
|
56
|
+
/*
|
|
57
|
+
* `ShadowNode` for <RNSVGDefs> component.
|
|
58
|
+
*/
|
|
59
|
+
using RNSVGDefsShadowNode = ConcreteViewShadowNode<
|
|
60
|
+
RNSVGDefsComponentName,
|
|
61
|
+
RNSVGDefsProps,
|
|
62
|
+
RNSVGDefsEventEmitter,
|
|
63
|
+
RNSVGDefsState>;
|
|
64
|
+
|
|
65
|
+
JSI_EXPORT extern const char RNSVGEllipseComponentName[];
|
|
66
|
+
|
|
67
|
+
/*
|
|
68
|
+
* `ShadowNode` for <RNSVGEllipse> component.
|
|
69
|
+
*/
|
|
70
|
+
using RNSVGEllipseShadowNode = ConcreteViewShadowNode<
|
|
71
|
+
RNSVGEllipseComponentName,
|
|
72
|
+
RNSVGEllipseProps,
|
|
73
|
+
RNSVGEllipseEventEmitter,
|
|
74
|
+
RNSVGEllipseState>;
|
|
75
|
+
|
|
76
|
+
JSI_EXPORT extern const char RNSVGFilterComponentName[];
|
|
77
|
+
|
|
78
|
+
/*
|
|
79
|
+
* `ShadowNode` for <RNSVGFilter> component.
|
|
80
|
+
*/
|
|
81
|
+
using RNSVGFilterShadowNode = ConcreteViewShadowNode<
|
|
82
|
+
RNSVGFilterComponentName,
|
|
83
|
+
RNSVGFilterProps,
|
|
84
|
+
RNSVGFilterEventEmitter,
|
|
85
|
+
RNSVGFilterState>;
|
|
86
|
+
|
|
87
|
+
JSI_EXPORT extern const char RNSVGForeignObjectComponentName[];
|
|
88
|
+
|
|
89
|
+
/*
|
|
90
|
+
* `ShadowNode` for <RNSVGForeignObject> component.
|
|
91
|
+
*/
|
|
92
|
+
using RNSVGForeignObjectShadowNode = ConcreteViewShadowNode<
|
|
93
|
+
RNSVGForeignObjectComponentName,
|
|
94
|
+
RNSVGForeignObjectProps,
|
|
95
|
+
RNSVGForeignObjectEventEmitter,
|
|
96
|
+
RNSVGForeignObjectState>;
|
|
97
|
+
|
|
98
|
+
JSI_EXPORT extern const char RNSVGGroupComponentName[];
|
|
99
|
+
|
|
100
|
+
/*
|
|
101
|
+
* `ShadowNode` for <RNSVGGroup> component.
|
|
102
|
+
*/
|
|
103
|
+
using RNSVGGroupShadowNode = ConcreteViewShadowNode<
|
|
104
|
+
RNSVGGroupComponentName,
|
|
105
|
+
RNSVGGroupProps,
|
|
106
|
+
RNSVGGroupEventEmitter,
|
|
107
|
+
RNSVGGroupState>;
|
|
108
|
+
|
|
109
|
+
JSI_EXPORT extern const char RNSVGSvgViewComponentName[];
|
|
110
|
+
|
|
111
|
+
/*
|
|
112
|
+
* `ShadowNode` for <RNSVGSvgView> component.
|
|
113
|
+
*/
|
|
114
|
+
using RNSVGSvgViewShadowNode = ConcreteViewShadowNode<
|
|
115
|
+
RNSVGSvgViewComponentName,
|
|
116
|
+
RNSVGSvgViewProps,
|
|
117
|
+
RNSVGSvgViewEventEmitter,
|
|
118
|
+
RNSVGSvgViewState>;
|
|
119
|
+
|
|
120
|
+
JSI_EXPORT extern const char RNSVGLinearGradientComponentName[];
|
|
121
|
+
|
|
122
|
+
/*
|
|
123
|
+
* `ShadowNode` for <RNSVGLinearGradient> component.
|
|
124
|
+
*/
|
|
125
|
+
using RNSVGLinearGradientShadowNode = ConcreteViewShadowNode<
|
|
126
|
+
RNSVGLinearGradientComponentName,
|
|
127
|
+
RNSVGLinearGradientProps,
|
|
128
|
+
RNSVGLinearGradientEventEmitter,
|
|
129
|
+
RNSVGLinearGradientState>;
|
|
130
|
+
|
|
131
|
+
JSI_EXPORT extern const char RNSVGLineComponentName[];
|
|
132
|
+
|
|
133
|
+
/*
|
|
134
|
+
* `ShadowNode` for <RNSVGLine> component.
|
|
135
|
+
*/
|
|
136
|
+
using RNSVGLineShadowNode = ConcreteViewShadowNode<
|
|
137
|
+
RNSVGLineComponentName,
|
|
138
|
+
RNSVGLineProps,
|
|
139
|
+
RNSVGLineEventEmitter,
|
|
140
|
+
RNSVGLineState>;
|
|
141
|
+
|
|
142
|
+
JSI_EXPORT extern const char RNSVGMarkerComponentName[];
|
|
143
|
+
|
|
144
|
+
/*
|
|
145
|
+
* `ShadowNode` for <RNSVGMarker> component.
|
|
146
|
+
*/
|
|
147
|
+
using RNSVGMarkerShadowNode = ConcreteViewShadowNode<
|
|
148
|
+
RNSVGMarkerComponentName,
|
|
149
|
+
RNSVGMarkerProps,
|
|
150
|
+
RNSVGMarkerEventEmitter,
|
|
151
|
+
RNSVGMarkerState>;
|
|
152
|
+
|
|
153
|
+
JSI_EXPORT extern const char RNSVGMaskComponentName[];
|
|
154
|
+
|
|
155
|
+
/*
|
|
156
|
+
* `ShadowNode` for <RNSVGMask> component.
|
|
157
|
+
*/
|
|
158
|
+
using RNSVGMaskShadowNode = ConcreteViewShadowNode<
|
|
159
|
+
RNSVGMaskComponentName,
|
|
160
|
+
RNSVGMaskProps,
|
|
161
|
+
RNSVGMaskEventEmitter,
|
|
162
|
+
RNSVGMaskState>;
|
|
163
|
+
|
|
164
|
+
JSI_EXPORT extern const char RNSVGPathComponentName[];
|
|
165
|
+
|
|
166
|
+
/*
|
|
167
|
+
* `ShadowNode` for <RNSVGPath> component.
|
|
168
|
+
*/
|
|
169
|
+
using RNSVGPathShadowNode = ConcreteViewShadowNode<
|
|
170
|
+
RNSVGPathComponentName,
|
|
171
|
+
RNSVGPathProps,
|
|
172
|
+
RNSVGPathEventEmitter,
|
|
173
|
+
RNSVGPathState>;
|
|
174
|
+
|
|
175
|
+
JSI_EXPORT extern const char RNSVGPatternComponentName[];
|
|
176
|
+
|
|
177
|
+
/*
|
|
178
|
+
* `ShadowNode` for <RNSVGPattern> component.
|
|
179
|
+
*/
|
|
180
|
+
using RNSVGPatternShadowNode = ConcreteViewShadowNode<
|
|
181
|
+
RNSVGPatternComponentName,
|
|
182
|
+
RNSVGPatternProps,
|
|
183
|
+
RNSVGPatternEventEmitter,
|
|
184
|
+
RNSVGPatternState>;
|
|
185
|
+
|
|
186
|
+
JSI_EXPORT extern const char RNSVGRadialGradientComponentName[];
|
|
187
|
+
|
|
188
|
+
/*
|
|
189
|
+
* `ShadowNode` for <RNSVGRadialGradient> component.
|
|
190
|
+
*/
|
|
191
|
+
using RNSVGRadialGradientShadowNode = ConcreteViewShadowNode<
|
|
192
|
+
RNSVGRadialGradientComponentName,
|
|
193
|
+
RNSVGRadialGradientProps,
|
|
194
|
+
RNSVGRadialGradientEventEmitter,
|
|
195
|
+
RNSVGRadialGradientState>;
|
|
196
|
+
|
|
197
|
+
JSI_EXPORT extern const char RNSVGRectComponentName[];
|
|
198
|
+
|
|
199
|
+
/*
|
|
200
|
+
* `ShadowNode` for <RNSVGRect> component.
|
|
201
|
+
*/
|
|
202
|
+
using RNSVGRectShadowNode = ConcreteViewShadowNode<
|
|
203
|
+
RNSVGRectComponentName,
|
|
204
|
+
RNSVGRectProps,
|
|
205
|
+
RNSVGRectEventEmitter,
|
|
206
|
+
RNSVGRectState>;
|
|
207
|
+
|
|
208
|
+
JSI_EXPORT extern const char RNSVGSymbolComponentName[];
|
|
209
|
+
|
|
210
|
+
/*
|
|
211
|
+
* `ShadowNode` for <RNSVGSymbol> component.
|
|
212
|
+
*/
|
|
213
|
+
using RNSVGSymbolShadowNode = ConcreteViewShadowNode<
|
|
214
|
+
RNSVGSymbolComponentName,
|
|
215
|
+
RNSVGSymbolProps,
|
|
216
|
+
RNSVGSymbolEventEmitter,
|
|
217
|
+
RNSVGSymbolState>;
|
|
218
|
+
|
|
219
|
+
JSI_EXPORT extern const char RNSVGTextComponentName[];
|
|
220
|
+
|
|
221
|
+
/*
|
|
222
|
+
* `ShadowNode` for <RNSVGText> component.
|
|
223
|
+
*/
|
|
224
|
+
using RNSVGTextShadowNode = ConcreteViewShadowNode<
|
|
225
|
+
RNSVGTextComponentName,
|
|
226
|
+
RNSVGTextProps,
|
|
227
|
+
RNSVGTextEventEmitter,
|
|
228
|
+
RNSVGTextState>;
|
|
229
|
+
|
|
230
|
+
JSI_EXPORT extern const char RNSVGTextPathComponentName[];
|
|
231
|
+
|
|
232
|
+
/*
|
|
233
|
+
* `ShadowNode` for <RNSVGTextPath> component.
|
|
234
|
+
*/
|
|
235
|
+
using RNSVGTextPathShadowNode = ConcreteViewShadowNode<
|
|
236
|
+
RNSVGTextPathComponentName,
|
|
237
|
+
RNSVGTextPathProps,
|
|
238
|
+
RNSVGTextPathEventEmitter,
|
|
239
|
+
RNSVGTextPathState>;
|
|
240
|
+
|
|
241
|
+
JSI_EXPORT extern const char RNSVGTSpanComponentName[];
|
|
242
|
+
|
|
243
|
+
/*
|
|
244
|
+
* `ShadowNode` for <RNSVGTSpan> component.
|
|
245
|
+
*/
|
|
246
|
+
using RNSVGTSpanShadowNode = ConcreteViewShadowNode<
|
|
247
|
+
RNSVGTSpanComponentName,
|
|
248
|
+
RNSVGTSpanProps,
|
|
249
|
+
RNSVGTSpanEventEmitter,
|
|
250
|
+
RNSVGTSpanState>;
|
|
251
|
+
|
|
252
|
+
JSI_EXPORT extern const char RNSVGUseComponentName[];
|
|
253
|
+
|
|
254
|
+
/*
|
|
255
|
+
* `ShadowNode` for <RNSVGUse> component.
|
|
256
|
+
*/
|
|
257
|
+
using RNSVGUseShadowNode = ConcreteViewShadowNode<
|
|
258
|
+
RNSVGUseComponentName,
|
|
259
|
+
RNSVGUseProps,
|
|
260
|
+
RNSVGUseEventEmitter,
|
|
261
|
+
RNSVGUseState>;
|
|
262
|
+
|
|
263
|
+
JSI_EXPORT extern const char RNSVGFeBlendComponentName[];
|
|
264
|
+
|
|
265
|
+
/*
|
|
266
|
+
* `ShadowNode` for <RNSVGFeBlend> component.
|
|
267
|
+
*/
|
|
268
|
+
using RNSVGFeBlendShadowNode = ConcreteViewShadowNode<
|
|
269
|
+
RNSVGFeBlendComponentName,
|
|
270
|
+
RNSVGFeBlendProps,
|
|
271
|
+
RNSVGFeBlendEventEmitter,
|
|
272
|
+
RNSVGFeBlendState>;
|
|
273
|
+
|
|
274
|
+
JSI_EXPORT extern const char RNSVGFeColorMatrixComponentName[];
|
|
275
|
+
|
|
276
|
+
/*
|
|
277
|
+
* `ShadowNode` for <RNSVGFeColorMatrix> component.
|
|
278
|
+
*/
|
|
279
|
+
using RNSVGFeColorMatrixShadowNode = ConcreteViewShadowNode<
|
|
280
|
+
RNSVGFeColorMatrixComponentName,
|
|
281
|
+
RNSVGFeColorMatrixProps,
|
|
282
|
+
RNSVGFeColorMatrixEventEmitter,
|
|
283
|
+
RNSVGFeColorMatrixState>;
|
|
284
|
+
|
|
285
|
+
JSI_EXPORT extern const char RNSVGFeCompositeComponentName[];
|
|
286
|
+
|
|
287
|
+
/*
|
|
288
|
+
* `ShadowNode` for <RNSVGFeComposite> component.
|
|
289
|
+
*/
|
|
290
|
+
using RNSVGFeCompositeShadowNode = ConcreteViewShadowNode<
|
|
291
|
+
RNSVGFeCompositeComponentName,
|
|
292
|
+
RNSVGFeCompositeProps,
|
|
293
|
+
RNSVGFeCompositeEventEmitter,
|
|
294
|
+
RNSVGFeCompositeState>;
|
|
295
|
+
|
|
296
|
+
JSI_EXPORT extern const char RNSVGFeGaussianBlurComponentName[];
|
|
297
|
+
|
|
298
|
+
/*
|
|
299
|
+
* `ShadowNode` for <RNSVGFeGaussianBlur> component.
|
|
300
|
+
*/
|
|
301
|
+
using RNSVGFeGaussianBlurShadowNode = ConcreteViewShadowNode<
|
|
302
|
+
RNSVGFeGaussianBlurComponentName,
|
|
303
|
+
RNSVGFeGaussianBlurProps,
|
|
304
|
+
RNSVGFeGaussianBlurEventEmitter,
|
|
305
|
+
RNSVGFeGaussianBlurState>;
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
/*
|
|
309
|
+
* `ShadowNode` for <RNSVGFeOffset> component.
|
|
310
|
+
*/
|
|
311
|
+
JSI_EXPORT extern const char RNSVGFeOffsetComponentName[];
|
|
312
|
+
|
|
313
|
+
using RNSVGFeOffsetShadowNode = ConcreteViewShadowNode<
|
|
314
|
+
RNSVGFeOffsetComponentName,
|
|
315
|
+
RNSVGFeOffsetProps,
|
|
316
|
+
RNSVGFeOffsetEventEmitter,
|
|
317
|
+
RNSVGFeOffsetState>;
|
|
318
|
+
|
|
319
|
+
/*
|
|
320
|
+
* `ShadowNode` for <RNSVGFeFlood> component.
|
|
321
|
+
*/
|
|
322
|
+
JSI_EXPORT extern const char RNSVGFeFloodComponentName[];
|
|
323
|
+
|
|
324
|
+
using RNSVGFeFloodShadowNode = ConcreteViewShadowNode<
|
|
325
|
+
RNSVGFeFloodComponentName,
|
|
326
|
+
RNSVGFeFloodProps,
|
|
327
|
+
RNSVGFeFloodEventEmitter,
|
|
328
|
+
RNSVGFeFloodState>;
|
|
329
|
+
|
|
330
|
+
} // namespace react
|
|
331
|
+
} // namespace facebook
|
package/harmony/svg/src/main/cpp/generated/react/renderer/components/react_native_svg/States.cpp
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
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: GenerateStateCpp.js
|
|
9
|
+
*/
|
|
10
|
+
#include "States.h"
|
|
11
|
+
|
|
12
|
+
namespace facebook {
|
|
13
|
+
namespace react {
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
} // namespace react
|
|
18
|
+
} // namespace facebook
|