Skip to content

Releases: iou90/react-native-autoheight-webview

v1.5.4

01 Sep 07:37
Compare
Choose a tag to compare

Fixes

Fix declaration for AutoHeightWebView. (#181)

v1.5.3

21 Aug 06:00
Compare
Choose a tag to compare

Fixes

Fix height changing when it's fullscreen on Android. (#178)
Update readme. (merge from https://github.com/iou90/react-native-autoheight-webview/pull/176/files)
Extends WebView instead of Component in typescript declaration file.

v1.5.2

22 Jul 05:32
Compare
Choose a tag to compare

Fixes

Fix type definition file. (merge from delyethan@3e18171)

v1.5.1

22 Apr 03:00
Compare
Choose a tag to compare

Changing peer dependency react-native-webview back to ">= 5.4.0" as problems resolved with the last version of react-native-webview.

v1.5.0

15 Apr 11:06
Compare
Choose a tag to compare

Features

Forwarding ref to WebView to apply all methods of react-native-webview.

v1.4.3

13 Apr 08:08
Compare
Choose a tag to compare

Changing peer dependency react-native-webview to ">= 5.4.0 < 9.1.0".
react-native-webview@9.1.0 has some problems on Android with multi webview instance: react-native-webview/react-native-webview#1203 (comment)
And it will meet "not to support crypto.getRandomValues()" issue (uuidjs/uuid#375) from adding uuid since 9.1.1: react-native-webview/react-native-webview#1312

v1.4.2

18 Feb 02:47
Compare
Choose a tag to compare

Update Readme (#153) & clean up code styles.

v1.4.1

21 Jan 01:46
Compare
Choose a tag to compare

Fixes

Fix zooming, scrolling issues when using scrollEnabledWithZoomedin (#149, #148).

v1.4.0

10 Jan 09:24
Compare
Choose a tag to compare

Breaking Changes

Add viewportContent instead of zoomable prop to fix #145:

It was assigned to width=device-width by default on iOS and if you want to disable zoom, use width=device-width, user-scalable=no (which is zommable false actually did) or just user-scalable=no.
Please note that 'width=device-width' with scalesPageToFit may cause some layout issues on Android, for these conditions, using customScript prop to apply custom viewport meta.

v1.3.6

08 Jan 03:09
Compare
Choose a tag to compare

Features

Add scrollEnabledWithZoomedin prop. (#143)