@ones-editor/editor 0.0.3-beta.68 → 0.0.3-beta.69

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.
@@ -1,6 +1,5 @@
1
1
  import BlockLockerHook from './hook';
2
2
  import './style.scss';
3
3
  import './i18n';
4
- import BlockLockerPasteHandler from './paste-handler';
5
4
  export * from './helper';
6
- export { BlockLockerHook, BlockLockerPasteHandler };
5
+ export { BlockLockerHook };
@@ -1,3 +1,3 @@
1
1
  import { BlockElement, OnesEditor } from '../../../../../@ones-editor/core';
2
2
  import { BlockMenuItem } from './types';
3
- export declare function getBlockCommandItems(editor: OnesEditor, block: BlockElement, excludes?: Set<string>): BlockMenuItem[];
3
+ export declare function getBlockCommandItems(editor: OnesEditor, block: BlockElement): BlockMenuItem[];
@@ -10,5 +10,4 @@ export default class TableRowColumnToolbar {
10
10
  destroy(): void;
11
11
  handleSelectionChange: (bar: AbstractCommandBar, id: string) => void;
12
12
  handleClick: (bar: AbstractCommandBar, item: CommandItem, elem: HTMLElement) => void;
13
- handleToolbarClose: () => void;
14
13
  }
@@ -11,7 +11,6 @@ export default class TextCommandProvider implements OnesEditorCommandProvider {
11
11
  executeCommand(editor: OnesEditor, block: BlockElement, range: SelectionRange, item: BlockCommandItem, params: CommandParams, result: CommandResult): boolean;
12
12
  private executeCommandOnEmptyText;
13
13
  private getCommandsOnEmptyText;
14
- private setCommandsStates;
15
14
  getEmptyBlockTextAttributes(editor: OnesEditor, blockId: string): DocBlockTextAttributes | undefined;
16
15
  private handleChangeColor;
17
16
  private handleBeforePopupPalette;