1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | export { default as Plugin, type PluginDependencies, type PluginConstructor } from './plugin.js';
|
9 | export { default as Command, type CommandExecuteEvent } from './command.js';
|
10 | export { default as MultiCommand } from './multicommand.js';
|
11 | export type { CommandsMap } from './commandcollection.js';
|
12 | export type { PluginsMap, default as PluginCollection } from './plugincollection.js';
|
13 | export { default as Context, type ContextConfig } from './context.js';
|
14 | export { default as ContextPlugin, type ContextPluginDependencies } from './contextplugin.js';
|
15 | export { type EditingKeystrokeCallback } from './editingkeystrokehandler.js';
|
16 | export type { PartialBy, NonEmptyArray, HexColor } from './typings.js';
|
17 | export { default as Editor, type EditorReadyEvent, type EditorDestroyEvent } from './editor/editor.js';
|
18 | export type { EditorConfig, LanguageConfig, ToolbarConfig, ToolbarConfigItem, UiConfig } from './editor/editorconfig.js';
|
19 | export { default as attachToForm } from './editor/utils/attachtoform.js';
|
20 | export { default as DataApiMixin, type DataApi } from './editor/utils/dataapimixin.js';
|
21 | export { default as ElementApiMixin, type ElementApi } from './editor/utils/elementapimixin.js';
|
22 | export { default as secureSourceElement } from './editor/utils/securesourceelement.js';
|
23 | export { default as PendingActions, type PendingAction } from './pendingactions.js';
|
24 | export type { KeystrokeInfos as KeystrokeInfoDefinitions, KeystrokeInfoGroup as KeystrokeInfoGroupDefinition, KeystrokeInfoCategory as KeystrokeInfoCategoryDefinition, KeystrokeInfoDefinition as KeystrokeInfoDefinition } from './accessibility.js';
|
25 | export 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 | };
|
90 | import './augmentation.js';
|