@livetiles/reach-plugin-types 0.5.0-preview.415 → 0.5.0-preview.416
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 +17 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5594,9 +5594,26 @@ declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|
|
|
5594
5594
|
declare module "libs/reach/ui/common/src/reach-2/icons/index" {
|
|
5595
5595
|
export * from "libs/reach/ui/common/src/reach-2/icons/Icons";
|
|
5596
5596
|
}
|
|
5597
|
+
declare module "libs/reach/ui/common/src/reach-2/ModalBottomSheet" {
|
|
5598
|
+
import { FC } from 'react';
|
|
5599
|
+
export const ModalBottomSheet: FC<{
|
|
5600
|
+
isOpen?: boolean;
|
|
5601
|
+
onDidDismiss: () => void;
|
|
5602
|
+
}>;
|
|
5603
|
+
}
|
|
5604
|
+
declare module "libs/reach/ui/common/src/reach-2/Modal" {
|
|
5605
|
+
import { IDialogProps } from 'office-ui-fabric-react';
|
|
5606
|
+
import { FC } from 'react';
|
|
5607
|
+
interface ModalProps extends IDialogProps {
|
|
5608
|
+
onDidDismiss: () => void;
|
|
5609
|
+
}
|
|
5610
|
+
export const Modal: FC<ModalProps>;
|
|
5611
|
+
}
|
|
5597
5612
|
declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
5598
5613
|
export * from "libs/reach/ui/common/src/reach-2/Icon";
|
|
5599
5614
|
export * from "libs/reach/ui/common/src/reach-2/icons/index";
|
|
5615
|
+
export * from "libs/reach/ui/common/src/reach-2/ModalBottomSheet";
|
|
5616
|
+
export * from "libs/reach/ui/common/src/reach-2/Modal";
|
|
5600
5617
|
}
|
|
5601
5618
|
declare module "libs/reach/ui/common/src/index" {
|
|
5602
5619
|
export * from "libs/reach/ui/common/src/Dialog";
|