@livetiles/reach-plugin-types 0.5.0-preview.816 → 0.5.0-preview.817
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 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5531,13 +5531,14 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/Dialog" {
|
|
|
5531
5531
|
export const Dialog: FC<DialogProps>;
|
|
5532
5532
|
}
|
|
5533
5533
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/MobileInlineModal" {
|
|
5534
|
-
import { FC } from 'react';
|
|
5534
|
+
import { FC, SVGProps } from 'react';
|
|
5535
5535
|
import { AnimationBuilder } from '@ionic/core';
|
|
5536
5536
|
import { BaseDialogProps } from "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog";
|
|
5537
5537
|
export type MobileInlineModalProps = BaseDialogProps & {
|
|
5538
5538
|
enterAnimation?: AnimationBuilder;
|
|
5539
5539
|
leaveAnimation?: AnimationBuilder;
|
|
5540
5540
|
hideHeader?: boolean;
|
|
5541
|
+
customActionButton?: SVGProps<SVGElement>;
|
|
5541
5542
|
};
|
|
5542
5543
|
export const MobileInlineModal: FC<MobileInlineModalProps>;
|
|
5543
5544
|
}
|