livevegas-ui-kit 1.0.180 → 1.0.182

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.
@@ -8,5 +8,6 @@ export interface IActionButton {
8
8
  isDisabled: boolean;
9
9
  size?: number;
10
10
  customColor?: string;
11
+ gameType?: number;
11
12
  }
12
- export declare const ActionButton: ({ buttonType, icon: Icon, onClick, isDisabled, size, customColor, }: IActionButton) => import("react/jsx-runtime").JSX.Element;
13
+ export declare const ActionButton: ({ buttonType, icon: Icon, onClick, isDisabled, size, customColor, gameType }: IActionButton) => import("react/jsx-runtime").JSX.Element;
@@ -4,6 +4,7 @@ interface IButtonWrapper {
4
4
  $color: string;
5
5
  $size: ISize;
6
6
  $isDisabled: boolean;
7
+ $gameType?: number;
7
8
  }
8
9
  export declare const ButtonWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, IButtonWrapper>> & string;
9
10
  export {};
@@ -1,5 +1,6 @@
1
1
  interface PaymentsProps {
2
2
  index: number;
3
+ gameType?: number;
3
4
  }
4
- export declare const Payments: ({ index }: PaymentsProps) => import("react/jsx-runtime").JSX.Element;
5
+ export declare const Payments: ({ index, gameType }: PaymentsProps) => import("react/jsx-runtime").JSX.Element;
5
6
  export {};
@@ -5,6 +5,7 @@ interface TextBlockProps {
5
5
  textKey: string;
6
6
  value: TextValue | TextValue[];
7
7
  index: number;
8
+ gameType?: number;
8
9
  }
9
10
  export declare const TextBlock: React.FC<TextBlockProps>;
10
11
  export {};
@@ -1 +1,5 @@
1
- export declare const Info: () => import("react/jsx-runtime").JSX.Element;
1
+ interface IInfo {
2
+ gameType?: number;
3
+ }
4
+ export declare const Info: ({ gameType }: IInfo) => import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,6 @@
1
+ export type TextInterface = {
2
+ [key: string]: string[] | (string | {
3
+ [key: string]: any;
4
+ })[];
5
+ };
6
+ export declare const texasText: TextInterface;
@@ -38,5 +38,6 @@ export interface IToLobby {
38
38
  dealerName: string;
39
39
  errorCode?: ERRORS_TYPES;
40
40
  tournamentData: TournamentData;
41
+ gameType?: number;
41
42
  }
42
- 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, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
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;
@@ -33,5 +33,6 @@ export interface IElements {
33
33
  nickName: string;
34
34
  errorCode?: ERRORS_TYPES;
35
35
  playerId?: number;
36
+ gameType?: number;
36
37
  }
37
- 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, }: IElements) => import("react/jsx-runtime").JSX.Element;
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;
@@ -32,5 +32,8 @@ export interface ITopIcons {
32
32
  errorCode?: ERRORS_TYPES;
33
33
  playerId?: number;
34
34
  partnerId?: number;
35
+ isActiveModal?: boolean;
36
+ setActivation?: (isOpen: boolean) => void;
37
+ gameType?: number;
35
38
  }
36
- 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, }: 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;