livevegas-ui-kit 1.0.277 → 1.0.279
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/Chat/index.d.ts +3 -1
- package/dist/components/Chat/styled.d.ts +1 -0
- package/dist/components/TopIcons/Elements.d.ts +1 -1
- package/dist/components/TopIcons/index.d.ts +1 -1
- package/dist/livevegas-ui-kit.es.js +1034 -993
- package/dist/livevegas-ui-kit.umd.js +240 -229
- package/package.json +3 -1
|
@@ -5,6 +5,8 @@ interface IChat {
|
|
|
5
5
|
messages: IMessage[];
|
|
6
6
|
isMobile?: boolean;
|
|
7
7
|
balance?: number;
|
|
8
|
+
isActiveInput?: boolean;
|
|
9
|
+
isClosedText?: boolean;
|
|
8
10
|
}
|
|
9
|
-
export declare const Chat: ({ onSendMessage, messages, isMobile, balance }: IChat) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const Chat: ({ onSendMessage, messages, isMobile, balance, isActiveInput, isClosedText, }: IChat) => import("react/jsx-runtime").JSX.Element;
|
|
10
12
|
export {};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
interface IForMobile {
|
|
2
2
|
$isMobile: boolean;
|
|
3
|
+
$isClosedText?: boolean;
|
|
3
4
|
}
|
|
4
5
|
export declare const ChatContener: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IForMobile>> & string;
|
|
5
6
|
export declare const SendMessageContener: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IForMobile>> & string;
|
|
@@ -45,4 +45,4 @@ export interface IElements {
|
|
|
45
45
|
musicVolume?: number;
|
|
46
46
|
onTournamentClick?: () => void;
|
|
47
47
|
}
|
|
48
|
-
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, handleDealerLangChange, streamQuality, nickNameChange, nickName, errorCode, playerId, gameType, maxPayOut, selectedGame, limit, dealerLang, dealerName, setMusicVolume, musicVolume, onTournamentClick }: IElements) => import("react/jsx-runtime").JSX.Element;
|
|
48
|
+
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, handleDealerLangChange, streamQuality, nickNameChange, nickName, errorCode, playerId, gameType, maxPayOut, selectedGame, limit, dealerLang, dealerName, setMusicVolume, musicVolume, onTournamentClick, }: IElements) => import("react/jsx-runtime").JSX.Element | undefined;
|
|
@@ -42,4 +42,4 @@ export interface ITopIcons {
|
|
|
42
42
|
musicVolume?: number;
|
|
43
43
|
onTournamentClick: () => void;
|
|
44
44
|
}
|
|
45
|
-
export declare const TopIcons: ({ messages, onSendMessage, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, historyData, balance, isFullscreen, toggleFullscreen, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, isTournamentDetailsVisible, getHistory, sendTip, currencyId, handleStreamQualityChange, handleDealerLangChange, streamQuality, nickNameChange, nickName, dealerName, errorCode, playerId, partnerId, isActiveModal, setActivation, gameType, selectedGame, dealerLang, setMusicVolume, musicVolume, onTournamentClick }: ITopIcons) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
export declare const TopIcons: ({ messages, onSendMessage, isTournamentActive, chipAmounts, messagesSupport, onSendMessageSupport, historyData, balance, isFullscreen, toggleFullscreen, streamVolume, effectsVolume, setEffectsVolume, setStreamVolume, tournamentData, isTournamentDetailsVisible, getHistory, sendTip, currencyId, handleStreamQualityChange, handleDealerLangChange, streamQuality, nickNameChange, nickName, dealerName, errorCode, playerId, partnerId, isActiveModal, setActivation, gameType, selectedGame, dealerLang, setMusicVolume, musicVolume, onTournamentClick, }: ITopIcons) => import("react/jsx-runtime").JSX.Element;
|