@livetiles/reach-plugin-types 0.5.0-preview.528 → 0.5.0-preview.529
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
|
@@ -5760,8 +5760,13 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/Dialog" {
|
|
|
5760
5760
|
}
|
|
5761
5761
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/MobileInlineModal" {
|
|
5762
5762
|
import { FC } from 'react';
|
|
5763
|
+
import { AnimationBuilder } from '@ionic/core';
|
|
5763
5764
|
import { BaseDialogProps } from "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog";
|
|
5764
|
-
export
|
|
5765
|
+
export type MobileInlineModalProps = BaseDialogProps & {
|
|
5766
|
+
enterAnimation?: AnimationBuilder;
|
|
5767
|
+
leaveAnimation?: AnimationBuilder;
|
|
5768
|
+
};
|
|
5769
|
+
export const MobileInlineModal: FC<MobileInlineModalProps>;
|
|
5765
5770
|
}
|
|
5766
5771
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/Panel" {
|
|
5767
5772
|
import { FC } from 'react';
|