Skip to content

Commit 90aa6ee

Browse files
committed
[Cocoapods] upload react-component 1.5.1
1 parent 7a6f37e commit 90aa6ee

27 files changed

Lines changed: 743 additions & 6 deletions

File tree

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>AvailableLibraries</key>
6+
<array>
7+
<dict>
8+
<key>BitcodeSymbolMapsPath</key>
9+
<string>BCSymbolMaps</string>
10+
<key>DebugSymbolsPath</key>
11+
<string>dSYMs</string>
12+
<key>LibraryIdentifier</key>
13+
<string>ios-arm64</string>
14+
<key>LibraryPath</key>
15+
<string>react_native_blur.framework</string>
16+
<key>SupportedArchitectures</key>
17+
<array>
18+
<string>arm64</string>
19+
</array>
20+
<key>SupportedPlatform</key>
21+
<string>ios</string>
22+
</dict>
23+
<dict>
24+
<key>DebugSymbolsPath</key>
25+
<string>dSYMs</string>
26+
<key>LibraryIdentifier</key>
27+
<string>ios-arm64_x86_64-simulator</string>
28+
<key>LibraryPath</key>
29+
<string>react_native_blur.framework</string>
30+
<key>SupportedArchitectures</key>
31+
<array>
32+
<string>arm64</string>
33+
<string>x86_64</string>
34+
</array>
35+
<key>SupportedPlatform</key>
36+
<string>ios</string>
37+
<key>SupportedPlatformVariant</key>
38+
<string>simulator</string>
39+
</dict>
40+
</array>
41+
<key>CFBundlePackageType</key>
42+
<string>XFWK</string>
43+
<key>XCFrameworkFormatVersion</key>
44+
<string>1.0</string>
45+
</dict>
46+
</plist>

ios/Framework/react_native_blur.xcframework/ios-arm64/BCSymbolMaps/DCB4B1F7-0769-3964-B08A-84F3D2B7F7F4.bcsymbolmap

Lines changed: 314 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>CFBundleIdentifier</key>
8+
<string>com.apple.xcode.dsym.org.cocoapods.react-native-blur</string>
9+
<key>CFBundleInfoDictionaryVersion</key>
10+
<string>6.0</string>
11+
<key>CFBundlePackageType</key>
12+
<string>dSYM</string>
13+
<key>CFBundleSignature</key>
14+
<string>????</string>
15+
<key>CFBundleShortVersionString</key>
16+
<string>0.8.0</string>
17+
<key>CFBundleVersion</key>
18+
<string>1</string>
19+
</dict>
20+
</plist>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#import <UIKit/UIKit.h>
2+
3+
@interface BlurEffectWithAmount : UIBlurEffect
4+
@property (nonatomic, strong) NSNumber *blurAmount;
5+
6+
+ (instancetype)effectWithStyle:(UIBlurEffectStyle)style andBlurAmount:(NSNumber*)blurAmount;
7+
@end
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#import <UIKit/UIKit.h>
2+
#import "BlurEffectWithAmount.h"
3+
4+
@interface BlurView : UIView
5+
6+
@property (nonatomic, copy, nullable) NSString *blurType;
7+
@property (nonatomic, copy, nullable) NSNumber *blurAmount;
8+
@property (nonatomic, copy, nullable) UIColor *reducedTransparencyFallbackColor;
9+
10+
@property (nonatomic, strong, nullable) BlurEffectWithAmount *blurEffect;
11+
@property (nonatomic, strong, nullable) UIVisualEffectView *blurEffectView;
12+
@property (nonatomic, strong, nullable) UIView *reducedTransparencyFallbackView;
13+
14+
- (void)updateBlurEffect;
15+
- (void)updateFallbackView;
16+
- (BOOL)useReduceTransparencyFallback;
17+
@end
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#import <React/RCTViewManager.h>
2+
3+
@interface BlurViewManager : RCTViewManager
4+
5+
@end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#import "BlurView.h"
2+
3+
@interface VibrancyView : BlurView
4+
@end
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#import <React/RCTViewManager.h>
2+
3+
@interface VibrancyViewManager : RCTViewManager
4+
5+
@end
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#ifdef __OBJC__
2+
#import <UIKit/UIKit.h>
3+
#else
4+
#ifndef FOUNDATION_EXPORT
5+
#if defined(__cplusplus)
6+
#define FOUNDATION_EXPORT extern "C"
7+
#else
8+
#define FOUNDATION_EXPORT extern
9+
#endif
10+
#endif
11+
#endif
12+
13+
#import "BlurEffectWithAmount.h"
14+
#import "BlurView.h"
15+
#import "BlurViewManager.h"
16+
#import "VibrancyView.h"
17+
#import "VibrancyViewManager.h"
18+
19+
FOUNDATION_EXPORT double react_native_blurVersionNumber;
20+
FOUNDATION_EXPORT const unsigned char react_native_blurVersionString[];
21+

0 commit comments

Comments
 (0)