UNPKG

3.35 kBTypeScriptView Raw
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 * @module core
7 */
8export { default as Plugin, type PluginDependencies, type PluginConstructor } from './plugin.js';
9export { default as Command, type CommandExecuteEvent } from './command.js';
10export { default as MultiCommand } from './multicommand.js';
11export type { CommandsMap } from './commandcollection.js';
12export type { PluginsMap, default as PluginCollection } from './plugincollection.js';
13export { default as Context, type ContextConfig } from './context.js';
14export { default as ContextPlugin, type ContextPluginDependencies } from './contextplugin.js';
15export { type EditingKeystrokeCallback } from './editingkeystrokehandler.js';
16export type { PartialBy, NonEmptyArray, HexColor } from './typings.js';
17export { default as Editor, type EditorReadyEvent, type EditorDestroyEvent } from './editor/editor.js';
18export type { EditorConfig, LanguageConfig, ToolbarConfig, ToolbarConfigItem, UiConfig } from './editor/editorconfig.js';
19export { default as attachToForm } from './editor/utils/attachtoform.js';
20export { default as DataApiMixin, type DataApi } from './editor/utils/dataapimixin.js';
21export { default as ElementApiMixin, type ElementApi } from './editor/utils/elementapimixin.js';
22export { default as secureSourceElement } from './editor/utils/securesourceelement.js';
23export { default as PendingActions, type PendingAction } from './pendingactions.js';
24export type { KeystrokeInfos as KeystrokeInfoDefinitions, KeystrokeInfoGroup as KeystrokeInfoGroupDefinition, KeystrokeInfoCategory as KeystrokeInfoCategoryDefinition, KeystrokeInfoDefinition as KeystrokeInfoDefinition } from './accessibility.js';
25export declare const icons: {
26 bold: string;
27 cancel: string;
28 caption: string;
29 check: string;
30 cog: string;
31 colorPalette: string;
32 eraser: string;
33 history: string;
34 image: string;
35 imageUpload: string;
36 imageAssetManager: string;
37 imageUrl: string;
38 lowVision: string;
39 textAlternative: string;
40 loupe: string;
41 previousArrow: string;
42 nextArrow: string;
43 importExport: string;
44 paragraph: string;
45 plus: string;
46 text: string;
47 alignBottom: string;
48 alignMiddle: string;
49 alignTop: string;
50 alignLeft: string;
51 alignCenter: string;
52 alignRight: string;
53 alignJustify: string;
54 objectLeft: string;
55 objectCenter: string;
56 objectRight: string;
57 objectFullWidth: string;
58 objectInline: string;
59 objectBlockLeft: string;
60 objectBlockRight: string;
61 objectSizeCustom: string;
62 objectSizeFull: string;
63 objectSizeLarge: string;
64 objectSizeSmall: string;
65 objectSizeMedium: string;
66 pencil: string;
67 pilcrow: string;
68 quote: string;
69 threeVerticalDots: string;
70 dragIndicator: string;
71 redo: string;
72 undo: string;
73 bulletedList: string;
74 numberedList: string;
75 todoList: string;
76 codeBlock: string;
77 browseFiles: string;
78 heading1: string;
79 heading2: string;
80 heading3: string;
81 heading4: string;
82 heading5: string;
83 heading6: string;
84 horizontalLine: string;
85 html: string;
86 indent: string;
87 outdent: string;
88 table: string;
89};
90import './augmentation.js';