Update dependencies (#5870)
* Update dependencies * Remove storybook env type def * fix android build
This commit is contained in:
parent
b7455853e5
commit
687469b0cf
23 changed files with 2609 additions and 16634 deletions
|
|
@ -57,7 +57,7 @@
|
|||
"newlines-between": "always",
|
||||
"pathGroups": [
|
||||
{
|
||||
"pattern": "@(@react-native-async-storage|@react-native-community|@react-native-cookies|@react-navigation|@rudderstack|@sentry|@testing-library|@storybook)/**",
|
||||
"pattern": "@(@react-native-async-storage|@react-native-community|@react-native-cookies|@react-navigation|@rudderstack|@sentry|@testing-library)/**",
|
||||
"group": "external",
|
||||
"position": "before"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -131,7 +131,6 @@ android {
|
|||
applicationId "com.mattermost.rnbeta"
|
||||
minSdkVersion rootProject.ext.minSdkVersion
|
||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||
missingDimensionStrategy "RNNotifications.reactNativeVersion", "reactNative60"
|
||||
versionCode 381
|
||||
versionName "1.48.1"
|
||||
multiDexEnabled = true
|
||||
|
|
@ -200,6 +199,11 @@ android {
|
|||
pickFirst '**/*.so'
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
checkReleaseBuilds false
|
||||
abortOnError false
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
|
|
|||
|
|
@ -1,27 +0,0 @@
|
|||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
import {withKnobs, number, select} from '@storybook/addon-knobs';
|
||||
import {storiesOf} from '@storybook/react-native';
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import {Preferences} from '@mm-redux/constants';
|
||||
import {getProfiles} from '@mm-redux/selectors/entities/users';
|
||||
import {UserProfile} from '@mm-redux/types/users';
|
||||
import Store from '@store/store';
|
||||
|
||||
import Avatars from './avatars';
|
||||
|
||||
const state = Store.redux?.getState();
|
||||
const users = getProfiles(state, {});
|
||||
const userIds = users.map((user:UserProfile) => user.id);
|
||||
|
||||
storiesOf('Avatars', module).
|
||||
addDecorator(withKnobs).
|
||||
add('Avatars', () => (
|
||||
<Avatars
|
||||
userIds={userIds.slice(0, number(`number of named participants (max ${userIds.length})`, userIds.length))}
|
||||
theme={select('theme', Preferences.THEMES, Preferences.THEMES.denim)}
|
||||
/>
|
||||
));
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
import {withKnobs, select} from '@storybook/addon-knobs';
|
||||
import {storiesOf} from '@storybook/react-native';
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import Loading from './loading';
|
||||
|
||||
storiesOf('Loading Icon Story', module).
|
||||
addDecorator(withKnobs).
|
||||
add('loading icon', () => (
|
||||
<Loading
|
||||
size={select('size', {Large: 'large', Small: 'small'}, 'large')}
|
||||
color={select('color', {Red: 'red', Blue: 'blue', Yellow: 'yellow', Black: 'black'}, 'red')}
|
||||
/>
|
||||
));
|
||||
|
|
@ -83,7 +83,7 @@ describe('PostDraft', () => {
|
|||
expect(queryByTestId('post_draft.post.input')).toBeNull();
|
||||
|
||||
// Should match text description
|
||||
expect(getByText('You are viewing an ')).toBeTruthy();
|
||||
expect(getByText('You are viewing an')).toBeTruthy();
|
||||
expect(getByText('archived channel')).toBeTruthy();
|
||||
expect(getByText('. New messages cannot be posted.')).toBeTruthy();
|
||||
expect(getByText('Close Channel')).toBeTruthy();
|
||||
|
|
@ -104,7 +104,7 @@ describe('PostDraft', () => {
|
|||
expect(queryByTestId('post_draft.post.input')).toBeNull();
|
||||
|
||||
// Should match text description
|
||||
expect(getByText('You are viewing an ')).toBeTruthy();
|
||||
expect(getByText('You are viewing an')).toBeTruthy();
|
||||
expect(getByText('archived channel')).toBeTruthy();
|
||||
expect(getByText('. New messages cannot be posted.')).toBeTruthy();
|
||||
expect(getByText('Close Channel')).toBeTruthy();
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ describe('renderSystemMessage', () => {
|
|||
);
|
||||
expect(toJSON()).toMatchSnapshot();
|
||||
expect(getByText('@username')).toBeTruthy();
|
||||
expect(getByText(' updated the channel header from: old header to: new header')).toBeTruthy();
|
||||
expect(getByText('updated the channel header from: old header to: new header')).toBeTruthy();
|
||||
});
|
||||
|
||||
test('uses renderer for Channel Display Name update', () => {
|
||||
|
|
@ -50,7 +50,7 @@ describe('renderSystemMessage', () => {
|
|||
);
|
||||
expect(toJSON()).toMatchSnapshot();
|
||||
expect(getByText('@username')).toBeTruthy();
|
||||
expect(getByText(' updated the channel display name from: old displayname to: new displayname')).toBeTruthy();
|
||||
expect(getByText('updated the channel display name from: old displayname to: new displayname')).toBeTruthy();
|
||||
});
|
||||
|
||||
test('uses renderer for Channel Purpose update', () => {
|
||||
|
|
@ -84,7 +84,7 @@ describe('renderSystemMessage', () => {
|
|||
);
|
||||
expect(toJSON()).toMatchSnapshot();
|
||||
expect(getByText('@username')).toBeTruthy();
|
||||
expect(getByText(' archived the channel')).toBeTruthy();
|
||||
expect(getByText('archived the channel')).toBeTruthy();
|
||||
});
|
||||
|
||||
test('uses renderer for OLD archived channel without a username', () => {
|
||||
|
|
@ -117,7 +117,7 @@ describe('renderSystemMessage', () => {
|
|||
);
|
||||
expect(viewOne.toJSON()).toMatchSnapshot();
|
||||
expect(viewOne.getByText('@username')).toBeTruthy();
|
||||
expect(viewOne.getByText(' unarchived the channel')).toBeTruthy();
|
||||
expect(viewOne.getByText('unarchived the channel')).toBeTruthy();
|
||||
|
||||
const viewTwo = renderWithReduxIntl(
|
||||
<SystemMessage
|
||||
|
|
@ -159,7 +159,7 @@ describe('renderSystemMessage', () => {
|
|||
);
|
||||
expect(joined.toJSON()).toMatchSnapshot();
|
||||
expect(joined.getByText('@username')).toBeTruthy();
|
||||
expect(joined.getByText(' joined the channel as a guest.')).toBeTruthy();
|
||||
expect(joined.getByText('joined the channel as a guest.')).toBeTruthy();
|
||||
|
||||
post.type = Posts.POST_TYPES.ADD_GUEST_TO_CHANNEL;
|
||||
post.props = {
|
||||
|
|
@ -175,7 +175,7 @@ describe('renderSystemMessage', () => {
|
|||
);
|
||||
expect(added.toJSON()).toMatchSnapshot();
|
||||
expect(added.getByText('@other.user')).toBeTruthy();
|
||||
expect(added.getByText(' added to the channel as a guest by ')).toBeTruthy();
|
||||
expect(added.getByText('added to the channel as a guest by')).toBeTruthy();
|
||||
expect(added.getByText('@username.')).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ const Notification = ({componentId, notification}: NotificationProps) => {
|
|||
return (
|
||||
<PanGestureHandler
|
||||
onGestureEvent={animateDismissOverlay}
|
||||
minOffsetY={-20}
|
||||
activeOffsetY={-20}
|
||||
>
|
||||
<Animatable.View
|
||||
duration={250}
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ describe('SelectorScreen', () => {
|
|||
theme: Preferences.THEMES.denim,
|
||||
};
|
||||
|
||||
beforeAll(() => {
|
||||
beforeEach(() => {
|
||||
jest.useFakeTimers();
|
||||
});
|
||||
|
||||
|
|
@ -126,7 +126,7 @@ describe('SelectorScreen', () => {
|
|||
expect(wrapper.getElement()).toMatchSnapshot();
|
||||
});
|
||||
|
||||
test('should call getDynamicOptions if data source is dynamic', async () => {
|
||||
test('should call getDynamicOptions if data source is dynamic', () => {
|
||||
const getDynamicOptions = jest.fn(async (term) => {
|
||||
if (term) {
|
||||
return {data: [{text: 'With Query Text', value: 'with_query'}]};
|
||||
|
|
@ -148,6 +148,7 @@ describe('SelectorScreen', () => {
|
|||
|
||||
jest.runAllTimers();
|
||||
setTimeout(() => {
|
||||
console.log('HERE');
|
||||
expect(props.getDynamicOptions).toHaveBeenCalledWith('');
|
||||
expect(wrapper.state().data).toEqual([
|
||||
{text: 'Without Query Text', value: 'without_query'},
|
||||
|
|
|
|||
1778
detox/package-lock.json
generated
1778
detox/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -6,18 +6,18 @@
|
|||
"devDependencies": {
|
||||
"@babel/plugin-proposal-class-properties": "7.16.0",
|
||||
"@babel/plugin-transform-modules-commonjs": "7.16.0",
|
||||
"@babel/plugin-transform-runtime": "7.16.0",
|
||||
"@babel/preset-env": "7.16.0",
|
||||
"@babel/plugin-transform-runtime": "7.16.4",
|
||||
"@babel/preset-env": "7.16.4",
|
||||
"axios": "0.24.0",
|
||||
"babel-jest": "27.3.1",
|
||||
"babel-jest": "27.4.4",
|
||||
"babel-plugin-module-resolver": "4.1.0",
|
||||
"client-oauth2": "github:larkox/js-client-oauth2#e24e2eb5dfcbbbb3a59d095e831dbe0012b0ac49",
|
||||
"deepmerge": "4.2.2",
|
||||
"detox": "19.0.0",
|
||||
"detox": "19.3.0",
|
||||
"form-data": "4.0.0",
|
||||
"jest": "27.3.1",
|
||||
"jest-circus": "27.3.1",
|
||||
"jest-cli": "27.3.1",
|
||||
"jest": "27.4.4",
|
||||
"jest-circus": "27.4.4",
|
||||
"jest-cli": "27.4.4",
|
||||
"jest-html-reporters": "2.1.6",
|
||||
"jest-junit": "13.0.0",
|
||||
"sanitize-filename": "1.6.3",
|
||||
|
|
|
|||
2
env.d.ts
vendored
2
env.d.ts
vendored
|
|
@ -3,7 +3,5 @@
|
|||
|
||||
// So that typescript doesn't complain about importing `@env` through react-native-dotenv
|
||||
declare module '@env' {
|
||||
export const STORYBOOK_HOST: string;
|
||||
export const STORYBOOK_PORT: number;
|
||||
export const RUNNING_E2E: string;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ GEM
|
|||
artifactory (3.0.15)
|
||||
atomos (0.1.3)
|
||||
aws-eventstream (1.2.0)
|
||||
aws-partitions (1.539.0)
|
||||
aws-partitions (1.540.0)
|
||||
aws-sdk-core (3.124.0)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
aws-partitions (~> 1, >= 1.525.0)
|
||||
|
|
@ -36,7 +36,7 @@ GEM
|
|||
unf (>= 0.0.5, < 1.0.0)
|
||||
dotenv (2.7.6)
|
||||
emoji_regex (3.2.3)
|
||||
excon (0.88.0)
|
||||
excon (0.89.0)
|
||||
faraday (1.8.0)
|
||||
faraday-em_http (~> 1.0)
|
||||
faraday-em_synchrony (~> 1.0)
|
||||
|
|
@ -62,7 +62,7 @@ GEM
|
|||
faraday_middleware (1.2.0)
|
||||
faraday (~> 1.0)
|
||||
fastimage (2.2.5)
|
||||
fastlane (2.198.1)
|
||||
fastlane (2.199.0)
|
||||
CFPropertyList (>= 2.3, < 4.0.0)
|
||||
addressable (>= 2.8, < 3.0.0)
|
||||
artifactory (~> 3.0)
|
||||
|
|
@ -107,7 +107,7 @@ GEM
|
|||
fastlane-plugin-find_replace_string (0.1.0)
|
||||
fastlane-plugin-versioning_android (0.1.0)
|
||||
gh_inspector (1.1.3)
|
||||
google-apis-androidpublisher_v3 (0.13.0)
|
||||
google-apis-androidpublisher_v3 (0.14.0)
|
||||
google-apis-core (>= 0.4, < 2.a)
|
||||
google-apis-core (0.4.1)
|
||||
addressable (~> 2.5, >= 2.5.1)
|
||||
|
|
@ -122,7 +122,7 @@ GEM
|
|||
google-apis-core (>= 0.4, < 2.a)
|
||||
google-apis-playcustomapp_v1 (0.6.0)
|
||||
google-apis-core (>= 0.4, < 2.a)
|
||||
google-apis-storage_v1 (0.9.0)
|
||||
google-apis-storage_v1 (0.10.0)
|
||||
google-apis-core (>= 0.4, < 2.a)
|
||||
google-cloud-core (1.6.0)
|
||||
google-cloud-env (~> 1.0)
|
||||
|
|
@ -130,8 +130,8 @@ GEM
|
|||
google-cloud-env (1.5.0)
|
||||
faraday (>= 0.17.3, < 2.0)
|
||||
google-cloud-errors (1.2.0)
|
||||
google-cloud-storage (1.34.1)
|
||||
addressable (~> 2.5)
|
||||
google-cloud-storage (1.35.0)
|
||||
addressable (~> 2.8)
|
||||
digest-crc (~> 0.4)
|
||||
google-apis-iamcredentials_v1 (~> 0.1)
|
||||
google-apis-storage_v1 (~> 0.1)
|
||||
|
|
|
|||
1
index.js
1
index.js
|
|
@ -25,7 +25,6 @@ if (__DEV__) {
|
|||
'Require cycle: node_modules/react-native/Libraries/Network/fetch.js',
|
||||
'Warning: Cannot update a component from inside the function body of a different component',
|
||||
]);
|
||||
require('storybook/mattermost_storybook.ts');
|
||||
}
|
||||
|
||||
const setFontFamily = () => {
|
||||
|
|
|
|||
467
ios/Podfile.lock
467
ios/Podfile.lock
|
|
@ -3,14 +3,14 @@ PODS:
|
|||
- BVLinearGradient (2.5.6):
|
||||
- React
|
||||
- DoubleConversion (1.1.6)
|
||||
- FBLazyVector (0.66.3)
|
||||
- FBReactNativeSpec (0.66.3):
|
||||
- FBLazyVector (0.66.4)
|
||||
- FBReactNativeSpec (0.66.4):
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTRequired (= 0.66.3)
|
||||
- RCTTypeSafety (= 0.66.3)
|
||||
- React-Core (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- RCTRequired (= 0.66.4)
|
||||
- RCTTypeSafety (= 0.66.4)
|
||||
- React-Core (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- fmt (6.2.1)
|
||||
- glog (0.3.5)
|
||||
- HMSegmentedControl (1.5.6)
|
||||
|
|
@ -51,195 +51,195 @@ PODS:
|
|||
- DoubleConversion
|
||||
- fmt (~> 6.2.1)
|
||||
- glog
|
||||
- RCTRequired (0.66.3)
|
||||
- RCTTypeSafety (0.66.3):
|
||||
- FBLazyVector (= 0.66.3)
|
||||
- RCTRequired (0.66.4)
|
||||
- RCTTypeSafety (0.66.4):
|
||||
- FBLazyVector (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTRequired (= 0.66.3)
|
||||
- React-Core (= 0.66.3)
|
||||
- RCTRequired (= 0.66.4)
|
||||
- React-Core (= 0.66.4)
|
||||
- RCTYouTube (2.0.2):
|
||||
- React
|
||||
- YoutubePlayer-in-WKWebView (~> 0.3.1)
|
||||
- React (0.66.3):
|
||||
- React-Core (= 0.66.3)
|
||||
- React-Core/DevSupport (= 0.66.3)
|
||||
- React-Core/RCTWebSocket (= 0.66.3)
|
||||
- React-RCTActionSheet (= 0.66.3)
|
||||
- React-RCTAnimation (= 0.66.3)
|
||||
- React-RCTBlob (= 0.66.3)
|
||||
- React-RCTImage (= 0.66.3)
|
||||
- React-RCTLinking (= 0.66.3)
|
||||
- React-RCTNetwork (= 0.66.3)
|
||||
- React-RCTSettings (= 0.66.3)
|
||||
- React-RCTText (= 0.66.3)
|
||||
- React-RCTVibration (= 0.66.3)
|
||||
- React-callinvoker (0.66.3)
|
||||
- React-Core (0.66.3):
|
||||
- React (0.66.4):
|
||||
- React-Core (= 0.66.4)
|
||||
- React-Core/DevSupport (= 0.66.4)
|
||||
- React-Core/RCTWebSocket (= 0.66.4)
|
||||
- React-RCTActionSheet (= 0.66.4)
|
||||
- React-RCTAnimation (= 0.66.4)
|
||||
- React-RCTBlob (= 0.66.4)
|
||||
- React-RCTImage (= 0.66.4)
|
||||
- React-RCTLinking (= 0.66.4)
|
||||
- React-RCTNetwork (= 0.66.4)
|
||||
- React-RCTSettings (= 0.66.4)
|
||||
- React-RCTText (= 0.66.4)
|
||||
- React-RCTVibration (= 0.66.4)
|
||||
- React-callinvoker (0.66.4)
|
||||
- React-Core (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-Core/Default (= 0.66.4)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/CoreModulesHeaders (0.66.3):
|
||||
- React-Core/CoreModulesHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/Default (0.66.3):
|
||||
- React-Core/Default (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/DevSupport (0.66.3):
|
||||
- React-Core/DevSupport (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default (= 0.66.3)
|
||||
- React-Core/RCTWebSocket (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-jsinspector (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-Core/Default (= 0.66.4)
|
||||
- React-Core/RCTWebSocket (= 0.66.4)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-jsinspector (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTActionSheetHeaders (0.66.3):
|
||||
- React-Core/RCTActionSheetHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTAnimationHeaders (0.66.3):
|
||||
- React-Core/RCTAnimationHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTBlobHeaders (0.66.3):
|
||||
- React-Core/RCTBlobHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTImageHeaders (0.66.3):
|
||||
- React-Core/RCTImageHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTLinkingHeaders (0.66.3):
|
||||
- React-Core/RCTLinkingHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTNetworkHeaders (0.66.3):
|
||||
- React-Core/RCTNetworkHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTSettingsHeaders (0.66.3):
|
||||
- React-Core/RCTSettingsHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTTextHeaders (0.66.3):
|
||||
- React-Core/RCTTextHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTVibrationHeaders (0.66.3):
|
||||
- React-Core/RCTVibrationHeaders (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-Core/RCTWebSocket (0.66.3):
|
||||
- React-Core/RCTWebSocket (0.66.4):
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/Default (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsiexecutor (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-Core/Default (= 0.66.4)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsiexecutor (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- Yoga
|
||||
- React-CoreModules (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- React-CoreModules (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.3)
|
||||
- React-Core/CoreModulesHeaders (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-RCTImage (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-cxxreact (0.66.3):
|
||||
- RCTTypeSafety (= 0.66.4)
|
||||
- React-Core/CoreModulesHeaders (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-RCTImage (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-cxxreact (0.66.4):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-callinvoker (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-jsinspector (= 0.66.3)
|
||||
- React-logger (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-runtimeexecutor (= 0.66.3)
|
||||
- React-jsi (0.66.3):
|
||||
- React-callinvoker (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-jsinspector (= 0.66.4)
|
||||
- React-logger (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- React-runtimeexecutor (= 0.66.4)
|
||||
- React-jsi (0.66.4):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-jsi/Default (= 0.66.3)
|
||||
- React-jsi/Default (0.66.3):
|
||||
- React-jsi/Default (= 0.66.4)
|
||||
- React-jsi/Default (0.66.4):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-jsiexecutor (0.66.3):
|
||||
- React-jsiexecutor (0.66.4):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-jsinspector (0.66.3)
|
||||
- React-logger (0.66.3):
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- React-jsinspector (0.66.4)
|
||||
- React-logger (0.66.4):
|
||||
- glog
|
||||
- react-native-cameraroll (4.1.2):
|
||||
- React-Core
|
||||
|
|
@ -249,20 +249,20 @@ PODS:
|
|||
- React-Core
|
||||
- react-native-hw-keyboard-event (0.0.4):
|
||||
- React
|
||||
- react-native-image-picker (4.3.0):
|
||||
- react-native-image-picker (4.5.0):
|
||||
- React-Core
|
||||
- react-native-local-auth (1.6.0):
|
||||
- React
|
||||
- react-native-mmkv-storage (0.6.6):
|
||||
- MMKV (= 1.2.10)
|
||||
- React-Core
|
||||
- react-native-netinfo (7.1.3):
|
||||
- react-native-netinfo (7.1.5):
|
||||
- React-Core
|
||||
- react-native-notifications (4.1.2):
|
||||
- React-Core
|
||||
- react-native-passcode-status (1.1.2):
|
||||
- React
|
||||
- react-native-paste-input (0.3.4):
|
||||
- react-native-paste-input (0.3.5):
|
||||
- React-Core
|
||||
- Swime (= 3.0.6)
|
||||
- react-native-safe-area (0.5.1):
|
||||
|
|
@ -280,97 +280,97 @@ PODS:
|
|||
- React
|
||||
- react-native-webview (11.15.0):
|
||||
- React-Core
|
||||
- React-perflogger (0.66.3)
|
||||
- React-RCTActionSheet (0.66.3):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.66.3)
|
||||
- React-RCTAnimation (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- React-perflogger (0.66.4)
|
||||
- React-RCTActionSheet (0.66.4):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.66.4)
|
||||
- React-RCTAnimation (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.3)
|
||||
- React-Core/RCTAnimationHeaders (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-RCTBlob (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- RCTTypeSafety (= 0.66.4)
|
||||
- React-Core/RCTAnimationHeaders (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-RCTBlob (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/RCTBlobHeaders (= 0.66.3)
|
||||
- React-Core/RCTWebSocket (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-RCTNetwork (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-RCTImage (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- React-Core/RCTBlobHeaders (= 0.66.4)
|
||||
- React-Core/RCTWebSocket (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-RCTNetwork (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-RCTImage (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.3)
|
||||
- React-Core/RCTImageHeaders (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-RCTNetwork (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-RCTLinking (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- React-Core/RCTLinkingHeaders (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-RCTNetwork (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- RCTTypeSafety (= 0.66.4)
|
||||
- React-Core/RCTImageHeaders (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-RCTNetwork (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-RCTLinking (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- React-Core/RCTLinkingHeaders (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-RCTNetwork (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.3)
|
||||
- React-Core/RCTNetworkHeaders (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-RCTSettings (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- RCTTypeSafety (= 0.66.4)
|
||||
- React-Core/RCTNetworkHeaders (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-RCTSettings (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- RCTTypeSafety (= 0.66.3)
|
||||
- React-Core/RCTSettingsHeaders (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-RCTText (0.66.3):
|
||||
- React-Core/RCTTextHeaders (= 0.66.3)
|
||||
- React-RCTVibration (0.66.3):
|
||||
- FBReactNativeSpec (= 0.66.3)
|
||||
- RCTTypeSafety (= 0.66.4)
|
||||
- React-Core/RCTSettingsHeaders (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-RCTText (0.66.4):
|
||||
- React-Core/RCTTextHeaders (= 0.66.4)
|
||||
- React-RCTVibration (0.66.4):
|
||||
- FBReactNativeSpec (= 0.66.4)
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-Core/RCTVibrationHeaders (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (= 0.66.3)
|
||||
- React-runtimeexecutor (0.66.3):
|
||||
- React-jsi (= 0.66.3)
|
||||
- ReactCommon/turbomodule/core (0.66.3):
|
||||
- React-Core/RCTVibrationHeaders (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (= 0.66.4)
|
||||
- React-runtimeexecutor (0.66.4):
|
||||
- React-jsi (= 0.66.4)
|
||||
- ReactCommon/turbomodule/core (0.66.4):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.06.28.00-v2)
|
||||
- React-callinvoker (= 0.66.3)
|
||||
- React-Core (= 0.66.3)
|
||||
- React-cxxreact (= 0.66.3)
|
||||
- React-jsi (= 0.66.3)
|
||||
- React-logger (= 0.66.3)
|
||||
- React-perflogger (= 0.66.3)
|
||||
- React-callinvoker (= 0.66.4)
|
||||
- React-Core (= 0.66.4)
|
||||
- React-cxxreact (= 0.66.4)
|
||||
- React-jsi (= 0.66.4)
|
||||
- React-logger (= 0.66.4)
|
||||
- React-perflogger (= 0.66.4)
|
||||
- ReactNativeExceptionHandler (2.10.10):
|
||||
- React-Core
|
||||
- ReactNativeIncallManager (3.3.0):
|
||||
- React
|
||||
- ReactNativeKeyboardTrackingView (5.7.0):
|
||||
- React
|
||||
- ReactNativeNavigation (7.23.1-hotfix.1):
|
||||
- ReactNativeNavigation (7.24.0):
|
||||
- HMSegmentedControl
|
||||
- React-Core
|
||||
- React-RCTImage
|
||||
- React-RCTText
|
||||
- ReactNativeNavigation/Core (= 7.23.1-hotfix.1)
|
||||
- ReactNativeNavigation/Core (7.23.1-hotfix.1):
|
||||
- ReactNativeNavigation/Core (= 7.24.0)
|
||||
- ReactNativeNavigation/Core (7.24.0):
|
||||
- HMSegmentedControl
|
||||
- React-Core
|
||||
- React-RCTImage
|
||||
- React-RCTText
|
||||
- rn-fetch-blob (0.12.0):
|
||||
- React-Core
|
||||
- RNCAsyncStorage (1.15.13):
|
||||
- RNCAsyncStorage (1.15.14):
|
||||
- React-Core
|
||||
- RNCClipboard (1.5.1):
|
||||
- React-Core
|
||||
- RNCMaskedView (0.1.11):
|
||||
- React
|
||||
- RNDateTimePicker (4.0.0):
|
||||
- RNDateTimePicker (4.0.1):
|
||||
- React-Core
|
||||
- RNDeviceInfo (8.4.8):
|
||||
- React-Core
|
||||
|
|
@ -384,7 +384,7 @@ PODS:
|
|||
- SDWebImageWebPCoder (~> 0.8.4)
|
||||
- RNFileViewer (2.1.4):
|
||||
- React-Core
|
||||
- RNGestureHandler (1.10.3):
|
||||
- RNGestureHandler (2.1.0):
|
||||
- React-Core
|
||||
- RNKeychain (8.0.0):
|
||||
- React-Core
|
||||
|
|
@ -394,7 +394,7 @@ PODS:
|
|||
- React-Core
|
||||
- RNReactNativeHapticFeedback (1.13.0):
|
||||
- React-Core
|
||||
- RNReanimated (2.2.4):
|
||||
- RNReanimated (2.3.0):
|
||||
- DoubleConversion
|
||||
- FBLazyVector
|
||||
- FBReactNativeSpec
|
||||
|
|
@ -420,18 +420,17 @@ PODS:
|
|||
- React-RCTNetwork
|
||||
- React-RCTSettings
|
||||
- React-RCTText
|
||||
- React-RCTVibration
|
||||
- ReactCommon/turbomodule/core
|
||||
- Yoga
|
||||
- RNRudderSdk (1.0.0):
|
||||
- React
|
||||
- Rudder (>= 1.2.1)
|
||||
- RNScreens (3.9.0):
|
||||
- RNScreens (3.10.1):
|
||||
- React-Core
|
||||
- React-RCTImage
|
||||
- RNSentry (3.2.3):
|
||||
- RNSentry (3.2.7):
|
||||
- React-Core
|
||||
- Sentry (= 7.5.1)
|
||||
- Sentry (= 7.5.4)
|
||||
- RNShare (7.3.2):
|
||||
- React-Core
|
||||
- RNSVG (12.1.1):
|
||||
|
|
@ -445,9 +444,9 @@ PODS:
|
|||
- SDWebImageWebPCoder (0.8.4):
|
||||
- libwebp (~> 1.0)
|
||||
- SDWebImage/Core (~> 5.10)
|
||||
- Sentry (7.5.1):
|
||||
- Sentry/Core (= 7.5.1)
|
||||
- Sentry/Core (7.5.1)
|
||||
- Sentry (7.5.4):
|
||||
- Sentry/Core (= 7.5.4)
|
||||
- Sentry/Core (7.5.4)
|
||||
- Swime (3.0.6)
|
||||
- XCDYouTubeKit (2.15.2)
|
||||
- Yoga (1.14.0)
|
||||
|
|
@ -731,8 +730,8 @@ SPEC CHECKSUMS:
|
|||
boost: a7c83b31436843459a1961bfd74b96033dc77234
|
||||
BVLinearGradient: e3aad03778a456d77928f594a649e96995f1c872
|
||||
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
|
||||
FBLazyVector: de148e8310b8b878db304ceea2fec13f2c02e3a0
|
||||
FBReactNativeSpec: 6192956c9e346013d5f1809ba049af720b11c6a4
|
||||
FBLazyVector: e5569e42a1c79ca00521846c223173a57aca1fe1
|
||||
FBReactNativeSpec: fe08c1cd7e2e205718d77ad14b34957cce949b58
|
||||
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
||||
glog: 5337263514dd6f09803962437687240c5dc39aa4
|
||||
HMSegmentedControl: 34c1f54d822d8308e7b24f5d901ec674dfa31352
|
||||
|
|
@ -747,79 +746,79 @@ SPEC CHECKSUMS:
|
|||
Permission-PhotoLibrary: 9dcf80d1353d81b9f1e210c34291591236aaf2b6
|
||||
Permission-PhotoLibraryAddOnly: 3d359683511129433080279c409b29e792d69c71
|
||||
RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9
|
||||
RCTRequired: 59d2b744d8c2bf2d9bc7032a9f654809adcf7d50
|
||||
RCTTypeSafety: d0aaf7ccae5c70a4aaa3a5c3e9e0db97efae760e
|
||||
RCTRequired: 4bf86c70714490bca4bf2696148638284622644b
|
||||
RCTTypeSafety: c475a7059eb77935fa53d2c17db299893f057d5d
|
||||
RCTYouTube: a8bb45705622a6fc9decf64be04128d3658ed411
|
||||
React: fbe655dd1d12c052299b61abdc576720098d80fc
|
||||
React-callinvoker: a535746608d9bc8b1dea7095ed4d8d3d7aae9a05
|
||||
React-Core: 008d2638c4f80b189c8e170ff2d241027ec517fd
|
||||
React-CoreModules: 91c9a03f4e1b74494c087d9c9a29e89a3145c228
|
||||
React-cxxreact: 9c462fb6d59f865855e2dee2097c7d87b3d2de49
|
||||
React-jsi: 4de8b8d70ba4ed841eb9b772bdb719f176387e21
|
||||
React-jsiexecutor: 433a691aee158533a6a6ee9c86cb4a1684fa2853
|
||||
React-jsinspector: d9c8eb0b53f0da206fed56612b289fec84991157
|
||||
React-logger: e522e76fa3e9ec3e7d7115b49485cc065cf4ae06
|
||||
React: f64af14e3f2c50f6f2c91a5fd250e4ff1b3c3459
|
||||
React-callinvoker: b74e4ae80287780dcdf0cab262bcb581eeef56e7
|
||||
React-Core: 3eb7432bad96ff1d25aebc1defbae013fee2fd0e
|
||||
React-CoreModules: ad9e1fd5650e16666c57a08328df86fd7e480cb9
|
||||
React-cxxreact: 02633ff398cf7e91a2c1e12590d323c4a4b8668a
|
||||
React-jsi: 805c41a927d6499fb811772acb971467d9204633
|
||||
React-jsiexecutor: 94ce921e1d8ce7023366873ec371f3441383b396
|
||||
React-jsinspector: d0374f7509d407d2264168b6d0fad0b54e300b85
|
||||
React-logger: 933f80c97c633ee8965d609876848148e3fef438
|
||||
react-native-cameraroll: 2957f2bce63ae896a848fbe0d5352c1bd4d20866
|
||||
react-native-cookies: cd92f3824ed1e32a20802e8185101e14bb5b76da
|
||||
react-native-document-picker: f4cc4df2eff8c9015d862a59bdaef11a153f1292
|
||||
react-native-hw-keyboard-event: b517cefb8d5c659a38049c582de85ff43337dc53
|
||||
react-native-image-picker: 869530859570f2af86ae57bc48886a5e2367a825
|
||||
react-native-image-picker: dcbfbdc26ce176e13b82a2bfada3786c7afa2307
|
||||
react-native-local-auth: 49d336dcf0cb0268a930100013a6525844093844
|
||||
react-native-mmkv-storage: 28514ffe9e67c5223b3d00e725bc72c8194a9eee
|
||||
react-native-netinfo: 42c0965fca99069b92e3f7360ab2d425985e5104
|
||||
react-native-netinfo: a3ece35948490a9507da0c56694da525b83357df
|
||||
react-native-notifications: 97c14bf84c64bd6a6eb7bdcdb916036d93d33428
|
||||
react-native-passcode-status: e78f76b3c8db613e6ced6bd40b54aa4f53374173
|
||||
react-native-paste-input: 4b6a6979a090c56397f485f8a3d58d73b321c549
|
||||
react-native-paste-input: 4b73d92119105ffc0a5ec2145c4a217c107bcb3b
|
||||
react-native-safe-area: e8230b0017d76c00de6b01e2412dcf86b127c6a3
|
||||
react-native-safe-area-context: 584dc04881deb49474363f3be89e4ca0e854c057
|
||||
react-native-startup-time: 1a068b744ce5097a85ebe0fbff691b05961c324d
|
||||
react-native-video: a4c2635d0802f983594b7057e1bce8f442f0ad28
|
||||
react-native-webrtc2: b3f1d5504c8bbd3aa4ce9b6c3ce0fbc47c7e146a
|
||||
react-native-webview: e89bf2dba26a04cda967814df3ed1be99f291233
|
||||
React-perflogger: 73732888d37d4f5065198727b167846743232882
|
||||
React-RCTActionSheet: 96c6d774fa89b1f7c59fc460adc3245ba2d7fd79
|
||||
React-RCTAnimation: 8940cfd3a8640bd6f6372150dbdb83a79bcbae6c
|
||||
React-RCTBlob: e80de5fdf952a4f226a00fc54f3db526809f92f7
|
||||
React-RCTImage: f990d6b272c7e89ff864caf0bccfb620ab3ca5d0
|
||||
React-RCTLinking: 2280ed0d5ffb78954b484b90228d597b5f941c5f
|
||||
React-RCTNetwork: 1359fa853c216616e711b810dcb8682a6a8e7564
|
||||
React-RCTSettings: 84958860aaa3639f0249e751ea7702c62eb67188
|
||||
React-RCTText: 196cf06b8cb6229d8c6dd9fc9057bdf97db5d3fb
|
||||
React-RCTVibration: 50cfe7049167cfc7e83ac5542c6fff0c76791a9b
|
||||
React-runtimeexecutor: bbbdb3d8fcf327c6e2249ee71b6ef1764b7dc266
|
||||
ReactCommon: 9bac022ab71596f2b0fde1268272543184c63971
|
||||
React-perflogger: 93075d8931c32cd1fce8a98c15d2d5ccc4d891bd
|
||||
React-RCTActionSheet: 7d3041e6761b4f3044a37079ddcb156575fb6d89
|
||||
React-RCTAnimation: 743e88b55ac62511ae5c2e22803d4f503f2a3a13
|
||||
React-RCTBlob: bee3a2f98fa7fc25c957c8643494244f74bea0a0
|
||||
React-RCTImage: 19fc9e29b06cc38611c553494f8d3040bf78c24e
|
||||
React-RCTLinking: dc799503979c8c711126d66328e7ce8f25c2848f
|
||||
React-RCTNetwork: 417e4e34cf3c19eaa5fd4e9eb20180d662a799ce
|
||||
React-RCTSettings: 4df89417265af26501a7e0e9192a34d3d9848dff
|
||||
React-RCTText: f8a21c3499ab322326290fa9b701ae29aa093aa5
|
||||
React-RCTVibration: e3ffca672dd3772536cb844274094b0e2c31b187
|
||||
React-runtimeexecutor: dec32ee6f2e2a26e13e58152271535fadff5455a
|
||||
ReactCommon: 57b69f6383eafcbd7da625bfa6003810332313c4
|
||||
ReactNativeExceptionHandler: b11ff67c78802b2f62eed0e10e75cb1ef7947c60
|
||||
ReactNativeIncallManager: a840ef75640518065742a893e6c6ff98ee820039
|
||||
ReactNativeKeyboardTrackingView: 02137fac3b2ebd330d74fa54ead48b14750a2306
|
||||
ReactNativeNavigation: f73f769091fc132e9b502f1c92f54cd4a1ece484
|
||||
ReactNativeNavigation: 61887ca5804d6eb3185c52593ee8e211fb8cd7eb
|
||||
rn-fetch-blob: 17961aec08caae68bb8fc0e5b40f93b3acfa6932
|
||||
RNCAsyncStorage: ac55c090d35b880ac47a7807ab797854afc640ae
|
||||
RNCAsyncStorage: ea6b5c280997b2b32a587793163b1f10e580c4f7
|
||||
RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495
|
||||
RNCMaskedView: 0e1bc4bfa8365eba5fbbb71e07fbdc0555249489
|
||||
RNDateTimePicker: 2224ee77a86b7123377597a015502435e2e49957
|
||||
RNDateTimePicker: a654a0ebfa3dd78bbe5389421aa2d3d5b2744e47
|
||||
RNDeviceInfo: 0400a6d0c94186d1120c3cbd97b23abc022187a9
|
||||
RNDevMenu: fd325b5554b61fe7f48d9205a3877cf5ee88cd7c
|
||||
RNFastImage: 1f2cab428712a4baaf78d6169eaec7f622556dd7
|
||||
RNFileViewer: 83cc066ad795b1f986791d03b56fe0ee14b6a69f
|
||||
RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211
|
||||
RNGestureHandler: e5c7cab5f214503dcefd6b2b0cefb050e1f51c4a
|
||||
RNKeychain: 4f63aada75ebafd26f4bc2c670199461eab85d94
|
||||
RNLocalize: 74b82db20cc3895ccc25af992c644879bcec2815
|
||||
RNPermissions: 4b54095940aea8c03fa3e6c92d4ac3647b31ed4e
|
||||
RNReactNativeHapticFeedback: b83bfb4b537bdd78eb4f6ffe63c6884f7b049ead
|
||||
RNReanimated: 65583befd5706cc9c86ae9a081786181ced37b93
|
||||
RNReanimated: 569c269480a76e39196aa17a5df08ef1561db5ff
|
||||
RNRudderSdk: 1a629f815632d62459ea1add0fd4e853598d34a5
|
||||
RNScreens: 4d79118be80f79fa1f4aa131909a1d6e86280af3
|
||||
RNSentry: 97bc62fa65b7d663daee16fbf9771470852217cf
|
||||
RNScreens: 522705f2e5c9d27efb17f24aceb2bf8335bc7b8e
|
||||
RNSentry: bf1f0970fffd3519a5cf553217f281bbb5b10de4
|
||||
RNShare: d76b8c9c6e6ffb38fc18f40b4338c9d867592ed3
|
||||
RNSVG: 551acb6562324b1d52a4e0758f7ca0ec234e278f
|
||||
RNVectorIcons: 4143ba35feebab8fdbe6bc43d1e776b393d47ac8
|
||||
Rudder: db8cfa8e5757599dfec74a1bdd04dc17b3859789
|
||||
SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d
|
||||
SDWebImageWebPCoder: f93010f3f6c031e2f8fb3081ca4ee6966c539815
|
||||
Sentry: 0718c3ad7a08e1107599610795adaf08864102f3
|
||||
Sentry: 5c5dd4005f3b7b9765d5a8871232cddbd0d888b7
|
||||
Swime: d7b2c277503b6cea317774aedc2dce05613f8b0b
|
||||
XCDYouTubeKit: b120aced3d8638ffb570c5450cddb5a1dac448c7
|
||||
Yoga: 32a18c0e845e185f4a2a66ec76e1fd1f958f22fa
|
||||
Yoga: e7dc4e71caba6472ff48ad7d234389b91dadc280
|
||||
YoutubePlayer-in-WKWebView: cfbf46da51d7370662a695a8f351e5fa1d3e1008
|
||||
|
||||
PODFILE CHECKSUM: 8214414d5676358401d8ad51dff19e7fd8c71b5c
|
||||
|
|
|
|||
16708
package-lock.json
generated
16708
package-lock.json
generated
File diff suppressed because it is too large
Load diff
67
package.json
67
package.json
|
|
@ -7,18 +7,18 @@
|
|||
"license": "Apache 2.0",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@mattermost/react-native-paste-input": "0.3.4",
|
||||
"@react-native-async-storage/async-storage": "1.15.13",
|
||||
"@mattermost/react-native-paste-input": "0.3.5",
|
||||
"@react-native-async-storage/async-storage": "1.15.14",
|
||||
"@react-native-community/cameraroll": "4.1.2",
|
||||
"@react-native-community/clipboard": "1.5.1",
|
||||
"@react-native-community/datetimepicker": "4.0.0",
|
||||
"@react-native-community/datetimepicker": "4.0.1",
|
||||
"@react-native-community/masked-view": "0.1.11",
|
||||
"@react-native-community/netinfo": "7.1.3",
|
||||
"@react-native-community/netinfo": "7.1.5",
|
||||
"@react-native-cookies/cookies": "6.0.11",
|
||||
"@react-navigation/native": "6.0.6",
|
||||
"@react-navigation/stack": "6.0.11",
|
||||
"@rudderstack/rudder-sdk-react-native": "1.1.0",
|
||||
"@sentry/react-native": "3.2.3",
|
||||
"@sentry/react-native": "3.2.7",
|
||||
"@types/redux-mock-store": "1.0.3",
|
||||
"analytics-react-native": "1.2.0",
|
||||
"array.prototype.flat": "1.2.5",
|
||||
|
|
@ -38,21 +38,21 @@
|
|||
"prop-types": "15.7.2",
|
||||
"react": "17.0.2",
|
||||
"react-intl": "2.8.0",
|
||||
"react-native": "0.66.3",
|
||||
"react-native": "0.66.4",
|
||||
"react-native-android-open-settings": "1.3.0",
|
||||
"react-native-animatable": "1.3.3",
|
||||
"react-native-button": "3.0.1",
|
||||
"react-native-calendars": "1.1270.0",
|
||||
"react-native-calendars": "1.1271.0",
|
||||
"react-native-device-info": "8.4.8",
|
||||
"react-native-document-picker": "7.1.1",
|
||||
"react-native-elements": "3.4.2",
|
||||
"react-native-exception-handler": "2.10.10",
|
||||
"react-native-fast-image": "8.5.11",
|
||||
"react-native-file-viewer": "2.1.4",
|
||||
"react-native-gesture-handler": "1.10.3",
|
||||
"react-native-gesture-handler": "2.1.0",
|
||||
"react-native-haptic-feedback": "1.13.0",
|
||||
"react-native-hw-keyboard-event": "0.0.4",
|
||||
"react-native-image-picker": "4.3.0",
|
||||
"react-native-image-picker": "4.5.0",
|
||||
"react-native-incall-manager": "3.3.0",
|
||||
"react-native-keyboard-aware-scrollview": "2.1.0",
|
||||
"react-native-keyboard-tracking-view": "5.7.0",
|
||||
|
|
@ -61,15 +61,15 @@
|
|||
"react-native-local-auth": "1.6.0",
|
||||
"react-native-localize": "2.1.5",
|
||||
"react-native-mmkv-storage": "0.6.6",
|
||||
"react-native-navigation": "7.23.1-hotfix.1",
|
||||
"react-native-navigation": "7.24.0",
|
||||
"react-native-notifications": "4.1.2",
|
||||
"react-native-passcode-status": "1.1.2",
|
||||
"react-native-permissions": "3.1.0",
|
||||
"react-native-reanimated": "2.2.4",
|
||||
"react-native-reanimated": "2.3.0",
|
||||
"react-native-redash": "16.2.3",
|
||||
"react-native-safe-area": "0.5.1",
|
||||
"react-native-safe-area-context": "3.3.2",
|
||||
"react-native-screens": "3.9.0",
|
||||
"react-native-screens": "3.10.1",
|
||||
"react-native-section-list-get-item-layout": "2.2.3",
|
||||
"react-native-share": "7.3.2",
|
||||
"react-native-slider": "0.11.0",
|
||||
|
|
@ -105,20 +105,16 @@
|
|||
"@babel/register": "7.16.0",
|
||||
"@babel/runtime": "7.16.3",
|
||||
"@react-native-community/eslint-config": "3.0.1",
|
||||
"@storybook/addon-knobs": "6.4.0",
|
||||
"@storybook/addon-ondevice-knobs": "5.3.25",
|
||||
"@storybook/react-native": "5.3.25",
|
||||
"@storybook/react-native-server": "5.3.23",
|
||||
"@testing-library/react-native": "8.0.0",
|
||||
"@testing-library/react-native": "9.0.0",
|
||||
"@types/base-64": "1.0.0",
|
||||
"@types/enzyme": "3.10.10",
|
||||
"@types/enzyme-adapter-react-16": "1.0.6",
|
||||
"@types/jest": "27.0.3",
|
||||
"@types/lodash": "4.14.177",
|
||||
"@types/lodash": "4.14.178",
|
||||
"@types/moment-timezone": "0.5.30",
|
||||
"@types/querystringify": "2.0.0",
|
||||
"@types/react": "17.0.37",
|
||||
"@types/react-native": "0.66.6",
|
||||
"@types/react-native": "0.66.8",
|
||||
"@types/react-native-incall-manager": "3.2.1",
|
||||
"@types/react-native-share": "3.3.3",
|
||||
"@types/react-native-video": "5.0.11",
|
||||
|
|
@ -128,17 +124,17 @@
|
|||
"@types/semver": "7.3.9",
|
||||
"@types/shallow-equals": "1.0.0",
|
||||
"@types/tinycolor2": "1.4.3",
|
||||
"@types/underscore": "1.11.3",
|
||||
"@types/underscore": "1.11.4",
|
||||
"@types/url-parse": "1.4.5",
|
||||
"@typescript-eslint/eslint-plugin": "5.5.0",
|
||||
"@typescript-eslint/parser": "5.5.0",
|
||||
"@typescript-eslint/eslint-plugin": "5.6.0",
|
||||
"@typescript-eslint/parser": "5.6.0",
|
||||
"babel-eslint": "10.1.0",
|
||||
"babel-jest": "27.4.0",
|
||||
"babel-jest": "27.4.4",
|
||||
"babel-loader": "8.2.3",
|
||||
"babel-plugin-module-resolver": "4.1.0",
|
||||
"babel-plugin-transform-remove-console": "6.9.4",
|
||||
"deep-freeze": "0.0.1",
|
||||
"detox": "19.1.0",
|
||||
"detox": "19.3.0",
|
||||
"enzyme": "3.11.0",
|
||||
"enzyme-adapter-react-16": "1.15.6",
|
||||
"enzyme-to-json": "3.6.2",
|
||||
|
|
@ -148,12 +144,12 @@
|
|||
"eslint-plugin-jest": "25.3.0",
|
||||
"eslint-plugin-mattermost": "git://github.com/mattermost/eslint-plugin-mattermost#070ce792d105482ffb2b27cfc0b7e78b3d20acee",
|
||||
"eslint-plugin-react": "7.27.1",
|
||||
"expect": "27.4.0",
|
||||
"expect": "27.4.2",
|
||||
"harmony-reflect": "1.6.2",
|
||||
"husky": "7.0.4",
|
||||
"isomorphic-fetch": "3.0.0",
|
||||
"jest": "27.4.0",
|
||||
"jest-cli": "27.4.0",
|
||||
"jest": "27.4.4",
|
||||
"jest-cli": "27.4.4",
|
||||
"jest-enzyme": "7.1.2",
|
||||
"jetifier": "2.0.0",
|
||||
"jsdom-global": "3.0.2",
|
||||
|
|
@ -167,13 +163,12 @@
|
|||
"react-dom": "17.0.2",
|
||||
"react-native-dev-menu": "4.0.2",
|
||||
"react-native-dotenv": "3.3.0",
|
||||
"react-native-storybook-loader": "2.0.4",
|
||||
"react-test-renderer": "17.0.2",
|
||||
"redux-mock-store": "1.5.4",
|
||||
"redux-persist-node-storage": "2.0.0",
|
||||
"socketcluster": "16.0.2",
|
||||
"ts-jest": "27.0.7",
|
||||
"typescript": "4.5.2",
|
||||
"ts-jest": "27.1.1",
|
||||
"typescript": "4.5.3",
|
||||
"underscore": "1.13.1",
|
||||
"util": "0.12.4"
|
||||
},
|
||||
|
|
@ -204,18 +199,6 @@
|
|||
"build:ios-sim": "./scripts/build.sh ipa simulator",
|
||||
"build:android": "./scripts/build.sh apk",
|
||||
"build:android-unsigned": "./scripts/build.sh apk unsigned",
|
||||
"build-storybook": "build-storybook",
|
||||
"prestorybook": "rnstl",
|
||||
"storybook": "start-storybook -p 7007",
|
||||
"prepare": "husky install"
|
||||
},
|
||||
"config": {
|
||||
"react-native-storybook-loader": {
|
||||
"searchDir": [
|
||||
"./app/components"
|
||||
],
|
||||
"pattern": "**/*.stories.@(js|jsx|ts|tsx)",
|
||||
"outputFile": "./storybook/storyLoader.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,30 +1,22 @@
|
|||
diff --git a/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/react/NavigationModule.java b/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/react/NavigationModule.java
|
||||
index 3eb6609..68a68bf 100644
|
||||
index 2e8acc0..71da101 100644
|
||||
--- a/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/react/NavigationModule.java
|
||||
+++ b/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/react/NavigationModule.java
|
||||
@@ -33,6 +33,8 @@ import java.util.ArrayList;
|
||||
|
||||
import static com.reactnativenavigation.utils.UiUtils.pxToDp;
|
||||
|
||||
+import android.app.Activity;
|
||||
+
|
||||
public class NavigationModule extends ReactContextBaseJavaModule {
|
||||
private static final String NAME = "RNNBridgeModule";
|
||||
|
||||
@@ -56,20 +58,30 @@ public class NavigationModule extends ReactContextBaseJavaModule {
|
||||
@@ -59,20 +59,31 @@ public class NavigationModule extends ReactContextBaseJavaModule {
|
||||
@Override
|
||||
public void onHostPause() {
|
||||
super.onHostPause();
|
||||
- navigator().onHostPause();
|
||||
+ Navigator navigator = navigator();
|
||||
+ if (navigator != null) {
|
||||
+ navigator().onHostPause();
|
||||
+ navigator.onHostPause();
|
||||
+ }
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onHostResume() {
|
||||
- eventEmitter = new EventEmitter(reactContext);
|
||||
+ try {
|
||||
eventEmitter = new EventEmitter(reactContext);
|
||||
- navigator().setEventEmitter(eventEmitter);
|
||||
- layoutFactory.init(
|
||||
- activity(),
|
||||
|
|
@ -33,26 +25,25 @@ index 3eb6609..68a68bf 100644
|
|||
- ((NavigationApplication) activity().getApplication()).getExternalComponents()
|
||||
- );
|
||||
- navigator().onHostResume();
|
||||
+ try {
|
||||
+ eventEmitter = new EventEmitter(reactContext);
|
||||
+ Navigator navigator = navigator();
|
||||
+ if (navigator != null) {
|
||||
+ navigator().setEventEmitter(eventEmitter);
|
||||
+ layoutFactory.init(
|
||||
+ activity(),
|
||||
+ eventEmitter,
|
||||
+ navigator().getChildRegistry(),
|
||||
+ ((NavigationApplication) activity().getApplication()).getExternalComponents()
|
||||
+ );
|
||||
+ navigator().onHostResume();
|
||||
+ }
|
||||
+ Navigator navigator = navigator();
|
||||
+ if (navigator != null) {
|
||||
+ navigator.setEventEmitter(eventEmitter);
|
||||
+ layoutFactory.init(
|
||||
+ activity(),
|
||||
+ eventEmitter,
|
||||
+ navigator().getChildRegistry(),
|
||||
+ ((NavigationApplication) activity().getApplication()).getExternalComponents()
|
||||
+ );
|
||||
+ navigator.onHostResume();
|
||||
+ }
|
||||
+ } catch (ClassCastException e) {
|
||||
+ // The most current activity is not a NavigationActivity
|
||||
+ }
|
||||
+
|
||||
}
|
||||
});
|
||||
}
|
||||
@@ -206,7 +218,11 @@ public class NavigationModule extends ReactContextBaseJavaModule {
|
||||
@@ -210,7 +221,11 @@ public class NavigationModule extends ReactContextBaseJavaModule {
|
||||
}
|
||||
|
||||
private Navigator navigator() {
|
||||
|
|
@ -65,7 +56,7 @@ index 3eb6609..68a68bf 100644
|
|||
}
|
||||
|
||||
private Options parse(@Nullable ReadableMap mergeOptions) {
|
||||
@@ -217,21 +233,26 @@ public class NavigationModule extends ReactContextBaseJavaModule {
|
||||
@@ -221,21 +236,26 @@ public class NavigationModule extends ReactContextBaseJavaModule {
|
||||
|
||||
protected void handle(Runnable task) {
|
||||
UiThread.post(() -> {
|
||||
|
|
@ -100,7 +91,7 @@ index 3eb6609..68a68bf 100644
|
|||
super.onCatalystInstanceDestroy();
|
||||
}
|
||||
diff --git a/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/component/ComponentViewController.java b/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/component/ComponentViewController.java
|
||||
index 51837db..14a5828 100644
|
||||
index c2fbac7..97473b8 100644
|
||||
--- a/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/component/ComponentViewController.java
|
||||
+++ b/node_modules/react-native-navigation/lib/android/app/src/main/java/com/reactnativenavigation/viewcontrollers/component/ComponentViewController.java
|
||||
@@ -4,6 +4,7 @@ import android.app.Activity;
|
||||
|
|
@ -108,10 +99,10 @@ index 51837db..14a5828 100644
|
|||
import android.view.View;
|
||||
|
||||
+import com.reactnativenavigation.options.params.NullBool;
|
||||
import com.reactnativenavigation.utils.LogKt;
|
||||
import com.reactnativenavigation.viewcontrollers.viewcontroller.ScrollEventListener;
|
||||
import com.reactnativenavigation.options.Options;
|
||||
import com.reactnativenavigation.viewcontrollers.viewcontroller.Presenter;
|
||||
@@ -148,7 +149,7 @@ public class ComponentViewController extends ChildController<ComponentLayout> {
|
||||
@@ -156,7 +157,7 @@ public class ComponentViewController extends ChildController<ComponentLayout> {
|
||||
|
||||
@Override
|
||||
public void destroy() {
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
import '@storybook/addon-knobs/register';
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
import {getStorybookUI, configure} from '@storybook/react-native';
|
||||
|
||||
import {Platform} from 'react-native';
|
||||
|
||||
import {STORYBOOK_HOST, STORYBOOK_PORT} from '@env';
|
||||
|
||||
// load react-native addons for storybook rn
|
||||
import '@storybook/addon-ondevice-knobs/register';
|
||||
|
||||
import {loadStories} from './storyLoader';
|
||||
|
||||
// import stories
|
||||
configure(() => {
|
||||
loadStories();
|
||||
}, module);
|
||||
|
||||
// this seems to be required to get react-native-dotenv to load the env variables
|
||||
// properly. Possibly something related to babel-loader
|
||||
const port = STORYBOOK_PORT;
|
||||
const host = STORYBOOK_HOST;
|
||||
|
||||
// Refer to https://github.com/storybookjs/storybook/tree/master/app/react-native#start-command-parameters
|
||||
// To find allowed options for getStorybookUI
|
||||
const StorybookUIRoot = getStorybookUI({
|
||||
port: port || 7007,
|
||||
host: host || (Platform.OS === 'ios' ? 'localhost' : '10.0.2.2'),
|
||||
onDeviceUI: true,
|
||||
resetStorybook: true,
|
||||
});
|
||||
|
||||
export default StorybookUIRoot;
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
import DevMenu from 'react-native-dev-menu';
|
||||
import {Navigation} from 'react-native-navigation';
|
||||
|
||||
import {goToScreen} from '@actions/navigation';
|
||||
import {withReduxProvider} from '@screens';
|
||||
DevMenu.addItem('StoryBook', () => goToScreen('StoryBook', 'StoryBook'));
|
||||
|
||||
Navigation.registerComponent('StoryBook', () => withReduxProvider(require('../storybook').default));
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
function loadStories() {
|
||||
require('../app/components/avatars/avatars.stories');
|
||||
require('../app/components/loading.stories');
|
||||
}
|
||||
|
||||
const stories = [
|
||||
'../app/components/avatars/avatars.stories',
|
||||
'../app/components/loading.stories',
|
||||
];
|
||||
|
||||
module.exports = {
|
||||
loadStories,
|
||||
stories,
|
||||
};
|
||||
Loading…
Reference in a new issue