Skip to content

v5.0.0-rc0

Pre-release
Pre-release
Compare
Choose a tag to compare
@AlexVelezLl AlexVelezLl released this 18 Jun 19:39
· 765 commits to develop since this release
4ae7503

What's Changed

KImg

  • 🚩BREAKING🚩 Removes KImg props related to dimensions: height, width, maxHeight, minHeight, maxWidth, minWidth.
    • Guidance: Use native style, for example replace <KImg width="100%" maxWidth="500px" /> by <KImg :style="{ width: '100%', maxWidth: '500px' }" />.

KTextTruncator

  • 🚩BREAKING🚩 Removes lineHeightIE prop and drops Internet Explorer 11 support.
    • Guidance: To be used in newer versions of products that don't need to support IE11.

KSelect

  • Internal refactor of KSelect as part of moving away from Keen UI.
    • Guidance: Thorough QA of places that use KSelect is recommended due to the large scope of refactor.
  • Adds new events: @dropdown-open, @dropdown-close, @query-change, @input, @touch, @focus.
  • Adds new slots: #default, #display, #option, #no-results, #error, #help.
  • Adds new public method reset to reset the state of the KSelect to default values.

KModal

  • Fixes KModal content height calculation, and now it shrinks when the content has a smaller height.
    • Guidance: Double check that the height of the modals continues to work correctly.

New Contributors

Full Changelog: v4.3.1...v5.0.0-rc0