@livetiles/reach-plugin-types 0.5.0-preview.585 → 0.5.0-preview.588
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 +9 -10
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10820,6 +10820,14 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentMetadata"
|
|
|
10820
10820
|
comment: Comment;
|
|
10821
10821
|
}>;
|
|
10822
10822
|
}
|
|
10823
|
+
declare module "libs/reach/feature/content/src/reach-2/comments/RichTextEditor" {
|
|
10824
|
+
import { FC } from 'react';
|
|
10825
|
+
import { Editor } from '@tiptap/react';
|
|
10826
|
+
export const RichTextEditor: FC<{
|
|
10827
|
+
editor: Editor;
|
|
10828
|
+
className?: string;
|
|
10829
|
+
}>;
|
|
10830
|
+
}
|
|
10823
10831
|
declare module "libs/reach/feature/content/src/reach-2/comments/EnhancedRichTextEditor" {
|
|
10824
10832
|
import { FC } from 'react';
|
|
10825
10833
|
import { Editor } from '@tiptap/react';
|
|
@@ -10830,22 +10838,13 @@ declare module "libs/reach/feature/content/src/reach-2/comments/EnhancedRichText
|
|
|
10830
10838
|
isReadOnly?: boolean;
|
|
10831
10839
|
header?: JSX.Element;
|
|
10832
10840
|
main: (editor: Editor) => JSX.Element;
|
|
10833
|
-
footer?: (content: string | null, clearContent: () => void) => JSX.Element;
|
|
10841
|
+
footer?: (content: string | null, clearContent: () => void, getCharacterCount: () => number) => JSX.Element;
|
|
10834
10842
|
placeholder?: string;
|
|
10835
10843
|
onCreate?: (editor: IEditor) => void;
|
|
10836
10844
|
autofocus?: FocusPosition;
|
|
10837
10845
|
className?: string;
|
|
10838
10846
|
}>;
|
|
10839
10847
|
}
|
|
10840
|
-
declare module "libs/reach/feature/content/src/reach-2/comments/RichTextEditor" {
|
|
10841
|
-
import { FC } from 'react';
|
|
10842
|
-
import { Editor } from '@tiptap/react';
|
|
10843
|
-
export const RichTextEditor: FC<{
|
|
10844
|
-
editor: Editor;
|
|
10845
|
-
hideCount?: boolean;
|
|
10846
|
-
className?: string;
|
|
10847
|
-
}>;
|
|
10848
|
-
}
|
|
10849
10848
|
declare module "libs/reach/feature/content/src/reach-2/comments/CommentContent" {
|
|
10850
10849
|
import { FC } from 'react';
|
|
10851
10850
|
export const CommentContent: FC<{
|