Marek Cirkos
88b6df9900
Fixed way that ScrollView handles removeClippedSubviews flag
2015-04-20 05:14:56 -08:00
Nick Lockwood
ead0f2e020
Implemented thread control for exported methods
2015-04-18 11:13:39 -08:00
Spencer Ahrens
915151c5d7
[ReactNative] verifyPropTypes against native exports
2015-04-16 18:15:36 -08:00
Spencer Ahrens
764854c04a
[ReactNative] introduce requireNativeComponent
2015-04-16 17:12:12 -08:00
Nick Lockwood
0b505901ba
Fixed map annotation crash
2015-04-16 04:29:35 -08:00
Tadeu Zagallo
75e4e124fa
[ReactNative] Use a single DisplayLink held by the bridge
2015-04-15 07:07:48 -08:00
guru inamdar
7a68691686
MapView to support MKPointAnnotation using new attribute annotate in Map...
...
Summary:
### MapView to support Pin annotation
var pinLocation = {
latitude: property.latitude,
longitude: property.longitude,
title: property.title
};
this.state = {propertyPoint: pinLocation};
<MapView style={styles.map} region={this.state.region} annotate={this.state.propertyPoint}>
</MapView>

Closes https://github.com/facebook/react-native/pull/810
Github Author: guru inamdar <guru.inamdar@gmail.com >
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-04-14 18:03:37 -08:00
Tadeu Zagallo
f5f80da80c
[ReactNative] Remove bridge retaining cycles
2015-04-10 07:20:37 -08:00
Spencer Ahrens
89f5ff4d04
[ReactNative] Fix suggestions in TextInput when setting value prop
2015-04-09 17:35:39 -08:00
Kureev Alexey
50309c984d
NavigatorIOS navigationBarHidden property support
...
Summary:
Usage example:
```javascript
var AwesomeProject = React.createClass({
render: function() {
return (
<NavigatorIOS
style={styles.navigator}
navigationBarHidden={true}
initialRoute={{
component: Example,
title: 'Test'
}}
/>
);
}
});
```
Closes https://github.com/facebook/react-native/pull/374
Github Author: Kureev Alexey <kureev-mail@ya.ru >
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-04-09 08:46:14 -08:00
Alex Akers
8a57c4e980
[React Native] RCT_EXPORT lvl.2
2015-04-08 08:34:10 -08:00
Nick Lockwood
bf4868edda
Added non-class-scanning-based approach fror registering js methods
2015-04-08 05:45:20 -08:00
Ben Hiller
220e116dce
[fbobjc] revert rFBOBJCdba3daf9a595f452d069f2a74a9a11f251999b2e
2015-04-07 20:44:11 -08:00
Tadeu Zagallo
6854da9b86
[ReactNative] Remove bridge retaining cycles
2015-04-07 19:42:46 -08:00
Nick Lockwood
80cd687e95
Refactored RCTLog and added facility to prepend extra data to the log message
2015-04-07 07:35:57 -08:00
Christopher Chedeau
4d44d9cca2
[ReactNative] Cleanup TabBar and its example
2015-04-02 13:51:59 -08:00
Boopathi Rajaa
087c609121
Fix hitTest for auto
...
Summary:
- Returns matching subview hitTest or super hitTest if no match found. Should fix #99 .
Closes https://github.com/facebook/react-native/pull/501
Github Author: Boopathi Rajaa <me@boopathi.in >
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-04-02 09:30:29 -08:00
Kevin Gozali
bb9c647c2b
[ReactNative] RCTView's shadowOffset is of float type, not CGFloat
2015-03-31 17:18:20 -08:00
Jordanna Kwok
6870c27283
Fix WebView automaticallyAdjustContentInsets error
...
Summary:
WebView component's automaticallyAdjustContentInsets prop should be type BOOL. Fixes #251 .
Closes https://github.com/facebook/react-native/pull/314
Github Author: Jordanna Kwok <jordannakwok@gmail.com >
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-03-31 17:17:49 -08:00
Colin Ramsay
4b4e8ecc9b
Expose html prop on WebView
...
Summary:
Allows setting of HTML directly on webview to support #506 . This is a starting point, and feedback/improvement is requested.
1. if `startInLoadingState` is true, the HTML content will never show since the load event never fires
2. Neither html nor url are set as required props any more
Closes https://github.com/facebook/react-native/pull/542
Github Author: Colin Ramsay <colinramsay@gmail.com >
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-03-31 10:09:04 -08:00
James Ide
ac0ad3acdd
[TextInput] returnKeyType, enablesReturnKeyAutomatically, secureTextEntry, more keyboardTypes
...
Summary:
This diff completes adding support for the following UITextField properties:
- returnKeyType: what the return key on the keyboard says
- enablesReturnKeyAutomatically: the return key is disabled iff there is no text entered. This too could be implemented in React but it feels better in UIKit right now because it is handled synchronously.
- secureTextEntry: obscure passwords
- keyboardType: added all the keyboard types, they are useful in different scenarios
There were varying degrees of support for these properties so it looks like this diff continues some unfinished work. I also updated the keyboardType enum to use native constants instead of strings like the other properties here.
Added examples to the UIExplorer.
Closes https://github.com/facebook/react-native/pull/265
Github Author: James Ide <ide@jameside.com >
Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-03-30 18:13:30 -08:00
Nick Lockwood
961f301d65
Renamed throttleScrollCallbackMS to scrollEventThrottle
2015-03-30 04:56:59 -08:00
Nick Lockwood
698988017c
Added support for text padding
2015-03-27 09:21:27 -08:00
Jakub Zika
011e342bbc
Revert .buckversion bumps.
2015-03-26 11:02:54 -08:00
Tadeu Zagallo
20291a02df
[ReactNative] s/ReactKit/React/g
2015-03-26 02:42:24 -08:00