@everymatrix/casino-my-games-nd 1.37.12
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/CHANGELOG.md +7 -0
- package/README.md +30 -0
- package/dist/casino-my-games-nd.js +1542 -0
- package/dist/casino-my-games-nd.js.map +1 -0
- package/dist/casino-my-games.js +1542 -0
- package/dist/casino-my-games.js.map +1 -0
- package/index.html +25 -0
- package/index.js +1 -0
- package/package.json +39 -0
- package/public/favicon.png +0 -0
- package/public/reset.css +48 -0
- package/rollup.config.js +59 -0
- package/src/CasinoMyGames.types.ts +92 -0
- package/src/CasinoMyGamesNd.svelte +327 -0
- package/src/i18n.js +27 -0
- package/src/index.ts +4 -0
- package/src/translations.js +87 -0
- package/stories/CasinoMyGames.stories.js +13 -0
- package/tsconfig.json +6 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
## casino-my-games widget changelogs
|
|
3
|
+
|
|
4
|
+
| Version | Release date | Impacted areas | Changes |
|
|
5
|
+
| ------- | ------------ | ----------------------------- | --------------------------------------- |
|
|
6
|
+
| 1.37.2 | Mon Aug 12 2024 | casino-my-games | fix(EMFE-26436)(casino-my-games): Make a flex-box with eqal spaceing on mobile, create invisible border with color change and text translate on hover |
|
|
7
|
+
| 1.29.6 | Mon Apr 29 2024 | casino-my-games | fix(EMFE-26436)(casino-my-games): Make a flex-box with eqal spaceing on mobile, create invisible border with color change and text translate on hover |
|
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# @everymatrix/casino-my-games
|
|
2
|
+
---------
|
|
3
|
+
|
|
4
|
+
## First step
|
|
5
|
+
---------
|
|
6
|
+
```
|
|
7
|
+
lerna bootstrap
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Run Widget
|
|
11
|
+
---------
|
|
12
|
+
- starts server at port 5050
|
|
13
|
+
- has livereload
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
yarn run dev
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Build Widget
|
|
20
|
+
---------
|
|
21
|
+
```
|
|
22
|
+
yarn run build
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Publishing widget
|
|
26
|
+
---------
|
|
27
|
+
- Note add your user to the npm
|
|
28
|
+
```
|
|
29
|
+
lerna publish
|
|
30
|
+
```
|