@golstats/gsc-game-data 1.0.125 → 1.0.126
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/dist/{FilterConditions-dc6b25de-CdawgDTp-ad8529f4.js → FilterConditions-dc6b25de-CdawgDTp-31e60f16.js} +1 -1
- package/dist/{FilterField-37ad154d-PFd8HpMJ-555268e1.js → FilterField-37ad154d-PFd8HpMJ-d2fe9e57.js} +1 -1
- package/dist/{FilterSubcategories-a7b96423-Bs67-HFD-cc15896e.js → FilterSubcategories-a7b96423-Bs67-HFD-016df218.js} +1 -1
- package/dist/gsc-game-data.js +1 -1
- package/dist/gsc-game-data.umd.cjs +2 -2
- package/dist/{index-8151cffb.js → index-3828547f.js} +86 -78
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -42277,6 +42277,7 @@ const wIt = {
|
|
|
42277
42277
|
printData: [],
|
|
42278
42278
|
gameInfo: {},
|
|
42279
42279
|
gamesContainerWidth: 0,
|
|
42280
|
+
tournamentId: 0,
|
|
42280
42281
|
item: {
|
|
42281
42282
|
backgroundhome: "",
|
|
42282
42283
|
backgroundaway: "",
|
|
@@ -42395,48 +42396,50 @@ const wIt = {
|
|
|
42395
42396
|
Authorization: `${this.token}`
|
|
42396
42397
|
}
|
|
42397
42398
|
}), e = await t.get(
|
|
42398
|
-
"https://
|
|
42399
|
+
"https://d2oco6mqmc.execute-api.us-west-2.amazonaws.com/prod/teamsBySeason/" + this.config.season_id
|
|
42399
42400
|
), a = await t.get(
|
|
42401
|
+
"https://8tvo5bp9ai.execute-api.us-west-2.amazonaws.com/prod/gamesBySeason/" + this.config.season_id
|
|
42402
|
+
), c = await t.get(
|
|
42400
42403
|
"https://fxtcaw9tw6.execute-api.us-east-2.amazonaws.com/prod/historic/games/" + this.config.game
|
|
42401
42404
|
);
|
|
42402
|
-
this.item.category = 0, this.item.game_id =
|
|
42403
|
-
const
|
|
42404
|
-
this.gameInfo =
|
|
42405
|
-
var
|
|
42405
|
+
this.tournamentId = e.data.tournament_id, this.item.category = 0, this.item.game_id = c.data.game_id, this.item.season_id = this.config.season_id, this.item.score = c.data.thumbnails[c.data.game_id].score[0] + " - " + c.data.thumbnails[c.data.game_id].score[1], this.item.backgroundhome = c.data.thumbnails[c.data.game_id].info_thumbnails.home_colors.background_color, this.item.backgroundaway = c.data.thumbnails[c.data.game_id].info_thumbnails.away_colors.background_color, this.item.logohome = "https://az755631.vo.msecnd.net/teams-150/" + c.data.thumbnails[c.data.game_id].home_team + ".png", this.item.logoaway = "https://az755631.vo.msecnd.net/teams-150/" + c.data.thumbnails[c.data.game_id].visiting_team + ".png", this.item.background = "https://golstatsimages.blob.core.windows.net/images-library/" + c.data.thumbnails[c.data.game_id].info_thumbnails.images.background_default_games[0];
|
|
42406
|
+
const f = a.data.games.findIndex((y) => y.game_id === this.config.game);
|
|
42407
|
+
this.gameInfo = a.data.games[f];
|
|
42408
|
+
var r = [], o = {}, n = await t.get(
|
|
42406
42409
|
"https://wlduw4woy3.execute-api.us-east-2.amazonaws.com/prod/best-plays/seasons/" + this.config.season_id + "/games/" + this.config.game
|
|
42407
42410
|
);
|
|
42408
|
-
for (let
|
|
42409
|
-
const
|
|
42410
|
-
Math.random() *
|
|
42411
|
-
),
|
|
42412
|
-
Math.random() *
|
|
42411
|
+
for (let y = 0; y < n.data.games[0].players.length; y++) {
|
|
42412
|
+
const p = Math.floor(
|
|
42413
|
+
Math.random() * n.data.games[0].players[y].info_thumbnails.images.background_player_in_action.length
|
|
42414
|
+
), i = Math.floor(
|
|
42415
|
+
Math.random() * n.data.games[0].players[y].info_thumbnails.images.player_in_action.length
|
|
42413
42416
|
);
|
|
42414
|
-
|
|
42415
|
-
background_color_buttons:
|
|
42416
|
-
background_color_cards:
|
|
42417
|
-
color_icon_play:
|
|
42418
|
-
color_next_back:
|
|
42419
|
-
font_color:
|
|
42420
|
-
font_color_card:
|
|
42421
|
-
colorbackgroundhome:
|
|
42417
|
+
o = {
|
|
42418
|
+
background_color_buttons: n.data.games[0].players[y].info_thumbnails.colors.background_color_buttons,
|
|
42419
|
+
background_color_cards: n.data.games[0].players[y].info_thumbnails.colors.background_color_cards,
|
|
42420
|
+
color_icon_play: n.data.games[0].players[y].info_thumbnails.colors.color_icon_play,
|
|
42421
|
+
color_next_back: n.data.games[0].players[y].info_thumbnails.colors.color_next_back,
|
|
42422
|
+
font_color: n.data.games[0].players[y].info_thumbnails.colors.font_color,
|
|
42423
|
+
font_color_card: n.data.games[0].players[y].info_thumbnails.colors.font_color_cards,
|
|
42424
|
+
colorbackgroundhome: n.data.games[0].players[y].info_thumbnails.colors.background_color,
|
|
42422
42425
|
colorbackgroundaway: "",
|
|
42423
|
-
nameplayer:
|
|
42424
|
-
background:
|
|
42426
|
+
nameplayer: n.data.games[0].players[y].player_name,
|
|
42427
|
+
background: n.data.games[0].players[y].info_thumbnails.images.background_player_in_action[p] ? "https://golstatsimages.blob.core.windows.net/images-library/" + n.data.games[0].players[y].info_thumbnails.images.background_player_in_action[p] : "https://golstatsimages.blob.core.windows.net/images-library/" + n.data.games[0].players[y].info_thumbnails.images.background_default_players[0],
|
|
42425
42428
|
namecategory: "RESUMEN",
|
|
42426
42429
|
namehometeam: "",
|
|
42427
42430
|
nameawayteam: "",
|
|
42428
|
-
logohome:
|
|
42429
|
-
photoprofile:
|
|
42431
|
+
logohome: n.data.games[0].players[y].team_logo,
|
|
42432
|
+
photoprofile: n.data.games[0].players[y].info_thumbnails.images.player_in_action[i] ? "https://golstatsimages.blob.core.windows.net/images-library/" + n.data.games[0].players[y].info_thumbnails.images.player_in_action[i] : `https://az755631.vo.msecnd.net/players-profile/${n.data.games[0].players[y].player_id}.png`,
|
|
42430
42433
|
logoaway: "",
|
|
42431
42434
|
scoreaway: "",
|
|
42432
42435
|
scorehome: "",
|
|
42433
|
-
game_id:
|
|
42434
|
-
season_id:
|
|
42436
|
+
game_id: n.data.games[0].game_id,
|
|
42437
|
+
season_id: n.data.games[0].players[y].season_id,
|
|
42435
42438
|
category: 0,
|
|
42436
|
-
team_id:
|
|
42437
|
-
},
|
|
42439
|
+
team_id: n.data.games[0].players[y].team_id
|
|
42440
|
+
}, r.push(o);
|
|
42438
42441
|
}
|
|
42439
|
-
this.printData =
|
|
42442
|
+
this.printData = r;
|
|
42440
42443
|
}
|
|
42441
42444
|
},
|
|
42442
42445
|
mounted() {
|
|
@@ -42444,7 +42447,7 @@ const wIt = {
|
|
|
42444
42447
|
this.setUpResizeObserver();
|
|
42445
42448
|
}, 100), this.fillData();
|
|
42446
42449
|
}
|
|
42447
|
-
}, $1 = (t) => (Jr("data-v-
|
|
42450
|
+
}, $1 = (t) => (Jr("data-v-36fca8ba"), t = t(), Qr(), t), CIt = {
|
|
42448
42451
|
ref: "gamesContainer",
|
|
42449
42452
|
class: "container",
|
|
42450
42453
|
style: {}
|
|
@@ -42469,7 +42472,7 @@ function DIt(t, e, a, c, f, r) {
|
|
|
42469
42472
|
N("div", kIt, [
|
|
42470
42473
|
nn(N("div", TIt, [
|
|
42471
42474
|
N("div", SIt, [
|
|
42472
|
-
Object.keys(f.gameInfo).length > 0 ? (yt(), Tt("div", AIt, ae(f.gameInfo.matchday_name.replace("Matchday", "Jornada").replace(
|
|
42475
|
+
Object.keys(f.gameInfo).length > 0 ? (yt(), Tt("div", AIt, ae(f.tournamentId != 41 ? f.gameInfo.matchday_name.replace("Matchday", "Jornada").replace(
|
|
42473
42476
|
"de Final",
|
|
42474
42477
|
""
|
|
42475
42478
|
).replace(
|
|
@@ -42490,7 +42493,7 @@ function DIt(t, e, a, c, f, r) {
|
|
|
42490
42493
|
).replace(
|
|
42491
42494
|
"Playoffs 6",
|
|
42492
42495
|
"Final Vuelta"
|
|
42493
|
-
)), 1)) : ee("", !0),
|
|
42496
|
+
) : f.gameInfo.matchday_name == "Matchday 10" ? "Final" : f.gameInfo.matchday_name.replace("Matchday 1", "16vos Ida").replace("Matchday 2", "16vos Vuelta").replace("Matchday 3", "8vos Ida").replace("Matchday 4", "8vos Vuelta").replace("Matchday 5", "4tos Ida").replace("Matchday 6", "4tos Vuelta").replace("Matchday 7", "Semifinal Ida").replace("Matchday 8", "Semifinal Vuelta").replace("Matchday 9", "Final").replace("Matchday 10", "Final")), 1)) : ee("", !0),
|
|
42494
42497
|
IIt,
|
|
42495
42498
|
MIt,
|
|
42496
42499
|
EIt,
|
|
@@ -42654,7 +42657,7 @@ function DIt(t, e, a, c, f, r) {
|
|
|
42654
42657
|
])
|
|
42655
42658
|
], 512);
|
|
42656
42659
|
}
|
|
42657
|
-
const $It = /* @__PURE__ */ r_(wIt, [["render", DIt], ["__scopeId", "data-v-
|
|
42660
|
+
const $It = /* @__PURE__ */ r_(wIt, [["render", DIt], ["__scopeId", "data-v-36fca8ba"]]);
|
|
42658
42661
|
function ND(t, e) {
|
|
42659
42662
|
return function() {
|
|
42660
42663
|
return t.apply(e, arguments);
|
|
@@ -74304,6 +74307,7 @@ const Nse = {
|
|
|
74304
74307
|
data() {
|
|
74305
74308
|
return {
|
|
74306
74309
|
update: 0,
|
|
74310
|
+
tournamentId: 0,
|
|
74307
74311
|
item: {
|
|
74308
74312
|
backgroundhome: "",
|
|
74309
74313
|
backgroundaway: "",
|
|
@@ -74464,33 +74468,37 @@ const Nse = {
|
|
|
74464
74468
|
}
|
|
74465
74469
|
}), e = await t.get(
|
|
74466
74470
|
"https://8tvo5bp9ai.execute-api.us-west-2.amazonaws.com/prod/gamesBySeason/" + this.config.season_id
|
|
74467
|
-
), a =
|
|
74468
|
-
|
|
74469
|
-
|
|
74471
|
+
), a = await t.get(
|
|
74472
|
+
"https://d2oco6mqmc.execute-api.us-west-2.amazonaws.com/prod/teamsBySeason/" + this.config.season_id
|
|
74473
|
+
);
|
|
74474
|
+
this.tournamentId = a.data.tournament_id;
|
|
74475
|
+
const c = e.data.games.findIndex((r) => r.game_id === this.config.game);
|
|
74476
|
+
if (this.gameInfo = e.data.games[c], this.type === "Postmatch") {
|
|
74477
|
+
const r = await t.get(
|
|
74470
74478
|
"https://fxtcaw9tw6.execute-api.us-east-2.amazonaws.com/prod/historic/games/" + this.config.game
|
|
74471
74479
|
);
|
|
74472
|
-
this.item.category = 0, this.item.game_id =
|
|
74480
|
+
this.item.category = 0, this.item.game_id = r.data.game_id, this.item.season_id = this.config.season_id, this.item.score = r.data.thumbnails[r.data.game_id].score[0] + " - " + r.data.thumbnails[r.data.game_id].score[1], this.item.backgroundhome = r.data.thumbnails[r.data.game_id].info_thumbnails.home_colors.background_color, this.item.backgroundaway = r.data.thumbnails[r.data.game_id].info_thumbnails.away_colors.background_color, this.item.logohome = "https://az755631.vo.msecnd.net/teams-150/" + r.data.thumbnails[r.data.game_id].home_team + ".png", this.item.logoaway = "https://az755631.vo.msecnd.net/teams-150/" + r.data.thumbnails[r.data.game_id].visiting_team + ".png", this.item.background = "https://golstatsimages.blob.core.windows.net/images-library/" + r.data.thumbnails[r.data.game_id].info_thumbnails.images.background_default_games[0];
|
|
74473
74481
|
}
|
|
74474
74482
|
try {
|
|
74475
|
-
const
|
|
74483
|
+
const r = await t.get(
|
|
74476
74484
|
"https://bzznnzehtf.execute-api.us-west-2.amazonaws.com/prod/xg/seasons/" + this.config.season_id + "/teams/" + this.gameInfo.home_team + "/" + this.gameInfo.visiting_team
|
|
74477
74485
|
);
|
|
74478
|
-
if (
|
|
74479
|
-
this.getXg(
|
|
74486
|
+
if (r.data.data_headers.length > 0)
|
|
74487
|
+
this.getXg(r.data);
|
|
74480
74488
|
else
|
|
74481
74489
|
try {
|
|
74482
|
-
const
|
|
74490
|
+
const o = await t.get(
|
|
74483
74491
|
"https://bzznnzehtf.execute-api.us-west-2.amazonaws.com/prod/xg/seasons/" + this.config.parent_season + "/teams/" + this.gameInfo.home_team + "/" + this.gameInfo.visiting_team
|
|
74484
74492
|
);
|
|
74485
|
-
this.getXg(
|
|
74486
|
-
} catch (
|
|
74487
|
-
console.log(
|
|
74493
|
+
this.getXg(o.data);
|
|
74494
|
+
} catch (o) {
|
|
74495
|
+
console.log(o);
|
|
74488
74496
|
}
|
|
74489
|
-
} catch (
|
|
74490
|
-
console.log(
|
|
74497
|
+
} catch (r) {
|
|
74498
|
+
console.log(r);
|
|
74491
74499
|
}
|
|
74492
74500
|
this.stats[this.gameInfo.home_team] = [], this.stats[this.gameInfo.visiting_team] = [];
|
|
74493
|
-
var
|
|
74501
|
+
var f = [
|
|
74494
74502
|
1,
|
|
74495
74503
|
2,
|
|
74496
74504
|
3,
|
|
@@ -74532,56 +74540,56 @@ const Nse = {
|
|
|
74532
74540
|
39,
|
|
74533
74541
|
40
|
|
74534
74542
|
];
|
|
74535
|
-
for (let
|
|
74536
|
-
this.stats[this.gameInfo.home_team][
|
|
74543
|
+
for (let r = 0; r < f.length; r++)
|
|
74544
|
+
this.stats[this.gameInfo.home_team][f[r]] = [], this.stats[this.gameInfo.home_team][f[r]] = 0, this.stats[this.gameInfo.visiting_team][f[r]] = [], this.stats[this.gameInfo.visiting_team][f[r]] = 0;
|
|
74537
74545
|
if (this.type === "Postmatch") {
|
|
74538
|
-
const
|
|
74546
|
+
const r = await t.get(
|
|
74539
74547
|
"https://nckawv8v3b.execute-api.us-west-2.amazonaws.com/prod/v2/statisticsByGame/" + this.config.game
|
|
74540
74548
|
);
|
|
74541
|
-
for (let
|
|
74542
|
-
|
|
74549
|
+
for (let o = 0; o < r.data.data.length; o++)
|
|
74550
|
+
r.data.data[o][1] == this.gameInfo.home_team ? this.stats[this.gameInfo.home_team][r.data.data[o][0]] ? this.stats[this.gameInfo.home_team][r.data.data[o][0]] = this.stats[this.gameInfo.home_team][r.data.data[o][0]] + r.data.data[o][6] : (this.stats[this.gameInfo.home_team][r.data.data[o][0]] = [], this.stats[this.gameInfo.home_team][r.data.data[o][0]] = r.data.data[o][6]) : this.stats[this.gameInfo.visiting_team][r.data.data[o][0]] ? this.stats[this.gameInfo.visiting_team][r.data.data[o][0]] = this.stats[this.gameInfo.visiting_team][r.data.data[o][0]] + r.data.data[o][6] : (this.stats[this.gameInfo.visiting_team][r.data.data[o][0]] = [], this.stats[this.gameInfo.visiting_team][r.data.data[o][0]] = r.data.data[o][6]);
|
|
74543
74551
|
} else if (this.type === "Prematch") {
|
|
74544
74552
|
try {
|
|
74545
|
-
const
|
|
74553
|
+
const p = await t.get(
|
|
74546
74554
|
"https://a4dcb6avog.execute-api.us-west-2.amazonaws.com/prod/v2/statisticsTeamBySeason/" + this.config.season_id + "/" + this.gameInfo.home_team
|
|
74547
74555
|
);
|
|
74548
|
-
this.statsLocal =
|
|
74556
|
+
this.statsLocal = p;
|
|
74549
74557
|
} catch {
|
|
74550
74558
|
try {
|
|
74551
|
-
const
|
|
74559
|
+
const p = await t.get(
|
|
74552
74560
|
"https://a4dcb6avog.execute-api.us-west-2.amazonaws.com/prod/v2/statisticsTeamBySeason/" + this.config.parent_season + "/" + this.gameInfo.home_team
|
|
74553
74561
|
);
|
|
74554
|
-
this.statsLocal =
|
|
74562
|
+
this.statsLocal = p;
|
|
74555
74563
|
} catch {
|
|
74556
74564
|
console.log("error regular local");
|
|
74557
74565
|
}
|
|
74558
74566
|
}
|
|
74559
74567
|
try {
|
|
74560
|
-
const
|
|
74568
|
+
const p = await t.get(
|
|
74561
74569
|
"https://a4dcb6avog.execute-api.us-west-2.amazonaws.com/prod/v2/statisticsTeamBySeason/" + this.config.season_id + "/" + this.gameInfo.visiting_team
|
|
74562
74570
|
);
|
|
74563
|
-
this.statsAway =
|
|
74571
|
+
this.statsAway = p;
|
|
74564
74572
|
} catch {
|
|
74565
|
-
const
|
|
74573
|
+
const p = await t.get(
|
|
74566
74574
|
"https://a4dcb6avog.execute-api.us-west-2.amazonaws.com/prod/v2/statisticsTeamBySeason/" + this.config.parent_season + "/" + this.gameInfo.visiting_team
|
|
74567
74575
|
);
|
|
74568
|
-
this.statsAway =
|
|
74576
|
+
this.statsAway = p;
|
|
74569
74577
|
}
|
|
74570
|
-
const
|
|
74571
|
-
for (let
|
|
74572
|
-
const [
|
|
74573
|
-
|
|
74578
|
+
const r = this.statsLocal.data.games.played ? this.statsLocal.data.games.played : 1, o = this.statsAway.data.games.played ? this.statsAway.data.games.played : 1;
|
|
74579
|
+
for (let p = 0; p < this.statsLocal.data.data.length; p++) {
|
|
74580
|
+
const [i, , , , , , m] = this.statsLocal.data.data[p], b = this.stats[this.gameInfo.home_team];
|
|
74581
|
+
b[i] = (b[i] || 0) + m;
|
|
74574
74582
|
}
|
|
74575
|
-
for (let
|
|
74576
|
-
const [
|
|
74577
|
-
|
|
74583
|
+
for (let p = 0; p < this.statsAway.data.data.length; p++) {
|
|
74584
|
+
const [i, , , , , , m] = this.statsAway.data.data[p], b = this.stats[this.gameInfo.visiting_team];
|
|
74585
|
+
b[i] = (b[i] || 0) + m;
|
|
74578
74586
|
}
|
|
74579
|
-
const
|
|
74580
|
-
for (const
|
|
74581
|
-
|
|
74582
|
-
const
|
|
74583
|
-
for (const
|
|
74584
|
-
|
|
74587
|
+
const n = this.stats[this.gameInfo.home_team];
|
|
74588
|
+
for (const p in n)
|
|
74589
|
+
n[p] && n[p] > 0 && (n[p] /= r);
|
|
74590
|
+
const y = this.stats[this.gameInfo.visiting_team];
|
|
74591
|
+
for (const p in y)
|
|
74592
|
+
y[p] && y[p] > 0 && (y[p] /= o);
|
|
74585
74593
|
}
|
|
74586
74594
|
},
|
|
74587
74595
|
async getTableList() {
|
|
@@ -74611,7 +74619,7 @@ const Nse = {
|
|
|
74611
74619
|
beforeUnmount() {
|
|
74612
74620
|
window.removeEventListener("resize", this.getCarouselWidth);
|
|
74613
74621
|
}
|
|
74614
|
-
}, Ep = (t) => (Jr("data-v-
|
|
74622
|
+
}, Ep = (t) => (Jr("data-v-bed0e7cf"), t = t(), Qr(), t), jse = {
|
|
74615
74623
|
ref: "gamesContainer",
|
|
74616
74624
|
class: "container",
|
|
74617
74625
|
style: {}
|
|
@@ -74663,7 +74671,7 @@ function dle(t, e, a, c, f, r) {
|
|
|
74663
74671
|
class: "video-partido-container__content",
|
|
74664
74672
|
style: ha(f.gamesContainerWidth < 645 ? "margin-bottom: 30px" : "")
|
|
74665
74673
|
}, [
|
|
74666
|
-
Object.keys(f.gameInfo).length > 0 ? (yt(), Tt("div", Hse, ae(f.gameInfo.matchday_name.replace("Matchday", "Jornada").replace(
|
|
74674
|
+
Object.keys(f.gameInfo).length > 0 ? (yt(), Tt("div", Hse, ae(f.tournamentId != 41 ? f.gameInfo.matchday_name.replace("Matchday", "Jornada").replace(
|
|
74667
74675
|
"de Final",
|
|
74668
74676
|
""
|
|
74669
74677
|
).replace(
|
|
@@ -74684,7 +74692,7 @@ function dle(t, e, a, c, f, r) {
|
|
|
74684
74692
|
).replace(
|
|
74685
74693
|
"Playoffs 6",
|
|
74686
74694
|
"Final Vuelta"
|
|
74687
|
-
)), 1)) : ee("", !0),
|
|
74695
|
+
) : f.gameInfo.matchday_name == "Matchday 10" ? "Final" : f.gameInfo.matchday_name.replace("Matchday 1", "16vos Ida").replace("Matchday 2", "16vos Vuelta").replace("Matchday 3", "8vos Ida").replace("Matchday 4", "8vos Vuelta").replace("Matchday 5", "4tos Ida").replace("Matchday 6", "4tos Vuelta").replace("Matchday 7", "Semifinal Ida").replace("Matchday 8", "Semifinal Vuelta").replace("Matchday 9", "Final").replace("Matchday 10", "Final")), 1)) : ee("", !0),
|
|
74688
74696
|
Gse,
|
|
74689
74697
|
Wse,
|
|
74690
74698
|
f.gamesContainerWidth >= 645 ? (yt(), Tt("p", qse, " Las jugadas mas importantes del partido ")) : ee("", !0),
|
|
@@ -74920,7 +74928,7 @@ function dle(t, e, a, c, f, r) {
|
|
|
74920
74928
|
])
|
|
74921
74929
|
], 512);
|
|
74922
74930
|
}
|
|
74923
|
-
const wE = /* @__PURE__ */ l0(Nse, [["render", dle], ["__scopeId", "data-v-
|
|
74931
|
+
const wE = /* @__PURE__ */ l0(Nse, [["render", dle], ["__scopeId", "data-v-bed0e7cf"]]);
|
|
74924
74932
|
const hle = { class: "datagame-container" }, ple = {
|
|
74925
74933
|
__name: "GSCSummaryMain",
|
|
74926
74934
|
props: {
|
|
@@ -84386,11 +84394,11 @@ const W1e = { class: "dropdown" }, q1e = { class: "selected-item" }, Y1e = {
|
|
|
84386
84394
|
},
|
|
84387
84395
|
setup(t) {
|
|
84388
84396
|
const e = t, a = M3(
|
|
84389
|
-
() => import("./FilterSubcategories-a7b96423-Bs67-HFD-
|
|
84397
|
+
() => import("./FilterSubcategories-a7b96423-Bs67-HFD-016df218.js")
|
|
84390
84398
|
), c = M3(
|
|
84391
|
-
() => import("./FilterConditions-dc6b25de-CdawgDTp-
|
|
84399
|
+
() => import("./FilterConditions-dc6b25de-CdawgDTp-31e60f16.js")
|
|
84392
84400
|
), f = M3(
|
|
84393
|
-
() => import("./FilterField-37ad154d-PFd8HpMJ-
|
|
84401
|
+
() => import("./FilterField-37ad154d-PFd8HpMJ-d2fe9e57.js")
|
|
84394
84402
|
), r = [
|
|
84395
84403
|
{
|
|
84396
84404
|
name: "Sub categorías",
|