livevegas-ui-kit 1.0.181 → 1.0.183

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 {};
@@ -11,3 +11,11 @@ export declare const limitsExample: {
11
11
  "Perfect Pair": string;
12
12
  "21+3": string;
13
13
  };
14
+ export declare const limitsItemTexas: {
15
+ name: string;
16
+ limitInProps: boolean;
17
+ limits: string;
18
+ cards: {
19
+ scannerIndex: number;
20
+ }[];
21
+ }[];
@@ -2,5 +2,6 @@ export interface ILimitInfo {
2
2
  Blackjeck: string;
3
3
  "Perfect Pair": string;
4
4
  "21+3": string;
5
+ gameType?: number;
5
6
  }
6
7
  export declare const LimitInfo: (props: ILimitInfo) => import("react/jsx-runtime").JSX.Element;
@@ -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;
@@ -10,5 +10,6 @@ export interface IToLobby {
10
10
  socket: HubConnection | null;
11
11
  urlParam: IUrlParam;
12
12
  limits: ILimitInfo;
13
+ gameType?: number;
13
14
  }
14
- export declare const ToLobby: ({ name, round, limit, partnerId, socket, urlParam, limits, }: IToLobby) => import("react/jsx-runtime").JSX.Element;
15
+ export declare const ToLobby: ({ name, round, limit, partnerId, socket, urlParam, limits, gameType }: IToLobby) => import("react/jsx-runtime").JSX.Element;