@livetiles/reach-plugin-types 0.5.0-preview.734 → 0.5.0-preview.735
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 +12 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5519,6 +5519,17 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/ConfirmationDialog" {
|
|
|
5519
5519
|
description?: string;
|
|
5520
5520
|
}>;
|
|
5521
5521
|
}
|
|
5522
|
+
declare module "libs/reach/ui/common/src/reach-2/surfaces/BasePopover" {
|
|
5523
|
+
import { FC } from 'react';
|
|
5524
|
+
export interface BasePopoverProps {
|
|
5525
|
+
isOpen?: boolean;
|
|
5526
|
+
onOpenChange?: (open: boolean) => void;
|
|
5527
|
+
trigger?: JSX.Element;
|
|
5528
|
+
anchor?: JSX.Element;
|
|
5529
|
+
className?: string;
|
|
5530
|
+
}
|
|
5531
|
+
export const BasePopover: FC<BasePopoverProps>;
|
|
5532
|
+
}
|
|
5522
5533
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/index" {
|
|
5523
5534
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/Dialog";
|
|
5524
5535
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/Panel";
|
|
@@ -5527,6 +5538,7 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/index" {
|
|
|
5527
5538
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/Modal";
|
|
5528
5539
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/MobileInlineModal";
|
|
5529
5540
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/ConfirmationDialog";
|
|
5541
|
+
export * from "libs/reach/ui/common/src/reach-2/surfaces/BasePopover";
|
|
5530
5542
|
}
|
|
5531
5543
|
declare module "libs/reach/ui/common/src/reach-2/progress/Skeleton" {
|
|
5532
5544
|
import { FC } from 'react';
|