@betorigami/games 2.6.3 → 2.7.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.
- package/dist/index.d.ts +9 -0
- package/dist/index.mjs +401 -351
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ declare enum Currency {
|
|
|
40
40
|
UZS = "UZS",
|
|
41
41
|
VND = "VND",
|
|
42
42
|
ZAR = "ZAR",
|
|
43
|
+
PEN = "PEN",
|
|
43
44
|
GC = "GC",
|
|
44
45
|
SC = "SC"
|
|
45
46
|
}
|
|
@@ -8282,10 +8283,12 @@ export declare class BlitzGame extends GameComponent {
|
|
|
8282
8283
|
private isManualPlaying;
|
|
8283
8284
|
private cardDetails;
|
|
8284
8285
|
private revealCardIndex;
|
|
8286
|
+
private progressActive;
|
|
8285
8287
|
private gameOutcome;
|
|
8286
8288
|
private winPopupBet;
|
|
8287
8289
|
private _blitzManualEl?;
|
|
8288
8290
|
private _blitzAutoEl?;
|
|
8291
|
+
private _blitzContentEl?;
|
|
8289
8292
|
private readonly getBlitzApi;
|
|
8290
8293
|
get isToggleDisabled(): boolean;
|
|
8291
8294
|
get areInputsDisabled(): boolean;
|
|
@@ -8306,6 +8309,12 @@ export declare class BlitzGame extends GameComponent {
|
|
|
8306
8309
|
private handleBetExecution;
|
|
8307
8310
|
private revealCardsInstant;
|
|
8308
8311
|
private revealCards;
|
|
8312
|
+
private scheduleIntermediateReveals;
|
|
8313
|
+
private completeReveal;
|
|
8314
|
+
private revealCard;
|
|
8315
|
+
private waitForProgressComplete;
|
|
8316
|
+
private prefersReducedMotion;
|
|
8317
|
+
private nextAnimationFrame;
|
|
8309
8318
|
private setRevealOutcome;
|
|
8310
8319
|
protected executeAutobet(autobetSettings: AutobetSettingsWithId, currentBetAmount: string): Promise<GameBetResult>;
|
|
8311
8320
|
render(): import("lit-html").TemplateResult<1>;
|