@worktile/theia 14.2.16 → 14.2.17
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/components/plugin-menu/plugin-menu.component.mjs +2 -2
- package/esm2020/interfaces/image.mjs +1 -1
- package/esm2020/plugins/image/image.plugin.mjs +1 -1
- package/fesm2015/worktile-theia.mjs +1 -1
- package/fesm2015/worktile-theia.mjs.map +1 -1
- package/fesm2020/worktile-theia.mjs +1 -1
- package/fesm2020/worktile-theia.mjs.map +1 -1
- package/interfaces/image.d.ts +5 -0
- package/package.json +1 -1
- package/plugins/image/image.plugin.d.ts +1 -5
|
@@ -10312,7 +10312,7 @@ class ThePluginMenuComponent extends mixinUnsubscribe(MixinBase) {
|
|
|
10312
10312
|
this.cdr.markForCheck();
|
|
10313
10313
|
}
|
|
10314
10314
|
handleItemSelection(menuItem) {
|
|
10315
|
-
if (menuItem.isDisabled(this.editor)) {
|
|
10315
|
+
if (menuItem.isDisabled && menuItem.isDisabled(this.editor)) {
|
|
10316
10316
|
return;
|
|
10317
10317
|
}
|
|
10318
10318
|
if (!this.editor.selection) {
|