@livetiles/reach-plugin-types 0.5.0-preview.514 → 0.5.0-preview.516
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 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -5616,6 +5616,7 @@ declare module "libs/reach/ui/common/src/ColorEditor" {
|
|
|
5616
5616
|
}
|
|
5617
5617
|
declare module "libs/reach/ui/common/src/reach-2/Icon" {
|
|
5618
5618
|
import { FC, MouseEvent, SVGProps } from 'react';
|
|
5619
|
+
import { IButton } from 'office-ui-fabric-react';
|
|
5619
5620
|
export enum IconLabelDirection {
|
|
5620
5621
|
Row = "row",
|
|
5621
5622
|
Column = "column"
|
|
@@ -5633,10 +5634,12 @@ declare module "libs/reach/ui/common/src/reach-2/Icon" {
|
|
|
5633
5634
|
to: string;
|
|
5634
5635
|
onClick?: (e: MouseEvent<HTMLAnchorElement>) => void;
|
|
5635
5636
|
}>;
|
|
5636
|
-
export const IconActionButton:
|
|
5637
|
+
export const IconActionButton: import("react").ForwardRefExoticComponent<IconProps & {
|
|
5637
5638
|
onClick: (event: MouseEvent<any>) => void;
|
|
5638
5639
|
disabled?: boolean;
|
|
5639
|
-
}
|
|
5640
|
+
} & {
|
|
5641
|
+
children?: import("react").ReactNode;
|
|
5642
|
+
} & import("react").RefAttributes<IButton>>;
|
|
5640
5643
|
export const Icon: FC<IconProps>;
|
|
5641
5644
|
}
|
|
5642
5645
|
declare module "libs/reach/ui/common/src/reach-2/icons/Icons" {
|