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