livevegas-ui-kit 1.0.54 → 1.0.56
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/dist/components/CardsRightInfo/index.d.ts +10 -0
- package/dist/components/CardsRightInfo/index.stories.d.ts +7 -0
- package/dist/components/CardsRightInfo/styled.d.ts +1 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/index.d.ts +2 -19
- package/dist/livevegas-ui-kit.es.js +775 -657
- package/dist/livevegas-ui-kit.umd.js +245 -164
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ICard } from '../Card';
|
|
2
|
+
|
|
3
|
+
export interface ICardsRightInfo {
|
|
4
|
+
dealerCards: ICard[];
|
|
5
|
+
playerCards: ICard[];
|
|
6
|
+
playerText: string;
|
|
7
|
+
dealerPoints?: string | number;
|
|
8
|
+
points?: string | number;
|
|
9
|
+
}
|
|
10
|
+
export declare const CardsRightInfo: ({ dealerCards, playerCards, playerText, dealerPoints, points, }: ICardsRightInfo) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const Wrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -17,5 +17,6 @@ import { BlackJackAction } from './BlackJackAction';
|
|
|
17
17
|
import { Wager } from './WagerAndFreeSpins';
|
|
18
18
|
import { BonusModalContent } from './BonusModal';
|
|
19
19
|
import { BlackjeckInsurance } from './BlackJeckInsurance';
|
|
20
|
+
import { CardsRightInfo } from './CardsRightInfo';
|
|
20
21
|
|
|
21
|
-
export { BlackJackeWinPopup, BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying, ToastMessages, BlackJackAction, BlackjeckInsurance, Wager, BonusModalContent, };
|
|
22
|
+
export { BlackJackeWinPopup, BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying, ToastMessages, BlackJackAction, BlackjeckInsurance, Wager, BonusModalContent, CardsRightInfo, };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,20 +1,3 @@
|
|
|
1
|
-
import { BalanceAndBet } from './components
|
|
2
|
-
import { Button } from './components/Button';
|
|
3
|
-
import { Chip } from './components/Chip';
|
|
4
|
-
import { MobileMenu } from './components/MobileMenu';
|
|
5
|
-
import { PopupWrapper } from './components/Popup';
|
|
6
|
-
import { ToLobby } from './components/ToLobby';
|
|
7
|
-
import { TopIcons } from './components/TopIcons';
|
|
8
|
-
import { TournamentNotification } from './components/TournamentNotification';
|
|
9
|
-
import { ChipBoard } from './components/ChipBoard';
|
|
10
|
-
import { MobileBottomInfo } from './components/MobileBottomInfo';
|
|
11
|
-
import { Timer } from './components/Timer';
|
|
12
|
-
import { Reconnect } from './components/Reconnect';
|
|
13
|
-
import { NotPlaying } from './components/NotPlaying';
|
|
14
|
-
import { BlackJackeWinPopup } from './components/BlackJackeWinPopup';
|
|
15
|
-
import { ToastMessages } from './components/ToastMessages';
|
|
16
|
-
import { BlackJackAction } from './components/BlackJackAction';
|
|
17
|
-
import { BlackjeckInsurance } from './components/BlackJeckInsurance';
|
|
18
|
-
import { Wager, BonusModalContent } from './components';
|
|
1
|
+
import { BlackJackeWinPopup, BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying, ToastMessages, BlackJackAction, BlackjeckInsurance, Wager, CardsRightInfo, BonusModalContent } from './components';
|
|
19
2
|
|
|
20
|
-
export { BlackJackeWinPopup, BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying, ToastMessages, BlackJackAction, BlackjeckInsurance, Wager, BonusModalContent };
|
|
3
|
+
export { BlackJackeWinPopup, BalanceAndBet, TopIcons, Button, Chip, MobileMenu, PopupWrapper, ToLobby, TournamentNotification, ChipBoard, Timer, MobileBottomInfo, Reconnect, NotPlaying, ToastMessages, BlackJackAction, BlackjeckInsurance, Wager, CardsRightInfo, BonusModalContent, };
|