@worktile/theia 16.2.4 → 16.2.5
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
CHANGED
|
@@ -56,7 +56,7 @@ export declare class TableStore {
|
|
|
56
56
|
dangerousCellsChange(): Observable<CellPosition[]>;
|
|
57
57
|
setDangerousCells(): void;
|
|
58
58
|
clearDangerousCells(): void;
|
|
59
|
-
dangerousOrSelectedCellsChange(): Observable<
|
|
59
|
+
dangerousOrSelectedCellsChange(): Observable<TableCellElement[] | CellPosition[]>;
|
|
60
60
|
setDangerousRows(): void;
|
|
61
61
|
setDangerousColumns(): void;
|
|
62
62
|
setDangerousTable(): void;
|
|
@@ -83,10 +83,10 @@ export declare class TableStore {
|
|
|
83
83
|
*/
|
|
84
84
|
areaSelectRowAndColumn(cells: CellPosition[]): void;
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* 设置指定 anchorCellPath
|
|
87
87
|
* @param path 路径
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
setAnchorCellPath(path: number[]): void;
|
|
90
90
|
selectCellInDirection(direction: TableSelectCellDirection): void;
|
|
91
91
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableStore, never>;
|
|
92
92
|
static ɵprov: i0.ɵɵInjectableDeclaration<TableStore>;
|