3.2.0 • Published 2 months ago

@zipify/colorpicker v3.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Zipify ColorPicker

npm Downloads

Vue 2.0 Zipify Color Picker component

intro

Installation

NPM

$ npm install @zipify/colorpicker

Yarn

$ yarn add @zipify/colorpicker

ES6

Include colorpicker css

@import "~@zipify/colorpicker/dist/colorpicker.css";
import { ZipifyColorPicker } from '@zipify/colorpicker'

new Vue({
  components: {
    ZipifyColorPicker
  }
})

Local setup

npm install
npm run example:start

Usage

var color = '#0f0';      //hex3
// or
var color = '#0f08';     //hex4
// or
var color = '#00ff00';   //hex6
// or
var color = '#00ff0088'; //hex8
// or
var color = 'rgba(0, 255, 0)'; //rgb
// or
var color = 'rgba(0, 255, 0, 0.53)'; //rgba, alpha - 0-1
// or
var color = 'rgba(0, 255, 0, 53)'; //rgba, alpha - 0-100
// or
var color = 'rgba(0, 255, 0, 53%)'; //rgba, alpha - 0-100%
// or
var color = 'red'; //color names
// or
var color = 'hsl(39, 100%, 50%)'; //hsl, s and l in %
// or
var color = 'hsl(39, 1, 0.5)'; //hsl, s and l - 0-1
// or
var color = 'hsla(39, 100%, 50%, 50%)'; //hsl,  s, l and alpha in %
// or
var color = 'hsla(39, 1, 0.5, 0.5)'; //hsl,  s, l and alpha - 0-1
// or
var color = 'hsv(39, 100%, 50%)'; //hsv, s and v in %
// or
var color = 'hsv(39, 1, 0.5)'; //hsv, s and v - 0-1
// or
var color = 'hsva(39, 100%, 50%, 50%)'; //hsva,  s, v and alpha in %
// or
var color = 'hsva(39, 1, 0.5, 0.5)'; //hsva,  s, v and alpha - 0-1

new Vue({
  el: '#app',
  components: {
    ZipifyColorPicker,
  },
  data () {
    return {
      color,
      paletteKey,
      presetColors,
      favoriteColors,
      type,
      maxPaletteColors,
      maxFavoriteColors,
      durationEnter,
      durationLeave,
      placement,
      isOverTop
    }
  }
})
<!-- suppose you have the data 'color' in your component -->
<ZipifyColorPicker
  v-model="color"
  :palette-key="paletteKey"
  :type="rgba"
  :preset-colors="presetColors"
  :max-palette-colors="7"
  :favorite-colors="favoriteColors"
  :max-favorite-colors="14"
  :duration-enter="150"
  :duration-leave="100"
  :placement="bottom-end"
  :is-over-top="isOverTop"
  @input="updateValue"
  @changeFavoriteColors="updateFavoriteColors"
>
  <template #activator="{ toggle, open }">
    <input type="text" v-model.lazy="color">
    <button type="button" :disabled="disabled" :style="bgc" class="zpc-color-preview" @click="toggle($event.target)" />
  </template>
</ZipifyColorPicker>

In some cases you can give the component a predefined palette with the property presetColors by simply passing it an array with the color values as strings in any css compatible format or you can set property paletteKey(localStorage key) and the palette will set from localStorage and you can limit the number of colors in showing palette.

License

@zipify/colorpicker is licensed under The MIT License.

3.2.0

2 months ago

3.2.0-0

2 months ago

3.1.0-0

7 months ago

3.1.0-1

6 months ago

3.1.0

6 months ago

3.0.0

10 months ago

3.0.0-vue3.5

1 year ago

3.0.0-vue3.6

1 year ago

3.0.0-vue3.4

1 year ago

2.3.0

1 year ago

2.3.1

1 year ago

3.0.0-vue3.3

1 year ago

3.0.0-vue3.2

1 year ago

3.0.0-vue3.1

1 year ago

3.0.0-vue3.0

1 year ago

2.3.0-1

1 year ago

2.3.0-0

1 year ago

2.2.2

2 years ago

2.2.1

2 years ago

2.2.1-0

2 years ago

2.2.0

2 years ago

2.2.0-0

2 years ago

2.1.0

2 years ago

2.1.0-0

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

2.0.0-dev.3

2 years ago

2.0.0-dev.2

2 years ago