github quasarframework/quasar quasar-v2.3.0

2 years ago

New

  • feat(ui/composables): support for "emits" in Object form #10773 #10775
  • feat(VirtualScroll,QInfiniteScroll): restore scroll position when using keep-alive #10240
  • feat(QLinearProgress/QCircularProgress): New prop -> animation-speed #10464

Fixes

  • fix(QPopupProxy): default slot not rendered correctly in SSR mode after first show()/hide() #10218
  • fix(QInfiniteScroll): loading slot after "done(true)" doesn't disappear #11100
  • fix(QTable): correctly define onUpdate:pagination type so additional event attachment besides v-model to work
  • fix(ui): cover corner-case for Quasar portals with script setup #9880

Possible small breaking change

We're sorry, we don't do this like ever in minor releases, but we cannot go around fixing #10218 without it ("default slot not rendered correctly in SSR mode after first show()/hide()"), so it is an exceptional case:
QPopupProxy + QDate/QTime/QCarousel/QColor had "cover" prop applied by default when using menu; now you need to add it yourself (everything will still work if not added, it just won't have the "cover" behavior).

<q-popup-proxy>
  <q-time ...>

<!-- now becomes -->

<q-popup-proxy cover>
  <q-time ...>

Don't miss a new quasar release

NewReleases is sending notifications on new releases.