quasarframework / quasar-ui-qmarkdown

A Quasar UI App Extension to display inline markdown
https://quasarframework.github.io/quasar-ui-qmarkdown/
MIT License
157 stars 28 forks source link

SASS Deprecation Warnings #399

Open zanzara opened 4 days ago

zanzara commented 4 days ago

With latest Quasar 2.17.0 and app-vite-v2.0.0-beta.22
there are a lot of SASS Deprecation Warnings arising running cmd: quasar dev | build

   color: lighten($blue-8, 10%)
    │                ^^^^^^^^^^^^^^^^^^^^^
    ╵
    ../../../@quasar/quasar-ui-qmarkdown/src/components/QMarkdown.sass 171:16  @import
    ../../../@quasar/quasar-ui-qmarkdown/src/index.sass 3:9                    root stylesheet

Deprecation Warning: lighten() is deprecated. Suggestions:

color.scale($color, $lightness: 18.5454545455%)
color.adjust($color, $lightness: 10%)

More info: https://sass-lang.com/d/color-functions

To Reproduce Steps to reproduce the behavior:

  1. Create a new Quasar CLi project with latest Qusar 2.17.0 and latest app-vite-beta-22
  2. Include this AE qmarkdown
  3. Start quasar dev or qusar build
  4. See error

Expected behavior No SASS warnings.

Remedies Replace depracted SASS lighten with SASS proposals above.