@betorigami/games 1.1.2 → 1.2.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 +2 -3
- package/dist/index.mjs +126 -129
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20,7 +20,8 @@ declare enum Currency {
|
|
|
20
20
|
NOK = "NOK",
|
|
21
21
|
NZD = "NZD",
|
|
22
22
|
RUB = "RUB",
|
|
23
|
-
TRY = "TRY"
|
|
23
|
+
TRY = "TRY",
|
|
24
|
+
PHP = "PHP"
|
|
24
25
|
}
|
|
25
26
|
declare enum OrigamiGame {
|
|
26
27
|
DICE = "DICE",
|
|
@@ -3693,8 +3694,6 @@ export declare class GameProviderWrapper extends OrigamiElement {
|
|
|
3693
3694
|
private _historyController;
|
|
3694
3695
|
private _hapticController;
|
|
3695
3696
|
private _resizeObserver;
|
|
3696
|
-
private _lastInnerHeight;
|
|
3697
|
-
private _lastInnerWidth;
|
|
3698
3697
|
protected _gameProvider: ContextProvider<typeof gameContext>;
|
|
3699
3698
|
connectedCallback(): void;
|
|
3700
3699
|
firstUpdated(_changed: PropertyValues): Promise<void>;
|