No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. Hawkeye64
    3. Posts
    • Profile
    • Following 0
    • Followers 11
    • Topics 416
    • Posts 990
    • Best 178
    • Groups 1

    Posts made by Hawkeye64

    • RE: PurgeCSS

      The webpack terser plugin does the reduction, but after compilation

      posted in Framework
      Hawkeye64
      Hawkeye64
    • RE: Media Player Pause when the user click in video area

      Turn on mobile mode

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • QScroller v1.1.2 released!

      https://github.com/quasarframework/quasar-ui-qscroller/releases/tag/v1.1.2

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • RE: SVG convertor to import as icon

      https://github.com/quasarframework/quasar/issues/8662

      posted in Framework
      Hawkeye64
      Hawkeye64
    • @quasar/extras-v1.10.0 released!
      • feat(extras): Added new font and svg icons support for Bootstrap Icons

      The Bootstrap Icons icon set will be available in Quasar v1.15.8 and Quasar v2.0 beta 11

      https://github.com/quasarframework/quasar/releases/tag/%40quasar%2Fextras-v1.10.0

      posted in Announcements
      Hawkeye64
      Hawkeye64
    • RE: SVG convertor to import as icon

      @ncamaa No, but I have been thinking we could create a cli for this…

      posted in Framework
      Hawkeye64
      Hawkeye64
    • @quasar/extras-v1.9.20 released!
      • feat(extras): update Fontawesome to v5.15.3
      • feat(extras): update Google Material Design fonts and svg

      https://github.com/quasarframework/quasar/releases/tag/%40quasar%2Fextras-v1.9.20

      posted in Announcements
      Hawkeye64
      Hawkeye64
    • RE: [solved] Confirm Quasar v1 is transpiling to ES5 for IE11

      @beatscribe In order to get IE11 for Quasar v1, you have to modify your browserslist in package.json. This will add the appropriate polyfills for the selected browsers.
      For instance, you could have this:

        "browserslist": [
          "last 1 version, not dead, ie >= 11"
        ],
      
      posted in Help
      Hawkeye64
      Hawkeye64
    • RE: Problem Importing QCalendar

      Do you get the error with getDayTimeIdentifier without even importing it?
      There’s a couple of ways you can import:

      import myPlugin from '@quasar/quasar-ui-qcalendar
      This is the default export, so the exported name can be anything you like

      myPlugin will contain all the other exports, but to get at those, you can destructure them:

      import { getDayTimeIdentifier, version, QCalendar } from '@quasar/quasar-ui-qcalendar
      Hope that helps

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • @quasar/extras-v1.9.19 released!
      • feat(extras): updated Google Material Design fonts and icons
      posted in Announcements
      Hawkeye64
      Hawkeye64
    • QScroller v1.1.1 released!

      https://github.com/quasarframework/quasar-ui-qscroller/releases/tag/v1.1.1

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • @quasar/extras-v1.9.18 released!
      • feat(extras): updated Google Material Design fonts and icons

      https://github.com/quasarframework/quasar/releases/tag/%40quasar%2Fextras-v1.9.18

      posted in Announcements
      Hawkeye64
      Hawkeye64
    • QMediaplayer v1.2.1 released!

      https://github.com/quasarframework/quasar-ui-qmediaplayer/releases/tag/v1.2.1

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • App extensions dotenv v1.1.0 and QEnv v1.1.0 released!

      https://github.com/quasarframework/app-extension-dotenv/releases/tag/v1.1.0
      https://github.com/quasarframework/app-extension-qenv/releases/tag/v1.1.0

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • @quasar/extras v1.9.17 released!
      • feat(extras): updated ionicons (v5.5.0) and Google Material icons

      https://github.com/quasarframework/quasar/releases/tag/%40quasar%2Fextras-v1.9.17

      posted in Announcements
      Hawkeye64
      Hawkeye64
    • RE: Removing unused CSS via purgecss-webpack-plugin

      @arogonov That’s good news! I suppose purgeCSS has improved and matured since the last time I tried it

      posted in Help
      Hawkeye64
      Hawkeye64
    • QMediaPlayer v1.2.0 released!

      https://github.com/quasarframework/quasar-ui-qmediaplayer/releases/tag/v1.2.0

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • RE: Quasar v2 upgrade problem with q-calendar

      @David5446 None of the UI app extensions support quasar v2 (Vue v3) yet

      posted in [v1] App Extensions
      Hawkeye64
      Hawkeye64
    • RE: Removing unused CSS via purgecss-webpack-plugin

      @arogonov There are issues with removing unused CSS. It will remove CSS that it “thinks” is not used, but in reality it is.
      For instance, when you pass a color to a Quasar component, ie: “red”, behind the scenes, quasar adds the prefix: 'bg-' + this.color
      But, bg-red will be removed because no match was found in the code.

      posted in Help
      Hawkeye64
      Hawkeye64
    • RE: $emit on app extension

      @Cosby That’s because the Vue instance hasn’t been instantiated at that point

      posted in Help
      Hawkeye64
      Hawkeye64