@livetiles/reach-plugin-types 0.5.0-preview.604 → 0.5.0-preview.607
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 +5 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10824,9 +10824,13 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentMetadata"
|
|
|
10824
10824
|
declare module "libs/reach/feature/content/src/reach-2/comments/RichTextEditor" {
|
|
10825
10825
|
import { FC } from 'react';
|
|
10826
10826
|
import { Editor } from '@tiptap/react';
|
|
10827
|
+
export interface RichTextEditorStyles {
|
|
10828
|
+
minHeight?: number;
|
|
10829
|
+
maxHeight?: number;
|
|
10830
|
+
}
|
|
10827
10831
|
export const RichTextEditor: FC<{
|
|
10828
10832
|
editor: Editor;
|
|
10829
|
-
|
|
10833
|
+
styles?: RichTextEditorStyles;
|
|
10830
10834
|
className?: string;
|
|
10831
10835
|
}>;
|
|
10832
10836
|
}
|