mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 23:35:50 +01:00
chore: Add override for methods
ERROR in ckeditor5-math/src/mathcommand.ts
./src/mathcommand.ts 5:8-13
[tsl] ERROR in ckeditor5-math/src/mathcommand.ts(5,9)
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'Command'.
@ ./src/autoformatmath.ts 6:0-40 24:31-42
@ ./src/index.ts 5:0-61 5:0-61
ERROR in ckeditor5-math/src/mathcommand.ts
./src/mathcommand.ts 6:8-15
[tsl] ERROR in ckeditor5-math/src/mathcommand.ts(6,9)
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'Command'.
@ ./src/autoformatmath.ts 6:0-40 24:31-42
@ ./src/index.ts 5:0-61 5:0-61
ERROR in ckeditor5-math/src/mathcommand.ts
./src/mathcommand.ts 48:8-15
[tsl] ERROR in ckeditor5-math/src/mathcommand.ts(48,9)
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'Command'.
@ ./src/autoformatmath.ts 6:0-40 24:31-42
@ ./src/index.ts 5:0-61 5:0-61
ERROR in ckeditor5-math/src/mathui.ts
./src/mathui.ts 41:8-15
[tsl] ERROR in ckeditor5-math/src/mathui.ts(41,9)
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'Plugin'.
@ ./src/autoformatmath.ts 7:0-30 33:50-56
@ ./src/index.ts 5:0-61 5:0-61
ERROR in ckeditor5-math/src/ui/mainformview.ts
./src/ui/mainformview.ts 40:8-14
[tsl] ERROR in ckeditor5-math/src/ui/mainformview.ts(40,9)
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'View<HTMLElement>'.
@ ./src/mathui.ts 2:0-45 61:29-41
@ ./src/autoformatmath.ts 7:0-30 33:50-56
@ ./src/index.ts 5:0-61 5:0-61
ERROR in ckeditor5-math/src/ui/mainformview.ts
./src/ui/mainformview.ts 130:8-14
[tsl] ERROR in ckeditor5-math/src/ui/mainformview.ts(130,9)
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'View<HTMLElement>'.
@ ./src/mathui.ts 2:0-45 61:29-41
@ ./src/autoformatmath.ts 7:0-30 33:50-56
@ ./src/index.ts 5:0-61 5:0-61
ERROR in ckeditor5-math/src/ui/mathview.ts
./src/ui/mathview.ts 76:8-14
[tsl] ERROR in ckeditor5-math/src/ui/mathview.ts(76,9)
TS4114: This member must have an 'override' modifier because it overrides a member in the base class 'View<HTMLElement>'.
@ ./src/ui/mainformview.ts 5:0-34 48:32-40
@ ./src/mathui.ts 2:0-45 61:29-41
@ ./src/autoformatmath.ts 7:0-30 33:50-56
@ ./src/index.ts 5:0-61 5:0-61
7 errors have detailed information that is not shown.
Use 'stats.errorDetails: true' resp. '--stats-error-details' to show it.
This commit is contained in:
@@ -2,8 +2,8 @@ import { Command } from 'ckeditor5/src/core';
|
|||||||
import { getSelectedMathModelWidget } from './utils';
|
import { getSelectedMathModelWidget } from './utils';
|
||||||
|
|
||||||
export default class MathCommand extends Command {
|
export default class MathCommand extends Command {
|
||||||
public value: string | null = null;
|
public override value: string | null = null;
|
||||||
public execute(
|
public override execute(
|
||||||
equation: string,
|
equation: string,
|
||||||
display?: boolean,
|
display?: boolean,
|
||||||
outputType: 'script' | 'span' = 'script',
|
outputType: 'script' | 'span' = 'script',
|
||||||
@@ -45,7 +45,7 @@ export default class MathCommand extends Command {
|
|||||||
|
|
||||||
public display = false;
|
public display = false;
|
||||||
|
|
||||||
public refresh(): void {
|
public override refresh(): void {
|
||||||
const model = this.editor.model;
|
const model = this.editor.model;
|
||||||
const selection = model.document.selection;
|
const selection = model.document.selection;
|
||||||
const selectedElement = selection.getSelectedElement();
|
const selectedElement = selection.getSelectedElement();
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ export default class MathUI extends Plugin {
|
|||||||
this._enableUserBalloonInteractions();
|
this._enableUserBalloonInteractions();
|
||||||
}
|
}
|
||||||
|
|
||||||
public destroy(): void {
|
public override destroy(): void {
|
||||||
super.destroy();
|
super.destroy();
|
||||||
|
|
||||||
this.formView?.destroy();
|
this.formView?.destroy();
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ export default class MainFormView extends View {
|
|||||||
public previewEnabled: boolean;
|
public previewEnabled: boolean;
|
||||||
public previewLabel?: LabelView;
|
public previewLabel?: LabelView;
|
||||||
public mathView?: MathView;
|
public mathView?: MathView;
|
||||||
public locale: Locale = new Locale();
|
public override locale: Locale = new Locale();
|
||||||
public lazyLoad: undefined | ( () => Promise<void> );
|
public lazyLoad: undefined | ( () => Promise<void> );
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@@ -127,7 +127,7 @@ export default class MainFormView extends View {
|
|||||||
} );
|
} );
|
||||||
}
|
}
|
||||||
|
|
||||||
public render(): void {
|
public override render(): void {
|
||||||
super.render();
|
super.render();
|
||||||
|
|
||||||
// Prevent default form submit event & trigger custom 'submit'
|
// Prevent default form submit event & trigger custom 'submit'
|
||||||
|
|||||||
@@ -73,7 +73,7 @@ export default class MathView extends View {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public render(): void {
|
public override render(): void {
|
||||||
super.render();
|
super.render();
|
||||||
this.updateMath();
|
this.updateMath();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user