@livetiles/reach-plugin-types 0.5.0-preview.716 → 0.5.0-preview.717
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 +12 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -3485,6 +3485,7 @@ declare module "libs/reach/util/common/src/reach-2/GlobalStyles" {
|
|
|
3485
3485
|
import { FC } from 'react';
|
|
3486
3486
|
export const GlobalApp2Styles: FC;
|
|
3487
3487
|
export const BorderStyles: import("styled-components").FlattenSimpleInterpolation;
|
|
3488
|
+
export const EditorScrollbarStyles: (hideWhenNotHovered?: boolean, showBackground?: boolean) => import("styled-components").FlattenSimpleInterpolation;
|
|
3488
3489
|
}
|
|
3489
3490
|
declare module "libs/reach/util/common/src/reach-2/usePageScrollDirectionForTogglingControls" {
|
|
3490
3491
|
export function usePageScrollDirectionForTogglingControls(disableOnLargeScreen?: boolean, maximumAllowedScreenWidth?: number, upThreshold?: number, downThreshold?: number): boolean;
|
|
@@ -5315,6 +5316,8 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5315
5316
|
export { ReactComponent as CancelIcon } from './assets/cancel.svg';
|
|
5316
5317
|
export { ReactComponent as EditIcon } from './assets/edit.svg';
|
|
5317
5318
|
export { ReactComponent as Loading } from './assets/loading.svg';
|
|
5319
|
+
export { ReactComponent as EmojiIcon } from './assets/emoji.svg';
|
|
5320
|
+
export { ReactComponent as EmojiActiveIcon } from './assets/emoji_active.svg';
|
|
5318
5321
|
}
|
|
5319
5322
|
declare module "libs/reach/ui/common/src/reach-2/icons/index" {
|
|
5320
5323
|
export * from "libs/reach/ui/common/src/reach-2/icons/Icons";
|
|
@@ -10505,6 +10508,15 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentFormattin
|
|
|
10505
10508
|
editor: Editor;
|
|
10506
10509
|
}>;
|
|
10507
10510
|
}
|
|
10511
|
+
declare module "libs/reach/feature/content/src/reach-2/comments/CommentEditorOverlay" {
|
|
10512
|
+
import { FC } from 'react';
|
|
10513
|
+
import 'emoji-mart/css/emoji-mart.css';
|
|
10514
|
+
export const CommentEditorOverlay: FC<{
|
|
10515
|
+
onCloseOverlay?: () => void;
|
|
10516
|
+
onEmojiSelect?: (emoji: string) => void;
|
|
10517
|
+
className?: string;
|
|
10518
|
+
}>;
|
|
10519
|
+
}
|
|
10508
10520
|
declare module "libs/reach/feature/content/src/reach-2/comments/CommentEditor" {
|
|
10509
10521
|
import { FC } from 'react';
|
|
10510
10522
|
import { Comment } from "libs/reach/util/common/src/index";
|