Releases: joshswan/react-native-autolink
Releases · joshswan/react-native-autolink
1.8.1
Bug Fixes:
truncateLocation
prop is no longer passed along with "other" props to underlyingText
component (fixes issue with react-native-web) - @ericboyangan
1.8.0
1.7.0
New Stuff:
- Added
"facebook"
option forhashtag
prop to link hashtags to Facebook - Added
"soundcloud"
option formention
prop to link usernames to SoundCloud (web-only) - Added support for
stripTrailingSlash
option to control whether or not to remove trailing slashes from linked URL text (default:true
)
1.6.0
1.5.1
1.5.0
1.4.0
1.3.1
1.3.0
1.2.0
New Stuff:
url
prop has been updated to allowschemeMatches
,wwwMatches
andtldMatches
options. Simply pass an object to enable/disable each of these options. For example:<Autolink text="github.com" url={{ tldMatches: false }} />
will not produce any links sincetldMatches
is disabled. - @trybeee