@everymatrix/casino-game-thumb-view 1.32.4 → 1.33.0

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.
Files changed (131) hide show
  1. package/dist/assets/baccarat.svg +43 -0
  2. package/dist/assets/fav.svg +9 -0
  3. package/dist/assets/favorite.svg +12 -0
  4. package/dist/assets/seat.svg +6 -0
  5. package/dist/assets/unfav.svg +20 -0
  6. package/dist/casino-game-thumb-view/casino-game-thumb-view.esm.js +1 -0
  7. package/dist/casino-game-thumb-view/index.esm.js +0 -0
  8. package/dist/casino-game-thumb-view/p-1bbf4b70.entry.js +1 -0
  9. package/dist/casino-game-thumb-view/p-1e63a1ab.js +1 -0
  10. package/dist/casino-game-thumb-view/p-2d5f59fe.js +1 -0
  11. package/dist/casino-game-thumb-view/p-42bf2034.entry.js +1 -0
  12. package/dist/casino-game-thumb-view/p-46dbb1cb.js +1 -0
  13. package/dist/casino-game-thumb-view/p-6a6b2a78.js +8 -0
  14. package/dist/casino-game-thumb-view/p-7ae107ed.entry.js +1 -0
  15. package/dist/casino-game-thumb-view/p-9cbfffbc.entry.js +1 -0
  16. package/dist/casino-game-thumb-view/p-d961aec4.entry.js +1 -0
  17. package/dist/casino-game-thumb-view/p-db43bb56.entry.js +7 -0
  18. package/dist/cjs/casino-extrainfo-baccarat.cjs.entry.js +366 -0
  19. package/dist/cjs/casino-extrainfo-blackjack.cjs.entry.js +58 -0
  20. package/dist/cjs/casino-extrainfo-roulette.cjs.entry.js +45 -0
  21. package/dist/cjs/casino-game-thumb-view.cjs.js +19 -0
  22. package/dist/cjs/casino-game-thumb-view_2.cjs.entry.js +1612 -0
  23. package/dist/cjs/casino-game-thumbnail-betlimit_2.cjs.entry.js +278 -0
  24. package/dist/cjs/casino-normal-game-thumbnail.cjs.entry.js +23 -0
  25. package/dist/cjs/game-thumbnail-31d518f0.js +78 -0
  26. package/dist/cjs/index-65a1d768.js +1796 -0
  27. package/dist/cjs/index.cjs.js +2 -0
  28. package/dist/cjs/loader.cjs.js +21 -0
  29. package/dist/cjs/locale.utils-aa160787.js +132 -0
  30. package/dist/cjs/utils-a0afc0a9.js +5745 -0
  31. package/dist/collection/collection-manifest.json +19 -0
  32. package/dist/collection/components/casino-extrainfo-baccarat/casino-extrainfo-baccarat.css +116 -0
  33. package/dist/collection/components/casino-extrainfo-baccarat/casino-extrainfo-baccarat.js +240 -0
  34. package/dist/collection/components/casino-extrainfo-blackjack/casino-extrainfo-blackjack.css +64 -0
  35. package/dist/collection/components/casino-extrainfo-blackjack/casino-extrainfo-blackjack.js +119 -0
  36. package/dist/collection/components/casino-extrainfo-roulette/casino-extrainfo-roulette.css +40 -0
  37. package/dist/collection/components/casino-extrainfo-roulette/casino-extrainfo-roulette.js +123 -0
  38. package/dist/collection/components/casino-game-thumb-view/casino-game-thumb-view.css +361 -0
  39. package/dist/collection/components/casino-game-thumb-view/casino-game-thumb-view.js +1064 -0
  40. package/dist/collection/components/casino-game-thumbnail-betlimit/casino-game-thumbnail-betlimit.css +3 -0
  41. package/dist/collection/components/casino-game-thumbnail-betlimit/casino-game-thumbnail-betlimit.js +86 -0
  42. package/dist/collection/components/casino-game-thumbnail-extrainfo/casino-game-thumbnail-extrainfo.css +154 -0
  43. package/dist/collection/components/casino-game-thumbnail-extrainfo/casino-game-thumbnail-extrainfo.js +158 -0
  44. package/dist/collection/components/casino-game-thumbnail-overlay/casino-game-thumbnail-overlay.css +58 -0
  45. package/dist/collection/components/casino-game-thumbnail-overlay/casino-game-thumbnail-overlay.js +209 -0
  46. package/dist/collection/components/casino-normal-game-thumbnail/casino-normal-game-thumbnail.css +3 -0
  47. package/dist/collection/components/casino-normal-game-thumbnail/casino-normal-game-thumbnail.js +62 -0
  48. package/dist/collection/constants/game-thumbnail.js +85 -0
  49. package/dist/collection/index.js +1 -0
  50. package/dist/collection/models/casino-game-thumb-view.js +12 -0
  51. package/dist/collection/models/currency-symbols.js +173 -0
  52. package/dist/collection/static/baccarat.svg +43 -0
  53. package/dist/collection/static/fav.svg +9 -0
  54. package/dist/collection/static/favorite.svg +12 -0
  55. package/dist/collection/static/seat.svg +6 -0
  56. package/dist/collection/static/unfav.svg +20 -0
  57. package/dist/collection/utils/baccarat-board-svg.js +234 -0
  58. package/dist/collection/utils/locale.utils.js +128 -0
  59. package/dist/collection/utils/utils.js +65 -0
  60. package/dist/components/casino-extrainfo-baccarat.d.ts +11 -0
  61. package/dist/components/casino-extrainfo-baccarat.js +400 -0
  62. package/dist/components/casino-extrainfo-blackjack.d.ts +11 -0
  63. package/dist/components/casino-extrainfo-blackjack.js +92 -0
  64. package/dist/components/casino-extrainfo-roulette.d.ts +11 -0
  65. package/dist/components/casino-extrainfo-roulette.js +78 -0
  66. package/dist/components/casino-game-thumb-view.d.ts +11 -0
  67. package/dist/components/casino-game-thumb-view.js +1625 -0
  68. package/dist/components/casino-game-thumbnail-betlimit.d.ts +11 -0
  69. package/dist/components/casino-game-thumbnail-betlimit.js +6 -0
  70. package/dist/components/casino-game-thumbnail-betlimit2.js +227 -0
  71. package/dist/components/casino-game-thumbnail-extrainfo.d.ts +11 -0
  72. package/dist/components/casino-game-thumbnail-extrainfo.js +6 -0
  73. package/dist/components/casino-game-thumbnail-extrainfo2.js +96 -0
  74. package/dist/components/casino-game-thumbnail-overlay.d.ts +11 -0
  75. package/dist/components/casino-game-thumbnail-overlay.js +6 -0
  76. package/dist/components/casino-game-thumbnail-overlay2.js +69 -0
  77. package/dist/components/casino-normal-game-thumbnail.d.ts +11 -0
  78. package/dist/components/casino-normal-game-thumbnail.js +52 -0
  79. package/dist/components/game-thumbnail.js +72 -0
  80. package/dist/components/index.d.ts +26 -0
  81. package/dist/components/index.js +1 -0
  82. package/dist/components/locale.utils.js +130 -0
  83. package/dist/components/utils.js +5739 -0
  84. package/dist/esm/casino-extrainfo-baccarat.entry.js +362 -0
  85. package/dist/esm/casino-extrainfo-blackjack.entry.js +54 -0
  86. package/dist/esm/casino-extrainfo-roulette.entry.js +41 -0
  87. package/dist/esm/casino-game-thumb-view.js +17 -0
  88. package/dist/esm/casino-game-thumb-view_2.entry.js +1607 -0
  89. package/dist/esm/casino-game-thumbnail-betlimit_2.entry.js +273 -0
  90. package/dist/esm/casino-normal-game-thumbnail.entry.js +19 -0
  91. package/dist/esm/game-thumbnail-0a56ee03.js +72 -0
  92. package/dist/esm/index-1e44dd9f.js +1769 -0
  93. package/dist/esm/index.js +1 -0
  94. package/dist/esm/loader.js +17 -0
  95. package/dist/esm/locale.utils-e0cf897e.js +130 -0
  96. package/dist/esm/polyfills/core-js.js +11 -0
  97. package/dist/esm/polyfills/css-shim.js +1 -0
  98. package/dist/esm/polyfills/dom.js +79 -0
  99. package/dist/esm/polyfills/es5-html-element.js +1 -0
  100. package/dist/esm/polyfills/index.js +34 -0
  101. package/dist/esm/polyfills/system.js +6 -0
  102. package/dist/esm/utils-e9314132.js +5739 -0
  103. package/dist/index.cjs.js +1 -0
  104. package/dist/index.js +1 -0
  105. package/dist/stencil.config.js +40 -0
  106. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/casino-game-thumb-view/.stencil/packages/casino-game-thumb-view/stencil.config.d.ts +2 -0
  107. package/dist/types/components/casino-extrainfo-baccarat/casino-extrainfo-baccarat.d.ts +40 -0
  108. package/dist/types/components/casino-extrainfo-blackjack/casino-extrainfo-blackjack.d.ts +36 -0
  109. package/dist/types/components/casino-extrainfo-roulette/casino-extrainfo-roulette.d.ts +21 -0
  110. package/dist/types/components/casino-game-thumb-view/casino-game-thumb-view.d.ts +221 -0
  111. package/dist/types/components/casino-game-thumbnail-betlimit/casino-game-thumbnail-betlimit.d.ts +17 -0
  112. package/dist/types/components/casino-game-thumbnail-extrainfo/casino-game-thumbnail-extrainfo.d.ts +16 -0
  113. package/dist/types/components/casino-game-thumbnail-overlay/casino-game-thumbnail-overlay.d.ts +31 -0
  114. package/dist/types/components/casino-normal-game-thumbnail/casino-normal-game-thumbnail.d.ts +7 -0
  115. package/dist/types/components.d.ts +480 -0
  116. package/dist/types/constants/game-thumbnail.d.ts +83 -0
  117. package/dist/types/index.d.ts +1 -0
  118. package/dist/types/models/casino-game-thumb-view.d.ts +132 -0
  119. package/dist/types/models/currency-symbols.d.ts +172 -0
  120. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  121. package/dist/types/utils/baccarat-board-svg.d.ts +31 -0
  122. package/dist/types/utils/locale.utils.d.ts +1 -0
  123. package/dist/types/utils/utils.d.ts +19 -0
  124. package/loader/cdn.js +3 -0
  125. package/loader/index.cjs.js +3 -0
  126. package/loader/index.d.ts +12 -0
  127. package/loader/index.es2017.js +3 -0
  128. package/loader/index.js +4 -0
  129. package/loader/package.json +10 -0
  130. package/package.json +2 -3
  131. package/LICENSE +0 -21
@@ -0,0 +1 @@
1
+ module.exports = require('./cjs/index.cjs.js');
package/dist/index.js ADDED
@@ -0,0 +1 @@
1
+ export * from './esm/index.js';
@@ -0,0 +1,40 @@
1
+ import { inlineSvg } from 'stencil-inline-svg';
2
+ import { sass } from '@stencil/sass';
3
+ const local = process.argv && process.argv[2] && process.argv[2].indexOf('--dev') > -1;
4
+ export const config = {
5
+ namespace: 'casino-game-thumb-view',
6
+ taskQueue: 'async',
7
+ plugins: [sass(), inlineSvg()],
8
+ sourceMap: local,
9
+ outputTargets: [
10
+ {
11
+ type: 'dist',
12
+ esmLoaderPath: '../loader',
13
+ },
14
+ {
15
+ type: 'dist-custom-elements',
16
+ autoDefineCustomElements: true,
17
+ copy: [
18
+ {
19
+ src: '**/*.{jpg,png,svg}',
20
+ dest: 'dist/assets',
21
+ warn: true,
22
+ }
23
+ ],
24
+ },
25
+ {
26
+ type: 'docs-readme',
27
+ },
28
+ {
29
+ type: 'www',
30
+ copy: [
31
+ {
32
+ src: '**/*.{jpg,png,svg}',
33
+ dest: 'assets',
34
+ warn: true,
35
+ }
36
+ ],
37
+ serviceWorker: null, // disable service workers
38
+ },
39
+ ],
40
+ };
@@ -0,0 +1,2 @@
1
+ import { Config } from '../../../../../../../../../../stencil-public-runtime';
2
+ export declare const config: Config;
@@ -0,0 +1,40 @@
1
+ import { BaccaratUpdateItem, CasinoGameThumbnailDetails, CasinoGameThumbnailInfo } from '../../models/casino-game-thumb-view';
2
+ import { BaccaratSvg } from '../../utils/baccarat-board-svg';
3
+ export declare class CasinoExtrainfoBaccarat {
4
+ /**
5
+ * Text language to show
6
+ */
7
+ language: string;
8
+ /**
9
+ * Text language to show
10
+ */
11
+ showRoundBoard: boolean;
12
+ /**
13
+ *Casino Game info
14
+ */
15
+ gameInfo: CasinoGameThumbnailInfo;
16
+ /**
17
+ * Game Details of game info
18
+ */
19
+ gameDetails: CasinoGameThumbnailDetails;
20
+ baccaratRef: HTMLElement;
21
+ infoWrapperRef: any;
22
+ baccaratSvg: BaccaratSvg;
23
+ isBoardInited: boolean;
24
+ filledCells: Array<string>;
25
+ /**
26
+ * Flag to stop update round board
27
+ * Reset the round board when update value is empty
28
+ */
29
+ isResetingRoundBoard: boolean;
30
+ gameDetailsHandler(newVal: CasinoGameThumbnailDetails, oldVal: CasinoGameThumbnailDetails): void;
31
+ onGameLoaded(gameInfo: CasinoGameThumbnailInfo): Promise<void>;
32
+ /**
33
+ * Called when received update from updater
34
+ * @param details
35
+ */
36
+ onGameDetailUpdated(details: CasinoGameThumbnailDetails): Promise<void>;
37
+ onBaccaratResultChanged(result: Array<BaccaratUpdateItem>): Promise<void>;
38
+ initBaccaratRoundsBoard(): void;
39
+ render(): any;
40
+ }
@@ -0,0 +1,36 @@
1
+ import { CasinoGameThumbnailDetails, CasinoGameThumbnailInfo, SeatsStatus } from '../../models/casino-game-thumb-view';
2
+ export declare class CasinoExtrainfoBlackjack {
3
+ /**
4
+ * Text language to show
5
+ */
6
+ language: string;
7
+ /**
8
+ *Casino Game info
9
+ */
10
+ gameInfo: CasinoGameThumbnailInfo;
11
+ /**
12
+ * Game Details of game info
13
+ */
14
+ gameDetails: CasinoGameThumbnailDetails;
15
+ /**
16
+ * Blackjack seats status
17
+ */
18
+ seatsStatus: Array<SeatsStatus>;
19
+ /**
20
+ * Check is table is Full
21
+ */
22
+ isTableFull: boolean;
23
+ /**
24
+ * Extra info wrapper element
25
+ */
26
+ infoWrapperRef: any;
27
+ /**
28
+ * Generate Jackpot live seats info
29
+ * @param totalSeats
30
+ * @param occupiedSeats
31
+ */
32
+ generateBlackJackSeats(totalSeats?: number, occupiedSeats?: Array<string | number>): any[];
33
+ onGameLoaded(gameInfo: CasinoGameThumbnailInfo): Promise<void>;
34
+ onGameDetailUpdated(details: CasinoGameThumbnailDetails): Promise<void>;
35
+ render(): any;
36
+ }
@@ -0,0 +1,21 @@
1
+ import { CasinoGameThumbnailDetails, CasinoGameThumbnailInfo } from '../../models/casino-game-thumb-view';
2
+ export declare class CasinoExtrainfoRoulette {
3
+ /**
4
+ * Language
5
+ */
6
+ language: string;
7
+ /**
8
+ * The game info
9
+ */
10
+ gameInfo: CasinoGameThumbnailInfo;
11
+ /**
12
+ * Details in GameInfo
13
+ */
14
+ gameDetails: CasinoGameThumbnailDetails;
15
+ showLiveClass: boolean;
16
+ infoWrapperRef: any;
17
+ onGameLoaded(gameInfo: CasinoGameThumbnailInfo): Promise<void>;
18
+ onGameDetailUpdated(details: CasinoGameThumbnailDetails): Promise<void>;
19
+ getRouletteNumberColor(value: number | string): any;
20
+ render(): any;
21
+ }
@@ -0,0 +1,221 @@
1
+ import { EventEmitter } from '../../stencil-public-runtime';
2
+ import { CasinoGameThumbnailInfo } from '../../models/casino-game-thumb-view';
3
+ import { EventSourcePolyfill } from 'event-source-polyfill';
4
+ export declare class CasinoGameThumbView {
5
+ /**
6
+ * Widget Setting, Game language
7
+ */
8
+ language: string;
9
+ /**
10
+ * Widget Setting, Api endpoint for loading game details
11
+ */
12
+ endpoint: string;
13
+ /**
14
+ * Widget Setting, User id
15
+ */
16
+ userId: string | number;
17
+ /**
18
+ * Widget Setting, User session
19
+ */
20
+ /**
21
+ * Widget Setting, Show game name if set it as true
22
+ */
23
+ showGameName: boolean;
24
+ /**
25
+ * Widget Setting, User session
26
+ */
27
+ session: string;
28
+ /**
29
+ * Widget Setting, game showed in favorited category
30
+ */
31
+ showFavoredCategory: boolean;
32
+ /**
33
+ * Widget Setting, Client custom styling via string
34
+ */
35
+ clientStyling: string;
36
+ /**
37
+ * Widget Setting, Client custom styling via url content
38
+ */
39
+ clientStylingUrl: string;
40
+ /**
41
+ * Widget Setting, show game in a frame when user clicked 'start'
42
+ */
43
+ integratedGameframeMobile: boolean;
44
+ /**
45
+ * Widget Setting, show game in a frame when user clicked 'start'
46
+ * the frame url when integratedGameframeDesktop is true
47
+ */
48
+ gamepageModalurl: string;
49
+ /**
50
+ * Widget Setting, show game in a frame when user clicked 'start', Open game aframe,
51
+ * gamepageModalurl value should be set
52
+ */
53
+ integratedGameframeDesktop: boolean;
54
+ /**
55
+ * Widget Setting, Load game details when set it as true, default value: false
56
+ * When loadDetails is true and type=='live-casino-tables',
57
+ * Load gameDetails by endpoint/vendor/gameId if livelobbyEndpoint is null
58
+ */
59
+ loadDetails: boolean;
60
+ /**
61
+ * Widget Setting, showRoundBoard, default value: false
62
+ */
63
+ showRoundBoard: boolean;
64
+ /**
65
+ * Widget Setting
66
+ * Valid value: 'disconnect'/'connect'
67
+ * Flag to start a updater when a live game show in visible area
68
+ * when visibilityConnect='connect' && connectLive = 'connect'
69
+ */
70
+ visibilityConnect: string;
71
+ /**
72
+ * Widget Setting, flag to start a updater when a live game show in visible area
73
+ * Valid value: 'disconnect'/'connect'
74
+ * Flag to start a updater when a live game show in visible area
75
+ * when 'connectLive'= 'connect'
76
+ */
77
+ connectLive: string;
78
+ /**
79
+ * Game Property, default ''
80
+ */
81
+ gameCategory: string;
82
+ /**
83
+ * Widget Setting, Live lobby endpoint, use to start a game
84
+ * Load game info by this url if type=='live-casino-tables'
85
+ */
86
+ livelobbyEndpoint: string;
87
+ /**
88
+ * Game Property, GameId
89
+ */
90
+ gameId: number | string;
91
+ /**
92
+ * Game Property, Game Name
93
+ */
94
+ gameName: string;
95
+ /**
96
+ * Game Property, Game SubVendor
97
+ */
98
+ subVendor: string;
99
+ /**
100
+ * Game Property, Game vendor
101
+ */
102
+ gameVendor: string;
103
+ /**
104
+ * Game Property, Game funMode
105
+ */
106
+ hasFunMode: boolean;
107
+ /**
108
+ * Game Property, hasAnonymousFunMode
109
+ */
110
+ hasAnonymousFunMode: boolean;
111
+ /**
112
+ * Game Property, Game lunch platform
113
+ */
114
+ platform: string;
115
+ /**
116
+ * Game Property, Game thumbnail
117
+ */
118
+ thumbnail: string;
119
+ /**
120
+ * Game Property, is Game Favorited
121
+ */
122
+ isFavorite: boolean;
123
+ /**
124
+ * Game Property, is Game new
125
+ */
126
+ isNew: boolean;
127
+ /**
128
+ * Game Property, Customize game cell size
129
+ */
130
+ cellSize: string;
131
+ /**
132
+ * Game Property, gameTag
133
+ */
134
+ gameTag: string;
135
+ /**
136
+ * Game Property, type, isLiveCasino when type == 'live-casino-tables'
137
+ */
138
+ type: string;
139
+ gameInfo: CasinoGameThumbnailInfo;
140
+ isTableFull: boolean;
141
+ hover: boolean;
142
+ thumbnailLoaded: boolean;
143
+ extraInfoRef?: any;
144
+ extraInfoSlotRef?: any;
145
+ liveLobbyConnection: EventSourcePolyfill;
146
+ containerClassWhenDetailChange: string;
147
+ extraInfoWidget: string;
148
+ private isUserLoggedIn;
149
+ private stylingContainer;
150
+ private isLiveCasino;
151
+ private limitStylingAppends;
152
+ onSessionChanged(): void;
153
+ onTableFullChanged(newVal: boolean, oldVal: boolean): void;
154
+ toggleFavoriteCasinoGameEvent: EventEmitter<number | string>;
155
+ handleMouseOver(event: MouseEvent): void;
156
+ gameFavoritedHandler(event: CustomEvent): void;
157
+ connectLiveHandler(): void;
158
+ visibilityConnectHandler(): void;
159
+ gameDetailChangeHandler(e: MessageEvent): void;
160
+ messageHandler(e: any): void;
161
+ resetLiveProperties(): void;
162
+ isBlackJack(gameCategory: string): boolean;
163
+ isBaccarat(gameCategory: string): boolean;
164
+ /**
165
+ * Calculate component properties by game info,
166
+ * eg: isLiveCasino, gameInfo, isTableFull
167
+ */
168
+ initCtrlProperties(): void;
169
+ /**
170
+ * Parse game info by game info api response
171
+ * @param data
172
+ */
173
+ parseGameResponse(data: Array<CasinoGameThumbnailInfo>): void;
174
+ /**
175
+ * Parse game detail info, set it to game info
176
+ */
177
+ parseGameDetailsResponse(): void;
178
+ connectGameToLiveLobby(): void;
179
+ disconnectGameFromLiveLobby(): void;
180
+ toggleConnect(): void;
181
+ toggleVisibilityConnect(): void;
182
+ /**
183
+ * Get game base info from game api(casino/games/{id})
184
+ * @private
185
+ */
186
+ loadGameById(): void;
187
+ private loadGameInfoByLobbyEndpoint;
188
+ private loadGameDetailInfo;
189
+ /**
190
+ * Toggle game favorite property
191
+ * @param gameId
192
+ * @private
193
+ */
194
+ private toggleFavoriteGame;
195
+ /**
196
+ * Generate gameInfo obj by props
197
+ * @private
198
+ */
199
+ private generateGameInfoByProps;
200
+ triggerExtraInfoLoad(): void;
201
+ componentDidRender(): void;
202
+ componentDidLoad(): void;
203
+ componentWillLoad(): void;
204
+ disconnectedCallback(): void;
205
+ setClientStyling: () => void;
206
+ setClientStylingURL: () => void;
207
+ getWidgetTypeByGameCategory(gameCategory: string): any;
208
+ getGameCategoryType: () => string;
209
+ getGameContainerClass: () => string;
210
+ getGameOverlayProps(): {
211
+ gameName: string;
212
+ gameId: string | number;
213
+ gameVendor: string;
214
+ hasFunMode: boolean;
215
+ language: string;
216
+ integratedGameframeMobile: boolean;
217
+ integratedGameframeDesktop: boolean;
218
+ gamepageModalurl: string;
219
+ };
220
+ render(): any;
221
+ }
@@ -0,0 +1,17 @@
1
+ import { BetLimit } from '../../models/casino-game-thumb-view';
2
+ export declare class CasinoGameThumbnailBetlimit {
3
+ /**
4
+ * The betlimit of live game
5
+ */
6
+ betLimit: BetLimit;
7
+ /**
8
+ * Number of players
9
+ */
10
+ numberOfPlayers: number;
11
+ private currency;
12
+ private defaultCurrency;
13
+ private isBetLimitAvailable;
14
+ private getCurrencySymbols;
15
+ componentWillRender(): void;
16
+ render(): any;
17
+ }
@@ -0,0 +1,16 @@
1
+ import { BetLimit, CasinoGameThumbnailDetails, CasinoGameThumbnailInfo } from '../../models/casino-game-thumb-view';
2
+ export declare class CasinoGameThumbnailExtrainfo {
3
+ language: string;
4
+ betLimit: BetLimit;
5
+ gameInfo: CasinoGameThumbnailInfo;
6
+ gameDetails: CasinoGameThumbnailDetails;
7
+ gameStartTime: string;
8
+ gameTimeFormat: string;
9
+ isNewGame: boolean;
10
+ isDouble: boolean;
11
+ gameTag: string;
12
+ onGameLoaded(gameInfo: CasinoGameThumbnailInfo): Promise<void>;
13
+ initTimeProperties(): void;
14
+ onGameDetailUpdated(details: CasinoGameThumbnailDetails): Promise<void>;
15
+ render(): any;
16
+ }
@@ -0,0 +1,31 @@
1
+ import { EventEmitter } from '../../stencil-public-runtime';
2
+ export declare class CasinoGameThumbnailOverlay {
3
+ /**
4
+ * Event when playnow button clicked
5
+ */
6
+ playClicked: EventEmitter<string | number>;
7
+ /**
8
+ * Widget Setting, the frame url when integratedGameframeDesktop is true
9
+ */
10
+ gamepageModalurl: string;
11
+ /**
12
+ * Widget Setting, show game in a frame when user clicked 'start', default: false
13
+ */
14
+ integratedGameframeMobile: boolean;
15
+ /**
16
+ * Widget Setting, show game in a frame when user clicked 'start', default: false
17
+ * Open game in a frame, gamepageModalurl value should be set
18
+ */
19
+ integratedGameframeDesktop: boolean;
20
+ /**
21
+ * Language
22
+ */
23
+ language: string;
24
+ gameName: string;
25
+ gameVendor: string;
26
+ gameId: string | number;
27
+ hasFunMode: boolean;
28
+ private userAgent;
29
+ private onPlayNowClicked;
30
+ render(): any;
31
+ }
@@ -0,0 +1,7 @@
1
+ import { CasinoGameThumbnailInfo } from '../../models/casino-game-thumb-view';
2
+ export declare class CasinoNormalGameThumbnail {
3
+ infoWrapperRef: any;
4
+ language: string;
5
+ onGameLoaded(gameInfo: CasinoGameThumbnailInfo): Promise<void>;
6
+ render(): any;
7
+ }