@ckeditor/ckeditor5-ui 41.3.0-alpha.3 → 41.3.0
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/ckeditor5-metadata.json +1 -1
- package/lang/contexts.json +12 -2
- package/lang/translations/af.po +210 -0
- package/lang/translations/ar.po +44 -4
- package/lang/translations/ast.po +44 -4
- package/lang/translations/az.po +44 -4
- package/lang/translations/bg.po +44 -4
- package/lang/translations/bn.po +44 -4
- package/lang/translations/bs.po +210 -0
- package/lang/translations/ca.po +44 -4
- package/lang/translations/cs.po +44 -4
- package/lang/translations/da.po +44 -4
- package/lang/translations/de-ch.po +44 -4
- package/lang/translations/de.po +44 -4
- package/lang/translations/el.po +44 -4
- package/lang/translations/en-au.po +44 -4
- package/lang/translations/en-gb.po +44 -4
- package/lang/translations/en.po +44 -4
- package/lang/translations/eo.po +44 -4
- package/lang/translations/es-co.po +210 -0
- package/lang/translations/es.po +44 -4
- package/lang/translations/et.po +44 -4
- package/lang/translations/eu.po +44 -4
- package/lang/translations/fa.po +44 -4
- package/lang/translations/fi.po +44 -4
- package/lang/translations/fr.po +44 -4
- package/lang/translations/gl.po +44 -4
- package/lang/translations/he.po +44 -4
- package/lang/translations/hi.po +44 -4
- package/lang/translations/hr.po +44 -4
- package/lang/translations/hu.po +44 -4
- package/lang/translations/id.po +44 -4
- package/lang/translations/it.po +44 -4
- package/lang/translations/ja.po +44 -4
- package/lang/translations/jv.po +210 -0
- package/lang/translations/km.po +44 -4
- package/lang/translations/kn.po +44 -4
- package/lang/translations/ko.po +44 -4
- package/lang/translations/ku.po +44 -4
- package/lang/translations/lt.po +44 -4
- package/lang/translations/lv.po +44 -4
- package/lang/translations/ms.po +44 -4
- package/lang/translations/nb.po +44 -4
- package/lang/translations/ne.po +44 -4
- package/lang/translations/nl.po +44 -4
- package/lang/translations/no.po +44 -4
- package/lang/translations/pl.po +44 -4
- package/lang/translations/pt-br.po +44 -4
- package/lang/translations/pt.po +44 -4
- package/lang/translations/ro.po +44 -4
- package/lang/translations/ru.po +44 -4
- package/lang/translations/sk.po +44 -4
- package/lang/translations/sl.po +44 -4
- package/lang/translations/sq.po +44 -4
- package/lang/translations/sr-latn.po +44 -4
- package/lang/translations/sr.po +44 -4
- package/lang/translations/sv.po +44 -4
- package/lang/translations/th.po +44 -4
- package/lang/translations/tk.po +44 -4
- package/lang/translations/tr.po +44 -4
- package/lang/translations/tt.po +44 -4
- package/lang/translations/ug.po +44 -4
- package/lang/translations/uk.po +44 -4
- package/lang/translations/ur.po +44 -4
- package/lang/translations/uz.po +44 -4
- package/lang/translations/vi.po +44 -4
- package/lang/translations/zh-cn.po +44 -4
- package/lang/translations/zh.po +44 -4
- package/package.json +3 -4
- package/src/button/button.d.ts +6 -0
- package/src/button/buttonview.d.ts +4 -0
- package/src/button/buttonview.js +1 -0
- package/src/button/filedialogbuttonview.d.ts +80 -0
- package/src/button/filedialogbuttonview.js +103 -0
- package/src/dropdown/utils.js +1 -5
- package/src/editorui/accessibilityhelp/accessibilityhelp.d.ts +4 -0
- package/src/editorui/accessibilityhelp/accessibilityhelp.js +25 -9
- package/src/index.d.ts +12 -3
- package/src/index.js +10 -2
- package/src/menubar/menubarmenubuttonview.d.ts +35 -0
- package/src/menubar/menubarmenubuttonview.js +64 -0
- package/src/menubar/menubarmenulistitembuttonview.d.ts +21 -0
- package/src/menubar/menubarmenulistitembuttonview.js +30 -0
- package/src/menubar/menubarmenulistitemfiledialogbuttonview.d.ts +23 -0
- package/src/menubar/menubarmenulistitemfiledialogbuttonview.js +32 -0
- package/src/menubar/menubarmenulistitemview.d.ts +25 -0
- package/src/menubar/menubarmenulistitemview.js +34 -0
- package/src/menubar/menubarmenulistview.d.ts +24 -0
- package/src/menubar/menubarmenulistview.js +23 -0
- package/src/menubar/menubarmenupanelview.d.ts +53 -0
- package/src/menubar/menubarmenupanelview.js +60 -0
- package/src/menubar/menubarmenuview.d.ts +109 -0
- package/src/menubar/menubarmenuview.js +159 -0
- package/src/menubar/menubarview.d.ts +164 -0
- package/src/menubar/menubarview.js +254 -0
- package/src/menubar/utils.d.ts +432 -0
- package/src/menubar/utils.js +1320 -0
- package/src/toolbar/toolbarview.js +5 -3
- package/src/tooltipmanager.d.ts +11 -0
- package/src/tooltipmanager.js +37 -6
- package/theme/components/menubar/menubar.css +10 -0
- package/theme/components/menubar/menubarmenu.css +9 -0
- package/theme/components/menubar/menubarmenubutton.css +11 -0
- package/theme/components/menubar/menubarmenulistitem.css +10 -0
- package/theme/components/menubar/menubarmenulistitembutton.css +10 -0
- package/theme/components/menubar/menubarmenupanel.css +62 -0
- package/theme/components/tooltip/tooltip.css +0 -3
- package/theme/globals/_reset.css +13 -0
- package/theme/globals/globals.css +1 -0
- package/dist/content-index.css +0 -4
- package/dist/editor-index.css +0 -445
- package/dist/index.css +0 -844
- package/dist/index.css.map +0 -1
- package/dist/translations/ar.d.ts +0 -8
- package/dist/translations/ar.js +0 -5
- package/dist/translations/ast.d.ts +0 -8
- package/dist/translations/ast.js +0 -5
- package/dist/translations/az.d.ts +0 -8
- package/dist/translations/az.js +0 -5
- package/dist/translations/bg.d.ts +0 -8
- package/dist/translations/bg.js +0 -5
- package/dist/translations/bn.d.ts +0 -8
- package/dist/translations/bn.js +0 -5
- package/dist/translations/ca.d.ts +0 -8
- package/dist/translations/ca.js +0 -5
- package/dist/translations/cs.d.ts +0 -8
- package/dist/translations/cs.js +0 -5
- package/dist/translations/da.d.ts +0 -8
- package/dist/translations/da.js +0 -5
- package/dist/translations/de-ch.d.ts +0 -8
- package/dist/translations/de-ch.js +0 -5
- package/dist/translations/de.d.ts +0 -8
- package/dist/translations/de.js +0 -5
- package/dist/translations/el.d.ts +0 -8
- package/dist/translations/el.js +0 -5
- package/dist/translations/en-au.d.ts +0 -8
- package/dist/translations/en-au.js +0 -5
- package/dist/translations/en-gb.d.ts +0 -8
- package/dist/translations/en-gb.js +0 -5
- package/dist/translations/en.d.ts +0 -8
- package/dist/translations/en.js +0 -5
- package/dist/translations/eo.d.ts +0 -8
- package/dist/translations/eo.js +0 -5
- package/dist/translations/es.d.ts +0 -8
- package/dist/translations/es.js +0 -5
- package/dist/translations/et.d.ts +0 -8
- package/dist/translations/et.js +0 -5
- package/dist/translations/eu.d.ts +0 -8
- package/dist/translations/eu.js +0 -5
- package/dist/translations/fa.d.ts +0 -8
- package/dist/translations/fa.js +0 -5
- package/dist/translations/fi.d.ts +0 -8
- package/dist/translations/fi.js +0 -5
- package/dist/translations/fr.d.ts +0 -8
- package/dist/translations/fr.js +0 -5
- package/dist/translations/gl.d.ts +0 -8
- package/dist/translations/gl.js +0 -5
- package/dist/translations/he.d.ts +0 -8
- package/dist/translations/he.js +0 -5
- package/dist/translations/hi.d.ts +0 -8
- package/dist/translations/hi.js +0 -5
- package/dist/translations/hr.d.ts +0 -8
- package/dist/translations/hr.js +0 -5
- package/dist/translations/hu.d.ts +0 -8
- package/dist/translations/hu.js +0 -5
- package/dist/translations/id.d.ts +0 -8
- package/dist/translations/id.js +0 -5
- package/dist/translations/it.d.ts +0 -8
- package/dist/translations/it.js +0 -5
- package/dist/translations/ja.d.ts +0 -8
- package/dist/translations/ja.js +0 -5
- package/dist/translations/km.d.ts +0 -8
- package/dist/translations/km.js +0 -5
- package/dist/translations/kn.d.ts +0 -8
- package/dist/translations/kn.js +0 -5
- package/dist/translations/ko.d.ts +0 -8
- package/dist/translations/ko.js +0 -5
- package/dist/translations/ku.d.ts +0 -8
- package/dist/translations/ku.js +0 -5
- package/dist/translations/lt.d.ts +0 -8
- package/dist/translations/lt.js +0 -5
- package/dist/translations/lv.d.ts +0 -8
- package/dist/translations/lv.js +0 -5
- package/dist/translations/ms.d.ts +0 -8
- package/dist/translations/ms.js +0 -5
- package/dist/translations/nb.d.ts +0 -8
- package/dist/translations/nb.js +0 -5
- package/dist/translations/ne.d.ts +0 -8
- package/dist/translations/ne.js +0 -5
- package/dist/translations/nl.d.ts +0 -8
- package/dist/translations/nl.js +0 -5
- package/dist/translations/no.d.ts +0 -8
- package/dist/translations/no.js +0 -5
- package/dist/translations/pl.d.ts +0 -8
- package/dist/translations/pl.js +0 -5
- package/dist/translations/pt-br.d.ts +0 -8
- package/dist/translations/pt-br.js +0 -5
- package/dist/translations/pt.d.ts +0 -8
- package/dist/translations/pt.js +0 -5
- package/dist/translations/ro.d.ts +0 -8
- package/dist/translations/ro.js +0 -5
- package/dist/translations/ru.d.ts +0 -8
- package/dist/translations/ru.js +0 -5
- package/dist/translations/sk.d.ts +0 -8
- package/dist/translations/sk.js +0 -5
- package/dist/translations/sl.d.ts +0 -8
- package/dist/translations/sl.js +0 -5
- package/dist/translations/sq.d.ts +0 -8
- package/dist/translations/sq.js +0 -5
- package/dist/translations/sr-latn.d.ts +0 -8
- package/dist/translations/sr-latn.js +0 -5
- package/dist/translations/sr.d.ts +0 -8
- package/dist/translations/sr.js +0 -5
- package/dist/translations/sv.d.ts +0 -8
- package/dist/translations/sv.js +0 -5
- package/dist/translations/th.d.ts +0 -8
- package/dist/translations/th.js +0 -5
- package/dist/translations/tk.d.ts +0 -8
- package/dist/translations/tk.js +0 -5
- package/dist/translations/tr.d.ts +0 -8
- package/dist/translations/tr.js +0 -5
- package/dist/translations/tt.d.ts +0 -8
- package/dist/translations/tt.js +0 -5
- package/dist/translations/ug.d.ts +0 -8
- package/dist/translations/ug.js +0 -5
- package/dist/translations/uk.d.ts +0 -8
- package/dist/translations/uk.js +0 -5
- package/dist/translations/ur.d.ts +0 -8
- package/dist/translations/ur.js +0 -5
- package/dist/translations/uz.d.ts +0 -8
- package/dist/translations/uz.js +0 -5
- package/dist/translations/vi.d.ts +0 -8
- package/dist/translations/vi.js +0 -5
- package/dist/translations/zh-cn.d.ts +0 -8
- package/dist/translations/zh-cn.js +0 -5
- package/dist/translations/zh.d.ts +0 -8
- package/dist/translations/zh.js +0 -5
- package/dist/types/arialiveannouncer.d.ts +0 -102
- package/dist/types/augmentation.d.ts +0 -92
- package/dist/types/autocomplete/autocompleteview.d.ts +0 -85
- package/dist/types/bindings/addkeyboardhandlingforgrid.d.ts +0 -31
- package/dist/types/bindings/clickoutsidehandler.d.ts +0 -32
- package/dist/types/bindings/csstransitiondisablermixin.d.ts +0 -44
- package/dist/types/bindings/draggableviewmixin.d.ts +0 -50
- package/dist/types/bindings/injectcsstransitiondisabler.d.ts +0 -63
- package/dist/types/bindings/preventdefault.d.ts +0 -37
- package/dist/types/bindings/submithandler.d.ts +0 -61
- package/dist/types/button/button.d.ts +0 -179
- package/dist/types/button/buttonlabel.d.ts +0 -38
- package/dist/types/button/buttonlabelview.d.ts +0 -35
- package/dist/types/button/buttonview.d.ts +0 -185
- package/dist/types/button/switchbuttonview.d.ts +0 -49
- package/dist/types/collapsible/collapsibleview.d.ts +0 -74
- package/dist/types/colorgrid/colorgridview.d.ts +0 -136
- package/dist/types/colorgrid/colortileview.d.ts +0 -32
- package/dist/types/colorgrid/utils.d.ts +0 -51
- package/dist/types/colorpicker/colorpickerview.d.ts +0 -146
- package/dist/types/colorpicker/utils.d.ts +0 -52
- package/dist/types/colorselector/colorgridsfragmentview.d.ts +0 -199
- package/dist/types/colorselector/colorpickerfragmentview.d.ts +0 -133
- package/dist/types/colorselector/colorselectorview.d.ts +0 -246
- package/dist/types/colorselector/documentcolorcollection.d.ts +0 -74
- package/dist/types/componentfactory.d.ts +0 -85
- package/dist/types/dialog/dialog.d.ts +0 -277
- package/dist/types/dialog/dialogactionsview.d.ts +0 -73
- package/dist/types/dialog/dialogcontentview.d.ts +0 -31
- package/dist/types/dialog/dialogview.d.ts +0 -260
- package/dist/types/dropdown/button/dropdownbutton.d.ts +0 -29
- package/dist/types/dropdown/button/dropdownbuttonview.d.ts +0 -52
- package/dist/types/dropdown/button/splitbuttonview.d.ts +0 -166
- package/dist/types/dropdown/dropdownpanelfocusable.d.ts +0 -25
- package/dist/types/dropdown/dropdownpanelview.d.ts +0 -66
- package/dist/types/dropdown/dropdownview.d.ts +0 -319
- package/dist/types/dropdown/utils.d.ts +0 -239
- package/dist/types/editableui/editableuiview.d.ts +0 -76
- package/dist/types/editableui/inline/inlineeditableuiview.d.ts +0 -44
- package/dist/types/editorui/accessibilityhelp/accessibilityhelp.d.ts +0 -51
- package/dist/types/editorui/accessibilityhelp/accessibilityhelpcontentview.d.ts +0 -39
- package/dist/types/editorui/bodycollection.d.ts +0 -59
- package/dist/types/editorui/boxed/boxededitoruiview.d.ts +0 -44
- package/dist/types/editorui/editorui.d.ts +0 -292
- package/dist/types/editorui/editoruiview.d.ts +0 -43
- package/dist/types/editorui/poweredby.d.ts +0 -75
- package/dist/types/focuscycler.d.ts +0 -249
- package/dist/types/formheader/formheaderview.d.ts +0 -63
- package/dist/types/highlightedtext/highlightedtextview.d.ts +0 -42
- package/dist/types/icon/iconview.d.ts +0 -92
- package/dist/types/iframe/iframeview.d.ts +0 -54
- package/dist/types/index.d.ts +0 -78
- package/dist/types/input/inputbase.d.ts +0 -123
- package/dist/types/input/inputview.d.ts +0 -40
- package/dist/types/inputnumber/inputnumberview.d.ts +0 -53
- package/dist/types/inputtext/inputtextview.d.ts +0 -22
- package/dist/types/label/labelview.d.ts +0 -40
- package/dist/types/labeledfield/labeledfieldview.d.ts +0 -191
- package/dist/types/labeledfield/utils.d.ts +0 -127
- package/dist/types/labeledinput/labeledinputview.d.ts +0 -129
- package/dist/types/list/listitemgroupview.d.ts +0 -63
- package/dist/types/list/listitemview.d.ts +0 -40
- package/dist/types/list/listseparatorview.d.ts +0 -22
- package/dist/types/list/listview.d.ts +0 -128
- package/dist/types/model.d.ts +0 -26
- package/dist/types/notification/notification.d.ts +0 -215
- package/dist/types/panel/balloon/balloonpanelview.d.ts +0 -689
- package/dist/types/panel/balloon/contextualballoon.d.ts +0 -303
- package/dist/types/panel/sticky/stickypanelview.d.ts +0 -160
- package/dist/types/search/filteredview.d.ts +0 -35
- package/dist/types/search/searchinfoview.d.ts +0 -49
- package/dist/types/search/searchresultsview.d.ts +0 -58
- package/dist/types/search/text/searchtextqueryview.d.ts +0 -80
- package/dist/types/search/text/searchtextview.d.ts +0 -223
- package/dist/types/spinner/spinnerview.d.ts +0 -29
- package/dist/types/template.d.ts +0 -946
- package/dist/types/textarea/textareaview.d.ts +0 -108
- package/dist/types/toolbar/balloon/balloontoolbar.d.ts +0 -121
- package/dist/types/toolbar/block/blockbuttonview.d.ts +0 -39
- package/dist/types/toolbar/block/blocktoolbar.d.ts +0 -157
- package/dist/types/toolbar/normalizetoolbarconfig.d.ts +0 -44
- package/dist/types/toolbar/toolbarlinebreakview.d.ts +0 -22
- package/dist/types/toolbar/toolbarseparatorview.d.ts +0 -22
- package/dist/types/toolbar/toolbarview.d.ts +0 -271
- package/dist/types/tooltipmanager.d.ts +0 -188
- package/dist/types/view.d.ts +0 -426
- package/dist/types/viewcollection.d.ts +0 -143
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @module ui/editorui/accessibilityhelp/accessibilityhelp
|
|
11
|
-
*/
|
|
12
|
-
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
13
|
-
import { Dialog } from '../../index.js';
|
|
14
|
-
import AccessibilityHelpContentView from './accessibilityhelpcontentview.js';
|
|
15
|
-
import '../../../theme/components/editorui/accessibilityhelp.css';
|
|
16
|
-
/**
|
|
17
|
-
* A plugin that brings the accessibility help dialog to the editor available under the <kbd>Alt</kbd>+<kbd>0</kbd>
|
|
18
|
-
* keystroke and via the "Accessibility help" toolbar button. The dialog displays a list of keystrokes that can be used
|
|
19
|
-
* by the user to perform various actions in the editor.
|
|
20
|
-
*
|
|
21
|
-
* Keystroke information is loaded from {@link module:core/accessibility~Accessibility#keystrokeInfos}. New entries can be
|
|
22
|
-
* added using the API provided by the {@link module:core/accessibility~Accessibility} class.
|
|
23
|
-
*/
|
|
24
|
-
export default class AccessibilityHelp extends Plugin {
|
|
25
|
-
/**
|
|
26
|
-
* The view that displays the dialog content (list of keystrokes).
|
|
27
|
-
* Created when the dialog is opened for the first time.
|
|
28
|
-
*/
|
|
29
|
-
contentView: AccessibilityHelpContentView | null;
|
|
30
|
-
/**
|
|
31
|
-
* @inheritDoc
|
|
32
|
-
*/
|
|
33
|
-
static get requires(): readonly [typeof Dialog];
|
|
34
|
-
/**
|
|
35
|
-
* @inheritDoc
|
|
36
|
-
*/
|
|
37
|
-
static get pluginName(): "AccessibilityHelp";
|
|
38
|
-
/**
|
|
39
|
-
* @inheritDoc
|
|
40
|
-
*/
|
|
41
|
-
init(): void;
|
|
42
|
-
/**
|
|
43
|
-
* Injects a help text into each editing root's `aria-label` attribute allowing assistive technology users
|
|
44
|
-
* to discover the availability of the Accessibility help dialog.
|
|
45
|
-
*/
|
|
46
|
-
private _setupRootLabels;
|
|
47
|
-
/**
|
|
48
|
-
* Shows the accessibility help dialog. Also, creates {@link #contentView} on demand.
|
|
49
|
-
*/
|
|
50
|
-
private _showDialog;
|
|
51
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @module ui/editorui/accessibilityhelp/accessibilityhelpcontentview
|
|
11
|
-
*/
|
|
12
|
-
import { type Locale } from '@ckeditor/ckeditor5-utils';
|
|
13
|
-
import View from '../../view.js';
|
|
14
|
-
import type { KeystrokeInfoDefinitions } from '@ckeditor/ckeditor5-core';
|
|
15
|
-
/**
|
|
16
|
-
* The view displaying keystrokes in the Accessibility help dialog.
|
|
17
|
-
*/
|
|
18
|
-
export default class AccessibilityHelpContentView extends View<HTMLDivElement> {
|
|
19
|
-
/**
|
|
20
|
-
* @inheritDoc
|
|
21
|
-
*/
|
|
22
|
-
constructor(locale: Locale, keystrokes: KeystrokeInfoDefinitions);
|
|
23
|
-
/**
|
|
24
|
-
* @inheritDoc
|
|
25
|
-
*/
|
|
26
|
-
focus(): void;
|
|
27
|
-
/**
|
|
28
|
-
* Creates `<section><h3>Category label</h3>...</section>` elements for each category of keystrokes.
|
|
29
|
-
*/
|
|
30
|
-
private _createCategories;
|
|
31
|
-
/**
|
|
32
|
-
* Creates `[<h4>Optional label</h4>]<dl>...</dl>` elements for each group of keystrokes in a category.
|
|
33
|
-
*/
|
|
34
|
-
private _createGroup;
|
|
35
|
-
/**
|
|
36
|
-
* Creates `<dt>Keystroke label</dt><dd>Keystroke definition</dd>` elements for each keystroke in a group.
|
|
37
|
-
*/
|
|
38
|
-
private _createGroupRow;
|
|
39
|
-
}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
8
|
-
*/
|
|
9
|
-
import ViewCollection from '../viewcollection.js';
|
|
10
|
-
import type View from '../view.js';
|
|
11
|
-
import { type Locale } from '@ckeditor/ckeditor5-utils';
|
|
12
|
-
/**
|
|
13
|
-
* This is a special {@link module:ui/viewcollection~ViewCollection} dedicated to elements that are detached
|
|
14
|
-
* from the DOM structure of the editor, like panels, icons, etc.
|
|
15
|
-
*
|
|
16
|
-
* The body collection is available in the {@link module:ui/editorui/editoruiview~EditorUIView#body `editor.ui.view.body`} property.
|
|
17
|
-
* Any plugin can add a {@link module:ui/view~View view} to this collection.
|
|
18
|
-
* These views will render in a container placed directly in the `<body>` element.
|
|
19
|
-
* The editor will detach and destroy this collection when the editor will be {@link module:core/editor/editor~Editor#destroy destroyed}.
|
|
20
|
-
*
|
|
21
|
-
* If you need to control the life cycle of the body collection on your own, you can create your own instance of this class.
|
|
22
|
-
*
|
|
23
|
-
* A body collection will render itself automatically in the DOM body element as soon as you call {@link ~BodyCollection#attachToDom}.
|
|
24
|
-
* If you create multiple body collections, this class will create a special wrapper element in the DOM to limit the number of
|
|
25
|
-
* elements created directly in the body and remove it when the last body collection will be
|
|
26
|
-
* {@link ~BodyCollection#detachFromDom detached}.
|
|
27
|
-
*/
|
|
28
|
-
export default class BodyCollection extends ViewCollection {
|
|
29
|
-
/**
|
|
30
|
-
* The {@link module:core/editor/editor~Editor#locale editor's locale} instance.
|
|
31
|
-
* See the view {@link module:ui/view~View#locale locale} property.
|
|
32
|
-
*/
|
|
33
|
-
readonly locale: Locale;
|
|
34
|
-
/**
|
|
35
|
-
* The element holding elements of the body region.
|
|
36
|
-
*/
|
|
37
|
-
private _bodyCollectionContainer?;
|
|
38
|
-
/**
|
|
39
|
-
* Creates a new instance of the {@link module:ui/editorui/bodycollection~BodyCollection}.
|
|
40
|
-
*
|
|
41
|
-
* @param locale The {@link module:core/editor/editor~Editor editor's locale} instance.
|
|
42
|
-
* @param initialItems The initial items of the collection.
|
|
43
|
-
*/
|
|
44
|
-
constructor(locale: Locale, initialItems?: Iterable<View>);
|
|
45
|
-
/**
|
|
46
|
-
* The element holding elements of the body region.
|
|
47
|
-
*/
|
|
48
|
-
get bodyCollectionContainer(): HTMLElement | undefined;
|
|
49
|
-
/**
|
|
50
|
-
* Attaches the body collection to the DOM body element. You need to execute this method to render the content of
|
|
51
|
-
* the body collection.
|
|
52
|
-
*/
|
|
53
|
-
attachToDom(): void;
|
|
54
|
-
/**
|
|
55
|
-
* Detaches the collection from the DOM structure. Use this method when you do not need to use the body collection
|
|
56
|
-
* anymore to clean-up the DOM structure.
|
|
57
|
-
*/
|
|
58
|
-
detachFromDom(): void;
|
|
59
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @module ui/editorui/boxed/boxededitoruiview
|
|
11
|
-
*/
|
|
12
|
-
import EditorUIView from '../editoruiview.js';
|
|
13
|
-
import type ViewCollection from '../../viewcollection.js';
|
|
14
|
-
import type { Locale } from '@ckeditor/ckeditor5-utils';
|
|
15
|
-
/**
|
|
16
|
-
* The boxed editor UI view class. This class represents an editor interface
|
|
17
|
-
* consisting of a toolbar and an editable area, enclosed within a box.
|
|
18
|
-
*/
|
|
19
|
-
export default abstract class BoxedEditorUIView extends EditorUIView {
|
|
20
|
-
/**
|
|
21
|
-
* Collection of the child views located in the top (`.ck-editor__top`)
|
|
22
|
-
* area of the UI.
|
|
23
|
-
*/
|
|
24
|
-
readonly top: ViewCollection;
|
|
25
|
-
/**
|
|
26
|
-
* Collection of the child views located in the main (`.ck-editor__main`)
|
|
27
|
-
* area of the UI.
|
|
28
|
-
*/
|
|
29
|
-
readonly main: ViewCollection;
|
|
30
|
-
/**
|
|
31
|
-
* Voice label of the UI.
|
|
32
|
-
*/
|
|
33
|
-
private readonly _voiceLabelView;
|
|
34
|
-
/**
|
|
35
|
-
* Creates an instance of the boxed editor UI view class.
|
|
36
|
-
*
|
|
37
|
-
* @param locale The locale instance..
|
|
38
|
-
*/
|
|
39
|
-
constructor(locale: Locale);
|
|
40
|
-
/**
|
|
41
|
-
* Creates a voice label view instance.
|
|
42
|
-
*/
|
|
43
|
-
private _createVoiceLabel;
|
|
44
|
-
}
|
|
@@ -1,292 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @module ui/editorui/editorui
|
|
11
|
-
*/
|
|
12
|
-
import ComponentFactory from '../componentfactory.js';
|
|
13
|
-
import TooltipManager from '../tooltipmanager.js';
|
|
14
|
-
import PoweredBy from './poweredby.js';
|
|
15
|
-
import AriaLiveAnnouncer from '../arialiveannouncer.js';
|
|
16
|
-
import type EditorUIView from './editoruiview.js';
|
|
17
|
-
import type ToolbarView from '../toolbar/toolbarview.js';
|
|
18
|
-
import { FocusTracker } from '@ckeditor/ckeditor5-utils';
|
|
19
|
-
import type { Editor } from '@ckeditor/ckeditor5-core';
|
|
20
|
-
declare const EditorUI_base: {
|
|
21
|
-
new (): import("@ckeditor/ckeditor5-utils").Observable;
|
|
22
|
-
prototype: import("@ckeditor/ckeditor5-utils").Observable;
|
|
23
|
-
};
|
|
24
|
-
/**
|
|
25
|
-
* A class providing the minimal interface that is required to successfully bootstrap any editor UI.
|
|
26
|
-
*/
|
|
27
|
-
export default abstract class EditorUI extends EditorUI_base {
|
|
28
|
-
/**
|
|
29
|
-
* The editor that the UI belongs to.
|
|
30
|
-
*/
|
|
31
|
-
readonly editor: Editor;
|
|
32
|
-
/**
|
|
33
|
-
* An instance of the {@link module:ui/componentfactory~ComponentFactory}, a registry used by plugins
|
|
34
|
-
* to register factories of specific UI components.
|
|
35
|
-
*/
|
|
36
|
-
readonly componentFactory: ComponentFactory;
|
|
37
|
-
/**
|
|
38
|
-
* Stores the information about the editor UI focus and propagates it so various plugins and components
|
|
39
|
-
* are unified as a focus group.
|
|
40
|
-
*/
|
|
41
|
-
readonly focusTracker: FocusTracker;
|
|
42
|
-
/**
|
|
43
|
-
* Manages the tooltips displayed on mouseover and focus across the UI.
|
|
44
|
-
*/
|
|
45
|
-
readonly tooltipManager: TooltipManager;
|
|
46
|
-
/**
|
|
47
|
-
* A helper that enables the "powered by" feature in the editor and renders a link to the project's webpage.
|
|
48
|
-
*/
|
|
49
|
-
readonly poweredBy: PoweredBy;
|
|
50
|
-
/**
|
|
51
|
-
* A helper that manages the content of an `aria-live` regions used by editor features to announce status changes
|
|
52
|
-
* to screen readers.
|
|
53
|
-
*/
|
|
54
|
-
readonly ariaLiveAnnouncer: AriaLiveAnnouncer;
|
|
55
|
-
/**
|
|
56
|
-
* Indicates the UI is ready. Set `true` after {@link #event:ready} event is fired.
|
|
57
|
-
*
|
|
58
|
-
* @readonly
|
|
59
|
-
* @default false
|
|
60
|
-
*/
|
|
61
|
-
isReady: boolean;
|
|
62
|
-
abstract get view(): EditorUIView;
|
|
63
|
-
/**
|
|
64
|
-
* Stores viewport offsets from every direction.
|
|
65
|
-
*
|
|
66
|
-
* Viewport offset can be used to constrain balloons or other UI elements into an element smaller than the viewport.
|
|
67
|
-
* This can be useful if there are any other absolutely positioned elements that may interfere with editor UI.
|
|
68
|
-
*
|
|
69
|
-
* Example `editor.ui.viewportOffset` returns:
|
|
70
|
-
*
|
|
71
|
-
* ```js
|
|
72
|
-
* {
|
|
73
|
-
* top: 50,
|
|
74
|
-
* right: 50,
|
|
75
|
-
* bottom: 50,
|
|
76
|
-
* left: 50
|
|
77
|
-
* }
|
|
78
|
-
* ```
|
|
79
|
-
*
|
|
80
|
-
* This property can be overriden after editor already being initialized:
|
|
81
|
-
*
|
|
82
|
-
* ```js
|
|
83
|
-
* editor.ui.viewportOffset = {
|
|
84
|
-
* top: 100,
|
|
85
|
-
* right: 0,
|
|
86
|
-
* bottom: 0,
|
|
87
|
-
* left: 0
|
|
88
|
-
* };
|
|
89
|
-
* ```
|
|
90
|
-
*
|
|
91
|
-
* @observable
|
|
92
|
-
*/
|
|
93
|
-
viewportOffset: {
|
|
94
|
-
left?: number;
|
|
95
|
-
right?: number;
|
|
96
|
-
top?: number;
|
|
97
|
-
bottom?: number;
|
|
98
|
-
};
|
|
99
|
-
/**
|
|
100
|
-
* Stores all editable elements used by the editor instance.
|
|
101
|
-
*/
|
|
102
|
-
private _editableElementsMap;
|
|
103
|
-
/**
|
|
104
|
-
* All available & focusable toolbars.
|
|
105
|
-
*/
|
|
106
|
-
private _focusableToolbarDefinitions;
|
|
107
|
-
/**
|
|
108
|
-
* Creates an instance of the editor UI class.
|
|
109
|
-
*
|
|
110
|
-
* @param editor The editor instance.
|
|
111
|
-
*/
|
|
112
|
-
constructor(editor: Editor);
|
|
113
|
-
/**
|
|
114
|
-
* The main (outermost) DOM element of the editor UI.
|
|
115
|
-
*
|
|
116
|
-
* For example, in {@link module:editor-classic/classiceditor~ClassicEditor} it is a `<div>` which
|
|
117
|
-
* wraps the editable element and the toolbar. In {@link module:editor-inline/inlineeditor~InlineEditor}
|
|
118
|
-
* it is the editable element itself (as there is no other wrapper). However, in
|
|
119
|
-
* {@link module:editor-decoupled/decouplededitor~DecoupledEditor} it is set to `null` because this editor does not
|
|
120
|
-
* come with a single "main" HTML element (its editable element and toolbar are separate).
|
|
121
|
-
*
|
|
122
|
-
* This property can be understood as a shorthand for retrieving the element that a specific editor integration
|
|
123
|
-
* considers to be its main DOM element.
|
|
124
|
-
*/
|
|
125
|
-
get element(): HTMLElement | null;
|
|
126
|
-
/**
|
|
127
|
-
* Fires the {@link module:ui/editorui/editorui~EditorUI#event:update `update`} event.
|
|
128
|
-
*
|
|
129
|
-
* This method should be called when the editor UI (e.g. positions of its balloons) needs to be updated due to
|
|
130
|
-
* some environmental change which CKEditor 5 is not aware of (e.g. resize of a container in which it is used).
|
|
131
|
-
*/
|
|
132
|
-
update(): void;
|
|
133
|
-
/**
|
|
134
|
-
* Destroys the UI.
|
|
135
|
-
*/
|
|
136
|
-
destroy(): void;
|
|
137
|
-
/**
|
|
138
|
-
* Stores the native DOM editable element used by the editor under a unique name.
|
|
139
|
-
*
|
|
140
|
-
* Also, registers the element in the editor to maintain the accessibility of the UI. When the user is editing text in a focusable
|
|
141
|
-
* editable area, they can use the <kbd>Alt</kbd> + <kbd>F10</kbd> keystroke to navigate over editor toolbars. See {@link #addToolbar}.
|
|
142
|
-
*
|
|
143
|
-
* @param rootName The unique name of the editable element.
|
|
144
|
-
* @param domElement The native DOM editable element.
|
|
145
|
-
*/
|
|
146
|
-
setEditableElement(rootName: string, domElement: HTMLElement): void;
|
|
147
|
-
/**
|
|
148
|
-
* Removes the editable from the editor UI. Removes all handlers added by {@link #setEditableElement}.
|
|
149
|
-
*
|
|
150
|
-
* @param rootName The name of the editable element to remove.
|
|
151
|
-
*/
|
|
152
|
-
removeEditableElement(rootName: string): void;
|
|
153
|
-
/**
|
|
154
|
-
* Returns the editable editor element with the given name or null if editable does not exist.
|
|
155
|
-
*
|
|
156
|
-
* @param rootName The editable name.
|
|
157
|
-
*/
|
|
158
|
-
getEditableElement(rootName?: string): HTMLElement | undefined;
|
|
159
|
-
/**
|
|
160
|
-
* Returns array of names of all editor editable elements.
|
|
161
|
-
*/
|
|
162
|
-
getEditableElementsNames(): IterableIterator<string>;
|
|
163
|
-
/**
|
|
164
|
-
* Adds a toolbar to the editor UI. Used primarily to maintain the accessibility of the UI.
|
|
165
|
-
*
|
|
166
|
-
* Focusable toolbars can be accessed (focused) by users by pressing the <kbd>Alt</kbd> + <kbd>F10</kbd> keystroke.
|
|
167
|
-
* Successive keystroke presses navigate over available toolbars.
|
|
168
|
-
*
|
|
169
|
-
* @param toolbarView A instance of the toolbar to be registered.
|
|
170
|
-
*/
|
|
171
|
-
addToolbar(toolbarView: ToolbarView, options?: FocusableToolbarOptions): void;
|
|
172
|
-
/**
|
|
173
|
-
* Stores all editable elements used by the editor instance.
|
|
174
|
-
*
|
|
175
|
-
* @deprecated
|
|
176
|
-
*/
|
|
177
|
-
protected get _editableElements(): unknown;
|
|
178
|
-
/**
|
|
179
|
-
* Returns viewport offsets object:
|
|
180
|
-
*
|
|
181
|
-
* ```js
|
|
182
|
-
* {
|
|
183
|
-
* top: Number,
|
|
184
|
-
* right: Number,
|
|
185
|
-
* bottom: Number,
|
|
186
|
-
* left: Number
|
|
187
|
-
* }
|
|
188
|
-
* ```
|
|
189
|
-
*
|
|
190
|
-
* Only top property is currently supported.
|
|
191
|
-
*/
|
|
192
|
-
private _readViewportOffsetFromConfig;
|
|
193
|
-
/**
|
|
194
|
-
* Starts listening for <kbd>Alt</kbd> + <kbd>F10</kbd> and <kbd>Esc</kbd> keystrokes in the context of focusable
|
|
195
|
-
* {@link #setEditableElement editable elements} and {@link #addToolbar toolbars}
|
|
196
|
-
* to allow users navigate across the UI.
|
|
197
|
-
*/
|
|
198
|
-
private _initFocusTracking;
|
|
199
|
-
/**
|
|
200
|
-
* Returns definitions of toolbars that could potentially be focused, sorted by their importance for the user.
|
|
201
|
-
*
|
|
202
|
-
* Focusable toolbars candidates are either:
|
|
203
|
-
* * already visible,
|
|
204
|
-
* * have `beforeFocus()` set in their {@link module:ui/editorui/editorui~FocusableToolbarDefinition definition} that suggests that
|
|
205
|
-
* they might show up when called. Keep in mind that determining whether a toolbar will show up (and become focusable) is impossible
|
|
206
|
-
* at this stage because it depends on its implementation, that in turn depends on the editing context (selection).
|
|
207
|
-
*
|
|
208
|
-
* **Note**: Contextual toolbars take precedence over regular toolbars.
|
|
209
|
-
*/
|
|
210
|
-
private _getFocusableCandidateToolbarDefinitions;
|
|
211
|
-
/**
|
|
212
|
-
* Returns a definition of the toolbar that is currently visible and focused (one of its children has focus).
|
|
213
|
-
*
|
|
214
|
-
* `null` is returned when no toolbar is currently focused.
|
|
215
|
-
*/
|
|
216
|
-
private _getCurrentFocusedToolbarDefinition;
|
|
217
|
-
/**
|
|
218
|
-
* Focuses a focusable toolbar candidate using its definition.
|
|
219
|
-
*
|
|
220
|
-
* @param candidateToolbarDefinition A definition of the toolbar to focus.
|
|
221
|
-
* @returns `true` when the toolbar candidate was focused. `false` otherwise.
|
|
222
|
-
*/
|
|
223
|
-
private _focusFocusableCandidateToolbar;
|
|
224
|
-
/**
|
|
225
|
-
* Provides an integration between {@link #viewportOffset} and {@link module:utils/dom/scroll~scrollViewportToShowTarget}.
|
|
226
|
-
* It allows the UI-agnostic engine method to consider user-configured viewport offsets specific for the integration.
|
|
227
|
-
*
|
|
228
|
-
* @param evt The `scrollToTheSelection` event info.
|
|
229
|
-
* @param data The payload carried by the `scrollToTheSelection` event.
|
|
230
|
-
*/
|
|
231
|
-
private _handleScrollToTheSelection;
|
|
232
|
-
}
|
|
233
|
-
/**
|
|
234
|
-
* Fired when the editor UI is ready.
|
|
235
|
-
*
|
|
236
|
-
* Fired before {@link module:engine/controller/datacontroller~DataController#event:ready}.
|
|
237
|
-
*
|
|
238
|
-
* @eventName ~EditorUI#ready
|
|
239
|
-
*/
|
|
240
|
-
export type EditorUIReadyEvent = {
|
|
241
|
-
name: 'ready';
|
|
242
|
-
args: [];
|
|
243
|
-
};
|
|
244
|
-
/**
|
|
245
|
-
* Fired whenever the UI (all related components) should be refreshed.
|
|
246
|
-
*
|
|
247
|
-
* **Note:**: The event is fired after each {@link module:engine/view/document~Document#event:layoutChanged}.
|
|
248
|
-
* It can also be fired manually via the {@link module:ui/editorui/editorui~EditorUI#update} method.
|
|
249
|
-
*
|
|
250
|
-
* @eventName ~EditorUI#update
|
|
251
|
-
*/
|
|
252
|
-
export type EditorUIUpdateEvent = {
|
|
253
|
-
name: 'update';
|
|
254
|
-
args: [];
|
|
255
|
-
};
|
|
256
|
-
/**
|
|
257
|
-
* A definition of a focusable toolbar. Used by {@link module:ui/editorui/editorui~EditorUI#addToolbar}.
|
|
258
|
-
*/
|
|
259
|
-
export interface FocusableToolbarDefinition {
|
|
260
|
-
/**
|
|
261
|
-
* An instance of a focusable toolbar view.
|
|
262
|
-
*/
|
|
263
|
-
toolbarView: ToolbarView;
|
|
264
|
-
/**
|
|
265
|
-
* Options of a focusable toolbar view:
|
|
266
|
-
*
|
|
267
|
-
* * `isContextual`: Marks the higher priority toolbar. For example when there are 2 visible toolbars,
|
|
268
|
-
* it allows to distinguish which toolbar should be focused first after the `alt+f10` keystroke
|
|
269
|
-
* * `beforeFocus`: A callback executed before the `ToolbarView` gains focus upon the `Alt+F10` keystroke.
|
|
270
|
-
* * `afterBlur`: A callback executed after `ToolbarView` loses focus upon `Esc` keystroke but before
|
|
271
|
-
* the focus goes back to the `origin`.
|
|
272
|
-
*/
|
|
273
|
-
options: FocusableToolbarOptions;
|
|
274
|
-
}
|
|
275
|
-
export interface FocusableToolbarOptions {
|
|
276
|
-
/**
|
|
277
|
-
* Set `true` if the toolbar is attached to the content of the editor. Such toolbar takes
|
|
278
|
-
* a precedence over other toolbars when a user pressed <kbd>Alt</kbd> + <kbd>F10</kbd>.
|
|
279
|
-
*/
|
|
280
|
-
isContextual?: boolean;
|
|
281
|
-
/**
|
|
282
|
-
* Specify a callback executed before the toolbar instance DOM element gains focus
|
|
283
|
-
* upon the <kbd>Alt</kbd> + <kbd>F10</kbd> keystroke.
|
|
284
|
-
*/
|
|
285
|
-
beforeFocus?: () => void;
|
|
286
|
-
/**
|
|
287
|
-
* Specify a callback executed after the toolbar instance DOM element loses focus upon
|
|
288
|
-
* <kbd>Esc</kbd> keystroke but before the focus goes back to the {@link ~EditorUI#setEditableElement editable element}.
|
|
289
|
-
*/
|
|
290
|
-
afterBlur?: () => void;
|
|
291
|
-
}
|
|
292
|
-
export {};
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @module ui/editorui/editoruiview
|
|
11
|
-
*/
|
|
12
|
-
import View from '../view.js';
|
|
13
|
-
import BodyCollection from './bodycollection.js';
|
|
14
|
-
import type EditableUIView from '../editableui/editableuiview.js';
|
|
15
|
-
import type { Locale, LocaleTranslate } from '@ckeditor/ckeditor5-utils';
|
|
16
|
-
import '../../theme/components/editorui/editorui.css';
|
|
17
|
-
/**
|
|
18
|
-
* The editor UI view class. Base class for the editor main views.
|
|
19
|
-
*/
|
|
20
|
-
export default abstract class EditorUIView extends View {
|
|
21
|
-
/**
|
|
22
|
-
* Collection of the child views, detached from the DOM
|
|
23
|
-
* structure of the editor, like panels, icons etc.
|
|
24
|
-
*/
|
|
25
|
-
readonly body: BodyCollection;
|
|
26
|
-
locale: Locale;
|
|
27
|
-
t: LocaleTranslate;
|
|
28
|
-
abstract get editable(): EditableUIView;
|
|
29
|
-
/**
|
|
30
|
-
* Creates an instance of the editor UI view class.
|
|
31
|
-
*
|
|
32
|
-
* @param locale The locale instance.
|
|
33
|
-
*/
|
|
34
|
-
constructor(locale: Locale);
|
|
35
|
-
/**
|
|
36
|
-
* @inheritDoc
|
|
37
|
-
*/
|
|
38
|
-
render(): void;
|
|
39
|
-
/**
|
|
40
|
-
* @inheritDoc
|
|
41
|
-
*/
|
|
42
|
-
destroy(): void;
|
|
43
|
-
}
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
|
|
7
|
-
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
8
|
-
*/
|
|
9
|
-
/**
|
|
10
|
-
* @module ui/editorui/poweredby
|
|
11
|
-
*/
|
|
12
|
-
import type { Editor } from '@ckeditor/ckeditor5-core';
|
|
13
|
-
declare const PoweredBy_base: {
|
|
14
|
-
new (): import("@ckeditor/ckeditor5-utils").DomEmitter;
|
|
15
|
-
prototype: import("@ckeditor/ckeditor5-utils").DomEmitter;
|
|
16
|
-
};
|
|
17
|
-
/**
|
|
18
|
-
* A helper that enables the "powered by" feature in the editor and renders a link to the project's
|
|
19
|
-
* webpage next to the bottom of the editable element (editor root, source editing area, etc.) when the editor is focused.
|
|
20
|
-
*
|
|
21
|
-
* @private
|
|
22
|
-
*/
|
|
23
|
-
export default class PoweredBy extends PoweredBy_base {
|
|
24
|
-
/**
|
|
25
|
-
* Editor instance the helper was created for.
|
|
26
|
-
*/
|
|
27
|
-
private readonly editor;
|
|
28
|
-
/**
|
|
29
|
-
* A reference to the balloon panel hosting and positioning the "powered by" link and logo.
|
|
30
|
-
*/
|
|
31
|
-
private _balloonView;
|
|
32
|
-
/**
|
|
33
|
-
* A throttled version of the {@link #_showBalloon} method meant for frequent use to avoid performance loss.
|
|
34
|
-
*/
|
|
35
|
-
private _showBalloonThrottled;
|
|
36
|
-
/**
|
|
37
|
-
* A reference to the last editable element (root, source editing area, etc.) focused by the user.
|
|
38
|
-
* Since the focus can move to other focusable elements in the UI, this reference allows positioning the balloon over the
|
|
39
|
-
* right element whether the user is typing or using the UI.
|
|
40
|
-
*/
|
|
41
|
-
private _lastFocusedEditableElement;
|
|
42
|
-
/**
|
|
43
|
-
* Creates a "powered by" helper for a given editor. The feature is initialized on Editor#ready
|
|
44
|
-
* event.
|
|
45
|
-
*
|
|
46
|
-
* @param editor
|
|
47
|
-
*/
|
|
48
|
-
constructor(editor: Editor);
|
|
49
|
-
/**
|
|
50
|
-
* Destroys the "powered by" helper along with its view.
|
|
51
|
-
*/
|
|
52
|
-
destroy(): void;
|
|
53
|
-
/**
|
|
54
|
-
* Enables "powered by" label once the editor (ui) is ready.
|
|
55
|
-
*/
|
|
56
|
-
private _handleEditorReady;
|
|
57
|
-
/**
|
|
58
|
-
* Creates an instance of the {@link module:ui/panel/balloon/balloonpanelview~BalloonPanelView balloon panel}
|
|
59
|
-
* with the "powered by" view inside ready for positioning.
|
|
60
|
-
*/
|
|
61
|
-
private _createBalloonView;
|
|
62
|
-
/**
|
|
63
|
-
* Attempts to display the balloon with the "powered by" view.
|
|
64
|
-
*/
|
|
65
|
-
private _showBalloon;
|
|
66
|
-
/**
|
|
67
|
-
* Hides the "powered by" balloon if already visible.
|
|
68
|
-
*/
|
|
69
|
-
private _hideBalloon;
|
|
70
|
-
/**
|
|
71
|
-
* Updates the {@link #_lastFocusedEditableElement} based on the state of the global focus tracker.
|
|
72
|
-
*/
|
|
73
|
-
private _updateLastFocusedEditableElement;
|
|
74
|
-
}
|
|
75
|
-
export {};
|