@livetiles/reach-plugin-types 0.5.0-preview.52 → 0.5.0-preview.53
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 +2 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5170,7 +5170,7 @@ declare module "libs/reach/ui/common/src/index" {
|
|
|
5170
5170
|
export * from "libs/reach/ui/common/src/ColorEditor";
|
|
5171
5171
|
}
|
|
5172
5172
|
declare module "apps/reach-app/src/app/chrome/CloseButton" {
|
|
5173
|
-
import { FC } from 'react';
|
|
5173
|
+
import { FC, DependencyList } from 'react';
|
|
5174
5174
|
export interface Props {
|
|
5175
5175
|
navigateTo: string;
|
|
5176
5176
|
onClose?: () => void;
|
|
@@ -5179,7 +5179,7 @@ declare module "apps/reach-app/src/app/chrome/CloseButton" {
|
|
|
5179
5179
|
className?: string;
|
|
5180
5180
|
}
|
|
5181
5181
|
export const CloseButton: FC<Props>;
|
|
5182
|
-
export function useEscapeOnClose(onClose: () => void): void;
|
|
5182
|
+
export function useEscapeOnClose(onClose: () => void, deps?: DependencyList): void;
|
|
5183
5183
|
}
|
|
5184
5184
|
declare module "apps/reach-app/src/app/common/LogoStyles" {
|
|
5185
5185
|
export const LogoHostStyle: (size?: {
|