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

angular-radial-color-picker

v3.0.1

Published

Angular-ready radial color picker with some sleek animations.

Downloads

282

Readme

Angular Radial Color Picker

Introduction

Great UX starts with two basic principles - ease of use and simplicity. Selecting a color should be as easy as moving a slider, clicking a checkbox or pressing a key just like other basic form elements behave.

This is a flexible and elegant material design color picker. Developed with mobile devices and keyboard usage in mind. Key features:

  • Small size - 5.4 KB gzipped (JS and CSS combined)
  • Supports touch devices
  • Responsive size
  • Optimized animations
  • Supports CommonJS and ES Modules
  • Ease of use
    • Double click anywhere to move the knob to a color
    • Tab to focus the picker
    • Up or Right arrow key to increase hue. Hold Ctrl to go quicker
    • Bottom or Left arrow key decrease hue. Hold Ctrl to go quicker
    • Enter to select a color and close the picker or to open it
    • Mouse ScrollUp to increase and ScrollDown to decrease hue (Opt-in)

Quick Links

Demos

Usage

With Module Build System

Color Picker on npm

npm install -S angular-radial-color-picker

And in your app:

import angular from 'angular';
import colorPicker from 'angular-radial-color-picker';
import 'angular-radial-color-picker/dist/css/color-picker.scss';

angular.module('app', [colorPicker]);

Depending on your build tool of choice you have to setup the appropriate Webpack loaders or Rollup plugins. The color picker was tested with the latest versions of sass-loader and rollup-plugin-postcss.

UMD version

You can also use the minified sources directly:

<head>
    <link href="https://unpkg.com/angular-radial-color-picker@latest/dist/css/color-picker.min.css" rel="stylesheet">
</head>
<body ng-app="app">
    <color-picker></color-picker>

    <script src="https://unpkg.com/[email protected]/angular.min.js"></script>
    <script src="https://unpkg.com/angular-radial-color-picker@latest/dist/color-picker.umd.min.js"></script>
    <script>
        angular.module('app', ['color.picker.core']);
    </script>
</body>

Back To Top

Options

<color-picker> component has several attributes, all of which are optional. See the example which uses all options.

| Options | Type | Default/Description | |------------|--------|---------| | color | Object | Object for initializing/changing the color of the picker. Defaults to red: {hue: 0, saturation: 100, luminosity: 50, alpha: 1}. | | on-select | Function | Callback which is triggered when a color is selected. | | on-color-change | Function | A function to invoke when color is changed (i.e. on rotation). | | mouse-scroll | Boolean | Use wheel (scroll) event to rotate. Defaults to false. | | scroll-sensitivity | Number | Amount of degrees to rotate the picker with keyboard and/or wheel. Defaults to 2 degrees. |

Back To Top

Events

For maximum flexibility the component utilizes the pub/sub pattern. For easier communication a set of events are provided that can even programmatically open or close the picker without interacting with the UI. All events carry the current (selected) color in the event data payload.

| Name | Description | |------------|-------------| | color-picker.show | Fires when the color picker is about to show and before any animation is started. | | color-picker.shown | Fires when the color picker is shown and has finished animating. | | color-picker.selected | Fires when a color is selected via the middle selector. Event is fired right before hide. | | color-picker.hide | Fires when the color picker is about to hide and before any animation is started. | | color-picker.hidden | Fires when the color picker is hidden and has finished animating. | | color-picker.open | Programatically opens the color picker if it's not already opened. | | color-picker.close | Programatically closes the color picker if it's not already closed. |

Example:

// Assign the selected color to the ViewModel and log it to the console
$scope.$on('color-picker.selected', function(ev, color) {
    vm.selectedColor = 'hsla(' + color.hue + ', ' + color.saturation + '%, ' + color.luminosity + '%, ' + color.alpha + ')';
    console.log('Selected color:', color);
});

// The good'n'tested "poke-it-with-a-stick" method:
$scope.$emit('color-picker.open');

Back To Top

Styling/Sizing

The color picker has a default width/height of 280px, but can also be sized via CSS. For example:

color-picker {
    width: 350px;
    height: 350px;
}

If you want a percentage based size you can use this neat little trick with 1:1 aspect ratio box of 40% width of the parent element:

color-picker {
    height: 0;
    width: 40%;
    padding-bottom: 40%;
}

Back To Top

First Asked Questions

Back To Top

Contribute

If you're interested in the project you can help out with feature requests, bugfixes, documentation improvements or any other helpful contributions. You can use the issue list of this repo for bug reports and feature requests and as well as for questions and support.

We are also particularly interested in projects you did with this plugin. If you have created something colorful and creative with the color picker and want to show it off send us a quick mail.

The project is using an adapted version of Angular's commit convention and commit messages should adhere to it.

Back To Top