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