@livetiles/reach-plugin-types 0.5.0-preview.540 → 0.5.0-preview.541

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +13 -9
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -5733,11 +5733,24 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/IconNavLink" {
5733
5733
  onClick?: (e: MouseEvent<HTMLAnchorElement>) => void;
5734
5734
  }>;
5735
5735
  }
5736
+ declare module "libs/reach/ui/common/src/reach-2/buttons/BackButton" {
5737
+ import { FC } from 'react';
5738
+ export const PageBackButton: FC<{
5739
+ navigateTo?: string;
5740
+ onBeforeClose?: () => void;
5741
+ className?: string;
5742
+ }>;
5743
+ export const BackButton: FC<{
5744
+ onClick?: () => void;
5745
+ className?: string;
5746
+ }>;
5747
+ }
5736
5748
  declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
5737
5749
  export * from "libs/reach/ui/common/src/reach-2/buttons/StandardButtons";
5738
5750
  export * from "libs/reach/ui/common/src/reach-2/buttons/ContentActionButton";
5739
5751
  export * from "libs/reach/ui/common/src/reach-2/buttons/IconActionButton";
5740
5752
  export * from "libs/reach/ui/common/src/reach-2/buttons/IconNavLink";
5753
+ export * from "libs/reach/ui/common/src/reach-2/buttons/BackButton";
5741
5754
  }
5742
5755
  declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
5743
5756
  import { FC, MouseEvent } from 'react';
@@ -10758,17 +10771,8 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/index" {
10758
10771
  export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/ShareButtonWithCallout";
10759
10772
  export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/ContextMenuButton";
10760
10773
  }
10761
- declare module "libs/reach/feature/content/src/reach-2/buttons/BackButton" {
10762
- import { FC } from 'react';
10763
- export const BackButton: FC<{
10764
- navigateTo?: string;
10765
- onBeforeClose?: () => void;
10766
- className?: string;
10767
- }>;
10768
- }
10769
10774
  declare module "libs/reach/feature/content/src/reach-2/buttons/index" {
10770
10775
  export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/index";
10771
- export * from "libs/reach/feature/content/src/reach-2/buttons/BackButton";
10772
10776
  }
10773
10777
  declare module "libs/reach/feature/content/src/reach-2/common/detail/header/HeaderMetadata" {
10774
10778
  import { FC } from 'react';
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.540",
7
+ "version": "0.5.0-preview.541",
8
8
  "dependencies": {}
9
9
  }