@livetiles/reach-plugin-types 0.5.0-preview.739 → 0.5.0-preview.741
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 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -10590,7 +10590,6 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentFormattin
|
|
|
10590
10590
|
}
|
|
10591
10591
|
declare module "libs/reach/feature/content/src/reach-2/comments/CommentEditorOverlay" {
|
|
10592
10592
|
import { FC } from 'react';
|
|
10593
|
-
import 'emoji-mart/css/emoji-mart.css';
|
|
10594
10593
|
export const CommentEditorOverlay: FC<{
|
|
10595
10594
|
isOpen?: boolean;
|
|
10596
10595
|
onCloseOverlay: () => void;
|
|
@@ -10598,8 +10597,17 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentEditorOve
|
|
|
10598
10597
|
className?: string;
|
|
10599
10598
|
}>;
|
|
10600
10599
|
}
|
|
10600
|
+
declare module "libs/reach/feature/content/src/reach-2/comments/common/EmojiPicker" {
|
|
10601
|
+
import { FC } from 'react';
|
|
10602
|
+
import { BaseEmoji } from 'emoji-mart';
|
|
10603
|
+
const EmojiPicker: FC<{
|
|
10604
|
+
onSelect: (emoji: BaseEmoji) => void;
|
|
10605
|
+
}>;
|
|
10606
|
+
export default EmojiPicker;
|
|
10607
|
+
}
|
|
10601
10608
|
declare module "libs/reach/feature/content/src/reach-2/comments/editors/EmojiEditor" {
|
|
10602
10609
|
import { FC } from 'react';
|
|
10610
|
+
import 'emoji-mart/css/emoji-mart.css';
|
|
10603
10611
|
export const EmojiEditor: FC<{
|
|
10604
10612
|
onEmojiSelect: (emoji: string) => void;
|
|
10605
10613
|
onCloseOverlay?: () => void;
|