sass-template-common 0.2.2 → 0.2.4
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.
|
@@ -157,7 +157,7 @@ function Dr() {
|
|
|
157
157
|
(function(n, r) {
|
|
158
158
|
e.exports = r();
|
|
159
159
|
})(Yo, (function() {
|
|
160
|
-
var n = 1e3, r = 6e4, o = 36e5, s = "millisecond", i = "second", c = "minute", d = "hour", l = "day", u = "week", h = "month", f = "quarter", p = "year", g = "date", A = "Invalid Date",
|
|
160
|
+
var n = 1e3, r = 6e4, o = 36e5, s = "millisecond", i = "second", c = "minute", d = "hour", l = "day", u = "week", h = "month", f = "quarter", p = "year", g = "date", A = "Invalid Date", w = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, C = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, S = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(D) {
|
|
161
161
|
var U = ["th", "st", "nd", "rd"], E = D % 100;
|
|
162
162
|
return "[" + D + (U[(E - 20) % 10] || U[E] || U[0]) + "]";
|
|
163
163
|
} }, _ = function(D, U, E) {
|
|
@@ -168,8 +168,8 @@ function Dr() {
|
|
|
168
168
|
return (U <= 0 ? "+" : "-") + _(P, 2, "0") + ":" + _(I, 2, "0");
|
|
169
169
|
}, m: function D(U, E) {
|
|
170
170
|
if (U.date() < E.date()) return -D(E, U);
|
|
171
|
-
var P = 12 * (E.year() - U.year()) + (E.month() - U.month()), I = U.clone().add(P, h), z = E - I < 0,
|
|
172
|
-
return +(-(P + (E - I) / (z ? I -
|
|
171
|
+
var P = 12 * (E.year() - U.year()) + (E.month() - U.month()), I = U.clone().add(P, h), z = E - I < 0, y = U.clone().add(P + (z ? -1 : 1), h);
|
|
172
|
+
return +(-(P + (E - I) / (z ? I - y : y - I)) || 0);
|
|
173
173
|
}, a: function(D) {
|
|
174
174
|
return D < 0 ? Math.ceil(D) || 0 : Math.floor(D);
|
|
175
175
|
}, p: function(D) {
|
|
@@ -186,8 +186,8 @@ function Dr() {
|
|
|
186
186
|
if (typeof U == "string") {
|
|
187
187
|
var z = U.toLowerCase();
|
|
188
188
|
T[z] && (I = z), E && (T[z] = E, I = z);
|
|
189
|
-
var
|
|
190
|
-
if (!I &&
|
|
189
|
+
var y = U.split("-");
|
|
190
|
+
if (!I && y.length > 1) return D(y[0]);
|
|
191
191
|
} else {
|
|
192
192
|
var N = U.name;
|
|
193
193
|
T[N] = U, I = N;
|
|
@@ -213,10 +213,10 @@ function Dr() {
|
|
|
213
213
|
if (O.u(I)) return /* @__PURE__ */ new Date();
|
|
214
214
|
if (I instanceof Date) return new Date(I);
|
|
215
215
|
if (typeof I == "string" && !/Z$/i.test(I)) {
|
|
216
|
-
var
|
|
217
|
-
if (
|
|
218
|
-
var N =
|
|
219
|
-
return z ? new Date(Date.UTC(
|
|
216
|
+
var y = I.match(w);
|
|
217
|
+
if (y) {
|
|
218
|
+
var N = y[2] - 1 || 0, R = (y[7] || "0").substring(0, 3);
|
|
219
|
+
return z ? new Date(Date.UTC(y[1], N, y[3] || 1, y[4] || 0, y[5] || 0, y[6] || 0, R)) : new Date(y[1], N, y[3] || 1, y[4] || 0, y[5] || 0, y[6] || 0, R);
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
return new Date(I);
|
|
@@ -242,13 +242,13 @@ function Dr() {
|
|
|
242
242
|
}, U.valueOf = function() {
|
|
243
243
|
return this.$d.getTime();
|
|
244
244
|
}, U.startOf = function(E, P) {
|
|
245
|
-
var I = this, z = !!O.u(P) || P,
|
|
245
|
+
var I = this, z = !!O.u(P) || P, y = O.p(E), N = function(X, W) {
|
|
246
246
|
var ie = O.w(I.$u ? Date.UTC(I.$y, W, X) : new Date(I.$y, W, X), I);
|
|
247
247
|
return z ? ie : ie.endOf(l);
|
|
248
248
|
}, R = function(X, W) {
|
|
249
249
|
return O.w(I.toDate()[X].apply(I.toDate("s"), (z ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(W)), I);
|
|
250
250
|
}, M = this.$W, L = this.$M, H = this.$D, V = "set" + (this.$u ? "UTC" : "");
|
|
251
|
-
switch (
|
|
251
|
+
switch (y) {
|
|
252
252
|
case p:
|
|
253
253
|
return z ? N(1, 0) : N(31, 11);
|
|
254
254
|
case h:
|
|
@@ -271,7 +271,7 @@ function Dr() {
|
|
|
271
271
|
}, U.endOf = function(E) {
|
|
272
272
|
return this.startOf(E, !1);
|
|
273
273
|
}, U.$set = function(E, P) {
|
|
274
|
-
var I, z = O.p(E),
|
|
274
|
+
var I, z = O.p(E), y = "set" + (this.$u ? "UTC" : ""), N = (I = {}, I[l] = y + "Date", I[g] = y + "Date", I[h] = y + "Month", I[p] = y + "FullYear", I[d] = y + "Hours", I[c] = y + "Minutes", I[i] = y + "Seconds", I[s] = y + "Milliseconds", I)[z], R = z === l ? this.$D + (P - this.$W) : P;
|
|
275
275
|
if (z === h || z === p) {
|
|
276
276
|
var M = this.clone().set(g, 1);
|
|
277
277
|
M.$d[N](R), M.init(), this.$d = M.set(g, Math.min(this.$D, M.daysInMonth())).$d;
|
|
@@ -284,22 +284,22 @@ function Dr() {
|
|
|
284
284
|
}, U.add = function(E, P) {
|
|
285
285
|
var I, z = this;
|
|
286
286
|
E = Number(E);
|
|
287
|
-
var
|
|
287
|
+
var y = O.p(P), N = function(L) {
|
|
288
288
|
var H = G(z);
|
|
289
289
|
return O.w(H.date(H.date() + Math.round(L * E)), z);
|
|
290
290
|
};
|
|
291
|
-
if (
|
|
292
|
-
if (
|
|
293
|
-
if (
|
|
294
|
-
if (
|
|
295
|
-
var R = (I = {}, I[c] = r, I[d] = o, I[i] = n, I)[
|
|
291
|
+
if (y === h) return this.set(h, this.$M + E);
|
|
292
|
+
if (y === p) return this.set(p, this.$y + E);
|
|
293
|
+
if (y === l) return N(1);
|
|
294
|
+
if (y === u) return N(7);
|
|
295
|
+
var R = (I = {}, I[c] = r, I[d] = o, I[i] = n, I)[y] || 1, M = this.$d.getTime() + E * R;
|
|
296
296
|
return O.w(M, this);
|
|
297
297
|
}, U.subtract = function(E, P) {
|
|
298
298
|
return this.add(-1 * E, P);
|
|
299
299
|
}, U.format = function(E) {
|
|
300
300
|
var P = this, I = this.$locale();
|
|
301
301
|
if (!this.isValid()) return I.invalidDate || A;
|
|
302
|
-
var z = E || "YYYY-MM-DDTHH:mm:ssZ",
|
|
302
|
+
var z = E || "YYYY-MM-DDTHH:mm:ssZ", y = O.z(this), N = this.$H, R = this.$m, M = this.$M, L = I.weekdays, H = I.months, V = I.meridiem, F = function(W, ie, q, Ae) {
|
|
303
303
|
return W && (W[ie] || W(P, z)) || q[ie].slice(0, Ae);
|
|
304
304
|
}, Z = function(W) {
|
|
305
305
|
return O.s(N % 12 || 12, W, "0");
|
|
@@ -357,16 +357,16 @@ function Dr() {
|
|
|
357
357
|
case "SSS":
|
|
358
358
|
return O.s(P.$ms, 3, "0");
|
|
359
359
|
case "Z":
|
|
360
|
-
return
|
|
360
|
+
return y;
|
|
361
361
|
}
|
|
362
362
|
return null;
|
|
363
|
-
})(W) ||
|
|
363
|
+
})(W) || y.replace(":", "");
|
|
364
364
|
}));
|
|
365
365
|
}, U.utcOffset = function() {
|
|
366
366
|
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
|
367
367
|
}, U.diff = function(E, P, I) {
|
|
368
|
-
var z,
|
|
369
|
-
return O.m(
|
|
368
|
+
var z, y = this, N = O.p(P), R = G(E), M = (R.utcOffset() - this.utcOffset()) * r, L = this - R, H = function() {
|
|
369
|
+
return O.m(y, R);
|
|
370
370
|
};
|
|
371
371
|
switch (N) {
|
|
372
372
|
case p:
|
|
@@ -444,19 +444,19 @@ function Zo() {
|
|
|
444
444
|
return s.fromToBase(l, u, h, f);
|
|
445
445
|
}
|
|
446
446
|
o.en.relativeTime = i, s.fromToBase = function(l, u, h, f, p) {
|
|
447
|
-
for (var g, A,
|
|
447
|
+
for (var g, A, w, C = h.$locale().relativeTime || i, S = n.thresholds || [{ l: "s", r: 44, d: "second" }, { l: "m", r: 89 }, { l: "mm", r: 44, d: "minute" }, { l: "h", r: 89 }, { l: "hh", r: 21, d: "hour" }, { l: "d", r: 35 }, { l: "dd", r: 25, d: "day" }, { l: "M", r: 45 }, { l: "MM", r: 10, d: "month" }, { l: "y", r: 17 }, { l: "yy", d: "year" }], _ = S.length, x = 0; x < _; x += 1) {
|
|
448
448
|
var v = S[x];
|
|
449
449
|
v.d && (g = f ? o(l).diff(h, v.d, !0) : h.diff(l, v.d, !0));
|
|
450
450
|
var T = (n.rounding || Math.round)(Math.abs(g));
|
|
451
|
-
if (
|
|
451
|
+
if (w = g > 0, T <= v.r || !v.r) {
|
|
452
452
|
T <= 1 && x > 0 && (v = S[x - 1]);
|
|
453
453
|
var j = C[v.l];
|
|
454
|
-
p && (T = p("" + T)), A = typeof j == "string" ? j.replace("%d", T) : j(T, u, v.l,
|
|
454
|
+
p && (T = p("" + T)), A = typeof j == "string" ? j.replace("%d", T) : j(T, u, v.l, w);
|
|
455
455
|
break;
|
|
456
456
|
}
|
|
457
457
|
}
|
|
458
458
|
if (u) return A;
|
|
459
|
-
var Q =
|
|
459
|
+
var Q = w ? C.future : C.past;
|
|
460
460
|
return typeof Q == "function" ? Q(A) : Q.replace("%s", A);
|
|
461
461
|
}, s.to = function(l, u) {
|
|
462
462
|
return c(l, u, this, !0);
|
|
@@ -504,11 +504,11 @@ function rs() {
|
|
|
504
504
|
return function(s, i, c) {
|
|
505
505
|
var d = i.prototype;
|
|
506
506
|
c.utc = function(A) {
|
|
507
|
-
var
|
|
508
|
-
return new i(
|
|
507
|
+
var w = { date: A, utc: !0, args: arguments };
|
|
508
|
+
return new i(w);
|
|
509
509
|
}, d.utc = function(A) {
|
|
510
|
-
var
|
|
511
|
-
return A ?
|
|
510
|
+
var w = c(this.toDate(), { locale: this.$L, utc: !0 });
|
|
511
|
+
return A ? w.add(this.utcOffset(), n) : w;
|
|
512
512
|
}, d.local = function() {
|
|
513
513
|
return c(this.toDate(), { locale: this.$L, utc: !1 });
|
|
514
514
|
};
|
|
@@ -524,7 +524,7 @@ function rs() {
|
|
|
524
524
|
} else u.call(this);
|
|
525
525
|
};
|
|
526
526
|
var h = d.utcOffset;
|
|
527
|
-
d.utcOffset = function(A,
|
|
527
|
+
d.utcOffset = function(A, w) {
|
|
528
528
|
var C = this.$utils().u;
|
|
529
529
|
if (C(A)) return this.$u ? 0 : C(this.$offset) ? h.call(this) : this.$offset;
|
|
530
530
|
if (typeof A == "string" && (A = (function(v) {
|
|
@@ -535,16 +535,16 @@ function rs() {
|
|
|
535
535
|
return te === 0 ? 0 : Q === "+" ? te : -te;
|
|
536
536
|
})(A), A === null)) return this;
|
|
537
537
|
var S = Math.abs(A) <= 16 ? 60 * A : A;
|
|
538
|
-
if (S === 0) return this.utc(
|
|
538
|
+
if (S === 0) return this.utc(w);
|
|
539
539
|
var _ = this.clone();
|
|
540
|
-
if (
|
|
540
|
+
if (w) return _.$offset = S, _.$u = !1, _;
|
|
541
541
|
var x = this.$u ? this.toDate().getTimezoneOffset() : -1 * this.utcOffset();
|
|
542
542
|
return (_ = this.local().add(S + x, n)).$offset = S, _.$x.$localOffset = x, _;
|
|
543
543
|
};
|
|
544
544
|
var f = d.format;
|
|
545
545
|
d.format = function(A) {
|
|
546
|
-
var
|
|
547
|
-
return f.call(this,
|
|
546
|
+
var w = A || (this.$u ? "YYYY-MM-DDTHH:mm:ss[Z]" : "");
|
|
547
|
+
return f.call(this, w);
|
|
548
548
|
}, d.valueOf = function() {
|
|
549
549
|
var A = this.$utils().u(this.$offset) ? 0 : this.$offset + (this.$x.$localOffset || this.$d.getTimezoneOffset());
|
|
550
550
|
return this.$d.valueOf() - 6e4 * A;
|
|
@@ -560,10 +560,10 @@ function rs() {
|
|
|
560
560
|
return A === "s" && this.$offset ? c(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate() : p.call(this);
|
|
561
561
|
};
|
|
562
562
|
var g = d.diff;
|
|
563
|
-
d.diff = function(A,
|
|
564
|
-
if (A && this.$u === A.$u) return g.call(this, A,
|
|
563
|
+
d.diff = function(A, w, C) {
|
|
564
|
+
if (A && this.$u === A.$u) return g.call(this, A, w, C);
|
|
565
565
|
var S = this.local(), _ = c(A).local();
|
|
566
|
-
return g.call(S, _,
|
|
566
|
+
return g.call(S, _, w, C);
|
|
567
567
|
};
|
|
568
568
|
};
|
|
569
569
|
}));
|
|
@@ -581,15 +581,15 @@ function cs() {
|
|
|
581
581
|
return function(o, s, i) {
|
|
582
582
|
var c, d = function(f, p, g) {
|
|
583
583
|
g === void 0 && (g = {});
|
|
584
|
-
var A = new Date(f),
|
|
584
|
+
var A = new Date(f), w = (function(C, S) {
|
|
585
585
|
S === void 0 && (S = {});
|
|
586
586
|
var _ = S.timeZoneName || "short", x = C + "|" + _, v = r[x];
|
|
587
587
|
return v || (v = new Intl.DateTimeFormat("en-US", { hour12: !1, timeZone: C, year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit", timeZoneName: _ }), r[x] = v), v;
|
|
588
588
|
})(p, g);
|
|
589
|
-
return
|
|
589
|
+
return w.formatToParts(A);
|
|
590
590
|
}, l = function(f, p) {
|
|
591
|
-
for (var g = d(f, p), A = [],
|
|
592
|
-
var C = g[
|
|
591
|
+
for (var g = d(f, p), A = [], w = 0; w < g.length; w += 1) {
|
|
592
|
+
var C = g[w], S = C.type, _ = C.value, x = n[S];
|
|
593
593
|
x >= 0 && (A[x] = parseInt(_, 10));
|
|
594
594
|
}
|
|
595
595
|
var v = A[3], T = v === 24 ? 0 : v, j = A[0] + "-" + A[1] + "-" + A[2] + " " + T + ":" + A[4] + ":" + A[5] + ":000", Q = +f;
|
|
@@ -597,7 +597,7 @@ function cs() {
|
|
|
597
597
|
}, u = s.prototype;
|
|
598
598
|
u.tz = function(f, p) {
|
|
599
599
|
f === void 0 && (f = c);
|
|
600
|
-
var g, A = this.utcOffset(),
|
|
600
|
+
var g, A = this.utcOffset(), w = this.toDate(), C = w.toLocaleString("en-US", { timeZone: f }), S = Math.round((w - new Date(C)) / 1e3 / 60), _ = 15 * -Math.round(w.getTimezoneOffset() / 15) - S;
|
|
601
601
|
if (!Number(_)) g = this.utcOffset(0, p);
|
|
602
602
|
else if (g = i(C, { locale: this.$L }).$set("millisecond", this.$ms).utcOffset(_, !0), p) {
|
|
603
603
|
var x = g.utcOffset();
|
|
@@ -616,15 +616,15 @@ function cs() {
|
|
|
616
616
|
var g = i(this.format("YYYY-MM-DD HH:mm:ss:SSS"), { locale: this.$L });
|
|
617
617
|
return h.call(g, f, p).tz(this.$x.$timezone, !0);
|
|
618
618
|
}, i.tz = function(f, p, g) {
|
|
619
|
-
var A = g && p,
|
|
620
|
-
if (typeof f != "string") return i(f).tz(
|
|
619
|
+
var A = g && p, w = g || p || c, C = l(+i(), w);
|
|
620
|
+
if (typeof f != "string") return i(f).tz(w);
|
|
621
621
|
var S = (function(T, j, Q) {
|
|
622
622
|
var te = T - 60 * j * 1e3, G = l(te, Q);
|
|
623
623
|
if (j === G) return [te, j];
|
|
624
624
|
var O = l(te -= 60 * (G - j) * 1e3, Q);
|
|
625
625
|
return G === O ? [te, G] : [T - 60 * Math.min(G, O) * 1e3, Math.max(G, O)];
|
|
626
|
-
})(i.utc(f, A).valueOf(), C,
|
|
627
|
-
return v.$x.$timezone =
|
|
626
|
+
})(i.utc(f, A).valueOf(), C, w), _ = S[0], x = S[1], v = i(_).utcOffset(x);
|
|
627
|
+
return v.$x.$timezone = w, v;
|
|
628
628
|
}, i.tz.guess = function() {
|
|
629
629
|
return Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
630
630
|
}, i.tz.setDefault = function(f) {
|
|
@@ -693,7 +693,7 @@ const Dt = (e, t, n) => ({
|
|
|
693
693
|
tags: []
|
|
694
694
|
}
|
|
695
695
|
});
|
|
696
|
-
function
|
|
696
|
+
function y9(e) {
|
|
697
697
|
if (!e || !e.body || !e.body.rendered) return [];
|
|
698
698
|
const t = e?.body?.rendered, n = [], r = t.match(
|
|
699
699
|
/<div[^>]*class=["'][^"']*ck-related-news[^"']*["'][^>]*>[\s\S]*?<\/div>/gi
|
|
@@ -710,7 +710,7 @@ function w9(e) {
|
|
|
710
710
|
}
|
|
711
711
|
return n;
|
|
712
712
|
}
|
|
713
|
-
const
|
|
713
|
+
const w9 = async (e, t) => {
|
|
714
714
|
const n = [];
|
|
715
715
|
return e.forEach((s) => {
|
|
716
716
|
s.forEach(async (i) => {
|
|
@@ -791,7 +791,7 @@ const y9 = async (e, t) => {
|
|
|
791
791
|
"twitter.description": { attr: "name", value: "twitter:description" },
|
|
792
792
|
"twitter.site": { attr: "name", value: "twitter:site" },
|
|
793
793
|
"twitter.creator": { attr: "name", value: "twitter:creator" }
|
|
794
|
-
},
|
|
794
|
+
}, ys = (e) => {
|
|
795
795
|
const t = [];
|
|
796
796
|
let n = 0;
|
|
797
797
|
const r = (i) => t.push(i);
|
|
@@ -935,7 +935,7 @@ const y9 = async (e, t) => {
|
|
|
935
935
|
i
|
|
936
936
|
);
|
|
937
937
|
}) });
|
|
938
|
-
},
|
|
938
|
+
}, ws = (e) => {
|
|
939
939
|
const t = e.banners.find((o) => o.key === e.name);
|
|
940
940
|
if (!t || !t.show) return null;
|
|
941
941
|
const r = fa(t.value || "", e.replaces).split(/(<script[\s\S]*?<\/script\s*>)/gi);
|
|
@@ -1159,8 +1159,8 @@ const Is = async ({
|
|
|
1159
1159
|
}, u = e.split("/")[1], h = u == "liveblogs" || u == "liveblog" ? ["/news", "/news-breadcrumb", "/news-liveblog"] : ["/news", "/news-breadcrumb"], f = t.paths.tema !== "" ? "/" + t.paths.tema : t.paths.tema, p = o !== "false" && s !== "false" ? "/" + o + f : f;
|
|
1160
1160
|
i = (await Promise.all(
|
|
1161
1161
|
h.map(async (A) => {
|
|
1162
|
-
const
|
|
1163
|
-
return await ga(
|
|
1162
|
+
const w = A === "/news-breadcrumb" ? { ...l, prefixtag: p } : l;
|
|
1163
|
+
return await ga(w, A, r);
|
|
1164
1164
|
})
|
|
1165
1165
|
)).map((A) => A?.data?.data ?? []);
|
|
1166
1166
|
} catch (c) {
|
|
@@ -1674,14 +1674,14 @@ const pi = (e) => {
|
|
|
1674
1674
|
return r;
|
|
1675
1675
|
};
|
|
1676
1676
|
return n(e, 0);
|
|
1677
|
-
}, Ai = Be("AsyncFunction"),
|
|
1677
|
+
}, Ai = Be("AsyncFunction"), yi = (e) => e && (Qt(e) || Ce(e)) && Ce(e.then) && Ce(e.catch), Zr = ((e, t) => e ? setImmediate : t ? ((n, r) => (dt.addEventListener("message", ({ source: o, data: s }) => {
|
|
1678
1678
|
o === dt && s === n && r.length && r.shift()();
|
|
1679
1679
|
}, !1), (o) => {
|
|
1680
1680
|
r.push(o), dt.postMessage(n, "*");
|
|
1681
1681
|
}))(`axios@${Math.random()}`, []) : (n) => setTimeout(n))(
|
|
1682
1682
|
typeof setImmediate == "function",
|
|
1683
1683
|
Ce(dt.postMessage)
|
|
1684
|
-
),
|
|
1684
|
+
), wi = typeof queueMicrotask < "u" ? queueMicrotask.bind(dt) : typeof process < "u" && process.nextTick || Zr, vi = (e) => e != null && Ce(e[Nn]), b = {
|
|
1685
1685
|
isArray: Nt,
|
|
1686
1686
|
isArrayBuffer: Wr,
|
|
1687
1687
|
isBuffer: jt,
|
|
@@ -1736,9 +1736,9 @@ const pi = (e) => {
|
|
|
1736
1736
|
isSpecCompliantForm: gi,
|
|
1737
1737
|
toJSONObject: pi,
|
|
1738
1738
|
isAsyncFn: Ai,
|
|
1739
|
-
isThenable:
|
|
1739
|
+
isThenable: yi,
|
|
1740
1740
|
setImmediate: Zr,
|
|
1741
|
-
asap:
|
|
1741
|
+
asap: wi,
|
|
1742
1742
|
isIterable: vi
|
|
1743
1743
|
};
|
|
1744
1744
|
function Y(e, t, n, r, o) {
|
|
@@ -1818,8 +1818,8 @@ function xn(e, t, n) {
|
|
|
1818
1818
|
metaTokens: !0,
|
|
1819
1819
|
dots: !1,
|
|
1820
1820
|
indexes: !1
|
|
1821
|
-
}, !1, function(A,
|
|
1822
|
-
return !b.isUndefined(
|
|
1821
|
+
}, !1, function(A, w) {
|
|
1822
|
+
return !b.isUndefined(w[A]);
|
|
1823
1823
|
});
|
|
1824
1824
|
const r = n.metaTokens, o = n.visitor || u, s = n.dots, i = n.indexes, d = (n.Blob || typeof Blob < "u" && Blob) && b.isSpecCompliantForm(t);
|
|
1825
1825
|
if (!b.isFunction(o))
|
|
@@ -1834,9 +1834,9 @@ function xn(e, t, n) {
|
|
|
1834
1834
|
throw new Y("Blob is not supported. Use a Buffer instead.");
|
|
1835
1835
|
return b.isArrayBuffer(g) || b.isTypedArray(g) ? d && typeof Blob == "function" ? new Blob([g]) : Buffer.from(g) : g;
|
|
1836
1836
|
}
|
|
1837
|
-
function u(g, A,
|
|
1837
|
+
function u(g, A, w) {
|
|
1838
1838
|
let C = g;
|
|
1839
|
-
if (g && !
|
|
1839
|
+
if (g && !w && typeof g == "object") {
|
|
1840
1840
|
if (b.endsWith(A, "{}"))
|
|
1841
1841
|
A = r ? A : A.slice(0, -2), g = JSON.stringify(g);
|
|
1842
1842
|
else if (b.isArray(g) && Ci(g) || (b.isFileList(g) || b.endsWith(A, "[]")) && (C = b.toArray(g)))
|
|
@@ -1848,7 +1848,7 @@ function xn(e, t, n) {
|
|
|
1848
1848
|
);
|
|
1849
1849
|
}), !1;
|
|
1850
1850
|
}
|
|
1851
|
-
return na(g) ? !0 : (t.append(ja(
|
|
1851
|
+
return na(g) ? !0 : (t.append(ja(w, A, s), l(g)), !1);
|
|
1852
1852
|
}
|
|
1853
1853
|
const h = [], f = Object.assign(_i, {
|
|
1854
1854
|
defaultVisitor: u,
|
|
@@ -1987,10 +1987,10 @@ const ro = {
|
|
|
1987
1987
|
Blob: xi
|
|
1988
1988
|
},
|
|
1989
1989
|
protocols: ["http", "https", "file", "blob", "url", "data"]
|
|
1990
|
-
},
|
|
1991
|
-
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Ui =
|
|
1990
|
+
}, ya = typeof window < "u" && typeof document < "u", aa = typeof navigator == "object" && navigator || void 0, Ii = ya && (!aa || ["ReactNative", "NativeScript", "NS"].indexOf(aa.product) < 0), ki = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
|
|
1991
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Ui = ya && window.location.href || "http://localhost", Ri = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1992
1992
|
__proto__: null,
|
|
1993
|
-
hasBrowserEnv:
|
|
1993
|
+
hasBrowserEnv: ya,
|
|
1994
1994
|
hasStandardBrowserEnv: Ii,
|
|
1995
1995
|
hasStandardBrowserWebWorkerEnv: ki,
|
|
1996
1996
|
navigator: aa,
|
|
@@ -2535,54 +2535,54 @@ const lo = (e) => {
|
|
|
2535
2535
|
function A() {
|
|
2536
2536
|
p && p(), g && g(), o.cancelToken && o.cancelToken.unsubscribe(u), o.signal && o.signal.removeEventListener("abort", u);
|
|
2537
2537
|
}
|
|
2538
|
-
let
|
|
2539
|
-
|
|
2538
|
+
let w = new XMLHttpRequest();
|
|
2539
|
+
w.open(o.method.toUpperCase(), o.url, !0), w.timeout = o.timeout;
|
|
2540
2540
|
function C() {
|
|
2541
|
-
if (!
|
|
2541
|
+
if (!w)
|
|
2542
2542
|
return;
|
|
2543
2543
|
const _ = _e.from(
|
|
2544
|
-
"getAllResponseHeaders" in
|
|
2544
|
+
"getAllResponseHeaders" in w && w.getAllResponseHeaders()
|
|
2545
2545
|
), v = {
|
|
2546
|
-
data: !c || c === "text" || c === "json" ?
|
|
2547
|
-
status:
|
|
2548
|
-
statusText:
|
|
2546
|
+
data: !c || c === "text" || c === "json" ? w.responseText : w.response,
|
|
2547
|
+
status: w.status,
|
|
2548
|
+
statusText: w.statusText,
|
|
2549
2549
|
headers: _,
|
|
2550
2550
|
config: e,
|
|
2551
|
-
request:
|
|
2551
|
+
request: w
|
|
2552
2552
|
};
|
|
2553
2553
|
io(function(j) {
|
|
2554
2554
|
n(j), A();
|
|
2555
2555
|
}, function(j) {
|
|
2556
2556
|
r(j), A();
|
|
2557
|
-
}, v),
|
|
2558
|
-
}
|
|
2559
|
-
"onloadend" in
|
|
2560
|
-
!
|
|
2561
|
-
},
|
|
2562
|
-
|
|
2563
|
-
},
|
|
2564
|
-
const v = x && x.message ? x.message : "Network Error", T = new Y(v, Y.ERR_NETWORK, e,
|
|
2565
|
-
T.event = x || null, r(T),
|
|
2566
|
-
},
|
|
2557
|
+
}, v), w = null;
|
|
2558
|
+
}
|
|
2559
|
+
"onloadend" in w ? w.onloadend = C : w.onreadystatechange = function() {
|
|
2560
|
+
!w || w.readyState !== 4 || w.status === 0 && !(w.responseURL && w.responseURL.indexOf("file:") === 0) || setTimeout(C);
|
|
2561
|
+
}, w.onabort = function() {
|
|
2562
|
+
w && (r(new Y("Request aborted", Y.ECONNABORTED, e, w)), w = null);
|
|
2563
|
+
}, w.onerror = function(x) {
|
|
2564
|
+
const v = x && x.message ? x.message : "Network Error", T = new Y(v, Y.ERR_NETWORK, e, w);
|
|
2565
|
+
T.event = x || null, r(T), w = null;
|
|
2566
|
+
}, w.ontimeout = function() {
|
|
2567
2567
|
let x = o.timeout ? "timeout of " + o.timeout + "ms exceeded" : "timeout exceeded";
|
|
2568
2568
|
const v = o.transitional || ro;
|
|
2569
2569
|
o.timeoutErrorMessage && (x = o.timeoutErrorMessage), r(new Y(
|
|
2570
2570
|
x,
|
|
2571
2571
|
v.clarifyTimeoutError ? Y.ETIMEDOUT : Y.ECONNABORTED,
|
|
2572
2572
|
e,
|
|
2573
|
-
|
|
2574
|
-
)),
|
|
2575
|
-
}, s === void 0 && i.setContentType(null), "setRequestHeader" in
|
|
2576
|
-
|
|
2577
|
-
}), b.isUndefined(o.withCredentials) || (
|
|
2578
|
-
|
|
2573
|
+
w
|
|
2574
|
+
)), w = null;
|
|
2575
|
+
}, s === void 0 && i.setContentType(null), "setRequestHeader" in w && b.forEach(i.toJSON(), function(x, v) {
|
|
2576
|
+
w.setRequestHeader(v, x);
|
|
2577
|
+
}), b.isUndefined(o.withCredentials) || (w.withCredentials = !!o.withCredentials), c && c !== "json" && (w.responseType = o.responseType), l && ([f, g] = An(l, !0), w.addEventListener("progress", f)), d && w.upload && ([h, p] = An(d), w.upload.addEventListener("progress", h), w.upload.addEventListener("loadend", p)), (o.cancelToken || o.signal) && (u = (_) => {
|
|
2578
|
+
w && (r(!_ || _.type ? new St(null, e, w) : _), w.abort(), w = null);
|
|
2579
2579
|
}, o.cancelToken && o.cancelToken.subscribe(u), o.signal && (o.signal.aborted ? u() : o.signal.addEventListener("abort", u)));
|
|
2580
2580
|
const S = Hi(o.url);
|
|
2581
2581
|
if (S && fe.protocols.indexOf(S) === -1) {
|
|
2582
2582
|
r(new Y("Unsupported protocol " + S + ":", Y.ERR_BAD_REQUEST, e));
|
|
2583
2583
|
return;
|
|
2584
2584
|
}
|
|
2585
|
-
|
|
2585
|
+
w.send(s || null);
|
|
2586
2586
|
});
|
|
2587
2587
|
}, Zi = (e, t) => {
|
|
2588
2588
|
const { length: n } = e = e ? e.filter(Boolean) : [];
|
|
@@ -2697,11 +2697,11 @@ const lo = (e) => {
|
|
|
2697
2697
|
stream: u && ((g) => g.body)
|
|
2698
2698
|
};
|
|
2699
2699
|
o && ["text", "arrayBuffer", "blob", "formData", "stream"].forEach((g) => {
|
|
2700
|
-
!h[g] && (h[g] = (A,
|
|
2700
|
+
!h[g] && (h[g] = (A, w) => {
|
|
2701
2701
|
let C = A && A[g];
|
|
2702
2702
|
if (C)
|
|
2703
2703
|
return C.call(A);
|
|
2704
|
-
throw new Y(`Response type '${g}' is not supported`, Y.ERR_NOT_SUPPORT,
|
|
2704
|
+
throw new Y(`Response type '${g}' is not supported`, Y.ERR_NOT_SUPPORT, w);
|
|
2705
2705
|
});
|
|
2706
2706
|
});
|
|
2707
2707
|
const f = async (g) => {
|
|
@@ -2719,13 +2719,13 @@ const lo = (e) => {
|
|
|
2719
2719
|
if (b.isURLSearchParams(g) && (g = g + ""), b.isString(g))
|
|
2720
2720
|
return (await d(g)).byteLength;
|
|
2721
2721
|
}, p = async (g, A) => {
|
|
2722
|
-
const
|
|
2723
|
-
return
|
|
2722
|
+
const w = b.toFiniteNumber(g.getContentLength());
|
|
2723
|
+
return w ?? f(A);
|
|
2724
2724
|
};
|
|
2725
2725
|
return async (g) => {
|
|
2726
2726
|
let {
|
|
2727
2727
|
url: A,
|
|
2728
|
-
method:
|
|
2728
|
+
method: w,
|
|
2729
2729
|
data: C,
|
|
2730
2730
|
signal: S,
|
|
2731
2731
|
cancelToken: _,
|
|
@@ -2744,7 +2744,7 @@ const lo = (e) => {
|
|
|
2744
2744
|
});
|
|
2745
2745
|
let U;
|
|
2746
2746
|
try {
|
|
2747
|
-
if (T && l &&
|
|
2747
|
+
if (T && l && w !== "get" && w !== "head" && (U = await p(Q, C)) !== 0) {
|
|
2748
2748
|
let N = new n(A, {
|
|
2749
2749
|
method: "POST",
|
|
2750
2750
|
body: C,
|
|
@@ -2762,7 +2762,7 @@ const lo = (e) => {
|
|
|
2762
2762
|
const E = s && "credentials" in n.prototype, P = {
|
|
2763
2763
|
...G,
|
|
2764
2764
|
signal: ee,
|
|
2765
|
-
method:
|
|
2765
|
+
method: w.toUpperCase(),
|
|
2766
2766
|
headers: Q.normalize().toJSON(),
|
|
2767
2767
|
body: C,
|
|
2768
2768
|
duplex: "half",
|
|
@@ -2788,10 +2788,10 @@ const lo = (e) => {
|
|
|
2788
2788
|
);
|
|
2789
2789
|
}
|
|
2790
2790
|
j = j || "text";
|
|
2791
|
-
let
|
|
2791
|
+
let y = await h[b.findKey(h, j) || "text"](I, g);
|
|
2792
2792
|
return !z && D && D(), await new Promise((N, R) => {
|
|
2793
2793
|
io(N, R, {
|
|
2794
|
-
data:
|
|
2794
|
+
data: y,
|
|
2795
2795
|
headers: _e.from(I.headers),
|
|
2796
2796
|
status: I.status,
|
|
2797
2797
|
statusText: I.statusText,
|
|
@@ -2821,14 +2821,14 @@ const lo = (e) => {
|
|
|
2821
2821
|
return l;
|
|
2822
2822
|
};
|
|
2823
2823
|
uo();
|
|
2824
|
-
const
|
|
2824
|
+
const wa = {
|
|
2825
2825
|
http: bi,
|
|
2826
2826
|
xhr: Ji,
|
|
2827
2827
|
fetch: {
|
|
2828
2828
|
get: uo
|
|
2829
2829
|
}
|
|
2830
2830
|
};
|
|
2831
|
-
b.forEach(
|
|
2831
|
+
b.forEach(wa, (e, t) => {
|
|
2832
2832
|
if (e) {
|
|
2833
2833
|
try {
|
|
2834
2834
|
Object.defineProperty(e, "name", { value: t });
|
|
@@ -2846,7 +2846,7 @@ function sc(e, t) {
|
|
|
2846
2846
|
for (let i = 0; i < n; i++) {
|
|
2847
2847
|
r = e[i];
|
|
2848
2848
|
let c;
|
|
2849
|
-
if (o = r, !oc(r) && (o =
|
|
2849
|
+
if (o = r, !oc(r) && (o = wa[(c = String(r)).toLowerCase()], o === void 0))
|
|
2850
2850
|
throw new Y(`Unknown adapter '${c}'`);
|
|
2851
2851
|
if (o && (b.isFunction(o) || (o = o.get(t))))
|
|
2852
2852
|
break;
|
|
@@ -2876,7 +2876,7 @@ const ho = {
|
|
|
2876
2876
|
* Exposes all known adapters
|
|
2877
2877
|
* @type {Object<string, Function|Object>}
|
|
2878
2878
|
*/
|
|
2879
|
-
adapters:
|
|
2879
|
+
adapters: wa
|
|
2880
2880
|
};
|
|
2881
2881
|
function Bn(e) {
|
|
2882
2882
|
if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)
|
|
@@ -3029,8 +3029,8 @@ let ut = class {
|
|
|
3029
3029
|
const g = c[h++], A = c[h++];
|
|
3030
3030
|
try {
|
|
3031
3031
|
p = g(p);
|
|
3032
|
-
} catch (
|
|
3033
|
-
A.call(this,
|
|
3032
|
+
} catch (w) {
|
|
3033
|
+
A.call(this, w);
|
|
3034
3034
|
break;
|
|
3035
3035
|
}
|
|
3036
3036
|
}
|
|
@@ -3806,7 +3806,7 @@ async function W9({
|
|
|
3806
3806
|
socials: p,
|
|
3807
3807
|
speculationType: g = "Common",
|
|
3808
3808
|
preloadImageUrl: A,
|
|
3809
|
-
custom_Speculation:
|
|
3809
|
+
custom_Speculation: w,
|
|
3810
3810
|
custom_metadata: C,
|
|
3811
3811
|
custom_scriptReplaces: S,
|
|
3812
3812
|
head_custom_elements: _
|
|
@@ -3820,7 +3820,7 @@ async function W9({
|
|
|
3820
3820
|
slug: i,
|
|
3821
3821
|
texts: c,
|
|
3822
3822
|
query: d
|
|
3823
|
-
}), v =
|
|
3823
|
+
}), v = ys(x), T = S || zr[o]({
|
|
3824
3824
|
pathname: s,
|
|
3825
3825
|
slug: i,
|
|
3826
3826
|
config: f,
|
|
@@ -3891,7 +3891,7 @@ async function W9({
|
|
|
3891
3891
|
{
|
|
3892
3892
|
type: g,
|
|
3893
3893
|
active: f.useSpeculationRules,
|
|
3894
|
-
customSpeculation:
|
|
3894
|
+
customSpeculation: w
|
|
3895
3895
|
}
|
|
3896
3896
|
),
|
|
3897
3897
|
_
|
|
@@ -3916,7 +3916,7 @@ const $9 = ({
|
|
|
3916
3916
|
config: s,
|
|
3917
3917
|
currentNew: c,
|
|
3918
3918
|
internalPath: i
|
|
3919
|
-
}), p = l.before.active, g = l.after.active, A = p ? l.before.customData ? l.before.customData : f : void 0,
|
|
3919
|
+
}), p = l.before.active, g = l.after.active, A = p ? l.before.customData ? l.before.customData : f : void 0, w = g ? l.after.customData ? l.after.customData : f : void 0;
|
|
3920
3920
|
return /* @__PURE__ */ m(K, { children: [
|
|
3921
3921
|
/* @__PURE__ */ a(Gr, { name: "bodybefore", banners: n, replaces: A }),
|
|
3922
3922
|
e,
|
|
@@ -3925,7 +3925,7 @@ const $9 = ({
|
|
|
3925
3925
|
/* @__PURE__ */ a(Fo, { dimensionValues: h }),
|
|
3926
3926
|
/* @__PURE__ */ a(Wo, {}),
|
|
3927
3927
|
u,
|
|
3928
|
-
/* @__PURE__ */ a(
|
|
3928
|
+
/* @__PURE__ */ a(ws, { name: "bodyafter", banners: n, replaces: w })
|
|
3929
3929
|
] });
|
|
3930
3930
|
}, fc = "_content_1tvgz_1", gc = {
|
|
3931
3931
|
content: fc
|
|
@@ -3945,9 +3945,9 @@ const $9 = ({
|
|
|
3945
3945
|
}
|
|
3946
3946
|
)
|
|
3947
3947
|
}
|
|
3948
|
-
), Ac = "_content_19rc1_1",
|
|
3948
|
+
), Ac = "_content_19rc1_1", yc = "_location_19rc1_11", tr = {
|
|
3949
3949
|
content: Ac,
|
|
3950
|
-
location:
|
|
3950
|
+
location: yc
|
|
3951
3951
|
}, Y9 = (e) => /* @__PURE__ */ m("div", { className: tr.content, children: [
|
|
3952
3952
|
/* @__PURE__ */ a(pc, {}),
|
|
3953
3953
|
/* @__PURE__ */ a("p", { className: tr.location, children: e.place })
|
|
@@ -3955,7 +3955,7 @@ const $9 = ({
|
|
|
3955
3955
|
children: e,
|
|
3956
3956
|
className: t
|
|
3957
3957
|
// desktopWidth = '1185px'
|
|
3958
|
-
}) => /* @__PURE__ */ a("div", { className: `content-layout-1 ${t || ""}`, children: e }),
|
|
3958
|
+
}) => /* @__PURE__ */ a("div", { className: `content-layout-1 ${t || ""}`, children: e }), wc = (e) => {
|
|
3959
3959
|
const { children: t, show: n, order: r = 0 } = e;
|
|
3960
3960
|
return n && /* @__PURE__ */ a("div", { style: { order: r }, children: t });
|
|
3961
3961
|
};
|
|
@@ -3968,63 +3968,63 @@ function vc({
|
|
|
3968
3968
|
enableDrag: s,
|
|
3969
3969
|
onIndexChange: i
|
|
3970
3970
|
}) {
|
|
3971
|
-
const [c, d] = J(!1), [l, u] = J(0), [h, f] = J(0), [p, g] = J(0), [A,
|
|
3971
|
+
const [c, d] = J(!1), [l, u] = J(0), [h, f] = J(0), [p, g] = J(0), [A, w] = J(0), [C, S] = J(null), _ = Or(null), [x, v] = J(1), T = he(() => {
|
|
3972
3972
|
if (o) return 1;
|
|
3973
|
-
const
|
|
3973
|
+
const y = _.current?.offsetWidth || window.innerWidth, N = n + r, R = Math.floor(y / N);
|
|
3974
3974
|
return Math.max(1, R);
|
|
3975
3975
|
}, [o, n, r]);
|
|
3976
3976
|
De(() => {
|
|
3977
|
-
const
|
|
3977
|
+
const y = () => {
|
|
3978
3978
|
const N = T();
|
|
3979
3979
|
v(N);
|
|
3980
3980
|
};
|
|
3981
|
-
return
|
|
3981
|
+
return y(), window.addEventListener("resize", y), () => window.removeEventListener("resize", y);
|
|
3982
3982
|
}, [T]);
|
|
3983
3983
|
const Q = he(() => {
|
|
3984
|
-
const
|
|
3985
|
-
return Math.max(0, t -
|
|
3984
|
+
const y = T();
|
|
3985
|
+
return Math.max(0, t - y);
|
|
3986
3986
|
}, [t, T])(), te = he(() => {
|
|
3987
|
-
const
|
|
3988
|
-
return
|
|
3987
|
+
const y = T();
|
|
3988
|
+
return y === 1 ? 1 : Math.max(1, Math.ceil(y / 2));
|
|
3989
3989
|
}, [T]), G = he(
|
|
3990
|
-
(
|
|
3990
|
+
(y, N = 0) => {
|
|
3991
3991
|
if (o) {
|
|
3992
3992
|
const R = _.current?.offsetWidth || window.innerWidth;
|
|
3993
|
-
return -(
|
|
3993
|
+
return -(y * (100 + r)) + N / R * 100;
|
|
3994
3994
|
}
|
|
3995
|
-
return -(
|
|
3995
|
+
return -(y * (n + r)) + N;
|
|
3996
3996
|
},
|
|
3997
3997
|
[o, n, r]
|
|
3998
3998
|
), O = he(
|
|
3999
|
-
(
|
|
3999
|
+
(y) => {
|
|
4000
4000
|
const N = _.current?.offsetWidth || window.innerWidth, R = T(), M = te();
|
|
4001
4001
|
if (o)
|
|
4002
|
-
return Math.abs(
|
|
4002
|
+
return Math.abs(y) / N * 100 > 30 ? 1 : 0;
|
|
4003
4003
|
{
|
|
4004
|
-
const L = n + r, H = Math.abs(
|
|
4004
|
+
const L = n + r, H = Math.abs(y) / L;
|
|
4005
4005
|
return H >= (R === 1 ? 0.2 : 0.3) ? R === 1 ? 1 : Math.min(Math.round(H), M) : 0;
|
|
4006
4006
|
}
|
|
4007
4007
|
},
|
|
4008
4008
|
[o, n, r, T, te]
|
|
4009
4009
|
), ee = he(
|
|
4010
|
-
(
|
|
4011
|
-
s && (u(
|
|
4010
|
+
(y) => {
|
|
4011
|
+
s && (u(y), f(y), g(0), w(Date.now()), d(!0), document.body.classList.add("dragging"));
|
|
4012
4012
|
},
|
|
4013
4013
|
[s]
|
|
4014
4014
|
), ce = he(
|
|
4015
|
-
(
|
|
4015
|
+
(y) => {
|
|
4016
4016
|
if (!c || !s) return;
|
|
4017
|
-
const N =
|
|
4018
|
-
f(
|
|
4017
|
+
const N = y - l, R = (n + r) * 1.2, M = e === 0 && N > 0, L = e === Q && N < 0, H = M || L ? Math.sign(N) * Math.min(Math.abs(N), R) : N;
|
|
4018
|
+
f(y), g(H);
|
|
4019
4019
|
},
|
|
4020
4020
|
[c, l, s, e, Q, n, r]
|
|
4021
4021
|
), D = he(
|
|
4022
|
-
(
|
|
4023
|
-
ce(
|
|
4022
|
+
(y) => {
|
|
4023
|
+
ce(y.clientX);
|
|
4024
4024
|
},
|
|
4025
4025
|
[ce]
|
|
4026
4026
|
), U = he(
|
|
4027
|
-
(
|
|
4027
|
+
(y) => {
|
|
4028
4028
|
if (!c || !s) return;
|
|
4029
4029
|
const N = h - l, R = Date.now() - A, M = Math.abs(N) / Math.max(R, 1), L = O(N), V = M > 0.5 && Math.abs(N) > 50 ? Math.max(L, 1) : L;
|
|
4030
4030
|
if (V > 0)
|
|
@@ -4035,7 +4035,7 @@ function vc({
|
|
|
4035
4035
|
const F = Math.min(Q, e + V);
|
|
4036
4036
|
i(F);
|
|
4037
4037
|
}
|
|
4038
|
-
d(!1), g(0), document.body.classList.remove("dragging"), document.removeEventListener("mousemove", D), document.removeEventListener("mouseup", U),
|
|
4038
|
+
d(!1), g(0), document.body.classList.remove("dragging"), document.removeEventListener("mousemove", D), document.removeEventListener("mouseup", U), y.clientX === l && C?.dispatchEvent(new PointerEvent("click"));
|
|
4039
4039
|
},
|
|
4040
4040
|
[
|
|
4041
4041
|
c,
|
|
@@ -4051,23 +4051,23 @@ function vc({
|
|
|
4051
4051
|
C
|
|
4052
4052
|
]
|
|
4053
4053
|
), E = he(
|
|
4054
|
-
(
|
|
4055
|
-
|
|
4054
|
+
(y) => {
|
|
4055
|
+
y.preventDefault(), ["a", "span"].includes(y.target?.localName) && S(y.target), ee(y.clientX);
|
|
4056
4056
|
},
|
|
4057
4057
|
[ee]
|
|
4058
4058
|
), P = he(
|
|
4059
|
-
(
|
|
4060
|
-
ee(
|
|
4059
|
+
(y) => {
|
|
4060
|
+
ee(y.touches[0].clientX);
|
|
4061
4061
|
},
|
|
4062
4062
|
[ee]
|
|
4063
4063
|
), I = he(
|
|
4064
|
-
(
|
|
4065
|
-
c && (
|
|
4064
|
+
(y) => {
|
|
4065
|
+
c && (y.preventDefault(), ce(y.touches[0].clientX));
|
|
4066
4066
|
},
|
|
4067
4067
|
[c, ce]
|
|
4068
4068
|
), z = he(
|
|
4069
|
-
(
|
|
4070
|
-
U(
|
|
4069
|
+
(y) => {
|
|
4070
|
+
U(y);
|
|
4071
4071
|
},
|
|
4072
4072
|
[U]
|
|
4073
4073
|
);
|
|
@@ -4114,7 +4114,7 @@ function K9(e) {
|
|
|
4114
4114
|
const {
|
|
4115
4115
|
isDragging: g,
|
|
4116
4116
|
translateOffset: A,
|
|
4117
|
-
carrouselRef:
|
|
4117
|
+
carrouselRef: w,
|
|
4118
4118
|
maxIndex: C,
|
|
4119
4119
|
getTranslateValue: S,
|
|
4120
4120
|
actualVisibleItems: _,
|
|
@@ -4196,7 +4196,7 @@ function K9(e) {
|
|
|
4196
4196
|
/* @__PURE__ */ a(
|
|
4197
4197
|
"div",
|
|
4198
4198
|
{
|
|
4199
|
-
ref:
|
|
4199
|
+
ref: w,
|
|
4200
4200
|
className: "carrousel-ssr",
|
|
4201
4201
|
style: {
|
|
4202
4202
|
gap: s,
|
|
@@ -4394,7 +4394,7 @@ const po = (e) => /* @__PURE__ */ a(
|
|
|
4394
4394
|
}
|
|
4395
4395
|
)
|
|
4396
4396
|
}
|
|
4397
|
-
),
|
|
4397
|
+
), yo = (e) => /* @__PURE__ */ m(
|
|
4398
4398
|
"svg",
|
|
4399
4399
|
{
|
|
4400
4400
|
width: "24",
|
|
@@ -4507,7 +4507,7 @@ function Qc({ noteShare: e }) {
|
|
|
4507
4507
|
"data-active": "false",
|
|
4508
4508
|
"aria-label": "copy",
|
|
4509
4509
|
className: [re.clipboardButton, "clipbtn-id"].join(" "),
|
|
4510
|
-
children: /* @__PURE__ */ a(
|
|
4510
|
+
children: /* @__PURE__ */ a(yo, {})
|
|
4511
4511
|
}
|
|
4512
4512
|
)
|
|
4513
4513
|
] }) : null;
|
|
@@ -4625,7 +4625,7 @@ const xt = (e) => {
|
|
|
4625
4625
|
playStyled: Jc,
|
|
4626
4626
|
imageLogoPlaceholder: Zc,
|
|
4627
4627
|
imagePlaceholder: Xc
|
|
4628
|
-
},
|
|
4628
|
+
}, wo = (e) => /* @__PURE__ */ m(
|
|
4629
4629
|
"svg",
|
|
4630
4630
|
{
|
|
4631
4631
|
width: "43",
|
|
@@ -4647,10 +4647,10 @@ const xt = (e) => {
|
|
|
4647
4647
|
}
|
|
4648
4648
|
);
|
|
4649
4649
|
function va() {
|
|
4650
|
-
return $().COMPONENTS?.PlayIcon ||
|
|
4650
|
+
return $().COMPONENTS?.PlayIcon || wo;
|
|
4651
4651
|
}
|
|
4652
4652
|
function vo() {
|
|
4653
|
-
return $().COMPONENTS?.PlayIcon ||
|
|
4653
|
+
return $().COMPONENTS?.PlayIcon || wo;
|
|
4654
4654
|
}
|
|
4655
4655
|
const el = (e) => {
|
|
4656
4656
|
const { isVideo: t = !1, isLarge: n = !1, priorityHigh: r = !1 } = e, o = va(), s = e.preview.sizes;
|
|
@@ -5874,9 +5874,9 @@ const el = (e) => {
|
|
|
5874
5874
|
/* @__PURE__ */ a("p", { className: Re.subscribeText, children: e.texts.newsletterTermsText ?? "Suscribirte implica aceptar los" }),
|
|
5875
5875
|
/* @__PURE__ */ a(B, { className: Re.terms, href: e.termsLink, target: e.termsLinkTarget, children: e.texts.newsletterTermsAnchor ?? "Términos y condiciones" })
|
|
5876
5876
|
] })
|
|
5877
|
-
] }),
|
|
5878
|
-
content:
|
|
5879
|
-
contentInfo:
|
|
5877
|
+
] }), yl = "_content_1ms2y_1", wl = "_contentInfo_1ms2y_20", vl = "_subscribeImage_1ms2y_28", bl = "_tag_1ms2y_42", Cl = "_contentTitle_1ms2y_60", _l = "_title_1ms2y_65", Nl = "_subTitle_1ms2y_70", Sl = "_inputStyled_1ms2y_79", El = "_buttonStyled_1ms2y_118", xl = "_contentTerms_1ms2y_131", Tl = "_subscribeText_1ms2y_137", Il = "_terms_1ms2y_146", Te = {
|
|
5878
|
+
content: yl,
|
|
5879
|
+
contentInfo: wl,
|
|
5880
5880
|
subscribeImage: vl,
|
|
5881
5881
|
tag: bl,
|
|
5882
5882
|
contentTitle: Cl,
|
|
@@ -6028,7 +6028,7 @@ const el = (e) => {
|
|
|
6028
6028
|
/* @__PURE__ */ a("path", { d: "M0,0v19.74h74.3V0H0ZM62.2,4.7h2v5.8l3-3h2.4l-1.1,1.2-6.3,6.2V4.7ZM69.8,15h-2.4l-1.6-2.1,1.4-1.4,2.6,3.5ZM40.3,7.7h1v-1.8h2v1.8h1.8v1.7h-1.8v3c0,.3.1.6.2.7.2.2.4.3.6.3.3,0,.6-.1.8-.3l.5,1.5c-.2.2-.5.3-.7.4-.3.1-.6.1-.9.1-.8,0-1.4-.2-1.9-.6-.5-.5-.7-1.1-.7-2v-3.1h-1v-1.7h.1ZM37.7,12.3c-.2-.1-.4-.2-.6-.2-.3,0-.5-.1-.8-.1s-.6-.1-.9-.2c-.3-.1-.6-.2-.8-.4-.3-.2-.5-.4-.6-.6-.2-.3-.2-.6-.2-1,0-.5.1-.9.4-1.2.3-.4.6-.6,1.1-.8s1-.3,1.7-.3c.5,0,1,.1,1.4.2.5.1.9.3,1.2.5l-.6,1.6c-.3-.2-.6-.4-1-.4-.3-.1-.6-.1-1-.1-.5,0-.8.1-1,.2-.2.1-.3.3-.3.5s.1.3.2.4c.2.1.4.2.6.2.3.1.5.1.8.1s.6.1.9.2c.3.1.6.2.8.4s.4.4.6.6c.2.3.2.6.2,1,0,.5-.1.9-.4,1.2-.3.4-.6.6-1.1.8-.4.2-1,.3-1.7.3-.6,0-1.2-.1-1.7-.2-.6-.2-1-.3-1.3-.6l.6-1.6c.3.2.7.4,1.1.5.4.1.8.2,1.3.2s.8-.1,1-.2c.2-.1.3-.3.3-.5,0-.2,0-.3-.2-.5ZM6.7,14.3l1.1-1.1c.2.1.4.1.6.1.3,0,.6-.1.9-.3.3-.2.5-.4.6-.7.2-.3.2-.7.2-1.1s0-.8-.1-1.1c-.2-.3-.4-.6-.6-.7-.3-.2-.6-.3-.9-.3s-.6.1-.9.3-.5.4-.6.7c-.2.3-.2.7-.2,1.1s.1.8.2,1.1c-.1.1,0,.1,0,.2l-2.3,2.3V4.7h1.9v3.6c.2-.2.4-.3.6-.5.5-.3.9-.4,1.5-.4s1.2.2,1.8.5c.5.3,1,.8,1.2,1.3.3.6.5,1.3.5,2.1s-.2,1.5-.5,2c-.3.6-.7,1-1.2,1.4-.5.3-1.1.5-1.8.5-.6,0-1.1-.2-1.6-.4-.1-.2-.3-.4-.4-.5ZM13.6,4.7h2v10.3h-2V4.7ZM17.7,13.6c-.3-.5-.4-1.1-.4-1.9v-4.2h2v3.9c0,.6.1,1.1.4,1.4.2.3.6.4,1,.4.3,0,.6-.1.8-.2s.4-.4.6-.6c.1-.3.2-.7.2-1.1v-3.8h2v7.5h-1.8v-.9c-.2.2-.4.5-.6.6-.5.2-1,.3-1.5.3-.6,0-1.1-.1-1.6-.4-.5-.1-.8-.5-1.1-1ZM33,11.5v.3h-5.3c0,.2.1.4.2.6.2.3.4.6.7.7.3.2.6.2,1.1.2.4,0,.7-.1,1-.2.3-.1.5-.3.8-.5l1,1.2c-.3.4-.7.7-1.2.9-.5.2-1,.3-1.6.3-.8,0-1.5-.2-2.1-.5s-1-.8-1.4-1.4c-.3-.6-.5-1.2-.5-2s.2-1.4.5-2,.8-1,1.3-1.4c.5-.1,1.2-.3,1.9-.3s1.3.2,1.8.5c.6.3,1,.8,1.3,1.3.3.6.5,1.3.5,2.1,0,0,0,.1,0,.2ZM47.4,14.8c-.4-.2-.7-.5-.9-.8s-.3-.7-.3-1.2c0-.4.1-.8.3-1.2.2-.3.5-.6,1-.8.4-.2,1-.3,1.7-.3h1.6c0-.4-.1-.8-.4-1-.3-.3-.6-.4-1.2-.4-.4,0-.7.1-1.1.2s-.6.3-.9.5l-.7-1.5c.4-.3.8-.5,1.4-.6.5-.2,1.1-.3,1.6-.3,1,0,1.9.3,2.5.8s.9,1.4.9,2.5v4.2h-1.9v-1.1c-.2.3-.4.6-.7.8-.4.3-.8.4-1.4.4-.6.1-1.1,0-1.5-.2ZM56,14.6c-.6-.3-1-.8-1.4-1.4-.3-.6-.5-1.2-.5-2s.2-1.4.5-2,.8-1,1.4-1.4c.6-.2,1.3-.4,2-.4s1.4.2,1.9.5,1,.8,1.2,1.4l-1.6.9c-.2-.4-.4-.6-.7-.8s-.6-.3-.9-.3-.6.1-.9.3c-.3.2-.5.4-.6.7-.2.3-.2.7-.2,1.1s.1.8.2,1.1c.2.3.4.5.6.7.3.2.6.3.9.3s.6-.1.9-.2c.3-.2.5-.4.7-.8l1.6.9c-.3.6-.6,1-1.2,1.4-.6.3-1.2.5-1.9.5s-1.4-.2-2-.5Z" })
|
|
6029
6029
|
]
|
|
6030
6030
|
}
|
|
6031
|
-
), Gl = "_content_1p7b9_1", Hl = "_brandContent_1p7b9_10", zl = "_socialMedia_1p7b9_21", Vl = "_linkSocialNetwoks_1p7b9_28", Fl = "_sectionContent_1p7b9_42", Wl = "_section_1p7b9_42", $l = "_menuItem_1p7b9_60", Yl = "_otherItems_1p7b9_73", Kl = "_copyrigth_1p7b9_87", Jl = "_copyrigthText_1p7b9_97", Zl = "_logoStyled_1p7b9_107", Xl = "_socialNetworkIcon_1p7b9_118", ed = "_socialInstagram_1p7b9_125", td = "_socialNetworkIcon_stroke_1p7b9_133",
|
|
6031
|
+
), Gl = "_content_1p7b9_1", Hl = "_brandContent_1p7b9_10", zl = "_socialMedia_1p7b9_21", Vl = "_linkSocialNetwoks_1p7b9_28", Fl = "_sectionContent_1p7b9_42", Wl = "_section_1p7b9_42", $l = "_menuItem_1p7b9_60", Yl = "_otherItems_1p7b9_73", Kl = "_copyrigth_1p7b9_87", Jl = "_copyrigthText_1p7b9_97", Zl = "_logoStyled_1p7b9_107", Xl = "_socialNetworkIcon_1p7b9_118", ed = "_socialInstagram_1p7b9_125", td = "_socialNetworkIcon_stroke_1p7b9_133", ye = {
|
|
6032
6032
|
content: Gl,
|
|
6033
6033
|
brandContent: Hl,
|
|
6034
6034
|
socialMedia: zl,
|
|
@@ -6239,50 +6239,50 @@ const el = (e) => {
|
|
|
6239
6239
|
telegram: (e) => /* @__PURE__ */ a(rd, { ...e })
|
|
6240
6240
|
}, Z9 = (e) => {
|
|
6241
6241
|
const { freeZone: t, socials: n, menu: r, customBlock: o } = e;
|
|
6242
|
-
return /* @__PURE__ */ m("footer", { className:
|
|
6243
|
-
/* @__PURE__ */ m("section", { className:
|
|
6244
|
-
/* @__PURE__ */ a(B, { href: "/", "aria-label": "Ir a la home", children: /* @__PURE__ */ a("span", { className:
|
|
6245
|
-
/* @__PURE__ */ a("div", { className:
|
|
6242
|
+
return /* @__PURE__ */ m("footer", { className: ye.content, children: [
|
|
6243
|
+
/* @__PURE__ */ m("section", { className: ye.brandContent, children: [
|
|
6244
|
+
/* @__PURE__ */ a(B, { href: "/", "aria-label": "Ir a la home", children: /* @__PURE__ */ a("span", { className: ye.logoStyled, children: e.logo }) }),
|
|
6245
|
+
/* @__PURE__ */ a("div", { className: ye.socialMedia, children: Object.keys(n).map((s) => n[s]?.show && /* @__PURE__ */ a(
|
|
6246
6246
|
"a",
|
|
6247
6247
|
{
|
|
6248
6248
|
target: "_blank",
|
|
6249
6249
|
rel: "noreferrer",
|
|
6250
6250
|
"aria-label": n[s].title + " link",
|
|
6251
|
-
className:
|
|
6251
|
+
className: ye.linkSocialNetwoks,
|
|
6252
6252
|
href: n[s].url,
|
|
6253
6253
|
children: Na[s]({
|
|
6254
|
-
className: `${cd.includes(s) ?
|
|
6254
|
+
className: `${cd.includes(s) ? ye.socialNetworkIcon_stroke : ye.socialNetworkIcon} ${s === "instagram" ? ye.socialInstagram : ""}`
|
|
6255
6255
|
})
|
|
6256
6256
|
},
|
|
6257
6257
|
s
|
|
6258
6258
|
)) })
|
|
6259
6259
|
] }),
|
|
6260
|
-
/* @__PURE__ */ m("section", { className:
|
|
6261
|
-
/* @__PURE__ */ a("div", { className:
|
|
6260
|
+
/* @__PURE__ */ m("section", { className: ye.sectionContent, children: [
|
|
6261
|
+
/* @__PURE__ */ a("div", { className: ye.section, children: r.filter((s) => !s.subitem).map((s, i) => /* @__PURE__ */ a(
|
|
6262
6262
|
B,
|
|
6263
6263
|
{
|
|
6264
6264
|
href: s.link ? s.link : void 0,
|
|
6265
6265
|
target: s.target,
|
|
6266
|
-
className: `${
|
|
6266
|
+
className: `${ye.menuItem} footer-menu-item`,
|
|
6267
6267
|
"aria-label": s.description,
|
|
6268
6268
|
children: s.description
|
|
6269
6269
|
},
|
|
6270
6270
|
i
|
|
6271
6271
|
)) }),
|
|
6272
|
-
/* @__PURE__ */ a("div", { className:
|
|
6272
|
+
/* @__PURE__ */ a("div", { className: ye.section, children: t && t.map((s, i) => /* @__PURE__ */ a(
|
|
6273
6273
|
B,
|
|
6274
6274
|
{
|
|
6275
6275
|
href: s.link ? s?.link : void 0,
|
|
6276
6276
|
target: s.target,
|
|
6277
|
-
className:
|
|
6277
|
+
className: ye.otherItems,
|
|
6278
6278
|
children: s.description
|
|
6279
6279
|
},
|
|
6280
6280
|
i
|
|
6281
6281
|
)) })
|
|
6282
6282
|
] }),
|
|
6283
6283
|
o && /* @__PURE__ */ a(K, { children: o }),
|
|
6284
|
-
/* @__PURE__ */ m("section", { className:
|
|
6285
|
-
/* @__PURE__ */ a("p", { className:
|
|
6284
|
+
/* @__PURE__ */ m("section", { className: ye.copyrigth, children: [
|
|
6285
|
+
/* @__PURE__ */ a("p", { className: ye.copyrigthText, children: e.copyrigth }),
|
|
6286
6286
|
/* @__PURE__ */ a(
|
|
6287
6287
|
B,
|
|
6288
6288
|
{
|
|
@@ -6296,7 +6296,7 @@ const el = (e) => {
|
|
|
6296
6296
|
)
|
|
6297
6297
|
] })
|
|
6298
6298
|
] });
|
|
6299
|
-
}, ld = "_content_1e93o_1", dd = "_imageContent_1e93o_9", ud = "_width1Autor_1e93o_18", hd = "_width2Autor_1e93o_22", md = "_width3Autor_1e93o_26", fd = "_imageAutor_1e93o_30", gd = "_imageStyled_1e93o_69", pd = "_contentIconStyled_1e93o_70", Ad = "_avatarContent_1e93o_87",
|
|
6299
|
+
}, ld = "_content_1e93o_1", dd = "_imageContent_1e93o_9", ud = "_width1Autor_1e93o_18", hd = "_width2Autor_1e93o_22", md = "_width3Autor_1e93o_26", fd = "_imageAutor_1e93o_30", gd = "_imageStyled_1e93o_69", pd = "_contentIconStyled_1e93o_70", Ad = "_avatarContent_1e93o_87", yd = "_journalistSection_1e93o_95", wd = "_journalistInfo_1e93o_103", vd = "_journalistInfoLink_1e93o_104", bd = "_socialNetworkSection_1e93o_139", Cd = "_avatarStyled_1e93o_151", _d = "_article_1e93o_156", Nd = "_socialButton_1e93o_160", Sd = "_facebookStyled_1e93o_176", Ed = "_emailStyled_1e93o_180", xd = "_xStyled_1e93o_184", Td = "_linkedinStyled_1e93o_188", Id = "_whatsappStyled_1e93o_192", kd = "_whatsappLink_1e93o_196", Ud = "_clipboardButton_1e93o_212", Rd = "_googleProfileButton_1e93o_248", de = {
|
|
6300
6300
|
content: ld,
|
|
6301
6301
|
imageContent: dd,
|
|
6302
6302
|
width1Autor: ud,
|
|
@@ -6306,8 +6306,8 @@ const el = (e) => {
|
|
|
6306
6306
|
imageStyled: gd,
|
|
6307
6307
|
contentIconStyled: pd,
|
|
6308
6308
|
avatarContent: Ad,
|
|
6309
|
-
journalistSection:
|
|
6310
|
-
journalistInfo:
|
|
6309
|
+
journalistSection: yd,
|
|
6310
|
+
journalistInfo: wd,
|
|
6311
6311
|
journalistInfoLink: vd,
|
|
6312
6312
|
socialNetworkSection: bd,
|
|
6313
6313
|
avatarStyled: Cd,
|
|
@@ -6338,7 +6338,7 @@ const el = (e) => {
|
|
|
6338
6338
|
}
|
|
6339
6339
|
)
|
|
6340
6340
|
}
|
|
6341
|
-
),
|
|
6341
|
+
), yn = (e) => /* @__PURE__ */ a(
|
|
6342
6342
|
"svg",
|
|
6343
6343
|
{
|
|
6344
6344
|
version: "1.1",
|
|
@@ -6488,8 +6488,8 @@ const el = (e) => {
|
|
|
6488
6488
|
e
|
|
6489
6489
|
)}`,
|
|
6490
6490
|
icon: {
|
|
6491
|
-
outline: (e) => /* @__PURE__ */ a(
|
|
6492
|
-
solid: (e) => /* @__PURE__ */ a(
|
|
6491
|
+
outline: (e) => /* @__PURE__ */ a(yn, { className: e }),
|
|
6492
|
+
solid: (e) => /* @__PURE__ */ a(yn, { className: e })
|
|
6493
6493
|
}
|
|
6494
6494
|
}
|
|
6495
6495
|
};
|
|
@@ -6521,7 +6521,7 @@ function Md({ noteShare: e }) {
|
|
|
6521
6521
|
"data-active": "false",
|
|
6522
6522
|
"aria-label": "copy",
|
|
6523
6523
|
className: [de.clipboardButton, "clipbtn-id"].join(" "),
|
|
6524
|
-
children: /* @__PURE__ */ a(
|
|
6524
|
+
children: /* @__PURE__ */ a(yo, {})
|
|
6525
6525
|
}
|
|
6526
6526
|
),
|
|
6527
6527
|
/* @__PURE__ */ a(
|
|
@@ -6583,7 +6583,7 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
6583
6583
|
}, $d = "_content_wxhkd_1", Yd = "_linkStyled_wxhkd_9", On = {
|
|
6584
6584
|
content: $d,
|
|
6585
6585
|
linkStyled: Yd
|
|
6586
|
-
},
|
|
6586
|
+
}, wn = (e) => {
|
|
6587
6587
|
const { currentPage: t, showNext: n, maxPages: r, pathname: o, query: s } = e, i = (c, d, l) => {
|
|
6588
6588
|
let u = "";
|
|
6589
6589
|
const h = d.split("/");
|
|
@@ -6787,10 +6787,10 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
6787
6787
|
/* @__PURE__ */ a(B, { className: gt.linkStyled, href: "/", children: e.buttonText ?? "Inicio" })
|
|
6788
6788
|
] })
|
|
6789
6789
|
] });
|
|
6790
|
-
}, A1 = "_content_zxcog_1",
|
|
6790
|
+
}, A1 = "_content_zxcog_1", y1 = "_contentLabel_zxcog_8", w1 = "_label_zxcog_13", v1 = "_required_zxcog_22", b1 = "_input_zxcog_28", kt = {
|
|
6791
6791
|
content: A1,
|
|
6792
|
-
contentLabel:
|
|
6793
|
-
label:
|
|
6792
|
+
contentLabel: y1,
|
|
6793
|
+
label: w1,
|
|
6794
6794
|
required: v1,
|
|
6795
6795
|
input: b1
|
|
6796
6796
|
}, t3 = (e) => /* @__PURE__ */ m("div", { className: kt.content, children: [
|
|
@@ -6941,7 +6941,7 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
6941
6941
|
href: t.addtional.USER_USERLIN,
|
|
6942
6942
|
target: "_blank",
|
|
6943
6943
|
rel: "noreferrer",
|
|
6944
|
-
children: /* @__PURE__ */ a(
|
|
6944
|
+
children: /* @__PURE__ */ a(yn, { className: Ie.socialIcon })
|
|
6945
6945
|
}
|
|
6946
6946
|
)
|
|
6947
6947
|
] })
|
|
@@ -7015,7 +7015,7 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7015
7015
|
href: t.addtional.USER_USERLIN,
|
|
7016
7016
|
target: "_blank",
|
|
7017
7017
|
rel: "noreferrer",
|
|
7018
|
-
children: /* @__PURE__ */ a(
|
|
7018
|
+
children: /* @__PURE__ */ a(yn, { className: Ne.socialIcon })
|
|
7019
7019
|
}
|
|
7020
7020
|
)
|
|
7021
7021
|
] })
|
|
@@ -7044,12 +7044,12 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7044
7044
|
),
|
|
7045
7045
|
e.banner
|
|
7046
7046
|
] })
|
|
7047
|
-
] }), gu = "
|
|
7047
|
+
] }), gu = "_content_1xqtp_1", pu = "_header_1xqtp_30", Au = "_videos_1xqtp_56", yu = "_videoContent_1xqtp_63", wu = "_articleSection_1xqtp_70", vu = "_contentLayoutVideoSection_1xqtp_85", bu = "_sectionVideoList_1xqtp_93", Cu = "_iframeStyled_1xqtp_166", _u = "_contentFrame_1xqtp_173", qe = {
|
|
7048
7048
|
content: gu,
|
|
7049
7049
|
header: pu,
|
|
7050
7050
|
videos: Au,
|
|
7051
|
-
videoContent:
|
|
7052
|
-
articleSection:
|
|
7051
|
+
videoContent: yu,
|
|
7052
|
+
articleSection: wu,
|
|
7053
7053
|
contentLayoutVideoSection: vu,
|
|
7054
7054
|
sectionVideoList: bu,
|
|
7055
7055
|
iframeStyled: Cu,
|
|
@@ -7475,7 +7475,7 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7475
7475
|
}
|
|
7476
7476
|
)
|
|
7477
7477
|
] });
|
|
7478
|
-
}, oh = "_content_18yq5_1", sh = "_linkStyled_18yq5_14", ih = "_linkSocialNetwork_18yq5_28", ch = "_title_18yq5_49", lh = "_tabs_18yq5_60", dh = "_socialNetwork_18yq5_68", uh = "_icon_18yq5_78", hh = "_facebook_18yq5_84", mh = "_youtube_18yq5_88", fh = "_x_18yq5_92", gh = "_instagram_18yq5_96", ph = "_gnews_18yq5_100", Ah = "_tiktok_18yq5_104",
|
|
7478
|
+
}, oh = "_content_18yq5_1", sh = "_linkStyled_18yq5_14", ih = "_linkSocialNetwork_18yq5_28", ch = "_title_18yq5_49", lh = "_tabs_18yq5_60", dh = "_socialNetwork_18yq5_68", uh = "_icon_18yq5_78", hh = "_facebook_18yq5_84", mh = "_youtube_18yq5_88", fh = "_x_18yq5_92", gh = "_instagram_18yq5_96", ph = "_gnews_18yq5_100", Ah = "_tiktok_18yq5_104", yh = "_whatsapp_18yq5_108", ze = {
|
|
7479
7479
|
content: oh,
|
|
7480
7480
|
linkStyled: sh,
|
|
7481
7481
|
linkSocialNetwork: ih,
|
|
@@ -7489,8 +7489,8 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7489
7489
|
instagram: gh,
|
|
7490
7490
|
gnews: ph,
|
|
7491
7491
|
tiktok: Ah,
|
|
7492
|
-
whatsapp:
|
|
7493
|
-
},
|
|
7492
|
+
whatsapp: yh
|
|
7493
|
+
}, wh = (e) => {
|
|
7494
7494
|
const { cintillo: t, tapeTitle: n, socials: r } = e, o = "", s = t?.findIndex((i) => i.link === o) ?? 0;
|
|
7495
7495
|
return (Array.isArray(t) || e.socialIcons) && /* @__PURE__ */ m("section", { className: ze.content, children: [
|
|
7496
7496
|
Array.isArray(t) && /* @__PURE__ */ m("div", { className: `${ze.tabs} header-page-tape-content`, children: [
|
|
@@ -7557,7 +7557,7 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7557
7557
|
const { alertZone: t } = e;
|
|
7558
7558
|
return /* @__PURE__ */ m("header", { className: ke.headerStyled, children: [
|
|
7559
7559
|
e.socialIcons && /* @__PURE__ */ a(
|
|
7560
|
-
|
|
7560
|
+
wh,
|
|
7561
7561
|
{
|
|
7562
7562
|
socialIcons: e.socialIcons,
|
|
7563
7563
|
cintillo: e.cintillo,
|
|
@@ -7684,7 +7684,7 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7684
7684
|
}
|
|
7685
7685
|
) }, s)) }) })
|
|
7686
7686
|
] }, r)) });
|
|
7687
|
-
}, jh = "_headerStyled_ksxbt_1", Qh = "_headerContent_ksxbt_23", Gh = "_menuButtonSection_ksxbt_33", Hh = "_menuButton_ksxbt_33", zh = "_buttonSection_ksxbt_84", Vh = "_buttonSectionSearch_ksxbt_101", Fh = "_hasAlertZone_ksxbt_111", Wh = "_buttonText_ksxbt_130", $h = "_logoContent_ksxbt_140", Yh = "_logoStyled_ksxbt_148", Kh = "_headLineContent_ksxbt_172", Jh = "_headLineTitle_ksxbt_187", Zh = "_menuSection_ksxbt_203", Xh = "_headLine_ksxbt_172", em = "_line_ksxbt_255",
|
|
7687
|
+
}, jh = "_headerStyled_ksxbt_1", Qh = "_headerContent_ksxbt_23", Gh = "_menuButtonSection_ksxbt_33", Hh = "_menuButton_ksxbt_33", zh = "_buttonSection_ksxbt_84", Vh = "_buttonSectionSearch_ksxbt_101", Fh = "_hasAlertZone_ksxbt_111", Wh = "_buttonText_ksxbt_130", $h = "_logoContent_ksxbt_140", Yh = "_logoStyled_ksxbt_148", Kh = "_headLineContent_ksxbt_172", Jh = "_headLineTitle_ksxbt_187", Zh = "_menuSection_ksxbt_203", Xh = "_headLine_ksxbt_172", em = "_line_ksxbt_255", we = {
|
|
7688
7688
|
headerStyled: jh,
|
|
7689
7689
|
headerContent: Qh,
|
|
7690
7690
|
menuButtonSection: Gh,
|
|
@@ -7705,21 +7705,21 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7705
7705
|
return /* @__PURE__ */ a(
|
|
7706
7706
|
"header",
|
|
7707
7707
|
{
|
|
7708
|
-
className:
|
|
7708
|
+
className: we.headerStyled,
|
|
7709
7709
|
style: { top: e.cintillo || e.socialIcons ? 40 : 0 },
|
|
7710
7710
|
children: /* @__PURE__ */ m(
|
|
7711
7711
|
"div",
|
|
7712
7712
|
{
|
|
7713
7713
|
style: e.showAlertPop ? { gap: 0 } : {},
|
|
7714
7714
|
className: [
|
|
7715
|
-
|
|
7716
|
-
n?.data ?
|
|
7715
|
+
we.headerContent,
|
|
7716
|
+
n?.data ? we.hasAlertZone : ""
|
|
7717
7717
|
].join(" "),
|
|
7718
7718
|
children: [
|
|
7719
|
-
/* @__PURE__ */ a("div", { className:
|
|
7719
|
+
/* @__PURE__ */ a("div", { className: we.menuButtonSection, children: /* @__PURE__ */ m(
|
|
7720
7720
|
In,
|
|
7721
7721
|
{
|
|
7722
|
-
className:
|
|
7722
|
+
className: we.menuButton,
|
|
7723
7723
|
id: "button-app",
|
|
7724
7724
|
toggledrawerevent: "true",
|
|
7725
7725
|
"aria-label": "menu",
|
|
@@ -7727,45 +7727,45 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7727
7727
|
title: "menu",
|
|
7728
7728
|
children: [
|
|
7729
7729
|
/* @__PURE__ */ a(No, { color: "var(--header-icons)", width: 27, height: 27 }),
|
|
7730
|
-
/* @__PURE__ */ a("p", { className:
|
|
7730
|
+
/* @__PURE__ */ a("p", { className: we.buttonText, style: { lineHeight: 0 }, children: e.menuText })
|
|
7731
7731
|
]
|
|
7732
7732
|
}
|
|
7733
7733
|
) }),
|
|
7734
|
-
/* @__PURE__ */ a("div", { className:
|
|
7734
|
+
/* @__PURE__ */ a("div", { className: we.logoContent, children: /* @__PURE__ */ a(B, { href: "/", "aria-label": "Home", className: "header-logo-link", children: xe.createElement(
|
|
7735
7735
|
"span",
|
|
7736
|
-
{ className: `${
|
|
7736
|
+
{ className: `${we.logoStyled}` },
|
|
7737
7737
|
e.icon
|
|
7738
7738
|
) }) }),
|
|
7739
|
-
/* @__PURE__ */ m("div", { className:
|
|
7739
|
+
/* @__PURE__ */ m("div", { className: we.buttonSection, children: [
|
|
7740
7740
|
/* @__PURE__ */ a(
|
|
7741
7741
|
B,
|
|
7742
7742
|
{
|
|
7743
7743
|
href: e.searchLink ? e.searchLink : "/buscar",
|
|
7744
7744
|
style: { display: "flex" },
|
|
7745
|
-
className:
|
|
7745
|
+
className: we.buttonSectionSearch,
|
|
7746
7746
|
"aria-label": e.searchKeyWord,
|
|
7747
7747
|
children: /* @__PURE__ */ a(Sa, { width: 28, height: 28, color: "currentColor" })
|
|
7748
7748
|
}
|
|
7749
7749
|
),
|
|
7750
7750
|
e.rightZone
|
|
7751
7751
|
] }),
|
|
7752
|
-
!e.showAlertPop && n?.data ? /* @__PURE__ */ m("div", { className:
|
|
7753
|
-
/* @__PURE__ */ a("p", { className: `${
|
|
7752
|
+
!e.showAlertPop && n?.data ? /* @__PURE__ */ m("div", { className: we.headLineContent, children: [
|
|
7753
|
+
/* @__PURE__ */ a("p", { className: `${we.headLineTitle} headLineTitle`, children: n.entity.description ? `${n.entity.description}` : "" }),
|
|
7754
7754
|
/* @__PURE__ */ a(
|
|
7755
7755
|
B,
|
|
7756
7756
|
{
|
|
7757
|
-
className:
|
|
7757
|
+
className: we.headLine,
|
|
7758
7758
|
href: n.data[0]?.info.link.url,
|
|
7759
7759
|
target: n.data[0]?.info.link.target,
|
|
7760
7760
|
title: n.data[0]?.main.title.home,
|
|
7761
7761
|
children: je(n.data[0]?.main.title.home ?? "", 120)
|
|
7762
7762
|
}
|
|
7763
7763
|
)
|
|
7764
|
-
] }) : /* @__PURE__ */ a("div", { className:
|
|
7764
|
+
] }) : /* @__PURE__ */ a("div", { className: we.line }),
|
|
7765
7765
|
/* @__PURE__ */ a(
|
|
7766
7766
|
"div",
|
|
7767
7767
|
{
|
|
7768
|
-
className:
|
|
7768
|
+
className: we.menuSection,
|
|
7769
7769
|
style: e.showAlertPop ? { "--showAlertPop": "0px" } : {},
|
|
7770
7770
|
children: Array.isArray(t) && /* @__PURE__ */ a(Mh, { items: t })
|
|
7771
7771
|
}
|
|
@@ -7829,7 +7829,7 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7829
7829
|
}, dm = (e) => /* @__PURE__ */ a("section", { className: pt.content, children: Array.isArray(e.tags) && /* @__PURE__ */ m("div", { className: pt.tags, children: [
|
|
7830
7830
|
/* @__PURE__ */ a("p", { className: pt.tagStyled, children: e.title ? e.title : "Tags:" }),
|
|
7831
7831
|
e.tags.map((t, n) => t.approved ? /* @__PURE__ */ a(B, { href: vt(t, e.paths), children: /* @__PURE__ */ a("div", { className: `${pt.chipStyled} ${pt.tagLink}`, children: t.name }) }, n) : /* @__PURE__ */ a("div", { className: pt.chipStyled, children: t.name }, n))
|
|
7832
|
-
] }) }), um = "_contentBox_1rkkg_1", hm = "_content_1rkkg_1", mm = "_imageStyled_1rkkg_16", fm = "_contentIconStyled_1rkkg_23", gm = "_avatarContent_1rkkg_43", pm = "_journalistSection_1rkkg_50", Am = "_journalistInfo_1rkkg_56",
|
|
7832
|
+
] }) }), um = "_contentBox_1rkkg_1", hm = "_content_1rkkg_1", mm = "_imageStyled_1rkkg_16", fm = "_contentIconStyled_1rkkg_23", gm = "_avatarContent_1rkkg_43", pm = "_journalistSection_1rkkg_50", Am = "_journalistInfo_1rkkg_56", ym = "_socialNetworkSection_1rkkg_70", wm = "_article_1rkkg_83", Pe = {
|
|
7833
7833
|
contentBox: um,
|
|
7834
7834
|
content: hm,
|
|
7835
7835
|
imageStyled: mm,
|
|
@@ -7837,8 +7837,8 @@ const jd = "_content_r1co8_1", Qd = "_videoContent_r1co8_20", Gd = "_articleSect
|
|
|
7837
7837
|
avatarContent: gm,
|
|
7838
7838
|
journalistSection: pm,
|
|
7839
7839
|
journalistInfo: Am,
|
|
7840
|
-
socialNetworkSection:
|
|
7841
|
-
article:
|
|
7840
|
+
socialNetworkSection: ym,
|
|
7841
|
+
article: wm
|
|
7842
7842
|
}, vm = async (e) => {
|
|
7843
7843
|
const { autor: t } = e;
|
|
7844
7844
|
return t.addtional.USER_SHOWBIO && /* @__PURE__ */ a("section", { className: Pe.contentBox, children: /* @__PURE__ */ m("div", { className: Pe.content, children: [
|
|
@@ -8581,22 +8581,22 @@ const s3 = (e) => {
|
|
|
8581
8581
|
}
|
|
8582
8582
|
)
|
|
8583
8583
|
] });
|
|
8584
|
-
}, A2 = "_content_1nd2h_1",
|
|
8584
|
+
}, A2 = "_content_1nd2h_1", y2 = "_newsContent_1nd2h_8", w2 = "_boxPosition_1nd2h_17", v2 = "_bannerContent_1nd2h_23", b2 = "_bannerContentAux_1nd2h_33", yt = {
|
|
8585
8585
|
content: A2,
|
|
8586
|
-
newsContent:
|
|
8587
|
-
boxPosition:
|
|
8586
|
+
newsContent: y2,
|
|
8587
|
+
boxPosition: w2,
|
|
8588
8588
|
bannerContent: v2,
|
|
8589
8589
|
bannerContentAux: b2
|
|
8590
8590
|
}, c3 = (e) => {
|
|
8591
8591
|
const { news: t } = e;
|
|
8592
|
-
return Array.isArray(t) && /* @__PURE__ */ m("div", { className:
|
|
8593
|
-
/* @__PURE__ */ m("div", { className:
|
|
8592
|
+
return Array.isArray(t) && /* @__PURE__ */ m("div", { className: yt.content, children: [
|
|
8593
|
+
/* @__PURE__ */ m("div", { className: yt.newsContent, children: [
|
|
8594
8594
|
e.bannerArray && e.bannerArray.map((n, r) => /* @__PURE__ */ a(
|
|
8595
8595
|
"div",
|
|
8596
8596
|
{
|
|
8597
|
-
className:
|
|
8597
|
+
className: yt.boxPosition + " banner-context",
|
|
8598
8598
|
style: { order: 2 + 5 * r },
|
|
8599
|
-
children: /* @__PURE__ */ a("div", { className:
|
|
8599
|
+
children: /* @__PURE__ */ a("div", { className: yt.bannerContentAux, children: /* @__PURE__ */ a(
|
|
8600
8600
|
"div",
|
|
8601
8601
|
{
|
|
8602
8602
|
style: {
|
|
@@ -8613,14 +8613,14 @@ const s3 = (e) => {
|
|
|
8613
8613
|
t.map((n, r) => /* @__PURE__ */ a(
|
|
8614
8614
|
"div",
|
|
8615
8615
|
{
|
|
8616
|
-
className:
|
|
8616
|
+
className: yt.boxPosition,
|
|
8617
8617
|
style: { order: r },
|
|
8618
8618
|
children: /* @__PURE__ */ a(Ze, { ...n, share: e.share, paths: e.paths })
|
|
8619
8619
|
},
|
|
8620
8620
|
r
|
|
8621
8621
|
))
|
|
8622
8622
|
] }),
|
|
8623
|
-
/* @__PURE__ */ a("div", { className:
|
|
8623
|
+
/* @__PURE__ */ a("div", { className: yt.bannerContent, children: e.halfPageBanner })
|
|
8624
8624
|
] });
|
|
8625
8625
|
}, l3 = (e) => /* @__PURE__ */ m(K, { children: [
|
|
8626
8626
|
/* @__PURE__ */ a(
|
|
@@ -9101,7 +9101,7 @@ const s3 = (e) => {
|
|
|
9101
9101
|
{
|
|
9102
9102
|
className: [Ye.newsContentSection, "padding-0"].join(" "),
|
|
9103
9103
|
paginatorComponent: /* @__PURE__ */ a(
|
|
9104
|
-
|
|
9104
|
+
wn,
|
|
9105
9105
|
{
|
|
9106
9106
|
texts: c,
|
|
9107
9107
|
pathname: i,
|
|
@@ -9164,7 +9164,7 @@ const s3 = (e) => {
|
|
|
9164
9164
|
{
|
|
9165
9165
|
className: "padding-0",
|
|
9166
9166
|
paginatorComponent: /* @__PURE__ */ a(
|
|
9167
|
-
|
|
9167
|
+
wn,
|
|
9168
9168
|
{
|
|
9169
9169
|
texts: c,
|
|
9170
9170
|
pathname: i,
|
|
@@ -9243,14 +9243,14 @@ const s3 = (e) => {
|
|
|
9243
9243
|
contentHeader: gf
|
|
9244
9244
|
}, pf = "_content_1rbrt_1", Af = {
|
|
9245
9245
|
content: pf
|
|
9246
|
-
},
|
|
9246
|
+
}, yf = ({ children: e, className: t = "" }) => /* @__PURE__ */ a(
|
|
9247
9247
|
"div",
|
|
9248
9248
|
{
|
|
9249
9249
|
className: `content-layout-2 ${Af.content} ${t}`,
|
|
9250
9250
|
children: e
|
|
9251
9251
|
}
|
|
9252
|
-
),
|
|
9253
|
-
container:
|
|
9252
|
+
), wf = "_container_1insg_1", vf = "_note_1insg_10", bf = "_commercial_1insg_50", Cf = "_commercialContent_1insg_67", _f = "_complement_1insg_83", Lt = {
|
|
9253
|
+
container: wf,
|
|
9254
9254
|
note: vf,
|
|
9255
9255
|
commercial: bf,
|
|
9256
9256
|
commercialContent: Cf,
|
|
@@ -9794,7 +9794,7 @@ const e0 = (e) => /* @__PURE__ */ a(
|
|
|
9794
9794
|
(S) => d.includes(S?.[0]?.info.link.internal || "")
|
|
9795
9795
|
);
|
|
9796
9796
|
if (!l || !l[0]) continue;
|
|
9797
|
-
const u = l[0].preview?.sizes?.[0], h = u ? await pe(u.url) : "", f = l[0].info.section?.url ?? "#", p = l[0].info.section?.name ?? "Sección", g = l[0].info.link?.url ?? "#", A = l[0].main?.title.article ?? "Título",
|
|
9797
|
+
const u = l[0].preview?.sizes?.[0], h = u ? await pe(u.url) : "", f = l[0].info.section?.url ?? "#", p = l[0].info.section?.name ?? "Sección", g = l[0].info.link?.url ?? "#", A = l[0].main?.title.article ?? "Título", w = (await Promise.all(
|
|
9798
9798
|
l[0].preview?.sizes?.map(async (S, _) => {
|
|
9799
9799
|
const x = await pe(S.url);
|
|
9800
9800
|
return _ === 0 ? `<source srcset="${x}" media="(width >= 900px)"/>` : `<source srcset="${x}" media="(width < 900px)"/>`;
|
|
@@ -9802,7 +9802,7 @@ const e0 = (e) => /* @__PURE__ */ a(
|
|
|
9802
9802
|
)).reduce((S, _) => S += _, ""), C = `
|
|
9803
9803
|
<span data-src="${d}">
|
|
9804
9804
|
<picture style='display: flex'>
|
|
9805
|
-
${
|
|
9805
|
+
${w}
|
|
9806
9806
|
<img fetchPriority='low' loading='lazy' src="${h}" alt="${t.noteRelatedImageAlt}" />
|
|
9807
9807
|
</picture>
|
|
9808
9808
|
<div>
|
|
@@ -9854,7 +9854,7 @@ async function s0(e, t) {
|
|
|
9854
9854
|
S && (p = S[1] ?? "");
|
|
9855
9855
|
}
|
|
9856
9856
|
}
|
|
9857
|
-
let
|
|
9857
|
+
let w = "";
|
|
9858
9858
|
if (p)
|
|
9859
9859
|
try {
|
|
9860
9860
|
const C = await t.iframe({ path: p }), S = t.schema ? await t.schema(p) : null;
|
|
@@ -9880,7 +9880,7 @@ async function s0(e, t) {
|
|
|
9880
9880
|
style="position: relative!important;"
|
|
9881
9881
|
src="${_.main?.code || ""}"></iframe>` : x = _.main?.code || "";
|
|
9882
9882
|
const j = T || _.main?.description || "";
|
|
9883
|
-
|
|
9883
|
+
w = `
|
|
9884
9884
|
<figure class="videoFigure">
|
|
9885
9885
|
${S && S.data && S.data.data ? `<script type="application/ld+json">${Io(JSON.stringify(S.data.data))}<\/script>` : ""}
|
|
9886
9886
|
${x}
|
|
@@ -9889,11 +9889,11 @@ async function s0(e, t) {
|
|
|
9889
9889
|
`;
|
|
9890
9890
|
}
|
|
9891
9891
|
} catch (C) {
|
|
9892
|
-
console.error("insertVideos error for", p, C),
|
|
9892
|
+
console.error("insertVideos error for", p, C), w = "";
|
|
9893
9893
|
}
|
|
9894
9894
|
else
|
|
9895
|
-
|
|
9896
|
-
r = h, n +=
|
|
9895
|
+
w = f;
|
|
9896
|
+
r = h, n += w, o.lastIndex = h;
|
|
9897
9897
|
}
|
|
9898
9898
|
return n += e.slice(r), n;
|
|
9899
9899
|
}
|
|
@@ -10038,15 +10038,15 @@ const c0 = "_content_cu8lm_1", l0 = "_title_cu8lm_18", gr = {
|
|
|
10038
10038
|
videoEmbedded: "videoEmbedded",
|
|
10039
10039
|
videoYouTube: "videoYouTube",
|
|
10040
10040
|
iframe: "iframe"
|
|
10041
|
-
},
|
|
10041
|
+
}, y0 = {
|
|
10042
10042
|
[ot.videoEmbedded]: d0,
|
|
10043
10043
|
[ot.videoYouTube]: m0,
|
|
10044
10044
|
[ot.iframe]: p0
|
|
10045
|
-
},
|
|
10045
|
+
}, w0 = ({ news: e, commonServices: t }) => {
|
|
10046
10046
|
const { config: n, hascontent: r, info: o } = e, s = n.articlepreview, i = o.link.internal, c = r?.hasgalleryimages;
|
|
10047
10047
|
if (s === ot.imagen && c)
|
|
10048
10048
|
return /* @__PURE__ */ a("div", { className: pr.content, children: /* @__PURE__ */ a(To, { newsformated: e, internal: i }) });
|
|
10049
|
-
const d = s ?
|
|
10049
|
+
const d = s ? y0[s] : null;
|
|
10050
10050
|
return console.log("PreviewComponent", d), d ? /* @__PURE__ */ a("div", { className: pr.content, children: /* @__PURE__ */ a(
|
|
10051
10051
|
d,
|
|
10052
10052
|
{
|
|
@@ -10214,7 +10214,7 @@ function h3({
|
|
|
10214
10214
|
}) {
|
|
10215
10215
|
return /* @__PURE__ */ a("div", { className: "home-slot", style: Ea(t), children: e });
|
|
10216
10216
|
}
|
|
10217
|
-
const
|
|
10217
|
+
const yr = {
|
|
10218
10218
|
Diario: (e) => {
|
|
10219
10219
|
if (!e?.data || e.data.length === 0) return;
|
|
10220
10220
|
const t = e.data.slice(1);
|
|
@@ -10276,7 +10276,7 @@ const wr = {
|
|
|
10276
10276
|
data: t,
|
|
10277
10277
|
banners: n,
|
|
10278
10278
|
rightOnlyBanner: r
|
|
10279
|
-
}) => /* @__PURE__ */ a("div", { style: Ea(t), children:
|
|
10279
|
+
}) => /* @__PURE__ */ a("div", { style: Ea(t), children: yr[e] && yr[e]({
|
|
10280
10280
|
...t,
|
|
10281
10281
|
rightOnlyBanner: r,
|
|
10282
10282
|
banners: n
|
|
@@ -10295,7 +10295,7 @@ const wr = {
|
|
|
10295
10295
|
const p = "Home_" + h + "_" + f;
|
|
10296
10296
|
!e[p] || !e[p].blockSass || !e[p].blockSass[0] || !e[p].blockSass[0].value || !e[p].blockSass[0].block || e[p].blockSass[0].block === "No Mostrar" || c.push(
|
|
10297
10297
|
/* @__PURE__ */ m(
|
|
10298
|
-
|
|
10298
|
+
wc,
|
|
10299
10299
|
{
|
|
10300
10300
|
show: !!e[p].content?.data,
|
|
10301
10301
|
order: (h - 1) * l + (f - 1),
|
|
@@ -10394,7 +10394,7 @@ const wr = {
|
|
|
10394
10394
|
getVideos: l
|
|
10395
10395
|
} = e, u = e.slug === "liveblogs", { SHOW_NEWS_MORE_NEWS: h, SHOW_NEWS_RELATED_NEWS: f } = $();
|
|
10396
10396
|
if (!(!s || !s[0]))
|
|
10397
|
-
return /* @__PURE__ */ a(K, { children: /* @__PURE__ */ m(
|
|
10397
|
+
return /* @__PURE__ */ a(K, { children: /* @__PURE__ */ m(yf, { className: ca.contentLayout2, children: [
|
|
10398
10398
|
/* @__PURE__ */ a(
|
|
10399
10399
|
Sf,
|
|
10400
10400
|
{
|
|
@@ -10405,7 +10405,7 @@ const wr = {
|
|
|
10405
10405
|
),
|
|
10406
10406
|
/* @__PURE__ */ a(rt, { banners: r, index: 1 }),
|
|
10407
10407
|
!u && e.commonServices && /* @__PURE__ */ a(
|
|
10408
|
-
|
|
10408
|
+
w0,
|
|
10409
10409
|
{
|
|
10410
10410
|
news: s[0],
|
|
10411
10411
|
commonServices: e.commonServices
|
|
@@ -10543,7 +10543,7 @@ const wr = {
|
|
|
10543
10543
|
}
|
|
10544
10544
|
)
|
|
10545
10545
|
] }) });
|
|
10546
|
-
}, R0 = "_content_1tl6i_1", q0 = "_contentInfo_1tl6i_24", L0 = "_imageStyled_1tl6i_41", B0 = "_name_1tl6i_46", O0 = "_description_1tl6i_51", P0 = "_contentInfoWithoutImg_1tl6i_104",
|
|
10546
|
+
}, R0 = "_content_1tl6i_1", q0 = "_contentInfo_1tl6i_24", L0 = "_imageStyled_1tl6i_41", B0 = "_name_1tl6i_46", O0 = "_description_1tl6i_51", P0 = "_contentInfoWithoutImg_1tl6i_104", wt = {
|
|
10547
10547
|
content: R0,
|
|
10548
10548
|
contentInfo: q0,
|
|
10549
10549
|
imageStyled: L0,
|
|
@@ -10552,25 +10552,25 @@ const wr = {
|
|
|
10552
10552
|
contentInfoWithoutImg: P0
|
|
10553
10553
|
}, D0 = async (e) => {
|
|
10554
10554
|
const t = e.img ? await pe(e.img) : "";
|
|
10555
|
-
return /* @__PURE__ */ a("section", { className:
|
|
10555
|
+
return /* @__PURE__ */ a("section", { className: wt.content, children: /* @__PURE__ */ m(
|
|
10556
10556
|
"div",
|
|
10557
10557
|
{
|
|
10558
|
-
className: `${
|
|
10558
|
+
className: `${wt.contentInfo} ${t ? "" : wt.contentInfoWithoutImg}`,
|
|
10559
10559
|
children: [
|
|
10560
10560
|
e.img && /* @__PURE__ */ a(
|
|
10561
10561
|
"img",
|
|
10562
10562
|
{
|
|
10563
10563
|
fetchPriority: "low",
|
|
10564
10564
|
loading: "lazy",
|
|
10565
|
-
className:
|
|
10565
|
+
className: wt.imageStyled,
|
|
10566
10566
|
src: t
|
|
10567
10567
|
}
|
|
10568
10568
|
),
|
|
10569
|
-
/* @__PURE__ */ a("h1", { className:
|
|
10569
|
+
/* @__PURE__ */ a("h1", { className: wt.name, children: e.tag }),
|
|
10570
10570
|
e.description && /* @__PURE__ */ a(
|
|
10571
10571
|
"div",
|
|
10572
10572
|
{
|
|
10573
|
-
className:
|
|
10573
|
+
className: wt.description,
|
|
10574
10574
|
dangerouslySetInnerHTML: {
|
|
10575
10575
|
__html: e.description
|
|
10576
10576
|
}
|
|
@@ -10695,7 +10695,7 @@ const wr = {
|
|
|
10695
10695
|
content: K0,
|
|
10696
10696
|
newsContentSection: J0,
|
|
10697
10697
|
itemContent: Z0
|
|
10698
|
-
},
|
|
10698
|
+
}, y3 = (e) => {
|
|
10699
10699
|
const {
|
|
10700
10700
|
data: t,
|
|
10701
10701
|
option: n,
|
|
@@ -10731,7 +10731,7 @@ const wr = {
|
|
|
10731
10731
|
" "
|
|
10732
10732
|
),
|
|
10733
10733
|
paginatorComponent: /* @__PURE__ */ a(
|
|
10734
|
-
|
|
10734
|
+
wn,
|
|
10735
10735
|
{
|
|
10736
10736
|
texts: u,
|
|
10737
10737
|
pathname: i,
|
|
@@ -10812,7 +10812,7 @@ const wr = {
|
|
|
10812
10812
|
}
|
|
10813
10813
|
),
|
|
10814
10814
|
/* @__PURE__ */ a(
|
|
10815
|
-
|
|
10815
|
+
wn,
|
|
10816
10816
|
{
|
|
10817
10817
|
texts: u,
|
|
10818
10818
|
query: "",
|
|
@@ -10851,7 +10851,7 @@ const wr = {
|
|
|
10851
10851
|
default:
|
|
10852
10852
|
return /* @__PURE__ */ a(K, {});
|
|
10853
10853
|
}
|
|
10854
|
-
}, X0 = "_content_pq89v_1", eg = "_videoContent_pq89v_9",
|
|
10854
|
+
}, X0 = "_content_pq89v_1", eg = "_videoContent_pq89v_9", wr = {
|
|
10855
10855
|
content: X0,
|
|
10856
10856
|
videoContent: eg
|
|
10857
10857
|
}, tg = "_container_1xr2t_1", ng = "_playStyled_1xr2t_6", ag = "_imageStyled_1xr2t_13", rg = "_longer_1xr2t_26", og = "_contentNews_1xr2t_31", sg = "_tagContent_1xr2t_51", ig = "_tag_1xr2t_51", cg = "_titular_1xr2t_68", lg = "_small_1xr2t_81", dg = "_figure_1xr2t_87", ug = "_backDrop_1xr2t_92", hg = "_backDropAux_1xr2t_100", Ot = {
|
|
@@ -10901,7 +10901,7 @@ const wr = {
|
|
|
10901
10901
|
] }) });
|
|
10902
10902
|
}, mg = (e) => {
|
|
10903
10903
|
const { videos: t } = e;
|
|
10904
|
-
return /* @__PURE__ */ a("div", { className:
|
|
10904
|
+
return /* @__PURE__ */ a("div", { className: wr.content, children: /* @__PURE__ */ a(zt, { children: /* @__PURE__ */ a(me, { title: "Videos", isTitle: !0, children: /* @__PURE__ */ m("div", { className: wr.videoContent, children: [
|
|
10905
10905
|
/* @__PURE__ */ a(vr, { video: t[0] }),
|
|
10906
10906
|
/* @__PURE__ */ a("div", { style: { display: "flex", flexDirection: "column" }, children: t.slice(1).map((n, r) => /* @__PURE__ */ a(
|
|
10907
10907
|
vr,
|
|
@@ -10912,13 +10912,13 @@ const wr = {
|
|
|
10912
10912
|
`video-small-${r}`
|
|
10913
10913
|
)) })
|
|
10914
10914
|
] }) }) }) });
|
|
10915
|
-
}, fg = "_content_ruy5q_1", gg = "_videoContent_ruy5q_9", pg = "_articleSection_ruy5q_21", Ag = "_contentLatout_ruy5q_31",
|
|
10915
|
+
}, fg = "_content_ruy5q_1", gg = "_videoContent_ruy5q_9", pg = "_articleSection_ruy5q_21", Ag = "_contentLatout_ruy5q_31", yg = "_title_ruy5q_36", wg = "_article_ruy5q_21", vg = "_correspondent_ruy5q_64", lt = {
|
|
10916
10916
|
content: fg,
|
|
10917
10917
|
videoContent: gg,
|
|
10918
10918
|
articleSection: pg,
|
|
10919
10919
|
contentLatout: Ag,
|
|
10920
|
-
title:
|
|
10921
|
-
article:
|
|
10920
|
+
title: yg,
|
|
10921
|
+
article: wg,
|
|
10922
10922
|
correspondent: vg
|
|
10923
10923
|
}, bg = "_container_1rq2h_1", Cg = "_playStyled_1rq2h_9", br = {
|
|
10924
10924
|
container: bg,
|
|
@@ -10965,7 +10965,7 @@ const wr = {
|
|
|
10965
10965
|
/* @__PURE__ */ a("p", { className: lt.correspondent, children: t() })
|
|
10966
10966
|
] })
|
|
10967
10967
|
] }) }) }) });
|
|
10968
|
-
},
|
|
10968
|
+
}, w3 = (e) => {
|
|
10969
10969
|
switch (e.option) {
|
|
10970
10970
|
case "op1":
|
|
10971
10971
|
return /* @__PURE__ */ a(mg, { videos: e.data });
|
|
@@ -11512,7 +11512,7 @@ var _r;
|
|
|
11512
11512
|
function Xg() {
|
|
11513
11513
|
if (_r) return ne;
|
|
11514
11514
|
_r = 1;
|
|
11515
|
-
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, o = e ? Symbol.for("react.strict_mode") : 60108, s = e ? Symbol.for("react.profiler") : 60114, i = e ? Symbol.for("react.provider") : 60109, c = e ? Symbol.for("react.context") : 60110, d = e ? Symbol.for("react.async_mode") : 60111, l = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, h = e ? Symbol.for("react.suspense") : 60113, f = e ? Symbol.for("react.suspense_list") : 60120, p = e ? Symbol.for("react.memo") : 60115, g = e ? Symbol.for("react.lazy") : 60116, A = e ? Symbol.for("react.block") : 60121,
|
|
11515
|
+
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, o = e ? Symbol.for("react.strict_mode") : 60108, s = e ? Symbol.for("react.profiler") : 60114, i = e ? Symbol.for("react.provider") : 60109, c = e ? Symbol.for("react.context") : 60110, d = e ? Symbol.for("react.async_mode") : 60111, l = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, h = e ? Symbol.for("react.suspense") : 60113, f = e ? Symbol.for("react.suspense_list") : 60120, p = e ? Symbol.for("react.memo") : 60115, g = e ? Symbol.for("react.lazy") : 60116, A = e ? Symbol.for("react.block") : 60121, w = e ? Symbol.for("react.fundamental") : 60117, C = e ? Symbol.for("react.responder") : 60118, S = e ? Symbol.for("react.scope") : 60119;
|
|
11516
11516
|
function _(v) {
|
|
11517
11517
|
if (typeof v == "object" && v !== null) {
|
|
11518
11518
|
var T = v.$$typeof;
|
|
@@ -11571,17 +11571,17 @@ function Xg() {
|
|
|
11571
11571
|
}, ne.isSuspense = function(v) {
|
|
11572
11572
|
return _(v) === h;
|
|
11573
11573
|
}, ne.isValidElementType = function(v) {
|
|
11574
|
-
return typeof v == "string" || typeof v == "function" || v === r || v === l || v === s || v === o || v === h || v === f || typeof v == "object" && v !== null && (v.$$typeof === g || v.$$typeof === p || v.$$typeof === i || v.$$typeof === c || v.$$typeof === u || v.$$typeof ===
|
|
11574
|
+
return typeof v == "string" || typeof v == "function" || v === r || v === l || v === s || v === o || v === h || v === f || typeof v == "object" && v !== null && (v.$$typeof === g || v.$$typeof === p || v.$$typeof === i || v.$$typeof === c || v.$$typeof === u || v.$$typeof === w || v.$$typeof === C || v.$$typeof === S || v.$$typeof === A);
|
|
11575
11575
|
}, ne.typeOf = _, ne;
|
|
11576
11576
|
}
|
|
11577
11577
|
var ae = {};
|
|
11578
11578
|
var Nr;
|
|
11579
11579
|
function ep() {
|
|
11580
11580
|
return Nr || (Nr = 1, process.env.NODE_ENV !== "production" && (function() {
|
|
11581
|
-
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, o = e ? Symbol.for("react.strict_mode") : 60108, s = e ? Symbol.for("react.profiler") : 60114, i = e ? Symbol.for("react.provider") : 60109, c = e ? Symbol.for("react.context") : 60110, d = e ? Symbol.for("react.async_mode") : 60111, l = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, h = e ? Symbol.for("react.suspense") : 60113, f = e ? Symbol.for("react.suspense_list") : 60120, p = e ? Symbol.for("react.memo") : 60115, g = e ? Symbol.for("react.lazy") : 60116, A = e ? Symbol.for("react.block") : 60121,
|
|
11581
|
+
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, n = e ? Symbol.for("react.portal") : 60106, r = e ? Symbol.for("react.fragment") : 60107, o = e ? Symbol.for("react.strict_mode") : 60108, s = e ? Symbol.for("react.profiler") : 60114, i = e ? Symbol.for("react.provider") : 60109, c = e ? Symbol.for("react.context") : 60110, d = e ? Symbol.for("react.async_mode") : 60111, l = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, h = e ? Symbol.for("react.suspense") : 60113, f = e ? Symbol.for("react.suspense_list") : 60120, p = e ? Symbol.for("react.memo") : 60115, g = e ? Symbol.for("react.lazy") : 60116, A = e ? Symbol.for("react.block") : 60121, w = e ? Symbol.for("react.fundamental") : 60117, C = e ? Symbol.for("react.responder") : 60118, S = e ? Symbol.for("react.scope") : 60119;
|
|
11582
11582
|
function _(q) {
|
|
11583
11583
|
return typeof q == "string" || typeof q == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
11584
|
-
q === r || q === l || q === s || q === o || q === h || q === f || typeof q == "object" && q !== null && (q.$$typeof === g || q.$$typeof === p || q.$$typeof === i || q.$$typeof === c || q.$$typeof === u || q.$$typeof ===
|
|
11584
|
+
q === r || q === l || q === s || q === o || q === h || q === f || typeof q == "object" && q !== null && (q.$$typeof === g || q.$$typeof === p || q.$$typeof === i || q.$$typeof === c || q.$$typeof === u || q.$$typeof === w || q.$$typeof === C || q.$$typeof === S || q.$$typeof === A);
|
|
11585
11585
|
}
|
|
11586
11586
|
function x(q) {
|
|
11587
11587
|
if (typeof q == "object" && q !== null) {
|
|
@@ -11617,9 +11617,9 @@ function ep() {
|
|
|
11617
11617
|
}
|
|
11618
11618
|
var v = d, T = l, j = c, Q = i, te = t, G = u, O = r, ee = g, ce = p, D = n, U = s, E = o, P = h, I = !1;
|
|
11619
11619
|
function z(q) {
|
|
11620
|
-
return I || (I = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),
|
|
11620
|
+
return I || (I = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), y(q) || x(q) === d;
|
|
11621
11621
|
}
|
|
11622
|
-
function
|
|
11622
|
+
function y(q) {
|
|
11623
11623
|
return x(q) === l;
|
|
11624
11624
|
}
|
|
11625
11625
|
function N(q) {
|
|
@@ -11655,7 +11655,7 @@ function ep() {
|
|
|
11655
11655
|
function ie(q) {
|
|
11656
11656
|
return x(q) === h;
|
|
11657
11657
|
}
|
|
11658
|
-
ae.AsyncMode = v, ae.ConcurrentMode = T, ae.ContextConsumer = j, ae.ContextProvider = Q, ae.Element = te, ae.ForwardRef = G, ae.Fragment = O, ae.Lazy = ee, ae.Memo = ce, ae.Portal = D, ae.Profiler = U, ae.StrictMode = E, ae.Suspense = P, ae.isAsyncMode = z, ae.isConcurrentMode =
|
|
11658
|
+
ae.AsyncMode = v, ae.ConcurrentMode = T, ae.ContextConsumer = j, ae.ContextProvider = Q, ae.Element = te, ae.ForwardRef = G, ae.Fragment = O, ae.Lazy = ee, ae.Memo = ce, ae.Portal = D, ae.Profiler = U, ae.StrictMode = E, ae.Suspense = P, ae.isAsyncMode = z, ae.isConcurrentMode = y, ae.isContextConsumer = N, ae.isContextProvider = R, ae.isElement = M, ae.isForwardRef = L, ae.isFragment = H, ae.isLazy = V, ae.isMemo = F, ae.isPortal = Z, ae.isProfiler = X, ae.isStrictMode = W, ae.isSuspense = ie, ae.isValidElementType = _, ae.typeOf = x;
|
|
11659
11659
|
})()), ae;
|
|
11660
11660
|
}
|
|
11661
11661
|
var Sr;
|
|
@@ -11787,8 +11787,8 @@ function ap() {
|
|
|
11787
11787
|
}
|
|
11788
11788
|
return Jn = function(c, d) {
|
|
11789
11789
|
var l = typeof Symbol == "function" && Symbol.iterator, u = "@@iterator";
|
|
11790
|
-
function h(
|
|
11791
|
-
var N =
|
|
11790
|
+
function h(y) {
|
|
11791
|
+
var N = y && (l && y[l] || y[u]);
|
|
11792
11792
|
if (typeof N == "function")
|
|
11793
11793
|
return N;
|
|
11794
11794
|
}
|
|
@@ -11813,14 +11813,14 @@ function ap() {
|
|
|
11813
11813
|
shape: ee,
|
|
11814
11814
|
exact: ce
|
|
11815
11815
|
};
|
|
11816
|
-
function g(
|
|
11817
|
-
return
|
|
11816
|
+
function g(y, N) {
|
|
11817
|
+
return y === N ? y !== 0 || 1 / y === 1 / N : y !== y && N !== N;
|
|
11818
11818
|
}
|
|
11819
|
-
function A(
|
|
11820
|
-
this.message =
|
|
11819
|
+
function A(y, N) {
|
|
11820
|
+
this.message = y, this.data = N && typeof N == "object" ? N : {}, this.stack = "";
|
|
11821
11821
|
}
|
|
11822
11822
|
A.prototype = Error.prototype;
|
|
11823
|
-
function y
|
|
11823
|
+
function w(y) {
|
|
11824
11824
|
if (process.env.NODE_ENV !== "production")
|
|
11825
11825
|
var N = {}, R = 0;
|
|
11826
11826
|
function M(H, V, F, Z, X, W, ie) {
|
|
@@ -11838,31 +11838,31 @@ function ap() {
|
|
|
11838
11838
|
), N[Ae] = !0, R++);
|
|
11839
11839
|
}
|
|
11840
11840
|
}
|
|
11841
|
-
return V[F] == null ? H ? V[F] === null ? new A("The " + X + " `" + W + "` is marked as required " + ("in `" + Z + "`, but its value is `null`.")) : new A("The " + X + " `" + W + "` is marked as required in " + ("`" + Z + "`, but its value is `undefined`.")) : null :
|
|
11841
|
+
return V[F] == null ? H ? V[F] === null ? new A("The " + X + " `" + W + "` is marked as required " + ("in `" + Z + "`, but its value is `null`.")) : new A("The " + X + " `" + W + "` is marked as required in " + ("`" + Z + "`, but its value is `undefined`.")) : null : y(V, F, Z, X, W);
|
|
11842
11842
|
}
|
|
11843
11843
|
var L = M.bind(null, !1);
|
|
11844
11844
|
return L.isRequired = M.bind(null, !0), L;
|
|
11845
11845
|
}
|
|
11846
|
-
function C(
|
|
11846
|
+
function C(y) {
|
|
11847
11847
|
function N(R, M, L, H, V, F) {
|
|
11848
11848
|
var Z = R[M], X = E(Z);
|
|
11849
|
-
if (X !==
|
|
11849
|
+
if (X !== y) {
|
|
11850
11850
|
var W = P(Z);
|
|
11851
11851
|
return new A(
|
|
11852
|
-
"Invalid " + H + " `" + V + "` of type " + ("`" + W + "` supplied to `" + L + "`, expected ") + ("`" +
|
|
11853
|
-
{ expectedType:
|
|
11852
|
+
"Invalid " + H + " `" + V + "` of type " + ("`" + W + "` supplied to `" + L + "`, expected ") + ("`" + y + "`."),
|
|
11853
|
+
{ expectedType: y }
|
|
11854
11854
|
);
|
|
11855
11855
|
}
|
|
11856
11856
|
return null;
|
|
11857
11857
|
}
|
|
11858
|
-
return
|
|
11858
|
+
return w(N);
|
|
11859
11859
|
}
|
|
11860
11860
|
function S() {
|
|
11861
|
-
return
|
|
11861
|
+
return w(i);
|
|
11862
11862
|
}
|
|
11863
|
-
function _(
|
|
11863
|
+
function _(y) {
|
|
11864
11864
|
function N(R, M, L, H, V) {
|
|
11865
|
-
if (typeof
|
|
11865
|
+
if (typeof y != "function")
|
|
11866
11866
|
return new A("Property `" + V + "` of component `" + L + "` has invalid PropType notation inside arrayOf.");
|
|
11867
11867
|
var F = R[M];
|
|
11868
11868
|
if (!Array.isArray(F)) {
|
|
@@ -11870,16 +11870,16 @@ function ap() {
|
|
|
11870
11870
|
return new A("Invalid " + H + " `" + V + "` of type " + ("`" + Z + "` supplied to `" + L + "`, expected an array."));
|
|
11871
11871
|
}
|
|
11872
11872
|
for (var X = 0; X < F.length; X++) {
|
|
11873
|
-
var W =
|
|
11873
|
+
var W = y(F, X, L, H, V + "[" + X + "]", n);
|
|
11874
11874
|
if (W instanceof Error)
|
|
11875
11875
|
return W;
|
|
11876
11876
|
}
|
|
11877
11877
|
return null;
|
|
11878
11878
|
}
|
|
11879
|
-
return
|
|
11879
|
+
return w(N);
|
|
11880
11880
|
}
|
|
11881
11881
|
function x() {
|
|
11882
|
-
function
|
|
11882
|
+
function y(N, R, M, L, H) {
|
|
11883
11883
|
var V = N[R];
|
|
11884
11884
|
if (!c(V)) {
|
|
11885
11885
|
var F = E(V);
|
|
@@ -11887,10 +11887,10 @@ function ap() {
|
|
|
11887
11887
|
}
|
|
11888
11888
|
return null;
|
|
11889
11889
|
}
|
|
11890
|
-
return y
|
|
11890
|
+
return w(y);
|
|
11891
11891
|
}
|
|
11892
11892
|
function v() {
|
|
11893
|
-
function
|
|
11893
|
+
function y(N, R, M, L, H) {
|
|
11894
11894
|
var V = N[R];
|
|
11895
11895
|
if (!e.isValidElementType(V)) {
|
|
11896
11896
|
var F = E(V);
|
|
@@ -11898,65 +11898,65 @@ function ap() {
|
|
|
11898
11898
|
}
|
|
11899
11899
|
return null;
|
|
11900
11900
|
}
|
|
11901
|
-
return y
|
|
11901
|
+
return w(y);
|
|
11902
11902
|
}
|
|
11903
|
-
function T(
|
|
11903
|
+
function T(y) {
|
|
11904
11904
|
function N(R, M, L, H, V) {
|
|
11905
|
-
if (!(R[M] instanceof
|
|
11906
|
-
var F =
|
|
11905
|
+
if (!(R[M] instanceof y)) {
|
|
11906
|
+
var F = y.name || f, Z = z(R[M]);
|
|
11907
11907
|
return new A("Invalid " + H + " `" + V + "` of type " + ("`" + Z + "` supplied to `" + L + "`, expected ") + ("instance of `" + F + "`."));
|
|
11908
11908
|
}
|
|
11909
11909
|
return null;
|
|
11910
11910
|
}
|
|
11911
|
-
return
|
|
11911
|
+
return w(N);
|
|
11912
11912
|
}
|
|
11913
|
-
function j(
|
|
11914
|
-
if (!Array.isArray(
|
|
11913
|
+
function j(y) {
|
|
11914
|
+
if (!Array.isArray(y))
|
|
11915
11915
|
return process.env.NODE_ENV !== "production" && (arguments.length > 1 ? s(
|
|
11916
11916
|
"Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."
|
|
11917
11917
|
) : s("Invalid argument supplied to oneOf, expected an array.")), i;
|
|
11918
11918
|
function N(R, M, L, H, V) {
|
|
11919
|
-
for (var F = R[M], Z = 0; Z <
|
|
11920
|
-
if (g(F,
|
|
11919
|
+
for (var F = R[M], Z = 0; Z < y.length; Z++)
|
|
11920
|
+
if (g(F, y[Z]))
|
|
11921
11921
|
return null;
|
|
11922
|
-
var X = JSON.stringify(
|
|
11922
|
+
var X = JSON.stringify(y, function(ie, q) {
|
|
11923
11923
|
var Ae = P(q);
|
|
11924
11924
|
return Ae === "symbol" ? String(q) : q;
|
|
11925
11925
|
});
|
|
11926
11926
|
return new A("Invalid " + H + " `" + V + "` of value `" + String(F) + "` " + ("supplied to `" + L + "`, expected one of " + X + "."));
|
|
11927
11927
|
}
|
|
11928
|
-
return
|
|
11928
|
+
return w(N);
|
|
11929
11929
|
}
|
|
11930
|
-
function Q(
|
|
11930
|
+
function Q(y) {
|
|
11931
11931
|
function N(R, M, L, H, V) {
|
|
11932
|
-
if (typeof
|
|
11932
|
+
if (typeof y != "function")
|
|
11933
11933
|
return new A("Property `" + V + "` of component `" + L + "` has invalid PropType notation inside objectOf.");
|
|
11934
11934
|
var F = R[M], Z = E(F);
|
|
11935
11935
|
if (Z !== "object")
|
|
11936
11936
|
return new A("Invalid " + H + " `" + V + "` of type " + ("`" + Z + "` supplied to `" + L + "`, expected an object."));
|
|
11937
11937
|
for (var X in F)
|
|
11938
11938
|
if (r(F, X)) {
|
|
11939
|
-
var W =
|
|
11939
|
+
var W = y(F, X, L, H, V + "." + X, n);
|
|
11940
11940
|
if (W instanceof Error)
|
|
11941
11941
|
return W;
|
|
11942
11942
|
}
|
|
11943
11943
|
return null;
|
|
11944
11944
|
}
|
|
11945
|
-
return
|
|
11945
|
+
return w(N);
|
|
11946
11946
|
}
|
|
11947
|
-
function te(
|
|
11948
|
-
if (!Array.isArray(
|
|
11947
|
+
function te(y) {
|
|
11948
|
+
if (!Array.isArray(y))
|
|
11949
11949
|
return process.env.NODE_ENV !== "production" && s("Invalid argument supplied to oneOfType, expected an instance of array."), i;
|
|
11950
|
-
for (var N = 0; N <
|
|
11951
|
-
var R =
|
|
11950
|
+
for (var N = 0; N < y.length; N++) {
|
|
11951
|
+
var R = y[N];
|
|
11952
11952
|
if (typeof R != "function")
|
|
11953
11953
|
return s(
|
|
11954
11954
|
"Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + I(R) + " at index " + N + "."
|
|
11955
11955
|
), i;
|
|
11956
11956
|
}
|
|
11957
11957
|
function M(L, H, V, F, Z) {
|
|
11958
|
-
for (var X = [], W = 0; W <
|
|
11959
|
-
var ie =
|
|
11958
|
+
for (var X = [], W = 0; W < y.length; W++) {
|
|
11959
|
+
var ie = y[W], q = ie(L, H, V, F, Z, n);
|
|
11960
11960
|
if (q == null)
|
|
11961
11961
|
return null;
|
|
11962
11962
|
q.data && r(q.data, "expectedType") && X.push(q.data.expectedType);
|
|
@@ -11964,26 +11964,26 @@ function ap() {
|
|
|
11964
11964
|
var Ae = X.length > 0 ? ", expected one of type [" + X.join(", ") + "]" : "";
|
|
11965
11965
|
return new A("Invalid " + F + " `" + Z + "` supplied to " + ("`" + V + "`" + Ae + "."));
|
|
11966
11966
|
}
|
|
11967
|
-
return
|
|
11967
|
+
return w(M);
|
|
11968
11968
|
}
|
|
11969
11969
|
function G() {
|
|
11970
|
-
function
|
|
11970
|
+
function y(N, R, M, L, H) {
|
|
11971
11971
|
return D(N[R]) ? null : new A("Invalid " + L + " `" + H + "` supplied to " + ("`" + M + "`, expected a ReactNode."));
|
|
11972
11972
|
}
|
|
11973
|
-
return y
|
|
11973
|
+
return w(y);
|
|
11974
11974
|
}
|
|
11975
|
-
function O(
|
|
11975
|
+
function O(y, N, R, M, L) {
|
|
11976
11976
|
return new A(
|
|
11977
|
-
(
|
|
11977
|
+
(y || "React class") + ": " + N + " type `" + R + "." + M + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + L + "`."
|
|
11978
11978
|
);
|
|
11979
11979
|
}
|
|
11980
|
-
function ee(
|
|
11980
|
+
function ee(y) {
|
|
11981
11981
|
function N(R, M, L, H, V) {
|
|
11982
11982
|
var F = R[M], Z = E(F);
|
|
11983
11983
|
if (Z !== "object")
|
|
11984
11984
|
return new A("Invalid " + H + " `" + V + "` of type `" + Z + "` " + ("supplied to `" + L + "`, expected `object`."));
|
|
11985
|
-
for (var X in
|
|
11986
|
-
var W =
|
|
11985
|
+
for (var X in y) {
|
|
11986
|
+
var W = y[X];
|
|
11987
11987
|
if (typeof W != "function")
|
|
11988
11988
|
return O(L, H, V, X, P(W));
|
|
11989
11989
|
var ie = W(F, X, L, H, V + "." + X, n);
|
|
@@ -11992,22 +11992,22 @@ function ap() {
|
|
|
11992
11992
|
}
|
|
11993
11993
|
return null;
|
|
11994
11994
|
}
|
|
11995
|
-
return
|
|
11995
|
+
return w(N);
|
|
11996
11996
|
}
|
|
11997
|
-
function ce(
|
|
11997
|
+
function ce(y) {
|
|
11998
11998
|
function N(R, M, L, H, V) {
|
|
11999
11999
|
var F = R[M], Z = E(F);
|
|
12000
12000
|
if (Z !== "object")
|
|
12001
12001
|
return new A("Invalid " + H + " `" + V + "` of type `" + Z + "` " + ("supplied to `" + L + "`, expected `object`."));
|
|
12002
|
-
var X = t({}, R[M],
|
|
12002
|
+
var X = t({}, R[M], y);
|
|
12003
12003
|
for (var W in X) {
|
|
12004
|
-
var ie =
|
|
12005
|
-
if (r(
|
|
12004
|
+
var ie = y[W];
|
|
12005
|
+
if (r(y, W) && typeof ie != "function")
|
|
12006
12006
|
return O(L, H, V, W, P(ie));
|
|
12007
12007
|
if (!ie)
|
|
12008
12008
|
return new A(
|
|
12009
12009
|
"Invalid " + H + " `" + V + "` key `" + W + "` supplied to `" + L + "`.\nBad object: " + JSON.stringify(R[M], null, " ") + `
|
|
12010
|
-
Valid keys: ` + JSON.stringify(Object.keys(
|
|
12010
|
+
Valid keys: ` + JSON.stringify(Object.keys(y), null, " ")
|
|
12011
12011
|
);
|
|
12012
12012
|
var q = ie(F, W, L, H, V + "." + W, n);
|
|
12013
12013
|
if (q)
|
|
@@ -12015,25 +12015,25 @@ Valid keys: ` + JSON.stringify(Object.keys(w), null, " ")
|
|
|
12015
12015
|
}
|
|
12016
12016
|
return null;
|
|
12017
12017
|
}
|
|
12018
|
-
return
|
|
12018
|
+
return w(N);
|
|
12019
12019
|
}
|
|
12020
|
-
function D(
|
|
12021
|
-
switch (typeof
|
|
12020
|
+
function D(y) {
|
|
12021
|
+
switch (typeof y) {
|
|
12022
12022
|
case "number":
|
|
12023
12023
|
case "string":
|
|
12024
12024
|
case "undefined":
|
|
12025
12025
|
return !0;
|
|
12026
12026
|
case "boolean":
|
|
12027
|
-
return !
|
|
12027
|
+
return !y;
|
|
12028
12028
|
case "object":
|
|
12029
|
-
if (Array.isArray(
|
|
12030
|
-
return
|
|
12031
|
-
if (
|
|
12029
|
+
if (Array.isArray(y))
|
|
12030
|
+
return y.every(D);
|
|
12031
|
+
if (y === null || c(y))
|
|
12032
12032
|
return !0;
|
|
12033
|
-
var N = h(
|
|
12033
|
+
var N = h(y);
|
|
12034
12034
|
if (N) {
|
|
12035
|
-
var R = N.call(
|
|
12036
|
-
if (N !==
|
|
12035
|
+
var R = N.call(y), M;
|
|
12036
|
+
if (N !== y.entries) {
|
|
12037
12037
|
for (; !(M = R.next()).done; )
|
|
12038
12038
|
if (!D(M.value))
|
|
12039
12039
|
return !1;
|
|
@@ -12050,27 +12050,27 @@ Valid keys: ` + JSON.stringify(Object.keys(w), null, " ")
|
|
|
12050
12050
|
return !1;
|
|
12051
12051
|
}
|
|
12052
12052
|
}
|
|
12053
|
-
function U(
|
|
12054
|
-
return
|
|
12053
|
+
function U(y, N) {
|
|
12054
|
+
return y === "symbol" ? !0 : N ? N["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && N instanceof Symbol : !1;
|
|
12055
12055
|
}
|
|
12056
|
-
function E(
|
|
12057
|
-
var N = typeof
|
|
12058
|
-
return Array.isArray(
|
|
12056
|
+
function E(y) {
|
|
12057
|
+
var N = typeof y;
|
|
12058
|
+
return Array.isArray(y) ? "array" : y instanceof RegExp ? "object" : U(N, y) ? "symbol" : N;
|
|
12059
12059
|
}
|
|
12060
|
-
function P(
|
|
12061
|
-
if (typeof
|
|
12062
|
-
return "" +
|
|
12063
|
-
var N = E(
|
|
12060
|
+
function P(y) {
|
|
12061
|
+
if (typeof y > "u" || y === null)
|
|
12062
|
+
return "" + y;
|
|
12063
|
+
var N = E(y);
|
|
12064
12064
|
if (N === "object") {
|
|
12065
|
-
if (
|
|
12065
|
+
if (y instanceof Date)
|
|
12066
12066
|
return "date";
|
|
12067
|
-
if (
|
|
12067
|
+
if (y instanceof RegExp)
|
|
12068
12068
|
return "regexp";
|
|
12069
12069
|
}
|
|
12070
12070
|
return N;
|
|
12071
12071
|
}
|
|
12072
|
-
function I(
|
|
12073
|
-
var N = P(
|
|
12072
|
+
function I(y) {
|
|
12073
|
+
var N = P(y);
|
|
12074
12074
|
switch (N) {
|
|
12075
12075
|
case "array":
|
|
12076
12076
|
case "object":
|
|
@@ -12083,8 +12083,8 @@ Valid keys: ` + JSON.stringify(Object.keys(w), null, " ")
|
|
|
12083
12083
|
return N;
|
|
12084
12084
|
}
|
|
12085
12085
|
}
|
|
12086
|
-
function z(
|
|
12087
|
-
return !
|
|
12086
|
+
function z(y) {
|
|
12087
|
+
return !y.constructor || !y.constructor.name ? f : y.constructor.name;
|
|
12088
12088
|
}
|
|
12089
12089
|
return p.checkPropTypes = o, p.resetWarningCache = o.resetWarningCache, p.PropTypes = p, p;
|
|
12090
12090
|
}, Jn;
|
|
@@ -12319,17 +12319,17 @@ function dp() {
|
|
|
12319
12319
|
return e.isMemo(g) ? o : s[g.$$typeof] || t;
|
|
12320
12320
|
}
|
|
12321
12321
|
var c = Object.defineProperty, d = Object.getOwnPropertyNames, l = Object.getOwnPropertySymbols, u = Object.getOwnPropertyDescriptor, h = Object.getPrototypeOf, f = Object.prototype;
|
|
12322
|
-
function p(g, A,
|
|
12322
|
+
function p(g, A, w) {
|
|
12323
12323
|
if (typeof A != "string") {
|
|
12324
12324
|
if (f) {
|
|
12325
12325
|
var C = h(A);
|
|
12326
|
-
C && C !== f && p(g, C,
|
|
12326
|
+
C && C !== f && p(g, C, w);
|
|
12327
12327
|
}
|
|
12328
12328
|
var S = d(A);
|
|
12329
12329
|
l && (S = S.concat(l(A)));
|
|
12330
12330
|
for (var _ = i(g), x = i(A), v = 0; v < S.length; ++v) {
|
|
12331
12331
|
var T = S[v];
|
|
12332
|
-
if (!n[T] && !(
|
|
12332
|
+
if (!n[T] && !(w && w[T]) && !(x && x[T]) && !(_ && _[T])) {
|
|
12333
12333
|
var j = u(A, T);
|
|
12334
12334
|
try {
|
|
12335
12335
|
c(g, T, j);
|
|
@@ -12391,7 +12391,7 @@ function pp(e, t) {
|
|
|
12391
12391
|
h.observers[f](h);
|
|
12392
12392
|
delete window[t.callbackName];
|
|
12393
12393
|
}, l.componentDidMount = function() {
|
|
12394
|
-
var h = this, f = this.setupScriptURL(), p = this.asyncScriptLoaderGetScriptLoaderID(), g = t, A = g.globalName,
|
|
12394
|
+
var h = this, f = this.setupScriptURL(), p = this.asyncScriptLoaderGetScriptLoaderID(), g = t, A = g.globalName, w = g.callbackName, C = g.scriptId;
|
|
12395
12395
|
if (A && typeof window[A] < "u" && (Le[f] = {
|
|
12396
12396
|
loaded: !0,
|
|
12397
12397
|
observers: {}
|
|
@@ -12425,12 +12425,12 @@ function pp(e, t) {
|
|
|
12425
12425
|
Q(G[O]) && delete G[O];
|
|
12426
12426
|
}
|
|
12427
12427
|
};
|
|
12428
|
-
|
|
12428
|
+
w && typeof window < "u" && (window[w] = function() {
|
|
12429
12429
|
return h.asyncScriptLoaderTriggerOnScriptLoaded();
|
|
12430
12430
|
}), x.onload = function() {
|
|
12431
12431
|
var j = Le[f];
|
|
12432
12432
|
j && (j.loaded = !0, T(function(Q) {
|
|
12433
|
-
return
|
|
12433
|
+
return w ? !1 : (Q(j), !0);
|
|
12434
12434
|
}));
|
|
12435
12435
|
}, x.onerror = function() {
|
|
12436
12436
|
var j = Le[f];
|
|
@@ -12465,18 +12465,18 @@ var ha = "onloadcallback", Ap = "grecaptcha";
|
|
|
12465
12465
|
function ma() {
|
|
12466
12466
|
return typeof window < "u" && window.recaptchaOptions || {};
|
|
12467
12467
|
}
|
|
12468
|
-
function
|
|
12468
|
+
function yp() {
|
|
12469
12469
|
var e = ma(), t = e.useRecaptchaNet ? "recaptcha.net" : "www.google.com";
|
|
12470
12470
|
return e.enterprise ? "https://" + t + "/recaptcha/enterprise.js?onload=" + ha + "&render=explicit" : "https://" + t + "/recaptcha/api.js?onload=" + ha + "&render=explicit";
|
|
12471
12471
|
}
|
|
12472
|
-
const Lo = pp(
|
|
12472
|
+
const Lo = pp(yp, {
|
|
12473
12473
|
callbackName: ha,
|
|
12474
12474
|
globalName: Ap,
|
|
12475
12475
|
attributes: ma().nonce ? {
|
|
12476
12476
|
nonce: ma().nonce
|
|
12477
12477
|
} : {}
|
|
12478
|
-
})(Un),
|
|
12479
|
-
overlay:
|
|
12478
|
+
})(Un), wp = "_overlay_18ksj_1", vp = "_header_18ksj_18", bp = "_logo_18ksj_25", Cp = "_card_18ksj_32", _p = "_close_18ksj_47", Np = "_form_18ksj_71", Sp = "_formUl_18ksj_80", Ep = "_field_18ksj_92", xp = "_label_18ksj_99", Tp = "_input_18ksj_108", Ip = "_error_18ksj_126", kp = "_primary_18ksj_132", Up = "_divider_18ksj_170", Rp = "_google_18ksj_196", qp = "_googleIcon_18ksj_226", Lp = "_spin_18ksj_259", Bp = "_checkboxRow_18ksj_281", Op = "_terms_18ksj_318", Pp = "_message_18ksj_349", Dp = "_passwordChecker_18ksj_354", Mp = "_valid_18ksj_373", jp = "_invalid_18ksj_377", Qp = "_forgotPassword_18ksj_381", Gp = "_successContainer_18ksj_400", Hp = "_thumbsUp_18ksj_408", zp = "_successMessage_18ksj_414", k = {
|
|
12479
|
+
overlay: wp,
|
|
12480
12480
|
header: vp,
|
|
12481
12481
|
logo: bp,
|
|
12482
12482
|
card: Cp,
|
|
@@ -12565,7 +12565,7 @@ const Lo = pp(wp, {
|
|
|
12565
12565
|
})).json();
|
|
12566
12566
|
if (S.type === "success")
|
|
12567
12567
|
Jg(document, n), c("success"), setTimeout(() => {
|
|
12568
|
-
|
|
12568
|
+
w();
|
|
12569
12569
|
}, 3e3);
|
|
12570
12570
|
else
|
|
12571
12571
|
throw new Error(S.message || "Error al reportar comentario");
|
|
@@ -12573,11 +12573,11 @@ const Lo = pp(wp, {
|
|
|
12573
12573
|
console.error("Error reporting comment:", C), h(C.message || "Error al reportar comentario"), c("form");
|
|
12574
12574
|
}
|
|
12575
12575
|
}
|
|
12576
|
-
},
|
|
12576
|
+
}, w = () => {
|
|
12577
12577
|
c("form"), l(""), h(""), t();
|
|
12578
12578
|
};
|
|
12579
12579
|
return !e || !n || !o ? null : /* @__PURE__ */ a("div", { className: ue.overlay, children: /* @__PURE__ */ m("div", { className: ue.popup, children: [
|
|
12580
|
-
/* @__PURE__ */ a("button", { className: "close-reply-form", onClick:
|
|
12580
|
+
/* @__PURE__ */ a("button", { className: "close-reply-form", onClick: w, children: /* @__PURE__ */ a(Tt, {}) }),
|
|
12581
12581
|
/* @__PURE__ */ a("h2", { className: ue.title, children: "Reportar Abuso" }),
|
|
12582
12582
|
i === "loading" && /* @__PURE__ */ a("div", { className: ue.loadingContainer, children: /* @__PURE__ */ a(Je, {}) }),
|
|
12583
12583
|
i === "form" || i === "loading" ? /* @__PURE__ */ m(K, { children: [
|
|
@@ -12608,7 +12608,7 @@ const Lo = pp(wp, {
|
|
|
12608
12608
|
}
|
|
12609
12609
|
),
|
|
12610
12610
|
/* @__PURE__ */ m("div", { className: ue.buttons, children: [
|
|
12611
|
-
/* @__PURE__ */ a("button", { onClick:
|
|
12611
|
+
/* @__PURE__ */ a("button", { onClick: w, className: ue.cancelButton, children: "Cancelar" }),
|
|
12612
12612
|
/* @__PURE__ */ a(
|
|
12613
12613
|
"button",
|
|
12614
12614
|
{
|
|
@@ -12642,7 +12642,7 @@ const Lo = pp(wp, {
|
|
|
12642
12642
|
/* @__PURE__ */ a("div", { className: ue.buttons, children: /* @__PURE__ */ a(
|
|
12643
12643
|
"button",
|
|
12644
12644
|
{
|
|
12645
|
-
onClick:
|
|
12645
|
+
onClick: w,
|
|
12646
12646
|
className: [ue.closeButton, ue.buttonAlone].join(" "),
|
|
12647
12647
|
children: "Cerrar"
|
|
12648
12648
|
}
|
|
@@ -12708,10 +12708,10 @@ async function Fp({
|
|
|
12708
12708
|
state: i
|
|
12709
12709
|
});
|
|
12710
12710
|
o && A.append("id", o), s && A.append("lastid", s);
|
|
12711
|
-
const
|
|
12711
|
+
const w = `${g}${h}/newcomments/get?${A.toString()}`;
|
|
12712
12712
|
try {
|
|
12713
|
-
console.log("Fetching comments from:",
|
|
12714
|
-
const { data: C } = await oe.get(
|
|
12713
|
+
console.log("Fetching comments from:", w);
|
|
12714
|
+
const { data: C } = await oe.get(w, {
|
|
12715
12715
|
headers: {
|
|
12716
12716
|
"x-api-token": c,
|
|
12717
12717
|
"Cache-Control": "max-age=0, no-cache, no-store, must-revalidate",
|
|
@@ -13018,8 +13018,8 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
13018
13018
|
] }) });
|
|
13019
13019
|
}, e9 = ({ comment: e, replyingTo: t, path: n, user: r, handleReplyingTo: o, onFlag: s, CAPTCHA_KEY_V2: i }) => {
|
|
13020
13020
|
const c = { morereply: e.morereply ?? !1, reply: e.reply ? e.reply : [] }, [d, l] = J(c), [u, h] = xe.useState(!1), { PUBLIC_PUBLICATION_ID: f, PUBLIC_X_SECURITY_TOKEN: p } = $(), g = e.text, A = xe.useRef(null);
|
|
13021
|
-
let
|
|
13022
|
-
e.user && (
|
|
13021
|
+
let w = `${Ke.firstname} ${Ke.lastname}`, C = Ke.username;
|
|
13022
|
+
e.user && (w = `${e.user.firstname} ${e.user.lastname}`, C = e.user.username);
|
|
13023
13023
|
const S = (_) => {
|
|
13024
13024
|
l({ morereply: d.morereply, reply: [_, ...d.reply] });
|
|
13025
13025
|
};
|
|
@@ -13031,7 +13031,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
13031
13031
|
children: [
|
|
13032
13032
|
/* @__PURE__ */ a(Oo, { user: e.user ? e.user : Ke }),
|
|
13033
13033
|
/* @__PURE__ */ m("div", { style: { flex: 1 }, children: [
|
|
13034
|
-
/* @__PURE__ */ a(Bo, { username:
|
|
13034
|
+
/* @__PURE__ */ a(Bo, { username: w, date: e.date.time }),
|
|
13035
13035
|
/* @__PURE__ */ a("p", { className: "comment-text", children: g }),
|
|
13036
13036
|
r?.username.toLowerCase() !== C.toLowerCase() && // No puedes responder ni reportar tus respuestas
|
|
13037
13037
|
/* @__PURE__ */ a(
|
|
@@ -13059,7 +13059,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
13059
13059
|
{
|
|
13060
13060
|
user: r,
|
|
13061
13061
|
reply: _,
|
|
13062
|
-
replyingTo:
|
|
13062
|
+
replyingTo: w,
|
|
13063
13063
|
onFlag: s
|
|
13064
13064
|
},
|
|
13065
13065
|
_.id
|
|
@@ -13153,7 +13153,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
13153
13153
|
void 0
|
|
13154
13154
|
), [d, l] = J(""), { comments: u, setComments: h } = Yp(s), [f, p] = xe.useState(!1), g = xe.useRef(null), A = (T) => {
|
|
13155
13155
|
l(d === T ? "" : T);
|
|
13156
|
-
},
|
|
13156
|
+
}, w = (T) => {
|
|
13157
13157
|
h(
|
|
13158
13158
|
u ? {
|
|
13159
13159
|
...u,
|
|
@@ -13203,7 +13203,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
13203
13203
|
{
|
|
13204
13204
|
commentRef: g,
|
|
13205
13205
|
user: n,
|
|
13206
|
-
addComment:
|
|
13206
|
+
addComment: w,
|
|
13207
13207
|
path: s,
|
|
13208
13208
|
CAPTCHA_KEY_V2: o.CAPTCHA_KEY_V2
|
|
13209
13209
|
}
|
|
@@ -13379,7 +13379,7 @@ function o9({ goToLogin: e, handleGoogleLogin: t, CAPTCHA_KEY: n }) {
|
|
|
13379
13379
|
} finally {
|
|
13380
13380
|
d(!1);
|
|
13381
13381
|
}
|
|
13382
|
-
},
|
|
13382
|
+
}, w = r.password || "";
|
|
13383
13383
|
return /* @__PURE__ */ m(K, { children: [
|
|
13384
13384
|
h === "register" && /* @__PURE__ */ m(K, { children: [
|
|
13385
13385
|
/* @__PURE__ */ m("button", { onClick: t, className: k.google, children: [
|
|
@@ -13415,7 +13415,7 @@ function o9({ goToLogin: e, handleGoogleLogin: t, CAPTCHA_KEY: n }) {
|
|
|
13415
13415
|
}
|
|
13416
13416
|
),
|
|
13417
13417
|
C === "password" && /* @__PURE__ */ a("div", { className: k.passwordChecker, children: Cn.map((_, x) => {
|
|
13418
|
-
const v = _.test(
|
|
13418
|
+
const v = _.test(w);
|
|
13419
13419
|
return /* @__PURE__ */ m(
|
|
13420
13420
|
"div",
|
|
13421
13421
|
{
|
|
@@ -13527,7 +13527,7 @@ function s9({
|
|
|
13527
13527
|
handleGoogleLogin: r,
|
|
13528
13528
|
CAPTCHA_KEY: o
|
|
13529
13529
|
}) {
|
|
13530
|
-
const [s, i] = J("login"), [c, d] = J(""), [l, u] = J(""), [h, f] = J(""), [p, g] = J(""), [A,
|
|
13530
|
+
const [s, i] = J("login"), [c, d] = J(""), [l, u] = J(""), [h, f] = J(""), [p, g] = J(""), [A, w] = J(""), [C, S] = J(!1), [_, x] = J(!1), [v, T] = J(null);
|
|
13531
13531
|
return console.log("CAPTCHA_KEY", o), /* @__PURE__ */ m(K, { children: [
|
|
13532
13532
|
s === "login" && /* @__PURE__ */ a(
|
|
13533
13533
|
i9,
|
|
@@ -13615,7 +13615,7 @@ function s9({
|
|
|
13615
13615
|
error: v,
|
|
13616
13616
|
setConfirmationCode: f,
|
|
13617
13617
|
setNewPassword: g,
|
|
13618
|
-
setConfirmNewPassword:
|
|
13618
|
+
setConfirmNewPassword: w,
|
|
13619
13619
|
setShowPassword: S,
|
|
13620
13620
|
onSubmit: async (G) => {
|
|
13621
13621
|
if (_) return;
|
|
@@ -14214,10 +14214,10 @@ async function S3({
|
|
|
14214
14214
|
});
|
|
14215
14215
|
} catch (g) {
|
|
14216
14216
|
if (console.error("Error enviando comentario:", g), oe.isAxiosError(g)) {
|
|
14217
|
-
const A = g.response?.status ?? 500,
|
|
14217
|
+
const A = g.response?.status ?? 500, w = g.response?.data;
|
|
14218
14218
|
return A === 400 ? {
|
|
14219
14219
|
type: "error",
|
|
14220
|
-
message:
|
|
14220
|
+
message: w?.message || "Solicitud inválida. Verifica que los campos sean correctos.",
|
|
14221
14221
|
status: 400
|
|
14222
14222
|
} : A === 403 ? {
|
|
14223
14223
|
type: "error",
|
|
@@ -14229,7 +14229,7 @@ async function S3({
|
|
|
14229
14229
|
status: 500
|
|
14230
14230
|
} : {
|
|
14231
14231
|
type: "error",
|
|
14232
|
-
message:
|
|
14232
|
+
message: w?.message || "No se pudo enviar el comentario.",
|
|
14233
14233
|
status: A
|
|
14234
14234
|
};
|
|
14235
14235
|
}
|
|
@@ -14276,7 +14276,7 @@ const E3 = async ({
|
|
|
14276
14276
|
};
|
|
14277
14277
|
export {
|
|
14278
14278
|
vs as AssetsPreconnect,
|
|
14279
|
-
|
|
14279
|
+
y3 as AutorComponent,
|
|
14280
14280
|
tu as AutorHeader1,
|
|
14281
14281
|
hu as AutorHeader2,
|
|
14282
14282
|
ge as BannerAdvertising,
|
|
@@ -14304,7 +14304,7 @@ export {
|
|
|
14304
14304
|
e3 as ErrorComponent,
|
|
14305
14305
|
qs as Font,
|
|
14306
14306
|
Z9 as Footer,
|
|
14307
|
-
|
|
14307
|
+
ws as FormatAfterScripts,
|
|
14308
14308
|
Gr as FormatScripts,
|
|
14309
14309
|
Fo as GA4,
|
|
14310
14310
|
Wo as GTM,
|
|
@@ -14341,7 +14341,7 @@ export {
|
|
|
14341
14341
|
g3 as NewsComponent,
|
|
14342
14342
|
oa as NewsContent,
|
|
14343
14343
|
xt as NewsDescriptionComponent,
|
|
14344
|
-
|
|
14344
|
+
wn as NextPrev,
|
|
14345
14345
|
ks as OrgList,
|
|
14346
14346
|
Da as PreloadImages,
|
|
14347
14347
|
$e as REPORT_REASONS,
|
|
@@ -14353,7 +14353,7 @@ export {
|
|
|
14353
14353
|
kn as SectionCard2,
|
|
14354
14354
|
ia as SectionCardServerComponent,
|
|
14355
14355
|
d3 as SectionServerComponent,
|
|
14356
|
-
|
|
14356
|
+
wc as ShowSection,
|
|
14357
14357
|
Gf as SocialNetworks,
|
|
14358
14358
|
Es as SpeculationRules,
|
|
14359
14359
|
h3 as StaticSlotWrapper,
|
|
@@ -14367,7 +14367,7 @@ export {
|
|
|
14367
14367
|
X9 as VideoBlock3,
|
|
14368
14368
|
r3 as VideoBlock4,
|
|
14369
14369
|
d0 as VideoEmbeddedHeader,
|
|
14370
|
-
|
|
14370
|
+
w3 as VideoSection,
|
|
14371
14371
|
m0 as VideoYoutubeHeader,
|
|
14372
14372
|
Rs as VideosSchemas,
|
|
14373
14373
|
Us as WebsiteList,
|
|
@@ -14378,7 +14378,7 @@ export {
|
|
|
14378
14378
|
cd as coloringByStrokeSVGs,
|
|
14379
14379
|
Ea as compileStyleProps,
|
|
14380
14380
|
je as cutString,
|
|
14381
|
-
|
|
14381
|
+
y9 as extractRealtedNews,
|
|
14382
14382
|
Me as formatDate,
|
|
14383
14383
|
A9 as formatDateEdiciones,
|
|
14384
14384
|
Mr as formatDateJournalistArticule,
|
|
@@ -14409,11 +14409,11 @@ export {
|
|
|
14409
14409
|
C9 as getVideoRealPath,
|
|
14410
14410
|
ka as handleGetComments,
|
|
14411
14411
|
p9 as initLibrary,
|
|
14412
|
-
|
|
14412
|
+
ys as metadataToJSX,
|
|
14413
14413
|
mc as metadata_defaults,
|
|
14414
14414
|
Qr as parseTags,
|
|
14415
14415
|
gs as pathnameSplit,
|
|
14416
|
-
|
|
14416
|
+
w9 as processExtractedRelatedNews,
|
|
14417
14417
|
Ls as removePages,
|
|
14418
14418
|
b3 as reportComment,
|
|
14419
14419
|
Md as shareButtons,
|