@livetiles/reach-plugin-types 0.5.0-preview.796 → 0.5.0-preview.797

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.
Files changed (2) hide show
  1. package/lib/index.d.ts +11 -0
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -5456,6 +5456,16 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton" {
5456
5456
  const FloatingActionButton: FC<FloatingActionButtonProps>;
5457
5457
  export default FloatingActionButton;
5458
5458
  }
5459
+ declare module "libs/reach/ui/common/src/reach-2/buttons/ProfileButton" {
5460
+ import { FC } from 'react';
5461
+ const ProfileButton: FC<{
5462
+ showLabel?: boolean;
5463
+ labelDirection?: 'left' | 'right';
5464
+ coinSize?: number;
5465
+ className?: string;
5466
+ }>;
5467
+ export default ProfileButton;
5468
+ }
5459
5469
  declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
5460
5470
  export * from "libs/reach/ui/common/src/reach-2/buttons/StandardButtons";
5461
5471
  export * from "libs/reach/ui/common/src/reach-2/buttons/ContentActionButton";
@@ -5465,6 +5475,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
5465
5475
  export { BaseButtonStyle } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
5466
5476
  export * from "libs/reach/ui/common/src/reach-2/buttons/IconicButtons";
5467
5477
  export { default as FloatingActionButton } from "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton";
5478
+ export { default as ProfileButton } from "libs/reach/ui/common/src/reach-2/buttons/ProfileButton";
5468
5479
  }
5469
5480
  declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
5470
5481
  import { FC, MouseEvent } from 'react';
package/package.json CHANGED
@@ -4,6 +4,6 @@
4
4
  "main": "",
5
5
  "types": "./index.d.ts",
6
6
  "license": "ISC",
7
- "version": "0.5.0-preview.796",
7
+ "version": "0.5.0-preview.797",
8
8
  "dependencies": {}
9
9
  }