@livetiles/reach-plugin-types 0.5.0-preview.860 → 0.5.0-preview.862
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 +19 -7
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10668,9 +10668,21 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentEditorOve
|
|
|
10668
10668
|
className?: string;
|
|
10669
10669
|
}>;
|
|
10670
10670
|
}
|
|
10671
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/common/SuggestionsPopover" {
|
|
10672
|
+
interface MentionsWithSuggestionsPopoverProps {
|
|
10673
|
+
suggestionsPosition: Partial<DOMRect> | null;
|
|
10674
|
+
}
|
|
10675
|
+
export const SuggestionsPopover: import("react").ForwardRefExoticComponent<MentionsWithSuggestionsPopoverProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
10676
|
+
}
|
|
10677
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/AttributesExtension" {
|
|
10678
|
+
import { Extension } from '@tiptap/react';
|
|
10679
|
+
const AttributesExtension: Extension<any, any>;
|
|
10680
|
+
export default AttributesExtension;
|
|
10681
|
+
}
|
|
10671
10682
|
declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/EmojiExtension" {
|
|
10672
10683
|
import { Extension } from '@tiptap/react';
|
|
10673
|
-
|
|
10684
|
+
const EmojiExtension: Extension<any, any>;
|
|
10685
|
+
export default EmojiExtension;
|
|
10674
10686
|
}
|
|
10675
10687
|
declare module "libs/reach/feature/content/src/reach-2/common/editor/common/MentionSuggestions" {
|
|
10676
10688
|
import { FC } from 'react';
|
|
@@ -10697,13 +10709,13 @@ declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/
|
|
|
10697
10709
|
};
|
|
10698
10710
|
}
|
|
10699
10711
|
}
|
|
10700
|
-
|
|
10712
|
+
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>;
|
|
10713
|
+
export default MentionExtension;
|
|
10701
10714
|
}
|
|
10702
|
-
declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/
|
|
10703
|
-
|
|
10704
|
-
|
|
10705
|
-
}
|
|
10706
|
-
export const SuggestionsPopover: import("react").ForwardRefExoticComponent<MentionsWithSuggestionsPopoverProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
10715
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/index" {
|
|
10716
|
+
export { default as AttributesExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/AttributesExtension";
|
|
10717
|
+
export { default as EmojiExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/EmojiExtension";
|
|
10718
|
+
export { default as MentionExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/MentionExtension";
|
|
10707
10719
|
}
|
|
10708
10720
|
declare module "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor" {
|
|
10709
10721
|
import { Account } from "libs/reach/util/common/src/index";
|