Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge in latest Master #1

Merged
merged 29 commits into from
Apr 1, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ab1edae
Add bin to package.json (#24187)
Esemesek Mar 28, 2019
c8b1e13
Show full price instead of monthly price within the lead form
Mar 28, 2019
6345fcf
Remove WebView from public RN interface
cpojer Mar 29, 2019
58c16e6
Expose collapsable as React Prop in LayoutShadowNode
mdvacca Mar 29, 2019
0c17992
Add logs in mounting layer
mdvacca Mar 29, 2019
ed0085c
Refactor mapping of FabricComponentNames
mdvacca Mar 29, 2019
5d0d50c
Fix scrolling of Android Horizontal Scroll View
mdvacca Mar 29, 2019
1592acd
Small changes to State objects to support Android
JoshuaGross Mar 29, 2019
a43e666
TM iOS: force flush message queue when calling into JS from native
fkgozali Mar 29, 2019
b88cc7b
Fix invalid CGContext when invalidate layer (#24195)
zhongwuzw Mar 29, 2019
366fa2f
use shared mutex in RCTSurfacePresenter
sahrens Mar 29, 2019
a47746b
TM Android: temporarily disable callback support to unbreak build
fkgozali Mar 29, 2019
5fa8258
Move WebView JS files to FB internal
cpojer Mar 29, 2019
d2981af
Back out "[react-native][PR] There is a small gap in the Synchronized…
cpojer Mar 29, 2019
8b895ca
Back out "[react-native][PR][Microsoft] This change fixes currently b…
cpojer Mar 29, 2019
0b3f99b
Move requireNativeComponent calls to standalone files
rickhanlonii Mar 30, 2019
5a418c5
Fabric: Fixed a bug in Diffing algorithm
shergin Mar 30, 2019
8774229
Fabric: Removed log leftover
shergin Mar 30, 2019
02562e5
Disable view pooling
mdvacca Mar 31, 2019
46944b7
Implement auto-conversions from primitives to Objects
RSNara Mar 31, 2019
ff66600
Use constructor attribute instead of +load objc method (#24155)
zienag Apr 1, 2019
0b62ff0
Move Android code for Geolocation out
axe-fb Apr 1, 2019
c378be4
moved all the properties used for layout outputs to YogaNodeJNI
SidharthGuglani-zz Apr 1, 2019
5ad7520
added test for reset method in YogaNodeJNI to verify all layout outpu…
SidharthGuglani-zz Apr 1, 2019
9bbca7c
Added implementation for YogaNodeJNIBatching and logic for passing ar…
SidharthGuglani-zz Apr 1, 2019
11e93cd
added flag for useBatchingForLayoutOutputs experiment
SidharthGuglani-zz Apr 1, 2019
ec3adae
Turn on react-hooks/exhaustive-deps in FBSource
elicwhite Apr 1, 2019
11ac06f
fix typo in DatePickerAndroidTypes.js (#24234)
dulmandakh Apr 1, 2019
45bd2b5
Remove navigator.geolocation, use Geolocation
cpojer Apr 1, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion IntegrationTests/IntegrationTestsApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ const TESTS = [
require('./ImageCachePolicyTest'),
require('./ImageSnapshotTest'),
require('./PromiseTest'),
require('./WebViewTest'),
require('./SyncMethodTest'),
require('./WebSocketTest'),
require('./AccessibilityManagerTest'),
Expand Down
75 changes: 0 additions & 75 deletions IntegrationTests/WebViewTest.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export type Options = $ReadOnly<{|
date?: ?(Date | number),
minDate?: ?(Date | number),
maxDate?: ?(Date | number),
mode?: ?('calender' | 'spinner' | 'default'),
mode?: ?('calendar' | 'spinner' | 'default'),
|}>;

export type DatePickerOpenAction =
Expand Down
19 changes: 19 additions & 0 deletions Libraries/Components/TextInput/AndroidTextInputNativeComponent.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
* @format
*/

'use strict';

import {requireNativeComponent} from 'react-native';

const AndroidTextInputNativeComponent = requireNativeComponent(
'AndroidTextInput',
);

export default AndroidTextInputNativeComponent;
Loading