Trancever
60f1e9c32c
chore: release 2.15.2
v2.15.2
2019-04-09 16:08:30 +02:00
Dawid
cf6cc3d297
fix: refactor of menu component ( #976 )
2019-04-09 16:05:58 +02:00
Ferran Negre
826e7e6200
docs: add reactnativepaper.com in the README ( #971 )
2019-04-04 10:07:21 +02:00
Trancever
e4fa828d63
chore: release 2.15.1
v2.15.1
2019-04-04 09:27:13 +02:00
Dawid
dc89eb67c0
fix: issue with TextInput animation on iOS ( #968 )
2019-04-01 11:29:53 +02:00
Anthony Garant
35c56fb885
fix: fix borderRadius support for the Chip component ( #962 )
2019-03-31 17:06:33 +03:00
Trancever
8b8741c6eb
chore: release 2.15.0
v2.15.0
2019-03-26 11:05:33 +01:00
Trancever
f23811bdfd
fix: fix issue with jumping label in TextInput on iOS
2019-03-25 16:33:28 +01:00
Przemysław Bitkowski
64c553e3d2
fix: pass ref to child components, move API to parent TextInput ( #949 )
2019-03-25 17:24:58 +02:00
Zhe Wang
59b53e0775
feat: use native driver in Modal ( #946 )
...
* feat: add useNativeDriver prop to Modal component
* mock NativeAnimatedHelper in ActivityIndicator test
* enforce useNativeDriver in Modal animations
2019-03-25 10:30:39 +01:00
Satyajit Sahoo
2124a81760
feat: support accessibility label for Snackbar button ( #951 )
2019-03-25 09:59:03 +02:00
Darkmyr
00457a9567
feat: add ellipsize props to ListItem ( #944 )
2019-03-22 11:06:39 +00:00
Dawid
e899c55280
fix: hide banner when visible prop is false ( #934 )
2019-03-22 11:01:05 +00:00
Grzegorz Gawrysiak
1a4af746d2
fix: Searchbar TS types ( #943 )
2019-03-21 16:53:02 +02:00
Iyad Thayyil
0c5371adb3
feat: add Menu component ( #485 )
2019-03-21 14:36:48 +02:00
Trancever
117fe476d3
chore: release 2.14.0
v2.14.0
2019-03-19 16:21:12 +01:00
Przemysław Bitkowski
6143dd5053
refactor: refactor TextInput to make it more maintainable ( #882 )
2019-03-19 14:34:08 +02:00
Przemysław Bitkowski
bc7dbe818a
chore: improve typescript tests running ( #936 )
2019-03-19 11:26:11 +02:00
Dawid
0402e74824
fix: modal example ( #925 )
...
* fix: modal example
* fix: use existing func
2019-03-15 17:33:32 +01:00
Luke Walczak
4a28c3e8a5
feat: expose new prop to add custom color in Chip component ( #729 )
2019-03-15 12:17:11 +02:00
Ali Kazemkhanloo
1262d01c7f
added iconColor to searchbar ( #907 )
2019-03-14 11:56:26 +01:00
Dawid
30fed6f366
feat: add titleStyle and descriptionStyle props to List.Item ( #911 )
2019-03-14 11:53:56 +01:00
Julian Hundeloh
2bbc33c3dd
fix: add flexGrow and flexShrink to Dialog.ScrollArea ( #835 )
...
* fix: limit Dialog.ScrollArea height
* fix: update example
* fix: reduce height
2019-03-12 11:55:59 +02:00
ferrannp
e9cef2a71b
chore: release 2.13.0
v2.13.0
2019-03-11 14:52:05 +01:00
Ferran Negre
2ca0b6079a
fix: make sure to remove BackHandler listener on Modal ( #912 )
2019-03-11 14:27:18 +01:00
Satyajit Sahoo
503223b5ca
chore: ignore some deps for greenkeeper
2019-03-08 14:34:58 +01:00
Taym Haddadi
0acc5e48da
fix: makes Snackbar handle Infinity duration properly. ( #901 )
...
* fix: do not add a setTimeout if Infinity is passed as duration
* fix: check positive and negative infinity
* fix: fix lint
2019-03-07 17:05:52 +02:00
Dawid
8042c309e6
docs: improve contentStyle prop description in Button ( #900 )
...
Adds info about customizing height and width of button via contentStyle prop to prop description.
2019-03-07 12:14:50 +01:00
Ferran Negre
27c77a3330
docs: unify code of conduct ( #899 )
2019-03-07 11:40:03 +01:00
Ferran Negre
390981fd98
docs: update Callstack links ( #898 )
2019-03-07 11:39:50 +01:00
Julian Hundeloh
908fe6b444
fix: make onDismiss optional for Dialog and Modal ( #890 )
2019-03-07 12:24:40 +02:00
Michał Pierzchała
d8171c750b
docs: add callstack-badge and note to readme ( #895 )
...
Giving more recognition to Callstack
2019-03-06 19:51:26 +01:00
Julian Hundeloh
d81de72938
fix: add onLongPress prop to typescript types (Card) ( #892 )
2019-03-05 18:16:59 +02:00
Richard Lindhout
d387aab9e2
feat: add option to change input style in searchbar ( #884 )
...
https://www.slashgear.com/gmail-app-android-ios-material-design-update-released-21566652/
```
<Searchbar
placeholder={'Zoeken'}
onChangeText={this.props.onSearch}
style={{
shadowOpacity: 0.07,
elevation: 2,
}}
inputStyle={{
fontSize: 16,
}}
value={value}
icon={icon}
onIconPress={this._onMenu}
/>
```
Before:

After:

Related pull request:
https://github.com/callstack/react-native-paper/pull/861
2019-03-04 19:56:45 +01:00
Satyajit Sahoo
19238824a8
chore: upgrade component-docs
2019-03-01 15:07:53 +01:00
Óscar Carretero
e2b4ba4da7
feat: add ListSubheader component ( #739 )
...
* feat: add ListSubheader component
* feat: update ListSection in order to use ListSubheader
The `title` property is set as deprecated.
* test: update ListSection tests
* docs: update ListSection example
* feat: add ListSubheader typings
* docs: add ListSubheader usage example
* test: update snapshot
* refactor: remove warning
* fix: revert styles
2019-03-01 12:48:17 +02:00
Satyajit Sahoo
3765a079c8
chore: release 2.12.0
v2.12.0
2019-02-27 01:10:02 +01:00
Satyajit Sahoo
4754e098ec
chore: upgrade component-docs
2019-02-26 13:35:40 +01:00
Raphael Araújo
ee7cc5d5a9
docs: add documentation to use react-native-paper with CRA ( #874 )
2019-02-26 13:19:27 +01:00
R M
53e3bae7e3
feat: add a contentStyle prop to Button
2019-02-25 19:03:29 +01:00
Satyajit Sahoo
c17f477df3
chore: upgrade component-docs
2019-02-24 22:43:57 +01:00
Taym Haddadi
f9a094918b
feat: add numberOfLines prop to DataTableTitle ( #863 )
...
Closes #848
2019-02-22 17:10:35 +01:00
Taym Haddadi
8afb7d68c1
docs: add onLongPress to TouchableRipple ( #862 )
...
Closes #849
2019-02-22 15:46:23 +01:00
Satyajit Sahoo
224cdbcc8e
chore: upgrade component-docs
2019-02-22 02:54:48 +01:00
Trancever
f7d370f3de
fix: fix visiblity prop in SNackbar and Modal
2019-02-21 15:39:59 +01:00
Travis Collins
d29eb93d02
fix: pass down accessible from Card props to Touchable for Appium tests ( #812 )
2019-02-21 14:21:43 +01:00
Dawid
ade8d27a1e
fix: makes FAB not pressable when initialy not visible ( #858 )
2019-02-21 14:13:52 +01:00
Satyajit Sahoo
7a4966dfed
docs: update instructions for running the example app
2019-02-19 23:08:47 +01:00
Satyajit Sahoo
c108aafa6d
docs: upgrade component docs and redesign landing page
2019-02-19 00:40:34 +01:00
Pedro Henrique
0780e9b3c1
fix: update typescript types for button ( #847 )
...
Add uppercase property
2019-02-18 16:08:51 +05:30