@livetiles/reach-plugin-types 0.5.0-preview.919 → 0.5.0-preview.920
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 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10767,9 +10767,26 @@ declare module "libs/reach/feature/content/src/reach-2/common/editor/extensions/
|
|
|
10767
10767
|
export { default as MentionExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/MentionExtension";
|
|
10768
10768
|
export { default as ShortcutExtension } from "libs/reach/feature/content/src/reach-2/common/editor/extensions/ShortcutExtension";
|
|
10769
10769
|
}
|
|
10770
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/types" {
|
|
10771
|
+
export interface AttachmentStorageInfo {
|
|
10772
|
+
attachmentContainerId?: string;
|
|
10773
|
+
fileAccessToken?: string;
|
|
10774
|
+
subscriptionId?: string;
|
|
10775
|
+
}
|
|
10776
|
+
}
|
|
10777
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/nodes/CustomFigure" {
|
|
10778
|
+
import { Node } from '@tiptap/react';
|
|
10779
|
+
import { AttachmentStorageInfo } from "libs/reach/feature/content/src/reach-2/common/editor/types";
|
|
10780
|
+
const CustomFigure: (attachmentStorageInfo?: AttachmentStorageInfo) => Node<any, any>;
|
|
10781
|
+
export default CustomFigure;
|
|
10782
|
+
}
|
|
10783
|
+
declare module "libs/reach/feature/content/src/reach-2/common/editor/nodes/index" {
|
|
10784
|
+
export { default as CustomFigure } from "libs/reach/feature/content/src/reach-2/common/editor/nodes/CustomFigure";
|
|
10785
|
+
}
|
|
10770
10786
|
declare module "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor" {
|
|
10771
10787
|
import { Account } from "libs/reach/util/common/src/index";
|
|
10772
10788
|
import { Editor, FocusPosition } from '@tiptap/react';
|
|
10789
|
+
import { AttachmentStorageInfo } from "libs/reach/feature/content/src/reach-2/common/editor/types";
|
|
10773
10790
|
export const editorCharacterLimit = 1000;
|
|
10774
10791
|
export interface EnhancedRichTextEditorContent {
|
|
10775
10792
|
content?: string;
|
|
@@ -10781,6 +10798,7 @@ declare module "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRic
|
|
|
10781
10798
|
getEditor: () => Editor;
|
|
10782
10799
|
}
|
|
10783
10800
|
interface EnhancedRichTextEditorProps {
|
|
10801
|
+
attachmentStorageInfo?: AttachmentStorageInfo;
|
|
10784
10802
|
autofocus?: FocusPosition;
|
|
10785
10803
|
characterLimit?: number;
|
|
10786
10804
|
className?: string;
|
|
@@ -11348,6 +11366,7 @@ declare module "libs/reach/feature/content/src/reach-2/common/editor/index" {
|
|
|
11348
11366
|
export { default as ContentRichTextEditor } from "libs/reach/feature/content/src/reach-2/common/editor/ContentRichTextEditor";
|
|
11349
11367
|
export { default as EnhancedRichTextEditor } from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11350
11368
|
export * from "libs/reach/feature/content/src/reach-2/common/editor/EnhancedRichTextEditor";
|
|
11369
|
+
export * from "libs/reach/feature/content/src/reach-2/common/editor/types";
|
|
11351
11370
|
}
|
|
11352
11371
|
declare module "libs/reach/feature/content/src/reach-2/common/snippets/common/publication-card/components/Footer" {
|
|
11353
11372
|
import { PostStreamItem } from "libs/reach/feature/content/src/stream/index";
|