@livetiles/reach-plugin-types 0.5.0-preview.540 → 0.5.0-preview.542
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 +16 -9
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5619,6 +5619,7 @@ declare module "libs/reach/ui/common/src/reach-2/Icon" {
|
|
|
5619
5619
|
hoveredSVG?: SVGProps<SVGElement>;
|
|
5620
5620
|
label?: string | number;
|
|
5621
5621
|
labelDirection?: IconLabelDirection;
|
|
5622
|
+
reverseIcon?: boolean;
|
|
5622
5623
|
size?: number;
|
|
5623
5624
|
className?: string;
|
|
5624
5625
|
}
|
|
@@ -5696,6 +5697,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/BaseButton" {
|
|
|
5696
5697
|
className?: string;
|
|
5697
5698
|
}
|
|
5698
5699
|
export const BaseButton: import("react").ForwardRefExoticComponent<BaseButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
5700
|
+
export const BaseButtonStyle: import("styled-components").FlattenSimpleInterpolation;
|
|
5699
5701
|
}
|
|
5700
5702
|
declare module "libs/reach/ui/common/src/reach-2/buttons/StandardButtons" {
|
|
5701
5703
|
import { FC } from 'react';
|
|
@@ -5733,11 +5735,25 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/IconNavLink" {
|
|
|
5733
5735
|
onClick?: (e: MouseEvent<HTMLAnchorElement>) => void;
|
|
5734
5736
|
}>;
|
|
5735
5737
|
}
|
|
5738
|
+
declare module "libs/reach/ui/common/src/reach-2/buttons/BackButton" {
|
|
5739
|
+
import { FC } from 'react';
|
|
5740
|
+
export const PageBackButton: FC<{
|
|
5741
|
+
navigateTo?: string;
|
|
5742
|
+
onBeforeClose?: () => void;
|
|
5743
|
+
className?: string;
|
|
5744
|
+
}>;
|
|
5745
|
+
export const BackButton: FC<{
|
|
5746
|
+
onClick?: () => void;
|
|
5747
|
+
className?: string;
|
|
5748
|
+
}>;
|
|
5749
|
+
}
|
|
5736
5750
|
declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
|
|
5737
5751
|
export * from "libs/reach/ui/common/src/reach-2/buttons/StandardButtons";
|
|
5738
5752
|
export * from "libs/reach/ui/common/src/reach-2/buttons/ContentActionButton";
|
|
5739
5753
|
export * from "libs/reach/ui/common/src/reach-2/buttons/IconActionButton";
|
|
5740
5754
|
export * from "libs/reach/ui/common/src/reach-2/buttons/IconNavLink";
|
|
5755
|
+
export * from "libs/reach/ui/common/src/reach-2/buttons/BackButton";
|
|
5756
|
+
export { BaseButtonStyle } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
|
|
5741
5757
|
}
|
|
5742
5758
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
|
|
5743
5759
|
import { FC, MouseEvent } from 'react';
|
|
@@ -10758,17 +10774,8 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/index" {
|
|
|
10758
10774
|
export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/ShareButtonWithCallout";
|
|
10759
10775
|
export * from "libs/reach/feature/content/src/reach-2/buttons/feedback/ContextMenuButton";
|
|
10760
10776
|
}
|
|
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
10777
|
declare module "libs/reach/feature/content/src/reach-2/buttons/index" {
|
|
10770
10778
|
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
10779
|
}
|
|
10773
10780
|
declare module "libs/reach/feature/content/src/reach-2/common/detail/header/HeaderMetadata" {
|
|
10774
10781
|
import { FC } from 'react';
|