mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
17 lines
554 B
TypeScript
17 lines
554 B
TypeScript
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
import { ContextualBalloon } from '@ckeditor/ckeditor5-ui';
|
|
import FormView from './object-shortcut.form-view';
|
|
import './styles.css';
|
|
export default class ObjectShortcutUI extends Plugin {
|
|
static get requires(): (typeof ContextualBalloon)[];
|
|
oBalloon: ContextualBalloon | undefined;
|
|
oFormView: FormView | undefined;
|
|
init(): void;
|
|
_createFormView(): FormView;
|
|
_showUI(): void;
|
|
_hideUI(): void;
|
|
_getBalloonPositionData(): {
|
|
oTarget: (() => Range) | null;
|
|
};
|
|
}
|