@vaadin/board
Advanced tools
Comparing version 23.0.0-alpha1 to 23.0.0-alpha2
{ | ||
"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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33559
+ Added@vaadin/component-base@23.0.0-alpha2(transitive)
- Removed@vaadin/component-base@23.0.0-alpha1(transitive)