@livetiles/reach-plugin-types 0.5.0-preview.977 → 0.5.0-preview.978
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
|
@@ -11469,12 +11469,13 @@ declare module "libs/reach/feature/content/src/search/index" {
|
|
|
11469
11469
|
}
|
|
11470
11470
|
declare module "libs/reach/feature/content/src/reach-2/buttons/ButtonWithMenu" {
|
|
11471
11471
|
import { BasePopoverAlignType, BasePopoverSideType } from "libs/reach/ui/common/src/index";
|
|
11472
|
-
import { FC } from 'react';
|
|
11472
|
+
import { FC, ReactNode } from 'react';
|
|
11473
11473
|
export interface ButtonWithMenuProps {
|
|
11474
11474
|
align?: BasePopoverAlignType;
|
|
11475
11475
|
alignOffset?: number;
|
|
11476
11476
|
button: (onClick: () => void) => JSX.Element;
|
|
11477
11477
|
className?: string;
|
|
11478
|
+
children: ReactNode | ((dismissPopover: () => void) => ReactNode);
|
|
11478
11479
|
drawerHeight?: number;
|
|
11479
11480
|
side?: BasePopoverSideType;
|
|
11480
11481
|
sideOffset?: number;
|