@everymatrix/casino-tournaments-thumbnail-rule 1.74.5 → 1.74.7
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/components/{CasinoTournamentsThumbnailRule-BvQN0qHb.js → CasinoTournamentsThumbnailRule-0_G_yLM4.js} +5 -5
- package/components/{CasinoTournamentsThumbnailRule-Bjc3QN57.js → CasinoTournamentsThumbnailRule-DKSIGayu.js} +267 -267
- package/components/{CasinoTournamentsThumbnailRule-D0g6mufo.cjs → CasinoTournamentsThumbnailRule-DWhNXFhD.cjs} +9 -9
- package/es2015/casino-tournaments-thumbnail-rule.cjs +1 -1
- package/es2015/casino-tournaments-thumbnail-rule.js +1 -1
- package/esnext/casino-tournaments-thumbnail-rule.js +1 -1
- package/package.json +1 -1
|
@@ -3810,7 +3810,7 @@ const _t = {
|
|
|
3810
3810
|
betBuilderOnly: "Bet Builder Only",
|
|
3811
3811
|
bankerOnly: "Banker Only",
|
|
3812
3812
|
typeOfSelectionAny: "Any",
|
|
3813
|
-
notBuilderOnly: "Not Builder Only",
|
|
3813
|
+
notBuilderOnly: "Not Bet Builder Only",
|
|
3814
3814
|
notBankerOnly: "Not Banker Only"
|
|
3815
3815
|
},
|
|
3816
3816
|
tr: {
|
|
@@ -3917,7 +3917,7 @@ class Tt {
|
|
|
3917
3917
|
const c = n.config.liveMatch === "true", o = n.config.preLiveMatch === "true";
|
|
3918
3918
|
c && o ? i.push(t("matchTypePreAndLive")) : c ? i.push(`${t("matchTypeLive")}`) : o && i.push(`${t("matchTyppePre")}`);
|
|
3919
3919
|
const a = n.combination, h = [];
|
|
3920
|
-
a.single.isEligible
|
|
3920
|
+
a.single.isEligible && h.push(t("betTypeSingle"));
|
|
3921
3921
|
const m = {
|
|
3922
3922
|
null: t("typeOfSelectionAny"),
|
|
3923
3923
|
true: t("bankerOnly"),
|
|
@@ -3928,13 +3928,13 @@ class Tt {
|
|
|
3928
3928
|
none: t("notBuilderOnly")
|
|
3929
3929
|
};
|
|
3930
3930
|
let C = "", B = "";
|
|
3931
|
-
const _ = `${t("oddsPerSelection")}: ${n.config.minOdds || t("unlimited")} - ${n.config.maxOdds || t("unlimited")}`, H = a.system.isEligible
|
|
3931
|
+
const _ = `${t("oddsPerSelection")}: ${n.config.minOdds || t("unlimited")} - ${n.config.maxOdds || t("unlimited")}`, H = a.system.isEligible, S = a.multiple.isEligible;
|
|
3932
3932
|
H && (C = ` ${t("betTypeSystem")}
|
|
3933
|
-
( ${t("typeOfSelection")}: ${m[n.combination.system.banker?.include || "null"]},
|
|
3933
|
+
( ${t("typeOfSelection")}: ${m[n.combination.system.banker?.include?.toString() || "null"]},
|
|
3934
3934
|
${t("numberOfSelection")}:
|
|
3935
3935
|
${a.system.minSelection?.number || t("unlimited")} - ${a.system.maxSelection?.number || t("unlimited")},
|
|
3936
3936
|
${_} ) `), S && (B = ` ${t("betTypeMultiple")}
|
|
3937
|
-
( ${t("typeOfSelection")}: ${g[n.combination.multiple.betBuilder?.mode || "unspecific"]},
|
|
3937
|
+
( ${t("typeOfSelection")}: ${g[n.combination.multiple.betBuilder?.mode?.toString() || "unspecific"]},
|
|
3938
3938
|
${t("numberOfSelection")}:
|
|
3939
3939
|
${a.multiple.minSelection?.number || t("unlimited")} - ${a.multiple.maxSelection?.number || t("unlimited")},
|
|
3940
3940
|
${_} ) `), H && S ? h.push(B + t("and") + C) : H ? h.push(C) : S && h.push(B), i.push(h.join(", "));
|