livevegas-ui-kit 1.0.68 → 1.0.69
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/History/RoundHistory/styled.d.ts +0 -4
- package/dist/components/LimitInfo/helper.d.ts +13 -0
- package/dist/components/LimitInfo/index.d.ts +6 -1
- package/dist/components/LimitInfo/styled.d.ts +1 -0
- package/dist/components/MobileMenu/index.d.ts +3 -1
- package/dist/components/ToLobby/index.d.ts +3 -1
- package/dist/components/TopIcons/Elements.d.ts +3 -1
- package/dist/livevegas-ui-kit.es.js +1517 -1311
- package/dist/livevegas-ui-kit.umd.js +243 -146
- package/dist/styles/styled.d.ts +5 -0
- package/package.json +1 -1
|
@@ -8,10 +8,6 @@ interface ISeats {
|
|
|
8
8
|
}
|
|
9
9
|
export declare const Seats: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, ISeats>> & string;
|
|
10
10
|
export declare const BoxComponents: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
11
|
-
interface IHistoryCardWrapper {
|
|
12
|
-
color: string;
|
|
13
|
-
}
|
|
14
|
-
export declare const HistoryCardWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IHistoryCardWrapper>> & string;
|
|
15
11
|
interface IWinAmount {
|
|
16
12
|
$isWin: boolean;
|
|
17
13
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare const limitsItem: {
|
|
2
|
+
name: string;
|
|
3
|
+
limitInProps: boolean;
|
|
4
|
+
limits: string;
|
|
5
|
+
cards: {
|
|
6
|
+
scannerIndex: number;
|
|
7
|
+
}[];
|
|
8
|
+
}[];
|
|
9
|
+
export declare const limitsExample: {
|
|
10
|
+
Blackjeck: string;
|
|
11
|
+
"Perfect Pair": string;
|
|
12
|
+
"21+3": string;
|
|
13
|
+
};
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
export
|
|
1
|
+
export interface ILimitInfo {
|
|
2
|
+
Blackjeck: string;
|
|
3
|
+
"Perfect Pair": string;
|
|
4
|
+
"21+3": string;
|
|
5
|
+
}
|
|
6
|
+
export declare const LimitInfo: (props: ILimitInfo) => 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;
|
|
@@ -2,6 +2,7 @@ import { HubConnection } from '@microsoft/signalr';
|
|
|
2
2
|
import { IUrlParam } from '../../utils/helpers';
|
|
3
3
|
import { IMessage } from '../../api/types';
|
|
4
4
|
import { IHistoryData } from '../History/helpers';
|
|
5
|
+
import { ILimitInfo } from '../LimitInfo';
|
|
5
6
|
|
|
6
7
|
export interface IToLobby {
|
|
7
8
|
name: string;
|
|
@@ -25,5 +26,6 @@ export interface IToLobby {
|
|
|
25
26
|
balance: number;
|
|
26
27
|
getHistory: (active: number) => void;
|
|
27
28
|
setOpenRoundHistory: () => void;
|
|
29
|
+
limits: ILimitInfo;
|
|
28
30
|
}
|
|
29
|
-
export declare const MobileMenu: ({ name, round, partnerId, socket, urlParam, messages, historyData, onSendMessage, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, isLandscape, streamVolume, balance, effectsVolume, setEffectsVolume, setStreamVolume, getHistory, setOpenRoundHistory, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export declare const MobileMenu: ({ name, round, partnerId, socket, urlParam, messages, historyData, onSendMessage, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, isLandscape, streamVolume, balance, effectsVolume, setEffectsVolume, setStreamVolume, getHistory, setOpenRoundHistory, limits, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HubConnection } from '@microsoft/signalr';
|
|
2
2
|
import { IUrlParam } from '../../utils/helpers';
|
|
3
|
+
import { ILimitInfo } from '../LimitInfo';
|
|
3
4
|
|
|
4
5
|
export interface IToLobby {
|
|
5
6
|
name: string;
|
|
@@ -8,5 +9,6 @@ export interface IToLobby {
|
|
|
8
9
|
partnerId: number;
|
|
9
10
|
socket: HubConnection | null;
|
|
10
11
|
urlParam: IUrlParam;
|
|
12
|
+
limits: ILimitInfo;
|
|
11
13
|
}
|
|
12
|
-
export declare const ToLobby: ({ name, round, limit, partnerId, socket, urlParam, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const ToLobby: ({ name, round, limit, partnerId, socket, urlParam, limits, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BUTTONS_TYPE } from './helper';
|
|
2
2
|
import { TournamentData } from '../Tournament';
|
|
3
3
|
import { IMessage } from '../../api/types';
|
|
4
|
+
import { ILimitInfo } from '../LimitInfo';
|
|
4
5
|
import { IHistoryData } from '../History/helpers';
|
|
5
6
|
|
|
6
7
|
export interface IElements {
|
|
@@ -22,5 +23,6 @@ export interface IElements {
|
|
|
22
23
|
balance: number;
|
|
23
24
|
getHistory: (active: number) => void;
|
|
24
25
|
openRoundHistory?: number;
|
|
26
|
+
limits?: ILimitInfo;
|
|
25
27
|
}
|
|
26
|
-
export declare const Elements: ({ activeAction, messages, onSendMessage, chipAmounts, messagesSupport, onSendMessageSupport, setOpenRoundHistory, isMobile, historyData, isLandscape, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, openRoundHistory, balance, getHistory, }: IElements) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
export declare const Elements: ({ activeAction, messages, onSendMessage, chipAmounts, messagesSupport, onSendMessageSupport, setOpenRoundHistory, isMobile, historyData, isLandscape, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, openRoundHistory, balance, getHistory, limits, }: IElements) => import("react/jsx-runtime").JSX.Element;
|