@livetiles/reach-plugin-types 0.5.0-preview.676 → 0.5.0-preview.679
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 +37 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5515,6 +5515,35 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/index" {
|
|
|
5515
5515
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/MobileInlineModal";
|
|
5516
5516
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/ConfirmationDialog";
|
|
5517
5517
|
}
|
|
5518
|
+
declare module "libs/reach/ui/common/src/reach-2/progress/Skeleton" {
|
|
5519
|
+
import { FC } from 'react';
|
|
5520
|
+
export const Skeleton: FC<{
|
|
5521
|
+
className?: string;
|
|
5522
|
+
}>;
|
|
5523
|
+
export const SkeletonInlineGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5524
|
+
export const SkeletonBlockGroup: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5525
|
+
marginTop?: number;
|
|
5526
|
+
}, never>;
|
|
5527
|
+
export const SkeletonAvatar: FC<{
|
|
5528
|
+
size?: number;
|
|
5529
|
+
}>;
|
|
5530
|
+
export const SkeletonLine: FC<{
|
|
5531
|
+
width?: number | string;
|
|
5532
|
+
height?: number;
|
|
5533
|
+
}>;
|
|
5534
|
+
export const Line: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
5535
|
+
width?: string;
|
|
5536
|
+
height?: number;
|
|
5537
|
+
}, never>;
|
|
5538
|
+
}
|
|
5539
|
+
declare module "libs/reach/ui/common/src/reach-2/progress/PageScrollIndicator" {
|
|
5540
|
+
import { FC } from 'react';
|
|
5541
|
+
export const PageScrollIndicator: FC;
|
|
5542
|
+
}
|
|
5543
|
+
declare module "libs/reach/ui/common/src/reach-2/progress/index" {
|
|
5544
|
+
export * from "libs/reach/ui/common/src/reach-2/progress/Skeleton";
|
|
5545
|
+
export * from "libs/reach/ui/common/src/reach-2/progress/PageScrollIndicator";
|
|
5546
|
+
}
|
|
5518
5547
|
declare module "libs/reach/ui/common/src/reach-2/DateTimeDisplay" {
|
|
5519
5548
|
import { FC } from 'react';
|
|
5520
5549
|
interface Props {
|
|
@@ -5532,6 +5561,7 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
|
5532
5561
|
export * from "libs/reach/ui/common/src/reach-2/utils";
|
|
5533
5562
|
export * from "libs/reach/ui/common/src/reach-2/buttons/index";
|
|
5534
5563
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/index";
|
|
5564
|
+
export * from "libs/reach/ui/common/src/reach-2/progress/index";
|
|
5535
5565
|
export * from "libs/reach/ui/common/src/reach-2/DateTimeDisplay";
|
|
5536
5566
|
}
|
|
5537
5567
|
declare module "libs/reach/ui/common/src/index" {
|
|
@@ -10758,6 +10788,13 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentListItem"
|
|
|
10758
10788
|
onEdit?: (isEditMode?: boolean) => void;
|
|
10759
10789
|
}>;
|
|
10760
10790
|
}
|
|
10791
|
+
declare module "libs/reach/feature/content/src/reach-2/comments/CommentSkeletonListItem" {
|
|
10792
|
+
import { FC } from 'react';
|
|
10793
|
+
export const CommentSkeletonListItem: FC;
|
|
10794
|
+
export const StyledSkeleton: import("styled-components").StyledComponent<FC<{
|
|
10795
|
+
className?: string;
|
|
10796
|
+
}>, import("styled-components").DefaultTheme, {}, never>;
|
|
10797
|
+
}
|
|
10761
10798
|
declare module "libs/reach/feature/content/src/reach-2/comments/CommentsList" {
|
|
10762
10799
|
import { FC } from 'react';
|
|
10763
10800
|
import { ConversationScope, ItemResourceTypes } from "libs/reach/util/common/src/index";
|