5354 Commits

Author SHA1 Message Date
Andrew Sardone
c07953a37e Remove --verbose flag from pod install
It might be too chatty for people just starting out, but I can see why
people might want it.
2015-03-31 17:34:08 -04:00
Andrew Sardone
cfba63edd4 Add intro explaining embedding React in existing app 2015-03-31 17:34:08 -04:00
Amjad Masad
c9d4dd3695 [react-native] v0.3.1 2015-03-31 13:28:44 -08:00
Ben Alpert
b82de1e0d4 Merge pull request #551 from jungchris/patch-1
Minor update README.md - 'Extensibility' Section for iOS code (callback)
2015-03-31 14:05:40 -07:00
Christopher Chedeau
427d902e48 Support .ios.js examples 2015-03-31 14:05:27 -07:00
Chris Jungmann
3ad16b96f1 Update README.md
Removed an extra bracket and line end "];" in the callback of the processString method.
2015-03-31 14:43:08 -06:00
Tadeu Zagallo
1e2d57122e Merge pull request #550 from orta/patch-1
Use correct capitalisation in CocoaPods
2015-03-31 21:20:03 +01:00
Orta
f18493400c Use correct capitalisation in CocoaPods 2015-03-31 16:14:45 -04:00
James Ide
f506d95cda [Pod] Preserve header directory structure
Summary:
The React code has relative imports like `#import "../React/Base/Layout.h"`. CocoaPods by default flattens the header files so they're all in a single directory, but specifying `header_mappings_dir` in the podspec preserves the directory structure.
Closes https://github.com/facebook/react-native/pull/508
Github Author: James Ide <ide@jameside.com>

Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-03-31 12:01:32 -08:00
James Ide
fc8f2570f6 [Touchable] Change default activeOpacity to 0.2 to match iOS 2015-03-31 12:52:15 -07:00
Christopher Chedeau
115b2a3fde fix ../ 2015-03-31 12:31:37 -07:00
Christopher Chedeau
a4a551c571 Add examples at the end of the doc pages 2015-03-31 12:28:53 -07:00
Ben Alpert
d75bd44e27 [react-native] Bring React.render behavior in line with web 2015-03-31 10:52:42 -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
Cspeisman
50dc709f01 missing '.' in ListView.DataSource example
Summary:
The `ListView.DataSource` example is missing a period. Previously looked like a method i.e.` ListViewDataSource`
Closes https://github.com/facebook/react-native/pull/520
Github Author: Cspeisman <Cspeisman@gmail.com>

Test Plan: Imported from GitHub, without a `Test Plan:` line.
2015-03-31 10:06:09 -08:00
Spencer Ahrens
c8c4b41827 Merge pull request #242 from salutis/master
[website] Improve typography
2015-03-31 10:13:13 -07:00
Christopher Chedeau
536b4669a3 Add Edit on Github link on pages. cc @DMortens 2015-03-31 10:10:05 -07:00
Christopher Chedeau
ed7b5cb187 Fix docs 2015-03-31 09:46:45 -07:00
Christopher Chedeau
af9f0972b6 Merge pull request #546 from tjwudi/patch-2
Add guide for using React Native in existing iOS App
2015-03-31 08:26:48 -07:00
John Wu
35bea5fddc Local image resources for docs 2015-03-31 23:24:37 +08:00
Christopher Chedeau
75f6d2b8f9 Merge pull request #525 from vjeux/updates15
Updates from Mon 30 Mar
2015-03-31 08:22:00 -07:00
John Wu
4040295750 typo fixed 2015-03-31 23:20:26 +08:00
John Wu
b873fd6e31 Update EmbededApp.md
Use ``` instead of indentation for code blocks
2015-03-31 23:01:14 +08:00
John Wu
9c8fdafecc Update next doc path 2015-03-31 22:51:34 +08:00
John Wu
fcc4d1a23b Guide for use React Native in existing iOS app
See #483
2015-03-31 22:49:52 +08:00
Ben Alpert
19969149ad [react-native] Support returning null from a component 2015-03-31 01:33:44 -08:00
Ben Alpert
42689c44fd [react-native] Fix race condition in removeSubviewsFromContainerWithID: 2015-03-31 01:05:52 -08:00
Bret Rouse
16996240bf language fixes 2015-03-31 00:22:39 -04:00
Christopher Chedeau
9a4ee17adb Updates from Mon 30 Mar
- [ReactNative] Clean up no longer needed reference to NavigationBarClass | Philipp von Weitershausen
- [TextInput] returnKeyType, enablesReturnKeyAutomatically, secureTextEntry, more keyboardTypes | Tadeu Zagallo
- [ReactNative] PropTypes for NavigationBars | Philipp von Weitershausen
- Changed LayoutAnimation to use ms instead of seconds for consistency | Nick Lockwood
- Better date support | Nick Lockwood
- Renamed throttleScrollCallbackMS to scrollEventThrottle | Nick Lockwood
- Fixed threading issues in RCTImageDownloader | Nick Lockwood
- [iOS][Assets]: Cleaning up more 1x png from Libraries | Radu Marin
- [ReactNative][docs] LinkingIOS | Tadeu Zagallo
- Fixing TouchableOpacity and TouchableHighlight documentation | Ben Alpert
- [react-native] Add React.addons.createFragment | Ben Alpert
2015-03-30 20:12:32 -07:00
Philipp von Weitershausen
db693f32a9 [ReactNative] Clean up no longer needed reference to NavigationBarClass 2015-03-30 18:33:06 -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
daviskoh
ed370eeaad fix objc syntax error 2015-03-30 18:43:11 -04:00
Philipp von Weitershausen
a9167a29b7 [ReactNative] PropTypes for NavigationBars 2015-03-30 14:36:25 -08:00
Alexander Kotliarskyi
02298b59e2 Merge pull request #493 from tjwudi/patch-1
Add import RCTBridge.h for event sending example
2015-03-30 14:48:58 -07:00
Alexander Kotliarskyi
86a1e7062a Merge pull request #513 from supermarin/patch-1
Fix Objective-C example in README
2015-03-30 14:46:56 -07:00
Marin Usalj
015136f36e Fix Objective-C example in README 2015-03-30 14:45:49 -07:00
John Wu
78f0c7178f Change links to doc instead of js
Change links to doc instead of js
2015-03-31 05:32:08 +08:00
Alexander Kotliarskyi
53142c2710 Merge pull request #438 from petrbrzek/patch-1
Copy fix: Asyncronously -> Asynchronously
2015-03-30 14:08:44 -07:00
Alexander Kotliarskyi
038e2681d8 Merge pull request #450 from Rudimental/patch-2
(fix typo) Debugging.md
2015-03-30 14:06:08 -07:00
Amjad Masad
0b193caf8b Add '#content' to link 2015-03-30 13:09:11 -07:00
Amjad Masad
325749e9a8 Link to troubleshooting from getting started page 2015-03-30 13:08:37 -07:00
Amjad Masad
fe44297f98 Merge pull request #347 from tehfailsafe/patch-1
Add Troubleshooting doc for recurring issues
2015-03-30 12:59:19 -07:00
Amjad Masad
60f61e8ee4 Merge pull request #301 from cahlan/patch-1
corrects typo in NativeModulesIOS README
2015-03-30 12:51:44 -07:00
Amjad Masad
2028f265d5 Merge pull request #267 from jondot/upstream
Adding the 'running the examples' instructions to the end of the README....
2015-03-30 12:49:52 -07:00
Amjad Masad
580edab636 Merge pull request #212 from stevelacy/patch-1
Adjust the plurality of goal to goals in docs/Networking.md
2015-03-30 12:45:30 -07:00
Tadeu Zagallo
c7a560ed90 Fix docs links 2015-03-30 20:18:33 +01:00
Amjad Masad
b77fad8ca7 Merge pull request #484 from AndreLion/patch-1
Fix broken link
2015-03-30 11:45:41 -07:00
Christopher Chedeau
f3d5faff7b Merge pull request #475 from theseyi/master
Fixed typo in tutorial
2015-03-30 08:37:35 -07:00
Christopher Chedeau
032b3cd841 Merge pull request #496 from Safari92/master
wrong javascript in example
2015-03-30 08:34:23 -07:00
Christopher Glantschnig
5f9c16a705 wrong javascript in example 2015-03-30 17:04:20 +02:00