@livetiles/reach-plugin-types 0.5.0-preview.449 → 0.5.0-preview.451

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 +8 -0
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -5635,11 +5635,19 @@ declare module "libs/reach/ui/common/src/reach-2/Modal" {
5635
5635
  }
5636
5636
  export const Modal: FC<ModalProps>;
5637
5637
  }
5638
+ declare module "libs/reach/ui/common/src/reach-2/utils" {
5639
+ export function getNormalizedPercentageBasedOnDeviceHeight(heightToConvert: number, safeArea?: number, fullyExpandThreshold?: number): number;
5640
+ export function useNormalizedBreakpointValuesBasedOnDeviceHeight(heightToConvert: number, safeArea?: number, fullyExpandThreshold?: number): {
5641
+ initialBreakpoint: number;
5642
+ breakpoints: number[];
5643
+ };
5644
+ }
5638
5645
  declare module "libs/reach/ui/common/src/reach-2/index" {
5639
5646
  export * from "libs/reach/ui/common/src/reach-2/Icon";
5640
5647
  export * from "libs/reach/ui/common/src/reach-2/icons/index";
5641
5648
  export * from "libs/reach/ui/common/src/reach-2/ModalBottomSheet";
5642
5649
  export * from "libs/reach/ui/common/src/reach-2/Modal";
5650
+ export * from "libs/reach/ui/common/src/reach-2/utils";
5643
5651
  export * from "libs/reach/ui/common/src/reach-2/ModalBottomSheetWithStackedChildren";
5644
5652
  }
5645
5653
  declare module "libs/reach/ui/common/src/index" {
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.449",
7
+ "version": "0.5.0-preview.451",
8
8
  "dependencies": {}
9
9
  }