Skip to content

Commit

Permalink
fix dist/ColorPicker.d.ts filename
Browse files Browse the repository at this point in the history
fixes #129
  • Loading branch information
jaames committed Aug 26, 2020
1 parent ad3dfea commit eaf701c
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### Changelog

#### 5.2.2

Fixes https://github.com/jaames/iro.js/issues/129

#### 5.2.1

Fixed an issue where the touchstart event wasn't firing on certain touchscreen desktop PCs, see https://github.com/jaames/iro.js/issues/126
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { IroBox } from './Box';
import { IroWheel } from './Wheel';
import { IroColorPicker } from './ColorPicker';
declare namespace iro {
const version = "5.2.1";
const version = "5.2.2";
type Color = IroColor;
const Color: typeof IroColor;
type ColorPicker = IroColorPicker;
Expand Down
4 changes: 2 additions & 2 deletions dist/iro.es.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* iro.js v5.2.1
* iro.js v5.2.2
* 2016-2020 James Daniel
* Licensed under MPL 2.0
* github.com/jaames/iro.js
Expand Down Expand Up @@ -1654,7 +1654,7 @@ var IroColorPickerWidget = createWidget(IroColorPicker);

var iro;
(function (iro) {
iro.version = "5.2.1"; // replaced by @rollup/plugin-replace; see rollup.config.js
iro.version = "5.2.2"; // replaced by @rollup/plugin-replace; see rollup.config.js
iro.Color = IroColor;
iro.ColorPicker = IroColorPickerWidget;
var ui;
Expand Down
4 changes: 2 additions & 2 deletions dist/iro.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* iro.js v5.2.1
* iro.js v5.2.2
* 2016-2020 James Daniel
* Licensed under MPL 2.0
* github.com/jaames/iro.js
Expand Down Expand Up @@ -1660,7 +1660,7 @@

var iro;
(function (iro) {
iro.version = "5.2.1"; // replaced by @rollup/plugin-replace; see rollup.config.js
iro.version = "5.2.2"; // replaced by @rollup/plugin-replace; see rollup.config.js
iro.Color = IroColor;
iro.ColorPicker = IroColorPickerWidget;
var ui;
Expand Down
4 changes: 2 additions & 2 deletions dist/iro.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/.vuepress/theme/js/iro.es.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* iro.js v5.2.1
* iro.js v5.2.2
* 2016-2020 James Daniel
* Licensed under MPL 2.0
* github.com/jaames/iro.js
Expand Down Expand Up @@ -1654,7 +1654,7 @@ var IroColorPickerWidget = createWidget(IroColorPicker);

var iro;
(function (iro) {
iro.version = "5.2.1"; // replaced by @rollup/plugin-replace; see rollup.config.js
iro.version = "5.2.2"; // replaced by @rollup/plugin-replace; see rollup.config.js
iro.Color = IroColor;
iro.ColorPicker = IroColorPickerWidget;
var ui;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jaames/iro",
"version": "5.2.1",
"version": "5.2.2",
"description": "A moden, SVG-based color picker widget for JavaScript",
"module": "dist/iro.es.js",
"main": "dist/iro.js",
Expand Down

0 comments on commit eaf701c

Please sign in to comment.