livevegas-ui-kit 1.0.130 → 1.0.131
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,3 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
1
|
import { TournamentData } from '../Tournament';
|
|
3
2
|
|
|
4
3
|
interface TournamentPointsProps {
|
|
@@ -7,5 +6,5 @@ interface TournamentPointsProps {
|
|
|
7
6
|
fromIcon?: boolean;
|
|
8
7
|
onClick?: () => void;
|
|
9
8
|
}
|
|
10
|
-
declare const TournamentAndPoints:
|
|
9
|
+
export declare const TournamentAndPoints: ({ points, tournamentData, fromIcon, onClick, }: TournamentPointsProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
10
|
export default TournamentAndPoints;
|
|
@@ -21,6 +21,7 @@ import { CardsRightInfo } from './CardsRightInfo';
|
|
|
21
21
|
import { Chip3D } from './Chip3D';
|
|
22
22
|
import { MoibleChipBoard } from './MoibleChipBoard';
|
|
23
23
|
import { Card } from './Card';
|
|
24
|
+
import { TournamentAndPoints } from './TournamentAndPoints';
|
|
24
25
|
import { default as i18n, initI18n } from '../services/i18n/config';
|
|
25
26
|
|
|
26
|
-
export { i18n, initI18n, MoibleChipBoard, BlackJackeWinPopup, BalanceAndBet, TopIcons, Button, Card, Chip, Chip3D, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying, ToastMessages, BlackJackAction, BlackjeckInsurance, Wager, BonusModalContent, CardsRightInfo, };
|
|
27
|
+
export { i18n, initI18n, MoibleChipBoard, BlackJackeWinPopup, BalanceAndBet, TopIcons, Button, Card, Chip, Chip3D, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying, ToastMessages, BlackJackAction, BlackjeckInsurance, Wager, BonusModalContent, CardsRightInfo, TournamentAndPoints };
|