@worktile/theia 16.3.0 → 16.3.2
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/editor.module.d.ts +1 -1
- package/esm2022/components/plugin-menu/plugin-menu.component.mjs +5 -2
- package/esm2022/services/table-contextmenu.service.mjs +9 -8
- package/fesm2022/worktile-theia.mjs +159 -155
- package/fesm2022/worktile-theia.mjs.map +1 -1
- package/package.json +1 -1
- package/services/table-contextmenu.service.d.ts +2 -2
- package/styles/editor.scss +9 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { NgZone } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ThyPopover, ThyPopoverRef } from 'ngx-tethys/popover';
|
|
3
|
+
import { TheContextMenuComponent } from '../components/contextmenu/contextmenu.component';
|
|
3
4
|
import { TableStore } from '../plugins/table/table.store';
|
|
4
5
|
import { MenuEntity } from '../plugins/table/table.types';
|
|
5
|
-
import { TheContextMenuComponent } from '../components/contextmenu/contextmenu.component';
|
|
6
6
|
import { TheContextService } from './context.service';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class TheTableContextMenuService {
|
package/styles/editor.scss
CHANGED
|
@@ -230,3 +230,12 @@
|
|
|
230
230
|
padding: 4px;
|
|
231
231
|
@include mixins.common-toolbar-icon-color();
|
|
232
232
|
}
|
|
233
|
+
|
|
234
|
+
.the-table-contextmenu-panel,
|
|
235
|
+
.the-plugin-toolbar-popover,
|
|
236
|
+
.the-toolbar-container {
|
|
237
|
+
// 屏蔽颜色选择面板给宿主元素附加的 :focus 样式
|
|
238
|
+
.thy-color-picker:not(.disabled):focus {
|
|
239
|
+
border: none !important;
|
|
240
|
+
}
|
|
241
|
+
}
|