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.
- package/dist/components/Button/index.d.ts +6 -2
- package/dist/components/History/AllHistory/index.d.ts +2 -1
- package/dist/components/History/helpers.d.ts +1 -1
- package/dist/components/ToastMessages/index.d.ts +1 -1
- package/dist/livevegas-ui-kit.es.js +285 -272
- package/dist/livevegas-ui-kit.umd.js +62 -62
- package/dist/utils/helpers.d.ts +1 -0
- package/package.json +1 -1
|
@@ -12,6 +12,10 @@ export interface IButton {
|
|
|
12
12
|
streamVolume?: number;
|
|
13
13
|
isHoverActive?: boolean;
|
|
14
14
|
setStreamVolume?: (volume: number) => void;
|
|
15
|
-
positonHover?:
|
|
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) => "
|
|
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,
|