@livetiles/reach-plugin-types 0.5.0-preview.803 → 0.5.0-preview.806
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 +5 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5476,6 +5476,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
|
|
|
5476
5476
|
export * from "libs/reach/ui/common/src/reach-2/buttons/IconicButtons";
|
|
5477
5477
|
export { default as FloatingActionButton } from "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton";
|
|
5478
5478
|
export { default as ProfileButton } from "libs/reach/ui/common/src/reach-2/buttons/ProfileButton";
|
|
5479
|
+
export { BaseIconicButton } from "libs/reach/ui/common/src/reach-2/buttons/BaseIconicButton";
|
|
5479
5480
|
}
|
|
5480
5481
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
|
|
5481
5482
|
import { FC, MouseEvent } from 'react';
|
|
@@ -5577,6 +5578,10 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/BasePopover" {
|
|
|
5577
5578
|
trigger?: JSX.Element;
|
|
5578
5579
|
anchor?: JSX.Element;
|
|
5579
5580
|
className?: string;
|
|
5581
|
+
align?: 'start' | 'center' | 'end';
|
|
5582
|
+
alignOffset?: number;
|
|
5583
|
+
side?: 'top' | 'left' | 'bottom' | 'right';
|
|
5584
|
+
sideOffset?: number;
|
|
5580
5585
|
}
|
|
5581
5586
|
export const BasePopover: FC<BasePopoverProps>;
|
|
5582
5587
|
}
|