@livetiles/reach-plugin-types 0.5.0-preview.695 → 0.5.0-preview.697
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 +14 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5312,6 +5312,7 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5312
5312
|
export { ReactComponent as TextFormatOrderedList } from './assets/textFormatOrderedList.svg';
|
|
5313
5313
|
export { ReactComponent as CancelIcon } from './assets/cancel.svg';
|
|
5314
5314
|
export { ReactComponent as EditIcon } from './assets/edit.svg';
|
|
5315
|
+
export { ReactComponent as Loading } from './assets/loading.svg';
|
|
5315
5316
|
}
|
|
5316
5317
|
declare module "libs/reach/ui/common/src/reach-2/icons/index" {
|
|
5317
5318
|
export * from "libs/reach/ui/common/src/reach-2/icons/Icons";
|
|
@@ -5542,9 +5543,21 @@ declare module "libs/reach/ui/common/src/reach-2/progress/PageScrollIndicator" {
|
|
|
5542
5543
|
import { FC } from 'react';
|
|
5543
5544
|
export const PageScrollIndicator: FC;
|
|
5544
5545
|
}
|
|
5546
|
+
declare module "libs/reach/ui/common/src/reach-2/progress/SpinnerLoader" {
|
|
5547
|
+
import { FC } from 'react';
|
|
5548
|
+
export const SpinnerLoader: FC<{
|
|
5549
|
+
size?: number;
|
|
5550
|
+
className?: string;
|
|
5551
|
+
}>;
|
|
5552
|
+
export const PageSpinnerLoader: import("styled-components").StyledComponent<FC<{
|
|
5553
|
+
size?: number;
|
|
5554
|
+
className?: string;
|
|
5555
|
+
}>, import("styled-components").DefaultTheme, {}, never>;
|
|
5556
|
+
}
|
|
5545
5557
|
declare module "libs/reach/ui/common/src/reach-2/progress/index" {
|
|
5546
5558
|
export * from "libs/reach/ui/common/src/reach-2/progress/Skeleton";
|
|
5547
5559
|
export * from "libs/reach/ui/common/src/reach-2/progress/PageScrollIndicator";
|
|
5560
|
+
export * from "libs/reach/ui/common/src/reach-2/progress/SpinnerLoader";
|
|
5548
5561
|
}
|
|
5549
5562
|
declare module "libs/reach/ui/common/src/reach-2/DateTimeDisplay" {
|
|
5550
5563
|
import { FC } from 'react';
|
|
@@ -5602,6 +5615,7 @@ declare module "libs/reach/feature/content/src/comments/CommentContentUtils" {
|
|
|
5602
5615
|
}
|
|
5603
5616
|
export function transformContent(content: string): (Match | string)[];
|
|
5604
5617
|
export function constructUserMention(user: Account): string;
|
|
5618
|
+
export function useDeTransformedCommentContent(commentContent?: string): string;
|
|
5605
5619
|
}
|
|
5606
5620
|
declare module "libs/reach/feature/content/src/comments/ContentDisplay" {
|
|
5607
5621
|
import { FC } from 'react';
|