@vaadin/board 24.5.0-alpha5 → 24.5.0-alpha7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/vaadin-board-row.js +2 -2
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/board",
|
|
3
|
-
"version": "24.5.0-
|
|
3
|
+
"version": "24.5.0-alpha7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/a11y-base": "24.5.0-
|
|
43
|
-
"@vaadin/component-base": "24.5.0-
|
|
42
|
+
"@vaadin/a11y-base": "24.5.0-alpha7",
|
|
43
|
+
"@vaadin/component-base": "24.5.0-alpha7"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "89f77a69ae0eba6247f2b3084941f9395d7134e1"
|
|
56
56
|
}
|
package/src/vaadin-board-row.js
CHANGED
|
@@ -168,13 +168,13 @@ class BoardRow extends ResizeMixin(ElementMixin(PolymerElement)) {
|
|
|
168
168
|
|
|
169
169
|
let spaceLeft = 4;
|
|
170
170
|
let returnBoardCols = [];
|
|
171
|
-
nodes.forEach((
|
|
171
|
+
nodes.forEach((_node, i) => {
|
|
172
172
|
spaceLeft -= boardCols[i];
|
|
173
173
|
});
|
|
174
174
|
|
|
175
175
|
if (spaceLeft < 0) {
|
|
176
176
|
this._reportError();
|
|
177
|
-
boardCols.forEach((
|
|
177
|
+
boardCols.forEach((_node, i) => {
|
|
178
178
|
returnBoardCols[i] = 1;
|
|
179
179
|
});
|
|
180
180
|
} else {
|
package/web-types.json
CHANGED