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

@vaadin/board

Package Overview
Dependencies
Maintainers
19
Versions
396
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/board - npm Package Compare versions

Comparing version 23.0.0-alpha1 to 23.0.0-alpha2

6

package.json
{
"name": "@vaadin/board",
"version": "23.0.0-alpha1",
"version": "23.0.0-alpha2",
"publishConfig": {

@@ -40,3 +40,3 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/component-base": "23.0.0-alpha1",
"@vaadin/component-base": "23.0.0-alpha2",
"@vaadin/vaadin-license-checker": "^2.1.0"

@@ -49,3 +49,3 @@ },

},
"gitHead": "fbcb07328fdf88260e3b461088d207426b21c710"
"gitHead": "070f586dead02ca41b66717820c647f48bf1665f"
}

@@ -97,3 +97,3 @@ /**

afterNextRender(this, function () {
//force this as an interested resizable of parent
// force this as an interested resizable of parent
this.dispatchEvent(

@@ -207,3 +207,3 @@ new CustomEvent('iron-request-resize-notifications', {

let spaceLeft = 4;
let returnNodes = [];
const returnNodes = [];
nodes.forEach((node, i) => {

@@ -250,3 +250,3 @@ spaceLeft = spaceLeft - boardCols[i];

const nodes = this.$.insertionPoint.assignedNodes({ flatten: true });
const isElementNode = function (node) {
const isElementNode = (node) => {
return !(node.nodeType === node.TEXT_NODE || node instanceof DomRepeat || node instanceof DomIf);

@@ -259,3 +259,3 @@ };

this._removeExtraNodesFromDOM(boardCols, filteredNodes).forEach((e, i) => {
let newFlexBasis = this._calculateFlexBasis(boardCols[i], width, colsInRow, breakpoints);
const newFlexBasis = this._calculateFlexBasis(boardCols[i], width, colsInRow, breakpoints);
if (forceResize || !this._oldFlexBasis[i] || this._oldFlexBasis[i] != newFlexBasis) {

@@ -262,0 +262,0 @@ this._oldFlexBasis[i] = newFlexBasis;

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