@next/third-parties 16.3.0-preview.9 → 16.3.0
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.
|
@@ -6,4 +6,4 @@ export type ScriptEmbed = {
|
|
|
6
6
|
children?: React.ReactElement | React.ReactElement[];
|
|
7
7
|
dataNtpc?: string;
|
|
8
8
|
};
|
|
9
|
-
export default function ThirdPartyScriptEmbed({ html, height, width, children, dataNtpc, }: ScriptEmbed):
|
|
9
|
+
export default function ThirdPartyScriptEmbed({ html, height, width, children, dataNtpc, }: ScriptEmbed): React.JSX.Element;
|
package/dist/google/ga.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { GAParams } from '../types/google';
|
|
2
3
|
declare global {
|
|
3
4
|
interface Window {
|
|
4
5
|
dataLayer?: Object[];
|
|
5
6
|
}
|
|
6
7
|
}
|
|
7
|
-
export declare function GoogleAnalytics(props: GAParams):
|
|
8
|
+
export declare function GoogleAnalytics(props: GAParams): React.JSX.Element;
|
|
8
9
|
export declare function sendGAEvent(..._args: Object[]): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { GoogleMapsEmbed as GoogleMapsEmbedTypes } from '../types/google';
|
|
2
|
-
export default function GoogleMapsEmbed(props: GoogleMapsEmbedTypes): import("react
|
|
2
|
+
export default function GoogleMapsEmbed(props: GoogleMapsEmbedTypes): import("react").JSX.Element;
|
package/dist/google/gtm.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { GTMParams } from '../types/google';
|
|
2
|
-
export declare function GoogleTagManager(props: GTMParams):
|
|
3
|
+
export declare function GoogleTagManager(props: GTMParams): React.JSX.Element;
|
|
3
4
|
export declare const sendGTMEvent: (data: Object, dataLayerName?: string) => void;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
+
import React from 'react';
|
|
1
2
|
import type { YouTubeEmbed as YouTubeEmbedTypes } from '../types/google';
|
|
2
|
-
export default function YouTubeEmbed(props: YouTubeEmbedTypes):
|
|
3
|
+
export default function YouTubeEmbed(props: YouTubeEmbedTypes): React.JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next/third-parties",
|
|
3
|
-
"version": "16.3.0
|
|
3
|
+
"version": "16.3.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "vercel/next.js",
|
|
6
6
|
"directory": "packages/third-parties"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"third-party-capital": "1.0.20"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"next": "16.3.0
|
|
23
|
+
"next": "16.3.0",
|
|
24
24
|
"outdent": "0.8.0",
|
|
25
25
|
"prettier": "2.5.1",
|
|
26
26
|
"typescript": "6.0.2"
|