livevegas-ui-kit 1.0.143 → 1.0.145

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.
@@ -32,5 +32,6 @@ export interface IElements {
32
32
  nickNameChange: (name: string) => void;
33
33
  nickName: string;
34
34
  errorCode?: ERRORS_TYPES;
35
+ playerId?: number;
35
36
  }
36
- 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, }: IElements) => import("react/jsx-runtime").JSX.Element;
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;
@@ -30,5 +30,6 @@ export interface ITopIcons {
30
30
  nickName: string;
31
31
  dealerName: string;
32
32
  errorCode?: ERRORS_TYPES;
33
+ playerId?: number;
33
34
  }
34
- 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, }: ITopIcons) => import("react/jsx-runtime").JSX.Element;
35
+ 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 }: ITopIcons) => import("react/jsx-runtime").JSX.Element;
@@ -32,6 +32,7 @@ export interface ITournament {
32
32
  tournamentData?: TournamentData;
33
33
  close?: () => void;
34
34
  fromIcon?: boolean;
35
+ playerId?: number;
35
36
  }
36
- export declare const Tournament: ({ tournamentData, fromIcon }: ITournament) => import("react/jsx-runtime").JSX.Element | null;
37
+ export declare const Tournament: ({ tournamentData, fromIcon, playerId }: ITournament) => import("react/jsx-runtime").JSX.Element | null;
37
38
  export {};
@@ -13,6 +13,7 @@ export declare const LeaderboardTable: import('styled-components/dist/types').IS
13
13
  export declare const TableRow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
14
14
  header?: boolean;
15
15
  highlight?: boolean;
16
+ stickyBottom?: boolean;
16
17
  }>> & string;
17
18
  export declare const TableCell: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
18
19
  align?: string;
@@ -5,6 +5,7 @@ interface TournamentPointsProps {
5
5
  tournamentData?: TournamentData;
6
6
  fromIcon?: boolean;
7
7
  onClick?: () => void;
8
+ playerId?: number;
8
9
  }
9
- export declare const TournamentAndPoints: ({ points, tournamentData, fromIcon, onClick, }: TournamentPointsProps) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const TournamentAndPoints: ({ points, tournamentData, fromIcon, onClick, playerId }: TournamentPointsProps) => import("react/jsx-runtime").JSX.Element;
10
11
  export default TournamentAndPoints;