New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@atoms-studio/components

Package Overview
Dependencies
Maintainers
5
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atoms-studio/components - npm Package Compare versions

Comparing version

to
0.2.8

24

dist/components.cjs.js

@@ -135,2 +135,7 @@ 'use strict';

},
preloadImage: {
type: Boolean,
default: false,
},
};

@@ -164,3 +169,3 @@

resizeParams = '?';
if (width && height) {
if (width && height && config.mode) {
resizeParams += "w=" + width + "&h=" + height + "&fit=" + (config.mode) + "&";

@@ -212,2 +217,19 @@ }

head: function head() {
if (this.preloadImage) {
return {
link: [
{
rel: 'preload',
as: 'image',
href: this.srcWebP || this.srcDefault,
imagesrcset: this.srcWebP
? this.webpsrcsetString
: this.srcsetString,
imagesizes: this.sizesString,
} ],
}
}
},
computed: {

@@ -214,0 +236,0 @@ imageUrl: function imageUrl() {

@@ -131,2 +131,7 @@ //

},
preloadImage: {
type: Boolean,
default: false,
},
};

@@ -160,3 +165,3 @@

resizeParams = '?';
if (width && height) {
if (width && height && config.mode) {
resizeParams += "w=" + width + "&h=" + height + "&fit=" + (config.mode) + "&";

@@ -208,2 +213,19 @@ }

head: function head() {
if (this.preloadImage) {
return {
link: [
{
rel: 'preload',
as: 'image',
href: this.srcWebP || this.srcDefault,
imagesrcset: this.srcWebP
? this.webpsrcsetString
: this.srcsetString,
imagesizes: this.sizesString,
} ],
}
}
},
computed: {

@@ -210,0 +232,0 @@ imageUrl: function imageUrl() {

2

package.json
{
"name": "@atoms-studio/components",
"version": "0.2.7",
"version": "0.2.8",
"license": "MIT",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/atoms-studio/blueprint#readme",