@livetiles/reach-plugin-types 0.5.0-preview.694 → 0.5.0-preview.696
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
|
@@ -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';
|