@ones-editor/editor 0.0.3-beta.44 → 0.0.3-beta.46

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/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { OnesEditor, DocObject, OnesEditorDoc } from '../@ones-editor/core';
2
2
  import { VersionDialogOptions } from '../@ones-editor/versions';
3
3
  import { CreateLocalEditorOptions, CreateOnesEditorOptions } from './types';
4
+ import * as tippy from 'tippy.js';
4
5
  import './lang';
5
- export * from 'tippy.js';
6
6
  export * from '../@ones-editor/core';
7
7
  export * from '../@ones-editor/sharedb-doc';
8
8
  export * from '../@ones-editor/table-block';
@@ -17,6 +17,7 @@ export { editorShowFindDialog } from '../@ones-editor/find-dialog';
17
17
  export * from '../@ones-editor/toc';
18
18
  export * from '../@ones-editor/embed-block-helper';
19
19
  export * from './types';
20
+ export { tippy, };
20
21
  export declare function createOnesEditor(root: HTMLElement, options: CreateOnesEditorOptions): Promise<OnesEditor>;
21
22
  export declare function createLocalEditor(root: HTMLElement, docData: DocObject | OnesEditorDoc, options: CreateLocalEditorOptions): Promise<OnesEditor>;
22
23
  export declare function showDocVersions(editor: OnesEditor, options: VersionDialogOptions): {