Skip to content
Snippets Groups Projects

Overlapping items in a column

Merged Julian requested to merge multiple-items-y into main
1 file
+ 7
0
Compare changes
  • Side-by-side
  • Inline
+ 7
0
@@ -311,6 +311,13 @@ export default {
items() {
if (!this.multipleItemsY) return this.value;
if (this.value.some((item) => item.w > 1)) {
console.warn(
"You are using multipleItemsY but some items have a width greater than 1.",
"This is not supported and will lead to unexpected behaviour."
);
}
// calculate numSiblings for each field
// First dimension: the columns
let xSiblings = [];
Loading