Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bobril

Package Overview
Dependencies
Maintainers
1
Versions
315
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.2.0 to 20.3.0

4

CHANGELOG.md
# CHANGELOG
## 20.3.0
New function `setAllowInvalidateStyles` which allows to speed up app startup by lowering number of rebuilding styles.
## 20.2.0

@@ -4,0 +8,0 @@

2

package.json
{
"name": "bobril",
"version": "20.2.0",
"version": "20.3.0",
"description": "Component Oriented MVC Framework with virtual DOM and CSS",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -732,3 +732,10 @@ import { CSSStyles, CSSPseudoStyles, CSSStylesItem, CSSInlineStyles } from "./cssTypes";

let allowInvalidateStyles = true;
export function setAllowInvalidateStyles(value: boolean) {
allowInvalidateStyles = value;
}
export function invalidateStyles(): void {
if (!allowInvalidateStyles) return;
rebuildStyles = true;

@@ -735,0 +742,0 @@ invalidate();

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