@golstats/gsc-landing 1.0.178 → 1.0.179
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/README.md +2 -2
- package/dist/gsc-landing.js +233 -194
- package/dist/gsc-landing.umd.cjs +6 -6
- package/dist/style.css +1 -1
- package/package.json +51 -51
package/dist/gsc-landing.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useCssVars as tt, openBlock as y, createElementBlock as b, normalizeClass as A, createElementVNode as v, createCommentVNode as x, renderSlot as Ft, ref as D, onMounted as
|
|
1
|
+
import { useCssVars as tt, openBlock as y, createElementBlock as b, normalizeClass as A, createElementVNode as v, createCommentVNode as x, renderSlot as Ft, ref as D, onMounted as ot, onUnmounted as Zt, toDisplayString as P, unref as Re, watch as Se, Fragment as N, createTextVNode as le, createBlock as ee, withCtx as ze, renderList as _e, mergeProps as Rs, pushScopeId as Je, popScopeId as Xe, computed as Z, normalizeStyle as B, defineComponent as Bt, inject as De, reactive as et, h as Me, provide as Pe, nextTick as ta, cloneVNode as xs, resolveComponent as Ve, createVNode as ve, withModifiers as e0, createStaticVNode as t0, onBeforeMount as xn, Transition as sa, withDirectives as Ss, vShow as ws, toRef as s0, onBeforeUnmount as dm } from "vue";
|
|
2
2
|
function um(s, e) {
|
|
3
3
|
return function() {
|
|
4
4
|
return s.apply(e, arguments);
|
|
@@ -1859,7 +1859,7 @@ function Vy(s) {
|
|
|
1859
1859
|
const i = s.value.getBoundingClientRect();
|
|
1860
1860
|
e.value.width = i.width, e.value.height = i.height;
|
|
1861
1861
|
}
|
|
1862
|
-
return
|
|
1862
|
+
return ot(() => {
|
|
1863
1863
|
t(), window.addEventListener("resize", t);
|
|
1864
1864
|
}), Zt(() => {
|
|
1865
1865
|
window.removeEventListener("resize", t);
|
|
@@ -1952,7 +1952,7 @@ const Qa = /* @__PURE__ */ new Map([
|
|
|
1952
1952
|
])
|
|
1953
1953
|
]));
|
|
1954
1954
|
}
|
|
1955
|
-
}, Zy = /* @__PURE__ */ At(Xy, [["__scopeId", "data-v-
|
|
1955
|
+
}, Zy = /* @__PURE__ */ At(Xy, [["__scopeId", "data-v-1dc995c5"]]), Qy = (s) => (Je("data-v-938dd424"), s = s(), Xe(), s), e1 = { class: "my-players" }, t1 = { class: "my-players__header" }, s1 = { class: "my-players__title" }, i1 = { style: { "text-decoration-line": "underline" } }, a1 = /* @__PURE__ */ Qy(() => /* @__PURE__ */ v("span", null, "→", -1)), n1 = { class: "my-players__list" }, r1 = {
|
|
1956
1956
|
__name: "GSCPlayersLanding",
|
|
1957
1957
|
props: {
|
|
1958
1958
|
tournamentSelected: {
|
|
@@ -1976,6 +1976,10 @@ const Qa = /* @__PURE__ */ new Map([
|
|
|
1976
1976
|
type: Number,
|
|
1977
1977
|
default: 34605
|
|
1978
1978
|
},
|
|
1979
|
+
isRival: {
|
|
1980
|
+
type: Boolean,
|
|
1981
|
+
default: !1
|
|
1982
|
+
},
|
|
1979
1983
|
teamId: {
|
|
1980
1984
|
type: Number,
|
|
1981
1985
|
default: 2
|
|
@@ -1988,7 +1992,8 @@ const Qa = /* @__PURE__ */ new Map([
|
|
|
1988
1992
|
emits: ["viewAll", "clickProfileBtn", "totalPlayers"],
|
|
1989
1993
|
setup(s, { emit: e }) {
|
|
1990
1994
|
const t = s, i = D([]), a = D(0), n = D(0);
|
|
1991
|
-
|
|
1995
|
+
ot(async () => {
|
|
1996
|
+
console.log("data: ", t.teamId, t.seasonId);
|
|
1992
1997
|
const o = await r(t.teamId, t.seasonId, t.token);
|
|
1993
1998
|
n.value = o.length, i.value = o.map((c) => ({
|
|
1994
1999
|
...c,
|
|
@@ -2020,7 +2025,7 @@ const Qa = /* @__PURE__ */ new Map([
|
|
|
2020
2025
|
}
|
|
2021
2026
|
), (o, c) => (y(), b("div", e1, [
|
|
2022
2027
|
v("div", t1, [
|
|
2023
|
-
v("h3", s1, P(s.isPlayer ? s.tournamentSelected.is_female == 1 ? "Mis compañeras" : "Mis compañeros" : s.tournamentSelected.is_female == 1 ? "Mis jugadoras" : "Mis jugadores"), 1),
|
|
2028
|
+
v("h3", s1, P(s.isPlayer ? s.tournamentSelected.is_female == 1 ? s.isRival ? "Jugadoras próximo rival" : "Mis compañeras" : s.isRival ? "Jugadores próximo rival" : "Mis compañeros" : s.tournamentSelected.is_female == 1 ? s.isRival ? "Jugadoras próximo rival" : "Mis jugadoras" : s.isRival ? "Jugadores próximo rival" : "Mis jugadores"), 1),
|
|
2024
2029
|
v("button", {
|
|
2025
2030
|
class: "my-players__button",
|
|
2026
2031
|
onClick: c[0] || (c[0] = (l) => e("viewAll"))
|
|
@@ -2050,7 +2055,7 @@ const Qa = /* @__PURE__ */ new Map([
|
|
|
2050
2055
|
}, {
|
|
2051
2056
|
default: ze(() => [
|
|
2052
2057
|
v("div", n1, [
|
|
2053
|
-
(y(!0), b(N, null, _e(i.value, (l) => (y(), ee(Zy,
|
|
2058
|
+
(y(!0), b(N, null, _e(i.value, (l) => (y(), ee(Zy, Rs(l, {
|
|
2054
2059
|
"tournament-selected": s.tournamentSelected,
|
|
2055
2060
|
isImgFullWidth: s.isImgFullWidth,
|
|
2056
2061
|
onClickProfileBtn: (d) => e("clickProfileBtn", l),
|
|
@@ -2062,7 +2067,7 @@ const Qa = /* @__PURE__ */ new Map([
|
|
|
2062
2067
|
}))
|
|
2063
2068
|
]));
|
|
2064
2069
|
}
|
|
2065
|
-
}, o1 = /* @__PURE__ */ At(r1, [["__scopeId", "data-v-7acb97f6"]]), Wc = "data:image/svg+xml,%3csvg%20width='69'%20height='70'%20viewBox='0%200%2069%2070'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_b_3196_29756)'%3e%3crect%20x='29'%20y='35'%20width='11'%20height='11'%20rx='1'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='29.5'%20y='35.5'%20width='10'%20height='10'%20rx='0.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cg%20filter='url(%23filter1_b_3196_29756)'%3e%3crect%20x='48'%20y='35'%20width='11'%20height='11'%20rx='1'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='48.5'%20y='35.5'%20width='10'%20height='10'%20rx='0.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cg%20filter='url(%23filter2_b_3196_29756)'%3e%3crect%20x='10'%20y='35'%20width='11'%20height='11'%20rx='1'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='10.5'%20y='35.5'%20width='10'%20height='10'%20rx='0.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cg%20opacity='0.6'%3e%3cpath%20d='M60.5556%208.70056H8.44444C4.33299%208.70056%201%2011.7003%201%2015.4006V62.3007C1%2066.001%204.33299%2069.0007%208.44444%2069.0007H60.5556C64.667%2069.0007%2068%2066.001%2068%2062.3007V15.4006C68%2011.7003%2064.667%208.70056%2060.5556%208.70056Z'%20stroke='white'%20stroke-width='1.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M1%2028.7991H68'%20stroke='white'%20stroke-width='1.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M49.3872%201.99982V15.3999'%20stroke='white'%20stroke-width='3.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.6128%201.99982V15.3999'%20stroke='white'%20stroke-width='3.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_b_3196_29756'%20x='13'%20y='19'%20width='43'%20height='43'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29756'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29756'%20result='shape'/%3e%3c/filter%3e%3cfilter%20id='filter1_b_3196_29756'%20x='32'%20y='19'%20width='43'%20height='43'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29756'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29756'%20result='shape'/%3e%3c/filter%3e%3cfilter%20id='filter2_b_3196_29756'%20x='-6'%20y='19'%20width='43'%20height='43'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29756'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29756'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e", l1 = "data:image/svg+xml,%3csvg%20width='75'%20height='75'%20viewBox='0%200%2075%2075'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_b_3196_29781)'%3e%3crect%20x='6.00049'%20y='6'%20width='60'%20height='60'%20rx='30'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='6.50049'%20y='6.5'%20width='59'%20height='59'%20rx='29.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cpath%20opacity='0.6'%20d='M71%2036C71%2042.9221%2068.9475%2049.6887%2065.1019%2055.4443C61.2563%2061.1998%2055.7905%2065.6859%2049.3954%2068.3351C43.0004%2070.9844%2035.9634%2071.6779%2029.1743%2070.3279C22.3851%2068.978%2016.1487%2065.6452%2011.2536%2060.751C6.3585%2055.8569%203.02455%2049.6211%201.67333%2042.8322C0.322108%2036.0433%201.01429%2029.0061%203.66235%2022.6106C6.31041%2016.2151%2010.7954%2010.7484%2016.5503%206.90175C22.3051%203.05512%2029.0714%201.0013%2035.9934%201C40.5903%200.999139%2045.1422%201.9038%2049.3894%203.66233C53.6365%205.42086%2057.4957%207.99881%2060.7464%2011.2489C63.9972%2014.4991%2066.5758%2018.3577%2068.3352%2022.6046C70.0945%2026.8514%2071%2031.4032%2071%2036V36Z'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20opacity='0.6'%20d='M74%2074L62%2062'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M44.4013%2048.6044V45.4039C44.4013%2043.7062%2043.727%2042.0781%2042.5266%2040.8777C41.3263%2039.6773%2039.6983%2039.0029%2038.0007%2039.0029H28.3999C26.7024%2039.0029%2025.0743%2039.6773%2023.874%2040.8777C22.6737%2042.0781%2021.9993%2043.7062%2021.9993%2045.4039V48.6044'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='2.38256'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M33.2031%2032.6016C36.738%2032.6016%2039.6037%2029.7358%2039.6037%2026.2006C39.6037%2022.6654%2036.738%2019.7996%2033.2031%2019.7996C29.6682%2019.7996%2026.8026%2022.6654%2026.8026%2026.2006C26.8026%2029.7358%2029.6682%2032.6016%2033.2031%2032.6016Z'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='2.38256'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M49.1998%2027.8009V37.4024M54.0003%2032.6017H44.3994'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='2.38256'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cdefs%3e%3cfilter%20id='filter0_b_3196_29781'%20x='-9.99951'%20y='-10'%20width='92'%20height='92'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29781'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29781'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e", Kc = "data:image/svg+xml,%3csvg%20width='90'%20height='90'%20viewBox='0%200%2090%2090'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='Football%20Jersey'%3e%3cg%20id='Layer%2010'%3e%3cpath%20id='Vector'%20d='M71.7192%2052.1016V40.3172L87.7223%2033.6376C87.9169%2033.558%2088.0912%2033.4359%2088.2323%2033.2802C88.3735%2033.1244%2088.4779%2032.939%2088.538%2032.7376C88.5985%2032.5342%2088.6123%2032.3197%2088.5782%2032.1103C88.5441%2031.9009%2088.463%2031.7018%2088.3411%2031.5282L71.4661%207.62193C71.4289%207.5532%2071.3866%207.48739%2071.3395%207.42506C69.4243%205.50395%2067.1463%203.98259%2064.6381%202.94935C62.1298%201.91612%2059.4413%201.39161%2056.7286%201.40631H53.438C53.065%201.40631%2052.7073%201.55446%2052.4436%201.81819C52.1799%202.08191%2052.0317%202.4396%2052.0317%202.81256V5.62506C52.0317%207.48986%2051.2909%209.27829%2049.9723%2010.5969C48.6537%2011.9155%2046.8653%2012.6563%2045.0005%2012.6563C43.1357%2012.6563%2041.3472%2011.9155%2040.0286%2010.5969C38.71%209.27829%2037.9692%207.48986%2037.9692%205.62506V2.81256C37.9692%202.4396%2037.8211%202.08191%2037.5573%201.81819C37.2936%201.55446%2036.9359%201.40631%2036.563%201.40631H33.2723C30.5634%201.39718%2027.8796%201.92572%2025.3764%202.96128C22.8731%203.99684%2020.6003%205.51885%2018.6895%207.43912C18.6424%207.50145%2018.6001%207.56727%2018.563%207.63599L1.68797%2031.5422C1.56603%2031.7159%201.48498%2031.9149%201.45089%2032.1244C1.41679%2032.3338%201.43054%2032.5482%201.49109%2032.7516C1.55114%2032.9531%201.65558%2033.1385%201.79673%2033.2942C1.93788%2033.45%202.11215%2033.5721%202.30672%2033.6516L18.2817%2040.3172V81.5626C18.2817%2081.9355%2018.4299%2082.2932%2018.6936%2082.5569C18.9573%2082.8206%2019.315%2082.9688%2019.688%2082.9688H57.1505C59.2007%2085.1122%2061.7416%2086.7246%2064.5541%2087.6667C67.3665%2088.6089%2070.366%2088.8527%2073.2936%2088.3769C76.2213%2087.9011%2078.9892%2086.7202%2081.3586%2084.9359C83.7279%2083.1516%2085.6276%2080.8176%2086.8936%2078.1353C88.1596%2075.453%2088.7539%2072.503%2088.6253%2069.5397C88.4967%2066.5764%2087.649%2063.6889%2086.1554%2061.1264C84.6617%2058.5639%2082.567%2056.4032%2080.052%2054.8309C77.5369%2053.2587%2074.6771%2052.3219%2071.7192%2052.1016ZM84.8255%2065.011L77.7942%2066.0235L71.7192%2061.2001V54.9141C74.6356%2055.1837%2077.4155%2056.2757%2079.7356%2058.0631C82.0558%2059.8505%2083.8208%2062.2599%2084.8255%2065.011ZM73.5755%2074.5313H67.1067L64.927%2067.9922L70.313%2063.6751L75.6989%2067.9922L73.5755%2074.5313ZM54.8442%2070.3126C54.8475%2069.4546%2054.9227%2068.5985%2055.0692%2067.7532L62.227%2068.7657L64.5192%2075.6563L59.7661%2081.5626C58.2159%2080.1269%2056.9786%2078.3867%2056.1317%2076.4509C55.2848%2074.5152%2054.8465%2072.4255%2054.8442%2070.3126ZM68.9067%2052.0313C66.9688%2052.1978%2065.07%2052.6726%2063.2817%2053.4376V51.3141C63.2728%2045.3135%2065.2507%2039.4787%2068.9067%2034.7204V52.0313ZM68.9067%2054.8438V61.1297L62.8739%2066.0938L55.8427%2065.0813C56.8334%2062.3231%2058.5873%2059.9031%2060.9002%2058.1031C63.213%2056.3031%2065.9897%2055.1972%2068.9067%2054.9141V54.8438ZM71.7192%2037.2657V12.8672L85.0223%2031.7251L71.7192%2037.2657ZM4.97859%2031.7251L18.2817%2012.8672V37.2657L4.97859%2031.7251ZM21.0942%2034.7204C24.7503%2039.4787%2026.7282%2045.3135%2026.7192%2051.3141V80.1563H21.0942V34.7204ZM29.5317%2080.1563V51.3141C29.546%2043.5117%2026.5194%2036.0108%2021.0942%2030.4032V9.02818C24.3875%205.92407%2028.7467%204.20253%2033.2723%204.21881H35.1567V5.62506C35.1567%208.23578%2036.1938%2010.7396%2038.0399%2012.5856C39.8859%2014.4317%2042.3897%2015.4688%2045.0005%2015.4688C47.6112%2015.4688%2050.115%2014.4317%2051.9611%2012.5856C53.8071%2010.7396%2054.8442%208.23578%2054.8442%205.62506V4.21881H56.7286C61.2542%204.20253%2065.6134%205.92407%2068.9067%209.02818V30.4032C63.4816%2036.0108%2060.455%2043.5117%2060.4692%2051.3141V54.9282C56.3926%2057.542%2053.5197%2061.6664%2052.4809%2066.3963C51.4421%2071.1261%2052.3224%2076.0748%2054.9286%2080.1563H29.5317ZM61.988%2083.3204L66.7692%2077.3438H73.8005L78.5817%2083.3204C76.1021%2084.9263%2073.211%2085.7808%2070.2567%2085.7808C67.3025%2085.7808%2064.4113%2084.9263%2061.9317%2083.3204H61.988ZM80.8598%2081.5626L76.1067%2075.6563L78.3989%2068.7657L85.5567%2067.7532C85.9891%2070.2641%2085.7858%2072.8433%2084.9653%2075.2555C84.1449%2077.6677%2082.7335%2079.836%2080.8598%2081.5626Z'%20fill='%23A0A9AF'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e", qc = "data:image/svg+xml,%3csvg%20width='90'%20height='90'%20viewBox='0%200%2090%2090'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='fi_8584464'%3e%3cpath%20id='Vector'%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M76.9582%2067.1642V5.59678C76.9582%204.8244%2076.3322%204.19775%2075.5592%204.19775H13.9918C13.2194%204.19775%2012.5928%204.8244%2012.5928%205.59678V67.1642C12.5928%2067.676%2012.8722%2068.1475%2013.3222%2068.3926L44.1055%2085.1836C44.5233%2085.4113%2045.0277%2085.4113%2045.4455%2085.1836L76.2295%2068.3926C76.6788%2068.1475%2076.9582%2067.676%2076.9582%2067.1642ZM74.1602%2018.1901V66.3333L44.7758%2082.3614L15.3915%2066.3333V18.1901H74.1602ZM44.7758%2023.7875C32.419%2023.7875%2022.3873%2033.8192%2022.3873%2046.1754C22.3873%2058.5316%2032.419%2068.5632%2044.7758%2068.5632C57.132%2068.5632%2067.1637%2058.5316%2067.1637%2046.1754C67.1637%2033.8192%2057.132%2023.7875%2044.7758%2023.7875ZM38.8795%2064.8604L44.7758%2059.985L50.6715%2064.8604C48.8104%2065.4481%2046.8297%2065.7651%2044.7758%2065.7651C42.7213%2065.7651%2040.7406%2065.4481%2038.8795%2064.8604ZM35.939%2028.6905C32.2168%2030.5772%2029.177%2033.617%2027.2903%2037.3392L33.8603%2045.2834C34.2881%2045.8013%2034.2881%2046.5495%2033.8603%2047.0673L27.2903%2055.0115C29.177%2058.7337%2032.2175%2061.7742%2035.939%2063.6602L43.8839%2057.0909C44.4011%2056.6631%2045.1499%2056.6631%2045.6671%2057.0909L53.6119%2063.6602C57.3342%2061.7736%2060.374%2058.7337%2062.2607%2055.0115L55.6907%2047.0673C55.2628%2046.5495%2055.2628%2045.8013%2055.6907%2045.2834L62.2607%2037.3392C60.374%2033.617%2057.3342%2030.5765%2053.6119%2028.6905L45.6671%2035.2598C45.1499%2035.6877%2044.4011%2035.6877%2043.8839%2035.2598L35.939%2028.6905ZM45.5979%2037.5475C45.1076%2037.1908%2044.4434%2037.1908%2043.9531%2037.5475L36.8243%2042.7272C36.3333%2043.0831%2036.1284%2043.7151%2036.3158%2044.2914L39.0387%2052.6722C39.2261%2053.2484%2039.7634%2053.6393%2040.3699%2053.6393H49.1818C49.7876%2053.6393%2050.3249%2053.2484%2050.5123%2052.6722L53.2358%2044.2914C53.4225%2043.7151%2053.2177%2043.0831%2052.7274%2042.7272L45.5979%2037.5475ZM58.5848%2046.1754L63.4609%2040.279C64.0486%2042.1401%2064.3649%2044.1208%2064.3649%2046.1754C64.3649%2048.2299%2064.0486%2050.2106%2063.4609%2052.0717L58.5848%2046.1754ZM26.0908%2040.279L30.9662%2046.1754L26.0908%2052.0717C25.5031%2050.2106%2025.1861%2048.2299%2025.1861%2046.1754C25.1861%2044.1208%2025.5031%2042.1401%2026.0908%2040.279ZM44.7758%2040.4086L50.2598%2044.3935L48.1649%2050.8406H41.3861L39.2912%2044.3935L44.7758%2040.4086ZM50.6715%2027.4903L44.7758%2032.3657L38.8795%2027.4903C40.7406%2026.9026%2042.7213%2026.5856%2044.7758%2026.5856C46.8297%2026.5856%2048.8104%2026.9026%2050.6715%2027.4903ZM74.1602%2015.392H15.3915C15.3915%2014.9548%2015.3915%2012.5933%2015.3915%2012.5933H74.1602V15.392ZM15.3915%209.79454V6.99648H74.1602V9.79454H15.3915Z'%20fill='%23A0A9AF'/%3e%3c/g%3e%3c/svg%3e", c1 = ["onClick"], d1 = ["src"], u1 = {
|
|
2070
|
+
}, o1 = /* @__PURE__ */ At(r1, [["__scopeId", "data-v-938dd424"]]), Wc = "data:image/svg+xml,%3csvg%20width='69'%20height='70'%20viewBox='0%200%2069%2070'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_b_3196_29756)'%3e%3crect%20x='29'%20y='35'%20width='11'%20height='11'%20rx='1'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='29.5'%20y='35.5'%20width='10'%20height='10'%20rx='0.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cg%20filter='url(%23filter1_b_3196_29756)'%3e%3crect%20x='48'%20y='35'%20width='11'%20height='11'%20rx='1'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='48.5'%20y='35.5'%20width='10'%20height='10'%20rx='0.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cg%20filter='url(%23filter2_b_3196_29756)'%3e%3crect%20x='10'%20y='35'%20width='11'%20height='11'%20rx='1'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='10.5'%20y='35.5'%20width='10'%20height='10'%20rx='0.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cg%20opacity='0.6'%3e%3cpath%20d='M60.5556%208.70056H8.44444C4.33299%208.70056%201%2011.7003%201%2015.4006V62.3007C1%2066.001%204.33299%2069.0007%208.44444%2069.0007H60.5556C64.667%2069.0007%2068%2066.001%2068%2062.3007V15.4006C68%2011.7003%2064.667%208.70056%2060.5556%208.70056Z'%20stroke='white'%20stroke-width='1.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M1%2028.7991H68'%20stroke='white'%20stroke-width='1.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M49.3872%201.99982V15.3999'%20stroke='white'%20stroke-width='3.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M19.6128%201.99982V15.3999'%20stroke='white'%20stroke-width='3.88'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/g%3e%3cdefs%3e%3cfilter%20id='filter0_b_3196_29756'%20x='13'%20y='19'%20width='43'%20height='43'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29756'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29756'%20result='shape'/%3e%3c/filter%3e%3cfilter%20id='filter1_b_3196_29756'%20x='32'%20y='19'%20width='43'%20height='43'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29756'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29756'%20result='shape'/%3e%3c/filter%3e%3cfilter%20id='filter2_b_3196_29756'%20x='-6'%20y='19'%20width='43'%20height='43'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29756'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29756'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e", l1 = "data:image/svg+xml,%3csvg%20width='75'%20height='75'%20viewBox='0%200%2075%2075'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20filter='url(%23filter0_b_3196_29781)'%3e%3crect%20x='6.00049'%20y='6'%20width='60'%20height='60'%20rx='30'%20fill='white'%20fill-opacity='0.08'/%3e%3crect%20x='6.50049'%20y='6.5'%20width='59'%20height='59'%20rx='29.5'%20stroke='white'%20stroke-opacity='0.16'/%3e%3c/g%3e%3cpath%20opacity='0.6'%20d='M71%2036C71%2042.9221%2068.9475%2049.6887%2065.1019%2055.4443C61.2563%2061.1998%2055.7905%2065.6859%2049.3954%2068.3351C43.0004%2070.9844%2035.9634%2071.6779%2029.1743%2070.3279C22.3851%2068.978%2016.1487%2065.6452%2011.2536%2060.751C6.3585%2055.8569%203.02455%2049.6211%201.67333%2042.8322C0.322108%2036.0433%201.01429%2029.0061%203.66235%2022.6106C6.31041%2016.2151%2010.7954%2010.7484%2016.5503%206.90175C22.3051%203.05512%2029.0714%201.0013%2035.9934%201C40.5903%200.999139%2045.1422%201.9038%2049.3894%203.66233C53.6365%205.42086%2057.4957%207.99881%2060.7464%2011.2489C63.9972%2014.4991%2066.5758%2018.3577%2068.3352%2022.6046C70.0945%2026.8514%2071%2031.4032%2071%2036V36Z'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20opacity='0.6'%20d='M74%2074L62%2062'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M44.4013%2048.6044V45.4039C44.4013%2043.7062%2043.727%2042.0781%2042.5266%2040.8777C41.3263%2039.6773%2039.6983%2039.0029%2038.0007%2039.0029H28.3999C26.7024%2039.0029%2025.0743%2039.6773%2023.874%2040.8777C22.6737%2042.0781%2021.9993%2043.7062%2021.9993%2045.4039V48.6044'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='2.38256'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M33.2031%2032.6016C36.738%2032.6016%2039.6037%2029.7358%2039.6037%2026.2006C39.6037%2022.6654%2036.738%2019.7996%2033.2031%2019.7996C29.6682%2019.7996%2026.8026%2022.6654%2026.8026%2026.2006C26.8026%2029.7358%2029.6682%2032.6016%2033.2031%2032.6016Z'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='2.38256'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cpath%20d='M49.1998%2027.8009V37.4024M54.0003%2032.6017H44.3994'%20stroke='white'%20stroke-opacity='0.6'%20stroke-width='2.38256'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3cdefs%3e%3cfilter%20id='filter0_b_3196_29781'%20x='-9.99951'%20y='-10'%20width='92'%20height='92'%20filterUnits='userSpaceOnUse'%20color-interpolation-filters='sRGB'%3e%3cfeFlood%20flood-opacity='0'%20result='BackgroundImageFix'/%3e%3cfeGaussianBlur%20in='BackgroundImageFix'%20stdDeviation='8'/%3e%3cfeComposite%20in2='SourceAlpha'%20operator='in'%20result='effect1_backgroundBlur_3196_29781'/%3e%3cfeBlend%20mode='normal'%20in='SourceGraphic'%20in2='effect1_backgroundBlur_3196_29781'%20result='shape'/%3e%3c/filter%3e%3c/defs%3e%3c/svg%3e", Kc = "data:image/svg+xml,%3csvg%20width='90'%20height='90'%20viewBox='0%200%2090%2090'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='Football%20Jersey'%3e%3cg%20id='Layer%2010'%3e%3cpath%20id='Vector'%20d='M71.7192%2052.1016V40.3172L87.7223%2033.6376C87.9169%2033.558%2088.0912%2033.4359%2088.2323%2033.2802C88.3735%2033.1244%2088.4779%2032.939%2088.538%2032.7376C88.5985%2032.5342%2088.6123%2032.3197%2088.5782%2032.1103C88.5441%2031.9009%2088.463%2031.7018%2088.3411%2031.5282L71.4661%207.62193C71.4289%207.5532%2071.3866%207.48739%2071.3395%207.42506C69.4243%205.50395%2067.1463%203.98259%2064.6381%202.94935C62.1298%201.91612%2059.4413%201.39161%2056.7286%201.40631H53.438C53.065%201.40631%2052.7073%201.55446%2052.4436%201.81819C52.1799%202.08191%2052.0317%202.4396%2052.0317%202.81256V5.62506C52.0317%207.48986%2051.2909%209.27829%2049.9723%2010.5969C48.6537%2011.9155%2046.8653%2012.6563%2045.0005%2012.6563C43.1357%2012.6563%2041.3472%2011.9155%2040.0286%2010.5969C38.71%209.27829%2037.9692%207.48986%2037.9692%205.62506V2.81256C37.9692%202.4396%2037.8211%202.08191%2037.5573%201.81819C37.2936%201.55446%2036.9359%201.40631%2036.563%201.40631H33.2723C30.5634%201.39718%2027.8796%201.92572%2025.3764%202.96128C22.8731%203.99684%2020.6003%205.51885%2018.6895%207.43912C18.6424%207.50145%2018.6001%207.56727%2018.563%207.63599L1.68797%2031.5422C1.56603%2031.7159%201.48498%2031.9149%201.45089%2032.1244C1.41679%2032.3338%201.43054%2032.5482%201.49109%2032.7516C1.55114%2032.9531%201.65558%2033.1385%201.79673%2033.2942C1.93788%2033.45%202.11215%2033.5721%202.30672%2033.6516L18.2817%2040.3172V81.5626C18.2817%2081.9355%2018.4299%2082.2932%2018.6936%2082.5569C18.9573%2082.8206%2019.315%2082.9688%2019.688%2082.9688H57.1505C59.2007%2085.1122%2061.7416%2086.7246%2064.5541%2087.6667C67.3665%2088.6089%2070.366%2088.8527%2073.2936%2088.3769C76.2213%2087.9011%2078.9892%2086.7202%2081.3586%2084.9359C83.7279%2083.1516%2085.6276%2080.8176%2086.8936%2078.1353C88.1596%2075.453%2088.7539%2072.503%2088.6253%2069.5397C88.4967%2066.5764%2087.649%2063.6889%2086.1554%2061.1264C84.6617%2058.5639%2082.567%2056.4032%2080.052%2054.8309C77.5369%2053.2587%2074.6771%2052.3219%2071.7192%2052.1016ZM84.8255%2065.011L77.7942%2066.0235L71.7192%2061.2001V54.9141C74.6356%2055.1837%2077.4155%2056.2757%2079.7356%2058.0631C82.0558%2059.8505%2083.8208%2062.2599%2084.8255%2065.011ZM73.5755%2074.5313H67.1067L64.927%2067.9922L70.313%2063.6751L75.6989%2067.9922L73.5755%2074.5313ZM54.8442%2070.3126C54.8475%2069.4546%2054.9227%2068.5985%2055.0692%2067.7532L62.227%2068.7657L64.5192%2075.6563L59.7661%2081.5626C58.2159%2080.1269%2056.9786%2078.3867%2056.1317%2076.4509C55.2848%2074.5152%2054.8465%2072.4255%2054.8442%2070.3126ZM68.9067%2052.0313C66.9688%2052.1978%2065.07%2052.6726%2063.2817%2053.4376V51.3141C63.2728%2045.3135%2065.2507%2039.4787%2068.9067%2034.7204V52.0313ZM68.9067%2054.8438V61.1297L62.8739%2066.0938L55.8427%2065.0813C56.8334%2062.3231%2058.5873%2059.9031%2060.9002%2058.1031C63.213%2056.3031%2065.9897%2055.1972%2068.9067%2054.9141V54.8438ZM71.7192%2037.2657V12.8672L85.0223%2031.7251L71.7192%2037.2657ZM4.97859%2031.7251L18.2817%2012.8672V37.2657L4.97859%2031.7251ZM21.0942%2034.7204C24.7503%2039.4787%2026.7282%2045.3135%2026.7192%2051.3141V80.1563H21.0942V34.7204ZM29.5317%2080.1563V51.3141C29.546%2043.5117%2026.5194%2036.0108%2021.0942%2030.4032V9.02818C24.3875%205.92407%2028.7467%204.20253%2033.2723%204.21881H35.1567V5.62506C35.1567%208.23578%2036.1938%2010.7396%2038.0399%2012.5856C39.8859%2014.4317%2042.3897%2015.4688%2045.0005%2015.4688C47.6112%2015.4688%2050.115%2014.4317%2051.9611%2012.5856C53.8071%2010.7396%2054.8442%208.23578%2054.8442%205.62506V4.21881H56.7286C61.2542%204.20253%2065.6134%205.92407%2068.9067%209.02818V30.4032C63.4816%2036.0108%2060.455%2043.5117%2060.4692%2051.3141V54.9282C56.3926%2057.542%2053.5197%2061.6664%2052.4809%2066.3963C51.4421%2071.1261%2052.3224%2076.0748%2054.9286%2080.1563H29.5317ZM61.988%2083.3204L66.7692%2077.3438H73.8005L78.5817%2083.3204C76.1021%2084.9263%2073.211%2085.7808%2070.2567%2085.7808C67.3025%2085.7808%2064.4113%2084.9263%2061.9317%2083.3204H61.988ZM80.8598%2081.5626L76.1067%2075.6563L78.3989%2068.7657L85.5567%2067.7532C85.9891%2070.2641%2085.7858%2072.8433%2084.9653%2075.2555C84.1449%2077.6677%2082.7335%2079.836%2080.8598%2081.5626Z'%20fill='%23A0A9AF'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e", qc = "data:image/svg+xml,%3csvg%20width='90'%20height='90'%20viewBox='0%200%2090%2090'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='fi_8584464'%3e%3cpath%20id='Vector'%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M76.9582%2067.1642V5.59678C76.9582%204.8244%2076.3322%204.19775%2075.5592%204.19775H13.9918C13.2194%204.19775%2012.5928%204.8244%2012.5928%205.59678V67.1642C12.5928%2067.676%2012.8722%2068.1475%2013.3222%2068.3926L44.1055%2085.1836C44.5233%2085.4113%2045.0277%2085.4113%2045.4455%2085.1836L76.2295%2068.3926C76.6788%2068.1475%2076.9582%2067.676%2076.9582%2067.1642ZM74.1602%2018.1901V66.3333L44.7758%2082.3614L15.3915%2066.3333V18.1901H74.1602ZM44.7758%2023.7875C32.419%2023.7875%2022.3873%2033.8192%2022.3873%2046.1754C22.3873%2058.5316%2032.419%2068.5632%2044.7758%2068.5632C57.132%2068.5632%2067.1637%2058.5316%2067.1637%2046.1754C67.1637%2033.8192%2057.132%2023.7875%2044.7758%2023.7875ZM38.8795%2064.8604L44.7758%2059.985L50.6715%2064.8604C48.8104%2065.4481%2046.8297%2065.7651%2044.7758%2065.7651C42.7213%2065.7651%2040.7406%2065.4481%2038.8795%2064.8604ZM35.939%2028.6905C32.2168%2030.5772%2029.177%2033.617%2027.2903%2037.3392L33.8603%2045.2834C34.2881%2045.8013%2034.2881%2046.5495%2033.8603%2047.0673L27.2903%2055.0115C29.177%2058.7337%2032.2175%2061.7742%2035.939%2063.6602L43.8839%2057.0909C44.4011%2056.6631%2045.1499%2056.6631%2045.6671%2057.0909L53.6119%2063.6602C57.3342%2061.7736%2060.374%2058.7337%2062.2607%2055.0115L55.6907%2047.0673C55.2628%2046.5495%2055.2628%2045.8013%2055.6907%2045.2834L62.2607%2037.3392C60.374%2033.617%2057.3342%2030.5765%2053.6119%2028.6905L45.6671%2035.2598C45.1499%2035.6877%2044.4011%2035.6877%2043.8839%2035.2598L35.939%2028.6905ZM45.5979%2037.5475C45.1076%2037.1908%2044.4434%2037.1908%2043.9531%2037.5475L36.8243%2042.7272C36.3333%2043.0831%2036.1284%2043.7151%2036.3158%2044.2914L39.0387%2052.6722C39.2261%2053.2484%2039.7634%2053.6393%2040.3699%2053.6393H49.1818C49.7876%2053.6393%2050.3249%2053.2484%2050.5123%2052.6722L53.2358%2044.2914C53.4225%2043.7151%2053.2177%2043.0831%2052.7274%2042.7272L45.5979%2037.5475ZM58.5848%2046.1754L63.4609%2040.279C64.0486%2042.1401%2064.3649%2044.1208%2064.3649%2046.1754C64.3649%2048.2299%2064.0486%2050.2106%2063.4609%2052.0717L58.5848%2046.1754ZM26.0908%2040.279L30.9662%2046.1754L26.0908%2052.0717C25.5031%2050.2106%2025.1861%2048.2299%2025.1861%2046.1754C25.1861%2044.1208%2025.5031%2042.1401%2026.0908%2040.279ZM44.7758%2040.4086L50.2598%2044.3935L48.1649%2050.8406H41.3861L39.2912%2044.3935L44.7758%2040.4086ZM50.6715%2027.4903L44.7758%2032.3657L38.8795%2027.4903C40.7406%2026.9026%2042.7213%2026.5856%2044.7758%2026.5856C46.8297%2026.5856%2048.8104%2026.9026%2050.6715%2027.4903ZM74.1602%2015.392H15.3915C15.3915%2014.9548%2015.3915%2012.5933%2015.3915%2012.5933H74.1602V15.392ZM15.3915%209.79454V6.99648H74.1602V9.79454H15.3915Z'%20fill='%23A0A9AF'/%3e%3c/g%3e%3c/svg%3e", c1 = ["onClick"], d1 = ["src"], u1 = {
|
|
2066
2071
|
__name: "GSCGridTeamsMatches",
|
|
2067
2072
|
props: {
|
|
2068
2073
|
isPlayer: {
|
|
@@ -2249,7 +2254,7 @@ const Qa = /* @__PURE__ */ new Map([
|
|
|
2249
2254
|
], 12, c1))), 128))
|
|
2250
2255
|
], 6));
|
|
2251
2256
|
}
|
|
2252
|
-
}, h1 = /* @__PURE__ */ At(u1, [["__scopeId", "data-v-
|
|
2257
|
+
}, h1 = /* @__PURE__ */ At(u1, [["__scopeId", "data-v-54b7a3ea"]]);
|
|
2253
2258
|
function Fm(s, e) {
|
|
2254
2259
|
return function() {
|
|
2255
2260
|
return s.apply(e, arguments);
|
|
@@ -4381,7 +4386,7 @@ function bb(s) {
|
|
|
4381
4386
|
const i = s.value.getBoundingClientRect();
|
|
4382
4387
|
e.value.width = i.width, e.value.height = i.height;
|
|
4383
4388
|
}
|
|
4384
|
-
return
|
|
4389
|
+
return ot(() => {
|
|
4385
4390
|
t(), window.addEventListener("resize", t);
|
|
4386
4391
|
}), Zt(() => {
|
|
4387
4392
|
window.removeEventListener("resize", t);
|
|
@@ -5000,7 +5005,7 @@ var Hb = Bt({
|
|
|
5000
5005
|
min: p.value
|
|
5001
5006
|
})));
|
|
5002
5007
|
}
|
|
5003
|
-
|
|
5008
|
+
ot(() => {
|
|
5004
5009
|
ta(() => E()), setTimeout(() => E(), 1e3), I(), ie(), window.addEventListener("resize", R, { passive: !0 }), t("init");
|
|
5005
5010
|
}), Zt(() => {
|
|
5006
5011
|
S && clearTimeout(S), _ && clearInterval(_), window.removeEventListener("resize", R, {
|
|
@@ -5101,7 +5106,7 @@ var Hb = Bt({
|
|
|
5101
5106
|
}), Se(() => s.modelValue, (L) => {
|
|
5102
5107
|
L !== m.value && oe(Number(L));
|
|
5103
5108
|
}), Se(c, $), t("before-init"), T();
|
|
5104
|
-
const
|
|
5109
|
+
const lt = {
|
|
5105
5110
|
config: l,
|
|
5106
5111
|
slidesCount: c,
|
|
5107
5112
|
slideWidth: o,
|
|
@@ -5123,19 +5128,19 @@ var Hb = Bt({
|
|
|
5123
5128
|
next: be,
|
|
5124
5129
|
prev: Oe,
|
|
5125
5130
|
nav: We,
|
|
5126
|
-
data:
|
|
5131
|
+
data: lt
|
|
5127
5132
|
});
|
|
5128
|
-
const wt = e.default || e.slides, Lt = e.addons, It = et(
|
|
5133
|
+
const wt = e.default || e.slides, Lt = e.addons, It = et(lt);
|
|
5129
5134
|
return () => {
|
|
5130
5135
|
const L = rf(wt == null ? void 0 : wt(It)), te = (Lt == null ? void 0 : Lt(It)) || [];
|
|
5131
5136
|
L.forEach((J, ae) => J.props.index = ae);
|
|
5132
5137
|
let Y = L;
|
|
5133
5138
|
if (l.wrapAround) {
|
|
5134
|
-
const J = L.map((X, K) =>
|
|
5139
|
+
const J = L.map((X, K) => xs(X, {
|
|
5135
5140
|
index: -L.length + K,
|
|
5136
5141
|
isClone: !0,
|
|
5137
5142
|
key: `clone-before-${K}`
|
|
5138
|
-
})), ae = L.map((X, K) =>
|
|
5143
|
+
})), ae = L.map((X, K) => xs(X, {
|
|
5139
5144
|
index: L.length + K,
|
|
5140
5145
|
isClone: !0,
|
|
5141
5146
|
key: `clone-after-${K}`
|
|
@@ -5860,7 +5865,7 @@ const x_ = /* @__PURE__ */ f_(Cl, [["render", T_], ["__scopeId", "data-v-fb269a1
|
|
|
5860
5865
|
function m() {
|
|
5861
5866
|
r.value = !1, e("click-ready");
|
|
5862
5867
|
}
|
|
5863
|
-
return
|
|
5868
|
+
return ot(() => {
|
|
5864
5869
|
document.addEventListener("click", d);
|
|
5865
5870
|
}), xn(() => {
|
|
5866
5871
|
document.removeEventListener("click", d);
|
|
@@ -5898,7 +5903,7 @@ const x_ = /* @__PURE__ */ f_(Cl, [["render", T_], ["__scopeId", "data-v-fb269a1
|
|
|
5898
5903
|
], 4),
|
|
5899
5904
|
ve(sa, null, {
|
|
5900
5905
|
default: ze(() => [
|
|
5901
|
-
|
|
5906
|
+
Ss(v("div", A_, [
|
|
5902
5907
|
v("div", null, [
|
|
5903
5908
|
v("div", {
|
|
5904
5909
|
class: "gsc-dropdown__items",
|
|
@@ -5926,7 +5931,7 @@ const x_ = /* @__PURE__ */ f_(Cl, [["render", T_], ["__scopeId", "data-v-fb269a1
|
|
|
5926
5931
|
])) : x("", !0)
|
|
5927
5932
|
])
|
|
5928
5933
|
], 512), [
|
|
5929
|
-
[
|
|
5934
|
+
[ws, r.value]
|
|
5930
5935
|
])
|
|
5931
5936
|
]),
|
|
5932
5937
|
_: 3
|
|
@@ -6070,13 +6075,13 @@ const x_ = /* @__PURE__ */ f_(Cl, [["render", T_], ["__scopeId", "data-v-fb269a1
|
|
|
6070
6075
|
function m(f) {
|
|
6071
6076
|
e("input", f);
|
|
6072
6077
|
}
|
|
6073
|
-
return
|
|
6078
|
+
return ot(() => {
|
|
6074
6079
|
o();
|
|
6075
6080
|
}), (f, h) => (y(), b("div", {
|
|
6076
6081
|
class: "tournament-select",
|
|
6077
6082
|
style: B(a.value)
|
|
6078
6083
|
}, [
|
|
6079
|
-
ve(Re(R_),
|
|
6084
|
+
ve(Re(R_), Rs(t, {
|
|
6080
6085
|
"model-value": r.value,
|
|
6081
6086
|
items: n.value,
|
|
6082
6087
|
onInput: u,
|
|
@@ -6449,7 +6454,7 @@ const J_ = /* @__PURE__ */ U_(kl, [["render", Y_], ["__scopeId", "data-v-fb269a1
|
|
|
6449
6454
|
function m() {
|
|
6450
6455
|
r.value = !1, e("click-ready");
|
|
6451
6456
|
}
|
|
6452
|
-
return
|
|
6457
|
+
return ot(() => {
|
|
6453
6458
|
document.addEventListener("click", d);
|
|
6454
6459
|
}), xn(() => {
|
|
6455
6460
|
document.removeEventListener("click", d);
|
|
@@ -6487,7 +6492,7 @@ const J_ = /* @__PURE__ */ U_(kl, [["render", Y_], ["__scopeId", "data-v-fb269a1
|
|
|
6487
6492
|
], 4),
|
|
6488
6493
|
ve(sa, null, {
|
|
6489
6494
|
default: ze(() => [
|
|
6490
|
-
|
|
6495
|
+
Ss(v("div", eS, [
|
|
6491
6496
|
v("div", null, [
|
|
6492
6497
|
v("div", {
|
|
6493
6498
|
class: "gsc-dropdown__items",
|
|
@@ -6515,7 +6520,7 @@ const J_ = /* @__PURE__ */ U_(kl, [["render", Y_], ["__scopeId", "data-v-fb269a1
|
|
|
6515
6520
|
])) : x("", !0)
|
|
6516
6521
|
])
|
|
6517
6522
|
], 512), [
|
|
6518
|
-
[
|
|
6523
|
+
[ws, r.value]
|
|
6519
6524
|
])
|
|
6520
6525
|
]),
|
|
6521
6526
|
_: 3
|
|
@@ -6579,7 +6584,7 @@ function cS(s) {
|
|
|
6579
6584
|
const i = s.value.getBoundingClientRect();
|
|
6580
6585
|
e.value.width = i.width, e.value.height = i.height;
|
|
6581
6586
|
}
|
|
6582
|
-
return
|
|
6587
|
+
return ot(() => {
|
|
6583
6588
|
t(), window.addEventListener("resize", t);
|
|
6584
6589
|
}), Zt(() => {
|
|
6585
6590
|
window.removeEventListener("resize", t);
|
|
@@ -7028,7 +7033,7 @@ function NS(s) {
|
|
|
7028
7033
|
const i = s.value.getBoundingClientRect();
|
|
7029
7034
|
e.value.width = i.width, e.value.height = i.height;
|
|
7030
7035
|
}
|
|
7031
|
-
return
|
|
7036
|
+
return ot(() => {
|
|
7032
7037
|
t(), window.addEventListener("resize", t);
|
|
7033
7038
|
}), Zt(() => {
|
|
7034
7039
|
window.removeEventListener("resize", t);
|
|
@@ -7684,7 +7689,7 @@ function rw(s) {
|
|
|
7684
7689
|
const i = s.value.getBoundingClientRect();
|
|
7685
7690
|
e.value.width = i.width, e.value.height = i.height;
|
|
7686
7691
|
}
|
|
7687
|
-
return
|
|
7692
|
+
return ot(() => {
|
|
7688
7693
|
t(), window.addEventListener("resize", t);
|
|
7689
7694
|
}), Zt(() => {
|
|
7690
7695
|
window.removeEventListener("resize", t);
|
|
@@ -10023,7 +10028,7 @@ var mT = Bt({
|
|
|
10023
10028
|
min: p.value
|
|
10024
10029
|
})));
|
|
10025
10030
|
}
|
|
10026
|
-
|
|
10031
|
+
ot(() => {
|
|
10027
10032
|
ta(() => E()), setTimeout(() => E(), 1e3), I(), ie(), window.addEventListener("resize", R, { passive: !0 }), t("init");
|
|
10028
10033
|
}), Zt(() => {
|
|
10029
10034
|
S && clearTimeout(S), _ && clearInterval(_), window.removeEventListener("resize", R, {
|
|
@@ -10124,7 +10129,7 @@ var mT = Bt({
|
|
|
10124
10129
|
}), Se(() => s.modelValue, (L) => {
|
|
10125
10130
|
L !== m.value && oe(Number(L));
|
|
10126
10131
|
}), Se(c, $), t("before-init"), T();
|
|
10127
|
-
const
|
|
10132
|
+
const lt = {
|
|
10128
10133
|
config: l,
|
|
10129
10134
|
slidesCount: c,
|
|
10130
10135
|
slideWidth: o,
|
|
@@ -10146,19 +10151,19 @@ var mT = Bt({
|
|
|
10146
10151
|
next: be,
|
|
10147
10152
|
prev: Oe,
|
|
10148
10153
|
nav: We,
|
|
10149
|
-
data:
|
|
10154
|
+
data: lt
|
|
10150
10155
|
});
|
|
10151
|
-
const wt = e.default || e.slides, Lt = e.addons, It = et(
|
|
10156
|
+
const wt = e.default || e.slides, Lt = e.addons, It = et(lt);
|
|
10152
10157
|
return () => {
|
|
10153
10158
|
const L = Ff(wt == null ? void 0 : wt(It)), te = (Lt == null ? void 0 : Lt(It)) || [];
|
|
10154
10159
|
L.forEach((J, ae) => J.props.index = ae);
|
|
10155
10160
|
let Y = L;
|
|
10156
10161
|
if (l.wrapAround) {
|
|
10157
|
-
const J = L.map((X, K) =>
|
|
10162
|
+
const J = L.map((X, K) => xs(X, {
|
|
10158
10163
|
index: -L.length + K,
|
|
10159
10164
|
isClone: !0,
|
|
10160
10165
|
key: `clone-before-${K}`
|
|
10161
|
-
})), ae = L.map((X, K) =>
|
|
10166
|
+
})), ae = L.map((X, K) => xs(X, {
|
|
10162
10167
|
index: L.length + K,
|
|
10163
10168
|
isClone: !0,
|
|
10164
10169
|
key: `clone-after-${K}`
|
|
@@ -10850,7 +10855,7 @@ var KT = Bt({
|
|
|
10850
10855
|
min: p.value
|
|
10851
10856
|
})));
|
|
10852
10857
|
}
|
|
10853
|
-
|
|
10858
|
+
ot(() => {
|
|
10854
10859
|
ta(() => E()), setTimeout(() => E(), 1e3), I(), ie(), window.addEventListener("resize", R, { passive: !0 }), t("init");
|
|
10855
10860
|
}), Zt(() => {
|
|
10856
10861
|
S && clearTimeout(S), _ && clearInterval(_), window.removeEventListener("resize", R, {
|
|
@@ -10951,7 +10956,7 @@ var KT = Bt({
|
|
|
10951
10956
|
}), Se(() => s.modelValue, (L) => {
|
|
10952
10957
|
L !== m.value && oe(Number(L));
|
|
10953
10958
|
}), Se(c, $), t("before-init"), T();
|
|
10954
|
-
const
|
|
10959
|
+
const lt = {
|
|
10955
10960
|
config: l,
|
|
10956
10961
|
slidesCount: c,
|
|
10957
10962
|
slideWidth: o,
|
|
@@ -10973,19 +10978,19 @@ var KT = Bt({
|
|
|
10973
10978
|
next: be,
|
|
10974
10979
|
prev: Oe,
|
|
10975
10980
|
nav: We,
|
|
10976
|
-
data:
|
|
10981
|
+
data: lt
|
|
10977
10982
|
});
|
|
10978
|
-
const wt = e.default || e.slides, Lt = e.addons, It = et(
|
|
10983
|
+
const wt = e.default || e.slides, Lt = e.addons, It = et(lt);
|
|
10979
10984
|
return () => {
|
|
10980
10985
|
const L = Nf(wt == null ? void 0 : wt(It)), te = (Lt == null ? void 0 : Lt(It)) || [];
|
|
10981
10986
|
L.forEach((J, ae) => J.props.index = ae);
|
|
10982
10987
|
let Y = L;
|
|
10983
10988
|
if (l.wrapAround) {
|
|
10984
|
-
const J = L.map((X, K) =>
|
|
10989
|
+
const J = L.map((X, K) => xs(X, {
|
|
10985
10990
|
index: -L.length + K,
|
|
10986
10991
|
isClone: !0,
|
|
10987
10992
|
key: `clone-before-${K}`
|
|
10988
|
-
})), ae = L.map((X, K) =>
|
|
10993
|
+
})), ae = L.map((X, K) => xs(X, {
|
|
10989
10994
|
index: L.length + K,
|
|
10990
10995
|
isClone: !0,
|
|
10991
10996
|
key: `clone-after-${K}`
|
|
@@ -11329,7 +11334,7 @@ const hs = (s, e) => {
|
|
|
11329
11334
|
s.isLandingMode ? "border-top-left-radius: 9px; border-top-right-radius: 9px;" : "margin-bottom:12px"
|
|
11330
11335
|
)
|
|
11331
11336
|
}, [
|
|
11332
|
-
(y(), ee(Re(qT),
|
|
11337
|
+
(y(), ee(Re(qT), Rs(a.value, {
|
|
11333
11338
|
modelValue: o.value.index,
|
|
11334
11339
|
ref_key: "matchDayPickerCarousel",
|
|
11335
11340
|
ref: i,
|
|
@@ -11343,7 +11348,7 @@ const hs = (s, e) => {
|
|
|
11343
11348
|
key: u.key
|
|
11344
11349
|
}, {
|
|
11345
11350
|
default: ze(() => [
|
|
11346
|
-
ve(ax,
|
|
11351
|
+
ve(ax, Rs(t, {
|
|
11347
11352
|
"match-day": u,
|
|
11348
11353
|
"match-day-selected": o.value,
|
|
11349
11354
|
"is-landing-mode": s.isLandingMode,
|
|
@@ -12129,7 +12134,7 @@ const lx = { class: "game-info__teams" }, cx = { class: "game-info__teams__team_
|
|
|
12129
12134
|
}, null, 8, ["status", "is-live", "date-time-millis", "round-abbreviation", "is-landing-mode", "is-round-mode"])
|
|
12130
12135
|
]),
|
|
12131
12136
|
v("div", iC, [
|
|
12132
|
-
ve(Kd,
|
|
12137
|
+
ve(Kd, Rs(m.value, {
|
|
12133
12138
|
"is-television-visible": n.value,
|
|
12134
12139
|
game: s.game,
|
|
12135
12140
|
"is-landing-mode": s.isLandingMode,
|
|
@@ -12160,7 +12165,7 @@ const lx = { class: "game-info__teams" }, cx = { class: "game-info__teams__team_
|
|
|
12160
12165
|
], 6),
|
|
12161
12166
|
ve(sa, null, {
|
|
12162
12167
|
default: ze(() => [
|
|
12163
|
-
|
|
12168
|
+
Ss(v("div", rC, [
|
|
12164
12169
|
oC,
|
|
12165
12170
|
v("div", {
|
|
12166
12171
|
class: A(["game-events", u.value.events])
|
|
@@ -12194,7 +12199,7 @@ const lx = { class: "game-info__teams" }, cx = { class: "game-info__teams__team_
|
|
|
12194
12199
|
yC
|
|
12195
12200
|
], 2)
|
|
12196
12201
|
], 512), [
|
|
12197
|
-
[
|
|
12202
|
+
[ws, a.value]
|
|
12198
12203
|
])
|
|
12199
12204
|
]),
|
|
12200
12205
|
_: 1
|
|
@@ -13135,7 +13140,7 @@ const lx = { class: "game-info__teams" }, cx = { class: "game-info__teams__team_
|
|
|
13135
13140
|
width: t.width
|
|
13136
13141
|
})), R = Z(() => {
|
|
13137
13142
|
if (t.games)
|
|
13138
|
-
return
|
|
13143
|
+
return lt(t.games, t.isTeamGamePerPage);
|
|
13139
13144
|
{
|
|
13140
13145
|
const J = u.value.get(d.value.key);
|
|
13141
13146
|
return J && t.isTeamGamePerPage && t.onlyGamesTeamId ? [
|
|
@@ -13435,12 +13440,12 @@ const lx = { class: "game-info__teams" }, cx = { class: "game-info__teams__team_
|
|
|
13435
13440
|
F.value.set(X, rt), ae.set(X, rt);
|
|
13436
13441
|
const yt = K.reduce((Ps, ha) => (ha.games.forEach((Hs) => {
|
|
13437
13442
|
Hs.game_id === t.defaultGameId && (g.value = X), Hs.roundAbbreviation = Number.isNaN(pe) ? pe : `J ${pe}`, Hs.scheduleKey = rt, Hs.is_live && rt.liveGamesIds.add(Hs.game_id);
|
|
13438
|
-
}), Ps = Ps.concat(ha.games), Ps), []), li =
|
|
13443
|
+
}), Ps = Ps.concat(ha.games), Ps), []), li = lt(yt);
|
|
13439
13444
|
return u.value.set(X, li), ae;
|
|
13440
13445
|
}, /* @__PURE__ */ new Map()).values()
|
|
13441
13446
|
);
|
|
13442
13447
|
}
|
|
13443
|
-
function
|
|
13448
|
+
function lt(J, ae = !1) {
|
|
13444
13449
|
const X = [];
|
|
13445
13450
|
if (t.gamesPerMatchDay > 0) {
|
|
13446
13451
|
let K = [];
|
|
@@ -13540,7 +13545,7 @@ const lx = { class: "game-info__teams" }, cx = { class: "game-info__teams__team_
|
|
|
13540
13545
|
throw new Error(J);
|
|
13541
13546
|
}
|
|
13542
13547
|
}
|
|
13543
|
-
return
|
|
13548
|
+
return ot(() => {
|
|
13544
13549
|
Lt();
|
|
13545
13550
|
}), pt(), (J, ae) => (y(), b("div", {
|
|
13546
13551
|
ref_key: "calendarByGame",
|
|
@@ -13803,7 +13808,7 @@ function Nk(s, e, t, i, a, n) {
|
|
|
13803
13808
|
])
|
|
13804
13809
|
], 2);
|
|
13805
13810
|
}
|
|
13806
|
-
const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-
|
|
13811
|
+
const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-2cb1b865"]]), Gf = ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb"], Vf = [
|
|
13807
13812
|
"Enero",
|
|
13808
13813
|
"Febrero",
|
|
13809
13814
|
"Marzo",
|
|
@@ -13920,7 +13925,7 @@ const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-588d8b1
|
|
|
13920
13925
|
]);
|
|
13921
13926
|
};
|
|
13922
13927
|
}
|
|
13923
|
-
}, ga = /* @__PURE__ */ At(Qk, [["__scopeId", "data-v-
|
|
13928
|
+
}, ga = /* @__PURE__ */ At(Qk, [["__scopeId", "data-v-12fb8db0"]]), jf = (s) => (Je("data-v-5db14f31"), s = s(), Xe(), s), eE = ["src"], tE = ["src"], sE = { class: "coming-match__body" }, iE = { class: "coming-match__data" }, aE = ["src"], nE = {
|
|
13924
13929
|
key: 0,
|
|
13925
13930
|
class: "coming-match__live"
|
|
13926
13931
|
}, rE = { class: "coming-match__live__score" }, oE = { class: "coming-match__live__time" }, lE = /* @__PURE__ */ jf(() => /* @__PURE__ */ v("div", { class: "bullet" }, null, -1)), cE = /* @__PURE__ */ jf(() => /* @__PURE__ */ v("div", { class: "coming-match__live__time__text" }, "LIVE", -1)), dE = { class: "coming-match__live__time__time" }, uE = {
|
|
@@ -14041,7 +14046,7 @@ const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-588d8b1
|
|
|
14041
14046
|
], 2);
|
|
14042
14047
|
};
|
|
14043
14048
|
}
|
|
14044
|
-
}, ci = /* @__PURE__ */ At(pE, [["__scopeId", "data-v-
|
|
14049
|
+
}, ci = /* @__PURE__ */ At(pE, [["__scopeId", "data-v-5db14f31"]]), zn = (s) => (Je("data-v-fec8d273"), s = s(), Xe(), s), yE = { class: "game-item__header" }, vE = { class: "game-item__header__info text-type-1" }, bE = {
|
|
14045
14050
|
key: 0,
|
|
14046
14051
|
class: "game-item__header__info__live"
|
|
14047
14052
|
}, _E = /* @__PURE__ */ zn(() => /* @__PURE__ */ v("div", { class: "game-item__header__info__live__status text-type-2" }, [
|
|
@@ -14122,8 +14127,8 @@ const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-588d8b1
|
|
|
14122
14127
|
v("div", IE, P(l.acronym), 1)
|
|
14123
14128
|
]),
|
|
14124
14129
|
v("div", RE, [
|
|
14125
|
-
|
|
14126
|
-
[
|
|
14130
|
+
Ss(v("div", { class: "game-item__body__team__score__value" }, P(l.score || 0), 513), [
|
|
14131
|
+
[ws, s.game.is_live || s.game.game_status !== 4]
|
|
14127
14132
|
])
|
|
14128
14133
|
])
|
|
14129
14134
|
]))), 128))
|
|
@@ -14134,7 +14139,7 @@ const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-588d8b1
|
|
|
14134
14139
|
}, PE)
|
|
14135
14140
|
], 2));
|
|
14136
14141
|
}
|
|
14137
|
-
}, FE = /* @__PURE__ */ At(OE, [["__scopeId", "data-v-
|
|
14142
|
+
}, FE = /* @__PURE__ */ At(OE, [["__scopeId", "data-v-fec8d273"]]), ME = {
|
|
14138
14143
|
__name: "SwitchCustom",
|
|
14139
14144
|
props: {
|
|
14140
14145
|
modelValue: {
|
|
@@ -14158,7 +14163,7 @@ const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-588d8b1
|
|
|
14158
14163
|
function n(r) {
|
|
14159
14164
|
e("update:modelValue", r.target.checked);
|
|
14160
14165
|
}
|
|
14161
|
-
return
|
|
14166
|
+
return ot(() => {
|
|
14162
14167
|
a();
|
|
14163
14168
|
}), (r, o) => (y(), b("input", {
|
|
14164
14169
|
ref_key: "switchCustom",
|
|
@@ -14171,7 +14176,7 @@ const Bk = /* @__PURE__ */ At(Pk, [["render", Nk], ["__scopeId", "data-v-588d8b1
|
|
|
14171
14176
|
onInput: n
|
|
14172
14177
|
}, null, 544));
|
|
14173
14178
|
}
|
|
14174
|
-
}, NE = /* @__PURE__ */ At(ME, [["__scopeId", "data-v-
|
|
14179
|
+
}, NE = /* @__PURE__ */ At(ME, [["__scopeId", "data-v-3571f7e0"]]);
|
|
14175
14180
|
/**
|
|
14176
14181
|
* Vue 3 Carousel 0.3.4
|
|
14177
14182
|
* (c) 2024
|
|
@@ -14441,7 +14446,7 @@ var jE = Bt({
|
|
|
14441
14446
|
min: p.value
|
|
14442
14447
|
})));
|
|
14443
14448
|
}
|
|
14444
|
-
|
|
14449
|
+
ot(() => {
|
|
14445
14450
|
ta(() => E()), setTimeout(() => E(), 1e3), I(), ie(), window.addEventListener("resize", R, { passive: !0 }), t("init");
|
|
14446
14451
|
}), Zt(() => {
|
|
14447
14452
|
S && clearTimeout(S), _ && clearInterval(_), window.removeEventListener("resize", R, {
|
|
@@ -14542,7 +14547,7 @@ var jE = Bt({
|
|
|
14542
14547
|
}), Se(() => s.modelValue, (L) => {
|
|
14543
14548
|
L !== m.value && oe(Number(L));
|
|
14544
14549
|
}), Se(c, $), t("before-init"), T();
|
|
14545
|
-
const
|
|
14550
|
+
const lt = {
|
|
14546
14551
|
config: l,
|
|
14547
14552
|
slidesCount: c,
|
|
14548
14553
|
slideWidth: o,
|
|
@@ -14564,19 +14569,19 @@ var jE = Bt({
|
|
|
14564
14569
|
next: be,
|
|
14565
14570
|
prev: Oe,
|
|
14566
14571
|
nav: We,
|
|
14567
|
-
data:
|
|
14572
|
+
data: lt
|
|
14568
14573
|
});
|
|
14569
|
-
const wt = e.default || e.slides, Lt = e.addons, It = et(
|
|
14574
|
+
const wt = e.default || e.slides, Lt = e.addons, It = et(lt);
|
|
14570
14575
|
return () => {
|
|
14571
14576
|
const L = Hf(wt == null ? void 0 : wt(It)), te = (Lt == null ? void 0 : Lt(It)) || [];
|
|
14572
14577
|
L.forEach((J, ae) => J.props.index = ae);
|
|
14573
14578
|
let Y = L;
|
|
14574
14579
|
if (l.wrapAround) {
|
|
14575
|
-
const J = L.map((X, K) =>
|
|
14580
|
+
const J = L.map((X, K) => xs(X, {
|
|
14576
14581
|
index: -L.length + K,
|
|
14577
14582
|
isClone: !0,
|
|
14578
14583
|
key: `clone-before-${K}`
|
|
14579
|
-
})), ae = L.map((X, K) =>
|
|
14584
|
+
})), ae = L.map((X, K) => xs(X, {
|
|
14580
14585
|
index: L.length + K,
|
|
14581
14586
|
isClone: !0,
|
|
14582
14587
|
key: `clone-after-${K}`
|
|
@@ -14697,7 +14702,7 @@ var YE = Bt({
|
|
|
14697
14702
|
};
|
|
14698
14703
|
}
|
|
14699
14704
|
});
|
|
14700
|
-
const Wf = (s) => (Je("data-v-
|
|
14705
|
+
const Wf = (s) => (Je("data-v-b3e14252"), s = s(), Xe(), s), JE = {
|
|
14701
14706
|
key: 1,
|
|
14702
14707
|
class: "match-day__live"
|
|
14703
14708
|
}, XE = /* @__PURE__ */ Wf(() => /* @__PURE__ */ v("div", { class: "match-day__live__bullet" }, null, -1)), ZE = /* @__PURE__ */ Wf(() => /* @__PURE__ */ v("div", { class: "match-day__live__text" }, "LIVE", -1)), QE = [
|
|
@@ -14801,7 +14806,7 @@ const Wf = (s) => (Je("data-v-f97685f3"), s = s(), Xe(), s), JE = {
|
|
|
14801
14806
|
}, P(s.isLandingMode || s.componentWidth <= 425 ? "JOR" : "JORNADA"), 5)) : s.matchDay.liveGamesIds.size ? (y(), b("div", JE, QE)) : x("", !0)
|
|
14802
14807
|
], 4));
|
|
14803
14808
|
}
|
|
14804
|
-
}, tA = /* @__PURE__ */ At(eA, [["__scopeId", "data-v-
|
|
14809
|
+
}, tA = /* @__PURE__ */ At(eA, [["__scopeId", "data-v-b3e14252"]]), sA = {
|
|
14805
14810
|
__name: "MatchDayPicker",
|
|
14806
14811
|
props: {
|
|
14807
14812
|
matchDays: {
|
|
@@ -14881,8 +14886,8 @@ const Wf = (s) => (Je("data-v-f97685f3"), s = s(), Xe(), s), JE = {
|
|
|
14881
14886
|
setup(s, { emit: e }) {
|
|
14882
14887
|
const t = s;
|
|
14883
14888
|
tt((d) => ({
|
|
14884
|
-
"
|
|
14885
|
-
|
|
14889
|
+
"11596bb3": r.value,
|
|
14890
|
+
11585473: o.value
|
|
14886
14891
|
}));
|
|
14887
14892
|
const i = D(null), a = D(-1), n = Z(() => ({
|
|
14888
14893
|
itemsToShow: t.itemsToShow,
|
|
@@ -14929,7 +14934,7 @@ const Wf = (s) => (Je("data-v-f97685f3"), s = s(), Xe(), s), JE = {
|
|
|
14929
14934
|
s.isLandingMode ? "border-top-left-radius: 9px; border-top-right-radius: 9px;" : "margin-bottom:12px"
|
|
14930
14935
|
)
|
|
14931
14936
|
}, [
|
|
14932
|
-
(y(), ee(Re(HE),
|
|
14937
|
+
(y(), ee(Re(HE), Rs(n.value, {
|
|
14933
14938
|
modelValue: a.value,
|
|
14934
14939
|
ref_key: "matchDayPickerCarousel",
|
|
14935
14940
|
ref: i,
|
|
@@ -14943,7 +14948,7 @@ const Wf = (s) => (Je("data-v-f97685f3"), s = s(), Xe(), s), JE = {
|
|
|
14943
14948
|
key: m.key
|
|
14944
14949
|
}, {
|
|
14945
14950
|
default: ze(() => [
|
|
14946
|
-
ve(tA,
|
|
14951
|
+
ve(tA, Rs({
|
|
14947
14952
|
style: s.disableMatchdays && !m.avaible ? "opacity: 0.6 !important; cursor: default !important;" : ""
|
|
14948
14953
|
}, t, {
|
|
14949
14954
|
"match-day": m,
|
|
@@ -14960,7 +14965,7 @@ const Wf = (s) => (Je("data-v-f97685f3"), s = s(), Xe(), s), JE = {
|
|
|
14960
14965
|
}, 16, ["modelValue"]))
|
|
14961
14966
|
], 4));
|
|
14962
14967
|
}
|
|
14963
|
-
}, Kf = /* @__PURE__ */ At(sA, [["__scopeId", "data-v-
|
|
14968
|
+
}, Kf = /* @__PURE__ */ At(sA, [["__scopeId", "data-v-3930107a"]]), iA = [
|
|
14964
14969
|
"ene",
|
|
14965
14970
|
"feb",
|
|
14966
14971
|
"mar",
|
|
@@ -15002,7 +15007,7 @@ function rA(s) {
|
|
|
15002
15007
|
break;
|
|
15003
15008
|
return t && e ? `${t.trim().charAt(0)}.${a}` : "";
|
|
15004
15009
|
}
|
|
15005
|
-
const oi = (s) => (Je("data-v-
|
|
15010
|
+
const oi = (s) => (Je("data-v-ab74ad08"), s = s(), Xe(), s), oA = { class: "quadrant-matches" }, lA = { class: "quadrant-matches__header" }, cA = { class: "quadrant-matches__header__pc" }, dA = { class: "title-and-switch" }, uA = { class: "quadrant-matches__title" }, hA = {
|
|
15006
15011
|
key: 0,
|
|
15007
15012
|
class: "quadrant-matches__header__games-type"
|
|
15008
15013
|
}, mA = /* @__PURE__ */ oi(() => /* @__PURE__ */ v("div", { class: "quadrant-matches__header__my-team" }, "Mi equipo", -1)), fA = { class: "quadrant-matches__header__games-type__logo" }, gA = ["src"], pA = { class: "quadrant-matches__header__games-type__switch" }, yA = { class: "quadrant-matches__header__games-type__logo" }, vA = ["src"], bA = {
|
|
@@ -15111,7 +15116,9 @@ const oi = (s) => (Je("data-v-a4cfc68d"), s = s(), Xe(), s), oA = { class: "quad
|
|
|
15111
15116
|
e("click-live");
|
|
15112
15117
|
}, 500);
|
|
15113
15118
|
}
|
|
15114
|
-
return (
|
|
15119
|
+
return ot(() => {
|
|
15120
|
+
t.currentTournament.id === t.user.tournament && (i.value = !0, e("change-is-league-selected", !0));
|
|
15121
|
+
}), (l, d) => (y(), b("section", oA, [
|
|
15115
15122
|
v("div", lA, [
|
|
15116
15123
|
v("div", cA, [
|
|
15117
15124
|
v("div", dA, [
|
|
@@ -15290,7 +15297,7 @@ const oi = (s) => (Je("data-v-a4cfc68d"), s = s(), Xe(), s), oA = { class: "quad
|
|
|
15290
15297
|
], 64)) : x("", !0)
|
|
15291
15298
|
]));
|
|
15292
15299
|
}
|
|
15293
|
-
}, NA = /* @__PURE__ */ At(MA, [["__scopeId", "data-v-
|
|
15300
|
+
}, NA = /* @__PURE__ */ At(MA, [["__scopeId", "data-v-ab74ad08"]]), BA = {
|
|
15294
15301
|
__name: "gsc-games",
|
|
15295
15302
|
props: {
|
|
15296
15303
|
componentWidth: {
|
|
@@ -15819,7 +15826,7 @@ function y5(s) {
|
|
|
15819
15826
|
const i = s.value.getBoundingClientRect();
|
|
15820
15827
|
e.value.width = i.width, e.value.height = i.height;
|
|
15821
15828
|
}
|
|
15822
|
-
return
|
|
15829
|
+
return ot(() => {
|
|
15823
15830
|
t(), window.addEventListener("resize", t);
|
|
15824
15831
|
}), Zt(() => {
|
|
15825
15832
|
window.removeEventListener("resize", t);
|
|
@@ -15891,9 +15898,9 @@ const Ul = {
|
|
|
15891
15898
|
}
|
|
15892
15899
|
}, Zd = () => {
|
|
15893
15900
|
tt((s) => ({
|
|
15894
|
-
"
|
|
15895
|
-
|
|
15896
|
-
|
|
15901
|
+
"2bf57034": s.backgroundColor,
|
|
15902
|
+
b8f32872: s.widthCircle,
|
|
15903
|
+
23023166: s.heightCircle
|
|
15897
15904
|
}));
|
|
15898
15905
|
}, Qd = Ul.setup;
|
|
15899
15906
|
Ul.setup = Qd ? (s, e) => (Zd(), Qd(s, e)) : Zd;
|
|
@@ -15933,7 +15940,7 @@ function T5(s, e, t, i, a, n) {
|
|
|
15933
15940
|
t.textOptionRight != "" && !t.hiddenLabels ? (y(), b("span", w5, P(t.textOptionRight), 1)) : x("", !0)
|
|
15934
15941
|
], 4);
|
|
15935
15942
|
}
|
|
15936
|
-
const x5 = /* @__PURE__ */ At(Ul, [["render", T5], ["__scopeId", "data-v-
|
|
15943
|
+
const x5 = /* @__PURE__ */ At(Ul, [["render", T5], ["__scopeId", "data-v-c2ae0cf9"]]), Gl = {
|
|
15937
15944
|
components: {
|
|
15938
15945
|
GSCSlider: Hi,
|
|
15939
15946
|
GSCMosaicthebest: n5,
|
|
@@ -16341,11 +16348,11 @@ const x5 = /* @__PURE__ */ At(Ul, [["render", T5], ["__scopeId", "data-v-f9c67ce
|
|
|
16341
16348
|
}
|
|
16342
16349
|
}, eu = () => {
|
|
16343
16350
|
tt((s) => ({
|
|
16344
|
-
|
|
16345
|
-
|
|
16346
|
-
"
|
|
16347
|
-
"
|
|
16348
|
-
"
|
|
16351
|
+
adfeba70: s.backgroundColor,
|
|
16352
|
+
"2e79f680": s.fontFamily,
|
|
16353
|
+
"0f73305d": s.fontSize,
|
|
16354
|
+
"43d82af2": s.fontColor,
|
|
16355
|
+
"675d9676": s.marginMosaic
|
|
16349
16356
|
}));
|
|
16350
16357
|
}, tu = Gl.setup;
|
|
16351
16358
|
Gl.setup = tu ? (s, e) => (eu(), tu(s, e)) : eu;
|
|
@@ -16574,7 +16581,7 @@ function N5(s, e, t, i, a, n) {
|
|
|
16574
16581
|
])
|
|
16575
16582
|
], 512)) : x("", !0);
|
|
16576
16583
|
}
|
|
16577
|
-
const B5 = /* @__PURE__ */ At(Gl, [["render", N5], ["__scopeId", "data-v-
|
|
16584
|
+
const B5 = /* @__PURE__ */ At(Gl, [["render", N5], ["__scopeId", "data-v-51e267e2"]]);
|
|
16578
16585
|
/**
|
|
16579
16586
|
* Vue 3 Carousel 0.3.1
|
|
16580
16587
|
* (c) 2023
|
|
@@ -16844,7 +16851,7 @@ var H5 = Bt({
|
|
|
16844
16851
|
min: p.value
|
|
16845
16852
|
})));
|
|
16846
16853
|
}
|
|
16847
|
-
|
|
16854
|
+
ot(() => {
|
|
16848
16855
|
ta(() => E()), setTimeout(() => E(), 1e3), I(), ie(), window.addEventListener("resize", R, { passive: !0 }), t("init");
|
|
16849
16856
|
}), Zt(() => {
|
|
16850
16857
|
S && clearTimeout(S), _ && clearInterval(_), window.removeEventListener("resize", R, {
|
|
@@ -16945,7 +16952,7 @@ var H5 = Bt({
|
|
|
16945
16952
|
}), Se(() => s.modelValue, (L) => {
|
|
16946
16953
|
L !== m.value && oe(Number(L));
|
|
16947
16954
|
}), Se(c, $), t("before-init"), T();
|
|
16948
|
-
const
|
|
16955
|
+
const lt = {
|
|
16949
16956
|
config: l,
|
|
16950
16957
|
slidesCount: c,
|
|
16951
16958
|
slideWidth: o,
|
|
@@ -16967,19 +16974,19 @@ var H5 = Bt({
|
|
|
16967
16974
|
next: be,
|
|
16968
16975
|
prev: Oe,
|
|
16969
16976
|
nav: We,
|
|
16970
|
-
data:
|
|
16977
|
+
data: lt
|
|
16971
16978
|
});
|
|
16972
|
-
const wt = e.default || e.slides, Lt = e.addons, It = et(
|
|
16979
|
+
const wt = e.default || e.slides, Lt = e.addons, It = et(lt);
|
|
16973
16980
|
return () => {
|
|
16974
16981
|
const L = Yf(wt == null ? void 0 : wt(It)), te = (Lt == null ? void 0 : Lt(It)) || [];
|
|
16975
16982
|
L.forEach((J, ae) => J.props.index = ae);
|
|
16976
16983
|
let Y = L;
|
|
16977
16984
|
if (l.wrapAround) {
|
|
16978
|
-
const J = L.map((X, K) =>
|
|
16985
|
+
const J = L.map((X, K) => xs(X, {
|
|
16979
16986
|
index: -L.length + K,
|
|
16980
16987
|
isClone: !0,
|
|
16981
16988
|
key: `clone-before-${K}`
|
|
16982
|
-
})), ae = L.map((X, K) =>
|
|
16989
|
+
})), ae = L.map((X, K) => xs(X, {
|
|
16983
16990
|
index: L.length + K,
|
|
16984
16991
|
isClone: !0,
|
|
16985
16992
|
key: `clone-after-${K}`
|
|
@@ -17574,8 +17581,8 @@ function qL(s, e) {
|
|
|
17574
17581
|
function lu(s, e, t, i) {
|
|
17575
17582
|
C.element(e) && e.appendChild(Ae(s, t, i));
|
|
17576
17583
|
}
|
|
17577
|
-
function
|
|
17578
|
-
C.nodeList(s) || C.array(s) ? Array.from(s).forEach(
|
|
17584
|
+
function Is(s) {
|
|
17585
|
+
C.nodeList(s) || C.array(s) ? Array.from(s).forEach(Is) : C.element(s) && C.element(s.parentNode) && s.parentNode.removeChild(s);
|
|
17579
17586
|
}
|
|
17580
17587
|
function Na(s) {
|
|
17581
17588
|
if (!C.element(s)) return;
|
|
@@ -17782,7 +17789,7 @@ const Gs = { getSources() {
|
|
|
17782
17789
|
}
|
|
17783
17790
|
} });
|
|
17784
17791
|
}, cancelRequests() {
|
|
17785
|
-
this.isHTML5 && (
|
|
17792
|
+
this.isHTML5 && (Is(Gs.getSources.call(this)), this.media.setAttribute("src", this.config.blankVideo), this.media.load(), this.debug.log("Cancelled network requests"));
|
|
17786
17793
|
} };
|
|
17787
17794
|
function eI(s) {
|
|
17788
17795
|
return `${s}-${Math.floor(1e4 * Math.random())}`;
|
|
@@ -18148,7 +18155,7 @@ const ce = { getIconUrl() {
|
|
|
18148
18155
|
const e = s.cloneNode(!0);
|
|
18149
18156
|
e.style.position = "absolute", e.style.opacity = 0, e.removeAttribute("hidden"), s.parentNode.appendChild(e);
|
|
18150
18157
|
const t = e.scrollWidth, i = e.scrollHeight;
|
|
18151
|
-
return
|
|
18158
|
+
return Is(e), { width: t, height: i };
|
|
18152
18159
|
}, showMenuPanel(s = "", e = !1) {
|
|
18153
18160
|
const t = this.elements.container.querySelector(`#plyr-settings-${this.id}-${s}`);
|
|
18154
18161
|
if (!C.element(t)) return;
|
|
@@ -18299,7 +18306,7 @@ const Ze = { setup() {
|
|
|
18299
18306
|
r !== null && r.hostname !== window.location.href.hostname && ["http:", "https:"].includes(r.protocol) && ca(n, "blob").then((o) => {
|
|
18300
18307
|
a.setAttribute("src", window.URL.createObjectURL(o));
|
|
18301
18308
|
}).catch(() => {
|
|
18302
|
-
|
|
18309
|
+
Is(a);
|
|
18303
18310
|
});
|
|
18304
18311
|
});
|
|
18305
18312
|
}
|
|
@@ -19369,7 +19376,7 @@ const Uo = { insertElements(s, e) {
|
|
|
19369
19376
|
});
|
|
19370
19377
|
}, change(s) {
|
|
19371
19378
|
lg(s, "sources.length") ? (Gs.cancelRequests.call(this), this.destroy.call(this, () => {
|
|
19372
|
-
this.options.quality = [],
|
|
19379
|
+
this.options.quality = [], Is(this.media), this.media = null, C.element(this.elements.container) && this.elements.container.removeAttribute("class");
|
|
19373
19380
|
const { sources: e, type: t } = s, [{ provider: i = Us.html5, src: a }] = e, n = i === "html5" ? t : "div", r = i === "html5" ? {} : { src: a };
|
|
19374
19381
|
Object.assign(this, { provider: i, type: t, supported: ut.check(t, i, this.config.playsinline), media: Ae(n, r) }), this.elements.container.appendChild(this.media), C.boolean(s.autoplay) && (this.config.autoplay = s.autoplay), this.isHTML5 && (this.config.crossorigin && this.media.setAttribute("crossorigin", ""), this.config.autoplay && this.media.setAttribute("autoplay", ""), C.empty(s.poster) || (this.poster = s.poster), this.config.loop.active && this.media.setAttribute("loop", ""), this.config.muted && this.media.setAttribute("muted", ""), this.config.playsinline && this.media.setAttribute("playsinline", "")), it.addStyleHook.call(this), this.isHTML5 && Uo.insertElements.call(this, "source", e), this.config.title = s.title, _g.setup.call(this), this.isHTML5 && Object.keys(s).includes("tracks") && Uo.insertElements.call(this, "track", s.tracks), (this.isHTML5 || this.isEmbed && !this.supported.ui) && it.build.call(this), this.isHTML5 && this.media.load(), C.empty(s.previewThumbnails) || (Object.assign(this.config.previewThumbnails, s.previewThumbnails), this.previewThumbnails && this.previewThumbnails.loaded && (this.previewThumbnails.destroy(), this.previewThumbnails = null), this.config.previewThumbnails.enabled && (this.previewThumbnails = new $o(this))), this.fullscreen.update();
|
|
19375
19382
|
}, !0)) : this.debug.warn("Invalid source format");
|
|
@@ -19410,7 +19417,7 @@ class _i {
|
|
|
19410
19417
|
}), de(this, "destroy", (o, c = !1) => {
|
|
19411
19418
|
if (!this.ready) return;
|
|
19412
19419
|
const l = () => {
|
|
19413
|
-
document.body.style.overflow = "", this.embed = null, c ? (Object.keys(this.elements).length && (
|
|
19420
|
+
document.body.style.overflow = "", this.embed = null, c ? (Object.keys(this.elements).length && (Is(this.elements.buttons.play), Is(this.elements.captions), Is(this.elements.controls), Is(this.elements.wrapper), this.elements.buttons.play = null, this.elements.captions = null, this.elements.controls = null, this.elements.wrapper = null), C.function(o) && o()) : (XL.call(this), Gs.cancelRequests.call(this), on(this.elements.original, this.elements.container), Ie.call(this, this.elements.original, "destroyed", !0), C.function(o) && o.call(this.elements.original), this.ready = !1, setTimeout(() => {
|
|
19414
19421
|
this.elements = null, this.media = null;
|
|
19415
19422
|
}, 200));
|
|
19416
19423
|
};
|
|
@@ -19706,7 +19713,7 @@ const bI = {
|
|
|
19706
19713
|
}, 100);
|
|
19707
19714
|
};
|
|
19708
19715
|
}
|
|
19709
|
-
return
|
|
19716
|
+
return ot(() => {
|
|
19710
19717
|
setTimeout(() => {
|
|
19711
19718
|
d();
|
|
19712
19719
|
}, 100);
|
|
@@ -19715,7 +19722,7 @@ const bI = {
|
|
|
19715
19722
|
onMouseenter: f[0] || (f[0] = (h) => a.value = !0),
|
|
19716
19723
|
onMouseleave: f[1] || (f[1] = (h) => a.value = !1)
|
|
19717
19724
|
}, [
|
|
19718
|
-
|
|
19725
|
+
Ss(v("div", {
|
|
19719
19726
|
class: A(["carousel-video-player__play-info", s.isPortrait && s.isMobileFull ? "carousel-video-player__play-info-portrait" : ""])
|
|
19720
19727
|
}, [
|
|
19721
19728
|
!s.isPortrait || !s.isMobileFull ? (y(), b("div", {
|
|
@@ -19730,7 +19737,7 @@ const bI = {
|
|
|
19730
19737
|
le(" " + P(l.value), 1)
|
|
19731
19738
|
])) : (y(), b("div", wI, P(o.value), 1))
|
|
19732
19739
|
], 2), [
|
|
19733
|
-
[
|
|
19740
|
+
[ws, a.value]
|
|
19734
19741
|
]),
|
|
19735
19742
|
v("div", TI, [
|
|
19736
19743
|
v("video", {
|
|
@@ -19742,7 +19749,7 @@ const bI = {
|
|
|
19742
19749
|
])
|
|
19743
19750
|
], 32));
|
|
19744
19751
|
}
|
|
19745
|
-
}, kI = /* @__PURE__ */ At(CI, [["__scopeId", "data-v-
|
|
19752
|
+
}, kI = /* @__PURE__ */ At(CI, [["__scopeId", "data-v-7f6d1b57"]]), Kl = (s) => (Je("data-v-e0039d6a"), s = s(), Xe(), s), EI = /* @__PURE__ */ Kl(() => /* @__PURE__ */ v("svg", {
|
|
19746
19753
|
xmlns: "http://www.w3.org/2000/svg",
|
|
19747
19754
|
width: "20",
|
|
19748
19755
|
height: "20",
|
|
@@ -19857,7 +19864,7 @@ const bI = {
|
|
|
19857
19864
|
function p() {
|
|
19858
19865
|
window.screen.orientation.angle != 90 ? f.portrait = !0 : f.portrait = !1;
|
|
19859
19866
|
}
|
|
19860
|
-
return
|
|
19867
|
+
return ot(() => {
|
|
19861
19868
|
l() ? (window.addEventListener("resize", g), g()) : (window.addEventListener("orientationchange", p), p()), setTimeout(() => {
|
|
19862
19869
|
const _ = document.getElementsByClassName("video-element");
|
|
19863
19870
|
_ && _.length && Array.from(_).forEach((S, T) => {
|
|
@@ -19879,7 +19886,7 @@ const bI = {
|
|
|
19879
19886
|
}, AI, 4),
|
|
19880
19887
|
v("div", LI, [
|
|
19881
19888
|
h.value && c() ? (y(), b("div", II, PI)) : x("", !0),
|
|
19882
|
-
ve(Re(mL),
|
|
19889
|
+
ve(Re(mL), Rs({
|
|
19883
19890
|
ref_key: "gscCarousel",
|
|
19884
19891
|
ref: r
|
|
19885
19892
|
}, n.value, {
|
|
@@ -19903,7 +19910,7 @@ const bI = {
|
|
|
19903
19910
|
])
|
|
19904
19911
|
], 2));
|
|
19905
19912
|
}
|
|
19906
|
-
}, MI = /* @__PURE__ */ At(FI, [["__scopeId", "data-v-
|
|
19913
|
+
}, MI = /* @__PURE__ */ At(FI, [["__scopeId", "data-v-e0039d6a"]]), NI = /* @__PURE__ */ new Map([
|
|
19907
19914
|
["M1", { matchDayId: 1, matchDayName: "Jornada 1", matchDayAbbreviation: "J1" }],
|
|
19908
19915
|
["M2", { matchDayId: 2, matchDayName: "Jornada 2", matchDayAbbreviation: "J2" }],
|
|
19909
19916
|
["M3", { matchDayId: 3, matchDayName: "Jornada 3", matchDayAbbreviation: "J3" }],
|
|
@@ -20296,7 +20303,7 @@ const YI = /* @__PURE__ */ $I(ql, [["render", qI], ["__scopeId", "data-v-fb269a1
|
|
|
20296
20303
|
function m() {
|
|
20297
20304
|
r.value = !1, e("click-ready");
|
|
20298
20305
|
}
|
|
20299
|
-
return
|
|
20306
|
+
return ot(() => {
|
|
20300
20307
|
document.addEventListener("click", d);
|
|
20301
20308
|
}), xn(() => {
|
|
20302
20309
|
document.removeEventListener("click", d);
|
|
@@ -20334,7 +20341,7 @@ const YI = /* @__PURE__ */ $I(ql, [["render", qI], ["__scopeId", "data-v-fb269a1
|
|
|
20334
20341
|
], 4),
|
|
20335
20342
|
ve(sa, null, {
|
|
20336
20343
|
default: ze(() => [
|
|
20337
|
-
|
|
20344
|
+
Ss(v("div", QI, [
|
|
20338
20345
|
v("div", null, [
|
|
20339
20346
|
v("div", {
|
|
20340
20347
|
class: "gsc-dropdown__items",
|
|
@@ -20362,7 +20369,7 @@ const YI = /* @__PURE__ */ $I(ql, [["render", qI], ["__scopeId", "data-v-fb269a1
|
|
|
20362
20369
|
])) : x("", !0)
|
|
20363
20370
|
])
|
|
20364
20371
|
], 512), [
|
|
20365
|
-
[
|
|
20372
|
+
[ws, r.value]
|
|
20366
20373
|
])
|
|
20367
20374
|
]),
|
|
20368
20375
|
_: 3
|
|
@@ -20504,13 +20511,13 @@ const YI = /* @__PURE__ */ $I(ql, [["render", qI], ["__scopeId", "data-v-fb269a1
|
|
|
20504
20511
|
function m(f) {
|
|
20505
20512
|
e("input", f);
|
|
20506
20513
|
}
|
|
20507
|
-
return
|
|
20514
|
+
return ot(() => {
|
|
20508
20515
|
o();
|
|
20509
20516
|
}), (f, h) => (y(), b("div", {
|
|
20510
20517
|
class: "tournament-select",
|
|
20511
20518
|
style: B(a.value)
|
|
20512
20519
|
}, [
|
|
20513
|
-
ve(Re(s4),
|
|
20520
|
+
ve(Re(s4), Rs(t, {
|
|
20514
20521
|
"model-value": r.value,
|
|
20515
20522
|
items: n.value,
|
|
20516
20523
|
onInput: u,
|
|
@@ -20883,7 +20890,7 @@ const S4 = /* @__PURE__ */ u4(Yl, [["render", _4], ["__scopeId", "data-v-fb269a1
|
|
|
20883
20890
|
function m() {
|
|
20884
20891
|
r.value = !1, e("click-ready");
|
|
20885
20892
|
}
|
|
20886
|
-
return
|
|
20893
|
+
return ot(() => {
|
|
20887
20894
|
document.addEventListener("click", d);
|
|
20888
20895
|
}), xn(() => {
|
|
20889
20896
|
document.removeEventListener("click", d);
|
|
@@ -20921,7 +20928,7 @@ const S4 = /* @__PURE__ */ u4(Yl, [["render", _4], ["__scopeId", "data-v-fb269a1
|
|
|
20921
20928
|
], 4),
|
|
20922
20929
|
ve(sa, null, {
|
|
20923
20930
|
default: ze(() => [
|
|
20924
|
-
|
|
20931
|
+
Ss(v("div", C4, [
|
|
20925
20932
|
v("div", null, [
|
|
20926
20933
|
v("div", {
|
|
20927
20934
|
class: "gsc-dropdown__items",
|
|
@@ -20949,7 +20956,7 @@ const S4 = /* @__PURE__ */ u4(Yl, [["render", _4], ["__scopeId", "data-v-fb269a1
|
|
|
20949
20956
|
])) : x("", !0)
|
|
20950
20957
|
])
|
|
20951
20958
|
], 512), [
|
|
20952
|
-
[
|
|
20959
|
+
[ws, r.value]
|
|
20953
20960
|
])
|
|
20954
20961
|
]),
|
|
20955
20962
|
_: 3
|
|
@@ -24357,7 +24364,7 @@ function bD(s) {
|
|
|
24357
24364
|
const i = s.value.getBoundingClientRect();
|
|
24358
24365
|
e.value.width = i.width, e.value.height = i.height;
|
|
24359
24366
|
}
|
|
24360
|
-
return
|
|
24367
|
+
return ot(() => {
|
|
24361
24368
|
t(), window.addEventListener("resize", t);
|
|
24362
24369
|
}), Zt(() => {
|
|
24363
24370
|
window.removeEventListener("resize", t);
|
|
@@ -26524,7 +26531,7 @@ function PD(s, e, t, i, a, n) {
|
|
|
26524
26531
|
}, null, 8, ["data"])) : x("", !0)
|
|
26525
26532
|
], 512)) : x("", !0);
|
|
26526
26533
|
}
|
|
26527
|
-
const OD = /* @__PURE__ */ At(LD, [["render", PD], ["__scopeId", "data-v-
|
|
26534
|
+
const OD = /* @__PURE__ */ At(LD, [["render", PD], ["__scopeId", "data-v-4af47259"]]), FD = [
|
|
26528
26535
|
"playId",
|
|
26529
26536
|
// number
|
|
26530
26537
|
"league",
|
|
@@ -26752,7 +26759,7 @@ function HD(s, e) {
|
|
|
26752
26759
|
"error"
|
|
26753
26760
|
);
|
|
26754
26761
|
try {
|
|
26755
|
-
zi.log(`Debug logs enabled for "${e}" in hls.js version 1.5.
|
|
26762
|
+
zi.log(`Debug logs enabled for "${e}" in hls.js version 1.5.17`);
|
|
26756
26763
|
} catch {
|
|
26757
26764
|
zi = qo;
|
|
26758
26765
|
}
|
|
@@ -27241,7 +27248,7 @@ const fc = (s, e) => e + 10 <= s.length && s[e] === 73 && s[e + 1] === 68 && s[e
|
|
|
27241
27248
|
}, nP = (s) => s.type === "PRIV" ? rP(s) : s.type[0] === "W" ? lP(s) : oP(s), rP = (s) => {
|
|
27242
27249
|
if (s.size < 2)
|
|
27243
27250
|
return;
|
|
27244
|
-
const e =
|
|
27251
|
+
const e = Ts(s.data, !0), t = new Uint8Array(s.data.subarray(e.length + 1));
|
|
27245
27252
|
return {
|
|
27246
27253
|
key: s.type,
|
|
27247
27254
|
info: e,
|
|
@@ -27252,16 +27259,16 @@ const fc = (s, e) => e + 10 <= s.length && s[e] === 73 && s[e + 1] === 68 && s[e
|
|
|
27252
27259
|
return;
|
|
27253
27260
|
if (s.type === "TXXX") {
|
|
27254
27261
|
let t = 1;
|
|
27255
|
-
const i =
|
|
27262
|
+
const i = Ts(s.data.subarray(t), !0);
|
|
27256
27263
|
t += i.length + 1;
|
|
27257
|
-
const a =
|
|
27264
|
+
const a = Ts(s.data.subarray(t));
|
|
27258
27265
|
return {
|
|
27259
27266
|
key: s.type,
|
|
27260
27267
|
info: i,
|
|
27261
27268
|
data: a
|
|
27262
27269
|
};
|
|
27263
27270
|
}
|
|
27264
|
-
const e =
|
|
27271
|
+
const e = Ts(s.data.subarray(1));
|
|
27265
27272
|
return {
|
|
27266
27273
|
key: s.type,
|
|
27267
27274
|
data: e
|
|
@@ -27271,16 +27278,16 @@ const fc = (s, e) => e + 10 <= s.length && s[e] === 73 && s[e + 1] === 68 && s[e
|
|
|
27271
27278
|
if (s.size < 2)
|
|
27272
27279
|
return;
|
|
27273
27280
|
let t = 1;
|
|
27274
|
-
const i =
|
|
27281
|
+
const i = Ts(s.data.subarray(t), !0);
|
|
27275
27282
|
t += i.length + 1;
|
|
27276
|
-
const a =
|
|
27283
|
+
const a = Ts(s.data.subarray(t));
|
|
27277
27284
|
return {
|
|
27278
27285
|
key: s.type,
|
|
27279
27286
|
info: i,
|
|
27280
27287
|
data: a
|
|
27281
27288
|
};
|
|
27282
27289
|
}
|
|
27283
|
-
const e =
|
|
27290
|
+
const e = Ts(s.data);
|
|
27284
27291
|
return {
|
|
27285
27292
|
key: s.type,
|
|
27286
27293
|
data: e
|
|
@@ -27291,7 +27298,7 @@ const fc = (s, e) => e + 10 <= s.length && s[e] === 73 && s[e + 1] === 68 && s[e
|
|
|
27291
27298
|
let i = (e[4] << 23) + (e[5] << 15) + (e[6] << 7) + e[7];
|
|
27292
27299
|
return i /= 45, t && (i += 4772185884e-2), Math.round(i);
|
|
27293
27300
|
}
|
|
27294
|
-
},
|
|
27301
|
+
}, Ts = (s, e = !1) => {
|
|
27295
27302
|
const t = dP();
|
|
27296
27303
|
if (t) {
|
|
27297
27304
|
const l = t.decode(s);
|
|
@@ -27833,7 +27840,7 @@ function ap(s, e, t, i) {
|
|
|
27833
27840
|
payloadType: r,
|
|
27834
27841
|
pts: t,
|
|
27835
27842
|
uuid: u.join(""),
|
|
27836
|
-
userData:
|
|
27843
|
+
userData: Ts(f),
|
|
27837
27844
|
userDataBytes: f
|
|
27838
27845
|
});
|
|
27839
27846
|
}
|
|
@@ -30344,17 +30351,17 @@ function h8(s, e, t, i, a) {
|
|
|
30344
30351
|
if (R === k)
|
|
30345
30352
|
return k;
|
|
30346
30353
|
if (E.minBitrate > t)
|
|
30347
|
-
return
|
|
30354
|
+
return ks(R, `min bitrate of ${E.minBitrate} > current estimate of ${t}`), k;
|
|
30348
30355
|
if (!E.hasDefaultAudio)
|
|
30349
|
-
return
|
|
30356
|
+
return ks(R, "no renditions with default or auto-select sound found"), k;
|
|
30350
30357
|
if (o && R.indexOf(o.substring(0, 4)) % 5 !== 0)
|
|
30351
|
-
return
|
|
30358
|
+
return ks(R, `audio codec preference "${o}" not found`), k;
|
|
30352
30359
|
if (r && !c) {
|
|
30353
30360
|
if (!E.channels[r])
|
|
30354
|
-
return
|
|
30361
|
+
return ks(R, `no renditions with ${r} channel sound found (channels options: ${Object.keys(E.channels)})`), k;
|
|
30355
30362
|
} else if ((!o || c) && l && E.channels[2] === 0)
|
|
30356
|
-
return
|
|
30357
|
-
return E.minHeight > S ? (
|
|
30363
|
+
return ks(R, "no renditions with stereo sound found"), k;
|
|
30364
|
+
return E.minHeight > S ? (ks(R, `min resolution of ${E.minHeight} > maximum of ${S}`), k) : E.minFramerate > T ? (ks(R, `min framerate of ${E.minFramerate} > maximum of ${T}`), k) : g.some(($) => E.videoRanges[$] > 0) ? E.maxScore < h ? (ks(R, `max score of ${E.maxScore} < selected max of ${h}`), k) : k && (gn(R) >= gn(k) || E.fragmentError > s[k].fragmentError) ? k : (h = E.maxScore, R) : (ks(R, `no variants with VIDEO-RANGE of ${JSON.stringify(g)} found`), k);
|
|
30358
30365
|
}, void 0),
|
|
30359
30366
|
videoRanges: g,
|
|
30360
30367
|
preferHDR: p,
|
|
@@ -30362,7 +30369,7 @@ function h8(s, e, t, i, a) {
|
|
|
30362
30369
|
minBitrate: f
|
|
30363
30370
|
};
|
|
30364
30371
|
}
|
|
30365
|
-
function
|
|
30372
|
+
function ks(s, e) {
|
|
30366
30373
|
O.log(`[abr] start candidates with "${s}" ignored because ${e}`);
|
|
30367
30374
|
}
|
|
30368
30375
|
function m8(s) {
|
|
@@ -30468,7 +30475,7 @@ function p8(s, e, t, i, a) {
|
|
|
30468
30475
|
});
|
|
30469
30476
|
}
|
|
30470
30477
|
function Mh(s, e, t) {
|
|
30471
|
-
for (let i = e; i; i--)
|
|
30478
|
+
for (let i = e; i > -1; i--)
|
|
30472
30479
|
if (t(s[i]))
|
|
30473
30480
|
return i;
|
|
30474
30481
|
for (let i = e + 1; i < s.length; i++)
|
|
@@ -31285,7 +31292,7 @@ class C8 {
|
|
|
31285
31292
|
load(e, t) {
|
|
31286
31293
|
const i = e.url;
|
|
31287
31294
|
if (!i)
|
|
31288
|
-
return Promise.reject(new
|
|
31295
|
+
return Promise.reject(new As({
|
|
31289
31296
|
type: Le.NETWORK_ERROR,
|
|
31290
31297
|
details: G.FRAG_LOAD_ERROR,
|
|
31291
31298
|
fatal: !1,
|
|
@@ -31322,7 +31329,7 @@ class C8 {
|
|
|
31322
31329
|
});
|
|
31323
31330
|
},
|
|
31324
31331
|
onError: (f, h, g, p) => {
|
|
31325
|
-
this.resetLoader(e, l), c(new
|
|
31332
|
+
this.resetLoader(e, l), c(new As({
|
|
31326
31333
|
type: Le.NETWORK_ERROR,
|
|
31327
31334
|
details: G.FRAG_LOAD_ERROR,
|
|
31328
31335
|
fatal: !1,
|
|
@@ -31337,7 +31344,7 @@ class C8 {
|
|
|
31337
31344
|
}));
|
|
31338
31345
|
},
|
|
31339
31346
|
onAbort: (f, h, g) => {
|
|
31340
|
-
this.resetLoader(e, l), c(new
|
|
31347
|
+
this.resetLoader(e, l), c(new As({
|
|
31341
31348
|
type: Le.NETWORK_ERROR,
|
|
31342
31349
|
details: G.INTERNAL_ABORTED,
|
|
31343
31350
|
fatal: !1,
|
|
@@ -31348,7 +31355,7 @@ class C8 {
|
|
|
31348
31355
|
}));
|
|
31349
31356
|
},
|
|
31350
31357
|
onTimeout: (f, h, g) => {
|
|
31351
|
-
this.resetLoader(e, l), c(new
|
|
31358
|
+
this.resetLoader(e, l), c(new As({
|
|
31352
31359
|
type: Le.NETWORK_ERROR,
|
|
31353
31360
|
details: G.FRAG_LOAD_TIMEOUT,
|
|
31354
31361
|
fatal: !1,
|
|
@@ -31397,7 +31404,7 @@ class C8 {
|
|
|
31397
31404
|
i(_), o(_);
|
|
31398
31405
|
},
|
|
31399
31406
|
onError: (f, h, g, p) => {
|
|
31400
|
-
this.resetLoader(e, l), c(new
|
|
31407
|
+
this.resetLoader(e, l), c(new As({
|
|
31401
31408
|
type: Le.NETWORK_ERROR,
|
|
31402
31409
|
details: G.FRAG_LOAD_ERROR,
|
|
31403
31410
|
fatal: !1,
|
|
@@ -31413,7 +31420,7 @@ class C8 {
|
|
|
31413
31420
|
}));
|
|
31414
31421
|
},
|
|
31415
31422
|
onAbort: (f, h, g) => {
|
|
31416
|
-
e.stats.aborted = t.stats.aborted, this.resetLoader(e, l), c(new
|
|
31423
|
+
e.stats.aborted = t.stats.aborted, this.resetLoader(e, l), c(new As({
|
|
31417
31424
|
type: Le.NETWORK_ERROR,
|
|
31418
31425
|
details: G.INTERNAL_ABORTED,
|
|
31419
31426
|
fatal: !1,
|
|
@@ -31425,7 +31432,7 @@ class C8 {
|
|
|
31425
31432
|
}));
|
|
31426
31433
|
},
|
|
31427
31434
|
onTimeout: (f, h, g) => {
|
|
31428
|
-
this.resetLoader(e, l), c(new
|
|
31435
|
+
this.resetLoader(e, l), c(new As({
|
|
31429
31436
|
type: Le.NETWORK_ERROR,
|
|
31430
31437
|
details: G.FRAG_LOAD_TIMEOUT,
|
|
31431
31438
|
fatal: !1,
|
|
@@ -31483,9 +31490,9 @@ function Uh(s, e) {
|
|
|
31483
31490
|
error: t,
|
|
31484
31491
|
networkDetails: null
|
|
31485
31492
|
};
|
|
31486
|
-
return e && (i.part = e), (e || s).stats.aborted = !0, new
|
|
31493
|
+
return e && (i.part = e), (e || s).stats.aborted = !0, new As(i);
|
|
31487
31494
|
}
|
|
31488
|
-
class
|
|
31495
|
+
class As extends Error {
|
|
31489
31496
|
constructor(e) {
|
|
31490
31497
|
super(e.error.message), this.data = void 0, this.data = e;
|
|
31491
31498
|
}
|
|
@@ -35360,11 +35367,11 @@ function Hh(s, e) {
|
|
|
35360
35367
|
}
|
|
35361
35368
|
return O.warn(`Unhandled video codec "${t}"`), t === "hvc1" || t === "hev1" ? "hvc1.1.6.L120.90" : t === "av01" ? "av01.0.04M.08" : "avc1.42e01e";
|
|
35362
35369
|
}
|
|
35363
|
-
let
|
|
35370
|
+
let Ls;
|
|
35364
35371
|
try {
|
|
35365
|
-
|
|
35372
|
+
Ls = self.performance.now.bind(self.performance);
|
|
35366
35373
|
} catch {
|
|
35367
|
-
O.debug("Unable to use Performance API on this environment"),
|
|
35374
|
+
O.debug("Unable to use Performance API on this environment"), Ls = Si == null ? void 0 : Si.Date.now;
|
|
35368
35375
|
}
|
|
35369
35376
|
const Ka = [{
|
|
35370
35377
|
demux: Y8,
|
|
@@ -35392,7 +35399,7 @@ class Wh {
|
|
|
35392
35399
|
}
|
|
35393
35400
|
push(e, t, i, a) {
|
|
35394
35401
|
const n = i.transmuxing;
|
|
35395
|
-
n.executeStart =
|
|
35402
|
+
n.executeStart = Ls();
|
|
35396
35403
|
let r = new Uint8Array(e);
|
|
35397
35404
|
const {
|
|
35398
35405
|
currentTransmuxState: o,
|
|
@@ -35418,7 +35425,7 @@ class Wh {
|
|
|
35418
35425
|
if ($.isSync()) {
|
|
35419
35426
|
let F = $.softwareDecrypt(r, I.key.buffer, I.iv.buffer);
|
|
35420
35427
|
if (i.part > -1 && (F = $.flush()), !F)
|
|
35421
|
-
return n.executeEnd =
|
|
35428
|
+
return n.executeEnd = Ls(), zr(i);
|
|
35422
35429
|
r = new Uint8Array(F);
|
|
35423
35430
|
} else
|
|
35424
35431
|
return this.decryptionPromise = $.webCryptoDecrypt(r, I.key.buffer, I.iv.buffer).then((F) => {
|
|
@@ -35436,16 +35443,16 @@ class Wh {
|
|
|
35436
35443
|
fatal: !1,
|
|
35437
35444
|
error: $,
|
|
35438
35445
|
reason: $.message
|
|
35439
|
-
}), n.executeEnd =
|
|
35446
|
+
}), n.executeEnd = Ls(), zr(i);
|
|
35440
35447
|
}
|
|
35441
35448
|
(d || u || h || k) && this.resetInitSegment(T, g, p, S, t), (d || h || k) && this.resetInitialTimestamp(_), l || this.resetContiguity();
|
|
35442
35449
|
const R = this.transmux(r, I, f, m, i), E = this.currentTransmuxState;
|
|
35443
|
-
return E.contiguous = !0, E.discontinuity = !1, E.trackSwitch = !1, n.executeEnd =
|
|
35450
|
+
return E.contiguous = !0, E.discontinuity = !1, E.trackSwitch = !1, n.executeEnd = Ls(), R;
|
|
35444
35451
|
}
|
|
35445
35452
|
// Due to data caching, flush calls can produce more than one TransmuxerResult (hence the Array type)
|
|
35446
35453
|
flush(e) {
|
|
35447
35454
|
const t = e.transmuxing;
|
|
35448
|
-
t.executeStart =
|
|
35455
|
+
t.executeStart = Ls();
|
|
35449
35456
|
const {
|
|
35450
35457
|
decrypter: i,
|
|
35451
35458
|
currentTransmuxState: a,
|
|
@@ -35465,7 +35472,7 @@ class Wh {
|
|
|
35465
35472
|
remuxer: l
|
|
35466
35473
|
} = this;
|
|
35467
35474
|
if (!c || !l)
|
|
35468
|
-
return t.executeEnd =
|
|
35475
|
+
return t.executeEnd = Ls(), [zr(e)];
|
|
35469
35476
|
const d = c.flush(o);
|
|
35470
35477
|
return qa(d) ? d.then((u) => (this.flushRemux(r, u, e), r)) : (this.flushRemux(r, d, e), r);
|
|
35471
35478
|
}
|
|
@@ -35484,7 +35491,7 @@ class Wh {
|
|
|
35484
35491
|
e.push({
|
|
35485
35492
|
remuxResult: d,
|
|
35486
35493
|
chunkMeta: i
|
|
35487
|
-
}), i.transmuxing.executeEnd =
|
|
35494
|
+
}), i.transmuxing.executeEnd = Ls();
|
|
35488
35495
|
}
|
|
35489
35496
|
resetInitialTimestamp(e) {
|
|
35490
35497
|
const {
|
|
@@ -37915,7 +37922,7 @@ const TO = {
|
|
|
37915
37922
|
// Box drawings heavy up and right
|
|
37916
37923
|
207: 9499
|
|
37917
37924
|
// Box drawings heavy up and left
|
|
37918
|
-
}, Fp = (s) => String.fromCharCode(TO[s] || s), ss = 15,
|
|
37925
|
+
}, Fp = (s) => String.fromCharCode(TO[s] || s), ss = 15, Es = 100, xO = {
|
|
37919
37926
|
17: 1,
|
|
37920
37927
|
18: 3,
|
|
37921
37928
|
21: 5,
|
|
@@ -38020,23 +38027,23 @@ class IO {
|
|
|
38020
38027
|
class RO {
|
|
38021
38028
|
constructor(e) {
|
|
38022
38029
|
this.chars = [], this.pos = 0, this.currPenState = new Mp(), this.cueStartTime = null, this.logger = void 0;
|
|
38023
|
-
for (let t = 0; t <
|
|
38030
|
+
for (let t = 0; t < Es; t++)
|
|
38024
38031
|
this.chars.push(new IO());
|
|
38025
38032
|
this.logger = e;
|
|
38026
38033
|
}
|
|
38027
38034
|
equals(e) {
|
|
38028
|
-
for (let t = 0; t <
|
|
38035
|
+
for (let t = 0; t < Es; t++)
|
|
38029
38036
|
if (!this.chars[t].equals(e.chars[t]))
|
|
38030
38037
|
return !1;
|
|
38031
38038
|
return !0;
|
|
38032
38039
|
}
|
|
38033
38040
|
copy(e) {
|
|
38034
|
-
for (let t = 0; t <
|
|
38041
|
+
for (let t = 0; t < Es; t++)
|
|
38035
38042
|
this.chars[t].copy(e.chars[t]);
|
|
38036
38043
|
}
|
|
38037
38044
|
isEmpty() {
|
|
38038
38045
|
let e = !0;
|
|
38039
|
-
for (let t = 0; t <
|
|
38046
|
+
for (let t = 0; t < Es; t++)
|
|
38040
38047
|
if (!this.chars[t].isEmpty()) {
|
|
38041
38048
|
e = !1;
|
|
38042
38049
|
break;
|
|
@@ -38047,7 +38054,7 @@ class RO {
|
|
|
38047
38054
|
* Set the cursor to a valid column.
|
|
38048
38055
|
*/
|
|
38049
38056
|
setCursor(e) {
|
|
38050
|
-
this.pos !== e && (this.pos = e), this.pos < 0 ? (this.logger.log(3, "Negative cursor position " + this.pos), this.pos = 0) : this.pos >
|
|
38057
|
+
this.pos !== e && (this.pos = e), this.pos < 0 ? (this.logger.log(3, "Negative cursor position " + this.pos), this.pos = 0) : this.pos > Es && (this.logger.log(3, "Too large cursor position " + this.pos), this.pos = Es);
|
|
38051
38058
|
}
|
|
38052
38059
|
/**
|
|
38053
38060
|
* Move the cursor relative to current position.
|
|
@@ -38068,7 +38075,7 @@ class RO {
|
|
|
38068
38075
|
insertChar(e) {
|
|
38069
38076
|
e >= 144 && this.backSpace();
|
|
38070
38077
|
const t = Fp(e);
|
|
38071
|
-
if (this.pos >=
|
|
38078
|
+
if (this.pos >= Es) {
|
|
38072
38079
|
this.logger.log(0, () => "Cannot insert " + e.toString(16) + " (" + t + ") at position " + this.pos + ". Skipping it!");
|
|
38073
38080
|
return;
|
|
38074
38081
|
}
|
|
@@ -38076,7 +38083,7 @@ class RO {
|
|
|
38076
38083
|
}
|
|
38077
38084
|
clearFromPos(e) {
|
|
38078
38085
|
let t;
|
|
38079
|
-
for (t = e; t <
|
|
38086
|
+
for (t = e; t < Es; t++)
|
|
38080
38087
|
this.chars[t].reset();
|
|
38081
38088
|
}
|
|
38082
38089
|
clear() {
|
|
@@ -38088,7 +38095,7 @@ class RO {
|
|
|
38088
38095
|
getTextString() {
|
|
38089
38096
|
const e = [];
|
|
38090
38097
|
let t = !0;
|
|
38091
|
-
for (let i = 0; i <
|
|
38098
|
+
for (let i = 0; i < Es; i++) {
|
|
38092
38099
|
const a = this.chars[i].uchar;
|
|
38093
38100
|
a !== " " && (t = !1), e.push(a);
|
|
38094
38101
|
}
|
|
@@ -38894,7 +38901,7 @@ const UO = function(e, t, i) {
|
|
|
38894
38901
|
e.presentationOffset = i;
|
|
38895
38902
|
};
|
|
38896
38903
|
function GO(s, e, t, i, a, n, r) {
|
|
38897
|
-
const o = new NO(), c =
|
|
38904
|
+
const o = new NO(), c = Ts(new Uint8Array(s)).trim().replace(BO, `
|
|
38898
38905
|
`).split(`
|
|
38899
38906
|
`), l = [], d = e ? aO(e.baseTime, e.timescale) : 0;
|
|
38900
38907
|
let u = "00:00.000", m = 0, f = 0, h, g = !0;
|
|
@@ -38951,7 +38958,7 @@ function Qh(s, e, t, i) {
|
|
|
38951
38958
|
i(new Error("Could not parse IMSC1 mdat"));
|
|
38952
38959
|
return;
|
|
38953
38960
|
}
|
|
38954
|
-
const n = a.map((o) =>
|
|
38961
|
+
const n = a.map((o) => Ts(o)), r = iO(e.baseTime, 1, e.timescale);
|
|
38955
38962
|
try {
|
|
38956
38963
|
n.forEach((o) => t(zO(o, r)));
|
|
38957
38964
|
} catch (o) {
|
|
@@ -40238,12 +40245,12 @@ function aF(s) {
|
|
|
40238
40245
|
return s < -999999999999999 || 999999999999999 < s;
|
|
40239
40246
|
}
|
|
40240
40247
|
const nF = /[\x00-\x1f\x7f]+/, rF = "Token", oF = "Key";
|
|
40241
|
-
function
|
|
40248
|
+
function Cs(s, e, t) {
|
|
40242
40249
|
return QO("serialize", s, e, t);
|
|
40243
40250
|
}
|
|
40244
40251
|
function lF(s) {
|
|
40245
40252
|
if (typeof s != "boolean")
|
|
40246
|
-
throw
|
|
40253
|
+
throw Cs(s, eF);
|
|
40247
40254
|
return s ? "?1" : "?0";
|
|
40248
40255
|
}
|
|
40249
40256
|
function cF(s) {
|
|
@@ -40251,12 +40258,12 @@ function cF(s) {
|
|
|
40251
40258
|
}
|
|
40252
40259
|
function dF(s) {
|
|
40253
40260
|
if (ArrayBuffer.isView(s) === !1)
|
|
40254
|
-
throw
|
|
40261
|
+
throw Cs(s, tF);
|
|
40255
40262
|
return `:${cF(s)}:`;
|
|
40256
40263
|
}
|
|
40257
40264
|
function Hp(s) {
|
|
40258
40265
|
if (aF(s))
|
|
40259
|
-
throw
|
|
40266
|
+
throw Cs(s, iF);
|
|
40260
40267
|
return s.toString();
|
|
40261
40268
|
}
|
|
40262
40269
|
function uF(s) {
|
|
@@ -40275,14 +40282,14 @@ function Wp(s, e) {
|
|
|
40275
40282
|
function hF(s) {
|
|
40276
40283
|
const e = Wp(s, 3);
|
|
40277
40284
|
if (Math.floor(Math.abs(e)).toString().length > 12)
|
|
40278
|
-
throw
|
|
40285
|
+
throw Cs(s, sF);
|
|
40279
40286
|
const t = e.toString();
|
|
40280
40287
|
return t.includes(".") ? t : `${t}.0`;
|
|
40281
40288
|
}
|
|
40282
40289
|
const mF = "String";
|
|
40283
40290
|
function fF(s) {
|
|
40284
40291
|
if (nF.test(s))
|
|
40285
|
-
throw
|
|
40292
|
+
throw Cs(s, mF);
|
|
40286
40293
|
return `"${s.replace(/\\/g, "\\\\").replace(/"/g, '\\"')}"`;
|
|
40287
40294
|
}
|
|
40288
40295
|
function gF(s) {
|
|
@@ -40291,14 +40298,14 @@ function gF(s) {
|
|
|
40291
40298
|
function nm(s) {
|
|
40292
40299
|
const e = gF(s);
|
|
40293
40300
|
if (/^([a-zA-Z*])([!#$%&'*+\-.^_`|~\w:/]*)$/.test(e) === !1)
|
|
40294
|
-
throw
|
|
40301
|
+
throw Cs(e, rF);
|
|
40295
40302
|
return e;
|
|
40296
40303
|
}
|
|
40297
40304
|
function rl(s) {
|
|
40298
40305
|
switch (typeof s) {
|
|
40299
40306
|
case "number":
|
|
40300
40307
|
if (!ge(s))
|
|
40301
|
-
throw
|
|
40308
|
+
throw Cs(s, am);
|
|
40302
40309
|
return Number.isInteger(s) ? Hp(s) : hF(s);
|
|
40303
40310
|
case "string":
|
|
40304
40311
|
return fF(s);
|
|
@@ -40314,12 +40321,12 @@ function rl(s) {
|
|
|
40314
40321
|
if (s instanceof jp)
|
|
40315
40322
|
return nm(s);
|
|
40316
40323
|
default:
|
|
40317
|
-
throw
|
|
40324
|
+
throw Cs(s, am);
|
|
40318
40325
|
}
|
|
40319
40326
|
}
|
|
40320
40327
|
function ol(s) {
|
|
40321
40328
|
if (/^[a-z*][a-z0-9\-_.*]*$/.test(s) === !1)
|
|
40322
|
-
throw
|
|
40329
|
+
throw Cs(s, oF);
|
|
40323
40330
|
return s;
|
|
40324
40331
|
}
|
|
40325
40332
|
function Lc(s) {
|
|
@@ -40335,7 +40342,7 @@ function yF(s, e = {
|
|
|
40335
40342
|
whitespace: !0
|
|
40336
40343
|
}) {
|
|
40337
40344
|
if (typeof s != "object")
|
|
40338
|
-
throw
|
|
40345
|
+
throw Cs(s, XO);
|
|
40339
40346
|
const t = s instanceof Map ? s.entries() : Object.entries(s), i = e != null && e.whitespace ? " " : "";
|
|
40340
40347
|
return Array.from(t).map(([a, n]) => {
|
|
40341
40348
|
n instanceof xi || (n = new xi(n));
|
|
@@ -41844,7 +41851,7 @@ class YF {
|
|
|
41844
41851
|
this.keyUriToKeyInfo = {};
|
|
41845
41852
|
}
|
|
41846
41853
|
createKeyLoadError(e, t = G.KEY_LOAD_ERROR, i, a, n) {
|
|
41847
|
-
return new
|
|
41854
|
+
return new As({
|
|
41848
41855
|
type: Le.NETWORK_ERROR,
|
|
41849
41856
|
details: t,
|
|
41850
41857
|
fatal: !1,
|
|
@@ -42858,7 +42865,7 @@ class Vs {
|
|
|
42858
42865
|
* Get the video-dev/hls.js package version.
|
|
42859
42866
|
*/
|
|
42860
42867
|
static get version() {
|
|
42861
|
-
return "1.5.
|
|
42868
|
+
return "1.5.17";
|
|
42862
42869
|
}
|
|
42863
42870
|
/**
|
|
42864
42871
|
* Check if the required MediaSource Extensions are available.
|
|
@@ -43432,7 +43439,7 @@ class Vs {
|
|
|
43432
43439
|
}
|
|
43433
43440
|
}
|
|
43434
43441
|
Vs.defaultConfig = void 0;
|
|
43435
|
-
const a7 = (s) => (Je("data-v-
|
|
43442
|
+
const a7 = (s) => (Je("data-v-bf69d301"), s = s(), Xe(), s), n7 = /* @__PURE__ */ a7(() => /* @__PURE__ */ v("svg", {
|
|
43436
43443
|
xmlns: "http://www.w3.org/2000/svg",
|
|
43437
43444
|
width: "20",
|
|
43438
43445
|
height: "20",
|
|
@@ -43481,9 +43488,9 @@ const a7 = (s) => (Je("data-v-d3c9a398"), s = s(), Xe(), s), n7 = /* @__PURE__ *
|
|
|
43481
43488
|
setup(s, { emit: e }) {
|
|
43482
43489
|
const t = s;
|
|
43483
43490
|
tt((ue) => ({
|
|
43484
|
-
|
|
43485
|
-
"
|
|
43486
|
-
"
|
|
43491
|
+
f47bb864: p.value,
|
|
43492
|
+
"875f549a": _.value,
|
|
43493
|
+
"3a0e3be2": R.value
|
|
43487
43494
|
}));
|
|
43488
43495
|
const i = qf(), n = [
|
|
43489
43496
|
{
|
|
@@ -43535,9 +43542,9 @@ const a7 = (s) => (Je("data-v-d3c9a398"), s = s(), Xe(), s), n7 = /* @__PURE__ *
|
|
|
43535
43542
|
isHls: je.url.includes(".m3u8"),
|
|
43536
43543
|
date: `${je.date.getDate()}, ${Jf[je.date.getMonth()]} ${je.date.getFullYear()}`,
|
|
43537
43544
|
data: `${n.get(je.categoryId)} ${rA(je.player.player_name)}`
|
|
43538
|
-
})).sort((je,
|
|
43539
|
-
t.startStoryIndex > 0 && t.startStoryIndex < He.length - 1 && (He.forEach((je,
|
|
43540
|
-
|
|
43545
|
+
})).sort((je, lt) => je.startTime - lt.startTime);
|
|
43546
|
+
t.startStoryIndex > 0 && t.startStoryIndex < He.length - 1 && (He.forEach((je, lt) => {
|
|
43547
|
+
lt <= t.startStoryIndex && (je.progress = 100);
|
|
43541
43548
|
}), l.value = t.startStoryIndex + 1, f.value = l.value), c.value = [...He];
|
|
43542
43549
|
}
|
|
43543
43550
|
},
|
|
@@ -43644,7 +43651,7 @@ const a7 = (s) => (Je("data-v-d3c9a398"), s = s(), Xe(), s), n7 = /* @__PURE__ *
|
|
|
43644
43651
|
else
|
|
43645
43652
|
throw new Error("Resize observer not supported!");
|
|
43646
43653
|
}
|
|
43647
|
-
return
|
|
43654
|
+
return ot(() => {
|
|
43648
43655
|
g.value = document.documentElement.scrollTop || document.body.scrollTop, window.scrollTo(0, 100), oe() ? (window.addEventListener("resize", be), be()) : (window.addEventListener("orientationchange", Oe), Oe()), setTimeout(() => {
|
|
43649
43656
|
We();
|
|
43650
43657
|
}, 500);
|
|
@@ -43681,8 +43688,8 @@ const a7 = (s) => (Je("data-v-d3c9a398"), s = s(), Xe(), s), n7 = /* @__PURE__ *
|
|
|
43681
43688
|
class: "stories__content__overlay"
|
|
43682
43689
|
}, null, 512),
|
|
43683
43690
|
v("div", u7, [
|
|
43684
|
-
(y(!0), b(N, null, _e(c.value, (je,
|
|
43685
|
-
key:
|
|
43691
|
+
(y(!0), b(N, null, _e(c.value, (je, lt) => (y(), b("div", {
|
|
43692
|
+
key: lt,
|
|
43686
43693
|
class: "stories__content__stories-bar__item"
|
|
43687
43694
|
}, [
|
|
43688
43695
|
v("div", {
|
|
@@ -43719,7 +43726,7 @@ const a7 = (s) => (Je("data-v-d3c9a398"), s = s(), Xe(), s), n7 = /* @__PURE__ *
|
|
|
43719
43726
|
}, null, 4)) : x("", !0)
|
|
43720
43727
|
], 6));
|
|
43721
43728
|
}
|
|
43722
|
-
}, p7 = /* @__PURE__ */ At(g7, [["__scopeId", "data-v-
|
|
43729
|
+
}, p7 = /* @__PURE__ */ At(g7, [["__scopeId", "data-v-bf69d301"]]), y7 = {
|
|
43723
43730
|
playlist_id: "GPI_default2022-12-08T02:51:56.334+00:00-PI-0",
|
|
43724
43731
|
last_played_index: 0,
|
|
43725
43732
|
group_id: "1",
|
|
@@ -45156,6 +45163,7 @@ const Qt = MD(), _7 = {
|
|
|
45156
45163
|
tournamentType: 0,
|
|
45157
45164
|
tournamentSelectedDropDowns: { seasons: [] },
|
|
45158
45165
|
playersLength: 0,
|
|
45166
|
+
playersLengthRival: 0,
|
|
45159
45167
|
nextRivalId: 0,
|
|
45160
45168
|
updateTableCalendar: 0,
|
|
45161
45169
|
loadDiscover: !1,
|
|
@@ -45179,6 +45187,9 @@ const Qt = MD(), _7 = {
|
|
|
45179
45187
|
teamSelected() {
|
|
45180
45188
|
return this.user.is_generic || this.tournamentSelected.id !== this.user.tournament ? 0 : this.user.team;
|
|
45181
45189
|
},
|
|
45190
|
+
teamRival() {
|
|
45191
|
+
return Object.keys(this.fullTournamentSchedule).length > 0 ? this.user.team == this.fullTournamentSchedule.data.prematch.home_team ? this.fullTournamentSchedule.data.prematch.visiting_team : this.fullTournamentSchedule.data.prematch.home_team : 0;
|
|
45192
|
+
},
|
|
45182
45193
|
isGenericLike() {
|
|
45183
45194
|
return this.user.is_generic || this.tournamentSelected.id !== this.user.tournament;
|
|
45184
45195
|
},
|
|
@@ -45487,6 +45498,13 @@ const Qt = MD(), _7 = {
|
|
|
45487
45498
|
clickProfileBtn(s) {
|
|
45488
45499
|
this.$emit("openProfile", s);
|
|
45489
45500
|
},
|
|
45501
|
+
viewAllRival() {
|
|
45502
|
+
const s = {
|
|
45503
|
+
team: Object.keys(this.fullTournamentSchedule).length > 0 ? this.user.team == this.fullTournamentSchedule.data.prematch.home_team ? this.fullTournamentSchedule.data.prematch.visiting_team : this.fullTournamentSchedule.data.prematch.home_team : 0,
|
|
45504
|
+
season: this.seasonSelected.id
|
|
45505
|
+
};
|
|
45506
|
+
this.$emit("openAllPlayers", s);
|
|
45507
|
+
},
|
|
45490
45508
|
viewAll() {
|
|
45491
45509
|
const s = {
|
|
45492
45510
|
team: this.team,
|
|
@@ -45497,6 +45515,9 @@ const Qt = MD(), _7 = {
|
|
|
45497
45515
|
getTotalPlayers(s) {
|
|
45498
45516
|
this.playersLength = s;
|
|
45499
45517
|
},
|
|
45518
|
+
getTotalPlayersRival(s) {
|
|
45519
|
+
this.playersLengthRival = s;
|
|
45520
|
+
},
|
|
45500
45521
|
clickCard(s) {
|
|
45501
45522
|
const e = {
|
|
45502
45523
|
data: s,
|
|
@@ -46229,7 +46250,7 @@ const Qt = MD(), _7 = {
|
|
|
46229
46250
|
beforeUnmount() {
|
|
46230
46251
|
this.resetGamesLiveInterval();
|
|
46231
46252
|
}
|
|
46232
|
-
}, js = (s) => (Je("data-v-
|
|
46253
|
+
}, js = (s) => (Je("data-v-ecc7f67f"), s = s(), Xe(), s), S7 = {
|
|
46233
46254
|
class: "gsclanding",
|
|
46234
46255
|
ref: "landingref"
|
|
46235
46256
|
}, w7 = {
|
|
@@ -46254,8 +46275,8 @@ const Qt = MD(), _7 = {
|
|
|
46254
46275
|
key: 0,
|
|
46255
46276
|
class: "container-games"
|
|
46256
46277
|
}, W7 = {
|
|
46257
|
-
key:
|
|
46258
|
-
class: "container-players"
|
|
46278
|
+
key: 7,
|
|
46279
|
+
class: "container-players-myteam"
|
|
46259
46280
|
}, K7 = ["onClick"], q7 = { class: "story-result" }, Y7 = {
|
|
46260
46281
|
key: 0,
|
|
46261
46282
|
class: "font-bold"
|
|
@@ -46551,7 +46572,25 @@ function AM(s, e, t, i, a, n) {
|
|
|
46551
46572
|
], 2)
|
|
46552
46573
|
], 64)),
|
|
46553
46574
|
x("", !0),
|
|
46554
|
-
n.isGenericLike ? x("", !0) :
|
|
46575
|
+
n.isGenericLike ? x("", !0) : Ss((y(), b("div", {
|
|
46576
|
+
key: n.teamRival,
|
|
46577
|
+
class: "container-players"
|
|
46578
|
+
}, [
|
|
46579
|
+
a.isPreviousDataLoaded ? (y(), ee(f, {
|
|
46580
|
+
key: n.teamRival,
|
|
46581
|
+
"tournament-selected": a.tournamentSelected,
|
|
46582
|
+
onClickProfileBtn: n.clickProfileBtn,
|
|
46583
|
+
onViewAll: n.viewAllRival,
|
|
46584
|
+
"is-rival": !0,
|
|
46585
|
+
onTotalPlayers: n.getTotalPlayersRival,
|
|
46586
|
+
"team-id": n.teamRival,
|
|
46587
|
+
"season-id": a.seasonSelected.id,
|
|
46588
|
+
"is-player": !0
|
|
46589
|
+
}, null, 8, ["tournament-selected", "onClickProfileBtn", "onViewAll", "onTotalPlayers", "team-id", "season-id"])) : x("", !0)
|
|
46590
|
+
])), [
|
|
46591
|
+
[ws, a.playersLengthRival > 0 && n.teamRival > 0]
|
|
46592
|
+
]),
|
|
46593
|
+
n.isGenericLike ? x("", !0) : Ss((y(), b("div", W7, [
|
|
46555
46594
|
a.isPreviousDataLoaded ? (y(), ee(f, {
|
|
46556
46595
|
key: 0,
|
|
46557
46596
|
"tournament-selected": a.tournamentSelected,
|
|
@@ -46563,7 +46602,7 @@ function AM(s, e, t, i, a, n) {
|
|
|
46563
46602
|
"is-player": !!t.user.player
|
|
46564
46603
|
}, null, 8, ["tournament-selected", "onClickProfileBtn", "onViewAll", "onTotalPlayers", "team-id", "season-id", "is-player"])) : x("", !0)
|
|
46565
46604
|
], 512)), [
|
|
46566
|
-
[
|
|
46605
|
+
[ws, a.playersLength > 0]
|
|
46567
46606
|
]),
|
|
46568
46607
|
v("div", {
|
|
46569
46608
|
class: A(["container-tops", t.user.tournament === a.tournamentSelected.id ? "tops-player" : ""])
|
|
@@ -46581,7 +46620,7 @@ function AM(s, e, t, i, a, n) {
|
|
|
46581
46620
|
}, null, 8, ["tournament-selected", "onMore", "show-switch", "season", "show-more", "team-id", "active-videos", "onOpenmedia"])) : x("", !0)
|
|
46582
46621
|
], 2),
|
|
46583
46622
|
a.gamesAllStories.length > 0 && !a.is_public && a.show_stories && t.showStories ? (y(), b("div", {
|
|
46584
|
-
key:
|
|
46623
|
+
key: 8,
|
|
46585
46624
|
class: A(["stories-circle-wrapper", t.user.tournament === a.tournamentSelected.id ? "" : "marginsep"])
|
|
46586
46625
|
}, [
|
|
46587
46626
|
(y(), ee(g, {
|
|
@@ -46640,7 +46679,7 @@ function AM(s, e, t, i, a, n) {
|
|
|
46640
46679
|
}))
|
|
46641
46680
|
], 2)) : x("", !0),
|
|
46642
46681
|
a.is_public ? (y(), b("div", {
|
|
46643
|
-
key:
|
|
46682
|
+
key: 9,
|
|
46644
46683
|
class: "b2c-image",
|
|
46645
46684
|
onClick: e[1] || (e[1] = (...p) => n.abrirNuevaVentana && n.abrirNuevaVentana(...p))
|
|
46646
46685
|
})) : x("", !0)
|
|
@@ -46831,7 +46870,7 @@ function AM(s, e, t, i, a, n) {
|
|
|
46831
46870
|
}, null, 8, ["season", "seasons", "tournament-type", "tournament", "privileges", "is-public", "is-player", "is-player-tournament", "is-generic", "team-id", "componentWidth", "tournaments", "onAction", "onOnOpenProfile", "onOpenmedia"])) : x("", !0)
|
|
46832
46871
|
], 4)
|
|
46833
46872
|
], 2),
|
|
46834
|
-
n.isGenericLike ? x("", !0) :
|
|
46873
|
+
n.isGenericLike ? x("", !0) : Ss((y(), b("div", SM, [
|
|
46835
46874
|
a.isPreviousDataLoaded ? (y(), ee(f, {
|
|
46836
46875
|
key: 0,
|
|
46837
46876
|
"tournament-selected": a.tournamentSelected,
|
|
@@ -46843,7 +46882,7 @@ function AM(s, e, t, i, a, n) {
|
|
|
46843
46882
|
"is-player": !!t.user.player
|
|
46844
46883
|
}, null, 8, ["tournament-selected", "onClickProfileBtn", "onViewAll", "onTotalPlayers", "team-id", "season-id", "is-player"])) : x("", !0)
|
|
46845
46884
|
], 512)), [
|
|
46846
|
-
[
|
|
46885
|
+
[ws, a.playersLength > 0]
|
|
46847
46886
|
]),
|
|
46848
46887
|
v("div", {
|
|
46849
46888
|
class: A([
|
|
@@ -46929,7 +46968,7 @@ function AM(s, e, t, i, a, n) {
|
|
|
46929
46968
|
], 64))
|
|
46930
46969
|
], 512);
|
|
46931
46970
|
}
|
|
46932
|
-
const BM = /* @__PURE__ */ At(_7, [["render", AM], ["__scopeId", "data-v-
|
|
46971
|
+
const BM = /* @__PURE__ */ At(_7, [["render", AM], ["__scopeId", "data-v-ecc7f67f"]]);
|
|
46933
46972
|
export {
|
|
46934
46973
|
BM as GSCLanding
|
|
46935
46974
|
};
|