livevegas-ui-kit 1.0.180 → 1.0.181

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.
@@ -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;
@@ -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;