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-minicolors

v0.0.11

Published

A wrapper around JQuery MiniColors by Cory LaViska

Downloads

6,354

Readme

angular-minicolors

General

My first try of wrtiting a wrapper-directive around JQuery MiniColors by Cory LaViska https://github.com/claviska/jquery-minicolors

Works with Bootstrap 3 and works fine with mobile browsers such as Safari on iPad.

##DEMO and API

How To Install

  1. Install by typing bower install angular-minicolors consider using the --save option to save the dependency to your own bower.json file

How To Use

  1. Include the JQuery MiniColors Files from the bower_components folder (bower_components/jquery-minicolors/) in your project. The files you need are: jquery-minicolors.js jquery-minicolors.css and jquery-minicolors.png and of course JQuery itself

  2. Add the dependency to your app definition angular.module('myApp', ['minicolors'])

  3. Append minicolors attribute to any input-field. If you want to pass in a settings object, do it like this: minicolors="MySettingsObject". Below you can see a usage example with bootstrap classes. The directive should be wrapped inside a div to preserve correct styling.

<div class="form-group">
  <label for="color-input" class="form-control">Color:</label>
  <input
    minicolors="customSettings"
    id="color-input"
    class="form-control"
    type="text"
    ng-model="input.color">
</div>

<script type="text/javascript">
  //using for example these settings inside your controller
  $scope.customSettings = {
    control: 'brightness',
    theme: 'bootstrap',
    position: 'top left'
  };

</script>

angular-minicolors is planned to be API compatible with: http://labs.abeautifulsite.net/jquery-minicolors/

keep in mind, that this is my first public angular-directive and it is by far not finished.

default config

the default config is as follows:

  theme: 'bootstrap',
  position: 'top left',
  defaultValue: '',
  animationSpeed: 50,
  animationEasing: 'swing',
  change: null,
  changeDelay: 0,
  control: 'hue',
  hide: null,
  hideSpeed: 100,
  inline: false,
  letterCase: 'lowercase',
  opacity: false,
  show: null,
  showSpeed: 100

app-wide config

a Provider is now exposed and you can edit the global config like this:

angular.module('my-app').config(function (minicolorsProvider) {
  angular.extend(minicolorsProvider.defaults, {
    control: 'hue',
    position: 'top left'
  });
});

TODO

  • wrap the original events in angular events
  • add protection against false color values

Found an issue?

Please report the issue and feel free to submit a pull request

Copyright and license

The MIT License (MIT)

Copyright (c) 2013 Kai Henzler

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.