\\)? *\\(site=[a-z,_]*react_native\\(_ios\\)?_\\(oss\\|fb\\)[a-z,_]*\\)?)\\)?:? #[0-9]+
49 | suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
50 |
51 | [lints]
52 | sketchy-null-number=warn
53 | sketchy-null-mixed=warn
54 | sketchy-number=warn
55 | untyped-type-import=warn
56 | nonstrict-import=warn
57 | deprecated-type=warn
58 | unsafe-getters-setters=warn
59 | unnecessary-invariant=warn
60 | signature-verification-failure=warn
61 | deprecated-utility=error
62 |
63 | [strict]
64 | deprecated-type
65 | nonstrict-import
66 | sketchy-null
67 | unclear-type
68 | unsafe-getters-setters
69 | untyped-import
70 | untyped-type-import
71 |
72 | [version]
73 | ^0.122.0
74 |
--------------------------------------------------------------------------------
/demo/.gitattributes:
--------------------------------------------------------------------------------
1 | *.pbxproj -text
2 |
--------------------------------------------------------------------------------
/demo/.gitignore:
--------------------------------------------------------------------------------
1 | # OSX
2 | #
3 | .DS_Store
4 |
5 | # Xcode
6 | #
7 | build/
8 | *.pbxuser
9 | !default.pbxuser
10 | *.mode1v3
11 | !default.mode1v3
12 | *.mode2v3
13 | !default.mode2v3
14 | *.perspectivev3
15 | !default.perspectivev3
16 | xcuserdata
17 | *.xccheckout
18 | *.moved-aside
19 | DerivedData
20 | *.hmap
21 | *.ipa
22 | *.xcuserstate
23 |
24 | # Android/IntelliJ
25 | #
26 | build/
27 | .idea
28 | .gradle
29 | local.properties
30 | *.iml
31 |
32 | # node.js
33 | #
34 | node_modules/
35 | npm-debug.log
36 | yarn-error.log
37 |
38 | # BUCK
39 | buck-out/
40 | \.buckd/
41 | *.keystore
42 | !debug.keystore
43 |
44 | # fastlane
45 | #
46 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
47 | # screenshots whenever they are needed.
48 | # For more information about the recommended setup visit:
49 | # https://docs.fastlane.tools/best-practices/source-control/
50 |
51 | */fastlane/report.xml
52 | */fastlane/Preview.html
53 | */fastlane/screenshots
54 |
55 | # Bundle artifact
56 | *.jsbundle
57 |
58 | # CocoaPods
59 | /ios/Pods/
60 |
--------------------------------------------------------------------------------
/demo/.prettierrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | bracketSpacing: false,
3 | jsxBracketSameLine: true,
4 | singleQuote: true,
5 | trailingComma: 'all',
6 | };
7 |
--------------------------------------------------------------------------------
/demo/.watchmanconfig:
--------------------------------------------------------------------------------
1 | {}
--------------------------------------------------------------------------------
/demo/App.js:
--------------------------------------------------------------------------------
1 | import React, {useState} from 'react';
2 | import { StyleSheet, View, Text } from 'react-native';
3 | import { Rating } from 'react-native-rating-element';
4 |
5 | const App = () => {
6 | const [rating, setRating] = useState(0);
7 | const [imageRating, setImageRating] = useState(0);
8 |
9 | return (
10 |
11 |
12 |
13 | RTL direction (4.5/5, direction="row-reverse")
14 |
15 |
16 |
26 |
27 |
28 |
29 |
30 |
31 | Interactive Rating (3/5, direction="column-reverse")
32 |
33 | setRating(pos)}
42 | />
43 | {rating}/5 (200)
44 |
45 |
46 |
47 |
48 | Custom Images Rating
49 |
50 | setImageRating(pos)}
57 | selectedIconImage={require('./assets/filled.png')}
58 | emptyIconImage={require('./assets/empty.png')}
59 | />
60 | {imageRating}/5 (100)
61 |
62 |
63 |
64 | );
65 | };
66 |
67 | const styles = StyleSheet.create({
68 | body: {
69 | backgroundColor: '#fff',
70 | flex: 1,
71 | alignItems: 'center',
72 | justifyContent: 'center',
73 | },
74 | card: {
75 | padding: 10,
76 | borderWidth: 1,
77 | borderColor: '#eee',
78 | marginBottom: 20,
79 | },
80 | });
81 |
82 | export default App;
83 |
--------------------------------------------------------------------------------
/demo/__tests__/App-test.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import 'react-native';
6 | import React from 'react';
7 | import App from '../App';
8 |
9 | // Note: test renderer must be required after react-native.
10 | import renderer from 'react-test-renderer';
11 |
12 | it('renders correctly', () => {
13 | renderer.create( );
14 | });
15 |
--------------------------------------------------------------------------------
/demo/android/app/_BUCK:
--------------------------------------------------------------------------------
1 | # To learn about Buck see [Docs](https://buckbuild.com/).
2 | # To run your application with Buck:
3 | # - install Buck
4 | # - `npm start` - to start the packager
5 | # - `cd android`
6 | # - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
7 | # - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
8 | # - `buck install -r android/app` - compile, install and run application
9 | #
10 |
11 | load(":build_defs.bzl", "create_aar_targets", "create_jar_targets")
12 |
13 | lib_deps = []
14 |
15 | create_aar_targets(glob(["libs/*.aar"]))
16 |
17 | create_jar_targets(glob(["libs/*.jar"]))
18 |
19 | android_library(
20 | name = "all-libs",
21 | exported_deps = lib_deps,
22 | )
23 |
24 | android_library(
25 | name = "app-code",
26 | srcs = glob([
27 | "src/main/java/**/*.java",
28 | ]),
29 | deps = [
30 | ":all-libs",
31 | ":build_config",
32 | ":res",
33 | ],
34 | )
35 |
36 | android_build_config(
37 | name = "build_config",
38 | package = "com.demo",
39 | )
40 |
41 | android_resource(
42 | name = "res",
43 | package = "com.demo",
44 | res = "src/main/res",
45 | )
46 |
47 | android_binary(
48 | name = "app",
49 | keystore = "//android/keystores:debug",
50 | manifest = "src/main/AndroidManifest.xml",
51 | package_type = "debug",
52 | deps = [
53 | ":app-code",
54 | ],
55 | )
56 |
--------------------------------------------------------------------------------
/demo/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: "com.android.application"
2 |
3 | import com.android.build.OutputFile
4 |
5 | /**
6 | * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
7 | * and bundleReleaseJsAndAssets).
8 | * These basically call `react-native bundle` with the correct arguments during the Android build
9 | * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
10 | * bundle directly from the development server. Below you can see all the possible configurations
11 | * and their defaults. If you decide to add a configuration block, make sure to add it before the
12 | * `apply from: "../../node_modules/react-native/react.gradle"` line.
13 | *
14 | * project.ext.react = [
15 | * // the name of the generated asset file containing your JS bundle
16 | * bundleAssetName: "index.android.bundle",
17 | *
18 | * // the entry file for bundle generation. If none specified and
19 | * // "index.android.js" exists, it will be used. Otherwise "index.js" is
20 | * // default. Can be overridden with ENTRY_FILE environment variable.
21 | * entryFile: "index.android.js",
22 | *
23 | * // https://reactnative.dev/docs/performance#enable-the-ram-format
24 | * bundleCommand: "ram-bundle",
25 | *
26 | * // whether to bundle JS and assets in debug mode
27 | * bundleInDebug: false,
28 | *
29 | * // whether to bundle JS and assets in release mode
30 | * bundleInRelease: true,
31 | *
32 | * // whether to bundle JS and assets in another build variant (if configured).
33 | * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
34 | * // The configuration property can be in the following formats
35 | * // 'bundleIn${productFlavor}${buildType}'
36 | * // 'bundleIn${buildType}'
37 | * // bundleInFreeDebug: true,
38 | * // bundleInPaidRelease: true,
39 | * // bundleInBeta: true,
40 | *
41 | * // whether to disable dev mode in custom build variants (by default only disabled in release)
42 | * // for example: to disable dev mode in the staging build type (if configured)
43 | * devDisabledInStaging: true,
44 | * // The configuration property can be in the following formats
45 | * // 'devDisabledIn${productFlavor}${buildType}'
46 | * // 'devDisabledIn${buildType}'
47 | *
48 | * // the root of your project, i.e. where "package.json" lives
49 | * root: "../../",
50 | *
51 | * // where to put the JS bundle asset in debug mode
52 | * jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
53 | *
54 | * // where to put the JS bundle asset in release mode
55 | * jsBundleDirRelease: "$buildDir/intermediates/assets/release",
56 | *
57 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
58 | * // require('./image.png')), in debug mode
59 | * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
60 | *
61 | * // where to put drawable resources / React Native assets, e.g. the ones you use via
62 | * // require('./image.png')), in release mode
63 | * resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
64 | *
65 | * // by default the gradle tasks are skipped if none of the JS files or assets change; this means
66 | * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
67 | * // date; if you have any other folders that you want to ignore for performance reasons (gradle
68 | * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
69 | * // for example, you might want to remove it from here.
70 | * inputExcludes: ["android/**", "ios/**"],
71 | *
72 | * // override which node gets called and with what additional arguments
73 | * nodeExecutableAndArgs: ["node"],
74 | *
75 | * // supply additional arguments to the packager
76 | * extraPackagerArgs: []
77 | * ]
78 | */
79 |
80 | project.ext.react = [
81 | enableHermes: false, // clean and rebuild if changing
82 | ]
83 |
84 | apply from: "../../node_modules/react-native/react.gradle"
85 |
86 | /**
87 | * Set this to true to create two separate APKs instead of one:
88 | * - An APK that only works on ARM devices
89 | * - An APK that only works on x86 devices
90 | * The advantage is the size of the APK is reduced by about 4MB.
91 | * Upload all the APKs to the Play Store and people will download
92 | * the correct one based on the CPU architecture of their device.
93 | */
94 | def enableSeparateBuildPerCPUArchitecture = false
95 |
96 | /**
97 | * Run Proguard to shrink the Java bytecode in release builds.
98 | */
99 | def enableProguardInReleaseBuilds = false
100 |
101 | /**
102 | * The preferred build flavor of JavaScriptCore.
103 | *
104 | * For example, to use the international variant, you can use:
105 | * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
106 | *
107 | * The international variant includes ICU i18n library and necessary data
108 | * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
109 | * give correct results when using with locales other than en-US. Note that
110 | * this variant is about 6MiB larger per architecture than default.
111 | */
112 | def jscFlavor = 'org.webkit:android-jsc:+'
113 |
114 | /**
115 | * Whether to enable the Hermes VM.
116 | *
117 | * This should be set on project.ext.react and mirrored here. If it is not set
118 | * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
119 | * and the benefits of using Hermes will therefore be sharply reduced.
120 | */
121 | def enableHermes = project.ext.react.get("enableHermes", false);
122 |
123 | android {
124 | compileSdkVersion rootProject.ext.compileSdkVersion
125 |
126 | compileOptions {
127 | sourceCompatibility JavaVersion.VERSION_1_8
128 | targetCompatibility JavaVersion.VERSION_1_8
129 | }
130 |
131 | defaultConfig {
132 | applicationId "com.demo"
133 | minSdkVersion rootProject.ext.minSdkVersion
134 | targetSdkVersion rootProject.ext.targetSdkVersion
135 | versionCode 1
136 | versionName "1.0"
137 | }
138 | splits {
139 | abi {
140 | reset()
141 | enable enableSeparateBuildPerCPUArchitecture
142 | universalApk false // If true, also generate a universal APK
143 | include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
144 | }
145 | }
146 | signingConfigs {
147 | debug {
148 | storeFile file('debug.keystore')
149 | storePassword 'android'
150 | keyAlias 'androiddebugkey'
151 | keyPassword 'android'
152 | }
153 | }
154 | buildTypes {
155 | debug {
156 | signingConfig signingConfigs.debug
157 | }
158 | release {
159 | // Caution! In production, you need to generate your own keystore file.
160 | // see https://reactnative.dev/docs/signed-apk-android.
161 | signingConfig signingConfigs.debug
162 | minifyEnabled enableProguardInReleaseBuilds
163 | proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
164 | }
165 | }
166 |
167 | // applicationVariants are e.g. debug, release
168 | applicationVariants.all { variant ->
169 | variant.outputs.each { output ->
170 | // For each separate APK per architecture, set a unique version code as described here:
171 | // https://developer.android.com/studio/build/configure-apk-splits.html
172 | def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
173 | def abi = output.getFilter(OutputFile.ABI)
174 | if (abi != null) { // null for the universal-debug, universal-release variants
175 | output.versionCodeOverride =
176 | versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
177 | }
178 |
179 | }
180 | }
181 | }
182 |
183 | dependencies {
184 | implementation fileTree(dir: "libs", include: ["*.jar"])
185 | //noinspection GradleDynamicVersion
186 | implementation "com.facebook.react:react-native:+" // From node_modules
187 |
188 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
189 |
190 | debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
191 | exclude group:'com.facebook.fbjni'
192 | }
193 |
194 | debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
195 | exclude group:'com.facebook.flipper'
196 | exclude group:'com.squareup.okhttp3', module:'okhttp'
197 | }
198 |
199 | debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
200 | exclude group:'com.facebook.flipper'
201 | }
202 |
203 | if (enableHermes) {
204 | def hermesPath = "../../node_modules/hermes-engine/android/";
205 | debugImplementation files(hermesPath + "hermes-debug.aar")
206 | releaseImplementation files(hermesPath + "hermes-release.aar")
207 | } else {
208 | implementation jscFlavor
209 | }
210 | }
211 |
212 | // Run this once to be able to run the application with BUCK
213 | // puts all compile dependencies into folder libs for BUCK to use
214 | task copyDownloadableDepsToLibs(type: Copy) {
215 | from configurations.compile
216 | into 'libs'
217 | }
218 |
219 | apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
220 |
221 | apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
222 |
--------------------------------------------------------------------------------
/demo/android/app/build_defs.bzl:
--------------------------------------------------------------------------------
1 | """Helper definitions to glob .aar and .jar targets"""
2 |
3 | def create_aar_targets(aarfiles):
4 | for aarfile in aarfiles:
5 | name = "aars__" + aarfile[aarfile.rindex("/") + 1:aarfile.rindex(".aar")]
6 | lib_deps.append(":" + name)
7 | android_prebuilt_aar(
8 | name = name,
9 | aar = aarfile,
10 | )
11 |
12 | def create_jar_targets(jarfiles):
13 | for jarfile in jarfiles:
14 | name = "jars__" + jarfile[jarfile.rindex("/") + 1:jarfile.rindex(".jar")]
15 | lib_deps.append(":" + name)
16 | prebuilt_jar(
17 | name = name,
18 | binary_jar = jarfile,
19 | )
20 |
--------------------------------------------------------------------------------
/demo/android/app/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/debug.keystore
--------------------------------------------------------------------------------
/demo/android/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
--------------------------------------------------------------------------------
/demo/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/demo/android/app/src/debug/java/com/demo/ReactNativeFlipper.java:
--------------------------------------------------------------------------------
1 | /**
2 | * Copyright (c) Facebook, Inc. and its affiliates.
3 | *
4 | * This source code is licensed under the MIT license found in the LICENSE file in the root
5 | * directory of this source tree.
6 | */
7 | package com.demo;
8 |
9 | import android.content.Context;
10 | import com.facebook.flipper.android.AndroidFlipperClient;
11 | import com.facebook.flipper.android.utils.FlipperUtils;
12 | import com.facebook.flipper.core.FlipperClient;
13 | import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
14 | import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
15 | import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
16 | import com.facebook.flipper.plugins.inspector.DescriptorMapping;
17 | import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
18 | import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
19 | import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
20 | import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
21 | import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
22 | import com.facebook.react.ReactInstanceManager;
23 | import com.facebook.react.bridge.ReactContext;
24 | import com.facebook.react.modules.network.NetworkingModule;
25 | import okhttp3.OkHttpClient;
26 |
27 | public class ReactNativeFlipper {
28 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
29 | if (FlipperUtils.shouldEnableFlipper(context)) {
30 | final FlipperClient client = AndroidFlipperClient.getInstance(context);
31 |
32 | client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
33 | client.addPlugin(new ReactFlipperPlugin());
34 | client.addPlugin(new DatabasesFlipperPlugin(context));
35 | client.addPlugin(new SharedPreferencesFlipperPlugin(context));
36 | client.addPlugin(CrashReporterPlugin.getInstance());
37 |
38 | NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
39 | NetworkingModule.setCustomClientBuilder(
40 | new NetworkingModule.CustomClientBuilder() {
41 | @Override
42 | public void apply(OkHttpClient.Builder builder) {
43 | builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
44 | }
45 | });
46 | client.addPlugin(networkFlipperPlugin);
47 | client.start();
48 |
49 | // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
50 | // Hence we run if after all native modules have been initialized
51 | ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
52 | if (reactContext == null) {
53 | reactInstanceManager.addReactInstanceEventListener(
54 | new ReactInstanceManager.ReactInstanceEventListener() {
55 | @Override
56 | public void onReactContextInitialized(ReactContext reactContext) {
57 | reactInstanceManager.removeReactInstanceEventListener(this);
58 | reactContext.runOnNativeModulesQueueThread(
59 | new Runnable() {
60 | @Override
61 | public void run() {
62 | client.addPlugin(new FrescoFlipperPlugin());
63 | }
64 | });
65 | }
66 | });
67 | } else {
68 | client.addPlugin(new FrescoFlipperPlugin());
69 | }
70 | }
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/demo/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
13 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/demo/android/app/src/main/java/com/demo/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.demo;
2 |
3 | import com.facebook.react.ReactActivity;
4 |
5 | public class MainActivity extends ReactActivity {
6 |
7 | /**
8 | * Returns the name of the main component registered from JavaScript. This is used to schedule
9 | * rendering of the component.
10 | */
11 | @Override
12 | protected String getMainComponentName() {
13 | return "demo";
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/demo/android/app/src/main/java/com/demo/MainApplication.java:
--------------------------------------------------------------------------------
1 | package com.demo;
2 |
3 | import android.app.Application;
4 | import android.content.Context;
5 | import com.facebook.react.PackageList;
6 | import com.facebook.react.ReactApplication;
7 | import com.facebook.react.ReactInstanceManager;
8 | import com.facebook.react.ReactNativeHost;
9 | import com.facebook.react.ReactPackage;
10 | import com.facebook.soloader.SoLoader;
11 | import java.lang.reflect.InvocationTargetException;
12 | import java.util.List;
13 |
14 | public class MainApplication extends Application implements ReactApplication {
15 |
16 | private final ReactNativeHost mReactNativeHost =
17 | new ReactNativeHost(this) {
18 | @Override
19 | public boolean getUseDeveloperSupport() {
20 | return BuildConfig.DEBUG;
21 | }
22 |
23 | @Override
24 | protected List getPackages() {
25 | @SuppressWarnings("UnnecessaryLocalVariable")
26 | List packages = new PackageList(this).getPackages();
27 | // Packages that cannot be autolinked yet can be added manually here, for example:
28 | // packages.add(new MyReactNativePackage());
29 | return packages;
30 | }
31 |
32 | @Override
33 | protected String getJSMainModuleName() {
34 | return "index";
35 | }
36 | };
37 |
38 | @Override
39 | public ReactNativeHost getReactNativeHost() {
40 | return mReactNativeHost;
41 | }
42 |
43 | @Override
44 | public void onCreate() {
45 | super.onCreate();
46 | SoLoader.init(this, /* native exopackage */ false);
47 | initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
48 | }
49 |
50 | /**
51 | * Loads Flipper in React Native templates. Call this in the onCreate method with something like
52 | * initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
53 | *
54 | * @param context
55 | * @param reactInstanceManager
56 | */
57 | private static void initializeFlipper(
58 | Context context, ReactInstanceManager reactInstanceManager) {
59 | if (BuildConfig.DEBUG) {
60 | try {
61 | /*
62 | We use reflection here to pick up the class that initializes Flipper,
63 | since Flipper library is not available in release mode
64 | */
65 | Class> aClass = Class.forName("com.demo.ReactNativeFlipper");
66 | aClass
67 | .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class)
68 | .invoke(null, context, reactInstanceManager);
69 | } catch (ClassNotFoundException e) {
70 | e.printStackTrace();
71 | } catch (NoSuchMethodException e) {
72 | e.printStackTrace();
73 | } catch (IllegalAccessException e) {
74 | e.printStackTrace();
75 | } catch (InvocationTargetException e) {
76 | e.printStackTrace();
77 | }
78 | }
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | demo
3 |
4 |
--------------------------------------------------------------------------------
/demo/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/demo/android/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | ext {
5 | buildToolsVersion = "29.0.2"
6 | minSdkVersion = 16
7 | compileSdkVersion = 29
8 | targetSdkVersion = 29
9 | }
10 | repositories {
11 | google()
12 | jcenter()
13 | }
14 | dependencies {
15 | classpath("com.android.tools.build:gradle:3.5.3")
16 | // NOTE: Do not place your application dependencies here; they belong
17 | // in the individual module build.gradle files
18 | }
19 | }
20 |
21 | allprojects {
22 | repositories {
23 | mavenLocal()
24 | maven {
25 | // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
26 | url("$rootDir/../node_modules/react-native/android")
27 | }
28 | maven {
29 | // Android JSC is installed from npm
30 | url("$rootDir/../node_modules/jsc-android/dist")
31 | }
32 |
33 | google()
34 | jcenter()
35 | maven { url 'https://www.jitpack.io' }
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/demo/android/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
19 |
20 | # AndroidX package structure to make it clearer which packages are bundled with the
21 | # Android operating system, and which are packaged with your app's APK
22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
23 | android.useAndroidX=true
24 | # Automatically convert third-party libraries to use AndroidX
25 | android.enableJetifier=true
26 |
27 | # Version of flipper SDK to use with React Native
28 | FLIPPER_VERSION=0.37.0
29 |
--------------------------------------------------------------------------------
/demo/android/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/android/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/demo/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | distributionBase=GRADLE_USER_HOME
2 | distributionPath=wrapper/dists
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-all.zip
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 |
--------------------------------------------------------------------------------
/demo/android/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | #
4 | # Copyright 2015 the original author or authors.
5 | #
6 | # Licensed under the Apache License, Version 2.0 (the "License");
7 | # you may not use this file except in compliance with the License.
8 | # You may obtain a copy of the License at
9 | #
10 | # https://www.apache.org/licenses/LICENSE-2.0
11 | #
12 | # Unless required by applicable law or agreed to in writing, software
13 | # distributed under the License is distributed on an "AS IS" BASIS,
14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | # See the License for the specific language governing permissions and
16 | # limitations under the License.
17 | #
18 |
19 | ##############################################################################
20 | ##
21 | ## Gradle start up script for UN*X
22 | ##
23 | ##############################################################################
24 |
25 | # Attempt to set APP_HOME
26 | # Resolve links: $0 may be a link
27 | PRG="$0"
28 | # Need this for relative symlinks.
29 | while [ -h "$PRG" ] ; do
30 | ls=`ls -ld "$PRG"`
31 | link=`expr "$ls" : '.*-> \(.*\)$'`
32 | if expr "$link" : '/.*' > /dev/null; then
33 | PRG="$link"
34 | else
35 | PRG=`dirname "$PRG"`"/$link"
36 | fi
37 | done
38 | SAVED="`pwd`"
39 | cd "`dirname \"$PRG\"`/" >/dev/null
40 | APP_HOME="`pwd -P`"
41 | cd "$SAVED" >/dev/null
42 |
43 | APP_NAME="Gradle"
44 | APP_BASE_NAME=`basename "$0"`
45 |
46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
48 |
49 | # Use the maximum available, or set MAX_FD != -1 to use that value.
50 | MAX_FD="maximum"
51 |
52 | warn () {
53 | echo "$*"
54 | }
55 |
56 | die () {
57 | echo
58 | echo "$*"
59 | echo
60 | exit 1
61 | }
62 |
63 | # OS specific support (must be 'true' or 'false').
64 | cygwin=false
65 | msys=false
66 | darwin=false
67 | nonstop=false
68 | case "`uname`" in
69 | CYGWIN* )
70 | cygwin=true
71 | ;;
72 | Darwin* )
73 | darwin=true
74 | ;;
75 | MINGW* )
76 | msys=true
77 | ;;
78 | NONSTOP* )
79 | nonstop=true
80 | ;;
81 | esac
82 |
83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
84 |
85 | # Determine the Java command to use to start the JVM.
86 | if [ -n "$JAVA_HOME" ] ; then
87 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
88 | # IBM's JDK on AIX uses strange locations for the executables
89 | JAVACMD="$JAVA_HOME/jre/sh/java"
90 | else
91 | JAVACMD="$JAVA_HOME/bin/java"
92 | fi
93 | if [ ! -x "$JAVACMD" ] ; then
94 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
95 |
96 | Please set the JAVA_HOME variable in your environment to match the
97 | location of your Java installation."
98 | fi
99 | else
100 | JAVACMD="java"
101 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
102 |
103 | Please set the JAVA_HOME variable in your environment to match the
104 | location of your Java installation."
105 | fi
106 |
107 | # Increase the maximum file descriptors if we can.
108 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
109 | MAX_FD_LIMIT=`ulimit -H -n`
110 | if [ $? -eq 0 ] ; then
111 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
112 | MAX_FD="$MAX_FD_LIMIT"
113 | fi
114 | ulimit -n $MAX_FD
115 | if [ $? -ne 0 ] ; then
116 | warn "Could not set maximum file descriptor limit: $MAX_FD"
117 | fi
118 | else
119 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
120 | fi
121 | fi
122 |
123 | # For Darwin, add options to specify how the application appears in the dock
124 | if $darwin; then
125 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
126 | fi
127 |
128 | # For Cygwin or MSYS, switch paths to Windows format before running java
129 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
130 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
131 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
132 | JAVACMD=`cygpath --unix "$JAVACMD"`
133 |
134 | # We build the pattern for arguments to be converted via cygpath
135 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
136 | SEP=""
137 | for dir in $ROOTDIRSRAW ; do
138 | ROOTDIRS="$ROOTDIRS$SEP$dir"
139 | SEP="|"
140 | done
141 | OURCYGPATTERN="(^($ROOTDIRS))"
142 | # Add a user-defined pattern to the cygpath arguments
143 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
144 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
145 | fi
146 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
147 | i=0
148 | for arg in "$@" ; do
149 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
150 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
151 |
152 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
153 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
154 | else
155 | eval `echo args$i`="\"$arg\""
156 | fi
157 | i=`expr $i + 1`
158 | done
159 | case $i in
160 | 0) set -- ;;
161 | 1) set -- "$args0" ;;
162 | 2) set -- "$args0" "$args1" ;;
163 | 3) set -- "$args0" "$args1" "$args2" ;;
164 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
165 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
166 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
167 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
168 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
169 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
170 | esac
171 | fi
172 |
173 | # Escape application args
174 | save () {
175 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
176 | echo " "
177 | }
178 | APP_ARGS=`save "$@"`
179 |
180 | # Collect all arguments for the java command, following the shell quoting and substitution rules
181 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
182 |
183 | exec "$JAVACMD" "$@"
184 |
--------------------------------------------------------------------------------
/demo/android/gradlew.bat:
--------------------------------------------------------------------------------
1 | @rem
2 | @rem Copyright 2015 the original author or authors.
3 | @rem
4 | @rem Licensed under the Apache License, Version 2.0 (the "License");
5 | @rem you may not use this file except in compliance with the License.
6 | @rem You may obtain a copy of the License at
7 | @rem
8 | @rem https://www.apache.org/licenses/LICENSE-2.0
9 | @rem
10 | @rem Unless required by applicable law or agreed to in writing, software
11 | @rem distributed under the License is distributed on an "AS IS" BASIS,
12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | @rem See the License for the specific language governing permissions and
14 | @rem limitations under the License.
15 | @rem
16 |
17 | @if "%DEBUG%" == "" @echo off
18 | @rem ##########################################################################
19 | @rem
20 | @rem Gradle startup script for Windows
21 | @rem
22 | @rem ##########################################################################
23 |
24 | @rem Set local scope for the variables with windows NT shell
25 | if "%OS%"=="Windows_NT" setlocal
26 |
27 | set DIRNAME=%~dp0
28 | if "%DIRNAME%" == "" set DIRNAME=.
29 | set APP_BASE_NAME=%~n0
30 | set APP_HOME=%DIRNAME%
31 |
32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter.
33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
34 |
35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
37 |
38 | @rem Find java.exe
39 | if defined JAVA_HOME goto findJavaFromJavaHome
40 |
41 | set JAVA_EXE=java.exe
42 | %JAVA_EXE% -version >NUL 2>&1
43 | if "%ERRORLEVEL%" == "0" goto init
44 |
45 | echo.
46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
47 | echo.
48 | echo Please set the JAVA_HOME variable in your environment to match the
49 | echo location of your Java installation.
50 |
51 | goto fail
52 |
53 | :findJavaFromJavaHome
54 | set JAVA_HOME=%JAVA_HOME:"=%
55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
56 |
57 | if exist "%JAVA_EXE%" goto init
58 |
59 | echo.
60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
61 | echo.
62 | echo Please set the JAVA_HOME variable in your environment to match the
63 | echo location of your Java installation.
64 |
65 | goto fail
66 |
67 | :init
68 | @rem Get command-line arguments, handling Windows variants
69 |
70 | if not "%OS%" == "Windows_NT" goto win9xME_args
71 |
72 | :win9xME_args
73 | @rem Slurp the command line arguments.
74 | set CMD_LINE_ARGS=
75 | set _SKIP=2
76 |
77 | :win9xME_args_slurp
78 | if "x%~1" == "x" goto execute
79 |
80 | set CMD_LINE_ARGS=%*
81 |
82 | :execute
83 | @rem Setup the command line
84 |
85 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
86 |
87 | @rem Execute Gradle
88 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
89 |
90 | :end
91 | @rem End local scope for the variables with windows NT shell
92 | if "%ERRORLEVEL%"=="0" goto mainEnd
93 |
94 | :fail
95 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
96 | rem the _cmd.exe /c_ return code!
97 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
98 | exit /b 1
99 |
100 | :mainEnd
101 | if "%OS%"=="Windows_NT" endlocal
102 |
103 | :omega
104 |
--------------------------------------------------------------------------------
/demo/android/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name = 'demo'
2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
3 | include ':app'
4 |
--------------------------------------------------------------------------------
/demo/app.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "demo",
3 | "displayName": "demo"
4 | }
--------------------------------------------------------------------------------
/demo/assets/empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/assets/empty.png
--------------------------------------------------------------------------------
/demo/assets/filled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/assets/filled.png
--------------------------------------------------------------------------------
/demo/babel.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | presets: ['module:metro-react-native-babel-preset'],
3 | };
4 |
--------------------------------------------------------------------------------
/demo/index.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @format
3 | */
4 |
5 | import {AppRegistry} from 'react-native';
6 | import App from './App';
7 | import {name as appName} from './app.json';
8 |
9 | AppRegistry.registerComponent(appName, () => App);
10 |
--------------------------------------------------------------------------------
/demo/ios/Fonts/Ionicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ui-ninja/react-native-rating-element/5f134890c24d5e5f658b983aa2b3ea8edea7599e/demo/ios/Fonts/Ionicons.ttf
--------------------------------------------------------------------------------
/demo/ios/Podfile:
--------------------------------------------------------------------------------
1 | require_relative '../node_modules/react-native/scripts/react_native_pods'
2 | require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
3 |
4 | platform :ios, '10.0'
5 |
6 | target 'demo' do
7 | config = use_native_modules!
8 |
9 | use_react_native!(:path => config["reactNativePath"])
10 |
11 | target 'demoTests' do
12 | inherit! :complete
13 | # Pods for testing
14 | end
15 |
16 | # Enables Flipper.
17 | #
18 | # Note that if you have use_frameworks! enabled, Flipper will not work and
19 | # you should disable these next few lines.
20 | use_flipper!
21 | post_install do |installer|
22 | flipper_post_install(installer)
23 | end
24 | end
25 |
26 | target 'demo-tvOS' do
27 | # Pods for demo-tvOS
28 |
29 | target 'demo-tvOSTests' do
30 | inherit! :search_paths
31 | # Pods for testing
32 | end
33 | end
34 |
--------------------------------------------------------------------------------
/demo/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - boost-for-react-native (1.63.0)
3 | - CocoaAsyncSocket (7.6.4)
4 | - CocoaLibEvent (1.0.0)
5 | - DoubleConversion (1.1.6)
6 | - FBLazyVector (0.63.2)
7 | - FBReactNativeSpec (0.63.2):
8 | - Folly (= 2020.01.13.00)
9 | - RCTRequired (= 0.63.2)
10 | - RCTTypeSafety (= 0.63.2)
11 | - React-Core (= 0.63.2)
12 | - React-jsi (= 0.63.2)
13 | - ReactCommon/turbomodule/core (= 0.63.2)
14 | - Flipper (0.41.5):
15 | - Flipper-Folly (~> 2.2)
16 | - Flipper-RSocket (~> 1.1)
17 | - Flipper-DoubleConversion (1.1.7)
18 | - Flipper-Folly (2.2.0):
19 | - boost-for-react-native
20 | - CocoaLibEvent (~> 1.0)
21 | - Flipper-DoubleConversion
22 | - Flipper-Glog
23 | - OpenSSL-Universal (= 1.0.2.19)
24 | - Flipper-Glog (0.3.6)
25 | - Flipper-PeerTalk (0.0.4)
26 | - Flipper-RSocket (1.1.0):
27 | - Flipper-Folly (~> 2.2)
28 | - FlipperKit (0.41.5):
29 | - FlipperKit/Core (= 0.41.5)
30 | - FlipperKit/Core (0.41.5):
31 | - Flipper (~> 0.41.5)
32 | - FlipperKit/CppBridge
33 | - FlipperKit/FBCxxFollyDynamicConvert
34 | - FlipperKit/FBDefines
35 | - FlipperKit/FKPortForwarding
36 | - FlipperKit/CppBridge (0.41.5):
37 | - Flipper (~> 0.41.5)
38 | - FlipperKit/FBCxxFollyDynamicConvert (0.41.5):
39 | - Flipper-Folly (~> 2.2)
40 | - FlipperKit/FBDefines (0.41.5)
41 | - FlipperKit/FKPortForwarding (0.41.5):
42 | - CocoaAsyncSocket (~> 7.6)
43 | - Flipper-PeerTalk (~> 0.0.4)
44 | - FlipperKit/FlipperKitHighlightOverlay (0.41.5)
45 | - FlipperKit/FlipperKitLayoutPlugin (0.41.5):
46 | - FlipperKit/Core
47 | - FlipperKit/FlipperKitHighlightOverlay
48 | - FlipperKit/FlipperKitLayoutTextSearchable
49 | - YogaKit (~> 1.18)
50 | - FlipperKit/FlipperKitLayoutTextSearchable (0.41.5)
51 | - FlipperKit/FlipperKitNetworkPlugin (0.41.5):
52 | - FlipperKit/Core
53 | - FlipperKit/FlipperKitReactPlugin (0.41.5):
54 | - FlipperKit/Core
55 | - FlipperKit/FlipperKitUserDefaultsPlugin (0.41.5):
56 | - FlipperKit/Core
57 | - FlipperKit/SKIOSNetworkPlugin (0.41.5):
58 | - FlipperKit/Core
59 | - FlipperKit/FlipperKitNetworkPlugin
60 | - Folly (2020.01.13.00):
61 | - boost-for-react-native
62 | - DoubleConversion
63 | - Folly/Default (= 2020.01.13.00)
64 | - glog
65 | - Folly/Default (2020.01.13.00):
66 | - boost-for-react-native
67 | - DoubleConversion
68 | - glog
69 | - glog (0.3.5)
70 | - OpenSSL-Universal (1.0.2.19):
71 | - OpenSSL-Universal/Static (= 1.0.2.19)
72 | - OpenSSL-Universal/Static (1.0.2.19)
73 | - RCTRequired (0.63.2)
74 | - RCTTypeSafety (0.63.2):
75 | - FBLazyVector (= 0.63.2)
76 | - Folly (= 2020.01.13.00)
77 | - RCTRequired (= 0.63.2)
78 | - React-Core (= 0.63.2)
79 | - React (0.63.2):
80 | - React-Core (= 0.63.2)
81 | - React-Core/DevSupport (= 0.63.2)
82 | - React-Core/RCTWebSocket (= 0.63.2)
83 | - React-RCTActionSheet (= 0.63.2)
84 | - React-RCTAnimation (= 0.63.2)
85 | - React-RCTBlob (= 0.63.2)
86 | - React-RCTImage (= 0.63.2)
87 | - React-RCTLinking (= 0.63.2)
88 | - React-RCTNetwork (= 0.63.2)
89 | - React-RCTSettings (= 0.63.2)
90 | - React-RCTText (= 0.63.2)
91 | - React-RCTVibration (= 0.63.2)
92 | - React-callinvoker (0.63.2)
93 | - React-Core (0.63.2):
94 | - Folly (= 2020.01.13.00)
95 | - glog
96 | - React-Core/Default (= 0.63.2)
97 | - React-cxxreact (= 0.63.2)
98 | - React-jsi (= 0.63.2)
99 | - React-jsiexecutor (= 0.63.2)
100 | - Yoga
101 | - React-Core/CoreModulesHeaders (0.63.2):
102 | - Folly (= 2020.01.13.00)
103 | - glog
104 | - React-Core/Default
105 | - React-cxxreact (= 0.63.2)
106 | - React-jsi (= 0.63.2)
107 | - React-jsiexecutor (= 0.63.2)
108 | - Yoga
109 | - React-Core/Default (0.63.2):
110 | - Folly (= 2020.01.13.00)
111 | - glog
112 | - React-cxxreact (= 0.63.2)
113 | - React-jsi (= 0.63.2)
114 | - React-jsiexecutor (= 0.63.2)
115 | - Yoga
116 | - React-Core/DevSupport (0.63.2):
117 | - Folly (= 2020.01.13.00)
118 | - glog
119 | - React-Core/Default (= 0.63.2)
120 | - React-Core/RCTWebSocket (= 0.63.2)
121 | - React-cxxreact (= 0.63.2)
122 | - React-jsi (= 0.63.2)
123 | - React-jsiexecutor (= 0.63.2)
124 | - React-jsinspector (= 0.63.2)
125 | - Yoga
126 | - React-Core/RCTActionSheetHeaders (0.63.2):
127 | - Folly (= 2020.01.13.00)
128 | - glog
129 | - React-Core/Default
130 | - React-cxxreact (= 0.63.2)
131 | - React-jsi (= 0.63.2)
132 | - React-jsiexecutor (= 0.63.2)
133 | - Yoga
134 | - React-Core/RCTAnimationHeaders (0.63.2):
135 | - Folly (= 2020.01.13.00)
136 | - glog
137 | - React-Core/Default
138 | - React-cxxreact (= 0.63.2)
139 | - React-jsi (= 0.63.2)
140 | - React-jsiexecutor (= 0.63.2)
141 | - Yoga
142 | - React-Core/RCTBlobHeaders (0.63.2):
143 | - Folly (= 2020.01.13.00)
144 | - glog
145 | - React-Core/Default
146 | - React-cxxreact (= 0.63.2)
147 | - React-jsi (= 0.63.2)
148 | - React-jsiexecutor (= 0.63.2)
149 | - Yoga
150 | - React-Core/RCTImageHeaders (0.63.2):
151 | - Folly (= 2020.01.13.00)
152 | - glog
153 | - React-Core/Default
154 | - React-cxxreact (= 0.63.2)
155 | - React-jsi (= 0.63.2)
156 | - React-jsiexecutor (= 0.63.2)
157 | - Yoga
158 | - React-Core/RCTLinkingHeaders (0.63.2):
159 | - Folly (= 2020.01.13.00)
160 | - glog
161 | - React-Core/Default
162 | - React-cxxreact (= 0.63.2)
163 | - React-jsi (= 0.63.2)
164 | - React-jsiexecutor (= 0.63.2)
165 | - Yoga
166 | - React-Core/RCTNetworkHeaders (0.63.2):
167 | - Folly (= 2020.01.13.00)
168 | - glog
169 | - React-Core/Default
170 | - React-cxxreact (= 0.63.2)
171 | - React-jsi (= 0.63.2)
172 | - React-jsiexecutor (= 0.63.2)
173 | - Yoga
174 | - React-Core/RCTSettingsHeaders (0.63.2):
175 | - Folly (= 2020.01.13.00)
176 | - glog
177 | - React-Core/Default
178 | - React-cxxreact (= 0.63.2)
179 | - React-jsi (= 0.63.2)
180 | - React-jsiexecutor (= 0.63.2)
181 | - Yoga
182 | - React-Core/RCTTextHeaders (0.63.2):
183 | - Folly (= 2020.01.13.00)
184 | - glog
185 | - React-Core/Default
186 | - React-cxxreact (= 0.63.2)
187 | - React-jsi (= 0.63.2)
188 | - React-jsiexecutor (= 0.63.2)
189 | - Yoga
190 | - React-Core/RCTVibrationHeaders (0.63.2):
191 | - Folly (= 2020.01.13.00)
192 | - glog
193 | - React-Core/Default
194 | - React-cxxreact (= 0.63.2)
195 | - React-jsi (= 0.63.2)
196 | - React-jsiexecutor (= 0.63.2)
197 | - Yoga
198 | - React-Core/RCTWebSocket (0.63.2):
199 | - Folly (= 2020.01.13.00)
200 | - glog
201 | - React-Core/Default (= 0.63.2)
202 | - React-cxxreact (= 0.63.2)
203 | - React-jsi (= 0.63.2)
204 | - React-jsiexecutor (= 0.63.2)
205 | - Yoga
206 | - React-CoreModules (0.63.2):
207 | - FBReactNativeSpec (= 0.63.2)
208 | - Folly (= 2020.01.13.00)
209 | - RCTTypeSafety (= 0.63.2)
210 | - React-Core/CoreModulesHeaders (= 0.63.2)
211 | - React-jsi (= 0.63.2)
212 | - React-RCTImage (= 0.63.2)
213 | - ReactCommon/turbomodule/core (= 0.63.2)
214 | - React-cxxreact (0.63.2):
215 | - boost-for-react-native (= 1.63.0)
216 | - DoubleConversion
217 | - Folly (= 2020.01.13.00)
218 | - glog
219 | - React-callinvoker (= 0.63.2)
220 | - React-jsinspector (= 0.63.2)
221 | - React-jsi (0.63.2):
222 | - boost-for-react-native (= 1.63.0)
223 | - DoubleConversion
224 | - Folly (= 2020.01.13.00)
225 | - glog
226 | - React-jsi/Default (= 0.63.2)
227 | - React-jsi/Default (0.63.2):
228 | - boost-for-react-native (= 1.63.0)
229 | - DoubleConversion
230 | - Folly (= 2020.01.13.00)
231 | - glog
232 | - React-jsiexecutor (0.63.2):
233 | - DoubleConversion
234 | - Folly (= 2020.01.13.00)
235 | - glog
236 | - React-cxxreact (= 0.63.2)
237 | - React-jsi (= 0.63.2)
238 | - React-jsinspector (0.63.2)
239 | - React-RCTActionSheet (0.63.2):
240 | - React-Core/RCTActionSheetHeaders (= 0.63.2)
241 | - React-RCTAnimation (0.63.2):
242 | - FBReactNativeSpec (= 0.63.2)
243 | - Folly (= 2020.01.13.00)
244 | - RCTTypeSafety (= 0.63.2)
245 | - React-Core/RCTAnimationHeaders (= 0.63.2)
246 | - React-jsi (= 0.63.2)
247 | - ReactCommon/turbomodule/core (= 0.63.2)
248 | - React-RCTBlob (0.63.2):
249 | - FBReactNativeSpec (= 0.63.2)
250 | - Folly (= 2020.01.13.00)
251 | - React-Core/RCTBlobHeaders (= 0.63.2)
252 | - React-Core/RCTWebSocket (= 0.63.2)
253 | - React-jsi (= 0.63.2)
254 | - React-RCTNetwork (= 0.63.2)
255 | - ReactCommon/turbomodule/core (= 0.63.2)
256 | - React-RCTImage (0.63.2):
257 | - FBReactNativeSpec (= 0.63.2)
258 | - Folly (= 2020.01.13.00)
259 | - RCTTypeSafety (= 0.63.2)
260 | - React-Core/RCTImageHeaders (= 0.63.2)
261 | - React-jsi (= 0.63.2)
262 | - React-RCTNetwork (= 0.63.2)
263 | - ReactCommon/turbomodule/core (= 0.63.2)
264 | - React-RCTLinking (0.63.2):
265 | - FBReactNativeSpec (= 0.63.2)
266 | - React-Core/RCTLinkingHeaders (= 0.63.2)
267 | - React-jsi (= 0.63.2)
268 | - ReactCommon/turbomodule/core (= 0.63.2)
269 | - React-RCTNetwork (0.63.2):
270 | - FBReactNativeSpec (= 0.63.2)
271 | - Folly (= 2020.01.13.00)
272 | - RCTTypeSafety (= 0.63.2)
273 | - React-Core/RCTNetworkHeaders (= 0.63.2)
274 | - React-jsi (= 0.63.2)
275 | - ReactCommon/turbomodule/core (= 0.63.2)
276 | - React-RCTSettings (0.63.2):
277 | - FBReactNativeSpec (= 0.63.2)
278 | - Folly (= 2020.01.13.00)
279 | - RCTTypeSafety (= 0.63.2)
280 | - React-Core/RCTSettingsHeaders (= 0.63.2)
281 | - React-jsi (= 0.63.2)
282 | - ReactCommon/turbomodule/core (= 0.63.2)
283 | - React-RCTText (0.63.2):
284 | - React-Core/RCTTextHeaders (= 0.63.2)
285 | - React-RCTVibration (0.63.2):
286 | - FBReactNativeSpec (= 0.63.2)
287 | - Folly (= 2020.01.13.00)
288 | - React-Core/RCTVibrationHeaders (= 0.63.2)
289 | - React-jsi (= 0.63.2)
290 | - ReactCommon/turbomodule/core (= 0.63.2)
291 | - ReactCommon/turbomodule/core (0.63.2):
292 | - DoubleConversion
293 | - Folly (= 2020.01.13.00)
294 | - glog
295 | - React-callinvoker (= 0.63.2)
296 | - React-Core (= 0.63.2)
297 | - React-cxxreact (= 0.63.2)
298 | - React-jsi (= 0.63.2)
299 | - Yoga (1.14.0)
300 | - YogaKit (1.18.1):
301 | - Yoga (~> 1.14)
302 |
303 | DEPENDENCIES:
304 | - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
305 | - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
306 | - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
307 | - Flipper (~> 0.41.1)
308 | - Flipper-DoubleConversion (= 1.1.7)
309 | - Flipper-Folly (~> 2.2)
310 | - Flipper-Glog (= 0.3.6)
311 | - Flipper-PeerTalk (~> 0.0.4)
312 | - Flipper-RSocket (~> 1.1)
313 | - FlipperKit (~> 0.41.1)
314 | - FlipperKit/Core (~> 0.41.1)
315 | - FlipperKit/CppBridge (~> 0.41.1)
316 | - FlipperKit/FBCxxFollyDynamicConvert (~> 0.41.1)
317 | - FlipperKit/FBDefines (~> 0.41.1)
318 | - FlipperKit/FKPortForwarding (~> 0.41.1)
319 | - FlipperKit/FlipperKitHighlightOverlay (~> 0.41.1)
320 | - FlipperKit/FlipperKitLayoutPlugin (~> 0.41.1)
321 | - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.41.1)
322 | - FlipperKit/FlipperKitNetworkPlugin (~> 0.41.1)
323 | - FlipperKit/FlipperKitReactPlugin (~> 0.41.1)
324 | - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.41.1)
325 | - FlipperKit/SKIOSNetworkPlugin (~> 0.41.1)
326 | - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
327 | - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
328 | - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
329 | - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
330 | - React (from `../node_modules/react-native/`)
331 | - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
332 | - React-Core (from `../node_modules/react-native/`)
333 | - React-Core/DevSupport (from `../node_modules/react-native/`)
334 | - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
335 | - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
336 | - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
337 | - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
338 | - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
339 | - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
340 | - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
341 | - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
342 | - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
343 | - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
344 | - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
345 | - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
346 | - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
347 | - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
348 | - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
349 | - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
350 | - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
351 |
352 | SPEC REPOS:
353 | trunk:
354 | - boost-for-react-native
355 | - CocoaAsyncSocket
356 | - CocoaLibEvent
357 | - Flipper
358 | - Flipper-DoubleConversion
359 | - Flipper-Folly
360 | - Flipper-Glog
361 | - Flipper-PeerTalk
362 | - Flipper-RSocket
363 | - FlipperKit
364 | - OpenSSL-Universal
365 | - YogaKit
366 |
367 | EXTERNAL SOURCES:
368 | DoubleConversion:
369 | :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
370 | FBLazyVector:
371 | :path: "../node_modules/react-native/Libraries/FBLazyVector"
372 | FBReactNativeSpec:
373 | :path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
374 | Folly:
375 | :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
376 | glog:
377 | :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
378 | RCTRequired:
379 | :path: "../node_modules/react-native/Libraries/RCTRequired"
380 | RCTTypeSafety:
381 | :path: "../node_modules/react-native/Libraries/TypeSafety"
382 | React:
383 | :path: "../node_modules/react-native/"
384 | React-callinvoker:
385 | :path: "../node_modules/react-native/ReactCommon/callinvoker"
386 | React-Core:
387 | :path: "../node_modules/react-native/"
388 | React-CoreModules:
389 | :path: "../node_modules/react-native/React/CoreModules"
390 | React-cxxreact:
391 | :path: "../node_modules/react-native/ReactCommon/cxxreact"
392 | React-jsi:
393 | :path: "../node_modules/react-native/ReactCommon/jsi"
394 | React-jsiexecutor:
395 | :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
396 | React-jsinspector:
397 | :path: "../node_modules/react-native/ReactCommon/jsinspector"
398 | React-RCTActionSheet:
399 | :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
400 | React-RCTAnimation:
401 | :path: "../node_modules/react-native/Libraries/NativeAnimation"
402 | React-RCTBlob:
403 | :path: "../node_modules/react-native/Libraries/Blob"
404 | React-RCTImage:
405 | :path: "../node_modules/react-native/Libraries/Image"
406 | React-RCTLinking:
407 | :path: "../node_modules/react-native/Libraries/LinkingIOS"
408 | React-RCTNetwork:
409 | :path: "../node_modules/react-native/Libraries/Network"
410 | React-RCTSettings:
411 | :path: "../node_modules/react-native/Libraries/Settings"
412 | React-RCTText:
413 | :path: "../node_modules/react-native/Libraries/Text"
414 | React-RCTVibration:
415 | :path: "../node_modules/react-native/Libraries/Vibration"
416 | ReactCommon:
417 | :path: "../node_modules/react-native/ReactCommon"
418 | Yoga:
419 | :path: "../node_modules/react-native/ReactCommon/yoga"
420 |
421 | SPEC CHECKSUMS:
422 | boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
423 | CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845
424 | CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f
425 | DoubleConversion: cde416483dac037923206447da6e1454df403714
426 | FBLazyVector: 3ef4a7f62e7db01092f9d517d2ebc0d0677c4a37
427 | FBReactNativeSpec: dc7fa9088f0f2a998503a352b0554d69a4391c5a
428 | Flipper: 33585e2d9810fe5528346be33bcf71b37bb7ae13
429 | Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
430 | Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3
431 | Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
432 | Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
433 | Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
434 | FlipperKit: bc68102cd4952a258a23c9c1b316c7bec1fecf83
435 | Folly: b73c3869541e86821df3c387eb0af5f65addfab4
436 | glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
437 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355
438 | RCTRequired: f13f25e7b12f925f1f6a6a8c69d929a03c0129fe
439 | RCTTypeSafety: 44982c5c8e43ff4141eb519a8ddc88059acd1f3a
440 | React: e1c65dd41cb9db13b99f24608e47dd595f28ca9a
441 | React-callinvoker: 552a6a6bc8b3bb794cf108ad59e5a9e2e3b4fc98
442 | React-Core: 9d341e725dc9cd2f49e4c49ad1fc4e8776aa2639
443 | React-CoreModules: 5335e168165da7f7083ce7147768d36d3e292318
444 | React-cxxreact: d3261ec5f7d11743fbf21e263a34ea51d1f13ebc
445 | React-jsi: 54245e1d5f4b690dec614a73a3795964eeef13a8
446 | React-jsiexecutor: 8ca588cc921e70590820ce72b8789b02c67cce38
447 | React-jsinspector: b14e62ebe7a66e9231e9581279909f2fc3db6606
448 | React-RCTActionSheet: 910163b6b09685a35c4ebbc52b66d1bfbbe39fc5
449 | React-RCTAnimation: 9a883bbe1e9d2e158d4fb53765ed64c8dc2200c6
450 | React-RCTBlob: 39cf0ece1927996c4466510e25d2105f67010e13
451 | React-RCTImage: de355d738727b09ad3692f2a979affbd54b5f378
452 | React-RCTLinking: 8122f221d395a63364b2c0078ce284214bd04575
453 | React-RCTNetwork: 8f96c7b49ea6a0f28f98258f347b6ad218bc0830
454 | React-RCTSettings: 8a49622aff9c1925f5455fa340b6fe4853d64ab6
455 | React-RCTText: 1b6773e776e4b33f90468c20fe3b16ca3e224bb8
456 | React-RCTVibration: 4d2e726957f4087449739b595f107c0d4b6c2d2d
457 | ReactCommon: a0a1edbebcac5e91338371b72ffc66aa822792ce
458 | Yoga: 7740b94929bbacbddda59bf115b5317e9a161598
459 | YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
460 |
461 | PODFILE CHECKSUM: 0dd36db45b7761aa76d97584066df61529cbd892
462 |
463 | COCOAPODS: 1.9.1
464 |
--------------------------------------------------------------------------------
/demo/ios/demo-tvOS/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | APPL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 | LSRequiresIPhoneOS
24 |
25 | NSAppTransportSecurity
26 |
27 | NSExceptionDomains
28 |
29 | localhost
30 |
31 | NSExceptionAllowsInsecureHTTPLoads
32 |
33 |
34 |
35 |
36 | NSLocationWhenInUseUsageDescription
37 |
38 | UILaunchStoryboardName
39 | LaunchScreen
40 | UIRequiredDeviceCapabilities
41 |
42 | armv7
43 |
44 | UISupportedInterfaceOrientations
45 |
46 | UIInterfaceOrientationPortrait
47 | UIInterfaceOrientationLandscapeLeft
48 | UIInterfaceOrientationLandscapeRight
49 |
50 | UIViewControllerBasedStatusBarAppearance
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/demo/ios/demo-tvOSTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/demo/ios/demo.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 46;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 00E356F31AD99517003FC87E /* demoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* demoTests.m */; };
11 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
12 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13 | 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
15 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
16 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
17 | 2DCD954D1E0B4F2C00145EB5 /* demoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* demoTests.m */; };
18 | 428451DCB97CE3FB2B683A51 /* libPods-demo-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D68CC166652E8030F6C259D /* libPods-demo-tvOSTests.a */; };
19 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
20 | 8D5D0D000350AC2CC090B523 /* libPods-demo-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C9ED0381C1BC16E4FDD71AFB /* libPods-demo-tvOS.a */; };
21 | 9407969C24DD524800BBC1F7 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9407969B24DD524800BBC1F7 /* Ionicons.ttf */; };
22 | 96F664A0F8253FD93003C724 /* libPods-demo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5110D00E412846041AF0ED0E /* libPods-demo.a */; };
23 | 9B63A370EA286B4D661DEF03 /* libPods-demo-demoTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C9176A31DFC94635759C3106 /* libPods-demo-demoTests.a */; };
24 | /* End PBXBuildFile section */
25 |
26 | /* Begin PBXContainerItemProxy section */
27 | 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
28 | isa = PBXContainerItemProxy;
29 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
30 | proxyType = 1;
31 | remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
32 | remoteInfo = demo;
33 | };
34 | 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
35 | isa = PBXContainerItemProxy;
36 | containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
37 | proxyType = 1;
38 | remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
39 | remoteInfo = "demo-tvOS";
40 | };
41 | /* End PBXContainerItemProxy section */
42 |
43 | /* Begin PBXFileReference section */
44 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = ""; };
45 | 00E356EE1AD99517003FC87E /* demoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = demoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
46 | 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
47 | 00E356F21AD99517003FC87E /* demoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = demoTests.m; sourceTree = ""; };
48 | 13B07F961A680F5B00A75B9A /* demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = demo.app; sourceTree = BUILT_PRODUCTS_DIR; };
49 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = demo/AppDelegate.h; sourceTree = ""; };
50 | 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = demo/AppDelegate.m; sourceTree = ""; };
51 | 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = demo/Images.xcassets; sourceTree = ""; };
52 | 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = demo/Info.plist; sourceTree = ""; };
53 | 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = demo/main.m; sourceTree = ""; };
54 | 2D02E47B1E0B4A5D006451C7 /* demo-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "demo-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
55 | 2D02E4901E0B4A5D006451C7 /* demo-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "demo-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
56 | 3D68CC166652E8030F6C259D /* libPods-demo-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-demo-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
57 | 5110D00E412846041AF0ED0E /* libPods-demo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-demo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
58 | 5D4D7EC5536AF4291E08E2B2 /* Pods-demo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo.debug.xcconfig"; path = "Target Support Files/Pods-demo/Pods-demo.debug.xcconfig"; sourceTree = ""; };
59 | 64D3CCC21820E6A9395EA34B /* Pods-demo-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo-tvOS.release.xcconfig"; path = "Target Support Files/Pods-demo-tvOS/Pods-demo-tvOS.release.xcconfig"; sourceTree = ""; };
60 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = demo/LaunchScreen.storyboard; sourceTree = ""; };
61 | 887E7FA265256EC0E456CBDC /* Pods-demo-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-demo-tvOS/Pods-demo-tvOS.debug.xcconfig"; sourceTree = ""; };
62 | 9407969B24DD524800BBC1F7 /* Ionicons.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = Ionicons.ttf; sourceTree = ""; };
63 | 990F50DBBD0CCC3688E87D0C /* Pods-demo-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-demo-tvOSTests/Pods-demo-tvOSTests.release.xcconfig"; sourceTree = ""; };
64 | B029DCB2395B4D6B775FF0D2 /* Pods-demo-demoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo-demoTests.release.xcconfig"; path = "Target Support Files/Pods-demo-demoTests/Pods-demo-demoTests.release.xcconfig"; sourceTree = ""; };
65 | B6B74264C77898A05B534064 /* Pods-demo-demoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo-demoTests.debug.xcconfig"; path = "Target Support Files/Pods-demo-demoTests/Pods-demo-demoTests.debug.xcconfig"; sourceTree = ""; };
66 | C1DE373C867CDC019997FF39 /* Pods-demo-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-demo-tvOSTests/Pods-demo-tvOSTests.debug.xcconfig"; sourceTree = ""; };
67 | C9176A31DFC94635759C3106 /* libPods-demo-demoTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-demo-demoTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
68 | C9ED0381C1BC16E4FDD71AFB /* libPods-demo-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-demo-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
69 | DBC7A267858D3A99FD168645 /* Pods-demo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-demo.release.xcconfig"; path = "Target Support Files/Pods-demo/Pods-demo.release.xcconfig"; sourceTree = ""; };
70 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
71 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
72 | /* End PBXFileReference section */
73 |
74 | /* Begin PBXFrameworksBuildPhase section */
75 | 00E356EB1AD99517003FC87E /* Frameworks */ = {
76 | isa = PBXFrameworksBuildPhase;
77 | buildActionMask = 2147483647;
78 | files = (
79 | 9B63A370EA286B4D661DEF03 /* libPods-demo-demoTests.a in Frameworks */,
80 | );
81 | runOnlyForDeploymentPostprocessing = 0;
82 | };
83 | 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
84 | isa = PBXFrameworksBuildPhase;
85 | buildActionMask = 2147483647;
86 | files = (
87 | 96F664A0F8253FD93003C724 /* libPods-demo.a in Frameworks */,
88 | );
89 | runOnlyForDeploymentPostprocessing = 0;
90 | };
91 | 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
92 | isa = PBXFrameworksBuildPhase;
93 | buildActionMask = 2147483647;
94 | files = (
95 | 8D5D0D000350AC2CC090B523 /* libPods-demo-tvOS.a in Frameworks */,
96 | );
97 | runOnlyForDeploymentPostprocessing = 0;
98 | };
99 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
100 | isa = PBXFrameworksBuildPhase;
101 | buildActionMask = 2147483647;
102 | files = (
103 | 428451DCB97CE3FB2B683A51 /* libPods-demo-tvOSTests.a in Frameworks */,
104 | );
105 | runOnlyForDeploymentPostprocessing = 0;
106 | };
107 | /* End PBXFrameworksBuildPhase section */
108 |
109 | /* Begin PBXGroup section */
110 | 00E356EF1AD99517003FC87E /* demoTests */ = {
111 | isa = PBXGroup;
112 | children = (
113 | 00E356F21AD99517003FC87E /* demoTests.m */,
114 | 00E356F01AD99517003FC87E /* Supporting Files */,
115 | );
116 | path = demoTests;
117 | sourceTree = "";
118 | };
119 | 00E356F01AD99517003FC87E /* Supporting Files */ = {
120 | isa = PBXGroup;
121 | children = (
122 | 00E356F11AD99517003FC87E /* Info.plist */,
123 | );
124 | name = "Supporting Files";
125 | sourceTree = "";
126 | };
127 | 13B07FAE1A68108700A75B9A /* demo */ = {
128 | isa = PBXGroup;
129 | children = (
130 | 9407969A24DD4F9200BBC1F7 /* Fonts */,
131 | 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
132 | 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
133 | 13B07FB01A68108700A75B9A /* AppDelegate.m */,
134 | 13B07FB51A68108700A75B9A /* Images.xcassets */,
135 | 13B07FB61A68108700A75B9A /* Info.plist */,
136 | 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
137 | 13B07FB71A68108700A75B9A /* main.m */,
138 | );
139 | name = demo;
140 | sourceTree = "";
141 | };
142 | 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
143 | isa = PBXGroup;
144 | children = (
145 | ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
146 | ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
147 | 5110D00E412846041AF0ED0E /* libPods-demo.a */,
148 | C9176A31DFC94635759C3106 /* libPods-demo-demoTests.a */,
149 | C9ED0381C1BC16E4FDD71AFB /* libPods-demo-tvOS.a */,
150 | 3D68CC166652E8030F6C259D /* libPods-demo-tvOSTests.a */,
151 | );
152 | name = Frameworks;
153 | sourceTree = "";
154 | };
155 | 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
156 | isa = PBXGroup;
157 | children = (
158 | );
159 | name = Libraries;
160 | sourceTree = "";
161 | };
162 | 83CBB9F61A601CBA00E9B192 = {
163 | isa = PBXGroup;
164 | children = (
165 | 13B07FAE1A68108700A75B9A /* demo */,
166 | 832341AE1AAA6A7D00B99B32 /* Libraries */,
167 | 00E356EF1AD99517003FC87E /* demoTests */,
168 | 83CBBA001A601CBA00E9B192 /* Products */,
169 | 2D16E6871FA4F8E400B85C8A /* Frameworks */,
170 | 988E1FC735DAA41ACA183B15 /* Pods */,
171 | );
172 | indentWidth = 2;
173 | sourceTree = "";
174 | tabWidth = 2;
175 | usesTabs = 0;
176 | };
177 | 83CBBA001A601CBA00E9B192 /* Products */ = {
178 | isa = PBXGroup;
179 | children = (
180 | 13B07F961A680F5B00A75B9A /* demo.app */,
181 | 00E356EE1AD99517003FC87E /* demoTests.xctest */,
182 | 2D02E47B1E0B4A5D006451C7 /* demo-tvOS.app */,
183 | 2D02E4901E0B4A5D006451C7 /* demo-tvOSTests.xctest */,
184 | );
185 | name = Products;
186 | sourceTree = "";
187 | };
188 | 9407969A24DD4F9200BBC1F7 /* Fonts */ = {
189 | isa = PBXGroup;
190 | children = (
191 | 9407969B24DD524800BBC1F7 /* Ionicons.ttf */,
192 | );
193 | path = Fonts;
194 | sourceTree = "";
195 | };
196 | 988E1FC735DAA41ACA183B15 /* Pods */ = {
197 | isa = PBXGroup;
198 | children = (
199 | 5D4D7EC5536AF4291E08E2B2 /* Pods-demo.debug.xcconfig */,
200 | DBC7A267858D3A99FD168645 /* Pods-demo.release.xcconfig */,
201 | B6B74264C77898A05B534064 /* Pods-demo-demoTests.debug.xcconfig */,
202 | B029DCB2395B4D6B775FF0D2 /* Pods-demo-demoTests.release.xcconfig */,
203 | 887E7FA265256EC0E456CBDC /* Pods-demo-tvOS.debug.xcconfig */,
204 | 64D3CCC21820E6A9395EA34B /* Pods-demo-tvOS.release.xcconfig */,
205 | C1DE373C867CDC019997FF39 /* Pods-demo-tvOSTests.debug.xcconfig */,
206 | 990F50DBBD0CCC3688E87D0C /* Pods-demo-tvOSTests.release.xcconfig */,
207 | );
208 | path = Pods;
209 | sourceTree = "";
210 | };
211 | /* End PBXGroup section */
212 |
213 | /* Begin PBXNativeTarget section */
214 | 00E356ED1AD99517003FC87E /* demoTests */ = {
215 | isa = PBXNativeTarget;
216 | buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "demoTests" */;
217 | buildPhases = (
218 | 8C204817D1E4CBCFE5CBC0AF /* [CP] Check Pods Manifest.lock */,
219 | 00E356EA1AD99517003FC87E /* Sources */,
220 | 00E356EB1AD99517003FC87E /* Frameworks */,
221 | 00E356EC1AD99517003FC87E /* Resources */,
222 | 558C78DB3C0EDA182336FDCC /* [CP] Copy Pods Resources */,
223 | );
224 | buildRules = (
225 | );
226 | dependencies = (
227 | 00E356F51AD99517003FC87E /* PBXTargetDependency */,
228 | );
229 | name = demoTests;
230 | productName = demoTests;
231 | productReference = 00E356EE1AD99517003FC87E /* demoTests.xctest */;
232 | productType = "com.apple.product-type.bundle.unit-test";
233 | };
234 | 13B07F861A680F5B00A75B9A /* demo */ = {
235 | isa = PBXNativeTarget;
236 | buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "demo" */;
237 | buildPhases = (
238 | 448E00AD098D4E2B063BBEFC /* [CP] Check Pods Manifest.lock */,
239 | FD10A7F022414F080027D42C /* Start Packager */,
240 | 13B07F871A680F5B00A75B9A /* Sources */,
241 | 13B07F8C1A680F5B00A75B9A /* Frameworks */,
242 | 13B07F8E1A680F5B00A75B9A /* Resources */,
243 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
244 | B42085D5882B11752C0D1423 /* [CP] Copy Pods Resources */,
245 | );
246 | buildRules = (
247 | );
248 | dependencies = (
249 | );
250 | name = demo;
251 | productName = demo;
252 | productReference = 13B07F961A680F5B00A75B9A /* demo.app */;
253 | productType = "com.apple.product-type.application";
254 | };
255 | 2D02E47A1E0B4A5D006451C7 /* demo-tvOS */ = {
256 | isa = PBXNativeTarget;
257 | buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "demo-tvOS" */;
258 | buildPhases = (
259 | CA40DB2E87193F48711B1376 /* [CP] Check Pods Manifest.lock */,
260 | FD10A7F122414F3F0027D42C /* Start Packager */,
261 | 2D02E4771E0B4A5D006451C7 /* Sources */,
262 | 2D02E4781E0B4A5D006451C7 /* Frameworks */,
263 | 2D02E4791E0B4A5D006451C7 /* Resources */,
264 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
265 | );
266 | buildRules = (
267 | );
268 | dependencies = (
269 | );
270 | name = "demo-tvOS";
271 | productName = "demo-tvOS";
272 | productReference = 2D02E47B1E0B4A5D006451C7 /* demo-tvOS.app */;
273 | productType = "com.apple.product-type.application";
274 | };
275 | 2D02E48F1E0B4A5D006451C7 /* demo-tvOSTests */ = {
276 | isa = PBXNativeTarget;
277 | buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "demo-tvOSTests" */;
278 | buildPhases = (
279 | 426F08BA36FF4BAAA0593A0C /* [CP] Check Pods Manifest.lock */,
280 | 2D02E48C1E0B4A5D006451C7 /* Sources */,
281 | 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
282 | 2D02E48E1E0B4A5D006451C7 /* Resources */,
283 | );
284 | buildRules = (
285 | );
286 | dependencies = (
287 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
288 | );
289 | name = "demo-tvOSTests";
290 | productName = "demo-tvOSTests";
291 | productReference = 2D02E4901E0B4A5D006451C7 /* demo-tvOSTests.xctest */;
292 | productType = "com.apple.product-type.bundle.unit-test";
293 | };
294 | /* End PBXNativeTarget section */
295 |
296 | /* Begin PBXProject section */
297 | 83CBB9F71A601CBA00E9B192 /* Project object */ = {
298 | isa = PBXProject;
299 | attributes = {
300 | LastUpgradeCheck = 1130;
301 | TargetAttributes = {
302 | 00E356ED1AD99517003FC87E = {
303 | CreatedOnToolsVersion = 6.2;
304 | TestTargetID = 13B07F861A680F5B00A75B9A;
305 | };
306 | 13B07F861A680F5B00A75B9A = {
307 | LastSwiftMigration = 1120;
308 | };
309 | 2D02E47A1E0B4A5D006451C7 = {
310 | CreatedOnToolsVersion = 8.2.1;
311 | ProvisioningStyle = Automatic;
312 | };
313 | 2D02E48F1E0B4A5D006451C7 = {
314 | CreatedOnToolsVersion = 8.2.1;
315 | ProvisioningStyle = Automatic;
316 | TestTargetID = 2D02E47A1E0B4A5D006451C7;
317 | };
318 | };
319 | };
320 | buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "demo" */;
321 | compatibilityVersion = "Xcode 3.2";
322 | developmentRegion = en;
323 | hasScannedForEncodings = 0;
324 | knownRegions = (
325 | en,
326 | Base,
327 | );
328 | mainGroup = 83CBB9F61A601CBA00E9B192;
329 | productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
330 | projectDirPath = "";
331 | projectRoot = "";
332 | targets = (
333 | 13B07F861A680F5B00A75B9A /* demo */,
334 | 00E356ED1AD99517003FC87E /* demoTests */,
335 | 2D02E47A1E0B4A5D006451C7 /* demo-tvOS */,
336 | 2D02E48F1E0B4A5D006451C7 /* demo-tvOSTests */,
337 | );
338 | };
339 | /* End PBXProject section */
340 |
341 | /* Begin PBXResourcesBuildPhase section */
342 | 00E356EC1AD99517003FC87E /* Resources */ = {
343 | isa = PBXResourcesBuildPhase;
344 | buildActionMask = 2147483647;
345 | files = (
346 | );
347 | runOnlyForDeploymentPostprocessing = 0;
348 | };
349 | 13B07F8E1A680F5B00A75B9A /* Resources */ = {
350 | isa = PBXResourcesBuildPhase;
351 | buildActionMask = 2147483647;
352 | files = (
353 | 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
354 | 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
355 | 9407969C24DD524800BBC1F7 /* Ionicons.ttf in Resources */,
356 | );
357 | runOnlyForDeploymentPostprocessing = 0;
358 | };
359 | 2D02E4791E0B4A5D006451C7 /* Resources */ = {
360 | isa = PBXResourcesBuildPhase;
361 | buildActionMask = 2147483647;
362 | files = (
363 | 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
364 | );
365 | runOnlyForDeploymentPostprocessing = 0;
366 | };
367 | 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
368 | isa = PBXResourcesBuildPhase;
369 | buildActionMask = 2147483647;
370 | files = (
371 | );
372 | runOnlyForDeploymentPostprocessing = 0;
373 | };
374 | /* End PBXResourcesBuildPhase section */
375 |
376 | /* Begin PBXShellScriptBuildPhase section */
377 | 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
378 | isa = PBXShellScriptBuildPhase;
379 | buildActionMask = 2147483647;
380 | files = (
381 | );
382 | inputPaths = (
383 | );
384 | name = "Bundle React Native code and images";
385 | outputPaths = (
386 | );
387 | runOnlyForDeploymentPostprocessing = 0;
388 | shellPath = /bin/sh;
389 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
390 | };
391 | 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
392 | isa = PBXShellScriptBuildPhase;
393 | buildActionMask = 2147483647;
394 | files = (
395 | );
396 | inputPaths = (
397 | );
398 | name = "Bundle React Native Code And Images";
399 | outputPaths = (
400 | );
401 | runOnlyForDeploymentPostprocessing = 0;
402 | shellPath = /bin/sh;
403 | shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
404 | };
405 | 426F08BA36FF4BAAA0593A0C /* [CP] Check Pods Manifest.lock */ = {
406 | isa = PBXShellScriptBuildPhase;
407 | buildActionMask = 2147483647;
408 | files = (
409 | );
410 | inputFileListPaths = (
411 | );
412 | inputPaths = (
413 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
414 | "${PODS_ROOT}/Manifest.lock",
415 | );
416 | name = "[CP] Check Pods Manifest.lock";
417 | outputFileListPaths = (
418 | );
419 | outputPaths = (
420 | "$(DERIVED_FILE_DIR)/Pods-demo-tvOSTests-checkManifestLockResult.txt",
421 | );
422 | runOnlyForDeploymentPostprocessing = 0;
423 | shellPath = /bin/sh;
424 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
425 | showEnvVarsInLog = 0;
426 | };
427 | 448E00AD098D4E2B063BBEFC /* [CP] Check Pods Manifest.lock */ = {
428 | isa = PBXShellScriptBuildPhase;
429 | buildActionMask = 2147483647;
430 | files = (
431 | );
432 | inputFileListPaths = (
433 | );
434 | inputPaths = (
435 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
436 | "${PODS_ROOT}/Manifest.lock",
437 | );
438 | name = "[CP] Check Pods Manifest.lock";
439 | outputFileListPaths = (
440 | );
441 | outputPaths = (
442 | "$(DERIVED_FILE_DIR)/Pods-demo-checkManifestLockResult.txt",
443 | );
444 | runOnlyForDeploymentPostprocessing = 0;
445 | shellPath = /bin/sh;
446 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
447 | showEnvVarsInLog = 0;
448 | };
449 | 558C78DB3C0EDA182336FDCC /* [CP] Copy Pods Resources */ = {
450 | isa = PBXShellScriptBuildPhase;
451 | buildActionMask = 2147483647;
452 | files = (
453 | );
454 | inputPaths = (
455 | "${PODS_ROOT}/Target Support Files/Pods-demo-demoTests/Pods-demo-demoTests-resources.sh",
456 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
457 | );
458 | name = "[CP] Copy Pods Resources";
459 | outputPaths = (
460 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
461 | );
462 | runOnlyForDeploymentPostprocessing = 0;
463 | shellPath = /bin/sh;
464 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-demo-demoTests/Pods-demo-demoTests-resources.sh\"\n";
465 | showEnvVarsInLog = 0;
466 | };
467 | 8C204817D1E4CBCFE5CBC0AF /* [CP] Check Pods Manifest.lock */ = {
468 | isa = PBXShellScriptBuildPhase;
469 | buildActionMask = 2147483647;
470 | files = (
471 | );
472 | inputFileListPaths = (
473 | );
474 | inputPaths = (
475 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
476 | "${PODS_ROOT}/Manifest.lock",
477 | );
478 | name = "[CP] Check Pods Manifest.lock";
479 | outputFileListPaths = (
480 | );
481 | outputPaths = (
482 | "$(DERIVED_FILE_DIR)/Pods-demo-demoTests-checkManifestLockResult.txt",
483 | );
484 | runOnlyForDeploymentPostprocessing = 0;
485 | shellPath = /bin/sh;
486 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
487 | showEnvVarsInLog = 0;
488 | };
489 | B42085D5882B11752C0D1423 /* [CP] Copy Pods Resources */ = {
490 | isa = PBXShellScriptBuildPhase;
491 | buildActionMask = 2147483647;
492 | files = (
493 | );
494 | inputPaths = (
495 | "${PODS_ROOT}/Target Support Files/Pods-demo/Pods-demo-resources.sh",
496 | "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
497 | );
498 | name = "[CP] Copy Pods Resources";
499 | outputPaths = (
500 | "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
501 | );
502 | runOnlyForDeploymentPostprocessing = 0;
503 | shellPath = /bin/sh;
504 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-demo/Pods-demo-resources.sh\"\n";
505 | showEnvVarsInLog = 0;
506 | };
507 | CA40DB2E87193F48711B1376 /* [CP] Check Pods Manifest.lock */ = {
508 | isa = PBXShellScriptBuildPhase;
509 | buildActionMask = 2147483647;
510 | files = (
511 | );
512 | inputFileListPaths = (
513 | );
514 | inputPaths = (
515 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
516 | "${PODS_ROOT}/Manifest.lock",
517 | );
518 | name = "[CP] Check Pods Manifest.lock";
519 | outputFileListPaths = (
520 | );
521 | outputPaths = (
522 | "$(DERIVED_FILE_DIR)/Pods-demo-tvOS-checkManifestLockResult.txt",
523 | );
524 | runOnlyForDeploymentPostprocessing = 0;
525 | shellPath = /bin/sh;
526 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
527 | showEnvVarsInLog = 0;
528 | };
529 | FD10A7F022414F080027D42C /* Start Packager */ = {
530 | isa = PBXShellScriptBuildPhase;
531 | buildActionMask = 2147483647;
532 | files = (
533 | );
534 | inputFileListPaths = (
535 | );
536 | inputPaths = (
537 | );
538 | name = "Start Packager";
539 | outputFileListPaths = (
540 | );
541 | outputPaths = (
542 | );
543 | runOnlyForDeploymentPostprocessing = 0;
544 | shellPath = /bin/sh;
545 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
546 | showEnvVarsInLog = 0;
547 | };
548 | FD10A7F122414F3F0027D42C /* Start Packager */ = {
549 | isa = PBXShellScriptBuildPhase;
550 | buildActionMask = 2147483647;
551 | files = (
552 | );
553 | inputFileListPaths = (
554 | );
555 | inputPaths = (
556 | );
557 | name = "Start Packager";
558 | outputFileListPaths = (
559 | );
560 | outputPaths = (
561 | );
562 | runOnlyForDeploymentPostprocessing = 0;
563 | shellPath = /bin/sh;
564 | shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
565 | showEnvVarsInLog = 0;
566 | };
567 | /* End PBXShellScriptBuildPhase section */
568 |
569 | /* Begin PBXSourcesBuildPhase section */
570 | 00E356EA1AD99517003FC87E /* Sources */ = {
571 | isa = PBXSourcesBuildPhase;
572 | buildActionMask = 2147483647;
573 | files = (
574 | 00E356F31AD99517003FC87E /* demoTests.m in Sources */,
575 | );
576 | runOnlyForDeploymentPostprocessing = 0;
577 | };
578 | 13B07F871A680F5B00A75B9A /* Sources */ = {
579 | isa = PBXSourcesBuildPhase;
580 | buildActionMask = 2147483647;
581 | files = (
582 | 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
583 | 13B07FC11A68108700A75B9A /* main.m in Sources */,
584 | );
585 | runOnlyForDeploymentPostprocessing = 0;
586 | };
587 | 2D02E4771E0B4A5D006451C7 /* Sources */ = {
588 | isa = PBXSourcesBuildPhase;
589 | buildActionMask = 2147483647;
590 | files = (
591 | 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
592 | 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
593 | );
594 | runOnlyForDeploymentPostprocessing = 0;
595 | };
596 | 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
597 | isa = PBXSourcesBuildPhase;
598 | buildActionMask = 2147483647;
599 | files = (
600 | 2DCD954D1E0B4F2C00145EB5 /* demoTests.m in Sources */,
601 | );
602 | runOnlyForDeploymentPostprocessing = 0;
603 | };
604 | /* End PBXSourcesBuildPhase section */
605 |
606 | /* Begin PBXTargetDependency section */
607 | 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
608 | isa = PBXTargetDependency;
609 | target = 13B07F861A680F5B00A75B9A /* demo */;
610 | targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
611 | };
612 | 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
613 | isa = PBXTargetDependency;
614 | target = 2D02E47A1E0B4A5D006451C7 /* demo-tvOS */;
615 | targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
616 | };
617 | /* End PBXTargetDependency section */
618 |
619 | /* Begin XCBuildConfiguration section */
620 | 00E356F61AD99517003FC87E /* Debug */ = {
621 | isa = XCBuildConfiguration;
622 | baseConfigurationReference = B6B74264C77898A05B534064 /* Pods-demo-demoTests.debug.xcconfig */;
623 | buildSettings = {
624 | BUNDLE_LOADER = "$(TEST_HOST)";
625 | GCC_PREPROCESSOR_DEFINITIONS = (
626 | "DEBUG=1",
627 | "$(inherited)",
628 | );
629 | INFOPLIST_FILE = demoTests/Info.plist;
630 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
631 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
632 | OTHER_LDFLAGS = (
633 | "-ObjC",
634 | "-lc++",
635 | "$(inherited)",
636 | );
637 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
638 | PRODUCT_NAME = "$(TARGET_NAME)";
639 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/demo.app/demo";
640 | };
641 | name = Debug;
642 | };
643 | 00E356F71AD99517003FC87E /* Release */ = {
644 | isa = XCBuildConfiguration;
645 | baseConfigurationReference = B029DCB2395B4D6B775FF0D2 /* Pods-demo-demoTests.release.xcconfig */;
646 | buildSettings = {
647 | BUNDLE_LOADER = "$(TEST_HOST)";
648 | COPY_PHASE_STRIP = NO;
649 | INFOPLIST_FILE = demoTests/Info.plist;
650 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
651 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
652 | OTHER_LDFLAGS = (
653 | "-ObjC",
654 | "-lc++",
655 | "$(inherited)",
656 | );
657 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
658 | PRODUCT_NAME = "$(TARGET_NAME)";
659 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/demo.app/demo";
660 | };
661 | name = Release;
662 | };
663 | 13B07F941A680F5B00A75B9A /* Debug */ = {
664 | isa = XCBuildConfiguration;
665 | baseConfigurationReference = 5D4D7EC5536AF4291E08E2B2 /* Pods-demo.debug.xcconfig */;
666 | buildSettings = {
667 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
668 | CLANG_ENABLE_MODULES = YES;
669 | CURRENT_PROJECT_VERSION = 1;
670 | ENABLE_BITCODE = NO;
671 | INFOPLIST_FILE = demo/Info.plist;
672 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
673 | OTHER_LDFLAGS = (
674 | "$(inherited)",
675 | "-ObjC",
676 | "-lc++",
677 | );
678 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
679 | PRODUCT_NAME = demo;
680 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
681 | SWIFT_VERSION = 5.0;
682 | VERSIONING_SYSTEM = "apple-generic";
683 | };
684 | name = Debug;
685 | };
686 | 13B07F951A680F5B00A75B9A /* Release */ = {
687 | isa = XCBuildConfiguration;
688 | baseConfigurationReference = DBC7A267858D3A99FD168645 /* Pods-demo.release.xcconfig */;
689 | buildSettings = {
690 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
691 | CLANG_ENABLE_MODULES = YES;
692 | CURRENT_PROJECT_VERSION = 1;
693 | INFOPLIST_FILE = demo/Info.plist;
694 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
695 | OTHER_LDFLAGS = (
696 | "$(inherited)",
697 | "-ObjC",
698 | "-lc++",
699 | );
700 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
701 | PRODUCT_NAME = demo;
702 | SWIFT_VERSION = 5.0;
703 | VERSIONING_SYSTEM = "apple-generic";
704 | };
705 | name = Release;
706 | };
707 | 2D02E4971E0B4A5E006451C7 /* Debug */ = {
708 | isa = XCBuildConfiguration;
709 | baseConfigurationReference = 887E7FA265256EC0E456CBDC /* Pods-demo-tvOS.debug.xcconfig */;
710 | buildSettings = {
711 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
712 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
713 | CLANG_ANALYZER_NONNULL = YES;
714 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
715 | CLANG_WARN_INFINITE_RECURSION = YES;
716 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
717 | DEBUG_INFORMATION_FORMAT = dwarf;
718 | ENABLE_TESTABILITY = YES;
719 | GCC_NO_COMMON_BLOCKS = YES;
720 | INFOPLIST_FILE = "demo-tvOS/Info.plist";
721 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
722 | OTHER_LDFLAGS = (
723 | "$(inherited)",
724 | "-ObjC",
725 | "-lc++",
726 | );
727 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.demo-tvOS";
728 | PRODUCT_NAME = "$(TARGET_NAME)";
729 | SDKROOT = appletvos;
730 | TARGETED_DEVICE_FAMILY = 3;
731 | TVOS_DEPLOYMENT_TARGET = 10.0;
732 | };
733 | name = Debug;
734 | };
735 | 2D02E4981E0B4A5E006451C7 /* Release */ = {
736 | isa = XCBuildConfiguration;
737 | baseConfigurationReference = 64D3CCC21820E6A9395EA34B /* Pods-demo-tvOS.release.xcconfig */;
738 | buildSettings = {
739 | ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
740 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
741 | CLANG_ANALYZER_NONNULL = YES;
742 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
743 | CLANG_WARN_INFINITE_RECURSION = YES;
744 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
745 | COPY_PHASE_STRIP = NO;
746 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
747 | GCC_NO_COMMON_BLOCKS = YES;
748 | INFOPLIST_FILE = "demo-tvOS/Info.plist";
749 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
750 | OTHER_LDFLAGS = (
751 | "$(inherited)",
752 | "-ObjC",
753 | "-lc++",
754 | );
755 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.demo-tvOS";
756 | PRODUCT_NAME = "$(TARGET_NAME)";
757 | SDKROOT = appletvos;
758 | TARGETED_DEVICE_FAMILY = 3;
759 | TVOS_DEPLOYMENT_TARGET = 10.0;
760 | };
761 | name = Release;
762 | };
763 | 2D02E4991E0B4A5E006451C7 /* Debug */ = {
764 | isa = XCBuildConfiguration;
765 | baseConfigurationReference = C1DE373C867CDC019997FF39 /* Pods-demo-tvOSTests.debug.xcconfig */;
766 | buildSettings = {
767 | BUNDLE_LOADER = "$(TEST_HOST)";
768 | CLANG_ANALYZER_NONNULL = YES;
769 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
770 | CLANG_WARN_INFINITE_RECURSION = YES;
771 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
772 | DEBUG_INFORMATION_FORMAT = dwarf;
773 | ENABLE_TESTABILITY = YES;
774 | GCC_NO_COMMON_BLOCKS = YES;
775 | INFOPLIST_FILE = "demo-tvOSTests/Info.plist";
776 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
777 | OTHER_LDFLAGS = (
778 | "$(inherited)",
779 | "-ObjC",
780 | "-lc++",
781 | );
782 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.demo-tvOSTests";
783 | PRODUCT_NAME = "$(TARGET_NAME)";
784 | SDKROOT = appletvos;
785 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/demo-tvOS.app/demo-tvOS";
786 | TVOS_DEPLOYMENT_TARGET = 10.1;
787 | };
788 | name = Debug;
789 | };
790 | 2D02E49A1E0B4A5E006451C7 /* Release */ = {
791 | isa = XCBuildConfiguration;
792 | baseConfigurationReference = 990F50DBBD0CCC3688E87D0C /* Pods-demo-tvOSTests.release.xcconfig */;
793 | buildSettings = {
794 | BUNDLE_LOADER = "$(TEST_HOST)";
795 | CLANG_ANALYZER_NONNULL = YES;
796 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
797 | CLANG_WARN_INFINITE_RECURSION = YES;
798 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
799 | COPY_PHASE_STRIP = NO;
800 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
801 | GCC_NO_COMMON_BLOCKS = YES;
802 | INFOPLIST_FILE = "demo-tvOSTests/Info.plist";
803 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
804 | OTHER_LDFLAGS = (
805 | "$(inherited)",
806 | "-ObjC",
807 | "-lc++",
808 | );
809 | PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.demo-tvOSTests";
810 | PRODUCT_NAME = "$(TARGET_NAME)";
811 | SDKROOT = appletvos;
812 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/demo-tvOS.app/demo-tvOS";
813 | TVOS_DEPLOYMENT_TARGET = 10.1;
814 | };
815 | name = Release;
816 | };
817 | 83CBBA201A601CBA00E9B192 /* Debug */ = {
818 | isa = XCBuildConfiguration;
819 | buildSettings = {
820 | ALWAYS_SEARCH_USER_PATHS = NO;
821 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
822 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
823 | CLANG_CXX_LIBRARY = "libc++";
824 | CLANG_ENABLE_MODULES = YES;
825 | CLANG_ENABLE_OBJC_ARC = YES;
826 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
827 | CLANG_WARN_BOOL_CONVERSION = YES;
828 | CLANG_WARN_COMMA = YES;
829 | CLANG_WARN_CONSTANT_CONVERSION = YES;
830 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
831 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
832 | CLANG_WARN_EMPTY_BODY = YES;
833 | CLANG_WARN_ENUM_CONVERSION = YES;
834 | CLANG_WARN_INFINITE_RECURSION = YES;
835 | CLANG_WARN_INT_CONVERSION = YES;
836 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
837 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
838 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
839 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
840 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
841 | CLANG_WARN_STRICT_PROTOTYPES = YES;
842 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
843 | CLANG_WARN_UNREACHABLE_CODE = YES;
844 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
845 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
846 | COPY_PHASE_STRIP = NO;
847 | ENABLE_STRICT_OBJC_MSGSEND = YES;
848 | ENABLE_TESTABILITY = YES;
849 | GCC_C_LANGUAGE_STANDARD = gnu99;
850 | GCC_DYNAMIC_NO_PIC = NO;
851 | GCC_NO_COMMON_BLOCKS = YES;
852 | GCC_OPTIMIZATION_LEVEL = 0;
853 | GCC_PREPROCESSOR_DEFINITIONS = (
854 | "DEBUG=1",
855 | "$(inherited)",
856 | );
857 | GCC_SYMBOLS_PRIVATE_EXTERN = NO;
858 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
859 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
860 | GCC_WARN_UNDECLARED_SELECTOR = YES;
861 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
862 | GCC_WARN_UNUSED_FUNCTION = YES;
863 | GCC_WARN_UNUSED_VARIABLE = YES;
864 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
865 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
866 | LIBRARY_SEARCH_PATHS = (
867 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
868 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
869 | "\"$(inherited)\"",
870 | );
871 | MTL_ENABLE_DEBUG_INFO = YES;
872 | ONLY_ACTIVE_ARCH = YES;
873 | SDKROOT = iphoneos;
874 | };
875 | name = Debug;
876 | };
877 | 83CBBA211A601CBA00E9B192 /* Release */ = {
878 | isa = XCBuildConfiguration;
879 | buildSettings = {
880 | ALWAYS_SEARCH_USER_PATHS = NO;
881 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
882 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
883 | CLANG_CXX_LIBRARY = "libc++";
884 | CLANG_ENABLE_MODULES = YES;
885 | CLANG_ENABLE_OBJC_ARC = YES;
886 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
887 | CLANG_WARN_BOOL_CONVERSION = YES;
888 | CLANG_WARN_COMMA = YES;
889 | CLANG_WARN_CONSTANT_CONVERSION = YES;
890 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
891 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
892 | CLANG_WARN_EMPTY_BODY = YES;
893 | CLANG_WARN_ENUM_CONVERSION = YES;
894 | CLANG_WARN_INFINITE_RECURSION = YES;
895 | CLANG_WARN_INT_CONVERSION = YES;
896 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
897 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
898 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
899 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
900 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
901 | CLANG_WARN_STRICT_PROTOTYPES = YES;
902 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
903 | CLANG_WARN_UNREACHABLE_CODE = YES;
904 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
905 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
906 | COPY_PHASE_STRIP = YES;
907 | ENABLE_NS_ASSERTIONS = NO;
908 | ENABLE_STRICT_OBJC_MSGSEND = YES;
909 | GCC_C_LANGUAGE_STANDARD = gnu99;
910 | GCC_NO_COMMON_BLOCKS = YES;
911 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
912 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
913 | GCC_WARN_UNDECLARED_SELECTOR = YES;
914 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
915 | GCC_WARN_UNUSED_FUNCTION = YES;
916 | GCC_WARN_UNUSED_VARIABLE = YES;
917 | IPHONEOS_DEPLOYMENT_TARGET = 10.0;
918 | LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
919 | LIBRARY_SEARCH_PATHS = (
920 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
921 | "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
922 | "\"$(inherited)\"",
923 | );
924 | MTL_ENABLE_DEBUG_INFO = NO;
925 | SDKROOT = iphoneos;
926 | VALIDATE_PRODUCT = YES;
927 | };
928 | name = Release;
929 | };
930 | /* End XCBuildConfiguration section */
931 |
932 | /* Begin XCConfigurationList section */
933 | 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "demoTests" */ = {
934 | isa = XCConfigurationList;
935 | buildConfigurations = (
936 | 00E356F61AD99517003FC87E /* Debug */,
937 | 00E356F71AD99517003FC87E /* Release */,
938 | );
939 | defaultConfigurationIsVisible = 0;
940 | defaultConfigurationName = Release;
941 | };
942 | 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "demo" */ = {
943 | isa = XCConfigurationList;
944 | buildConfigurations = (
945 | 13B07F941A680F5B00A75B9A /* Debug */,
946 | 13B07F951A680F5B00A75B9A /* Release */,
947 | );
948 | defaultConfigurationIsVisible = 0;
949 | defaultConfigurationName = Release;
950 | };
951 | 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "demo-tvOS" */ = {
952 | isa = XCConfigurationList;
953 | buildConfigurations = (
954 | 2D02E4971E0B4A5E006451C7 /* Debug */,
955 | 2D02E4981E0B4A5E006451C7 /* Release */,
956 | );
957 | defaultConfigurationIsVisible = 0;
958 | defaultConfigurationName = Release;
959 | };
960 | 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "demo-tvOSTests" */ = {
961 | isa = XCConfigurationList;
962 | buildConfigurations = (
963 | 2D02E4991E0B4A5E006451C7 /* Debug */,
964 | 2D02E49A1E0B4A5E006451C7 /* Release */,
965 | );
966 | defaultConfigurationIsVisible = 0;
967 | defaultConfigurationName = Release;
968 | };
969 | 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "demo" */ = {
970 | isa = XCConfigurationList;
971 | buildConfigurations = (
972 | 83CBBA201A601CBA00E9B192 /* Debug */,
973 | 83CBBA211A601CBA00E9B192 /* Release */,
974 | );
975 | defaultConfigurationIsVisible = 0;
976 | defaultConfigurationName = Release;
977 | };
978 | /* End XCConfigurationList section */
979 | };
980 | rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
981 | }
982 |
--------------------------------------------------------------------------------
/demo/ios/demo.xcodeproj/xcshareddata/xcschemes/demo-tvOS.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/demo/ios/demo.xcodeproj/xcshareddata/xcschemes/demo.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
33 |
39 |
40 |
41 |
42 |
43 |
53 |
55 |
61 |
62 |
63 |
64 |
70 |
72 |
78 |
79 |
80 |
81 |
83 |
84 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/demo/ios/demo.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/demo/ios/demo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/demo/ios/demo/AppDelegate.h:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 |
4 | @interface AppDelegate : UIResponder
5 |
6 | @property (nonatomic, strong) UIWindow *window;
7 |
8 | @end
9 |
--------------------------------------------------------------------------------
/demo/ios/demo/AppDelegate.m:
--------------------------------------------------------------------------------
1 | #import "AppDelegate.h"
2 |
3 | #import
4 | #import
5 | #import
6 |
7 | #ifdef FB_SONARKIT_ENABLED
8 | #import
9 | #import
10 | #import
11 | #import
12 | #import
13 | #import
14 |
15 | static void InitializeFlipper(UIApplication *application) {
16 | FlipperClient *client = [FlipperClient sharedClient];
17 | SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
18 | [client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
19 | [client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
20 | [client addPlugin:[FlipperKitReactPlugin new]];
21 | [client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
22 | [client start];
23 | }
24 | #endif
25 |
26 | @implementation AppDelegate
27 |
28 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
29 | {
30 | #ifdef FB_SONARKIT_ENABLED
31 | InitializeFlipper(application);
32 | #endif
33 |
34 | RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
35 | RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
36 | moduleName:@"demo"
37 | initialProperties:nil];
38 |
39 | rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];
40 |
41 | self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
42 | UIViewController *rootViewController = [UIViewController new];
43 | rootViewController.view = rootView;
44 | self.window.rootViewController = rootViewController;
45 | [self.window makeKeyAndVisible];
46 | return YES;
47 | }
48 |
49 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
50 | {
51 | #if DEBUG
52 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
53 | #else
54 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
55 | #endif
56 | }
57 |
58 | @end
59 |
--------------------------------------------------------------------------------
/demo/ios/demo/Images.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "scale" : "2x",
6 | "size" : "20x20"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "scale" : "3x",
11 | "size" : "20x20"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "scale" : "2x",
16 | "size" : "29x29"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "scale" : "3x",
21 | "size" : "29x29"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "scale" : "2x",
26 | "size" : "40x40"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "scale" : "3x",
31 | "size" : "40x40"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "scale" : "2x",
36 | "size" : "60x60"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "scale" : "3x",
41 | "size" : "60x60"
42 | },
43 | {
44 | "idiom" : "ios-marketing",
45 | "scale" : "1x",
46 | "size" : "1024x1024"
47 | }
48 | ],
49 | "info" : {
50 | "author" : "xcode",
51 | "version" : 1
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/demo/ios/demo/Images.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "version" : 1,
4 | "author" : "xcode"
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/demo/ios/demo/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleDisplayName
8 | demo
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | $(PRODUCT_NAME)
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | 1.0
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | 1
25 | LSRequiresIPhoneOS
26 |
27 | NSAppTransportSecurity
28 |
29 | NSAllowsArbitraryLoads
30 |
31 | NSExceptionDomains
32 |
33 | localhost
34 |
35 | NSExceptionAllowsInsecureHTTPLoads
36 |
37 |
38 |
39 |
40 | NSLocationWhenInUseUsageDescription
41 |
42 | UILaunchStoryboardName
43 | LaunchScreen
44 | UIRequiredDeviceCapabilities
45 |
46 | armv7
47 |
48 | UISupportedInterfaceOrientations
49 |
50 | UIInterfaceOrientationPortrait
51 | UIInterfaceOrientationLandscapeLeft
52 | UIInterfaceOrientationLandscapeRight
53 |
54 | UIViewControllerBasedStatusBarAppearance
55 |
56 | UIAppFonts
57 |
58 | Ionicons.ttf
59 |
60 |
61 |
62 |
--------------------------------------------------------------------------------
/demo/ios/demo/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/demo/ios/demo/main.m:
--------------------------------------------------------------------------------
1 | #import
2 |
3 | #import "AppDelegate.h"
4 |
5 | int main(int argc, char * argv[]) {
6 | @autoreleasepool {
7 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
8 | }
9 | }
10 |
--------------------------------------------------------------------------------
/demo/ios/demoTests/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | $(EXECUTABLE_NAME)
9 | CFBundleIdentifier
10 | $(PRODUCT_BUNDLE_IDENTIFIER)
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | $(PRODUCT_NAME)
15 | CFBundlePackageType
16 | BNDL
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1
23 |
24 |
25 |
--------------------------------------------------------------------------------
/demo/ios/demoTests/demoTests.m:
--------------------------------------------------------------------------------
1 | #import
2 | #import
3 |
4 | #import
5 | #import
6 |
7 | #define TIMEOUT_SECONDS 600
8 | #define TEXT_TO_LOOK_FOR @"Welcome to React"
9 |
10 | @interface demoTests : XCTestCase
11 |
12 | @end
13 |
14 | @implementation demoTests
15 |
16 | - (BOOL)findSubviewInView:(UIView *)view matching:(BOOL(^)(UIView *view))test
17 | {
18 | if (test(view)) {
19 | return YES;
20 | }
21 | for (UIView *subview in [view subviews]) {
22 | if ([self findSubviewInView:subview matching:test]) {
23 | return YES;
24 | }
25 | }
26 | return NO;
27 | }
28 |
29 | - (void)testRendersWelcomeScreen
30 | {
31 | UIViewController *vc = [[[RCTSharedApplication() delegate] window] rootViewController];
32 | NSDate *date = [NSDate dateWithTimeIntervalSinceNow:TIMEOUT_SECONDS];
33 | BOOL foundElement = NO;
34 |
35 | __block NSString *redboxError = nil;
36 | #ifdef DEBUG
37 | RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
38 | if (level >= RCTLogLevelError) {
39 | redboxError = message;
40 | }
41 | });
42 | #endif
43 |
44 | while ([date timeIntervalSinceNow] > 0 && !foundElement && !redboxError) {
45 | [[NSRunLoop mainRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
46 | [[NSRunLoop mainRunLoop] runMode:NSRunLoopCommonModes beforeDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
47 |
48 | foundElement = [self findSubviewInView:vc.view matching:^BOOL(UIView *view) {
49 | if ([view.accessibilityLabel isEqualToString:TEXT_TO_LOOK_FOR]) {
50 | return YES;
51 | }
52 | return NO;
53 | }];
54 | }
55 |
56 | #ifdef DEBUG
57 | RCTSetLogFunction(RCTDefaultLogFunction);
58 | #endif
59 |
60 | XCTAssertNil(redboxError, @"RedBox error: %@", redboxError);
61 | XCTAssertTrue(foundElement, @"Couldn't find element with text '%@' in %d seconds", TEXT_TO_LOOK_FOR, TIMEOUT_SECONDS);
62 | }
63 |
64 |
65 | @end
66 |
--------------------------------------------------------------------------------
/demo/metro.config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Metro configuration for React Native
3 | * https://github.com/facebook/react-native
4 | *
5 | * @format
6 | */
7 |
8 | module.exports = {
9 | transformer: {
10 | getTransformOptions: async () => ({
11 | transform: {
12 | experimentalImportSupport: false,
13 | inlineRequires: false,
14 | },
15 | }),
16 | },
17 | };
18 |
--------------------------------------------------------------------------------
/demo/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "demo",
3 | "version": "0.0.1",
4 | "private": true,
5 | "scripts": {
6 | "android": "react-native run-android",
7 | "ios": "react-native run-ios",
8 | "start": "react-native start",
9 | "test": "jest",
10 | "lint": "eslint ."
11 | },
12 | "dependencies": {
13 | "react": "16.13.1",
14 | "react-native": "0.63.2",
15 | "react-native-rating-element": "^5.3.2"
16 | },
17 | "devDependencies": {
18 | "@babel/core": "^7.8.4",
19 | "@babel/runtime": "^7.8.4",
20 | "@react-native-community/eslint-config": "^1.1.0",
21 | "babel-jest": "^25.1.0",
22 | "eslint": "^6.5.1",
23 | "jest": "^25.1.0",
24 | "metro-react-native-babel-preset": "^0.59.0",
25 | "react-test-renderer": "16.13.1"
26 | },
27 | "jest": {
28 | "preset": "react-native"
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/index.js:
--------------------------------------------------------------------------------
1 | import Rating from "./src/Rating";
2 |
3 | export { Rating };
4 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-native-rating-element",
3 | "version": "5.3.4",
4 | "description": "A simple rating library for react native supporting decimal point and custom icon set",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "repository": {
10 | "type": "git",
11 | "url": "git+https://github.com/ui-ninja/react-native-rating-element.git"
12 | },
13 | "keywords": [
14 | "react-native",
15 | "star-rating",
16 | "decimal",
17 | "point",
18 | "support",
19 | "custom",
20 | "image",
21 | "custom",
22 | "icons",
23 | "ratings"
24 | ],
25 | "author": "Rishabh Sharma",
26 | "license": "MIT",
27 | "bugs": {
28 | "url": "https://github.com/ui-ninja/react-native-rating-element/issues"
29 | },
30 | "homepage": "https://github.com/ui-ninja/react-native-rating-element#readme",
31 | "peerDependencies": {
32 | "react": "*",
33 | "react-native": "*"
34 | },
35 | "devDependencies": {
36 | "metro-react-native-babel-preset": "^0.59.0"
37 | },
38 | "dependencies": {
39 | "prop-types": "^15.7.2",
40 | "react-native-vector-icons": "^7.0.0",
41 | "styled-components": "^5.1.1"
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/src/Rating/components/IconBar.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import { Image, TouchableOpacity } from "react-native";
4 | import styled from "styled-components/native";
5 | import Icon from "react-native-vector-icons/Ionicons";
6 |
7 | const StyledIcon = styled(Icon)`
8 | margin: ${({ margin }) => (margin ? `0 ${margin}px` : "0 1px")};
9 | `;
10 | const StyledImage = styled(Image)`
11 | margin: ${({ margin }) => (margin ? `0 ${margin}px` : "0 1px")};
12 | width: ${({ size }) => `${size}px`};
13 | height: ${({ size }) => `${size}px`};
14 | `;
15 |
16 | const IconBar = ({
17 | name,
18 | size,
19 | color,
20 | margin,
21 | onIconTap,
22 | readonly,
23 | position,
24 | type,
25 | selectedIconImage,
26 | emptyIconImage,
27 | filled = false,
28 | totalCount,
29 | isAccessible,
30 | }) => (
31 | {
38 | if (!readonly && onIconTap) {
39 | onIconTap(position + 1);
40 | }
41 | }}
42 | >
43 | {type === "custom" ? (
44 |
49 | ) : (
50 |
51 | )}
52 |
53 | );
54 |
55 | IconBar.propTypes = {
56 | color: PropTypes.string,
57 | size: PropTypes.number,
58 | name: PropTypes.string,
59 | margin: PropTypes.number,
60 | onIconTap: PropTypes.func,
61 | readonly: PropTypes.bool,
62 | position: PropTypes.number,
63 | filled: PropTypes.bool,
64 | type: PropTypes.oneOf(["icon", "custom"]),
65 | selectedIconImage: PropTypes.node,
66 | emptyIconImage: PropTypes.node,
67 | totalCount: PropTypes.number,
68 | };
69 |
70 | export default IconBar;
71 |
--------------------------------------------------------------------------------
/src/Rating/index.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import PropTypes from "prop-types";
3 | import IconBar from "./components/IconBar";
4 | import styled from "styled-components/native";
5 |
6 | const StyledView = styled.View`
7 | flex-direction: ${({ dir }) => `${dir}`};
8 | `;
9 | const BackgroundIcons = styled.View`
10 | position: relative;
11 | flex-direction: ${({ dir }) => `${dir}`};
12 | ${({ type, dir }) =>
13 | type !== "custom" &&
14 | dir === "row-reverse" &&
15 | `
16 | flex-direction: row;
17 | `}
18 | ${({ type, dir }) =>
19 | type !== "custom" &&
20 | dir === "column-reverse" &&
21 | `
22 | flex-direction: column;
23 | `}
24 | `;
25 | const ColoredIcons = styled.View`
26 | overflow: hidden;
27 | position: absolute;
28 | flex-direction: ${({ dir }) => `${dir}`};
29 | ${({ type, dir }) =>
30 | type !== "custom" &&
31 | dir === "row-reverse" &&
32 | `
33 | flex-direction: row;
34 | `};
35 | ${({ type, dir }) =>
36 | type !== "custom" &&
37 | dir === "column-reverse" &&
38 | `
39 | flex-direction: column;
40 | `};
41 | width: ${({ percentage, dir }) =>
42 | dir === "column" || dir === "column-reverse" ? `auto` : `${percentage}%`};
43 | height: ${({ percentage, dir }) =>
44 | dir === "row" || dir === "row-reverse" ? `auto` : `${percentage}%`};
45 | top: 0;
46 | bottom: ${({ dir }) => (dir === "column-reverse" ? 0 : "auto")};
47 | `;
48 |
49 | const Rating = ({
50 | rated,
51 | totalCount,
52 | ratingColor,
53 | ratingBackgroundColor,
54 | size,
55 | icon,
56 | marginBetweenRatingIcon,
57 | readonly,
58 | onIconTap,
59 | direction,
60 | type,
61 | selectedIconImage,
62 | emptyIconImage,
63 | }) => {
64 | const isReverse = ["row-reverse", "column-reverse"].includes(direction);
65 | let percentage = (rated / totalCount) * 100;
66 | if (isReverse && type !== "custom") {
67 | percentage = 100 - percentage;
68 | }
69 | return (
70 |
75 |
76 | {Array.from({ length: totalCount }, (_, i) => (
77 |
96 | ))}
97 |
98 | {Array.from({ length: totalCount }, (_, i) => (
99 |
120 | ))}
121 |
122 |
123 |
124 | );
125 | };
126 |
127 | Rating.defaultProps = {
128 | rated: 0,
129 | totalCount: 5,
130 | ratingColor: "#f1c644",
131 | ratingBackgroundColor: "#d4d4d4",
132 | size: 12,
133 | icon: "ios-star",
134 | marginBetweenRatingIcon: 1,
135 | readonly: false,
136 | direction: "row",
137 | type: "icon",
138 | };
139 |
140 | Rating.propTypes = {
141 | rated: PropTypes.number,
142 | totalCount: PropTypes.number,
143 | ratingColor: PropTypes.string,
144 | ratingBackgroundColor: PropTypes.string,
145 | size: PropTypes.number,
146 | icon: PropTypes.string,
147 | marginBetweenRatingIcon: PropTypes.number,
148 | readonly: PropTypes.bool,
149 | onIconTap: PropTypes.func,
150 | direction: PropTypes.oneOf([
151 | "row",
152 | "row-reverse",
153 | "column",
154 | "column-reverse",
155 | ]),
156 | type: PropTypes.oneOf(["icon", "custom"]),
157 | selectedIconImage: PropTypes.node,
158 | emptyIconImage: PropTypes.node,
159 | };
160 |
161 | export default Rating;
162 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.10.4":
6 | version "7.10.4"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
8 | integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==
9 | dependencies:
10 | "@babel/highlight" "^7.10.4"
11 |
12 | "@babel/generator@^7.11.0":
13 | version "7.11.0"
14 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c"
15 | integrity sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==
16 | dependencies:
17 | "@babel/types" "^7.11.0"
18 | jsesc "^2.5.1"
19 | source-map "^0.5.0"
20 |
21 | "@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.10.4":
22 | version "7.10.4"
23 | resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
24 | integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==
25 | dependencies:
26 | "@babel/types" "^7.10.4"
27 |
28 | "@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
29 | version "7.10.4"
30 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
31 | integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==
32 | dependencies:
33 | "@babel/helper-explode-assignable-expression" "^7.10.4"
34 | "@babel/types" "^7.10.4"
35 |
36 | "@babel/helper-builder-react-jsx-experimental@^7.10.4":
37 | version "7.10.5"
38 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz#f35e956a19955ff08c1258e44a515a6d6248646b"
39 | integrity sha512-Buewnx6M4ttG+NLkKyt7baQn7ScC/Td+e99G914fRU8fGIUivDDgVIQeDHFa5e4CRSJQt58WpNHhsAZgtzVhsg==
40 | dependencies:
41 | "@babel/helper-annotate-as-pure" "^7.10.4"
42 | "@babel/helper-module-imports" "^7.10.4"
43 | "@babel/types" "^7.10.5"
44 |
45 | "@babel/helper-builder-react-jsx@^7.10.4":
46 | version "7.10.4"
47 | resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
48 | integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg==
49 | dependencies:
50 | "@babel/helper-annotate-as-pure" "^7.10.4"
51 | "@babel/types" "^7.10.4"
52 |
53 | "@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.10.5":
54 | version "7.10.5"
55 | resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d"
56 | integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==
57 | dependencies:
58 | "@babel/helper-function-name" "^7.10.4"
59 | "@babel/helper-member-expression-to-functions" "^7.10.5"
60 | "@babel/helper-optimise-call-expression" "^7.10.4"
61 | "@babel/helper-plugin-utils" "^7.10.4"
62 | "@babel/helper-replace-supers" "^7.10.4"
63 | "@babel/helper-split-export-declaration" "^7.10.4"
64 |
65 | "@babel/helper-create-regexp-features-plugin@^7.10.4":
66 | version "7.10.4"
67 | resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8"
68 | integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==
69 | dependencies:
70 | "@babel/helper-annotate-as-pure" "^7.10.4"
71 | "@babel/helper-regex" "^7.10.4"
72 | regexpu-core "^4.7.0"
73 |
74 | "@babel/helper-define-map@^7.10.4":
75 | version "7.10.5"
76 | resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
77 | integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==
78 | dependencies:
79 | "@babel/helper-function-name" "^7.10.4"
80 | "@babel/types" "^7.10.5"
81 | lodash "^4.17.19"
82 |
83 | "@babel/helper-explode-assignable-expression@^7.10.4":
84 | version "7.10.4"
85 | resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c"
86 | integrity sha512-4K71RyRQNPRrR85sr5QY4X3VwG4wtVoXZB9+L3r1Gp38DhELyHCtovqydRi7c1Ovb17eRGiQ/FD5s8JdU0Uy5A==
87 | dependencies:
88 | "@babel/traverse" "^7.10.4"
89 | "@babel/types" "^7.10.4"
90 |
91 | "@babel/helper-function-name@^7.10.4":
92 | version "7.10.4"
93 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
94 | integrity sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==
95 | dependencies:
96 | "@babel/helper-get-function-arity" "^7.10.4"
97 | "@babel/template" "^7.10.4"
98 | "@babel/types" "^7.10.4"
99 |
100 | "@babel/helper-get-function-arity@^7.10.4":
101 | version "7.10.4"
102 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
103 | integrity sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==
104 | dependencies:
105 | "@babel/types" "^7.10.4"
106 |
107 | "@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5":
108 | version "7.11.0"
109 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df"
110 | integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==
111 | dependencies:
112 | "@babel/types" "^7.11.0"
113 |
114 | "@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4":
115 | version "7.10.4"
116 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620"
117 | integrity sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==
118 | dependencies:
119 | "@babel/types" "^7.10.4"
120 |
121 | "@babel/helper-module-transforms@^7.10.4":
122 | version "7.11.0"
123 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359"
124 | integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==
125 | dependencies:
126 | "@babel/helper-module-imports" "^7.10.4"
127 | "@babel/helper-replace-supers" "^7.10.4"
128 | "@babel/helper-simple-access" "^7.10.4"
129 | "@babel/helper-split-export-declaration" "^7.11.0"
130 | "@babel/template" "^7.10.4"
131 | "@babel/types" "^7.11.0"
132 | lodash "^4.17.19"
133 |
134 | "@babel/helper-optimise-call-expression@^7.10.4":
135 | version "7.10.4"
136 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
137 | integrity sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==
138 | dependencies:
139 | "@babel/types" "^7.10.4"
140 |
141 | "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0":
142 | version "7.10.4"
143 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
144 | integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==
145 |
146 | "@babel/helper-regex@^7.10.4":
147 | version "7.10.5"
148 | resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0"
149 | integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==
150 | dependencies:
151 | lodash "^4.17.19"
152 |
153 | "@babel/helper-replace-supers@^7.10.4":
154 | version "7.10.4"
155 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf"
156 | integrity sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==
157 | dependencies:
158 | "@babel/helper-member-expression-to-functions" "^7.10.4"
159 | "@babel/helper-optimise-call-expression" "^7.10.4"
160 | "@babel/traverse" "^7.10.4"
161 | "@babel/types" "^7.10.4"
162 |
163 | "@babel/helper-simple-access@^7.10.4":
164 | version "7.10.4"
165 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461"
166 | integrity sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==
167 | dependencies:
168 | "@babel/template" "^7.10.4"
169 | "@babel/types" "^7.10.4"
170 |
171 | "@babel/helper-skip-transparent-expression-wrappers@^7.11.0":
172 | version "7.11.0"
173 | resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729"
174 | integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==
175 | dependencies:
176 | "@babel/types" "^7.11.0"
177 |
178 | "@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
179 | version "7.11.0"
180 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
181 | integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==
182 | dependencies:
183 | "@babel/types" "^7.11.0"
184 |
185 | "@babel/helper-validator-identifier@^7.10.4":
186 | version "7.10.4"
187 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
188 | integrity sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==
189 |
190 | "@babel/highlight@^7.10.4":
191 | version "7.10.4"
192 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
193 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==
194 | dependencies:
195 | "@babel/helper-validator-identifier" "^7.10.4"
196 | chalk "^2.0.0"
197 | js-tokens "^4.0.0"
198 |
199 | "@babel/parser@^7.10.4", "@babel/parser@^7.11.0":
200 | version "7.11.2"
201 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.2.tgz#0882ab8a455df3065ea2dcb4c753b2460a24bead"
202 | integrity sha512-Vuj/+7vLo6l1Vi7uuO+1ngCDNeVmNbTngcJFKCR/oEtz8tKz0CJxZEGmPt9KcIloZhOZ3Zit6xbpXT2MDlS9Vw==
203 |
204 | "@babel/plugin-proposal-class-properties@^7.0.0":
205 | version "7.10.4"
206 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807"
207 | integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==
208 | dependencies:
209 | "@babel/helper-create-class-features-plugin" "^7.10.4"
210 | "@babel/helper-plugin-utils" "^7.10.4"
211 |
212 | "@babel/plugin-proposal-export-default-from@^7.0.0":
213 | version "7.10.4"
214 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-default-from/-/plugin-proposal-export-default-from-7.10.4.tgz#08f66eef0067cbf6a7bc036977dcdccecaf0c6c5"
215 | integrity sha512-G1l00VvDZ7Yk2yRlC5D8Ybvu3gmeHS3rCHoUYdjrqGYUtdeOBoRypnvDZ5KQqxyaiiGHWnVDeSEzA5F9ozItig==
216 | dependencies:
217 | "@babel/helper-plugin-utils" "^7.10.4"
218 | "@babel/plugin-syntax-export-default-from" "^7.10.4"
219 |
220 | "@babel/plugin-proposal-nullish-coalescing-operator@^7.0.0":
221 | version "7.10.4"
222 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a"
223 | integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==
224 | dependencies:
225 | "@babel/helper-plugin-utils" "^7.10.4"
226 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
227 |
228 | "@babel/plugin-proposal-object-rest-spread@^7.0.0":
229 | version "7.11.0"
230 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af"
231 | integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==
232 | dependencies:
233 | "@babel/helper-plugin-utils" "^7.10.4"
234 | "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
235 | "@babel/plugin-transform-parameters" "^7.10.4"
236 |
237 | "@babel/plugin-proposal-optional-catch-binding@^7.0.0":
238 | version "7.10.4"
239 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd"
240 | integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==
241 | dependencies:
242 | "@babel/helper-plugin-utils" "^7.10.4"
243 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
244 |
245 | "@babel/plugin-proposal-optional-chaining@^7.0.0":
246 | version "7.11.0"
247 | resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076"
248 | integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==
249 | dependencies:
250 | "@babel/helper-plugin-utils" "^7.10.4"
251 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
252 | "@babel/plugin-syntax-optional-chaining" "^7.8.0"
253 |
254 | "@babel/plugin-syntax-dynamic-import@^7.0.0":
255 | version "7.8.3"
256 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
257 | integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==
258 | dependencies:
259 | "@babel/helper-plugin-utils" "^7.8.0"
260 |
261 | "@babel/plugin-syntax-export-default-from@^7.0.0", "@babel/plugin-syntax-export-default-from@^7.10.4":
262 | version "7.10.4"
263 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-default-from/-/plugin-syntax-export-default-from-7.10.4.tgz#e5494f95006355c10292a0ff1ce42a5746002ec8"
264 | integrity sha512-79V6r6Pgudz0RnuMGp5xidu6Z+bPFugh8/Q9eDHonmLp4wKFAZDwygJwYgCzuDu8lFA/sYyT+mc5y2wkd7bTXA==
265 | dependencies:
266 | "@babel/helper-plugin-utils" "^7.10.4"
267 |
268 | "@babel/plugin-syntax-flow@^7.10.4", "@babel/plugin-syntax-flow@^7.2.0":
269 | version "7.10.4"
270 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.10.4.tgz#53351dd7ae01995e567d04ce42af1a6e0ba846a6"
271 | integrity sha512-yxQsX1dJixF4qEEdzVbst3SZQ58Nrooz8NV9Z9GL4byTE25BvJgl5lf0RECUf0fh28rZBb/RYTWn/eeKwCMrZQ==
272 | dependencies:
273 | "@babel/helper-plugin-utils" "^7.10.4"
274 |
275 | "@babel/plugin-syntax-jsx@^7.10.4":
276 | version "7.10.4"
277 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c"
278 | integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g==
279 | dependencies:
280 | "@babel/helper-plugin-utils" "^7.10.4"
281 |
282 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.0.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
283 | version "7.8.3"
284 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
285 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==
286 | dependencies:
287 | "@babel/helper-plugin-utils" "^7.8.0"
288 |
289 | "@babel/plugin-syntax-object-rest-spread@^7.8.0":
290 | version "7.8.3"
291 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
292 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==
293 | dependencies:
294 | "@babel/helper-plugin-utils" "^7.8.0"
295 |
296 | "@babel/plugin-syntax-optional-catch-binding@^7.8.0":
297 | version "7.8.3"
298 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
299 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==
300 | dependencies:
301 | "@babel/helper-plugin-utils" "^7.8.0"
302 |
303 | "@babel/plugin-syntax-optional-chaining@^7.0.0", "@babel/plugin-syntax-optional-chaining@^7.8.0":
304 | version "7.8.3"
305 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
306 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==
307 | dependencies:
308 | "@babel/helper-plugin-utils" "^7.8.0"
309 |
310 | "@babel/plugin-syntax-typescript@^7.10.4":
311 | version "7.10.4"
312 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz#2f55e770d3501e83af217d782cb7517d7bb34d25"
313 | integrity sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ==
314 | dependencies:
315 | "@babel/helper-plugin-utils" "^7.10.4"
316 |
317 | "@babel/plugin-transform-arrow-functions@^7.0.0":
318 | version "7.10.4"
319 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd"
320 | integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==
321 | dependencies:
322 | "@babel/helper-plugin-utils" "^7.10.4"
323 |
324 | "@babel/plugin-transform-block-scoping@^7.0.0":
325 | version "7.11.1"
326 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215"
327 | integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==
328 | dependencies:
329 | "@babel/helper-plugin-utils" "^7.10.4"
330 |
331 | "@babel/plugin-transform-classes@^7.0.0":
332 | version "7.10.4"
333 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7"
334 | integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==
335 | dependencies:
336 | "@babel/helper-annotate-as-pure" "^7.10.4"
337 | "@babel/helper-define-map" "^7.10.4"
338 | "@babel/helper-function-name" "^7.10.4"
339 | "@babel/helper-optimise-call-expression" "^7.10.4"
340 | "@babel/helper-plugin-utils" "^7.10.4"
341 | "@babel/helper-replace-supers" "^7.10.4"
342 | "@babel/helper-split-export-declaration" "^7.10.4"
343 | globals "^11.1.0"
344 |
345 | "@babel/plugin-transform-computed-properties@^7.0.0":
346 | version "7.10.4"
347 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb"
348 | integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==
349 | dependencies:
350 | "@babel/helper-plugin-utils" "^7.10.4"
351 |
352 | "@babel/plugin-transform-destructuring@^7.0.0":
353 | version "7.10.4"
354 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5"
355 | integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==
356 | dependencies:
357 | "@babel/helper-plugin-utils" "^7.10.4"
358 |
359 | "@babel/plugin-transform-exponentiation-operator@^7.0.0":
360 | version "7.10.4"
361 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e"
362 | integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==
363 | dependencies:
364 | "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
365 | "@babel/helper-plugin-utils" "^7.10.4"
366 |
367 | "@babel/plugin-transform-flow-strip-types@^7.0.0":
368 | version "7.10.4"
369 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.10.4.tgz#c497957f09e86e3df7296271e9eb642876bf7788"
370 | integrity sha512-XTadyuqNst88UWBTdLjM+wEY7BFnY2sYtPyAidfC7M/QaZnSuIZpMvLxqGT7phAcnGyWh/XQFLKcGf04CnvxSQ==
371 | dependencies:
372 | "@babel/helper-plugin-utils" "^7.10.4"
373 | "@babel/plugin-syntax-flow" "^7.10.4"
374 |
375 | "@babel/plugin-transform-for-of@^7.0.0":
376 | version "7.10.4"
377 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9"
378 | integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==
379 | dependencies:
380 | "@babel/helper-plugin-utils" "^7.10.4"
381 |
382 | "@babel/plugin-transform-function-name@^7.0.0":
383 | version "7.10.4"
384 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7"
385 | integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==
386 | dependencies:
387 | "@babel/helper-function-name" "^7.10.4"
388 | "@babel/helper-plugin-utils" "^7.10.4"
389 |
390 | "@babel/plugin-transform-literals@^7.0.0":
391 | version "7.10.4"
392 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c"
393 | integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==
394 | dependencies:
395 | "@babel/helper-plugin-utils" "^7.10.4"
396 |
397 | "@babel/plugin-transform-modules-commonjs@^7.0.0":
398 | version "7.10.4"
399 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0"
400 | integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==
401 | dependencies:
402 | "@babel/helper-module-transforms" "^7.10.4"
403 | "@babel/helper-plugin-utils" "^7.10.4"
404 | "@babel/helper-simple-access" "^7.10.4"
405 | babel-plugin-dynamic-import-node "^2.3.3"
406 |
407 | "@babel/plugin-transform-object-assign@^7.0.0":
408 | version "7.10.4"
409 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.10.4.tgz#f7c8f54ce8052ccd8b9da9b3358848423221c338"
410 | integrity sha512-6zccDhYEICfMeQqIjuY5G09/yhKzG30DKHJeYBQUHIsJH7c2jXSGvgwRalufLAXAq432OSlsEfAOLlzEsQzxVw==
411 | dependencies:
412 | "@babel/helper-plugin-utils" "^7.10.4"
413 |
414 | "@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.10.4":
415 | version "7.10.5"
416 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a"
417 | integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==
418 | dependencies:
419 | "@babel/helper-get-function-arity" "^7.10.4"
420 | "@babel/helper-plugin-utils" "^7.10.4"
421 |
422 | "@babel/plugin-transform-react-display-name@^7.0.0":
423 | version "7.10.4"
424 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d"
425 | integrity sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw==
426 | dependencies:
427 | "@babel/helper-plugin-utils" "^7.10.4"
428 |
429 | "@babel/plugin-transform-react-jsx-self@^7.0.0":
430 | version "7.10.4"
431 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369"
432 | integrity sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg==
433 | dependencies:
434 | "@babel/helper-plugin-utils" "^7.10.4"
435 | "@babel/plugin-syntax-jsx" "^7.10.4"
436 |
437 | "@babel/plugin-transform-react-jsx-source@^7.0.0":
438 | version "7.10.5"
439 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz#34f1779117520a779c054f2cdd9680435b9222b4"
440 | integrity sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA==
441 | dependencies:
442 | "@babel/helper-plugin-utils" "^7.10.4"
443 | "@babel/plugin-syntax-jsx" "^7.10.4"
444 |
445 | "@babel/plugin-transform-react-jsx@^7.0.0":
446 | version "7.10.4"
447 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2"
448 | integrity sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A==
449 | dependencies:
450 | "@babel/helper-builder-react-jsx" "^7.10.4"
451 | "@babel/helper-builder-react-jsx-experimental" "^7.10.4"
452 | "@babel/helper-plugin-utils" "^7.10.4"
453 | "@babel/plugin-syntax-jsx" "^7.10.4"
454 |
455 | "@babel/plugin-transform-regenerator@^7.0.0":
456 | version "7.10.4"
457 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63"
458 | integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==
459 | dependencies:
460 | regenerator-transform "^0.14.2"
461 |
462 | "@babel/plugin-transform-runtime@^7.0.0":
463 | version "7.11.0"
464 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.0.tgz#e27f78eb36f19448636e05c33c90fd9ad9b8bccf"
465 | integrity sha512-LFEsP+t3wkYBlis8w6/kmnd6Kb1dxTd+wGJ8MlxTGzQo//ehtqlVL4S9DNUa53+dtPSQobN2CXx4d81FqC58cw==
466 | dependencies:
467 | "@babel/helper-module-imports" "^7.10.4"
468 | "@babel/helper-plugin-utils" "^7.10.4"
469 | resolve "^1.8.1"
470 | semver "^5.5.1"
471 |
472 | "@babel/plugin-transform-shorthand-properties@^7.0.0":
473 | version "7.10.4"
474 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6"
475 | integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==
476 | dependencies:
477 | "@babel/helper-plugin-utils" "^7.10.4"
478 |
479 | "@babel/plugin-transform-spread@^7.0.0":
480 | version "7.11.0"
481 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc"
482 | integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==
483 | dependencies:
484 | "@babel/helper-plugin-utils" "^7.10.4"
485 | "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
486 |
487 | "@babel/plugin-transform-sticky-regex@^7.0.0":
488 | version "7.10.4"
489 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d"
490 | integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==
491 | dependencies:
492 | "@babel/helper-plugin-utils" "^7.10.4"
493 | "@babel/helper-regex" "^7.10.4"
494 |
495 | "@babel/plugin-transform-template-literals@^7.0.0":
496 | version "7.10.5"
497 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c"
498 | integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==
499 | dependencies:
500 | "@babel/helper-annotate-as-pure" "^7.10.4"
501 | "@babel/helper-plugin-utils" "^7.10.4"
502 |
503 | "@babel/plugin-transform-typescript@^7.5.0":
504 | version "7.11.0"
505 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz#2b4879676af37342ebb278216dd090ac67f13abb"
506 | integrity sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w==
507 | dependencies:
508 | "@babel/helper-create-class-features-plugin" "^7.10.5"
509 | "@babel/helper-plugin-utils" "^7.10.4"
510 | "@babel/plugin-syntax-typescript" "^7.10.4"
511 |
512 | "@babel/plugin-transform-unicode-regex@^7.0.0":
513 | version "7.10.4"
514 | resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8"
515 | integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==
516 | dependencies:
517 | "@babel/helper-create-regexp-features-plugin" "^7.10.4"
518 | "@babel/helper-plugin-utils" "^7.10.4"
519 |
520 | "@babel/runtime@^7.8.4":
521 | version "7.11.2"
522 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
523 | integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==
524 | dependencies:
525 | regenerator-runtime "^0.13.4"
526 |
527 | "@babel/template@^7.0.0", "@babel/template@^7.10.4":
528 | version "7.10.4"
529 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
530 | integrity sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==
531 | dependencies:
532 | "@babel/code-frame" "^7.10.4"
533 | "@babel/parser" "^7.10.4"
534 | "@babel/types" "^7.10.4"
535 |
536 | "@babel/traverse@^7.10.4", "@babel/traverse@^7.4.5":
537 | version "7.11.0"
538 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24"
539 | integrity sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==
540 | dependencies:
541 | "@babel/code-frame" "^7.10.4"
542 | "@babel/generator" "^7.11.0"
543 | "@babel/helper-function-name" "^7.10.4"
544 | "@babel/helper-split-export-declaration" "^7.11.0"
545 | "@babel/parser" "^7.11.0"
546 | "@babel/types" "^7.11.0"
547 | debug "^4.1.0"
548 | globals "^11.1.0"
549 | lodash "^4.17.19"
550 |
551 | "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0":
552 | version "7.11.0"
553 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d"
554 | integrity sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==
555 | dependencies:
556 | "@babel/helper-validator-identifier" "^7.10.4"
557 | lodash "^4.17.19"
558 | to-fast-properties "^2.0.0"
559 |
560 | "@emotion/is-prop-valid@^0.8.8":
561 | version "0.8.8"
562 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
563 | integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
564 | dependencies:
565 | "@emotion/memoize" "0.7.4"
566 |
567 | "@emotion/memoize@0.7.4":
568 | version "0.7.4"
569 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
570 | integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
571 |
572 | "@emotion/stylis@^0.8.4":
573 | version "0.8.5"
574 | resolved "https://registry.yarnpkg.com/@emotion/stylis/-/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
575 | integrity sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==
576 |
577 | "@emotion/unitless@^0.7.4":
578 | version "0.7.5"
579 | resolved "https://registry.yarnpkg.com/@emotion/unitless/-/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
580 | integrity sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==
581 |
582 | "@types/color-name@^1.1.1":
583 | version "1.1.1"
584 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
585 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==
586 |
587 | ansi-regex@^5.0.0:
588 | version "5.0.0"
589 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
590 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
591 |
592 | ansi-styles@^3.2.1:
593 | version "3.2.1"
594 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
595 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
596 | dependencies:
597 | color-convert "^1.9.0"
598 |
599 | ansi-styles@^4.0.0:
600 | version "4.2.1"
601 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
602 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==
603 | dependencies:
604 | "@types/color-name" "^1.1.1"
605 | color-convert "^2.0.1"
606 |
607 | babel-plugin-dynamic-import-node@^2.3.3:
608 | version "2.3.3"
609 | resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
610 | integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==
611 | dependencies:
612 | object.assign "^4.1.0"
613 |
614 | "babel-plugin-styled-components@>= 1":
615 | version "1.11.1"
616 | resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.11.1.tgz#5296a9e557d736c3186be079fff27c6665d63d76"
617 | integrity sha512-YwrInHyKUk1PU3avIRdiLyCpM++18Rs1NgyMXEAQC33rIXs/vro0A+stf4sT0Gf22Got+xRWB8Cm0tw+qkRzBA==
618 | dependencies:
619 | "@babel/helper-annotate-as-pure" "^7.0.0"
620 | "@babel/helper-module-imports" "^7.0.0"
621 | babel-plugin-syntax-jsx "^6.18.0"
622 | lodash "^4.17.11"
623 |
624 | babel-plugin-syntax-jsx@^6.18.0:
625 | version "6.18.0"
626 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
627 | integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
628 |
629 | camelcase@^5.0.0:
630 | version "5.3.1"
631 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320"
632 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
633 |
634 | camelize@^1.0.0:
635 | version "1.0.0"
636 | resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b"
637 | integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=
638 |
639 | chalk@^2.0.0:
640 | version "2.4.2"
641 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
642 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
643 | dependencies:
644 | ansi-styles "^3.2.1"
645 | escape-string-regexp "^1.0.5"
646 | supports-color "^5.3.0"
647 |
648 | cliui@^6.0.0:
649 | version "6.0.0"
650 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1"
651 | integrity sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==
652 | dependencies:
653 | string-width "^4.2.0"
654 | strip-ansi "^6.0.0"
655 | wrap-ansi "^6.2.0"
656 |
657 | color-convert@^1.9.0:
658 | version "1.9.3"
659 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
660 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
661 | dependencies:
662 | color-name "1.1.3"
663 |
664 | color-convert@^2.0.1:
665 | version "2.0.1"
666 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
667 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
668 | dependencies:
669 | color-name "~1.1.4"
670 |
671 | color-name@1.1.3:
672 | version "1.1.3"
673 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
674 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
675 |
676 | color-name@~1.1.4:
677 | version "1.1.4"
678 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
679 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
680 |
681 | css-color-keywords@^1.0.0:
682 | version "1.0.0"
683 | resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05"
684 | integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=
685 |
686 | css-to-react-native@^3.0.0:
687 | version "3.0.0"
688 | resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756"
689 | integrity sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==
690 | dependencies:
691 | camelize "^1.0.0"
692 | css-color-keywords "^1.0.0"
693 | postcss-value-parser "^4.0.2"
694 |
695 | debug@^4.1.0:
696 | version "4.1.1"
697 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
698 | integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
699 | dependencies:
700 | ms "^2.1.1"
701 |
702 | decamelize@^1.2.0:
703 | version "1.2.0"
704 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
705 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
706 |
707 | define-properties@^1.1.2:
708 | version "1.1.3"
709 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
710 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
711 | dependencies:
712 | object-keys "^1.0.12"
713 |
714 | emoji-regex@^8.0.0:
715 | version "8.0.0"
716 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
717 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
718 |
719 | escape-string-regexp@^1.0.5:
720 | version "1.0.5"
721 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
722 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
723 |
724 | find-up@^4.1.0:
725 | version "4.1.0"
726 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
727 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
728 | dependencies:
729 | locate-path "^5.0.0"
730 | path-exists "^4.0.0"
731 |
732 | function-bind@^1.1.1:
733 | version "1.1.1"
734 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
735 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
736 |
737 | get-caller-file@^2.0.1:
738 | version "2.0.5"
739 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
740 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
741 |
742 | globals@^11.1.0:
743 | version "11.12.0"
744 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
745 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
746 |
747 | has-flag@^3.0.0:
748 | version "3.0.0"
749 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
750 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
751 |
752 | has-symbols@^1.0.0:
753 | version "1.0.1"
754 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
755 | integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==
756 |
757 | hoist-non-react-statics@^3.0.0:
758 | version "3.3.2"
759 | resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
760 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
761 | dependencies:
762 | react-is "^16.7.0"
763 |
764 | is-fullwidth-code-point@^3.0.0:
765 | version "3.0.0"
766 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
767 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
768 |
769 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
770 | version "4.0.0"
771 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
772 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
773 |
774 | jsesc@^2.5.1:
775 | version "2.5.2"
776 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
777 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==
778 |
779 | jsesc@~0.5.0:
780 | version "0.5.0"
781 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
782 | integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
783 |
784 | locate-path@^5.0.0:
785 | version "5.0.0"
786 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
787 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
788 | dependencies:
789 | p-locate "^4.1.0"
790 |
791 | lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.19:
792 | version "4.17.21"
793 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
794 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
795 |
796 | loose-envify@^1.4.0:
797 | version "1.4.0"
798 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
799 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
800 | dependencies:
801 | js-tokens "^3.0.0 || ^4.0.0"
802 |
803 | metro-react-native-babel-preset@^0.59.0:
804 | version "0.59.0"
805 | resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.59.0.tgz#20e020bc6ac9849e1477de1333d303ed42aba225"
806 | integrity sha512-BoO6ncPfceIDReIH8pQ5tQptcGo5yRWQXJGVXfANbiKLq4tfgdZB1C1e2rMUJ6iypmeJU9dzl+EhPmIFKtgREg==
807 | dependencies:
808 | "@babel/plugin-proposal-class-properties" "^7.0.0"
809 | "@babel/plugin-proposal-export-default-from" "^7.0.0"
810 | "@babel/plugin-proposal-nullish-coalescing-operator" "^7.0.0"
811 | "@babel/plugin-proposal-object-rest-spread" "^7.0.0"
812 | "@babel/plugin-proposal-optional-catch-binding" "^7.0.0"
813 | "@babel/plugin-proposal-optional-chaining" "^7.0.0"
814 | "@babel/plugin-syntax-dynamic-import" "^7.0.0"
815 | "@babel/plugin-syntax-export-default-from" "^7.0.0"
816 | "@babel/plugin-syntax-flow" "^7.2.0"
817 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.0.0"
818 | "@babel/plugin-syntax-optional-chaining" "^7.0.0"
819 | "@babel/plugin-transform-arrow-functions" "^7.0.0"
820 | "@babel/plugin-transform-block-scoping" "^7.0.0"
821 | "@babel/plugin-transform-classes" "^7.0.0"
822 | "@babel/plugin-transform-computed-properties" "^7.0.0"
823 | "@babel/plugin-transform-destructuring" "^7.0.0"
824 | "@babel/plugin-transform-exponentiation-operator" "^7.0.0"
825 | "@babel/plugin-transform-flow-strip-types" "^7.0.0"
826 | "@babel/plugin-transform-for-of" "^7.0.0"
827 | "@babel/plugin-transform-function-name" "^7.0.0"
828 | "@babel/plugin-transform-literals" "^7.0.0"
829 | "@babel/plugin-transform-modules-commonjs" "^7.0.0"
830 | "@babel/plugin-transform-object-assign" "^7.0.0"
831 | "@babel/plugin-transform-parameters" "^7.0.0"
832 | "@babel/plugin-transform-react-display-name" "^7.0.0"
833 | "@babel/plugin-transform-react-jsx" "^7.0.0"
834 | "@babel/plugin-transform-react-jsx-self" "^7.0.0"
835 | "@babel/plugin-transform-react-jsx-source" "^7.0.0"
836 | "@babel/plugin-transform-regenerator" "^7.0.0"
837 | "@babel/plugin-transform-runtime" "^7.0.0"
838 | "@babel/plugin-transform-shorthand-properties" "^7.0.0"
839 | "@babel/plugin-transform-spread" "^7.0.0"
840 | "@babel/plugin-transform-sticky-regex" "^7.0.0"
841 | "@babel/plugin-transform-template-literals" "^7.0.0"
842 | "@babel/plugin-transform-typescript" "^7.5.0"
843 | "@babel/plugin-transform-unicode-regex" "^7.0.0"
844 | "@babel/template" "^7.0.0"
845 | react-refresh "^0.4.0"
846 |
847 | ms@^2.1.1:
848 | version "2.1.2"
849 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
850 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
851 |
852 | object-assign@^4.1.1:
853 | version "4.1.1"
854 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
855 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
856 |
857 | object-keys@^1.0.11, object-keys@^1.0.12:
858 | version "1.1.1"
859 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
860 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
861 |
862 | object.assign@^4.1.0:
863 | version "4.1.0"
864 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
865 | integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
866 | dependencies:
867 | define-properties "^1.1.2"
868 | function-bind "^1.1.1"
869 | has-symbols "^1.0.0"
870 | object-keys "^1.0.11"
871 |
872 | p-limit@^2.2.0:
873 | version "2.3.0"
874 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
875 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
876 | dependencies:
877 | p-try "^2.0.0"
878 |
879 | p-locate@^4.1.0:
880 | version "4.1.0"
881 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
882 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
883 | dependencies:
884 | p-limit "^2.2.0"
885 |
886 | p-try@^2.0.0:
887 | version "2.2.0"
888 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
889 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
890 |
891 | path-exists@^4.0.0:
892 | version "4.0.0"
893 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
894 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
895 |
896 | path-parse@^1.0.6:
897 | version "1.0.6"
898 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
899 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
900 |
901 | postcss-value-parser@^4.0.2:
902 | version "4.1.0"
903 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
904 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==
905 |
906 | prop-types@^15.7.2:
907 | version "15.7.2"
908 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
909 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
910 | dependencies:
911 | loose-envify "^1.4.0"
912 | object-assign "^4.1.1"
913 | react-is "^16.8.1"
914 |
915 | react-is@^16.7.0, react-is@^16.8.1:
916 | version "16.13.1"
917 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
918 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
919 |
920 | react-native-vector-icons@^7.0.0:
921 | version "7.0.0"
922 | resolved "https://registry.yarnpkg.com/react-native-vector-icons/-/react-native-vector-icons-7.0.0.tgz#5b92ed363c867645daad48c559e1f99efcfbb813"
923 | integrity sha512-Ku8+dTUAnR9pexRPQqsUcQEZlxEpFZsIy8iOFqVL/3mrUyncZJHtqJyx2cUOmltZIC6W2GI4IkD3EYzPerXV5g==
924 | dependencies:
925 | lodash "^4.17.15"
926 | prop-types "^15.7.2"
927 | yargs "^15.0.2"
928 |
929 | react-refresh@^0.4.0:
930 | version "0.4.3"
931 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.4.3.tgz#966f1750c191672e76e16c2efa569150cc73ab53"
932 | integrity sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==
933 |
934 | regenerate-unicode-properties@^8.2.0:
935 | version "8.2.0"
936 | resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
937 | integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==
938 | dependencies:
939 | regenerate "^1.4.0"
940 |
941 | regenerate@^1.4.0:
942 | version "1.4.1"
943 | resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f"
944 | integrity sha512-j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==
945 |
946 | regenerator-runtime@^0.13.4:
947 | version "0.13.7"
948 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
949 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
950 |
951 | regenerator-transform@^0.14.2:
952 | version "0.14.5"
953 | resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
954 | integrity sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==
955 | dependencies:
956 | "@babel/runtime" "^7.8.4"
957 |
958 | regexpu-core@^4.7.0:
959 | version "4.7.0"
960 | resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938"
961 | integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==
962 | dependencies:
963 | regenerate "^1.4.0"
964 | regenerate-unicode-properties "^8.2.0"
965 | regjsgen "^0.5.1"
966 | regjsparser "^0.6.4"
967 | unicode-match-property-ecmascript "^1.0.4"
968 | unicode-match-property-value-ecmascript "^1.2.0"
969 |
970 | regjsgen@^0.5.1:
971 | version "0.5.2"
972 | resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
973 | integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==
974 |
975 | regjsparser@^0.6.4:
976 | version "0.6.4"
977 | resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
978 | integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==
979 | dependencies:
980 | jsesc "~0.5.0"
981 |
982 | require-directory@^2.1.1:
983 | version "2.1.1"
984 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
985 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I=
986 |
987 | require-main-filename@^2.0.0:
988 | version "2.0.0"
989 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b"
990 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==
991 |
992 | resolve@^1.8.1:
993 | version "1.17.0"
994 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
995 | integrity sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==
996 | dependencies:
997 | path-parse "^1.0.6"
998 |
999 | semver@^5.5.1:
1000 | version "5.7.1"
1001 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
1002 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
1003 |
1004 | set-blocking@^2.0.0:
1005 | version "2.0.0"
1006 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
1007 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
1008 |
1009 | shallowequal@^1.1.0:
1010 | version "1.1.0"
1011 | resolved "https://registry.yarnpkg.com/shallowequal/-/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
1012 | integrity sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==
1013 |
1014 | source-map@^0.5.0:
1015 | version "0.5.7"
1016 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1017 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
1018 |
1019 | string-width@^4.1.0, string-width@^4.2.0:
1020 | version "4.2.0"
1021 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5"
1022 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==
1023 | dependencies:
1024 | emoji-regex "^8.0.0"
1025 | is-fullwidth-code-point "^3.0.0"
1026 | strip-ansi "^6.0.0"
1027 |
1028 | strip-ansi@^6.0.0:
1029 | version "6.0.0"
1030 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
1031 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
1032 | dependencies:
1033 | ansi-regex "^5.0.0"
1034 |
1035 | styled-components@^5.1.1:
1036 | version "5.1.1"
1037 | resolved "https://registry.yarnpkg.com/styled-components/-/styled-components-5.1.1.tgz#96dfb02a8025794960863b9e8e365e3b6be5518d"
1038 | integrity sha512-1ps8ZAYu2Husx+Vz8D+MvXwEwvMwFv+hqqUwhNlDN5ybg6A+3xyW1ECrAgywhvXapNfXiz79jJyU0x22z0FFTg==
1039 | dependencies:
1040 | "@babel/helper-module-imports" "^7.0.0"
1041 | "@babel/traverse" "^7.4.5"
1042 | "@emotion/is-prop-valid" "^0.8.8"
1043 | "@emotion/stylis" "^0.8.4"
1044 | "@emotion/unitless" "^0.7.4"
1045 | babel-plugin-styled-components ">= 1"
1046 | css-to-react-native "^3.0.0"
1047 | hoist-non-react-statics "^3.0.0"
1048 | shallowequal "^1.1.0"
1049 | supports-color "^5.5.0"
1050 |
1051 | supports-color@^5.3.0, supports-color@^5.5.0:
1052 | version "5.5.0"
1053 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1054 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1055 | dependencies:
1056 | has-flag "^3.0.0"
1057 |
1058 | to-fast-properties@^2.0.0:
1059 | version "2.0.0"
1060 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1061 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
1062 |
1063 | unicode-canonical-property-names-ecmascript@^1.0.4:
1064 | version "1.0.4"
1065 | resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
1066 | integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==
1067 |
1068 | unicode-match-property-ecmascript@^1.0.4:
1069 | version "1.0.4"
1070 | resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
1071 | integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==
1072 | dependencies:
1073 | unicode-canonical-property-names-ecmascript "^1.0.4"
1074 | unicode-property-aliases-ecmascript "^1.0.4"
1075 |
1076 | unicode-match-property-value-ecmascript@^1.2.0:
1077 | version "1.2.0"
1078 | resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
1079 | integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==
1080 |
1081 | unicode-property-aliases-ecmascript@^1.0.4:
1082 | version "1.1.0"
1083 | resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
1084 | integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==
1085 |
1086 | which-module@^2.0.0:
1087 | version "2.0.0"
1088 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
1089 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
1090 |
1091 | wrap-ansi@^6.2.0:
1092 | version "6.2.0"
1093 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
1094 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
1095 | dependencies:
1096 | ansi-styles "^4.0.0"
1097 | string-width "^4.1.0"
1098 | strip-ansi "^6.0.0"
1099 |
1100 | y18n@^4.0.0:
1101 | version "4.0.1"
1102 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4"
1103 | integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
1104 |
1105 | yargs-parser@^18.1.2:
1106 | version "18.1.3"
1107 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0"
1108 | integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==
1109 | dependencies:
1110 | camelcase "^5.0.0"
1111 | decamelize "^1.2.0"
1112 |
1113 | yargs@^15.0.2:
1114 | version "15.4.1"
1115 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8"
1116 | integrity sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==
1117 | dependencies:
1118 | cliui "^6.0.0"
1119 | decamelize "^1.2.0"
1120 | find-up "^4.1.0"
1121 | get-caller-file "^2.0.1"
1122 | require-directory "^2.1.1"
1123 | require-main-filename "^2.0.0"
1124 | set-blocking "^2.0.0"
1125 | string-width "^4.2.0"
1126 | which-module "^2.0.0"
1127 | y18n "^4.0.0"
1128 | yargs-parser "^18.1.2"
1129 |
--------------------------------------------------------------------------------