@livetiles/reach-plugin-types 0.5.0-preview.802 → 0.5.0-preview.804

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 +7 -0
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -5476,6 +5476,7 @@ declare module "libs/reach/ui/common/src/reach-2/buttons/index" {
5476
5476
  export * from "libs/reach/ui/common/src/reach-2/buttons/IconicButtons";
5477
5477
  export { default as FloatingActionButton } from "libs/reach/ui/common/src/reach-2/buttons/FloatingActionButton";
5478
5478
  export { default as ProfileButton } from "libs/reach/ui/common/src/reach-2/buttons/ProfileButton";
5479
+ export { BaseIconicButton } from "libs/reach/ui/common/src/reach-2/buttons/BaseIconicButton";
5479
5480
  }
5480
5481
  declare module "libs/reach/ui/common/src/reach-2/surfaces/BaseDialog" {
5481
5482
  import { FC, MouseEvent } from 'react';
@@ -5577,6 +5578,10 @@ declare module "libs/reach/ui/common/src/reach-2/surfaces/BasePopover" {
5577
5578
  trigger?: JSX.Element;
5578
5579
  anchor?: JSX.Element;
5579
5580
  className?: string;
5581
+ align?: 'start' | 'center' | 'end';
5582
+ alignOffset?: number;
5583
+ side?: 'top' | 'left' | 'bottom' | 'right';
5584
+ sideOffset?: number;
5580
5585
  }
5581
5586
  export const BasePopover: FC<BasePopoverProps>;
5582
5587
  }
@@ -10970,6 +10975,7 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentLikeButto
10970
10975
  commentId: string;
10971
10976
  isLiked?: boolean;
10972
10977
  likeCount?: number;
10978
+ disabled?: boolean;
10973
10979
  }>;
10974
10980
  }
10975
10981
  declare module "libs/reach/feature/content/src/reach-2/comments/CommentMetadata" {
@@ -10978,6 +10984,7 @@ declare module "libs/reach/feature/content/src/reach-2/comments/CommentMetadata"
10978
10984
  export const CommentMetadata: FC<{
10979
10985
  comment: Comment;
10980
10986
  onReply?: () => void;
10987
+ readOnly?: boolean;
10981
10988
  }>;
10982
10989
  }
10983
10990
  declare module "libs/reach/feature/content/src/reach-2/comments/CommentContent" {
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.802",
7
+ "version": "0.5.0-preview.804",
8
8
  "dependencies": {}
9
9
  }