@betorigami/games 0.5.0 → 0.5.2
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/components/dice/DiceContent/DiceContent.d.ts +1 -1
- package/dist/components/dice/DiceContentBottom/DiceContentBottom.d.ts +1 -1
- package/dist/components/keno/KenoContent/KenoContent.d.ts +1 -1
- package/dist/components/keno/KenoContent/KenoContentBottom.d.ts +1 -1
- package/dist/components/keno/KenoControls/KenoManual.d.ts +1 -1
- package/dist/components/keno/keno.api.d.ts +1 -1
- package/dist/components/shared/BetResultModal/BetResultModal.d.ts +1 -1
- package/dist/index.mjs +2521 -6247
- package/dist/shared/event-map.d.ts +48 -48
- package/package.json +8 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { KenoRiskLevel } from '
|
|
1
|
+
import { KenoRiskLevel } from '@betorigami/calculations';
|
|
2
2
|
import { GameType } from '../components/shared/BetResultModal/BetResultModal';
|
|
3
3
|
import { BetMode } from '../components/shared/GameSidebar/GameSidebar';
|
|
4
4
|
import { AutobetValues } from '../components/shared/GenericAutobet/GenericAutobet';
|
|
@@ -75,52 +75,52 @@ export type OpenBetResultModalEvent = CustomEvent<{
|
|
|
75
75
|
}>;
|
|
76
76
|
declare global {
|
|
77
77
|
interface GlobalEventHandlersEventMap {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
78
|
+
'bet-mode-change': BetModeChangeEvent;
|
|
79
|
+
'mines-count-change': MinesCountChangeEvent;
|
|
80
|
+
'mines-tile-selected': MinesTileChosenEvent;
|
|
81
|
+
'mines-manual-start': CustomEvent;
|
|
82
|
+
'mines-cashout': CustomEvent;
|
|
83
|
+
'mines-choose-random-tile': CustomEvent;
|
|
84
|
+
'autobet-toggle': AutobetToggleEvent;
|
|
85
|
+
'bet-count-change': BetCountChangeEvent;
|
|
86
|
+
'modal-after-hide': CustomEvent;
|
|
87
|
+
'modal-after-show': CustomEvent;
|
|
88
|
+
'modal-hide': CustomEvent;
|
|
89
|
+
'modal-initial-focus': CustomEvent;
|
|
90
|
+
'modal-request-close': CustomEvent;
|
|
91
|
+
'modal-show': CustomEvent;
|
|
92
|
+
'input-change': InputChangeEvent;
|
|
93
|
+
'input-focus': CustomEvent;
|
|
94
|
+
'input-click': CustomEvent;
|
|
95
|
+
'input-blur': InputBlurEvent;
|
|
96
|
+
'raw-currency-input-change': RawCurrencyInputChangeEvent;
|
|
97
|
+
'raw-currency-input-blur': CustomEvent;
|
|
98
|
+
'raw-currency-input-focus': CustomEvent;
|
|
99
|
+
'currency-input-change': InputChangeEvent;
|
|
100
|
+
'slider-input-change': SliderChangeEvent;
|
|
101
|
+
'select-change': SelectEvent;
|
|
102
|
+
'button-click': ButtonClickEvent;
|
|
103
|
+
'dice-multiplier-change': DiceMultiplierChangeEvent;
|
|
104
|
+
'dice-win-chance-change': DiceWinChanceChangeEvent;
|
|
105
|
+
'dice-roll-over-toggle': CustomEvent;
|
|
106
|
+
'dice-manual-play': CustomEvent;
|
|
107
|
+
'footer-settings-click': CustomEvent;
|
|
108
|
+
'footer-theatre-click': CustomEvent;
|
|
109
|
+
'footer-stats-click': CustomEvent;
|
|
110
|
+
'footer-favorites-click': CustomEvent;
|
|
111
|
+
'footer-provably-fair-click': CustomEvent;
|
|
112
|
+
'toggle-change': ToggleChangeEvent;
|
|
113
|
+
'limbo-multiplier-change': LimboMultiplierChangeEvent;
|
|
114
|
+
'limbo-win-chance-change': LimboWinChanceChangeEvent;
|
|
115
|
+
'limbo-multiplier-animation-end': LimboMultiplierAnimationEndEvent;
|
|
116
|
+
'keno-auto-pick': CustomEvent;
|
|
117
|
+
'keno-clear-table': CustomEvent;
|
|
118
|
+
'keno-manual-play': CustomEvent;
|
|
119
|
+
'keno-risk-change': KenoRiskChangeEvent;
|
|
120
|
+
'keno-tile-click': KenoTileClickEvent;
|
|
121
|
+
'keno-grid-click': KenoGridClickEvent;
|
|
122
|
+
'limbo-manual-play': CustomEvent;
|
|
123
|
+
'open-bet-result-modal': OpenBetResultModalEvent;
|
|
124
|
+
'balance-change': BalanceChangeEvent;
|
|
125
125
|
}
|
|
126
126
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@betorigami/games",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"author": "",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "",
|
|
@@ -19,18 +19,20 @@
|
|
|
19
19
|
"dist"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@betorigami/calculations": "^0.1.0",
|
|
22
23
|
"@lit/context": "^1.1.5",
|
|
23
24
|
"bignumber.js": "^9.3.0",
|
|
24
25
|
"lit": "^3.3.0",
|
|
25
|
-
"shufflecom-calculations": "^1.14.10",
|
|
26
26
|
"uuid": "^11.1.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
30
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
29
31
|
"@storybook/test": "^8.6.14",
|
|
30
|
-
"@storybook/web-components": "^
|
|
31
|
-
"rollup
|
|
32
|
-
"rollup-plugin-
|
|
33
|
-
"
|
|
32
|
+
"@storybook/web-components": "^8.6.14",
|
|
33
|
+
"rollup": "^4.41.1",
|
|
34
|
+
"rollup-plugin-html-literals": "^1.1.8",
|
|
35
|
+
"storybook": "^8.6.14",
|
|
34
36
|
"typescript": "^5.8.3",
|
|
35
37
|
"vite": "^6.3.5",
|
|
36
38
|
"vite-plugin-dts": "^4.5.4"
|