Socket
Socket
Sign inDemoInstall

hawkeye64-quasar-extras

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hawkeye64-quasar-extras

Quasar Framework fonts, icons and animations


Version published
Weekly downloads
1
decreased by-83.33%
Maintainers
1
Install size
15.6 MB
Created
Weekly downloads
 

Readme

Source

Quasar Framework logo

Quasar Framework Extras Package

Build high-performance VueJS user interfaces in record time: responsive Single Page Apps, SSR Apps, PWAs, Browser extensions, Hybrid Mobile Apps and Electron Apps. If you want, all using the same codebase!

Join the chat at https://chat.quasar.dev https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg

Why?

Why this package? Because it strips down unnecessary package files (so faster download times), all in one place, tested and ready to use with Quasar. One other reason is that the material icons npm package sometimes fails to be downloaded by NPM.

Contents

Please make sure you have latest @quasar/extras npm package version installed into your project folder in order for you to benefit from everything below.

Webfonts

VendorVersionquasar.conf.js extras nameDescriptionNotesLicense
Roboto FontCDN v20roboto-fontRecommended font along Material themeLicense
Roboto Font Latin ExtendedCDN v20roboto-font-latin-extRecommended font along Material themeLicense
Material Icons (Google)CDN v53material-iconsMaterial icons fontRequires: Quasar 1.0.5+, @quasar/extras 1.2.0+License
Material Icons OutlinedCDN v22material-icons-outlinedMaterial icons outlined fontRequires: Quasar 1.0.5+, @quasar/extras 1.2.0+License
Material Icons RoundCDN v22material-icons-roundMaterial icons round fontRequires: Quasar 1.0.5+, @quasar/extras 1.2.0+License
Material Icons SharpCDN v23material-icons-sharpMaterial icons sharp fontRequires: Quasar 1.0.5+, @quasar/extras 1.2.0+License
MDI v5 (Material Design Icons)5.3.45mdi-v5Extended Material Design icons fontThe Quasar Icon Set is available in Quasar 1.9.9+License
MDI v4 (Material Design Icons)4.9.95mdi-v4Extended Material Design icons fontLicense
MDI v3 (Material Design Icons)3.6.95mdi-v3Extended Material Design icons fontLicense
Font Awesome5.14.0fontawesome-v5Fontawesome icons fontLicense
Ionicons4.6.3ionicons-v4Ionicons fontLicense
Eva Icons1.1.3eva-iconsEva Icons fontLicense
Themify Icons1.0.1themifyThemify Icons fontLicense
Line Awesome1.3.0line-awesomeLine Awesome fontRequires: Quasar 1.8+, @quasar/extras 1.5+License
Animate.css4.1.0Use animations propBundle of animations you can use in your website/appLicense

Either install MDI v4 or MDI v3, but never both at the same time.

SVG

Quasar v1.7+ required for svg Quasar Icon Sets.

VendorVersionQuasar IconSet nameImport Icons fromNotesLicense
Material Icons (Google)CDN v11svg-material-icons@quasar/extras/material-iconsLicense
Material Icons Outlined (Google)CDN v11svg-material-icons-outlined@quasar/extras/material-icons-outlinedRequires: @quasar/extras 1.9+; The Quasar Icon Set requires Quasar v1.12.13+License
Material Icons Round (Google)CDN v11svg-material-icons-round@quasar/extras/material-icons-roundRequires: @quasar/extras 1.9+; The Quasar Icon Set requires Quasar v1.12.13+License
Material Icons Sharp (Google)CDN v11svg-material-icons-sharp@quasar/extras/material-icons-sharpRequires: @quasar/extras 1.9+; The Quasar Icon Set requires Quasar v1.12.13+License
MDI v5 (Material Design Icons)5.3.45svg-mdi-v5@quasar/extras/mdi-v5The Quasar Icon Set is requires Quasar 1.9.9+License
MDI v4 (Material Design Icons)4.9.95svg-mdi-v4@quasar/extras/mdi-v4License
Font Awesome5.14.0svg-fontawesome-v5@quasar/extras/fontawesome-v5License
Ionicons v55.1.2svg-ionicons-v5@quasar/extras/ionicons-v5Requires: @quasar/extras 1.7+; The Quasar Icon Set requires Quasar v1.11+Icon License
Ionicons v44.6.3svg-ionicons-v4@quasar/extras/ionicons-v4Icon License
Eva Icons1.1.3svg-eva-icons@quasar/extras/eva-iconsLicense
Themify Icons1.0.1svg-themify@quasar/extras/themifyLicense
Line Awesome1.3.0svg-line-awesome@quasar/extras/line-awesomeRequires: Quasar 1.8+, @quasar/extras 1.5+License
Feather Icons4.28.0svg-feather-icons@quasar/extras/feather-iconsRequires: Quasar 1.12.14+, @quasar/extras 1.10+License

Example:

// some .vue file in devland
<template>
  <div>
    <q-icon :name="matMenu" />
    <q-btn :icon="mdiAbTesting" />
  </div>
</template>

<script>
import { matMenu } from '@quasar/extras/material-icons'
import { mdiAbTesting } from '@quasar/extras/mdi-v4'

export default {
  // ...
  created () {
    this.matMenu = matMenu
    this.mdiAbTesting = mdiAbTesting
  }
}

QIcon cheatsheet

<q-icon name="..." />
NamePrefixExamplesNotesLicense
material-iconsNonethumb_upNotice the underline character instead of dash or space
material-icons-outlinedo_o_thumb_upNotice the underline character instead of dash or space
material-icons-roundr_r_thumb_upNotice the underline character instead of dash or space
material-icons-sharps_s_thumb_upNotice the underline character instead of dash or space
ionicons-v4ion-, ion-md-, ion-ios-, ion-logo-ion-heart, ion-logo-npm, ion-md-airplaneUse QIcon instead of <ion-icon> component; Logo icons require 'ion-logo-' prefix
fontawesome-v5fa[s,r,l,b,d] fa-"fas fa-ambulance"QIcon "name" property is same as "class" attribute value in Fontawesome docs examples (where they show <i> tags)
mdi-v5mdi-mdi-alert-circle-outlineNotice the use of dash characters
eva-iconseva-eva-shield-outline, eva-activity-outlineNotice the use of dash characters
themifyti-ti-hand-point-upNotice the use of dash characters
line-awesomela[s,r,l,b,d] la-"las la-atom"QIcon "name" property is same as "class" attribute value in Line Awesome docs examples (where they show <i> tags)

SVG name format

Svg icons will be defined as String with the following syntax:

Syntax: "<path>|<viewBox>" or "<path>" (with implicit viewBox of '0 0 24 24')
Examples:
  M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z|0 0 24 24
  M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z

Supporting Quasar

Quasar Framework is an MIT-licensed open source project. Its ongoing development is made possible thanks to the support by these awesome backers.

Please read our manifest on Why donations are important. If you'd like to become a donator, check out Quasar Framework's Donator campaign.

Documentation

Head on to the Quasar Framework official website: https://quasar.dev

Stay in Touch

For latest releases and announcements, follow on Twitter: @quasarframework

Chat Support

Ask questions at the official community Discord server: https://chat.quasar.dev

Community Forum

Head on to the official community forum: https://forum.quasar.dev

Semver

Using semver 2.0 notation for 'quasar-extras' package.

License

All assets included in this repository are exclusive property of their respective owners and licensed under their own respective licenses. Quasar does not take any credit in packages included here.

Keywords

FAQs

Last updated on 27 Jul 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc