@livetiles/reach-plugin-types 0.5.0-preview.791 → 0.5.0-preview.792

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
@@ -5446,6 +5446,16 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/IconicButtons" {
5446
5446
  isSelected?: boolean;
5447
5447
  }>;
5448
5448
  }
5449
+ declare module "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton" {
5450
+ import { FC } from 'react';
5451
+ import { IconActionButtonProps } from "libs/reach/ui/common/src/reach-2/buttons/IconActionButton";
5452
+ interface FloatingActionButtonProps extends IconActionButtonProps {
5453
+ offsetRight?: number;
5454
+ offsetBottom?: number;
5455
+ }
5456
+ const FloatingActionButton: FC<FloatingActionButtonProps>;
5457
+ export default FloatingActionButton;
5458
+ }
5449
5459
  declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
5450
5460
  export * from "libs/reach/ui/common/src/reach-2/buttons/StandardButtons";
5451
5461
  export * from "libs/reach/ui/common/src/reach-2/buttons/ContentActionButton";
@@ -5454,6 +5464,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
5454
5464
  export * from "libs/reach/ui/common/src/reach-2/buttons/BackButton";
5455
5465
  export { BaseButtonStyle } from "libs/reach/ui/common/src/reach-2/buttons/BaseButton";
5456
5466
  export * from "libs/reach/ui/common/src/reach-2/buttons/IconicButtons";
5467
+ export { default as FloatingActionButton } from "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton";
5457
5468
  }
5458
5469
  declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
5459
5470
  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.791",
7
+ "version": "0.5.0-preview.792",
8
8
  "dependencies": {}
9
9
  }