pixi-rainman-game-engine 0.1.25 → 0.1.26

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.
@@ -99,3 +99,9 @@
99
99
  transform: translate(calc(-100% - 50px), -50%);
100
100
  }
101
101
  }
102
+
103
+ @media (orientation: mobile-landscape) {
104
+ .symbol-multiplier-popup-modal {
105
+ overflow-x: hidden;
106
+ }
107
+ }
@@ -162,7 +162,7 @@ html.is-locked .ios-scroller-animation {
162
162
  z-index: -9999;
163
163
  }
164
164
 
165
- @media (orientation: landscape) {
165
+ @media (orientation: mobile-landscape) and (max-width: 900px) {
166
166
  .modal-style {
167
167
  overflow-y: auto;
168
168
  }
@@ -22,18 +22,22 @@ export type JackpotType = "jackpot-mini" | "jackpot-minor" | "jackpot-major" | "
22
22
  export type JackpotWins = {
23
23
  "jackpot-grand": {
24
24
  max: number;
25
+ fixed: number;
25
26
  };
26
27
  "jackpot-major": {
27
28
  max: number;
28
29
  min: number;
30
+ fixed: number;
29
31
  };
30
32
  "jackpot-minor": {
31
33
  max: number;
32
34
  min: number;
35
+ fixed: number;
33
36
  };
34
37
  "jackpot-mini": {
35
38
  max: number;
36
39
  min: number;
40
+ fixed: number;
37
41
  };
38
42
  };
39
43
  export interface InitExtraData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pixi-rainman-game-engine",
3
- "version": "0.1.25",
3
+ "version": "0.1.26",
4
4
  "description": "This repository contains all of the mechanics that used in rainman games.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",