Comparing version 20.3.2 to 20.3.3
# CHANGELOG | ||
## 20.3.3 | ||
Sprite with recolor to #rrggbb00 was wrongly opaque instead of fully transparent. | ||
## 20.3.2 | ||
Attempt to fix missing sprite in styleDef. | ||
## 20.3.1 | ||
@@ -4,0 +12,0 @@ |
{ | ||
"name": "bobril", | ||
"version": "20.3.2", | ||
"version": "20.3.3", | ||
"description": "Component Oriented MVC Framework with virtual DOM and CSS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -798,3 +798,3 @@ import { CSSStyles, CSSPseudoStyles, CSSStylesItem, CSSInlineStyles } from "./cssTypes"; | ||
cBlue = parseInt(colorStr.slice(5, 7), 16); | ||
cAlpha = parseInt(colorStr.slice(7, 9), 16) || 0xff; | ||
cAlpha = colorStr.length == 9 ? parseInt(colorStr.slice(7, 9), 16) : 0xff; | ||
} | ||
@@ -801,0 +801,0 @@ let targetOffset = 0; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
391332