UI for adding rows and columns.

This commit is contained in:
Mal
2020-02-09 00:29:46 +01:00
parent de3c73a508
commit d43cd56d65
14 changed files with 317 additions and 12 deletions

View File

@@ -0,0 +1,10 @@
import TilorswiftEvent from "./TilorswiftEvent.js";
export default class TilorswiftAddColumnsEvent extends Event
{
constructor(beforeColumn, columnCount) {
super(TilorswiftEvent.ADD_COLUMNS);
this.beforeColumn = beforeColumn;
this.columnCount = columnCount;
}
}