-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Cocoapods] upload react-component 1.5.1
- Loading branch information
Showing
27 changed files
with
743 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>AvailableLibraries</key> | ||
<array> | ||
<dict> | ||
<key>BitcodeSymbolMapsPath</key> | ||
<string>BCSymbolMaps</string> | ||
<key>DebugSymbolsPath</key> | ||
<string>dSYMs</string> | ||
<key>LibraryIdentifier</key> | ||
<string>ios-arm64</string> | ||
<key>LibraryPath</key> | ||
<string>react_native_blur.framework</string> | ||
<key>SupportedArchitectures</key> | ||
<array> | ||
<string>arm64</string> | ||
</array> | ||
<key>SupportedPlatform</key> | ||
<string>ios</string> | ||
</dict> | ||
<dict> | ||
<key>DebugSymbolsPath</key> | ||
<string>dSYMs</string> | ||
<key>LibraryIdentifier</key> | ||
<string>ios-arm64_x86_64-simulator</string> | ||
<key>LibraryPath</key> | ||
<string>react_native_blur.framework</string> | ||
<key>SupportedArchitectures</key> | ||
<array> | ||
<string>arm64</string> | ||
<string>x86_64</string> | ||
</array> | ||
<key>SupportedPlatform</key> | ||
<string>ios</string> | ||
<key>SupportedPlatformVariant</key> | ||
<string>simulator</string> | ||
</dict> | ||
</array> | ||
<key>CFBundlePackageType</key> | ||
<string>XFWK</string> | ||
<key>XCFrameworkFormatVersion</key> | ||
<string>1.0</string> | ||
</dict> | ||
</plist> |
314 changes: 314 additions & 0 deletions
314
..._blur.xcframework/ios-arm64/BCSymbolMaps/DCB4B1F7-0769-3964-B08A-84F3D2B7F7F4.bcsymbolmap
Large diffs are not rendered by default.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
...ive_blur.xcframework/ios-arm64/dSYMs/react_native_blur.framework.dSYM/Contents/Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.apple.xcode.dsym.org.cocoapods.react-native-blur</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>dSYM</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>0.8.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
</dict> | ||
</plist> |
Binary file added
BIN
+1.29 MB
...s-arm64/dSYMs/react_native_blur.framework.dSYM/Contents/Resources/DWARF/react_native_blur
Binary file not shown.
7 changes: 7 additions & 0 deletions
7
...ive_blur.xcframework/ios-arm64/react_native_blur.framework/Headers/BlurEffectWithAmount.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#import <UIKit/UIKit.h> | ||
|
||
@interface BlurEffectWithAmount : UIBlurEffect | ||
@property (nonatomic, strong) NSNumber *blurAmount; | ||
|
||
+ (instancetype)effectWithStyle:(UIBlurEffectStyle)style andBlurAmount:(NSNumber*)blurAmount; | ||
@end |
17 changes: 17 additions & 0 deletions
17
...rk/react_native_blur.xcframework/ios-arm64/react_native_blur.framework/Headers/BlurView.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#import <UIKit/UIKit.h> | ||
#import "BlurEffectWithAmount.h" | ||
|
||
@interface BlurView : UIView | ||
|
||
@property (nonatomic, copy, nullable) NSString *blurType; | ||
@property (nonatomic, copy, nullable) NSNumber *blurAmount; | ||
@property (nonatomic, copy, nullable) UIColor *reducedTransparencyFallbackColor; | ||
|
||
@property (nonatomic, strong, nullable) BlurEffectWithAmount *blurEffect; | ||
@property (nonatomic, strong, nullable) UIVisualEffectView *blurEffectView; | ||
@property (nonatomic, strong, nullable) UIView *reducedTransparencyFallbackView; | ||
|
||
- (void)updateBlurEffect; | ||
- (void)updateFallbackView; | ||
- (BOOL)useReduceTransparencyFallback; | ||
@end |
5 changes: 5 additions & 0 deletions
5
...t_native_blur.xcframework/ios-arm64/react_native_blur.framework/Headers/BlurViewManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#import <React/RCTViewManager.h> | ||
|
||
@interface BlurViewManager : RCTViewManager | ||
|
||
@end |
4 changes: 4 additions & 0 deletions
4
...eact_native_blur.xcframework/ios-arm64/react_native_blur.framework/Headers/VibrancyView.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#import "BlurView.h" | ||
|
||
@interface VibrancyView : BlurView | ||
@end |
5 changes: 5 additions & 0 deletions
5
...tive_blur.xcframework/ios-arm64/react_native_blur.framework/Headers/VibrancyViewManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#import <React/RCTViewManager.h> | ||
|
||
@interface VibrancyViewManager : RCTViewManager | ||
|
||
@end |
21 changes: 21 additions & 0 deletions
21
...ur.xcframework/ios-arm64/react_native_blur.framework/Headers/react-native-blur-umbrella.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#ifdef __OBJC__ | ||
#import <UIKit/UIKit.h> | ||
#else | ||
#ifndef FOUNDATION_EXPORT | ||
#if defined(__cplusplus) | ||
#define FOUNDATION_EXPORT extern "C" | ||
#else | ||
#define FOUNDATION_EXPORT extern | ||
#endif | ||
#endif | ||
#endif | ||
|
||
#import "BlurEffectWithAmount.h" | ||
#import "BlurView.h" | ||
#import "BlurViewManager.h" | ||
#import "VibrancyView.h" | ||
#import "VibrancyViewManager.h" | ||
|
||
FOUNDATION_EXPORT double react_native_blurVersionNumber; | ||
FOUNDATION_EXPORT const unsigned char react_native_blurVersionString[]; | ||
|
Binary file added
BIN
+804 Bytes
ios/Framework/react_native_blur.xcframework/ios-arm64/react_native_blur.framework/Info.plist
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
...ct_native_blur.xcframework/ios-arm64/react_native_blur.framework/Modules/module.modulemap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
framework module react_native_blur { | ||
umbrella header "react-native-blur-umbrella.h" | ||
|
||
export * | ||
module * { export * } | ||
} |
Binary file added
BIN
+273 KB
...ork/react_native_blur.xcframework/ios-arm64/react_native_blur.framework/react_native_blur
Binary file not shown.
20 changes: 20 additions & 0 deletions
20
...ork/ios-arm64_x86_64-simulator/dSYMs/react_native_blur.framework.dSYM/Contents/Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.apple.xcode.dsym.org.cocoapods.react-native-blur</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>dSYM</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>0.8.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
</dict> | ||
</plist> |
Binary file added
BIN
+2.6 MB
...mulator/dSYMs/react_native_blur.framework.dSYM/Contents/Resources/DWARF/react_native_blur
Binary file not shown.
7 changes: 7 additions & 0 deletions
7
...ork/ios-arm64_x86_64-simulator/react_native_blur.framework/Headers/BlurEffectWithAmount.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#import <UIKit/UIKit.h> | ||
|
||
@interface BlurEffectWithAmount : UIBlurEffect | ||
@property (nonatomic, strong) NSNumber *blurAmount; | ||
|
||
+ (instancetype)effectWithStyle:(UIBlurEffectStyle)style andBlurAmount:(NSNumber*)blurAmount; | ||
@end |
17 changes: 17 additions & 0 deletions
17
...lur.xcframework/ios-arm64_x86_64-simulator/react_native_blur.framework/Headers/BlurView.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#import <UIKit/UIKit.h> | ||
#import "BlurEffectWithAmount.h" | ||
|
||
@interface BlurView : UIView | ||
|
||
@property (nonatomic, copy, nullable) NSString *blurType; | ||
@property (nonatomic, copy, nullable) NSNumber *blurAmount; | ||
@property (nonatomic, copy, nullable) UIColor *reducedTransparencyFallbackColor; | ||
|
||
@property (nonatomic, strong, nullable) BlurEffectWithAmount *blurEffect; | ||
@property (nonatomic, strong, nullable) UIVisualEffectView *blurEffectView; | ||
@property (nonatomic, strong, nullable) UIView *reducedTransparencyFallbackView; | ||
|
||
- (void)updateBlurEffect; | ||
- (void)updateFallbackView; | ||
- (BOOL)useReduceTransparencyFallback; | ||
@end |
5 changes: 5 additions & 0 deletions
5
...ramework/ios-arm64_x86_64-simulator/react_native_blur.framework/Headers/BlurViewManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#import <React/RCTViewManager.h> | ||
|
||
@interface BlurViewManager : RCTViewManager | ||
|
||
@end |
4 changes: 4 additions & 0 deletions
4
...xcframework/ios-arm64_x86_64-simulator/react_native_blur.framework/Headers/VibrancyView.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#import "BlurView.h" | ||
|
||
@interface VibrancyView : BlurView | ||
@end |
5 changes: 5 additions & 0 deletions
5
...work/ios-arm64_x86_64-simulator/react_native_blur.framework/Headers/VibrancyViewManager.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#import <React/RCTViewManager.h> | ||
|
||
@interface VibrancyViewManager : RCTViewManager | ||
|
||
@end |
21 changes: 21 additions & 0 deletions
21
...s-arm64_x86_64-simulator/react_native_blur.framework/Headers/react-native-blur-umbrella.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#ifdef __OBJC__ | ||
#import <UIKit/UIKit.h> | ||
#else | ||
#ifndef FOUNDATION_EXPORT | ||
#if defined(__cplusplus) | ||
#define FOUNDATION_EXPORT extern "C" | ||
#else | ||
#define FOUNDATION_EXPORT extern | ||
#endif | ||
#endif | ||
#endif | ||
|
||
#import "BlurEffectWithAmount.h" | ||
#import "BlurView.h" | ||
#import "BlurViewManager.h" | ||
#import "VibrancyView.h" | ||
#import "VibrancyViewManager.h" | ||
|
||
FOUNDATION_EXPORT double react_native_blurVersionNumber; | ||
FOUNDATION_EXPORT const unsigned char react_native_blurVersionString[]; | ||
|
Binary file added
BIN
+784 Bytes
...native_blur.xcframework/ios-arm64_x86_64-simulator/react_native_blur.framework/Info.plist
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
...framework/ios-arm64_x86_64-simulator/react_native_blur.framework/Modules/module.modulemap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
framework module react_native_blur { | ||
umbrella header "react-native-blur-umbrella.h" | ||
|
||
export * | ||
module * { export * } | ||
} |
Oops, something went wrong.