Skip to content

Commit

Permalink
Merge branch 'main' into release/1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tonilastre committed Mar 27, 2024
2 parents 2530739 + 9ade389 commit d02a980
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 58 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.4.3

* Fix: Color class is incorrectly converting hex to rgb (#85) (fixes #84) - by @rgoewedky

### Fix

* Fix: resizeObserver is not unobserved (#82) (fixes #81) - by @markusnissl

## 0.4.2

### Fix
Expand Down
84 changes: 27 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/common/color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const hexToRgb = (hex: string): IColorRGB => {
return {
r: parseInt(hex.substring(1, 3), 16),
g: parseInt(hex.substring(3, 5), 16),
b: parseInt(hex.substring(6, 7), 16),
b: parseInt(hex.substring(5, 7), 16),
};
};

Expand Down

0 comments on commit d02a980

Please sign in to comment.