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

mag-component-layout-list

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mag-component-layout-list - npm Package Compare versions

Comparing version

to
1.2.0

15

index.js

@@ -151,3 +151,3 @@ /**

LayoutList.prototype.renderItemDefault = function ( $item, config ) {
var layout,
var layout, layoutConfig,
currentNode,

@@ -172,8 +172,13 @@ currentData,

layout = new Layout({
layoutConfig = {
focusable: false,
data: config.items,
className: config.className
});
data: config.items
};
if ( config.className ) {
layoutConfig.className = config.className;
}
layout = new Layout(layoutConfig);
$item.appendChild(layout.$node);

@@ -180,0 +185,0 @@ $item.layout = layout;

{
"name": "mag-component-layout-list",
"version": "1.1.0",
"version": "1.2.0",
"description": "Base layout list implementation.",

@@ -11,9 +11,9 @@ "author": {

"type": "git",
"url": "git@192.168.1.222:/web/magsdk/component-layout-list"
"url": "https://github.com/magsdk/component-layout-list.git"
},
"scripts": {
"sass": "node-sass --indent-width 4 --include-path ../../.. sass/develop.480.scss css/develop.480.css && node-sass --indent-width 4 --include-path ../../.. sass/release.480.scss css/release.480.css && node-sass --indent-width 4 --include-path ../../.. sass/develop.576.scss css/develop.576.css && node-sass --indent-width 4 --include-path ../../.. sass/release.576.scss css/release.576.css && node-sass --indent-width 4 --include-path ../../.. sass/develop.720.scss css/develop.720.css && node-sass --indent-width 4 --include-path ../../.. sass/release.720.scss css/release.720.css && node-sass --indent-width 4 --include-path ../../.. sass/develop.1080.scss css/develop.1080.css && node-sass --indent-width 4 --include-path ../../.. sass/release.1080.scss css/release.1080.css",
"lint": "eslint .",
"lint": "eslint --ignore-pattern '/docs/' .",
"test": "npm run lint",
"jsdoc": "jsdoc --destination doc *.js readme.md"
"jsdoc": "jsdoc --destination docs *.js readme.md"
},

@@ -27,2 +27,3 @@ "dependencies": {

"eslint": "4.*.*",
"jsdoc": "3.*.*",
"mag-eslint-config": "1.*.*"

@@ -29,0 +30,0 @@ },