@livetiles/reach-plugin-types 0.5.0-preview.445 → 0.5.0-preview.446

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 +2 -1
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -2945,9 +2945,10 @@ declare module "libs/reach/util/common/src/PagingService" {
2945
2945
  containerHeight: number;
2946
2946
  }
2947
2947
  export const onPageScroll: Observable<ScrollHandlerInfo>;
2948
+ export const onPageScrollWithoutDebounce: Observable<ScrollHandlerInfo>;
2948
2949
  export function handlePageScroll(availableScrollSpace: number, containerWidth: number, containerHeight: number): void;
2949
2950
  export function setPageTitle(subscriptionName: string, title?: string): void;
2950
- export function usePageScrollListener(onScroll: (info: ScrollHandlerInfo) => void): void;
2951
+ export function usePageScrollListener(onScroll: (info: ScrollHandlerInfo) => void, doNotDebounce?: boolean): void;
2951
2952
  }
2952
2953
  declare module "libs/reach/util/common/src/analytics/useAnalyticsViewTrack" {
2953
2954
  import { BaseItem, ItemResourceTypes } from "libs/reach/util/common/src/content/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.445",
7
+ "version": "0.5.0-preview.446",
8
8
  "dependencies": {}
9
9
  }