@livetiles/reach-plugin-types 0.5.0-preview.54 → 0.5.0-preview.57

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 +13 -0
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -3444,6 +3444,15 @@ declare module "libs/reach/util/common/src/ImageDetails" {
3444
3444
  width?: number;
3445
3445
  height?: number;
3446
3446
  }
3447
+ export interface ImageWithAlignment extends ImageDetails {
3448
+ alignment?: ImageAlignment;
3449
+ }
3450
+ export enum ImageAlignment {
3451
+ Default = "default",
3452
+ Left = "left",
3453
+ Right = "right",
3454
+ Center = "center"
3455
+ }
3447
3456
  }
3448
3457
  declare module "libs/reach/util/common/src/MainContentPanelContext" {
3449
3458
  export interface MainPanelContextType {
@@ -4607,6 +4616,9 @@ declare module "libs/reach/ui/common/src/common/grid/Grid" {
4607
4616
  className?: string;
4608
4617
  }>;
4609
4618
  }
4619
+ declare module "libs/reach/ui/common/src/common/hooks/useIsMounted" {
4620
+ export const useIsMounted: () => () => boolean;
4621
+ }
4610
4622
  declare module "libs/reach/ui/common/src/common/hooks/usePagination" {
4611
4623
  import { PaginatedList } from "libs/reach/util/common/src/index";
4612
4624
  import { DependencyList, SetStateAction } from 'react';
@@ -5087,6 +5099,7 @@ declare module "libs/reach/ui/common/src/common/index" {
5087
5099
  export * from "libs/reach/ui/common/src/common/grid/Grid";
5088
5100
  export * from "libs/reach/ui/common/src/common/hooks/usePagination";
5089
5101
  export * from "libs/reach/ui/common/src/common/hooks/useUserPropertyDefinitionsHandler";
5102
+ export * from "libs/reach/ui/common/src/common/hooks/useIsMounted";
5090
5103
  export * from "libs/reach/ui/common/src/common/icon-with-callout/IconWithCallout";
5091
5104
  export * from "libs/reach/ui/common/src/common/inlineObjectsClassNames";
5092
5105
  export * from "libs/reach/ui/common/src/common/isNullOrWhitespaceUtil";
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.54",
7
+ "version": "0.5.0-preview.57",
8
8
  "dependencies": {}
9
9
  }