react-native-kenburns-view 4.0.0 → 5.0.0
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/README.md +48 -25
- package/example/kenburns-example/App.js +78 -0
- package/example/kenburns-example/README.md +32 -0
- package/example/kenburns-example/app.json +21 -0
- package/example/kenburns-example/babel.config.js +6 -0
- package/example/kenburns-example/ios/.xcode.env +11 -0
- package/example/kenburns-example/ios/KenBurnsExample/AppDelegate.h +7 -0
- package/example/kenburns-example/ios/KenBurnsExample/AppDelegate.mm +62 -0
- package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png +0 -0
- package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/example/{KenBurnsExample/ios/KenBurnsExampleNew → kenburns-example/ios/KenBurnsExample}/Images.xcassets/Contents.json +1 -1
- package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/SplashScreenBackground.colorset/Contents.json +20 -0
- package/example/kenburns-example/ios/KenBurnsExample/Info.plist +74 -0
- package/example/kenburns-example/ios/KenBurnsExample/KenBurnsExample-Bridging-Header.h +3 -0
- package/example/kenburns-example/ios/KenBurnsExample/KenBurnsExample.entitlements +5 -0
- package/example/kenburns-example/ios/KenBurnsExample/PrivacyInfo.xcprivacy +37 -0
- package/example/kenburns-example/ios/KenBurnsExample/SplashScreen.storyboard +34 -0
- package/example/kenburns-example/ios/KenBurnsExample/Supporting/Expo.plist +12 -0
- package/example/{KenBurnsExample/ios/KenBurnsExampleNew → kenburns-example/ios/KenBurnsExample}/main.m +1 -7
- package/example/kenburns-example/ios/KenBurnsExample/noop-file.swift +4 -0
- package/example/kenburns-example/ios/KenBurnsExample.xcodeproj/project.pbxproj +536 -0
- package/example/{KenBurnsExample/ios/KenBurnsExampleNew.xcodeproj/xcshareddata/xcschemes/KenBurnsExampleNew.xcscheme → kenburns-example/ios/KenBurnsExample.xcodeproj/xcshareddata/xcschemes/KenBurnsExample.xcscheme} +14 -55
- package/example/kenburns-example/ios/KenBurnsExample.xcworkspace/contents.xcworkspacedata +10 -0
- package/example/kenburns-example/ios/Podfile +66 -0
- package/example/kenburns-example/ios/Podfile.lock +1828 -0
- package/example/kenburns-example/ios/Podfile.properties.json +5 -0
- package/example/kenburns-example/metro.config.js +17 -0
- package/example/kenburns-example/package-lock.json +10971 -0
- package/example/kenburns-example/package.json +21 -0
- package/lib/KenBurnsView.js +207 -107
- package/package.json +2 -5
- package/example/KenBurnsExample/.babelrc +0 -3
- package/example/KenBurnsExample/.buckconfig +0 -6
- package/example/KenBurnsExample/.flowconfig +0 -67
- package/example/KenBurnsExample/.gitattributes +0 -1
- package/example/KenBurnsExample/.snyk +0 -10
- package/example/KenBurnsExample/.watchmanconfig +0 -1
- package/example/KenBurnsExample/App.js +0 -64
- package/example/KenBurnsExample/android/app/BUCK +0 -65
- package/example/KenBurnsExample/android/app/build.gradle +0 -150
- package/example/KenBurnsExample/android/app/proguard-rules.pro +0 -17
- package/example/KenBurnsExample/android/app/src/main/AndroidManifest.xml +0 -26
- package/example/KenBurnsExample/android/app/src/main/java/com/kenburnsexamplenew/MainActivity.java +0 -15
- package/example/KenBurnsExample/android/app/src/main/java/com/kenburnsexamplenew/MainApplication.java +0 -45
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/KenBurnsExample/android/app/src/main/res/values/strings.xml +0 -3
- package/example/KenBurnsExample/android/app/src/main/res/values/styles.xml +0 -8
- package/example/KenBurnsExample/android/build.gradle +0 -40
- package/example/KenBurnsExample/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/KenBurnsExample/android/gradle/wrapper/gradle-wrapper.properties +0 -5
- package/example/KenBurnsExample/android/gradle.properties +0 -20
- package/example/KenBurnsExample/android/gradlew +0 -164
- package/example/KenBurnsExample/android/gradlew.bat +0 -90
- package/example/KenBurnsExample/android/keystores/BUCK +0 -8
- package/example/KenBurnsExample/android/keystores/debug.keystore.properties +0 -4
- package/example/KenBurnsExample/android/settings.gradle +0 -3
- package/example/KenBurnsExample/app.json +0 -4
- package/example/KenBurnsExample/index.js +0 -7
- package/example/KenBurnsExample/ios/KenBurnsExampleNew/AppDelegate.h +0 -14
- package/example/KenBurnsExample/ios/KenBurnsExampleNew/AppDelegate.m +0 -35
- package/example/KenBurnsExample/ios/KenBurnsExampleNew/Base.lproj/LaunchScreen.xib +0 -42
- package/example/KenBurnsExample/ios/KenBurnsExampleNew/Images.xcassets/AppIcon.appiconset/Contents.json +0 -38
- package/example/KenBurnsExample/ios/KenBurnsExampleNew/Info.plist +0 -56
- package/example/KenBurnsExample/ios/KenBurnsExampleNew-tvOS/Info.plist +0 -54
- package/example/KenBurnsExample/ios/KenBurnsExampleNew-tvOSTests/Info.plist +0 -24
- package/example/KenBurnsExample/ios/KenBurnsExampleNew.xcodeproj/project.pbxproj +0 -1468
- package/example/KenBurnsExample/ios/KenBurnsExampleNew.xcodeproj/xcshareddata/xcschemes/KenBurnsExampleNew-tvOS.xcscheme +0 -129
- package/example/KenBurnsExample/ios/KenBurnsExampleNewTests/Info.plist +0 -24
- package/example/KenBurnsExample/ios/KenBurnsExampleNewTests/KenBurnsExampleNewTests.m +0 -68
- package/example/KenBurnsExample/package.json +0 -27
- package/yarn.lock +0 -114
- /package/example/{KenBurnsExample → kenburns-example/assets}/images/image1.jpg +0 -0
- /package/example/{KenBurnsExample → kenburns-example/assets}/images/image2.jpg +0 -0
- /package/example/{KenBurnsExample → kenburns-example/assets}/images/image3.jpg +0 -0
- /package/example/{KenBurnsExample → kenburns-example/assets}/images/placeholder.jpg +0 -0
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Scheme
|
|
3
|
-
LastUpgradeVersion = "0820"
|
|
4
|
-
version = "1.3">
|
|
5
|
-
<BuildAction
|
|
6
|
-
parallelizeBuildables = "NO"
|
|
7
|
-
buildImplicitDependencies = "YES">
|
|
8
|
-
<BuildActionEntries>
|
|
9
|
-
<BuildActionEntry
|
|
10
|
-
buildForTesting = "YES"
|
|
11
|
-
buildForRunning = "YES"
|
|
12
|
-
buildForProfiling = "YES"
|
|
13
|
-
buildForArchiving = "YES"
|
|
14
|
-
buildForAnalyzing = "YES">
|
|
15
|
-
<BuildableReference
|
|
16
|
-
BuildableIdentifier = "primary"
|
|
17
|
-
BlueprintIdentifier = "2D2A28121D9B038B00D4039D"
|
|
18
|
-
BuildableName = "libReact.a"
|
|
19
|
-
BlueprintName = "React-tvOS"
|
|
20
|
-
ReferencedContainer = "container:../node_modules/react-native/React/React.xcodeproj">
|
|
21
|
-
</BuildableReference>
|
|
22
|
-
</BuildActionEntry>
|
|
23
|
-
<BuildActionEntry
|
|
24
|
-
buildForTesting = "YES"
|
|
25
|
-
buildForRunning = "YES"
|
|
26
|
-
buildForProfiling = "YES"
|
|
27
|
-
buildForArchiving = "YES"
|
|
28
|
-
buildForAnalyzing = "YES">
|
|
29
|
-
<BuildableReference
|
|
30
|
-
BuildableIdentifier = "primary"
|
|
31
|
-
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
|
|
32
|
-
BuildableName = "KenBurnsExampleNew-tvOS.app"
|
|
33
|
-
BlueprintName = "KenBurnsExampleNew-tvOS"
|
|
34
|
-
ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
|
|
35
|
-
</BuildableReference>
|
|
36
|
-
</BuildActionEntry>
|
|
37
|
-
<BuildActionEntry
|
|
38
|
-
buildForTesting = "YES"
|
|
39
|
-
buildForRunning = "YES"
|
|
40
|
-
buildForProfiling = "NO"
|
|
41
|
-
buildForArchiving = "NO"
|
|
42
|
-
buildForAnalyzing = "YES">
|
|
43
|
-
<BuildableReference
|
|
44
|
-
BuildableIdentifier = "primary"
|
|
45
|
-
BlueprintIdentifier = "2D02E48F1E0B4A5D006451C7"
|
|
46
|
-
BuildableName = "KenBurnsExampleNew-tvOSTests.xctest"
|
|
47
|
-
BlueprintName = "KenBurnsExampleNew-tvOSTests"
|
|
48
|
-
ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
|
|
49
|
-
</BuildableReference>
|
|
50
|
-
</BuildActionEntry>
|
|
51
|
-
</BuildActionEntries>
|
|
52
|
-
</BuildAction>
|
|
53
|
-
<TestAction
|
|
54
|
-
buildConfiguration = "Debug"
|
|
55
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
56
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
57
|
-
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
58
|
-
<Testables>
|
|
59
|
-
<TestableReference
|
|
60
|
-
skipped = "NO">
|
|
61
|
-
<BuildableReference
|
|
62
|
-
BuildableIdentifier = "primary"
|
|
63
|
-
BlueprintIdentifier = "2D02E48F1E0B4A5D006451C7"
|
|
64
|
-
BuildableName = "KenBurnsExampleNew-tvOSTests.xctest"
|
|
65
|
-
BlueprintName = "KenBurnsExampleNew-tvOSTests"
|
|
66
|
-
ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
|
|
67
|
-
</BuildableReference>
|
|
68
|
-
</TestableReference>
|
|
69
|
-
</Testables>
|
|
70
|
-
<MacroExpansion>
|
|
71
|
-
<BuildableReference
|
|
72
|
-
BuildableIdentifier = "primary"
|
|
73
|
-
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
|
|
74
|
-
BuildableName = "KenBurnsExampleNew-tvOS.app"
|
|
75
|
-
BlueprintName = "KenBurnsExampleNew-tvOS"
|
|
76
|
-
ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
|
|
77
|
-
</BuildableReference>
|
|
78
|
-
</MacroExpansion>
|
|
79
|
-
<AdditionalOptions>
|
|
80
|
-
</AdditionalOptions>
|
|
81
|
-
</TestAction>
|
|
82
|
-
<LaunchAction
|
|
83
|
-
buildConfiguration = "Debug"
|
|
84
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
85
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
86
|
-
launchStyle = "0"
|
|
87
|
-
useCustomWorkingDirectory = "NO"
|
|
88
|
-
ignoresPersistentStateOnLaunch = "NO"
|
|
89
|
-
debugDocumentVersioning = "YES"
|
|
90
|
-
debugServiceExtension = "internal"
|
|
91
|
-
allowLocationSimulation = "YES">
|
|
92
|
-
<BuildableProductRunnable
|
|
93
|
-
runnableDebuggingMode = "0">
|
|
94
|
-
<BuildableReference
|
|
95
|
-
BuildableIdentifier = "primary"
|
|
96
|
-
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
|
|
97
|
-
BuildableName = "KenBurnsExampleNew-tvOS.app"
|
|
98
|
-
BlueprintName = "KenBurnsExampleNew-tvOS"
|
|
99
|
-
ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
|
|
100
|
-
</BuildableReference>
|
|
101
|
-
</BuildableProductRunnable>
|
|
102
|
-
<AdditionalOptions>
|
|
103
|
-
</AdditionalOptions>
|
|
104
|
-
</LaunchAction>
|
|
105
|
-
<ProfileAction
|
|
106
|
-
buildConfiguration = "Release"
|
|
107
|
-
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
108
|
-
savedToolIdentifier = ""
|
|
109
|
-
useCustomWorkingDirectory = "NO"
|
|
110
|
-
debugDocumentVersioning = "YES">
|
|
111
|
-
<BuildableProductRunnable
|
|
112
|
-
runnableDebuggingMode = "0">
|
|
113
|
-
<BuildableReference
|
|
114
|
-
BuildableIdentifier = "primary"
|
|
115
|
-
BlueprintIdentifier = "2D02E47A1E0B4A5D006451C7"
|
|
116
|
-
BuildableName = "KenBurnsExampleNew-tvOS.app"
|
|
117
|
-
BlueprintName = "KenBurnsExampleNew-tvOS"
|
|
118
|
-
ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
|
|
119
|
-
</BuildableReference>
|
|
120
|
-
</BuildableProductRunnable>
|
|
121
|
-
</ProfileAction>
|
|
122
|
-
<AnalyzeAction
|
|
123
|
-
buildConfiguration = "Debug">
|
|
124
|
-
</AnalyzeAction>
|
|
125
|
-
<ArchiveAction
|
|
126
|
-
buildConfiguration = "Release"
|
|
127
|
-
revealArchiveInOrganizer = "YES">
|
|
128
|
-
</ArchiveAction>
|
|
129
|
-
</Scheme>
|
|
@@ -1,24 +0,0 @@
|
|
|
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>CFBundleDevelopmentRegion</key>
|
|
6
|
-
<string>en</string>
|
|
7
|
-
<key>CFBundleExecutable</key>
|
|
8
|
-
<string>$(EXECUTABLE_NAME)</string>
|
|
9
|
-
<key>CFBundleIdentifier</key>
|
|
10
|
-
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
|
|
11
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
-
<string>6.0</string>
|
|
13
|
-
<key>CFBundleName</key>
|
|
14
|
-
<string>$(PRODUCT_NAME)</string>
|
|
15
|
-
<key>CFBundlePackageType</key>
|
|
16
|
-
<string>BNDL</string>
|
|
17
|
-
<key>CFBundleShortVersionString</key>
|
|
18
|
-
<string>1.0</string>
|
|
19
|
-
<key>CFBundleSignature</key>
|
|
20
|
-
<string>????</string>
|
|
21
|
-
<key>CFBundleVersion</key>
|
|
22
|
-
<string>1</string>
|
|
23
|
-
</dict>
|
|
24
|
-
</plist>
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) 2015-present, Facebook, Inc.
|
|
3
|
-
*
|
|
4
|
-
* This source code is licensed under the MIT license found in the
|
|
5
|
-
* LICENSE file in the root directory of this source tree.
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
#import <UIKit/UIKit.h>
|
|
9
|
-
#import <XCTest/XCTest.h>
|
|
10
|
-
|
|
11
|
-
#import <React/RCTLog.h>
|
|
12
|
-
#import <React/RCTRootView.h>
|
|
13
|
-
|
|
14
|
-
#define TIMEOUT_SECONDS 600
|
|
15
|
-
#define TEXT_TO_LOOK_FOR @"Welcome to React Native!"
|
|
16
|
-
|
|
17
|
-
@interface KenBurnsExampleNewTests : XCTestCase
|
|
18
|
-
|
|
19
|
-
@end
|
|
20
|
-
|
|
21
|
-
@implementation KenBurnsExampleNewTests
|
|
22
|
-
|
|
23
|
-
- (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
|
|
24
|
-
{
|
|
25
|
-
if (test(view)) {
|
|
26
|
-
return YES;
|
|
27
|
-
}
|
|
28
|
-
for (UIView *subview in [view subviews]) {
|
|
29
|
-
if ([self findSubviewInView:subview matching:test]) {
|
|
30
|
-
return YES;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
return NO;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
- (void)testRendersWelcomeScreen
|
|
37
|
-
{
|
|
38
|
-
UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
|
|
39
|
-
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
|
|
40
|
-
BOOL foundElement = NO;
|
|
41
|
-
|
|
42
|
-
__block NSString *redboxError = nil;
|
|
43
|
-
RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
|
|
44
|
-
if (level >= RCTLogLevelError) {
|
|
45
|
-
redboxError = message;
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
|
|
49
|
-
while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
|
|
50
|
-
[[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
|
51
|
-
[[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
|
|
52
|
-
|
|
53
|
-
foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
|
|
54
|
-
if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
|
|
55
|
-
return YES;
|
|
56
|
-
}
|
|
57
|
-
return NO;
|
|
58
|
-
}];
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
RCTSetLogFunction(RCTDefaultLogFunction);
|
|
62
|
-
|
|
63
|
-
XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
|
|
64
|
-
XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
@end
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "KenBurnsExampleNew",
|
|
3
|
-
"version": "0.0.1",
|
|
4
|
-
"private": true,
|
|
5
|
-
"scripts": {
|
|
6
|
-
"start": "node node_modules/react-native/local-cli/cli.js start",
|
|
7
|
-
"test": "jest",
|
|
8
|
-
"snyk-protect": "snyk protect",
|
|
9
|
-
"prepare": "npm run snyk-protect"
|
|
10
|
-
},
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"react": "16.4.1",
|
|
13
|
-
"react-native": "0.59.0",
|
|
14
|
-
"react-native-kenburns-view": "file:../../",
|
|
15
|
-
"snyk": "^1.203.0"
|
|
16
|
-
},
|
|
17
|
-
"devDependencies": {
|
|
18
|
-
"babel-jest": "23.4.2",
|
|
19
|
-
"babel-preset-react-native": "5.0.2",
|
|
20
|
-
"jest": "23.5.0",
|
|
21
|
-
"react-test-renderer": "16.4.1"
|
|
22
|
-
},
|
|
23
|
-
"jest": {
|
|
24
|
-
"preset": "react-native"
|
|
25
|
-
},
|
|
26
|
-
"snyk": true
|
|
27
|
-
}
|
package/yarn.lock
DELETED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
2
|
-
# yarn lockfile v1
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
asap@~2.0.3:
|
|
6
|
-
version "2.0.6"
|
|
7
|
-
resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
|
|
8
|
-
|
|
9
|
-
core-js@^1.0.0:
|
|
10
|
-
version "1.2.7"
|
|
11
|
-
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
|
|
12
|
-
|
|
13
|
-
encoding@^0.1.11:
|
|
14
|
-
version "0.1.12"
|
|
15
|
-
resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
|
|
16
|
-
dependencies:
|
|
17
|
-
iconv-lite "~0.4.13"
|
|
18
|
-
|
|
19
|
-
fbjs@^0.8.16:
|
|
20
|
-
version "0.8.16"
|
|
21
|
-
resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.16.tgz#5e67432f550dc41b572bf55847b8aca64e5337db"
|
|
22
|
-
dependencies:
|
|
23
|
-
core-js "^1.0.0"
|
|
24
|
-
isomorphic-fetch "^2.1.1"
|
|
25
|
-
loose-envify "^1.0.0"
|
|
26
|
-
object-assign "^4.1.0"
|
|
27
|
-
promise "^7.1.1"
|
|
28
|
-
setimmediate "^1.0.5"
|
|
29
|
-
ua-parser-js "^0.7.9"
|
|
30
|
-
|
|
31
|
-
iconv-lite@~0.4.13:
|
|
32
|
-
version "0.4.19"
|
|
33
|
-
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b"
|
|
34
|
-
|
|
35
|
-
is-stream@^1.0.1:
|
|
36
|
-
version "1.1.0"
|
|
37
|
-
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
|
38
|
-
|
|
39
|
-
isomorphic-fetch@^2.1.1:
|
|
40
|
-
version "2.2.1"
|
|
41
|
-
resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
|
|
42
|
-
dependencies:
|
|
43
|
-
node-fetch "^1.0.1"
|
|
44
|
-
whatwg-fetch ">=0.10.0"
|
|
45
|
-
|
|
46
|
-
js-tokens@^3.0.0:
|
|
47
|
-
version "3.0.2"
|
|
48
|
-
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
|
49
|
-
|
|
50
|
-
loose-envify@^1.0.0, loose-envify@^1.3.1:
|
|
51
|
-
version "1.3.1"
|
|
52
|
-
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.3.1.tgz#d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848"
|
|
53
|
-
dependencies:
|
|
54
|
-
js-tokens "^3.0.0"
|
|
55
|
-
|
|
56
|
-
node-fetch@^1.0.1:
|
|
57
|
-
version "1.7.3"
|
|
58
|
-
resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
|
|
59
|
-
dependencies:
|
|
60
|
-
encoding "^0.1.11"
|
|
61
|
-
is-stream "^1.0.1"
|
|
62
|
-
|
|
63
|
-
object-assign@^2.0.0:
|
|
64
|
-
version "2.1.1"
|
|
65
|
-
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa"
|
|
66
|
-
|
|
67
|
-
object-assign@^4.1.0, object-assign@^4.1.1:
|
|
68
|
-
version "4.1.1"
|
|
69
|
-
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
|
70
|
-
|
|
71
|
-
promise@^7.1.1:
|
|
72
|
-
version "7.3.1"
|
|
73
|
-
resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf"
|
|
74
|
-
dependencies:
|
|
75
|
-
asap "~2.0.3"
|
|
76
|
-
|
|
77
|
-
prop-types@^15.6.0:
|
|
78
|
-
version "15.6.0"
|
|
79
|
-
resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.0.tgz#ceaf083022fc46b4a35f69e13ef75aed0d639856"
|
|
80
|
-
dependencies:
|
|
81
|
-
fbjs "^0.8.16"
|
|
82
|
-
loose-envify "^1.3.1"
|
|
83
|
-
object-assign "^4.1.1"
|
|
84
|
-
|
|
85
|
-
react-mixin@2:
|
|
86
|
-
version "2.0.2"
|
|
87
|
-
resolved "https://registry.yarnpkg.com/react-mixin/-/react-mixin-2.0.2.tgz#5133570554fa8954b7b847422dbd5e8c7a0a73d0"
|
|
88
|
-
dependencies:
|
|
89
|
-
object-assign "^2.0.0"
|
|
90
|
-
smart-mixin "^1.2.0"
|
|
91
|
-
|
|
92
|
-
react-timer-mixin@^0.13.3:
|
|
93
|
-
version "0.13.3"
|
|
94
|
-
resolved "https://registry.yarnpkg.com/react-timer-mixin/-/react-timer-mixin-0.13.3.tgz#0da8b9f807ec07dc3e854d082c737c65605b3d22"
|
|
95
|
-
|
|
96
|
-
rebound@^0.0.15:
|
|
97
|
-
version "0.0.15"
|
|
98
|
-
resolved "https://registry.yarnpkg.com/rebound/-/rebound-0.0.15.tgz#b7796972cd3e6eca37fd1477217e64c77bb122de"
|
|
99
|
-
|
|
100
|
-
setimmediate@^1.0.5:
|
|
101
|
-
version "1.0.5"
|
|
102
|
-
resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
|
|
103
|
-
|
|
104
|
-
smart-mixin@^1.2.0:
|
|
105
|
-
version "1.2.1"
|
|
106
|
-
resolved "https://registry.yarnpkg.com/smart-mixin/-/smart-mixin-1.2.1.tgz#11a2b3e4628dfee16ac9cb51edd301be21be1452"
|
|
107
|
-
|
|
108
|
-
ua-parser-js@^0.7.9:
|
|
109
|
-
version "0.7.17"
|
|
110
|
-
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac"
|
|
111
|
-
|
|
112
|
-
whatwg-fetch@>=0.10.0:
|
|
113
|
-
version "2.0.3"
|
|
114
|
-
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|