livevegas-ui-kit 1.0.31 → 1.0.32

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.
@@ -2,5 +2,4 @@ export interface INotPlaying {
2
2
  backToLobby: () => void;
3
3
  stayInTheGame: () => void;
4
4
  }
5
- declare const NotPlaying: ({ backToLobby, stayInTheGame }: INotPlaying) => import("react/jsx-runtime").JSX.Element;
6
- export default NotPlaying;
5
+ export declare const NotPlaying: ({ backToLobby, stayInTheGame }: INotPlaying) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { default as NotPlaying } from '.';
2
+ import { NotPlaying } from '.';
3
3
 
4
4
  declare const meta: Meta<typeof NotPlaying>;
5
5
  export default meta;
@@ -1,4 +1 @@
1
- import { default as React } from 'react';
2
-
3
- declare const Reconnect: React.FC;
4
- export default Reconnect;
1
+ export declare const Reconnect: () => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { default as Reconnect } from '.';
2
+ import { Reconnect } from '.';
3
3
 
4
4
  declare const meta: Meta<typeof Reconnect>;
5
5
  export default meta;
@@ -9,5 +9,7 @@ import { TournamentNotification } from './TournamentNotification';
9
9
  import { ChipBoard } from './ChipBoard';
10
10
  import { MobileBottomInfo } from './MobileBottomInfo';
11
11
  import { Timer } from './Timer';
12
+ import { Reconnect } from './Reconnect';
13
+ import { NotPlaying } from './NotPlaying';
12
14
 
13
- export { BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, };
15
+ export { BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying };
package/dist/index.d.ts CHANGED
@@ -9,5 +9,7 @@ import { TournamentNotification } from './components/TournamentNotification';
9
9
  import { ChipBoard } from './components/ChipBoard';
10
10
  import { MobileBottomInfo } from './components/MobileBottomInfo';
11
11
  import { Timer } from './components/Timer';
12
+ import { Reconnect } from './components/Reconnect';
13
+ import { NotPlaying } from './components/NotPlaying';
12
14
 
13
- export { BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, };
15
+ export { BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying };