@livetiles/reach-plugin-types 0.5.0-preview.256 → 0.5.0-preview.259

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 +4 -2
  2. package/package.json +1 -1
package/lib/index.d.ts CHANGED
@@ -2913,12 +2913,14 @@ declare module "libs/reach/util/common/src/analytics/AnalyticsContextProvider" {
2913
2913
  setModule: Dispatch<SetStateAction<Module>>;
2914
2914
  }
2915
2915
  interface ActivityAnalytics {
2916
- trackActivity: (scrollContainer: HTMLElement) => void;
2916
+ trackActivity: (scrollContainer?: HTMLElement) => void;
2917
2917
  }
2918
2918
  export type ReachAnalytics = Analytics & AnalyticsModule & SearchAnalytics & ActivityAnalytics;
2919
2919
  export const AnalyticsContext: import("react").Context<ReachAnalytics>;
2920
2920
  export function useAnalyticsContext(): ReachAnalytics;
2921
- export const AnalyticsLibraryContextProvider: FC;
2921
+ export const AnalyticsLibraryContextProvider: FC<{
2922
+ appName?: string;
2923
+ }>;
2922
2924
  export const AnalyticsContextProvider: FC;
2923
2925
  }
2924
2926
  declare module "libs/reach/util/common/src/analytics/useAnalyticsViewTrack" {
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.256",
7
+ "version": "0.5.0-preview.259",
8
8
  "dependencies": {}
9
9
  }