feat: FeBlend (#2489)

# Summary

Continuation of #2362 implementing `FeBlend` filter
https://www.w3.org/TR/SVG11/filters.html#feBlendElement

## Test Plan

Example app → Filters → `FeBlend`

## Compatibility

| OS      | Implemented |
| ------- | :---------: |
| iOS     |          |
| macOS   |     _*_      |
| Android |          |
| Web     |          |
This commit is contained in:
Jakub Grzywacz
2024-10-16 11:45:44 +02:00
committed by GitHub
parent cb30bd66d5
commit 096fdc22a5
24 changed files with 736 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
#import "RNSVGFilterPrimitiveManager.h"
@interface RNSVGFeBlendManager : RNSVGFilterPrimitiveManager
@end
+18
View File
@@ -0,0 +1,18 @@
#import "RNSVGFeBlendManager.h"
#import "RNSVGBlendMode.h"
#import "RNSVGFeBlend.h"
@implementation RNSVGFeBlendManager
RCT_EXPORT_MODULE()
- (RNSVGFeBlend *)node
{
return [RNSVGFeBlend new];
}
RCT_EXPORT_VIEW_PROPERTY(in1, NSString)
RCT_EXPORT_VIEW_PROPERTY(in2, NSString)
RCT_EXPORT_VIEW_PROPERTY(mode, RNSVGBlendMode)
@end