livevegas-ui-kit 1.0.198 → 1.0.200

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.
@@ -12,6 +12,10 @@ export interface IButton {
12
12
  streamVolume?: number;
13
13
  isHoverActive?: boolean;
14
14
  setStreamVolume?: (volume: number) => void;
15
- positonHover?: "top" | "bottom" | "bottom-left" | "left" | "right" | "top-left";
15
+ positonHover?: 'top' | 'bottom' | 'bottom-left' | 'left' | 'right' | 'top-left';
16
+ onMouseLeave?: () => void;
17
+ onTouchStart?: () => void;
18
+ onTouchEnd?: () => void;
19
+ onTouchCancel?: () => void;
16
20
  }
17
- export declare const Button: ({ icon, onClick, buttonInfo, isActive, isValueButton, width, height, text, textStyle, isActiveBlue, streamVolume, setStreamVolume, isHoverActive, positonHover, }: IButton) => import("react/jsx-runtime").JSX.Element;
21
+ export declare const Button: ({ icon, onClick, buttonInfo, isActive, isValueButton, width, height, text, textStyle, isActiveBlue, streamVolume, setStreamVolume, isHoverActive, positonHover, onMouseLeave, onTouchStart, onTouchEnd, onTouchCancel, }: IButton) => import("react/jsx-runtime").JSX.Element;
@@ -7,6 +7,7 @@ interface IAllHistory {
7
7
  handleClickRound: (index: number) => void;
8
8
  historyData: IHistoryData | null;
9
9
  isTexas?: boolean;
10
+ isRoulette?: boolean;
10
11
  }
11
- export declare const AllHistory: ({ count, active, setActive, handleClickRound, historyData, isTexas }: IAllHistory) => import("react/jsx-runtime").JSX.Element;
12
+ export declare const AllHistory: ({ count, active, setActive, handleClickRound, historyData, isTexas, isRoulette, }: IAllHistory) => import("react/jsx-runtime").JSX.Element;
12
13
  export {};
@@ -130,7 +130,7 @@ export declare enum Table {
130
130
  BlackJackTest = 16,
131
131
  Texas = 10
132
132
  }
133
- export declare const getTableName: (tableId: number) => "" | "Speed BlackJack P" | "Speed BlackJack" | "BlackJack 1" | "BlackJack 2" | "BlackJack P" | "BlackJack" | "Texas";
133
+ export declare const getTableName: (tableId: number) => "Speed BlackJack P" | "Speed BlackJack" | "BlackJack 1" | "BlackJack 2" | "BlackJack P" | "BlackJack" | "Texas" | undefined;
134
134
  export declare enum BET_TYPE {
135
135
  Ante = 0,
136
136
  Bonus = 1,
@@ -1,5 +1,5 @@
1
1
  export interface IToast {
2
2
  code: number;
3
- type?: "error" | "warning" | "success";
3
+ type?: 'error' | 'warning' | 'success';
4
4
  }
5
5
  export declare const ToastMessages: ({ code, type }: IToast) => import("react/jsx-runtime").JSX.Element;