@livetiles/reach-plugin-types 0.5.0-preview.266 → 0.5.0-preview.268

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 +9 -8
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -2948,8 +2948,16 @@ declare module "libs/reach/util/common/src/analytics/AnalyticsContextProvider" {
2948
2948
  }>;
2949
2949
  export const AnalyticsContextProvider: FC;
2950
2950
  }
2951
+ declare module "libs/reach/util/common/src/PagingService" {
2952
+ import { Observable } from 'rxjs';
2953
+ export const onPageScroll: Observable<number>;
2954
+ export function handlePageScroll(availableScrollSpace: number): void;
2955
+ export function setPageTitle(subscriptionName: string, title?: string): void;
2956
+ export function usePageScrollListener(onScroll: (availableScrollSpace: number) => void): void;
2957
+ }
2951
2958
  declare module "libs/reach/util/common/src/analytics/useAnalyticsViewTrack" {
2952
- import { ItemResourceTypes } from "libs/reach/util/common/src/index";
2959
+ import { BaseItem, ItemResourceTypes } from "libs/reach/util/common/src/content/index";
2960
+ export function useAnalyticsViewTrackWithPagination(startTracking: boolean, items: BaseItem[], itemResourceType: ItemResourceTypes): void;
2953
2961
  export function useAnalyticsViewTrack(startTracking: boolean, itemResourceType?: ItemResourceTypes, thresholdPercentageOverride?: number): void;
2954
2962
  }
2955
2963
  declare module "libs/reach/util/common/src/analytics/useAnalyticsActivityTrack" {
@@ -3689,13 +3697,6 @@ declare module "libs/reach/util/common/src/MainContentPanelContext" {
3689
3697
  }
3690
3698
  export const MainContentPanelContext: import("react").Context<MainPanelContextType>;
3691
3699
  }
3692
- declare module "libs/reach/util/common/src/PagingService" {
3693
- import { Observable } from 'rxjs';
3694
- export const onPageScroll: Observable<number>;
3695
- export function handlePageScroll(availableScrollSpace: number): void;
3696
- export function setPageTitle(subscriptionName: string, title?: string): void;
3697
- export function usePageScrollListener(onScroll: (availableScrollSpace: number) => void): void;
3698
- }
3699
3700
  declare module "libs/reach/util/common/src/keyword-utils" {
3700
3701
  import { Keyword } from "libs/reach/util/common/src/content/KeywordGroup";
3701
3702
  import { SchedulableItem } from "libs/reach/util/common/src/content/NewsItem";
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.266",
7
+ "version": "0.5.0-preview.268",
8
8
  "dependencies": {}
9
9
  }