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

sh-cordelia-vue

v1.0.5

Published

Forked from https://github.com/cevadtokatli/cordelia-vue

Downloads

2

Readme

Cordelia Vue

Cordelia Vue is a VueJS plugin that allows you to add a rich color picker into your web pages. See the documentation and demo for more information: https://cevadtokatli.github.io/cordelia-vue

NPM

npm install --save cordelia-vue

Installation

You can import the main Cordelia Component and render it.

import Vue from 'vue';
import Cordelia from 'cordelia-vue';

new Vue({
	el: '#picker',
    components: {Cordelia},
    render: h => h('Cordelia')
});

You can also add the script file into your html.

<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.16/vue.min.js"></script>
<script src="/node_modules/cordelia-vue/dist/js/cordelia.min.js"></script>
<script>
new Vue({
    el: '#picker',
    components: {Cordelia:Cordelia}
});
</script>

Put the CSS file in the head tag.

<link rel="stylesheet" href="/node_modules/cordelia-vue/dist/css/cordelia.min.css" />

Settings

Option | Type | Default | Description ------ | ---- | ------- | ----------- color | String | #FF0000 | The picker's initial value. colorFormat | String | hex | The format of the picker's value. Cordelia supports three types of formats: HEX, RGB and HSL. If the opacity is less than 1, HSL is automatically converted to HSLA, HEX and RGB are automatically converted to RGBA. pickerStyle | Number | 0 | Cordelia comes with two style options. In the first style, the main box allows setting the saturation and lightness of the color and the second box allows setting the color; this is the default. In the second style, the main box allows setting the color and the second box allows setting the saturation and lightness. For more information please view the demo. embed | Boolean | true | A boolean value that indicates whether the picker is shown when a button is clicked or embedded into the page directly. If it is false, a button is displayed that allows users to show the picker. size | String | medium | The picker's size. Three options available Small, Medium, Large. allowOpacity | Boolean | true | A boolean value that indicates whether the opacity bar is visible or not. allowClearColor | Boolean | false | A boolean value that indicates whether the clear color button (an eraser icon that allows clearing selection) is visible or not. showColorValue | Boolean | true | A boolean value that indicates whether the color value box is visible or not. Color value box allows you to set a color by typing its name or code. All of the CSS color formats are supported (HEX, RGB, RGBA, HSL, HSLA). showButtons | Boolean | true | A boolean value that indicates whether the buttons are visible or not. If the embed property is false, the only way to close the picker is to click on the Save or Cancel button. showPalette | Boolean | true | A boolean value that indicates whether the color table is visible or not. Color table allows you to show pre-defined colors. It is also possible for users to save colors for later use by adding this table. paletteColors | String[] | #FFFFB5, #FBBD87, #F45151, #7AEA89, #91C8E7, #8EB4E6, #B0A7F1 | An array that holds the name or codes of the colors that will be shown in the Color Table as default. allowPaletteAddColor | Boolean | true | A boolean value that indicates whether users can add a color to the color table or not.

Callbacks

Callback | Description ----- | ----------- onOpen | Fires when the picker is open. onClose | Fires when the picker is closed. onSave | Fires when the selection is saved. onCancel | Fires when the picker is closed without being saved. onChanged | Fires when the color is changed.

Methods

Method | Params | Return | Description ------ | ------ | -------| ----------- get | | Object | Returns the current color. set | newColor:String | void | Changes the current color. show | | void | Shows the picker. hide | | void | Hides the picker. save | | void | Saves the selection. cancel | | void | Cancels the selection.

IE Support

IE 10 is not supported and patches to fix problems will not be accepted.

License

Cordelia is provided under the MIT License.