@livetiles/reach-plugin-types 0.5.0-preview.628 → 0.5.0-preview.629
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.
- package/lib/index.d.ts +3 -2
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2921,10 +2921,10 @@ declare module "libs/reach/util/common/src/analytics/analyticsUtils" {
|
|
|
2921
2921
|
export function sanitizeQueryParamsForDownloadLinks(url: string): string;
|
|
2922
2922
|
}
|
|
2923
2923
|
declare module "libs/reach/util/common/src/analytics/useLinkInteraction" {
|
|
2924
|
-
export function useLinkInteraction(): void;
|
|
2924
|
+
export function useLinkInteraction(element: HTMLElement): void;
|
|
2925
2925
|
}
|
|
2926
2926
|
declare module "libs/reach/util/common/src/analytics/useIframeInteraction" {
|
|
2927
|
-
export function useIframeInteraction(): void;
|
|
2927
|
+
export function useIframeInteraction(element: HTMLElement): void;
|
|
2928
2928
|
}
|
|
2929
2929
|
declare module "libs/reach/util/common/src/analytics/AnalyticsModuleContextProvider" {
|
|
2930
2930
|
import { FC } from 'react';
|
|
@@ -2967,6 +2967,7 @@ declare module "libs/reach/util/common/src/analytics/AnalyticsContextProvider" {
|
|
|
2967
2967
|
appName?: string;
|
|
2968
2968
|
}>;
|
|
2969
2969
|
export const AnalyticsContextProvider: FC;
|
|
2970
|
+
export const AdditionalAnalyticsTracking: FC;
|
|
2970
2971
|
}
|
|
2971
2972
|
declare module "libs/reach/util/common/src/useModalRouting" {
|
|
2972
2973
|
export interface ModalRouting {
|