@worktile/theia 14.3.16 → 14.3.18
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/esm2020/plugins/table/components/table.component.mjs +3 -1
- package/esm2020/plugins/table/components/toolbar/table-toolbar.component.mjs +25 -28
- package/esm2020/plugins/table/table.editor.mjs +2 -9
- package/esm2020/plugins/table/table.store.mjs +6 -6
- package/esm2020/plugins/table/transforms/insert-column.mjs +10 -4
- package/esm2020/plugins/table/utils/handle-cell.mjs +5 -3
- package/esm2020/services/table-contextmenu.service.mjs +3 -1
- package/fesm2015/worktile-theia.mjs +47 -45
- package/fesm2015/worktile-theia.mjs.map +1 -1
- package/fesm2020/worktile-theia.mjs +47 -45
- package/fesm2020/worktile-theia.mjs.map +1 -1
- package/package.json +1 -1
- package/plugins/table/components/toolbar/table-toolbar.component.d.ts +5 -6
- package/plugins/table/table.store.d.ts +1 -1
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ export declare class TheTableToolbarComponent implements OnInit, OnDestroy {
|
|
|
15
15
|
private popoverRef;
|
|
16
16
|
private thyNotifyService;
|
|
17
17
|
selectedColor: string;
|
|
18
|
-
deleteIcon:
|
|
18
|
+
deleteIcon: DeleteIcon;
|
|
19
19
|
iconName: string;
|
|
20
20
|
isRectangle: boolean;
|
|
21
21
|
isColumnEqual: boolean;
|
|
@@ -29,8 +29,7 @@ export declare class TheTableToolbarComponent implements OnInit, OnDestroy {
|
|
|
29
29
|
constructor(ngZone: NgZone, colorSelectService: TheColorSelectService, thyPopover: ThyPopover, popoverRef: ThyPopoverRef<TheTableToolbarComponent>, thyNotifyService: ThyNotifyService);
|
|
30
30
|
ngOnInit(): void;
|
|
31
31
|
ngOnDestroy(): void;
|
|
32
|
-
|
|
33
|
-
getDeleteIcon(): DeleteIcon;
|
|
32
|
+
setDeleteIcon(): void;
|
|
34
33
|
onDelete(event: MouseEvent): void;
|
|
35
34
|
onEnterDelete(event: MouseEvent): void;
|
|
36
35
|
onLeaveDelete(event: MouseEvent): void;
|
|
@@ -44,7 +43,7 @@ export declare class TheTableToolbarComponent implements OnInit, OnDestroy {
|
|
|
44
43
|
static ɵcmp: i0.ɵɵComponentDeclaration<TheTableToolbarComponent, "the-table-toolbar", never, { "tableStore": "tableStore"; "tableElement": "tableElement"; }, {}, never, never, false>;
|
|
45
44
|
}
|
|
46
45
|
export declare enum DeleteIcon {
|
|
47
|
-
'table-delete-rows' =
|
|
48
|
-
'table-delete-columns' =
|
|
49
|
-
'trash' =
|
|
46
|
+
'table-delete-rows' = "table-delete-rows",
|
|
47
|
+
'table-delete-columns' = "table-delete-columns",
|
|
48
|
+
'trash' = "trash"
|
|
50
49
|
}
|
|
@@ -78,7 +78,7 @@ export declare class TableStore {
|
|
|
78
78
|
mergeCell(editor: Editor): void;
|
|
79
79
|
setTableOptions(editor: Editor, newOptions: TheTableOptions): void;
|
|
80
80
|
removeDangerousColumnsOrRows(): void;
|
|
81
|
-
createTablePosition()
|
|
81
|
+
createTablePosition: () => TablePosition;
|
|
82
82
|
removeColumnOrRows(selectedRowIndexs?: number[], selectedColumnIndexs?: number[]): void;
|
|
83
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableStore, never>;
|
|
84
84
|
static ɵprov: i0.ɵɵInjectableDeclaration<TableStore>;
|