Nicolas Gallagher
e9101abefe
[change] TextInput 'onKeyPress' includes modifier keys
...
Include modifier keys in the 'nativeEvent'. This allows keyboard
shortcuts such as "Shift+Enter" to be implemented for submiting text
input content when the modality is keyboard + mouse rather than touch.
2017-06-23 14:48:34 -07:00
Nicolas Gallagher
dfa8087f9a
0.0.106
0.0.106
2017-06-22 18:06:39 -07:00
Nicolas Gallagher
eaccd8799d
Fix yarn.lock
2017-06-22 18:06:25 -07:00
Kenneth Lynne
85b2afc313
[fix] TextInput 'onKeyPress' return values
...
Match the current React Native API for 'onKeyPress'.
Fix #518
Close #537
2017-06-22 18:00:54 -07:00
Nicolas Gallagher
4865c7bcce
[change] Clipboard.isSupported -> Clipboard.isAvailable
...
Rename this method to be consistent with AppState.isAvailable
2017-06-20 16:10:29 -07:00
Nicolas Gallagher
9e9ab78130
0.0.105
0.0.105
2017-06-20 14:09:16 -07:00
Nicolas Gallagher
00b795a87e
[change] Nested Text renders as span
2017-06-20 14:05:30 -07:00
Nicolas Gallagher
1edf5241a1
Update webpack and babel-loader
2017-06-20 10:39:09 -07:00
Nicolas Gallagher
4cfcdef264
[fix] AppRegistry container layout
...
Absolute fill positioning provides better default layout for full-screen
apps.
Fix #528
2017-06-20 10:17:55 -07:00
Nicolas Gallagher
a264c0b956
0.0.104
0.0.104
2017-06-19 07:31:00 -07:00
Nicolas Gallagher
0d8aa24ff3
[fix] 'flex' shorthand sets 'flexBasis' to '0%'
...
The previous attempt at a fix (88ddeca0c6 )
didn't account for 'View' handling the 'flexBasis' reset (as it used to
with 'flexShrink'). This patch moves flex style resolution into the DOM
style resolver.
Fix #426
2017-06-19 07:28:25 -07:00
Nicolas Gallagher
1b77ac4b2f
Remove unused file
2017-06-18 16:00:31 -07:00
Nicolas Gallagher
44b185ed4c
Add 'unimplemented view' stubs
2017-06-18 15:27:24 -07:00
Nicolas Gallagher
d1d570268a
Add note about React Dev Tools to Style guide
2017-06-18 14:36:39 -07:00
Nicolas Gallagher
997c92f841
Update eslint and flow packages
2017-06-18 14:36:39 -07:00
Nicolas Gallagher
8e60690877
Update build tools
2017-06-18 14:36:39 -07:00
Nicolas Gallagher
7bab19ae6c
Update inline-style-prefixer
2017-06-18 14:36:33 -07:00
Nicolas Gallagher
c7f287b207
Update React packages
2017-06-18 13:10:58 -07:00
Nicolas Gallagher
02cfbf8987
Add @providesModule annotations and update copyright notices
...
'providesModule' is necessary for haste support
2017-06-18 12:59:40 -07:00
Nicolas Gallagher
6203a3fec6
Misc flow and lint fixes
2017-06-18 12:59:19 -07:00
Nicolas Gallagher
d1d5461b29
Move 'hash' to 'vendor' directory
2017-06-18 12:24:04 -07:00
Nicolas Gallagher
b0ff4489a9
[fix] Switch compatibility with React Native
...
Add compatibility support for React Native's 'Switch' props
2017-06-18 12:14:46 -07:00
Nicolas Gallagher
635fda8d63
[fix] ProgressBar indicator overflow
...
This allows ProgressBar to correctly render provided styles like
'border-radius' without the indicator bar overflowing.
2017-06-17 08:48:37 -07:00
Nicolas Gallagher
5a5eb5425f
Allow component styles to be editable in React Dev Tools
2017-06-15 19:30:18 -07:00
Nicolas Gallagher
44d59f4996
Use yarn to run scripts
2017-06-15 19:29:56 -07:00
Nicolas Gallagher
868ab55bac
0.0.103
0.0.103
2017-06-15 08:46:09 -07:00
Paul Armstrong
65d5a89040
[fix] Remove requestAnimationFrame from StyleManager
...
Using requestAnimationFrame while registering styles/classes slows down
iOS/Mobile Webkit. By removing it, it's possible that we add a little
bit of overhead, slowing down current cycles, but should be mostly
unnoticed.
Fix #517
2017-06-15 08:44:13 -07:00
Nicolas Gallagher
deb0a85440
[change] AppRegistry.getApplication returns React elements
...
This changes the return value of 'getApplication' so that the
application element and stylesheets are all available as React elements.
Also changes StyleSheet's 'renderToString' to 'getStyleSheets'.
Fix #504
2017-06-14 10:41:20 -07:00
Nicolas Gallagher
19381da37f
0.0.102
0.0.102
2017-06-13 15:43:40 -07:00
Nicolas Gallagher
47ba46780c
[add] 'View' support for 'backgroundBlendMode' CSS
...
Fix #476
2017-06-13 14:22:52 -07:00
Nicolas Gallagher
88ddeca0c6
[fix] 'flex' shorthand sets 'flexBasis' to '0%'
...
Ref #426
2017-06-13 14:22:44 -07:00
Nicolas Gallagher
a61f71133e
0.0.101
0.0.101
2017-06-12 16:36:55 -07:00
Nicolas Gallagher
dad2888f7e
[add] Text support for inline View and Image
...
When 'View' or 'Image' are within a 'Text', lay them out as
'inline-flex'.
Fix #472
2017-06-12 16:32:33 -07:00
Nicolas Gallagher
5e9e81eafe
0.0.100
0.0.100
2017-06-11 16:18:45 -07:00
Nicolas Gallagher
7ae2a5e188
Update README
2017-06-11 16:18:23 -07:00
Nicolas Gallagher
d13f78622b
[fix] pointerEvents CSS
...
Fix #513
2017-06-11 14:42:01 -07:00
Nicolas Gallagher
6ae68e948f
[fix] ScrollView passive event listener warning
...
'touchstart' and 'touchmove' listeners added to the document will
default to 'passive:true' (so that calls to 'preventDefault' will be
ignored). Source https://www.chromestatus.com/features/5093566007214080
To support 'scrollEnabled', listeners are bound to the underlying
ScrollView DOM node to avoid being passive.
Fix #477
2017-06-11 14:39:42 -07:00
Nicolas Gallagher
b1b70a420d
[fix] Image support for inline SVG data
...
SVG data may contain characters that need escaping when applied as a CSS
background image.
Fix #512
2017-06-10 14:44:50 -07:00
Nicolas Gallagher
43d297bf59
[change] use ES2015 modules
...
Ref #102
2017-06-10 13:51:53 -07:00
Nicolas Gallagher
060d96b42d
Fix docs deploy
2017-06-09 16:52:14 -07:00
Nicolas Gallagher
dd5f8cf641
0.0.99
0.0.99
2017-06-09 14:58:30 -07:00
Nicolas Gallagher
7f256c6423
Update documentation examples
2017-06-09 14:55:08 -07:00
Nicolas Gallagher
05069253a1
Add Calculator example app
2017-06-09 14:51:32 -07:00
Nicolas Gallagher
f10ac058b6
Add UIExplorer component for docs
2017-06-09 14:51:12 -07:00
Nicolas Gallagher
6aa2ac1f70
Remove ListView docs
2017-06-09 14:50:03 -07:00
Nicolas Gallagher
79e6dbaab5
Move 'NativeMethods' docs to direct manipulation guide
2017-06-09 14:49:15 -07:00
Nicolas Gallagher
fc86c876e0
Update formatter and linter
2017-06-09 12:59:39 -07:00
Nicolas Gallagher
1f25ef82ae
Update jest
2017-06-09 11:56:14 -07:00
Nicolas Gallagher
5b60dcf0ff
Update React packages and inline-style-prefixer
2017-06-09 11:53:43 -07:00
Nicolas Gallagher
1cf152e8a0
Update build tools
2017-06-09 11:52:38 -07:00