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

@paperbits/styles

Package Overview
Dependencies
Maintainers
2
Versions
605
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paperbits/styles - npm Package Compare versions

Comparing version 0.1.101 to 0.1.102

4

package.json
{
"name": "@paperbits/styles",
"version": "0.1.101",
"version": "0.1.102",
"description": "Paperbits style editors.",

@@ -19,3 +19,3 @@ "author": "Paperbits",

"dependencies": {
"@paperbits/common": "0.1.101",
"@paperbits/common": "0.1.102",
"cropperjs": "^1.4.0",

@@ -22,0 +22,0 @@ "google-maps": "^3.2.1",

@@ -27,4 +27,12 @@ import * as Utils from "@paperbits/common/utils";

for (const variationName of Object.keys(componentConfig)) {
if (variationName === "default") continue;
if (variationName === "default") {
continue;
}
const variationStyles = await this.styleCompiler.getVariationClasses(componentConfig[variationName], componentName, variationName, true);
if (!variationStyles) {
continue;
}
const key = `& .${componentName}-${variationName}`;

@@ -31,0 +39,0 @@ defaultComponentStyles[componentName] = { ...defaultComponentStyles[componentName], [`&.${componentName}-${variationName}`]: variationStyles[key] };

@@ -103,4 +103,12 @@ import * as Utils from "@paperbits/common/utils";

for (const variationName of Object.keys(componentConfig)) {
if (variationName === "default") continue;
if (variationName === "default") {
continue;
}
const variationStyles = await this.getVariationClasses(componentConfig[variationName], componentName, variationName, true);
if (!variationStyles) {
continue;
}
const key = `& .${componentName}-${variationName}`;

@@ -107,0 +115,0 @@ defaultComponentStyles[componentName] = { ...defaultComponentStyles[componentName], [`&.${componentName}-${variationName}`]: variationStyles[key] };

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