Skip to content

Commit d02a980

Browse files
committed
Merge branch 'main' into release/1.0.0
2 parents 2530739 + 9ade389 commit d02a980

File tree

3 files changed

+36
-58
lines changed

3 files changed

+36
-58
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.4.3
2+
3+
* Fix: Color class is incorrectly converting hex to rgb (#85) (fixes #84) - by @rgoewedky
4+
5+
### Fix
6+
7+
* Fix: resizeObserver is not unobserved (#82) (fixes #81) - by @markusnissl
8+
19
## 0.4.2
210

311
### Fix

package-lock.json

+27-57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/common/color.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const hexToRgb = (hex: string): IColorRGB => {
120120
return {
121121
r: parseInt(hex.substring(1, 3), 16),
122122
g: parseInt(hex.substring(3, 5), 16),
123-
b: parseInt(hex.substring(6, 7), 16),
123+
b: parseInt(hex.substring(5, 7), 16),
124124
};
125125
};
126126

0 commit comments

Comments
 (0)