@livetiles/reach-plugin-types 0.5.0-preview.508 → 0.5.0-preview.509
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 +6 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5725,7 +5725,7 @@ declare module "libs/reach/ui/common/src/reach-2/BaseDialog" {
|
|
|
5725
5725
|
export interface BaseDialogProps {
|
|
5726
5726
|
triggerButton: HTMLButtonElement | JSX.Element;
|
|
5727
5727
|
isOpen?: boolean;
|
|
5728
|
-
title?: string
|
|
5728
|
+
title?: string;
|
|
5729
5729
|
type?: DialogType;
|
|
5730
5730
|
isBlocking?: boolean;
|
|
5731
5731
|
onDismiss?: (event?: MouseEvent<HTMLButtonElement>) => void;
|
|
@@ -5765,6 +5765,11 @@ declare module "libs/reach/ui/common/src/reach-2/utils" {
|
|
|
5765
5765
|
breakpoints: number[];
|
|
5766
5766
|
};
|
|
5767
5767
|
}
|
|
5768
|
+
declare module "libs/reach/ui/common/src/reach-2/MobileInlineModal" {
|
|
5769
|
+
import { FC } from 'react';
|
|
5770
|
+
import { BaseDialogProps } from "libs/reach/ui/common/src/reach-2/BaseDialog";
|
|
5771
|
+
export const MobileInlineModal: FC<BaseDialogProps>;
|
|
5772
|
+
}
|
|
5768
5773
|
declare module "libs/reach/ui/common/src/reach-2/Panel" {
|
|
5769
5774
|
import { FC } from 'react';
|
|
5770
5775
|
import { BaseDialogProps } from "libs/reach/ui/common/src/reach-2/BaseDialog";
|