@worktile/theia 2.4.0 → 2.4.1
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/bundles/worktile-theia.umd.js +2 -1
- package/bundles/worktile-theia.umd.js.map +1 -1
- package/esm2015/plugins/table/components/table.component.js +3 -2
- package/fesm2015/worktile-theia.js +2 -1
- package/fesm2015/worktile-theia.js.map +1 -1
- package/package.json +1 -1
- package/plugins/table/components/table.component.scss +20 -17
|
@@ -9962,8 +9962,9 @@
|
|
|
9962
9962
|
setNode(this.editor, { columns: columns }, this.element);
|
|
9963
9963
|
};
|
|
9964
9964
|
TheTableComponent.prototype.onRowMouseDown = function (event, index) {
|
|
9965
|
+
if (this.readonly)
|
|
9966
|
+
return;
|
|
9965
9967
|
event.stopPropagation();
|
|
9966
|
-
event.preventDefault();
|
|
9967
9968
|
if (!this.isInTable) {
|
|
9968
9969
|
var path = TheEditor.findPath(this.editor, this.element);
|
|
9969
9970
|
slate.Transforms.select(this.editor, path);
|