@devix-technologies/react-gjirafa-vp-player 1.0.29 → 1.0.30

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.
@@ -1,4 +1,4 @@
1
- import { VPPlayerConfig } from '../../../../../../../src/interfaces';
1
+ import { VPPlayerConfig } from '../../../../../../src/interfaces';
2
2
  /**
3
3
  * Default configuration for the VP Player.
4
4
  *
@@ -1,4 +1,4 @@
1
- import { VPPlayerConfig } from '../../../../../../../src/interfaces/config';
1
+ import { VPPlayerConfig } from '../../../../../../src/interfaces/config';
2
2
  /**
3
3
  * Base configuration for VP Player with common settings.
4
4
  */
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- import { VPPlayerProps } from '../../../../../../../src/interfaces';
2
+ import { VPPlayerProps } from '../../../../../../src/interfaces';
3
3
  /**
4
4
  * Interface defining the parameters for initializing the VPPlayer.
5
5
  *
@@ -1,4 +1,4 @@
1
- import { VPPlayerProps } from '../../../../../../../src/interfaces';
1
+ import { VPPlayerProps } from '../../../../../../src/interfaces';
2
2
  /**
3
3
  * Video Player Component for rendering a video player with overlay and responsive behavior.
4
4
  * Handles initialization of the player and displays loading/error states.
@@ -1,6 +1,6 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { VPPlayer } from '../../../../../../../../../src/components/VPPlayer';
3
- import { VPPlayerInstance } from '../../../../../../../../../src/interfaces';
2
+ import { VPPlayer } from '../../../../../../../../src/components/VPPlayer';
3
+ import { VPPlayerInstance } from '../../../../../../../../src/interfaces';
4
4
  declare global {
5
5
  interface Window {
6
6
  vpPlayer?: (playerId: string) => VPPlayerInstance | undefined;
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { VPPlayer } from '../../../../../../../../../src/components/VPPlayer';
2
+ import { VPPlayer } from '../../../../../../../../src/components/VPPlayer';
3
3
  declare const meta: Meta<typeof VPPlayer>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof VPPlayer>;
@@ -1,6 +1,6 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { VPPlayer } from '../../../../../../../../../src/components/VPPlayer';
3
- import { VPPlayerInstance } from '../../../../../../../../../src/interfaces';
2
+ import { VPPlayer } from '../../../../../../../../src/components/VPPlayer';
3
+ import { VPPlayerInstance } from '../../../../../../../../src/interfaces';
4
4
  declare global {
5
5
  interface Window {
6
6
  vpPlayer?: (playerId: string) => VPPlayerInstance | undefined;
@@ -1,5 +1,5 @@
1
- import { VPPlayerInstance } from '../../../../../../../src/interfaces';
2
- import { PlayerEventCallbacks, CurrentVideoData } from '../../../../../../../src/types';
1
+ import { VPPlayerInstance } from '../../../../../../src/interfaces';
2
+ import { PlayerEventCallbacks, CurrentVideoData } from '../../../../../../src/types';
3
3
  interface UseVPPlayerEventsParams {
4
4
  playerId: string;
5
5
  playerInstanceRef: React.RefObject<VPPlayerInstance | null>;
@@ -1,4 +1,4 @@
1
- import { VPPlayerInstance, VPPlayerProps } from '../../../../../../../src/interfaces';
1
+ import { VPPlayerInstance, VPPlayerProps } from '../../../../../../src/interfaces';
2
2
  declare global {
3
3
  interface Window {
4
4
  vpPlayer?: (playerId: string) => VPPlayerInstance | undefined;
@@ -1,4 +1,4 @@
1
- import { VideoDataResult } from '../../../../../../../src/types';
1
+ import { VideoDataResult } from '../../../../../../src/types';
2
2
  /**
3
3
  * Custom hook for fetching video data, including playback URLs and playlists.
4
4
  * Supports retry logic, timeout, error handling, and in-memory caching.
@@ -1,5 +1,5 @@
1
1
  import { VPPlayerConfig } from './config';
2
- import { CurrentVideoData, PlaylistItem, PlayerEventCallbacks, PlayerTrackingMetadata } from '../../../../../../../src/types';
2
+ import { CurrentVideoData, PlaylistItem, PlayerEventCallbacks, PlayerTrackingMetadata } from '../../../../../../src/types';
3
3
  /**
4
4
  * Interface defining the parameters for configuring the VP Player instance.
5
5
  *