Ionic React v5.0.0-beta.5 Release Notes

Release Date: 2020-01-17 // over 4 years ago
  • ๐Ÿ› Bug Fixes

    • action-sheet: allow scrollable action sheet with many options (#20145) (53fad97), closes #17311
    • card: remove top padding of content in iOS if under header (#20223) (9232f16)
    • content: scroll-content div now takes up full height of container (#20194) (9d63b41), closes #20185
    • header: header opacity properly resets on collapsible titles (#20202) (8e11f79)
    • modal: prevent double dismiss via gesture and backdrop tap on card-style modal (#20203) (5b0400d)
    • picker: pick correct option at low velocities (#19660) (39d1262), closes #19659
    • react: updating icon type and add caret to internal icons (#20216) (dc78f98)
    • ssr: add reflect content-id attribute to applicable properties (#20169) (3aa47e6)

    ๐Ÿ”จ Code Refactoring

    • โœ‚ removed checked/selected properties in favor of setting value on parent (#19449) (a5229d9)

    ๐Ÿ”‹ Features

    ๐Ÿ’ฅ BREAKING CHANGES

    โšก๏ธ > We recommend updating to the latest version of 4.x before trying out version 5 in order to see deprecation warnings related to your app in the developer console.

    • โšก๏ธ The following components have been updated to remove the checked or selected properties:

    • Radio

    • Segment Button

    • Select

    โšก๏ธ Developers should set the value property on the respective parent components in order to managed checked/selected status. See the [Breaking Changes](./BREAKING.md) document for updated usage examples.

    • ๐Ÿšš Controller components have been removed. Developers should user their respective imports instead. This only affects vanilla JS applications.

    Before:

    <ion-modal-controller></ion-modal-controller>
    

    After:

    import { modalController } from '@ionic/core';