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

@lucidaio/vizor

v0.0.1-rc.2

Published

Vue 2 component library and CSS framework with easy customization and extendability

Downloads

2

Readme

VIZOR is a component library for Vue 2 and CSS framework with a focus on Desktop GUI applications. It's designed to be easily customizable and extendable out of the box.

VIZOR's themes are largely independant of the components in this library and can be used on their own as a CSS framework like Bulma or Bootstrap. VIZOR doesn't use redundant classes like .button or .input to restyle default HTML components and instead overwrites the defaults for each component themselves.

You can find a complete list of components below. Follow @LucidAIO on Twitter for important annoucements. We release a lot of our in-house tools as open-source projects.

Quickstart

Installing with NPM

$ npm install @lucidaio/vizor

Installing with Yarn

$ yarn add @lucidaio/vizor

Import the core library and styles

import Vizor from '@lucidaio/vizor';
import '@lucidaio/vizor/themes/vizor-dark.css';

Vue.use(Vizor);

Importing specific components

import { VzToast, VzToastProgrammatic } from '@lucidaio/vizor';

Icons

VIZOR uses @mdi/font by default. Enabling use of any desired icon library is in the works but for now the Material Design Icon classes are what's used.

Components

Regular

Programmatic

Layout

Styles & Customization

VIZOR comes with two themes by default: vizor-dark and vizor-light. You can choose between the two when you import the stylesheet (shown above). If you'd like to create your own theme, all you need to do is define an object with the following properties:

let style = {
  background:    "#FFF",
  titleBar:      "#FFF",
  sideBar:       "#FFF",
  panel:         "#FFF",
  border:        "#FFF",
  primary:       "#FFF",
  secondary:     "#FFF",
  link:          "#FFF",
  success:       "#FFF",
  warning:       "#FFF",
  danger:        "#FFF",
  text:          "#FFF",
  textSecondary: "#FFF"
};

You can then build a stylesheet with this config object like so:

import { StyleBuilder } from '@lucidaio/vizor';

let style = { ... };

let styleBuilder = new StyleBuilder({
  definitions: style,
  outputPath: './style.css',
  minify: true // optional; will not minify by default
});

styleBuilder.Build();

Then simply import the built stylesheet instead of one of the included ones.

License

MIT