Skip to content

Releases: kleinfreund/vue-accessible-color-picker

v4.0.5

27 Aug 14:32
Compare
Choose a tag to compare

4.0.5 (2022-08-27)

Bug Fixes

  • color picker initializing incorrectly without color prop (065b5b1)

v4.0.4

07 Aug 08:05
Compare
Choose a tag to compare

4.0.4 (2022-08-07)

Bug Fixes

  • not always initially setting custom properties (9ec0b64)

v4.0.3

30 May 12:29
Compare
Choose a tag to compare

4.0.3 (2022-05-30)

Bug Fixes

  • incorrectly reading hex color from prop (9f31c3e)

v4.0.2

24 May 16:07
Compare
Choose a tag to compare

4.0.2 (2022-05-24)

Bug Fixes

v4.0.1

23 May 21:46
Compare
Choose a tag to compare

4.0.1 (2022-05-23)

Bug Fixes

  • showing alpha channel of hex color in wrong scenario (b301c5b)

v4.0.0

03 Apr 15:38
Compare
Choose a tag to compare

4.0.0 (2022-04-03)

Code Refactoring

  • dist: make package ES module only (3ab745b)

BREAKING CHANGES

  • dist: Adds "type": "package" to the package.json file which indicates that this package is now distributed primarily (and solely) in the ES module format. Previously, the package was distributed in both ES and UMD module formats. Below is a list of the individual breaking changes regarding the package’s exposed module specifiers. If you want to know what module specifiers are, you can read up on the matter in the article “Publishing and consuming ECMAScript modules via packages – the big picture” by Dr. Axel Rauschmayer (https://2ality.com/2022/01/esm-specifiers.html#referring-to-ecmascript-modules-via-specifiers).
  • dist: Changes the bare module specifiers “vue-accessible-color-picker” and “vue-accessible-color-picker/unstyled” to refer to ES modules instead of UMD modules.
  • dist: Removes the bare module specifier “vue-accessible-color-picker/esm”. The same module is now referred to as “vue-accessible-color-picker”.
  • dist: Removes the bare module specifier “vue-accessible-color-picker/esm/unstyled”. The same module is now referred to as “vue-accessible-color-picker/unstyled”.
  • dist: Removes the bare module specifier “vue-accessible-color-picker/dist/vue-accessible-color-picker-unstyled.js”. Use “vue-accessible-color-picker/unstyled” instead.

v3.3.1

14 Feb 16:53
Compare
Choose a tag to compare

3.3.1 (2022-02-14)

Bug Fixes

  • types: declare ColorPicker type in type definitions (dfe11f3), closes #14

v3.3.0

05 Feb 15:08
Compare
Choose a tag to compare

3.3.0 (2022-02-05)

Features

  • provide untranspiled ES module bundles (ce1dc59)

v3.2.0

16 Dec 17:12
Compare
Choose a tag to compare

3.2.0 (2021-12-16)

Features

  • add prop for hiding alpha channel (cdfce86)

v3.1.0

10 Dec 19:26
Compare
Choose a tag to compare

3.1.0 (2021-12-10)

Features

  • convert to script setup syntax (70c59a5)