@livetiles/reach-plugin-types 0.5.0-preview.869 → 0.5.0-preview.870
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/lib/index.d.ts +7 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10722,10 +10722,17 @@ declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/
|
|
|
10722
10722
|
const MentionExtension: (mentionSearchHandler: (searchText: string) => Promise<Account[]>, setSuggestionsPosition: (newPos: DOMRect | null) => void, suggestionsRef: MutableRefObject<HTMLDivElement>) => import("@tiptap/react").Node<import("@tiptap/extension-mention").MentionOptions, any>;
|
|
10723
10723
|
export default MentionExtension;
|
|
10724
10724
|
}
|
|
10725
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/ShortcutExtension" {
|
|
10726
|
+
import { Extension } from '@tiptap/react';
|
|
10727
|
+
import { Editor } from '@tiptap/core';
|
|
10728
|
+
const ShortcutExtension: (shortcuts?: string[], onShortcut?: (editor: Editor, shortcut: string) => void) => Extension<any, any>;
|
|
10729
|
+
export default ShortcutExtension;
|
|
10730
|
+
}
|
|
10725
10731
|
declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/index" {
|
|
10726
10732
|
export { default as AttributesExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/AttributesExtension";
|
|
10727
10733
|
export { default as EmojiExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/EmojiExtension";
|
|
10728
10734
|
export { default as MentionExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/MentionExtension";
|
|
10735
|
+
export { default as ShortcutExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/ShortcutExtension";
|
|
10729
10736
|
}
|
|
10730
10737
|
declare module "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor" {
|
|
10731
10738
|
import { Account } from "libs/reach/util/common/src/index";
|