@thead-vantage/react 2.3.0 → 2.4.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thead-vantage/react",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "description": "React components and utilities for TheAd Vantage ad platform integration",
5
5
  "main": "./src/index.ts",
6
6
  "module": "./src/index.ts",
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { useEffect, useState } from 'react';
4
4
  import Image from 'next/image';
5
- import { fetchAdBanner, trackImpression, trackClick, type Ad } from '@/lib/ads';
5
+ import { fetchAdBanner, trackImpression, trackClick, type Ad } from '../lib/ads';
6
6
 
7
7
  export interface AdBannerProps {
8
8
  platformId: string;
@@ -2,7 +2,7 @@
2
2
 
3
3
  import { useEffect, useState } from 'react';
4
4
  import Image from 'next/image';
5
- import { fetchAds, trackImpression, trackClick, type AdData } from '@/lib/ads';
5
+ import { fetchAds, trackImpression, trackClick, type AdData } from '../lib/ads';
6
6
 
7
7
  interface AdDisplayProps {
8
8
  position?: string;