npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-icons

v2.0.0

Published

webpack based - load only what you need - svg inline icons

Downloads

1,447

Readme

vue-icons

webpack based - load only what you need - svg inline icons.

comes with (and prefixes):

Demo

heavily inspired by vue-awesome.

Install

npm install --save-dev vue-icons callback-loader
// [email protected]
npm install --save-dev vue-icons@1 callback-loader

Usage

webpack.config:

module:
  loaders: [
    # your loaders
  ]
  postLoaders: [
    { test: /vue-icons/, loader: "callback-loader"}
  ]
callbackLoader:
  require("vue-icons/icon-loader")(["fa-thumbs-up"]) # add all the icons you need

in your component:

components:
  "icon": require("vue-icons")
<icon name="fa-thumbs-up"></icon>

see dev/ for examples.

This will load a font-compatible version of the component. The height of the icon will be set to font-size and as svg render as inline item, it will fit in the middle of line-height and responds to vertical-align similar as normal glyphs.

Props

Name | type | default | description ---:| --- | ---| --- name | String | - | (required) name of the icon flip-v | String | - | apply vertical flipping flip-h | String | - | apply horizontal flipping offset-x | Number | 0 | move the icon left/right within its borders in percentage (relative to the center) offset-y | Number | 0 | move the icon up/down within its borders in percentage (relative to the center) label | String | name | aria-label

Plain icon

if you don't need the font-compatibility you can also use the plain icon component:

components:
  "icon": require("vue-icons/icon")

This has three additional props:

Name | type | default | description ---:| --- | ---| --- size | Number | 16 | height of the icon in px scale | Number | 1 | size multiplier hcenter | Boolean | false | sets the height to equal the parentElement and moves the icon to the center

Spinners

comes without css, so no spinning included, you can do it manually like this:

//css
.spin {
  animation: spin 1s 0s infinite linear;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
<icon name="fa-spinner" class="spin"></icon>

Icon stack

You can stack icons by using the plain icon and the stack icon component:

components:
  "icon": require("vue-icons/icon") # this won't work with the font-compatible version (require("vue-icons"))
  "icon-stack": require("vue-icons/icon-stack")
<icon name="fa-camera">
  <icon-stack name="fa-ban" style="color:red" scale=2></icon-stack>
</icon>

offset-x and offset-y on icon-stack increase the size of the icon boundaries, so both will stay fully visible. The normal icon will be positioned in the center of the, then larger, boundaries.

Changelog

  • 2.0.0
    added vue 2.0.0 compatibility

  • 1.4.2
    added error messages

  • 1.4.1
    added ratchicons

  • 1.4.0
    changed positioning again (icon-font-compatible with line-height)

  • 1.3.0
    added icon stack
    added icomoon - im
    changed octicons processing to take the direct svg icons instead of the font

  • 1.2.0
    changed flip interface
    fixed glyphicons
    removed display:inline-block from default style.
    Updated octicons - they changed their icon font.

Development

Clone repository.

npm install
npm run dev

Browse to http://localhost:8080/.

License

Copyright (c) 2016 Paul Pflugradt Licensed under the MIT license.