@everymatrix/casino-games-category-section-nd 1.37.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/CHANGELOG.md +12 -0
- package/README.md +30 -0
- package/dist/casino-games-category-section-nd.js +31 -0
- package/dist/casino-games-category-section-nd.js.map +1 -0
- package/index.html +54 -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 +67 -0
- package/src/CasinoGamesCategorySection.type.ts +125 -0
- package/src/CasinoGamesCategorySectionNd.svelte +1472 -0
- package/src/i18n.js +21 -0
- package/src/index.ts +4 -0
- package/src/translations.js +186 -0
- package/stories/CasinoGamesCategorySection.stories.js +13 -0
- package/tsconfig.json +6 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
|
|
2
|
+
## casino-games-category-section-nd widget changelogs
|
|
3
|
+
|
|
4
|
+
| Version | Release date | Impacted areas | Changes |
|
|
5
|
+
| ------- | ------------ | ----------------------------- | --------------------------------------- |
|
|
6
|
+
| 1.37.2 | Mon Aug 12 2024 | casino-games-category-section-nd | fix(EMFE-31511)(casino-games-category-section-nd,casino-game-thumbnail-nd): add new... <br /> fix(EMFE-31700)(casino-games-category-section-nd,casino-game-modal): Fix the fav. icon dissapear and the deleting items from favorite section <br /> fix(EMFE-31127)(casino-games-category-section-nd,casino-lobby,casino-page,casino-game-page,casino-favorite-section,casino-most-played-section,casino-last-played-section): i wanna die so hard <br /> fix(EMFE-31127)(casino-games-category-section-nd): Add favourite values for displaying fav/unfav icon <br /> fix(EMFE-31127)(casino-games-category-section-nd): Hide show all button at certain value & add show all event values for event listener <br /> fix(EMFE-31127)(casino-games-category-section-nd,casino-favorites-section,casino-last-played-section,casino-most-played-section,casino-page): Fix the play button by adding new variables <br /> feat(EMFE-31127)(casino-games-category-section-nd): Make widget standalone and commit for relese to use in teamplate <br /> fix(EMFE-27847)(casino-games-category-section-nd): resolve scroll issue on categories <br /> chore(EMFE-000)(casino-games-category-section-nd): remove unused exported properties <br /> feat(EMFE-28783)(casino-collections-providers,casino-game-page,casino-game-thumbnail-nd,casino-games-category-section-nd,casino-search,casino-winners): add data to the widget sent events for native bridge <br /> chore(EMFE-000)(casino-collections-providers,casino-footer,casino-footer-v2,casino-game-page,casino-games-category-section-nd,casino-hamburger-menu,casino-header-controller,casino-search,casino-winners,player-account-controller,player-account-menu): change some color variables for the dark/ light theme <br /> fix(EMFE-26291)(casino-games-category-section-nd): fix grid for mobile scroll |
|
|
7
|
+
| 1.37.0 | Tue Aug 06 2024 | casino-games-category-section-nd | fix(EMFE-31511)(casino-games-category-section-nd,casino-game-thumbnail-nd): add new... |
|
|
8
|
+
| 1.34.1 | Tue Jun 25 2024 | casino-games-category-section-nd | fix(EMFE-31127)(casino-games-category-section-nd,casino-lobby,casino-page,casino-game-page,casino-favorite-section,casino-most-played-section,casino-last-played-section): i wanna die so hard |
|
|
9
|
+
| 1.33.2 | Tue Jun 11 2024 | casino-games-category-section-nd | fix(EMFE-31127)(casino-games-category-section-nd): Add favourite values for displaying fav/unfav icon |
|
|
10
|
+
| 1.32.0 | Tue Jun 04 2024 | casino-games-category-section-nd | fix(EMFE-31127)(casino-games-category-section-nd): Hide show all button at certain value & add show all event values for event listener |
|
|
11
|
+
| 1.31.0 | Wed May 22 2024 | casino-games-category-section-nd | feat(EMFE-31127)(casino-games-category-section-nd): Make widget standalone and commit for relese to use in teamplate |
|
|
12
|
+
| 1.27.2 | Thu Feb 15 2024 | casino-games-category-section-nd | fix(EMFE-27847)(casino-games-category-section-nd): resolve scroll issue on categories <br /> chore(EMFE-000)(casino-games-category-section-nd): remove unused exported properties |
|
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# @everymatrix/casino-games-category-section-nd
|
|
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
|
+
```
|