@everymatrix/casino-engagement-suite-jackpot-details 1.36.1
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/casino-engagement-suite-jackpot-details/casino-engagement-suite-jackpot-details.esm.js +1 -0
- package/dist/casino-engagement-suite-jackpot-details/index.esm.js +0 -0
- package/dist/casino-engagement-suite-jackpot-details/p-9764b08b.entry.js +1 -0
- package/dist/casino-engagement-suite-jackpot-details/p-e36472df.js +1 -0
- package/dist/casino-engagement-suite-jackpot-details/p-e8978b77.entry.js +1 -0
- package/dist/cjs/casino-engagement-suite-jackpot-details.cjs.entry.js +285 -0
- package/dist/cjs/casino-engagement-suite-jackpot-details.cjs.js +19 -0
- package/dist/cjs/casino-engagement-suite-progress-bar.cjs.entry.js +76 -0
- package/dist/cjs/index-8f767151.js +1317 -0
- package/dist/cjs/index.cjs.js +2 -0
- package/dist/cjs/loader.cjs.js +21 -0
- package/dist/collection/collection-manifest.json +19 -0
- package/dist/collection/components/casino-engagement-suite-jackpot-details/casino-engagement-suite-jackpot-details.css +358 -0
- package/dist/collection/components/casino-engagement-suite-jackpot-details/casino-engagement-suite-jackpot-details.js +460 -0
- package/dist/collection/index.js +1 -0
- package/dist/collection/models/index.js +1 -0
- package/dist/collection/utils/index.js +5 -0
- package/dist/collection/utils/locale.utils.js +22 -0
- package/dist/components/casino-engagement-suite-jackpot-details.d.ts +11 -0
- package/dist/components/casino-engagement-suite-jackpot-details.js +316 -0
- package/dist/components/casino-engagement-suite-progress-bar.js +97 -0
- package/dist/components/index.d.ts +26 -0
- package/dist/components/index.js +1 -0
- package/dist/esm/casino-engagement-suite-jackpot-details.entry.js +281 -0
- package/dist/esm/casino-engagement-suite-jackpot-details.js +17 -0
- package/dist/esm/casino-engagement-suite-progress-bar.entry.js +72 -0
- package/dist/esm/index-ec30ecaa.js +1290 -0
- package/dist/esm/index.js +1 -0
- package/dist/esm/loader.js +17 -0
- package/dist/esm/polyfills/core-js.js +11 -0
- package/dist/esm/polyfills/css-shim.js +1 -0
- package/dist/esm/polyfills/dom.js +79 -0
- package/dist/esm/polyfills/es5-html-element.js +1 -0
- package/dist/esm/polyfills/index.js +34 -0
- package/dist/esm/polyfills/system.js +6 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.js +1 -0
- package/dist/stencil.config.js +22 -0
- package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/casino-engagement-suite-jackpot-details/.stencil/packages/casino-engagement-suite-jackpot-details/stencil.config.d.ts +2 -0
- package/dist/types/components/casino-engagement-suite-jackpot-details/casino-engagement-suite-jackpot-details.d.ts +82 -0
- package/dist/types/components.d.ts +88 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/models/index.d.ts +49 -0
- package/dist/types/stencil-public-runtime.d.ts +1565 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/types/utils/locale.utils.d.ts +1 -0
- package/loader/cdn.js +3 -0
- package/loader/index.cjs.js +3 -0
- package/loader/index.d.ts +12 -0
- package/loader/index.es2017.js +3 -0
- package/loader/index.js +4 -0
- package/loader/package.json +10 -0
- package/package.json +19 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/* eslint-disable */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/**
|
|
4
|
+
* This is an autogenerated file created by the Stencil compiler.
|
|
5
|
+
* It contains typing information for all components that exist in this project.
|
|
6
|
+
*/
|
|
7
|
+
import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
|
|
8
|
+
import { Jackpot } from "./models";
|
|
9
|
+
export namespace Components {
|
|
10
|
+
interface CasinoEngagementSuiteJackpotDetails {
|
|
11
|
+
/**
|
|
12
|
+
* Client custom styling via string
|
|
13
|
+
*/
|
|
14
|
+
"clientStyling": string;
|
|
15
|
+
/**
|
|
16
|
+
* Client custom styling via url
|
|
17
|
+
*/
|
|
18
|
+
"clientStylingUrl": string;
|
|
19
|
+
/**
|
|
20
|
+
* User's device type
|
|
21
|
+
*/
|
|
22
|
+
"device": "Mobile" | "Tablet" | "Desktop";
|
|
23
|
+
/**
|
|
24
|
+
* Current game slug
|
|
25
|
+
*/
|
|
26
|
+
"gameSlug": string;
|
|
27
|
+
/**
|
|
28
|
+
* Selected jackpot
|
|
29
|
+
*/
|
|
30
|
+
"jackpot": Jackpot;
|
|
31
|
+
/**
|
|
32
|
+
* Language of the widget
|
|
33
|
+
*/
|
|
34
|
+
"language": string;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
declare global {
|
|
38
|
+
interface HTMLCasinoEngagementSuiteJackpotDetailsElement extends Components.CasinoEngagementSuiteJackpotDetails, HTMLStencilElement {
|
|
39
|
+
}
|
|
40
|
+
var HTMLCasinoEngagementSuiteJackpotDetailsElement: {
|
|
41
|
+
prototype: HTMLCasinoEngagementSuiteJackpotDetailsElement;
|
|
42
|
+
new (): HTMLCasinoEngagementSuiteJackpotDetailsElement;
|
|
43
|
+
};
|
|
44
|
+
interface HTMLElementTagNameMap {
|
|
45
|
+
"casino-engagement-suite-jackpot-details": HTMLCasinoEngagementSuiteJackpotDetailsElement;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
declare namespace LocalJSX {
|
|
49
|
+
interface CasinoEngagementSuiteJackpotDetails {
|
|
50
|
+
/**
|
|
51
|
+
* Client custom styling via string
|
|
52
|
+
*/
|
|
53
|
+
"clientStyling"?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Client custom styling via url
|
|
56
|
+
*/
|
|
57
|
+
"clientStylingUrl"?: string;
|
|
58
|
+
/**
|
|
59
|
+
* User's device type
|
|
60
|
+
*/
|
|
61
|
+
"device"?: "Mobile" | "Tablet" | "Desktop";
|
|
62
|
+
/**
|
|
63
|
+
* Current game slug
|
|
64
|
+
*/
|
|
65
|
+
"gameSlug"?: string;
|
|
66
|
+
/**
|
|
67
|
+
* Selected jackpot
|
|
68
|
+
*/
|
|
69
|
+
"jackpot"?: Jackpot;
|
|
70
|
+
/**
|
|
71
|
+
* Language of the widget
|
|
72
|
+
*/
|
|
73
|
+
"language"?: string;
|
|
74
|
+
"onBack"?: (event: CustomEvent<void>) => void;
|
|
75
|
+
"onClose"?: (event: CustomEvent<void>) => void;
|
|
76
|
+
}
|
|
77
|
+
interface IntrinsicElements {
|
|
78
|
+
"casino-engagement-suite-jackpot-details": CasinoEngagementSuiteJackpotDetails;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
export { LocalJSX as JSX };
|
|
82
|
+
declare module "@stencil/core" {
|
|
83
|
+
export namespace JSX {
|
|
84
|
+
interface IntrinsicElements {
|
|
85
|
+
"casino-engagement-suite-jackpot-details": LocalJSX.CasinoEngagementSuiteJackpotDetails & JSXBase.HTMLAttributes<HTMLCasinoEngagementSuiteJackpotDetailsElement>;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
export interface JoinJackpotResult {
|
|
2
|
+
Success: boolean;
|
|
3
|
+
JackpotIds: {
|
|
4
|
+
[key: string]: boolean;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateJackpotBalanceMessage {
|
|
8
|
+
JackpotId: number;
|
|
9
|
+
Balance: number;
|
|
10
|
+
WinBalance: number;
|
|
11
|
+
}
|
|
12
|
+
export interface UpdateJackpotStatusEvent {
|
|
13
|
+
JackpotId: number;
|
|
14
|
+
IsClosed: boolean;
|
|
15
|
+
Reason?: string;
|
|
16
|
+
JackpotEndTime: string;
|
|
17
|
+
}
|
|
18
|
+
export interface Game {
|
|
19
|
+
CasinoGameId: number;
|
|
20
|
+
GameIcon: string;
|
|
21
|
+
GameId: string;
|
|
22
|
+
GameName: string;
|
|
23
|
+
GameSlug: string;
|
|
24
|
+
}
|
|
25
|
+
export interface JackpotBetLimit {
|
|
26
|
+
MinBet: number;
|
|
27
|
+
MaxBet: number;
|
|
28
|
+
MaxContributionAmount: number;
|
|
29
|
+
}
|
|
30
|
+
export interface Jackpot {
|
|
31
|
+
Id: number;
|
|
32
|
+
Type: string;
|
|
33
|
+
Balance: number;
|
|
34
|
+
Enabled: boolean;
|
|
35
|
+
ContributionPercent: number;
|
|
36
|
+
PlayerContributionPercent: number;
|
|
37
|
+
OperatorContributionPercent: number;
|
|
38
|
+
JackpotTypePresentation: string;
|
|
39
|
+
JackpotRulesUrl?: string;
|
|
40
|
+
BetLimits?: {
|
|
41
|
+
[currency: string]: JackpotBetLimit;
|
|
42
|
+
};
|
|
43
|
+
Currency: string;
|
|
44
|
+
Description?: string;
|
|
45
|
+
Probability: number;
|
|
46
|
+
JackpotEndTime: string;
|
|
47
|
+
GamesInfo: Array<Game>;
|
|
48
|
+
WinBalance?: number;
|
|
49
|
+
}
|