livevegas-ui-kit 1.0.74 → 1.0.76
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.
|
@@ -29,7 +29,12 @@ export declare const buttonSize: {
|
|
|
29
29
|
radius: number;
|
|
30
30
|
};
|
|
31
31
|
};
|
|
32
|
-
export declare const
|
|
32
|
+
export declare const actionsDesktop: {
|
|
33
|
+
betType: BET_TYPE;
|
|
34
|
+
name: string;
|
|
35
|
+
icon: ({ size }: ISizeIcon) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
}[];
|
|
37
|
+
export declare const actionsMobile: {
|
|
33
38
|
betType: BET_TYPE;
|
|
34
39
|
name: string;
|
|
35
40
|
icon: ({ size }: ISizeIcon) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,6 +16,7 @@ export interface IBlackJackAction {
|
|
|
16
16
|
actionsHandler: IActions;
|
|
17
17
|
onStandAll: () => void;
|
|
18
18
|
size: number;
|
|
19
|
+
isMobile: boolean;
|
|
19
20
|
}
|
|
20
|
-
export declare const BlackJackAction: ({ time, actionsHandler, onStandAll, size, }: IBlackJackAction) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export declare const BlackJackAction: ({ time, actionsHandler, onStandAll, size, isMobile, }: IBlackJackAction) => import("react/jsx-runtime").JSX.Element;
|
|
21
22
|
export {};
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
interface IActionWrapper {
|
|
2
2
|
$isBig: boolean;
|
|
3
|
+
$isMobile: boolean;
|
|
3
4
|
}
|
|
4
5
|
export declare const ActionWrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, IActionWrapper>> & string;
|
|
5
|
-
|
|
6
|
+
interface IStandAllButton {
|
|
7
|
+
$surrender: boolean;
|
|
8
|
+
$isDisabled?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare const StandAllButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, IStandAllButton>> & string;
|
|
6
11
|
export {};
|