@livetiles/reach-plugin-types 0.5.0-preview.604 → 0.5.0-preview.605

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +5 -1
  2. 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
- isCollapsed?: boolean;
10833
+ styles?: RichTextEditorStyles;
10830
10834
  className?: string;
10831
10835
  }>;
10832
10836
  }
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.604",
7
+ "version": "0.5.0-preview.605",
8
8
  "dependencies": {}
9
9
  }