@livetiles/reach-plugin-types 0.5.0-preview.470 → 0.5.0-preview.471
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 +4 -3
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5596,6 +5596,7 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5596
5596
|
export { ReactComponent as AddIcon } from './assets/add.svg';
|
|
5597
5597
|
export { ReactComponent as MenuIcon } from './assets/menu.svg';
|
|
5598
5598
|
export { ReactComponent as MessagingIcon } from './assets/messaging.svg';
|
|
5599
|
+
export { ReactComponent as BackIcon } from './assets/back.svg';
|
|
5599
5600
|
}
|
|
5600
5601
|
declare module "libs/reach/ui/common/src/reach-2/icons/index" {
|
|
5601
5602
|
export * from "libs/reach/ui/common/src/reach-2/icons/Icons";
|
|
@@ -10484,9 +10485,9 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/index" {
|
|
|
10484
10485
|
export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/ShareButtonWithCallout";
|
|
10485
10486
|
export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/ContextMenuButton";
|
|
10486
10487
|
}
|
|
10487
|
-
declare module "libs/reach/feature/content/src/reach-2/buttons/
|
|
10488
|
+
declare module "libs/reach/feature/content/src/reach-2/buttons/BackButton" {
|
|
10488
10489
|
import { FC } from 'react';
|
|
10489
|
-
export const
|
|
10490
|
+
export const BackButton: FC<{
|
|
10490
10491
|
navigateTo?: string;
|
|
10491
10492
|
onBeforeClose?: () => void;
|
|
10492
10493
|
className?: string;
|
|
@@ -10494,7 +10495,7 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/CloseButton" {
|
|
|
10494
10495
|
}
|
|
10495
10496
|
declare module "libs/reach/feature/content/src/reach-2/buttons/index" {
|
|
10496
10497
|
export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/index";
|
|
10497
|
-
export * from "libs/reach/feature/content/src/reach-2/buttons/
|
|
10498
|
+
export * from "libs/reach/feature/content/src/reach-2/buttons/BackButton";
|
|
10498
10499
|
}
|
|
10499
10500
|
declare module "libs/reach/feature/content/src/reach-2/common/detail/header/HeaderMetadata" {
|
|
10500
10501
|
import { FC } from 'react';
|