Socket
Socket
Sign inDemoInstall

bobril

Package Overview
Dependencies
Maintainers
1
Versions
313
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bobril - npm Package Compare versions

Comparing version 20.3.2 to 20.3.3

8

CHANGELOG.md
# 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 @@

2

package.json
{
"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;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc