livevegas-ui-kit 1.0.197 → 1.0.199
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/Button/index.d.ts +6 -2
- package/dist/components/History/AllHistory/index.d.ts +2 -1
- package/dist/components/History/helpers.d.ts +1 -1
- package/dist/components/MobileMenu/index.d.ts +2 -1
- package/dist/components/TopIcons/Elements.d.ts +2 -1
- package/dist/components/TopIcons/index.d.ts +2 -2
- package/dist/livevegas-ui-kit.es.js +1845 -1831
- package/dist/livevegas-ui-kit.umd.js +158 -158
- package/package.json +1 -1
|
@@ -12,6 +12,10 @@ export interface IButton {
|
|
|
12
12
|
streamVolume?: number;
|
|
13
13
|
isHoverActive?: boolean;
|
|
14
14
|
setStreamVolume?: (volume: number) => void;
|
|
15
|
-
positonHover?:
|
|
15
|
+
positonHover?: 'top' | 'bottom' | 'bottom-left' | 'left' | 'right' | 'top-left';
|
|
16
|
+
onMouseLeave?: () => void;
|
|
17
|
+
onTouchStart?: () => void;
|
|
18
|
+
onTouchEnd?: () => void;
|
|
19
|
+
onTouchCancel?: () => void;
|
|
16
20
|
}
|
|
17
|
-
export declare const Button: ({ icon, onClick, buttonInfo, isActive, isValueButton, width, height, text, textStyle, isActiveBlue, streamVolume, setStreamVolume, isHoverActive, positonHover, }: IButton) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare const Button: ({ icon, onClick, buttonInfo, isActive, isValueButton, width, height, text, textStyle, isActiveBlue, streamVolume, setStreamVolume, isHoverActive, positonHover, onMouseLeave, onTouchStart, onTouchEnd, onTouchCancel, }: IButton) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -7,6 +7,7 @@ interface IAllHistory {
|
|
|
7
7
|
handleClickRound: (index: number) => void;
|
|
8
8
|
historyData: IHistoryData | null;
|
|
9
9
|
isTexas?: boolean;
|
|
10
|
+
isRoulette?: boolean;
|
|
10
11
|
}
|
|
11
|
-
export declare const AllHistory: ({ count, active, setActive, handleClickRound, historyData, isTexas }: IAllHistory) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const AllHistory: ({ count, active, setActive, handleClickRound, historyData, isTexas, isRoulette, }: IAllHistory) => import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export {};
|
|
@@ -130,7 +130,7 @@ export declare enum Table {
|
|
|
130
130
|
BlackJackTest = 16,
|
|
131
131
|
Texas = 10
|
|
132
132
|
}
|
|
133
|
-
export declare const getTableName: (tableId: number) => "
|
|
133
|
+
export declare const getTableName: (tableId: number) => "Speed BlackJack P" | "Speed BlackJack" | "BlackJack 1" | "BlackJack 2" | "BlackJack P" | "BlackJack" | "Texas" | undefined;
|
|
134
134
|
export declare enum BET_TYPE {
|
|
135
135
|
Ante = 0,
|
|
136
136
|
Bonus = 1,
|
|
@@ -39,5 +39,6 @@ export interface IToLobby {
|
|
|
39
39
|
errorCode?: ERRORS_TYPES;
|
|
40
40
|
tournamentData: TournamentData;
|
|
41
41
|
gameType?: number;
|
|
42
|
+
maxPayOut: number;
|
|
42
43
|
}
|
|
43
|
-
export declare const MobileMenu: ({ name, round, partnerId, socket, urlParam, messages, historyData, onSendMessage, tournamentData, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, isLandscape, streamVolume, balance, currencyId, effectsVolume, setEffectsVolume, setStreamVolume, getHistory, limits, sendTip, handleStreamQualityChange, streamQuality, nickNameChange, nickName, dealerName, errorCode, gameType }: IToLobby) => import("react/jsx-runtime").JSX.Element;
|
|
44
|
+
export declare const MobileMenu: ({ name, round, partnerId, socket, urlParam, messages, historyData, onSendMessage, tournamentData, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, isLandscape, streamVolume, balance, currencyId, effectsVolume, setEffectsVolume, setStreamVolume, getHistory, limits, sendTip, handleStreamQualityChange, streamQuality, nickNameChange, nickName, dealerName, errorCode, gameType, maxPayOut, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -34,5 +34,6 @@ export interface IElements {
|
|
|
34
34
|
errorCode?: ERRORS_TYPES;
|
|
35
35
|
playerId?: number;
|
|
36
36
|
gameType?: number;
|
|
37
|
+
maxPayOut?: number;
|
|
37
38
|
}
|
|
38
|
-
export declare const Elements: ({ activeAction, messages, onSendMessage, chipAmounts, messagesSupport, onSendMessageSupport, setOpenRoundHistory, isMobile, historyData, isLandscape, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, openRoundHistory, balance, getHistory, sendTip, limits, currencyId, handleStreamQualityChange, streamQuality, nickNameChange, nickName, errorCode, playerId, gameType }: IElements) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
export declare const Elements: ({ activeAction, messages, onSendMessage, chipAmounts, messagesSupport, onSendMessageSupport, setOpenRoundHistory, isMobile, historyData, isLandscape, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, openRoundHistory, balance, getHistory, sendTip, limits, currencyId, handleStreamQualityChange, streamQuality, nickNameChange, nickName, errorCode, playerId, gameType, maxPayOut, }: IElements) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -33,7 +33,7 @@ export interface ITopIcons {
|
|
|
33
33
|
playerId?: number;
|
|
34
34
|
partnerId?: number;
|
|
35
35
|
isActiveModal?: boolean;
|
|
36
|
-
setActivation?: (
|
|
36
|
+
setActivation?: () => void;
|
|
37
37
|
gameType?: number;
|
|
38
38
|
}
|
|
39
|
-
export declare const TopIcons: ({ messages, onSendMessage, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, historyData, balance, isFullscreen, toggleFullscreen, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, isTournamentDetailsVisible, getHistory, sendTip, currencyId, handleStreamQualityChange, streamQuality, nickNameChange, nickName, dealerName, errorCode, playerId, partnerId, isActiveModal, setActivation, gameType }: ITopIcons) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
export declare const TopIcons: ({ messages, onSendMessage, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, historyData, balance, isFullscreen, toggleFullscreen, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, isTournamentDetailsVisible, getHistory, sendTip, currencyId, handleStreamQualityChange, streamQuality, nickNameChange, nickName, dealerName, errorCode, playerId, partnerId, isActiveModal, setActivation, gameType, }: ITopIcons) => import("react/jsx-runtime").JSX.Element;
|