@ludo.ninja/components 1.6.7 → 1.6.9

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.
@@ -5,7 +5,7 @@ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cook
5
5
  import React, { useEffect } from 'react';
6
6
  import { DM_Sans, Poppins } from 'next/font/google';
7
7
  import { css } from 'styled-components';
8
- import { poppinsFontVarCss } from '@/fonts/vars';
8
+ import { poppinsFontVarCss } from '@ludo.ninja/components/src/fonts';
9
9
  // const poppinsFont = Poppins({
10
10
  // subsets: ['latin'],
11
11
  // style: ['normal'],
@@ -9,7 +9,7 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
9
9
  };
10
10
  import { useEffect } from 'react';
11
11
  import { useRouter } from 'next/router';
12
- import { useMediaStore } from '@/store/media';
12
+ import { useMediaStore } from '@ludo.ninja/components';
13
13
  var useMultiAudio = function () {
14
14
  var tracks = useMediaStore(function (state) { return state.audioTracks; });
15
15
  var setTracks = useMediaStore(function (state) { return state.setAudioTracks; });
@@ -1,6 +1,6 @@
1
1
  import React, { useEffect, useState } from 'react';
2
2
  import Skeleton from 'react-loading-skeleton';
3
- import { useMediaStore } from '@/store/media';
3
+ import { useMediaStore } from '@ludo.ninja/components/src/store';
4
4
  import StyledImg from '@/system/Cards/Styles/Image';
5
5
  import { getWindowDimensions } from '@/utils/screen';
6
6
  import PauseIcon from '@/public/video/pause.svg';