@ones-editor/editor 2.9.8-beta.21 → 2.9.8-beta.22
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.
|
@@ -448,6 +448,7 @@ export interface OnesEditorEvents {
|
|
|
448
448
|
'beforeExecCommand': (editor: OnesEditor, command: CommandItem, option: {
|
|
449
449
|
source: string;
|
|
450
450
|
}) => void;
|
|
451
|
+
'textColorChanged': (editor: OnesEditor, sender: unknown) => void;
|
|
451
452
|
}
|
|
452
453
|
export interface OnesEditorSettingsProvider {
|
|
453
454
|
getItem: (key: string) => string | null;
|
|
@@ -8,8 +8,10 @@ import './lang';
|
|
|
8
8
|
import './style.scss';
|
|
9
9
|
import { ListPasteHandler } from './local-events/paste-handler';
|
|
10
10
|
import { handleTab, handleShiftTab } from './keyboard/tab';
|
|
11
|
+
export { FixStartByBlock, FixStartByList } from './start/fix-start-by-list';
|
|
11
12
|
export { autoBreakListBlock } from './keyboard/enter';
|
|
12
13
|
export { type ListOptions, type DocListBlock } from './types';
|
|
14
|
+
export { getListType } from './list-data';
|
|
13
15
|
declare const ListBlock: TextKindBlock;
|
|
14
16
|
export * from './utils';
|
|
15
17
|
export * from './keyboard/to-text-block';
|