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 17.12.0 to 17.13.0

4

CHANGELOG.md
# CHANGELOG
## 17.13.0
Css update was moved from before frame to after frame to prevent unstyled icons.
## 17.12.0

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

2

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

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

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

destroyDynamicStyle,
IBobrilCacheChildren,
IBobrilCacheNode,

@@ -18,3 +19,3 @@ IBobrilCacheNodeUnsafe,

import { isArray, isFunction, isNumber, isObject, isString } from "./isFunc";
import { setBeforeFrame } from "./frameCallbacks";
import { setAfterFrame } from "./frameCallbacks";
import { getMedia } from "./media";

@@ -257,3 +258,3 @@

var chainedBeforeFrame = setBeforeFrame(beforeFrame);
var chainedAfterFrame = setAfterFrame(afterFrame);

@@ -329,3 +330,3 @@ const cssSubRuleDelimiter = /\:|\ |\>/;

function beforeFrame() {
function afterFrame(root: IBobrilCacheChildren | null) {
var currentDppx = getMedia().dppx;

@@ -519,3 +520,3 @@ if (hasBundledSprites && lastDppx != currentDppx) {

}
chainedBeforeFrame();
chainedAfterFrame(root);
}

@@ -631,3 +632,3 @@

allAnimations[nameHint] = { name: nameHint, def };
invalidateStyles();
rebuildStyles = true;
const res = (params?: string) => {

@@ -677,3 +678,3 @@ if (isString(params)) return params + " " + nameHint;

mediaQuery.push(mediaQueryDefinition);
invalidateStyles();
rebuildStyles = true;
}

@@ -712,3 +713,3 @@

allStyles[nameHint]!.realName = style;
} else invalidateStyles();
} else rebuildStyles = true;
return nameHint as IBobrilStyleDef;

@@ -725,3 +726,3 @@ }

};
invalidateStyles();
rebuildStyles = true;
}

@@ -728,0 +729,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