@everymatrix/casino-lobby 0.0.260 → 0.0.263

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/documentation.md CHANGED
@@ -157,10 +157,11 @@ Full example (`not logged in user`):
157
157
  |registerevent|no|The `postMessage` event that should be triggered when the `Register` button is clicked|
158
158
  |depositurl|no|The URL where the user should be redirected when the `Deposit` button is clicked|
159
159
  |depositevent|no|The `postMessage` event that should be triggered when the `Deposit` button is clicked|
160
- |favorites|no|Option to show/hide the `Favorites` tab in categories slider. Default: true|
161
- |mostplayed|no|Option to show/hide the `Most Played Games` tab in categories slider. Default: true|
162
- |alternativesearch|no|Option to show the searchbar, in mobile view, at the top of the screen. Default: false|
160
+ |favorites|no|Provides the option to show/hide the `Favorites` tab in categories slider. Default: true|
161
+ |mostplayed|no|Provides the option to show/hide the `Most Played Games` tab in categories slider. Default: true|
162
+ |alternativesearch|no|Provides the option to show the searchbar, in mobile view, at the top of the screen. Default: false|
163
163
  |clockformat|no|The clock format for the game page - more details here - https://momentjs.com/docs/#/displaying/format/. Default: 'LTS'|
164
+ |visiblegames|no|Provides the option to set the number of games that is to be displayed on `Casino Lobby` for each category. The default is set to 10 games.
164
165
 
165
166
  ## Releases
166
167
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-lobby",
3
- "version": "0.0.260",
3
+ "version": "0.0.263",
4
4
  "main": "dist/casino-lobby.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "a30fdd6f6180c69aabbc0daf1bf2a2e1342bf0e2"
39
+ "gitHead": "fccb99c4d5259efacf828703242697132621b19d"
40
40
  }
@@ -48,6 +48,7 @@
48
48
  export let playforfun:string = 'true';
49
49
  export let gamemodal:string = 'true';
50
50
  export let playrandomgame:string = 'false';
51
+ export let visiblegames:string = '10';
51
52
 
52
53
  let endpointURL:string;
53
54
  let DS:string;
@@ -225,7 +226,7 @@
225
226
  endpoint={endpointURL}
226
227
  datasource={DS}
227
228
  lang={language}
228
- visiblegames="10"
229
+ {visiblegames}
229
230
  {playrandomgame}
230
231
  {activecategory}
231
232
  {alternativesearch}