@livetiles/reach-plugin-types 0.5.0-preview.951 → 0.5.0-preview.952
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 +9 -6
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -6349,11 +6349,13 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/ConfirmationDialog" {
|
|
|
6349
6349
|
}
|
|
6350
6350
|
declare module "libs/reach/ui/common/src/reach-2/surfaces/BasePopover" {
|
|
6351
6351
|
import { FC } from 'react';
|
|
6352
|
+
import { PopoverContentProps } from '@radix-ui/react-popover';
|
|
6352
6353
|
export interface BasePopoverProps {
|
|
6353
6354
|
align?: 'start' | 'center' | 'end';
|
|
6354
6355
|
alignOffset?: number;
|
|
6355
6356
|
anchor?: JSX.Element;
|
|
6356
6357
|
className?: string;
|
|
6358
|
+
collisionPadding?: PopoverContentProps['collisionPadding'];
|
|
6357
6359
|
isOpen?: boolean;
|
|
6358
6360
|
onOpenChange?: (open: boolean) => void;
|
|
6359
6361
|
side?: 'top' | 'left' | 'bottom' | 'right';
|
|
@@ -11700,10 +11702,10 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ContextM
|
|
|
11700
11702
|
export const ContextMenuButton: FC<{
|
|
11701
11703
|
buttons: (dismiss: () => void) => JSX.Element;
|
|
11702
11704
|
className?: string;
|
|
11703
|
-
drawerHeight?: number;
|
|
11704
11705
|
disabled?: boolean;
|
|
11705
|
-
|
|
11706
|
+
drawerHeight?: number;
|
|
11706
11707
|
onDismiss?: () => void;
|
|
11708
|
+
size?: number;
|
|
11707
11709
|
}>;
|
|
11708
11710
|
export const ContextMenuOptionsStyles: import("styled-components").FlattenSimpleInterpolation;
|
|
11709
11711
|
}
|
|
@@ -11841,12 +11843,13 @@ declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ShareLin
|
|
|
11841
11843
|
}>;
|
|
11842
11844
|
}
|
|
11843
11845
|
declare module "libs/reach/feature/content/src/reach-2/buttons/feedback/ShareButton" {
|
|
11844
|
-
import {
|
|
11845
|
-
|
|
11846
|
+
import { SVGProps } from 'react';
|
|
11847
|
+
interface IShareButtonProps {
|
|
11848
|
+
className?: string;
|
|
11846
11849
|
onClick: () => void;
|
|
11847
11850
|
secondarySVG?: SVGProps<SVGElement>;
|
|
11848
|
-
|
|
11849
|
-
|
|
11851
|
+
}
|
|
11852
|
+
export const ShareButton: import("react").ForwardRefExoticComponent<IShareButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
|
|
11850
11853
|
}
|
|
11851
11854
|
declare module "libs/reach/feature/content/src/reach-2/common/detail/DetailViewContextMenu" {
|
|
11852
11855
|
import { FC } from 'react';
|