livevegas-ui-kit 1.0.182 → 1.0.184

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.
@@ -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;
@@ -8,6 +8,7 @@ interface IItemMenu {
8
8
  isLandscape: boolean;
9
9
  headerClick?: () => void;
10
10
  dealerName?: string;
11
+ active?: number;
11
12
  }
12
- export declare const ItemMenu: ({ header, close, width, height, children, isLandscape, headerClick, dealerName, }: PropsWithChildren<IItemMenu>) => import("react/jsx-runtime").JSX.Element;
13
+ export declare const ItemMenu: ({ header, close, width, height, children, isLandscape, headerClick, dealerName, active }: PropsWithChildren<IItemMenu>) => import("react/jsx-runtime").JSX.Element;
13
14
  export {};
@@ -2,6 +2,7 @@ interface IWrapper {
2
2
  $width: number;
3
3
  $height: number;
4
4
  $isLandscape: boolean;
5
+ $active?: number;
5
6
  }
6
7
  export declare const Wrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IWrapper>> & string;
7
8
  export declare const ContentWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
@@ -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;