@everymatrix/casino-tournaments-controller 0.0.306 → 0.0.309
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
|
@@ -150,6 +150,7 @@ All widget streams:
|
|
|
150
150
|
|loginevent|no|The `postMessage` event that should be triggered when the `Login` button is clicked|
|
|
151
151
|
|registerurl|no|The URL where the user should be redirected when the `Register` button is clicked|
|
|
152
152
|
|registerevent|no|The `postMessage` event that should be triggered when the `Register` button is clicked|
|
|
153
|
+
|keepbrowsercontext|no|Flag for opening the tournament games category page in the same tab or in a new one|
|
|
153
154
|
|
|
154
155
|
## Widget Events
|
|
155
156
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/casino-tournaments-controller",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.309",
|
|
4
4
|
"main": "dist/casino-tournaments-controller.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": "
|
|
39
|
+
"gitHead": "5d3dd3ff57c483ac2d7f6526cd70f1a7746af0cf"
|
|
40
40
|
}
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
export let registerurl:string = '';
|
|
27
27
|
export let currency:string = 'EUR';
|
|
28
28
|
export let containermaxwidth:string = '';
|
|
29
|
+
export let keepbrowsercontext:string = 'false';
|
|
29
30
|
|
|
30
31
|
// Variables of topics for communication
|
|
31
32
|
let hasErrors:boolean = false;
|
|
@@ -320,6 +321,7 @@
|
|
|
320
321
|
registerevent={registerevent}
|
|
321
322
|
{lang}
|
|
322
323
|
{currency}
|
|
324
|
+
{keepbrowsercontext}
|
|
323
325
|
exportparts="Thumbnail, Status, Enrolled, CardImg, CardImgFinished, Details, Title, Date, ScoreCriteria, ScoreCriteriaP, ScoreCriteriaSpan, Games, GamesP, GamesAnchor, TournamentPrizes, TournamentPrizesSvg, a, TournamentPrizesSvgA, PrizesTitle, Prizes, Prize, PrizeText, PrizeRank,
|
|
324
326
|
TournamentDuration, TournamentDates, StartDate, EndDate, ProgressBar, ProgressBarFillEnd, Finished, ProgressBarFillStarting, Remaining, ProgressBarFill,
|
|
325
327
|
TournamentsGamesSlider, SliderNavButton, items, item, PlayNowButton, itemHover, SliderNavButton
|