sass-template-common 0.2.34 → 0.2.35
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.
|
@@ -54,7 +54,7 @@ let Xn = {
|
|
|
54
54
|
SHOW_NEWS_MORE_NEWS: !0,
|
|
55
55
|
SHOW_NEWS_RELATED_NEWS: !0
|
|
56
56
|
};
|
|
57
|
-
function
|
|
57
|
+
function w9(e = {}) {
|
|
58
58
|
Xn = { ...Xn, ...e };
|
|
59
59
|
}
|
|
60
60
|
function W() {
|
|
@@ -157,7 +157,7 @@ function Mr() {
|
|
|
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", m = "month", h = "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", m = "month", h = "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+)?$/, v = /\[([^\]]+)]|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, N = { 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(M) {
|
|
161
161
|
var U = ["th", "st", "nd", "rd"], T = M % 100;
|
|
162
162
|
return "[" + M + (U[(T - 20) % 10] || U[T] || U[0]) + "]";
|
|
163
163
|
} }, _ = function(M, U, T) {
|
|
@@ -168,8 +168,8 @@ function Mr() {
|
|
|
168
168
|
return (U <= 0 ? "+" : "-") + _(D, 2, "0") + ":" + _(I, 2, "0");
|
|
169
169
|
}, m: function M(U, T) {
|
|
170
170
|
if (U.date() < T.date()) return -M(T, U);
|
|
171
|
-
var D = 12 * (T.year() - U.year()) + (T.month() - U.month()), I = U.clone().add(D, m), z = T - I < 0,
|
|
172
|
-
return +(-(D + (T - I) / (z ? I -
|
|
171
|
+
var D = 12 * (T.year() - U.year()) + (T.month() - U.month()), I = U.clone().add(D, m), z = T - I < 0, y = U.clone().add(D + (z ? -1 : 1), m);
|
|
172
|
+
return +(-(D + (T - I) / (z ? I - y : y - I)) || 0);
|
|
173
173
|
}, a: function(M) {
|
|
174
174
|
return M < 0 ? Math.ceil(M) || 0 : Math.floor(M);
|
|
175
175
|
}, p: function(M) {
|
|
@@ -186,8 +186,8 @@ function Mr() {
|
|
|
186
186
|
if (typeof U == "string") {
|
|
187
187
|
var z = U.toLowerCase();
|
|
188
188
|
x[z] && (I = z), T && (x[z] = T, I = z);
|
|
189
|
-
var
|
|
190
|
-
if (!I &&
|
|
189
|
+
var y = U.split("-");
|
|
190
|
+
if (!I && y.length > 1) return M(y[0]);
|
|
191
191
|
} else {
|
|
192
192
|
var S = U.name;
|
|
193
193
|
x[S] = U, I = S;
|
|
@@ -213,10 +213,10 @@ function Mr() {
|
|
|
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 S =
|
|
219
|
-
return z ? new Date(Date.UTC(
|
|
216
|
+
var y = I.match(w);
|
|
217
|
+
if (y) {
|
|
218
|
+
var S = y[2] - 1 || 0, q = (y[7] || "0").substring(0, 3);
|
|
219
|
+
return z ? new Date(Date.UTC(y[1], S, y[3] || 1, y[4] || 0, y[5] || 0, y[6] || 0, q)) : new Date(y[1], S, y[3] || 1, y[4] || 0, y[5] || 0, y[6] || 0, q);
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
return new Date(I);
|
|
@@ -242,13 +242,13 @@ function Mr() {
|
|
|
242
242
|
}, U.valueOf = function() {
|
|
243
243
|
return this.$d.getTime();
|
|
244
244
|
}, U.startOf = function(T, D) {
|
|
245
|
-
var I = this, z = !!O.u(D) || D,
|
|
245
|
+
var I = this, z = !!O.u(D) || D, y = O.p(T), S = function(X, $) {
|
|
246
246
|
var ie = O.w(I.$u ? Date.UTC(I.$y, $, X) : new Date(I.$y, $, X), I);
|
|
247
247
|
return z ? ie : ie.endOf(l);
|
|
248
248
|
}, q = function(X, $) {
|
|
249
249
|
return O.w(I.toDate()[X].apply(I.toDate("s"), (z ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice($)), I);
|
|
250
250
|
}, j = 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 ? S(1, 0) : S(31, 11);
|
|
254
254
|
case m:
|
|
@@ -271,7 +271,7 @@ function Mr() {
|
|
|
271
271
|
}, U.endOf = function(T) {
|
|
272
272
|
return this.startOf(T, !1);
|
|
273
273
|
}, U.$set = function(T, D) {
|
|
274
|
-
var I, z = O.p(T),
|
|
274
|
+
var I, z = O.p(T), y = "set" + (this.$u ? "UTC" : ""), S = (I = {}, I[l] = y + "Date", I[g] = y + "Date", I[m] = y + "Month", I[p] = y + "FullYear", I[d] = y + "Hours", I[c] = y + "Minutes", I[i] = y + "Seconds", I[s] = y + "Milliseconds", I)[z], q = z === l ? this.$D + (D - this.$W) : D;
|
|
275
275
|
if (z === m || z === p) {
|
|
276
276
|
var j = this.clone().set(g, 1);
|
|
277
277
|
j.$d[S](q), j.init(), this.$d = j.set(g, Math.min(this.$D, j.daysInMonth())).$d;
|
|
@@ -284,22 +284,22 @@ function Mr() {
|
|
|
284
284
|
}, U.add = function(T, D) {
|
|
285
285
|
var I, z = this;
|
|
286
286
|
T = Number(T);
|
|
287
|
-
var
|
|
287
|
+
var y = O.p(D), S = function(L) {
|
|
288
288
|
var H = G(z);
|
|
289
289
|
return O.w(H.date(H.date() + Math.round(L * T)), z);
|
|
290
290
|
};
|
|
291
|
-
if (
|
|
292
|
-
if (
|
|
293
|
-
if (
|
|
294
|
-
if (
|
|
295
|
-
var q = (I = {}, I[c] = r, I[d] = o, I[i] = n, I)[
|
|
291
|
+
if (y === m) return this.set(m, this.$M + T);
|
|
292
|
+
if (y === p) return this.set(p, this.$y + T);
|
|
293
|
+
if (y === l) return S(1);
|
|
294
|
+
if (y === u) return S(7);
|
|
295
|
+
var q = (I = {}, I[c] = r, I[d] = o, I[i] = n, I)[y] || 1, j = this.$d.getTime() + T * q;
|
|
296
296
|
return O.w(j, this);
|
|
297
297
|
}, U.subtract = function(T, D) {
|
|
298
298
|
return this.add(-1 * T, D);
|
|
299
299
|
}, U.format = function(T) {
|
|
300
300
|
var D = this, I = this.$locale();
|
|
301
301
|
if (!this.isValid()) return I.invalidDate || A;
|
|
302
|
-
var z = T || "YYYY-MM-DDTHH:mm:ssZ",
|
|
302
|
+
var z = T || "YYYY-MM-DDTHH:mm:ssZ", y = O.z(this), S = this.$H, q = this.$m, j = this.$M, L = I.weekdays, H = I.months, V = I.meridiem, F = function($, ie, R, Ae) {
|
|
303
303
|
return $ && ($[ie] || $(D, z)) || R[ie].slice(0, Ae);
|
|
304
304
|
}, Z = function($) {
|
|
305
305
|
return O.s(S % 12 || 12, $, "0");
|
|
@@ -357,16 +357,16 @@ function Mr() {
|
|
|
357
357
|
case "SSS":
|
|
358
358
|
return O.s(D.$ms, 3, "0");
|
|
359
359
|
case "Z":
|
|
360
|
-
return
|
|
360
|
+
return y;
|
|
361
361
|
}
|
|
362
362
|
return null;
|
|
363
|
-
})($) ||
|
|
363
|
+
})($) || y.replace(":", "");
|
|
364
364
|
}));
|
|
365
365
|
}, U.utcOffset = function() {
|
|
366
366
|
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
|
367
367
|
}, U.diff = function(T, D, I) {
|
|
368
|
-
var z,
|
|
369
|
-
return O.m(
|
|
368
|
+
var z, y = this, S = O.p(D), q = G(T), j = (q.utcOffset() - this.utcOffset()) * r, L = this - q, H = function() {
|
|
369
|
+
return O.m(y, q);
|
|
370
370
|
};
|
|
371
371
|
switch (S) {
|
|
372
372
|
case p:
|
|
@@ -444,19 +444,19 @@ function Zo() {
|
|
|
444
444
|
return s.fromToBase(l, u, m, h);
|
|
445
445
|
}
|
|
446
446
|
o.en.relativeTime = i, s.fromToBase = function(l, u, m, h, p) {
|
|
447
|
-
for (var g, A,
|
|
447
|
+
for (var g, A, w, v = m.$locale().relativeTime || i, N = 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" }], _ = N.length, E = 0; E < _; E += 1) {
|
|
448
448
|
var b = N[E];
|
|
449
449
|
b.d && (g = h ? o(l).diff(m, b.d, !0) : m.diff(l, b.d, !0));
|
|
450
450
|
var x = (n.rounding || Math.round)(Math.abs(g));
|
|
451
|
-
if (
|
|
451
|
+
if (w = g > 0, x <= b.r || !b.r) {
|
|
452
452
|
x <= 1 && E > 0 && (b = N[E - 1]);
|
|
453
453
|
var P = v[b.l];
|
|
454
|
-
p && (x = p("" + x)), A = typeof P == "string" ? P.replace("%d", x) : P(x, u, b.l,
|
|
454
|
+
p && (x = p("" + x)), A = typeof P == "string" ? P.replace("%d", x) : P(x, u, b.l, w);
|
|
455
455
|
break;
|
|
456
456
|
}
|
|
457
457
|
}
|
|
458
458
|
if (u) return A;
|
|
459
|
-
var Q =
|
|
459
|
+
var Q = w ? v.future : v.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 m = d.utcOffset;
|
|
527
|
-
d.utcOffset = function(A,
|
|
527
|
+
d.utcOffset = function(A, w) {
|
|
528
528
|
var v = this.$utils().u;
|
|
529
529
|
if (v(A)) return this.$u ? 0 : v(this.$offset) ? m.call(this) : this.$offset;
|
|
530
530
|
if (typeof A == "string" && (A = (function(b) {
|
|
@@ -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 N = Math.abs(A) <= 16 ? 60 * A : A;
|
|
538
|
-
if (N === 0) return this.utc(
|
|
538
|
+
if (N === 0) return this.utc(w);
|
|
539
539
|
var _ = this.clone();
|
|
540
|
-
if (
|
|
540
|
+
if (w) return _.$offset = N, _.$u = !1, _;
|
|
541
541
|
var E = this.$u ? this.toDate().getTimezoneOffset() : -1 * this.utcOffset();
|
|
542
542
|
return (_ = this.local().add(N + E, n)).$offset = N, _.$x.$localOffset = E, _;
|
|
543
543
|
};
|
|
544
544
|
var h = d.format;
|
|
545
545
|
d.format = function(A) {
|
|
546
|
-
var
|
|
547
|
-
return h.call(this,
|
|
546
|
+
var w = A || (this.$u ? "YYYY-MM-DDTHH:mm:ss[Z]" : "");
|
|
547
|
+
return h.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, v) {
|
|
564
|
+
if (A && this.$u === A.$u) return g.call(this, A, w, v);
|
|
565
565
|
var N = this.local(), _ = c(A).local();
|
|
566
|
-
return g.call(N, _,
|
|
566
|
+
return g.call(N, _, w, v);
|
|
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(h, p, g) {
|
|
583
583
|
g === void 0 && (g = {});
|
|
584
|
-
var A = new Date(h),
|
|
584
|
+
var A = new Date(h), w = (function(v, N) {
|
|
585
585
|
N === void 0 && (N = {});
|
|
586
586
|
var _ = N.timeZoneName || "short", E = v + "|" + _, b = r[E];
|
|
587
587
|
return b || (b = new Intl.DateTimeFormat("en-US", { hour12: !1, timeZone: v, year: "numeric", month: "2-digit", day: "2-digit", hour: "2-digit", minute: "2-digit", second: "2-digit", timeZoneName: _ }), r[E] = b), b;
|
|
588
588
|
})(p, g);
|
|
589
|
-
return
|
|
589
|
+
return w.formatToParts(A);
|
|
590
590
|
}, l = function(h, p) {
|
|
591
|
-
for (var g = d(h, p), A = [],
|
|
592
|
-
var v = g[
|
|
591
|
+
for (var g = d(h, p), A = [], w = 0; w < g.length; w += 1) {
|
|
592
|
+
var v = g[w], N = v.type, _ = v.value, E = n[N];
|
|
593
593
|
E >= 0 && (A[E] = parseInt(_, 10));
|
|
594
594
|
}
|
|
595
595
|
var b = A[3], x = b === 24 ? 0 : b, P = A[0] + "-" + A[1] + "-" + A[2] + " " + x + ":" + A[4] + ":" + A[5] + ":000", Q = +h;
|
|
@@ -597,7 +597,7 @@ function cs() {
|
|
|
597
597
|
}, u = s.prototype;
|
|
598
598
|
u.tz = function(h, p) {
|
|
599
599
|
h === void 0 && (h = c);
|
|
600
|
-
var g, A = this.utcOffset(),
|
|
600
|
+
var g, A = this.utcOffset(), w = this.toDate(), v = w.toLocaleString("en-US", { timeZone: h }), N = Math.round((w - new Date(v)) / 1e3 / 60), _ = 15 * -Math.round(w.getTimezoneOffset() / 15) - N;
|
|
601
601
|
if (!Number(_)) g = this.utcOffset(0, p);
|
|
602
602
|
else if (g = i(v, { locale: this.$L }).$set("millisecond", this.$ms).utcOffset(_, !0), p) {
|
|
603
603
|
var E = 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 m.call(g, h, p).tz(this.$x.$timezone, !0);
|
|
618
618
|
}, i.tz = function(h, p, g) {
|
|
619
|
-
var A = g && p,
|
|
620
|
-
if (typeof h != "string") return i(h).tz(
|
|
619
|
+
var A = g && p, w = g || p || c, v = l(+i(), w);
|
|
620
|
+
if (typeof h != "string") return i(h).tz(w);
|
|
621
621
|
var N = (function(x, P, Q) {
|
|
622
622
|
var te = x - 60 * P * 1e3, G = l(te, Q);
|
|
623
623
|
if (P === G) return [te, P];
|
|
624
624
|
var O = l(te -= 60 * (G - P) * 1e3, Q);
|
|
625
625
|
return G === O ? [te, G] : [x - 60 * Math.min(G, O) * 1e3, Math.max(G, O)];
|
|
626
|
-
})(i.utc(h, A).valueOf(), v,
|
|
627
|
-
return b.$x.$timezone =
|
|
626
|
+
})(i.utc(h, A).valueOf(), v, w), _ = N[0], E = N[1], b = i(_).utcOffset(E);
|
|
627
|
+
return b.$x.$timezone = w, b;
|
|
628
628
|
}, i.tz.guess = function() {
|
|
629
629
|
return Intl.DateTimeFormat().resolvedOptions().timeZone;
|
|
630
630
|
}, i.tz.setDefault = function(h) {
|
|
@@ -650,7 +650,7 @@ const _n = (e) => e === "en" ? "en" : "es", Me = (e) => {
|
|
|
650
650
|
}, us = (e) => {
|
|
651
651
|
const { PUBLIC_LNG: t, DATE_TIMEZONE: n } = W(), r = _n(t ?? "es");
|
|
652
652
|
return Ee.tz(e, n).locale(r).format("MM/DD/YYYY [•] HH:mm [HS]");
|
|
653
|
-
},
|
|
653
|
+
}, y9 = (e) => {
|
|
654
654
|
const { PUBLIC_LNG: t, DATE_TIMEZONE: n } = W(), r = _n(t ?? "es");
|
|
655
655
|
return Ee.tz(e, n).locale(r).format("dddd DD [de] MMMM YYYY");
|
|
656
656
|
}, je = (e, t = 136) => e && e.length > t ? `${e.substring(0, t)}...` : e;
|
|
@@ -791,7 +791,7 @@ const b9 = 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
|
+
}, ws = (e) => {
|
|
795
795
|
const t = [];
|
|
796
796
|
let n = 0;
|
|
797
797
|
const r = (i) => t.push(i);
|
|
@@ -935,7 +935,7 @@ const b9 = async (e, t) => {
|
|
|
935
935
|
i
|
|
936
936
|
);
|
|
937
937
|
}) });
|
|
938
|
-
},
|
|
938
|
+
}, ys = (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 = ma(t.value || "", e.replaces).split(/(<script[\s\S]*?<\/script\s*>)/gi);
|
|
@@ -1159,8 +1159,8 @@ const Is = async ({
|
|
|
1159
1159
|
}, u = e.split("/")[1], m = u == "liveblogs" || u == "liveblog" ? ["/news", "/news-breadcrumb", "/news-liveblog"] : ["/news", "/news-breadcrumb"], h = t.paths.tema !== "" ? "/" + t.paths.tema : t.paths.tema, p = o !== "false" && s !== "false" ? "/" + o + h : h;
|
|
1160
1160
|
i = (await Promise.all(
|
|
1161
1161
|
m.map(async (A) => {
|
|
1162
|
-
const
|
|
1163
|
-
return await fa(
|
|
1162
|
+
const w = A === "/news-breadcrumb" ? { ...l, prefixtag: p } : l;
|
|
1163
|
+
return await fa(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"), wi = (e) => e && (Gt(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
|
+
), yi = typeof queueMicrotask < "u" ? queueMicrotask.bind(dt) : typeof process < "u" && process.nextTick || Zr, vi = (e) => e != null && Ce(e[Nn]), C = {
|
|
1685
1685
|
isArray: Nt,
|
|
1686
1686
|
isArrayBuffer: $r,
|
|
1687
1687
|
isBuffer: Qt,
|
|
@@ -1736,9 +1736,9 @@ const pi = (e) => {
|
|
|
1736
1736
|
isSpecCompliantForm: gi,
|
|
1737
1737
|
toJSONObject: pi,
|
|
1738
1738
|
isAsyncFn: Ai,
|
|
1739
|
-
isThenable:
|
|
1739
|
+
isThenable: wi,
|
|
1740
1740
|
setImmediate: Zr,
|
|
1741
|
-
asap:
|
|
1741
|
+
asap: yi,
|
|
1742
1742
|
isIterable: vi
|
|
1743
1743
|
};
|
|
1744
1744
|
function Y(e, t, n, r, o) {
|
|
@@ -1818,8 +1818,8 @@ function En(e, t, n) {
|
|
|
1818
1818
|
metaTokens: !0,
|
|
1819
1819
|
dots: !1,
|
|
1820
1820
|
indexes: !1
|
|
1821
|
-
}, !1, function(A,
|
|
1822
|
-
return !C.isUndefined(
|
|
1821
|
+
}, !1, function(A, w) {
|
|
1822
|
+
return !C.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) && C.isSpecCompliantForm(t);
|
|
1825
1825
|
if (!C.isFunction(o))
|
|
@@ -1834,9 +1834,9 @@ function En(e, t, n) {
|
|
|
1834
1834
|
throw new Y("Blob is not supported. Use a Buffer instead.");
|
|
1835
1835
|
return C.isArrayBuffer(g) || C.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 v = g;
|
|
1839
|
-
if (g && !
|
|
1839
|
+
if (g && !w && typeof g == "object") {
|
|
1840
1840
|
if (C.endsWith(A, "{}"))
|
|
1841
1841
|
A = r ? A : A.slice(0, -2), g = JSON.stringify(g);
|
|
1842
1842
|
else if (C.isArray(g) && Ci(g) || (C.isFileList(g) || C.endsWith(A, "[]")) && (v = C.toArray(g)))
|
|
@@ -1848,7 +1848,7 @@ function En(e, t, n) {
|
|
|
1848
1848
|
);
|
|
1849
1849
|
}), !1;
|
|
1850
1850
|
}
|
|
1851
|
-
return ta(g) ? !0 : (t.append(Qa(
|
|
1851
|
+
return ta(g) ? !0 : (t.append(Qa(w, A, s), l(g)), !1);
|
|
1852
1852
|
}
|
|
1853
1853
|
const m = [], h = Object.assign(_i, {
|
|
1854
1854
|
defaultVisitor: u,
|
|
@@ -1987,10 +1987,10 @@ const ro = {
|
|
|
1987
1987
|
Blob: Ei
|
|
1988
1988
|
},
|
|
1989
1989
|
protocols: ["http", "https", "file", "blob", "url", "data"]
|
|
1990
|
-
},
|
|
1991
|
-
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Ui =
|
|
1990
|
+
}, wa = typeof window < "u" && typeof document < "u", na = typeof navigator == "object" && navigator || void 0, Ii = wa && (!na || ["ReactNative", "NativeScript", "NS"].indexOf(na.product) < 0), ki = typeof WorkerGlobalScope < "u" && // eslint-disable-next-line no-undef
|
|
1991
|
+
self instanceof WorkerGlobalScope && typeof self.importScripts == "function", Ui = wa && window.location.href || "http://localhost", qi = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1992
1992
|
__proto__: null,
|
|
1993
|
-
hasBrowserEnv:
|
|
1993
|
+
hasBrowserEnv: wa,
|
|
1994
1994
|
hasStandardBrowserEnv: Ii,
|
|
1995
1995
|
hasStandardBrowserWebWorkerEnv: ki,
|
|
1996
1996
|
navigator: na,
|
|
@@ -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 v() {
|
|
2541
|
-
if (!
|
|
2541
|
+
if (!w)
|
|
2542
2542
|
return;
|
|
2543
2543
|
const _ = _e.from(
|
|
2544
|
-
"getAllResponseHeaders" in
|
|
2544
|
+
"getAllResponseHeaders" in w && w.getAllResponseHeaders()
|
|
2545
2545
|
), b = {
|
|
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(P) {
|
|
2554
2554
|
n(P), A();
|
|
2555
2555
|
}, function(P) {
|
|
2556
2556
|
r(P), A();
|
|
2557
|
-
}, b),
|
|
2558
|
-
}
|
|
2559
|
-
"onloadend" in
|
|
2560
|
-
!
|
|
2561
|
-
},
|
|
2562
|
-
|
|
2563
|
-
},
|
|
2564
|
-
const b = E && E.message ? E.message : "Network Error", x = new Y(b, Y.ERR_NETWORK, e,
|
|
2565
|
-
x.event = E || null, r(x),
|
|
2566
|
-
},
|
|
2557
|
+
}, b), w = null;
|
|
2558
|
+
}
|
|
2559
|
+
"onloadend" in w ? w.onloadend = v : w.onreadystatechange = function() {
|
|
2560
|
+
!w || w.readyState !== 4 || w.status === 0 && !(w.responseURL && w.responseURL.indexOf("file:") === 0) || setTimeout(v);
|
|
2561
|
+
}, w.onabort = function() {
|
|
2562
|
+
w && (r(new Y("Request aborted", Y.ECONNABORTED, e, w)), w = null);
|
|
2563
|
+
}, w.onerror = function(E) {
|
|
2564
|
+
const b = E && E.message ? E.message : "Network Error", x = new Y(b, Y.ERR_NETWORK, e, w);
|
|
2565
|
+
x.event = E || null, r(x), w = null;
|
|
2566
|
+
}, w.ontimeout = function() {
|
|
2567
2567
|
let E = o.timeout ? "timeout of " + o.timeout + "ms exceeded" : "timeout exceeded";
|
|
2568
2568
|
const b = o.transitional || ro;
|
|
2569
2569
|
o.timeoutErrorMessage && (E = o.timeoutErrorMessage), r(new Y(
|
|
2570
2570
|
E,
|
|
2571
2571
|
b.clarifyTimeoutError ? Y.ETIMEDOUT : Y.ECONNABORTED,
|
|
2572
2572
|
e,
|
|
2573
|
-
|
|
2574
|
-
)),
|
|
2575
|
-
}, s === void 0 && i.setContentType(null), "setRequestHeader" in
|
|
2576
|
-
|
|
2577
|
-
}), C.isUndefined(o.withCredentials) || (
|
|
2578
|
-
|
|
2573
|
+
w
|
|
2574
|
+
)), w = null;
|
|
2575
|
+
}, s === void 0 && i.setContentType(null), "setRequestHeader" in w && C.forEach(i.toJSON(), function(E, b) {
|
|
2576
|
+
w.setRequestHeader(b, E);
|
|
2577
|
+
}), C.isUndefined(o.withCredentials) || (w.withCredentials = !!o.withCredentials), c && c !== "json" && (w.responseType = o.responseType), l && ([h, g] = An(l, !0), w.addEventListener("progress", h)), d && w.upload && ([m, p] = An(d), w.upload.addEventListener("progress", m), 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 N = Hi(o.url);
|
|
2581
2581
|
if (N && ge.protocols.indexOf(N) === -1) {
|
|
2582
2582
|
r(new Y("Unsupported protocol " + N + ":", 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
|
-
!m[g] && (m[g] = (A,
|
|
2700
|
+
!m[g] && (m[g] = (A, w) => {
|
|
2701
2701
|
let v = A && A[g];
|
|
2702
2702
|
if (v)
|
|
2703
2703
|
return v.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 h = async (g) => {
|
|
@@ -2719,13 +2719,13 @@ const lo = (e) => {
|
|
|
2719
2719
|
if (C.isURLSearchParams(g) && (g = g + ""), C.isString(g))
|
|
2720
2720
|
return (await d(g)).byteLength;
|
|
2721
2721
|
}, p = async (g, A) => {
|
|
2722
|
-
const
|
|
2723
|
-
return
|
|
2722
|
+
const w = C.toFiniteNumber(g.getContentLength());
|
|
2723
|
+
return w ?? h(A);
|
|
2724
2724
|
};
|
|
2725
2725
|
return async (g) => {
|
|
2726
2726
|
let {
|
|
2727
2727
|
url: A,
|
|
2728
|
-
method:
|
|
2728
|
+
method: w,
|
|
2729
2729
|
data: v,
|
|
2730
2730
|
signal: N,
|
|
2731
2731
|
cancelToken: _,
|
|
@@ -2744,7 +2744,7 @@ const lo = (e) => {
|
|
|
2744
2744
|
});
|
|
2745
2745
|
let U;
|
|
2746
2746
|
try {
|
|
2747
|
-
if (x && l &&
|
|
2747
|
+
if (x && l && w !== "get" && w !== "head" && (U = await p(Q, v)) !== 0) {
|
|
2748
2748
|
let S = new n(A, {
|
|
2749
2749
|
method: "POST",
|
|
2750
2750
|
body: v,
|
|
@@ -2762,7 +2762,7 @@ const lo = (e) => {
|
|
|
2762
2762
|
const T = s && "credentials" in n.prototype, D = {
|
|
2763
2763
|
...G,
|
|
2764
2764
|
signal: ee,
|
|
2765
|
-
method:
|
|
2765
|
+
method: w.toUpperCase(),
|
|
2766
2766
|
headers: Q.normalize().toJSON(),
|
|
2767
2767
|
body: v,
|
|
2768
2768
|
duplex: "half",
|
|
@@ -2788,10 +2788,10 @@ const lo = (e) => {
|
|
|
2788
2788
|
);
|
|
2789
2789
|
}
|
|
2790
2790
|
P = P || "text";
|
|
2791
|
-
let
|
|
2791
|
+
let y = await m[C.findKey(m, P) || "text"](I, g);
|
|
2792
2792
|
return !z && M && M(), await new Promise((S, q) => {
|
|
2793
2793
|
io(S, q, {
|
|
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 ya = {
|
|
2825
2825
|
http: bi,
|
|
2826
2826
|
xhr: Ji,
|
|
2827
2827
|
fetch: {
|
|
2828
2828
|
get: uo
|
|
2829
2829
|
}
|
|
2830
2830
|
};
|
|
2831
|
-
C.forEach(
|
|
2831
|
+
C.forEach(ya, (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 = ya[(c = String(r)).toLowerCase()], o === void 0))
|
|
2850
2850
|
throw new Y(`Unknown adapter '${c}'`);
|
|
2851
2851
|
if (o && (C.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: ya
|
|
2880
2880
|
};
|
|
2881
2881
|
function Ln(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[m++], A = c[m++];
|
|
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
|
}
|
|
@@ -3801,7 +3801,7 @@ async function Y9({
|
|
|
3801
3801
|
socials: p,
|
|
3802
3802
|
speculationType: g = "Common",
|
|
3803
3803
|
preloadImageUrl: A,
|
|
3804
|
-
custom_Speculation:
|
|
3804
|
+
custom_Speculation: w,
|
|
3805
3805
|
custom_metadata: v,
|
|
3806
3806
|
custom_scriptReplaces: N,
|
|
3807
3807
|
head_custom_elements: _
|
|
@@ -3815,7 +3815,7 @@ async function Y9({
|
|
|
3815
3815
|
slug: i,
|
|
3816
3816
|
texts: c,
|
|
3817
3817
|
query: d
|
|
3818
|
-
}), b =
|
|
3818
|
+
}), b = ws(E), x = N || zr[o]({
|
|
3819
3819
|
pathname: s,
|
|
3820
3820
|
slug: i,
|
|
3821
3821
|
config: h,
|
|
@@ -3886,7 +3886,7 @@ async function Y9({
|
|
|
3886
3886
|
{
|
|
3887
3887
|
type: g,
|
|
3888
3888
|
active: h.useSpeculationRules,
|
|
3889
|
-
customSpeculation:
|
|
3889
|
+
customSpeculation: w
|
|
3890
3890
|
}
|
|
3891
3891
|
),
|
|
3892
3892
|
_
|
|
@@ -3911,7 +3911,7 @@ const K9 = ({
|
|
|
3911
3911
|
config: s,
|
|
3912
3912
|
currentNew: c,
|
|
3913
3913
|
internalPath: i
|
|
3914
|
-
}), p = l.before.active, g = l.after.active, A = p ? l.before.customData ? l.before.customData : h : void 0,
|
|
3914
|
+
}), p = l.before.active, g = l.after.active, A = p ? l.before.customData ? l.before.customData : h : void 0, w = g ? l.after.customData ? l.after.customData : h : void 0;
|
|
3915
3915
|
return /* @__PURE__ */ f(K, { children: [
|
|
3916
3916
|
/* @__PURE__ */ a(Hr, { name: "bodybefore", banners: n, replaces: A }),
|
|
3917
3917
|
e,
|
|
@@ -3920,7 +3920,7 @@ const K9 = ({
|
|
|
3920
3920
|
/* @__PURE__ */ a(Fo, { dimensionValues: m }),
|
|
3921
3921
|
/* @__PURE__ */ a($o, {}),
|
|
3922
3922
|
u,
|
|
3923
|
-
/* @__PURE__ */ a(
|
|
3923
|
+
/* @__PURE__ */ a(ys, { name: "bodyafter", banners: n, replaces: w })
|
|
3924
3924
|
] });
|
|
3925
3925
|
}, fc = "_content_1tvgz_1", gc = {
|
|
3926
3926
|
content: fc
|
|
@@ -3940,9 +3940,9 @@ const K9 = ({
|
|
|
3940
3940
|
}
|
|
3941
3941
|
)
|
|
3942
3942
|
}
|
|
3943
|
-
), Ac = "_content_19rc1_1",
|
|
3943
|
+
), Ac = "_content_19rc1_1", wc = "_location_19rc1_11", nr = {
|
|
3944
3944
|
content: Ac,
|
|
3945
|
-
location:
|
|
3945
|
+
location: wc
|
|
3946
3946
|
}, J9 = (e) => /* @__PURE__ */ f("div", { className: nr.content, children: [
|
|
3947
3947
|
/* @__PURE__ */ a(pc, {}),
|
|
3948
3948
|
/* @__PURE__ */ a("p", { className: nr.location, children: e.place })
|
|
@@ -3950,7 +3950,7 @@ const K9 = ({
|
|
|
3950
3950
|
children: e,
|
|
3951
3951
|
className: t
|
|
3952
3952
|
// desktopWidth = '1185px'
|
|
3953
|
-
}) => /* @__PURE__ */ a("div", { className: `content-layout-1 ${t || ""}`, children: e }),
|
|
3953
|
+
}) => /* @__PURE__ */ a("div", { className: `content-layout-1 ${t || ""}`, children: e }), yc = (e) => {
|
|
3954
3954
|
const { children: t, show: n, order: r = 0 } = e;
|
|
3955
3955
|
return n && /* @__PURE__ */ a("div", { style: { order: r }, children: t });
|
|
3956
3956
|
};
|
|
@@ -3963,63 +3963,63 @@ function vc({
|
|
|
3963
3963
|
enableDrag: s,
|
|
3964
3964
|
onIndexChange: i
|
|
3965
3965
|
}) {
|
|
3966
|
-
const [c, d] = J(!1), [l, u] = J(0), [m, h] = J(0), [p, g] = J(0), [A,
|
|
3966
|
+
const [c, d] = J(!1), [l, u] = J(0), [m, h] = J(0), [p, g] = J(0), [A, w] = J(0), [v, N] = J(null), _ = Or(null), [E, b] = J(1), x = he(() => {
|
|
3967
3967
|
if (o) return 1;
|
|
3968
|
-
const
|
|
3968
|
+
const y = _.current?.offsetWidth || window.innerWidth, S = n + r, q = Math.floor(y / S);
|
|
3969
3969
|
return Math.max(1, q);
|
|
3970
3970
|
}, [o, n, r]);
|
|
3971
3971
|
De(() => {
|
|
3972
|
-
const
|
|
3972
|
+
const y = () => {
|
|
3973
3973
|
const S = x();
|
|
3974
3974
|
b(S);
|
|
3975
3975
|
};
|
|
3976
|
-
return
|
|
3976
|
+
return y(), window.addEventListener("resize", y), () => window.removeEventListener("resize", y);
|
|
3977
3977
|
}, [x]);
|
|
3978
3978
|
const Q = he(() => {
|
|
3979
|
-
const
|
|
3980
|
-
return Math.max(0, t -
|
|
3979
|
+
const y = x();
|
|
3980
|
+
return Math.max(0, t - y);
|
|
3981
3981
|
}, [t, x])(), te = he(() => {
|
|
3982
|
-
const
|
|
3983
|
-
return
|
|
3982
|
+
const y = x();
|
|
3983
|
+
return y === 1 ? 1 : Math.max(1, Math.ceil(y / 2));
|
|
3984
3984
|
}, [x]), G = he(
|
|
3985
|
-
(
|
|
3985
|
+
(y, S = 0) => {
|
|
3986
3986
|
if (o) {
|
|
3987
3987
|
const q = _.current?.offsetWidth || window.innerWidth;
|
|
3988
|
-
return -(
|
|
3988
|
+
return -(y * (100 + r)) + S / q * 100;
|
|
3989
3989
|
}
|
|
3990
|
-
return -(
|
|
3990
|
+
return -(y * (n + r)) + S;
|
|
3991
3991
|
},
|
|
3992
3992
|
[o, n, r]
|
|
3993
3993
|
), O = he(
|
|
3994
|
-
(
|
|
3994
|
+
(y) => {
|
|
3995
3995
|
const S = _.current?.offsetWidth || window.innerWidth, q = x(), j = te();
|
|
3996
3996
|
if (o)
|
|
3997
|
-
return Math.abs(
|
|
3997
|
+
return Math.abs(y) / S * 100 > 30 ? 1 : 0;
|
|
3998
3998
|
{
|
|
3999
|
-
const L = n + r, H = Math.abs(
|
|
3999
|
+
const L = n + r, H = Math.abs(y) / L;
|
|
4000
4000
|
return H >= (q === 1 ? 0.2 : 0.3) ? q === 1 ? 1 : Math.min(Math.round(H), j) : 0;
|
|
4001
4001
|
}
|
|
4002
4002
|
},
|
|
4003
4003
|
[o, n, r, x, te]
|
|
4004
4004
|
), ee = he(
|
|
4005
|
-
(
|
|
4006
|
-
s && (u(
|
|
4005
|
+
(y) => {
|
|
4006
|
+
s && (u(y), h(y), g(0), w(Date.now()), d(!0), document.body.classList.add("dragging"));
|
|
4007
4007
|
},
|
|
4008
4008
|
[s]
|
|
4009
4009
|
), ce = he(
|
|
4010
|
-
(
|
|
4010
|
+
(y) => {
|
|
4011
4011
|
if (!c || !s) return;
|
|
4012
|
-
const S =
|
|
4013
|
-
h(
|
|
4012
|
+
const S = y - l, q = (n + r) * 1.2, j = e === 0 && S > 0, L = e === Q && S < 0, H = j || L ? Math.sign(S) * Math.min(Math.abs(S), q) : S;
|
|
4013
|
+
h(y), g(H);
|
|
4014
4014
|
},
|
|
4015
4015
|
[c, l, s, e, Q, n, r]
|
|
4016
4016
|
), M = he(
|
|
4017
|
-
(
|
|
4018
|
-
ce(
|
|
4017
|
+
(y) => {
|
|
4018
|
+
ce(y.clientX);
|
|
4019
4019
|
},
|
|
4020
4020
|
[ce]
|
|
4021
4021
|
), U = he(
|
|
4022
|
-
(
|
|
4022
|
+
(y) => {
|
|
4023
4023
|
if (!c || !s) return;
|
|
4024
4024
|
const S = m - l, q = Date.now() - A, j = Math.abs(S) / Math.max(q, 1), L = O(S), V = j > 0.5 && Math.abs(S) > 50 ? Math.max(L, 1) : L;
|
|
4025
4025
|
if (V > 0)
|
|
@@ -4030,7 +4030,7 @@ function vc({
|
|
|
4030
4030
|
const F = Math.min(Q, e + V);
|
|
4031
4031
|
i(F);
|
|
4032
4032
|
}
|
|
4033
|
-
d(!1), g(0), document.body.classList.remove("dragging"), document.removeEventListener("mousemove", M), document.removeEventListener("mouseup", U),
|
|
4033
|
+
d(!1), g(0), document.body.classList.remove("dragging"), document.removeEventListener("mousemove", M), document.removeEventListener("mouseup", U), y.clientX === l && v?.dispatchEvent(new PointerEvent("click"));
|
|
4034
4034
|
},
|
|
4035
4035
|
[
|
|
4036
4036
|
c,
|
|
@@ -4046,23 +4046,23 @@ function vc({
|
|
|
4046
4046
|
v
|
|
4047
4047
|
]
|
|
4048
4048
|
), T = he(
|
|
4049
|
-
(
|
|
4050
|
-
|
|
4049
|
+
(y) => {
|
|
4050
|
+
y.preventDefault(), ["a", "span"].includes(y.target?.localName) && N(y.target), ee(y.clientX);
|
|
4051
4051
|
},
|
|
4052
4052
|
[ee]
|
|
4053
4053
|
), D = he(
|
|
4054
|
-
(
|
|
4055
|
-
ee(
|
|
4054
|
+
(y) => {
|
|
4055
|
+
ee(y.touches[0].clientX);
|
|
4056
4056
|
},
|
|
4057
4057
|
[ee]
|
|
4058
4058
|
), I = he(
|
|
4059
|
-
(
|
|
4060
|
-
c && (
|
|
4059
|
+
(y) => {
|
|
4060
|
+
c && (y.preventDefault(), ce(y.touches[0].clientX));
|
|
4061
4061
|
},
|
|
4062
4062
|
[c, ce]
|
|
4063
4063
|
), z = he(
|
|
4064
|
-
(
|
|
4065
|
-
U(
|
|
4064
|
+
(y) => {
|
|
4065
|
+
U(y);
|
|
4066
4066
|
},
|
|
4067
4067
|
[U]
|
|
4068
4068
|
);
|
|
@@ -4109,7 +4109,7 @@ function Z9(e) {
|
|
|
4109
4109
|
const {
|
|
4110
4110
|
isDragging: g,
|
|
4111
4111
|
translateOffset: A,
|
|
4112
|
-
carrouselRef:
|
|
4112
|
+
carrouselRef: w,
|
|
4113
4113
|
maxIndex: v,
|
|
4114
4114
|
getTranslateValue: N,
|
|
4115
4115
|
actualVisibleItems: _,
|
|
@@ -4191,7 +4191,7 @@ function Z9(e) {
|
|
|
4191
4191
|
/* @__PURE__ */ a(
|
|
4192
4192
|
"div",
|
|
4193
4193
|
{
|
|
4194
|
-
ref:
|
|
4194
|
+
ref: w,
|
|
4195
4195
|
className: "carrousel-ssr",
|
|
4196
4196
|
style: {
|
|
4197
4197
|
gap: s,
|
|
@@ -4325,7 +4325,7 @@ const Cc = "_content_3olxv_1", _c = {
|
|
|
4325
4325
|
},
|
|
4326
4326
|
n.key
|
|
4327
4327
|
);
|
|
4328
|
-
}, Ec = "
|
|
4328
|
+
}, Ec = "_boxInformation_fw6d4_1", Tc = "_sectionDescriptionContainer_fw6d4_9", Ic = "_uppertitle_fw6d4_26", kc = "_sectionDescription_fw6d4_9", Uc = "_articule_fw6d4_79", qc = "_linkStyled_fw6d4_93", Rc = "_description_fw6d4_104", Lc = "_correspondent_fw6d4_132", Bc = "_correspondentLink_fw6d4_144", Pc = "_dotStyles_fw6d4_156", Oc = "_clipboardButton_fw6d4_163", Dc = "_socialNetworkSection_fw6d4_177", re = {
|
|
4329
4329
|
boxInformation: Ec,
|
|
4330
4330
|
sectionDescriptionContainer: Tc,
|
|
4331
4331
|
uppertitle: Ic,
|
|
@@ -4389,7 +4389,7 @@ const po = (e) => /* @__PURE__ */ a(
|
|
|
4389
4389
|
}
|
|
4390
4390
|
)
|
|
4391
4391
|
}
|
|
4392
|
-
),
|
|
4392
|
+
), wo = (e) => /* @__PURE__ */ f(
|
|
4393
4393
|
"svg",
|
|
4394
4394
|
{
|
|
4395
4395
|
width: "24",
|
|
@@ -4502,7 +4502,7 @@ function Qc({ noteShare: e }) {
|
|
|
4502
4502
|
"data-active": "false",
|
|
4503
4503
|
"aria-label": "copy",
|
|
4504
4504
|
className: [re.clipboardButton, "clipbtn-id"].join(" "),
|
|
4505
|
-
children: /* @__PURE__ */ a(
|
|
4505
|
+
children: /* @__PURE__ */ a(wo, {})
|
|
4506
4506
|
}
|
|
4507
4507
|
)
|
|
4508
4508
|
] }) : null;
|
|
@@ -4620,7 +4620,7 @@ const Et = (e) => {
|
|
|
4620
4620
|
playStyled: Jc,
|
|
4621
4621
|
imageLogoPlaceholder: Zc,
|
|
4622
4622
|
imagePlaceholder: Xc
|
|
4623
|
-
},
|
|
4623
|
+
}, yo = (e) => /* @__PURE__ */ f(
|
|
4624
4624
|
"svg",
|
|
4625
4625
|
{
|
|
4626
4626
|
width: "43",
|
|
@@ -4642,10 +4642,10 @@ const Et = (e) => {
|
|
|
4642
4642
|
}
|
|
4643
4643
|
);
|
|
4644
4644
|
function va() {
|
|
4645
|
-
return W().COMPONENTS?.PlayIcon ||
|
|
4645
|
+
return W().COMPONENTS?.PlayIcon || yo;
|
|
4646
4646
|
}
|
|
4647
4647
|
function vo() {
|
|
4648
|
-
return W().COMPONENTS?.PlayIcon ||
|
|
4648
|
+
return W().COMPONENTS?.PlayIcon || yo;
|
|
4649
4649
|
}
|
|
4650
4650
|
const el = (e) => {
|
|
4651
4651
|
const { isVideo: t = !1, isLarge: n = !1, priorityHigh: r = !1 } = e, o = va(), s = e.preview.sizes;
|
|
@@ -5842,11 +5842,11 @@ const el = (e) => {
|
|
|
5842
5842
|
}
|
|
5843
5843
|
)
|
|
5844
5844
|
] })
|
|
5845
|
-
] }), pl = "_content_1ms2y_1", Al = "_contentInfo_1ms2y_20",
|
|
5845
|
+
] }), pl = "_content_1ms2y_1", Al = "_contentInfo_1ms2y_20", wl = "_subscribeImage_1ms2y_28", yl = "_tag_1ms2y_42", vl = "_contentTitle_1ms2y_60", bl = "_title_1ms2y_65", Cl = "_subTitle_1ms2y_70", _l = "_inputStyled_1ms2y_79", Nl = "_buttonStyled_1ms2y_118", Sl = "_contentTerms_1ms2y_131", xl = "_subscribeText_1ms2y_137", El = "_terms_1ms2y_146", Ie = {
|
|
5846
5846
|
content: pl,
|
|
5847
5847
|
contentInfo: Al,
|
|
5848
|
-
subscribeImage:
|
|
5849
|
-
tag:
|
|
5848
|
+
subscribeImage: wl,
|
|
5849
|
+
tag: yl,
|
|
5850
5850
|
contentTitle: vl,
|
|
5851
5851
|
title: bl,
|
|
5852
5852
|
subTitle: Cl,
|
|
@@ -6023,7 +6023,7 @@ const el = (e) => {
|
|
|
6023
6023
|
/* @__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" })
|
|
6024
6024
|
]
|
|
6025
6025
|
}
|
|
6026
|
-
), jl = "_content_1p7b9_1", Ql = "_brandContent_1p7b9_10", Gl = "_socialMedia_1p7b9_21", Hl = "_linkSocialNetwoks_1p7b9_28", zl = "_sectionContent_1p7b9_42", Vl = "_section_1p7b9_42", Fl = "_menuItem_1p7b9_60", $l = "_otherItems_1p7b9_73", Wl = "_copyrigth_1p7b9_87", Yl = "_copyrigthText_1p7b9_97", Kl = "_logoStyled_1p7b9_107", Jl = "_socialNetworkIcon_1p7b9_118", Zl = "_socialInstagram_1p7b9_125", Xl = "_socialNetworkIcon_stroke_1p7b9_133",
|
|
6026
|
+
), jl = "_content_1p7b9_1", Ql = "_brandContent_1p7b9_10", Gl = "_socialMedia_1p7b9_21", Hl = "_linkSocialNetwoks_1p7b9_28", zl = "_sectionContent_1p7b9_42", Vl = "_section_1p7b9_42", Fl = "_menuItem_1p7b9_60", $l = "_otherItems_1p7b9_73", Wl = "_copyrigth_1p7b9_87", Yl = "_copyrigthText_1p7b9_97", Kl = "_logoStyled_1p7b9_107", Jl = "_socialNetworkIcon_1p7b9_118", Zl = "_socialInstagram_1p7b9_125", Xl = "_socialNetworkIcon_stroke_1p7b9_133", we = {
|
|
6027
6027
|
content: jl,
|
|
6028
6028
|
brandContent: Ql,
|
|
6029
6029
|
socialMedia: Gl,
|
|
@@ -6234,50 +6234,50 @@ const el = (e) => {
|
|
|
6234
6234
|
telegram: (e) => /* @__PURE__ */ a(nd, { ...e })
|
|
6235
6235
|
}, e3 = (e) => {
|
|
6236
6236
|
const { freeZone: t, socials: n, menu: r, customBlock: o } = e;
|
|
6237
|
-
return /* @__PURE__ */ f("footer", { className:
|
|
6238
|
-
/* @__PURE__ */ f("section", { className:
|
|
6239
|
-
/* @__PURE__ */ a(B, { href: "/", "aria-label": "Ir a la home", children: /* @__PURE__ */ a("span", { className:
|
|
6240
|
-
/* @__PURE__ */ a("div", { className:
|
|
6237
|
+
return /* @__PURE__ */ f("footer", { className: we.content, children: [
|
|
6238
|
+
/* @__PURE__ */ f("section", { className: we.brandContent, children: [
|
|
6239
|
+
/* @__PURE__ */ a(B, { href: "/", "aria-label": "Ir a la home", children: /* @__PURE__ */ a("span", { className: we.logoStyled, children: e.logo }) }),
|
|
6240
|
+
/* @__PURE__ */ a("div", { className: we.socialMedia, children: Object.keys(n).map((s) => n[s]?.show && /* @__PURE__ */ a(
|
|
6241
6241
|
"a",
|
|
6242
6242
|
{
|
|
6243
6243
|
target: "_blank",
|
|
6244
6244
|
rel: "noreferrer",
|
|
6245
6245
|
"aria-label": n[s].title + " link",
|
|
6246
|
-
className:
|
|
6246
|
+
className: we.linkSocialNetwoks,
|
|
6247
6247
|
href: n[s].url,
|
|
6248
6248
|
children: Sa[s]({
|
|
6249
|
-
className: `${sd.includes(s) ?
|
|
6249
|
+
className: `${sd.includes(s) ? we.socialNetworkIcon_stroke : we.socialNetworkIcon} ${s === "instagram" ? we.socialInstagram : ""}`
|
|
6250
6250
|
})
|
|
6251
6251
|
},
|
|
6252
6252
|
s
|
|
6253
6253
|
)) })
|
|
6254
6254
|
] }),
|
|
6255
|
-
/* @__PURE__ */ f("section", { className:
|
|
6256
|
-
/* @__PURE__ */ a("div", { className:
|
|
6255
|
+
/* @__PURE__ */ f("section", { className: we.sectionContent, children: [
|
|
6256
|
+
/* @__PURE__ */ a("div", { className: we.section, children: r.filter((s) => !s.subitem).map((s, i) => /* @__PURE__ */ a(
|
|
6257
6257
|
B,
|
|
6258
6258
|
{
|
|
6259
6259
|
href: s.link ? s.link : void 0,
|
|
6260
6260
|
target: s.target,
|
|
6261
|
-
className: `${
|
|
6261
|
+
className: `${we.menuItem} footer-menu-item`,
|
|
6262
6262
|
"aria-label": s.description,
|
|
6263
6263
|
children: s.description
|
|
6264
6264
|
},
|
|
6265
6265
|
i
|
|
6266
6266
|
)) }),
|
|
6267
|
-
/* @__PURE__ */ a("div", { className:
|
|
6267
|
+
/* @__PURE__ */ a("div", { className: we.section, children: t && t.map((s, i) => /* @__PURE__ */ a(
|
|
6268
6268
|
B,
|
|
6269
6269
|
{
|
|
6270
6270
|
href: s.link ? s?.link : void 0,
|
|
6271
6271
|
target: s.target,
|
|
6272
|
-
className:
|
|
6272
|
+
className: we.otherItems,
|
|
6273
6273
|
children: s.description
|
|
6274
6274
|
},
|
|
6275
6275
|
i
|
|
6276
6276
|
)) })
|
|
6277
6277
|
] }),
|
|
6278
6278
|
o && /* @__PURE__ */ a(K, { children: o }),
|
|
6279
|
-
/* @__PURE__ */ f("section", { className:
|
|
6280
|
-
/* @__PURE__ */ a("p", { className:
|
|
6279
|
+
/* @__PURE__ */ f("section", { className: we.copyrigth, children: [
|
|
6280
|
+
/* @__PURE__ */ a("p", { className: we.copyrigthText, children: e.copyrigth }),
|
|
6281
6281
|
/* @__PURE__ */ a(
|
|
6282
6282
|
B,
|
|
6283
6283
|
{
|
|
@@ -6291,7 +6291,7 @@ const el = (e) => {
|
|
|
6291
6291
|
)
|
|
6292
6292
|
] })
|
|
6293
6293
|
] });
|
|
6294
|
-
}, id = "_content_1qzgn_1", cd = "_imageContent_1qzgn_9", ld = "_width1Autor_1qzgn_18", dd = "_width2Autor_1qzgn_22", ud = "_width3Autor_1qzgn_26", hd = "_imageAutor_1qzgn_30", md = "_imageStyled_1qzgn_69", fd = "_contentIconStyled_1qzgn_70", gd = "_avatarContent_1qzgn_87", pd = "_journalistSection_1qzgn_95", Ad = "_journalistInfo_1qzgn_103",
|
|
6294
|
+
}, id = "_content_1qzgn_1", cd = "_imageContent_1qzgn_9", ld = "_width1Autor_1qzgn_18", dd = "_width2Autor_1qzgn_22", ud = "_width3Autor_1qzgn_26", hd = "_imageAutor_1qzgn_30", md = "_imageStyled_1qzgn_69", fd = "_contentIconStyled_1qzgn_70", gd = "_avatarContent_1qzgn_87", pd = "_journalistSection_1qzgn_95", Ad = "_journalistInfo_1qzgn_103", wd = "_journalistInfoLink_1qzgn_104", yd = "_socialNetworkSection_1qzgn_139", vd = "_avatarStyled_1qzgn_151", bd = "_article_1qzgn_156", Cd = "_socialButton_1qzgn_160", _d = "_facebookStyled_1qzgn_176", Nd = "_emailStyled_1qzgn_180", Sd = "_xStyled_1qzgn_184", xd = "_linkedinStyled_1qzgn_188", Ed = "_whatsappStyled_1qzgn_192", Td = "_whatsappLink_1qzgn_196", Id = "_clipboardButton_1qzgn_212", kd = "_googleProfileButton_1qzgn_248", de = {
|
|
6295
6295
|
content: id,
|
|
6296
6296
|
imageContent: cd,
|
|
6297
6297
|
width1Autor: ld,
|
|
@@ -6303,8 +6303,8 @@ const el = (e) => {
|
|
|
6303
6303
|
avatarContent: gd,
|
|
6304
6304
|
journalistSection: pd,
|
|
6305
6305
|
journalistInfo: Ad,
|
|
6306
|
-
journalistInfoLink:
|
|
6307
|
-
socialNetworkSection:
|
|
6306
|
+
journalistInfoLink: wd,
|
|
6307
|
+
socialNetworkSection: yd,
|
|
6308
6308
|
avatarStyled: vd,
|
|
6309
6309
|
article: bd,
|
|
6310
6310
|
socialButton: Cd,
|
|
@@ -6333,7 +6333,7 @@ const el = (e) => {
|
|
|
6333
6333
|
}
|
|
6334
6334
|
)
|
|
6335
6335
|
}
|
|
6336
|
-
),
|
|
6336
|
+
), wn = (e) => /* @__PURE__ */ a(
|
|
6337
6337
|
"svg",
|
|
6338
6338
|
{
|
|
6339
6339
|
version: "1.1",
|
|
@@ -6483,8 +6483,8 @@ const el = (e) => {
|
|
|
6483
6483
|
e
|
|
6484
6484
|
)}`,
|
|
6485
6485
|
icon: {
|
|
6486
|
-
outline: (e) => /* @__PURE__ */ a(
|
|
6487
|
-
solid: (e) => /* @__PURE__ */ a(
|
|
6486
|
+
outline: (e) => /* @__PURE__ */ a(wn, { className: e }),
|
|
6487
|
+
solid: (e) => /* @__PURE__ */ a(wn, { className: e })
|
|
6488
6488
|
}
|
|
6489
6489
|
}
|
|
6490
6490
|
};
|
|
@@ -6516,7 +6516,7 @@ function Od({ noteShare: e }) {
|
|
|
6516
6516
|
"data-active": "false",
|
|
6517
6517
|
"aria-label": "copy",
|
|
6518
6518
|
className: [de.clipboardButton, "clipbtn-id"].join(" "),
|
|
6519
|
-
children: /* @__PURE__ */ a(
|
|
6519
|
+
children: /* @__PURE__ */ a(wo, {})
|
|
6520
6520
|
}
|
|
6521
6521
|
),
|
|
6522
6522
|
/* @__PURE__ */ a(
|
|
@@ -6578,7 +6578,7 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
6578
6578
|
}, Fd = "_content_wxhkd_1", $d = "_linkStyled_wxhkd_9", Bn = {
|
|
6579
6579
|
content: Fd,
|
|
6580
6580
|
linkStyled: $d
|
|
6581
|
-
},
|
|
6581
|
+
}, yn = (e) => {
|
|
6582
6582
|
const { currentPage: t, showNext: n, maxPages: r, pathname: o, query: s } = e, i = (c, d, l) => {
|
|
6583
6583
|
let u = "";
|
|
6584
6584
|
const m = d.split("/");
|
|
@@ -6782,12 +6782,12 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
6782
6782
|
/* @__PURE__ */ a(B, { className: gt.linkStyled, href: "/", children: e.buttonText ?? "Inicio" })
|
|
6783
6783
|
] })
|
|
6784
6784
|
] });
|
|
6785
|
-
}, g1 = "_content_zxcog_1", p1 = "_contentLabel_zxcog_8", A1 = "_label_zxcog_13",
|
|
6785
|
+
}, g1 = "_content_zxcog_1", p1 = "_contentLabel_zxcog_8", A1 = "_label_zxcog_13", w1 = "_required_zxcog_22", y1 = "_input_zxcog_28", kt = {
|
|
6786
6786
|
content: g1,
|
|
6787
6787
|
contentLabel: p1,
|
|
6788
6788
|
label: A1,
|
|
6789
|
-
required:
|
|
6790
|
-
input:
|
|
6789
|
+
required: w1,
|
|
6790
|
+
input: y1
|
|
6791
6791
|
}, a3 = (e) => /* @__PURE__ */ f("div", { className: kt.content, children: [
|
|
6792
6792
|
/* @__PURE__ */ f("div", { className: kt.contentLabel, children: [
|
|
6793
6793
|
/* @__PURE__ */ a("label", { className: kt.label, children: e.label }),
|
|
@@ -6943,7 +6943,7 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
6943
6943
|
href: p,
|
|
6944
6944
|
target: "_blank",
|
|
6945
6945
|
rel: "noreferrer",
|
|
6946
|
-
children: /* @__PURE__ */ a(
|
|
6946
|
+
children: /* @__PURE__ */ a(wn, { className: Ne.socialIcon })
|
|
6947
6947
|
}
|
|
6948
6948
|
)
|
|
6949
6949
|
] })
|
|
@@ -7017,7 +7017,7 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7017
7017
|
href: p,
|
|
7018
7018
|
target: "_blank",
|
|
7019
7019
|
rel: "noreferrer",
|
|
7020
|
-
children: /* @__PURE__ */ a(
|
|
7020
|
+
children: /* @__PURE__ */ a(wn, { className: Se.socialIcon })
|
|
7021
7021
|
}
|
|
7022
7022
|
)
|
|
7023
7023
|
] })
|
|
@@ -7046,13 +7046,13 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7046
7046
|
),
|
|
7047
7047
|
e.banner
|
|
7048
7048
|
] })
|
|
7049
|
-
] }), fu = "_content_7v98f_1", gu = "_header_7v98f_30", pu = "_videos_7v98f_56", Au = "_videoContent_7v98f_63",
|
|
7049
|
+
] }), fu = "_content_7v98f_1", gu = "_header_7v98f_30", pu = "_videos_7v98f_56", Au = "_videoContent_7v98f_63", wu = "_articleSection_7v98f_70", yu = "_contentLayoutVideoSection_7v98f_85", vu = "_sectionVideoList_7v98f_93", bu = "_iframeStyled_7v98f_166", Cu = "_contentFrame_7v98f_172", Re = {
|
|
7050
7050
|
content: fu,
|
|
7051
7051
|
header: gu,
|
|
7052
7052
|
videos: pu,
|
|
7053
7053
|
videoContent: Au,
|
|
7054
|
-
articleSection:
|
|
7055
|
-
contentLayoutVideoSection:
|
|
7054
|
+
articleSection: wu,
|
|
7055
|
+
contentLayoutVideoSection: yu,
|
|
7056
7056
|
sectionVideoList: vu,
|
|
7057
7057
|
iframeStyled: bu,
|
|
7058
7058
|
contentFrame: Cu
|
|
@@ -7492,7 +7492,7 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7492
7492
|
gnews: gh,
|
|
7493
7493
|
tiktok: ph,
|
|
7494
7494
|
whatsapp: Ah
|
|
7495
|
-
},
|
|
7495
|
+
}, wh = (e) => {
|
|
7496
7496
|
const { cintillo: t, tapeTitle: n, socials: r } = e, o = "", s = t?.findIndex((i) => i.link === o) ?? 0;
|
|
7497
7497
|
return (Array.isArray(t) || e.socialIcons) && /* @__PURE__ */ f("section", { className: ze.content, children: [
|
|
7498
7498
|
Array.isArray(t) && /* @__PURE__ */ f("div", { className: `${ze.tabs} header-page-tape-content`, children: [
|
|
@@ -7543,8 +7543,8 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7543
7543
|
i
|
|
7544
7544
|
)) })
|
|
7545
7545
|
] });
|
|
7546
|
-
},
|
|
7547
|
-
headerStyled:
|
|
7546
|
+
}, yh = "_headerStyled_6yw62_1", vh = "_headerContent_6yw62_14", bh = "_iconContent_6yw62_25", Ch = "_menuButton_6yw62_34", _h = "_logoStyled_6yw62_66", Nh = "_buttonSection_6yw62_94", Sh = "_buttonSectionSearch_6yw62_109", xh = "_headLineContent_6yw62_131", Eh = "_headLineTitle_6yw62_144", Th = "_headLine_6yw62_131", Ih = "_hasAlertZone_6yw62_197", ke = {
|
|
7547
|
+
headerStyled: yh,
|
|
7548
7548
|
headerContent: vh,
|
|
7549
7549
|
iconContent: bh,
|
|
7550
7550
|
menuButton: Ch,
|
|
@@ -7559,7 +7559,7 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7559
7559
|
const { alertZone: t } = e;
|
|
7560
7560
|
return /* @__PURE__ */ f("header", { className: ke.headerStyled, children: [
|
|
7561
7561
|
e.socialIcons && /* @__PURE__ */ a(
|
|
7562
|
-
|
|
7562
|
+
wh,
|
|
7563
7563
|
{
|
|
7564
7564
|
socialIcons: e.socialIcons,
|
|
7565
7565
|
cintillo: e.cintillo,
|
|
@@ -7686,7 +7686,7 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7686
7686
|
}
|
|
7687
7687
|
) }, s)) }) })
|
|
7688
7688
|
] }, r)) });
|
|
7689
|
-
}, Mh = "_headerStyled_1xeaj_1", jh = "_headerContent_1xeaj_23", Qh = "_menuButtonSection_1xeaj_33", Gh = "_menuButton_1xeaj_33", Hh = "_buttonSection_1xeaj_84", zh = "_buttonSectionSearch_1xeaj_101", Vh = "_hasAlertZone_1xeaj_112", Fh = "_buttonText_1xeaj_131", $h = "_logoContent_1xeaj_141", Wh = "_logoStyled_1xeaj_149", Yh = "_headLineContent_1xeaj_173", Kh = "_headLineTitle_1xeaj_188", Jh = "_menuSection_1xeaj_204", Zh = "_headLine_1xeaj_173", Xh = "_line_1xeaj_256",
|
|
7689
|
+
}, Mh = "_headerStyled_1xeaj_1", jh = "_headerContent_1xeaj_23", Qh = "_menuButtonSection_1xeaj_33", Gh = "_menuButton_1xeaj_33", Hh = "_buttonSection_1xeaj_84", zh = "_buttonSectionSearch_1xeaj_101", Vh = "_hasAlertZone_1xeaj_112", Fh = "_buttonText_1xeaj_131", $h = "_logoContent_1xeaj_141", Wh = "_logoStyled_1xeaj_149", Yh = "_headLineContent_1xeaj_173", Kh = "_headLineTitle_1xeaj_188", Jh = "_menuSection_1xeaj_204", Zh = "_headLine_1xeaj_173", Xh = "_line_1xeaj_256", ye = {
|
|
7690
7690
|
headerStyled: Mh,
|
|
7691
7691
|
headerContent: jh,
|
|
7692
7692
|
menuButtonSection: Qh,
|
|
@@ -7707,21 +7707,21 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7707
7707
|
return /* @__PURE__ */ a(
|
|
7708
7708
|
"header",
|
|
7709
7709
|
{
|
|
7710
|
-
className:
|
|
7710
|
+
className: ye.headerStyled,
|
|
7711
7711
|
style: { top: e.cintillo || e.socialIcons ? 40 : 0 },
|
|
7712
7712
|
children: /* @__PURE__ */ f(
|
|
7713
7713
|
"div",
|
|
7714
7714
|
{
|
|
7715
7715
|
style: e.showAlertPop ? { gap: 0 } : {},
|
|
7716
7716
|
className: [
|
|
7717
|
-
|
|
7718
|
-
n?.data ?
|
|
7717
|
+
ye.headerContent,
|
|
7718
|
+
n?.data ? ye.hasAlertZone : ""
|
|
7719
7719
|
].join(" "),
|
|
7720
7720
|
children: [
|
|
7721
|
-
/* @__PURE__ */ a("div", { className:
|
|
7721
|
+
/* @__PURE__ */ a("div", { className: ye.menuButtonSection, children: /* @__PURE__ */ f(
|
|
7722
7722
|
Ca,
|
|
7723
7723
|
{
|
|
7724
|
-
className:
|
|
7724
|
+
className: ye.menuButton,
|
|
7725
7725
|
id: "button-app",
|
|
7726
7726
|
toggledrawerevent: "true",
|
|
7727
7727
|
"aria-label": "menu",
|
|
@@ -7729,45 +7729,45 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7729
7729
|
title: "menu",
|
|
7730
7730
|
children: [
|
|
7731
7731
|
/* @__PURE__ */ a(No, { color: "var(--header-icons)", width: 27, height: 27 }),
|
|
7732
|
-
/* @__PURE__ */ a("p", { className:
|
|
7732
|
+
/* @__PURE__ */ a("p", { className: ye.buttonText, style: { lineHeight: 0 }, children: e.menuText })
|
|
7733
7733
|
]
|
|
7734
7734
|
}
|
|
7735
7735
|
) }),
|
|
7736
|
-
/* @__PURE__ */ a("div", { className:
|
|
7736
|
+
/* @__PURE__ */ a("div", { className: ye.logoContent, children: /* @__PURE__ */ a(B, { href: "/", "aria-label": "Home", className: "header-logo-link", children: Te.createElement(
|
|
7737
7737
|
"span",
|
|
7738
|
-
{ className: `${
|
|
7738
|
+
{ className: `${ye.logoStyled}` },
|
|
7739
7739
|
e.icon
|
|
7740
7740
|
) }) }),
|
|
7741
|
-
/* @__PURE__ */ f("div", { className:
|
|
7741
|
+
/* @__PURE__ */ f("div", { className: ye.buttonSection, children: [
|
|
7742
7742
|
/* @__PURE__ */ a(
|
|
7743
7743
|
B,
|
|
7744
7744
|
{
|
|
7745
7745
|
href: e.searchLink ? e.searchLink : "/buscar",
|
|
7746
7746
|
style: { display: "flex" },
|
|
7747
|
-
className:
|
|
7747
|
+
className: ye.buttonSectionSearch,
|
|
7748
7748
|
"aria-label": e.searchKeyWord,
|
|
7749
7749
|
children: /* @__PURE__ */ a(xa, { width: 28, height: 28, color: "currentColor" })
|
|
7750
7750
|
}
|
|
7751
7751
|
),
|
|
7752
7752
|
e.rightZone
|
|
7753
7753
|
] }),
|
|
7754
|
-
!e.showAlertPop && n?.data ? /* @__PURE__ */ f("div", { className:
|
|
7755
|
-
/* @__PURE__ */ a("p", { className: `${
|
|
7754
|
+
!e.showAlertPop && n?.data ? /* @__PURE__ */ f("div", { className: ye.headLineContent, children: [
|
|
7755
|
+
/* @__PURE__ */ a("p", { className: `${ye.headLineTitle} headLineTitle`, children: n.entity.description ? `${n.entity.description}` : "" }),
|
|
7756
7756
|
/* @__PURE__ */ a(
|
|
7757
7757
|
B,
|
|
7758
7758
|
{
|
|
7759
|
-
className:
|
|
7759
|
+
className: ye.headLine,
|
|
7760
7760
|
href: n.data[0]?.info.link.url,
|
|
7761
7761
|
target: n.data[0]?.info.link.target,
|
|
7762
7762
|
title: n.data[0]?.main.title.home,
|
|
7763
7763
|
children: je(n.data[0]?.main.title.home ?? "", 120)
|
|
7764
7764
|
}
|
|
7765
7765
|
)
|
|
7766
|
-
] }) : /* @__PURE__ */ a("div", { className:
|
|
7766
|
+
] }) : /* @__PURE__ */ a("div", { className: ye.line }),
|
|
7767
7767
|
/* @__PURE__ */ a(
|
|
7768
7768
|
"div",
|
|
7769
7769
|
{
|
|
7770
|
-
className:
|
|
7770
|
+
className: ye.menuSection,
|
|
7771
7771
|
style: e.showAlertPop ? { "--showAlertPop": "0px" } : {},
|
|
7772
7772
|
children: Array.isArray(t) && /* @__PURE__ */ a(Dh, { items: t })
|
|
7773
7773
|
}
|
|
@@ -7831,7 +7831,7 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7831
7831
|
}, lm = (e) => /* @__PURE__ */ a("section", { className: pt.content, children: Array.isArray(e.tags) && /* @__PURE__ */ f("div", { className: pt.tags, children: [
|
|
7832
7832
|
/* @__PURE__ */ a("p", { className: pt.tagStyled, children: e.title ? e.title : "Tags:" }),
|
|
7833
7833
|
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))
|
|
7834
|
-
] }) }), dm = "_contentBox_1rkkg_1", um = "_content_1rkkg_1", hm = "_imageStyled_1rkkg_16", mm = "_contentIconStyled_1rkkg_23", fm = "_avatarContent_1rkkg_43", gm = "_journalistSection_1rkkg_50", pm = "_journalistInfo_1rkkg_56", Am = "_socialNetworkSection_1rkkg_70",
|
|
7834
|
+
] }) }), dm = "_contentBox_1rkkg_1", um = "_content_1rkkg_1", hm = "_imageStyled_1rkkg_16", mm = "_contentIconStyled_1rkkg_23", fm = "_avatarContent_1rkkg_43", gm = "_journalistSection_1rkkg_50", pm = "_journalistInfo_1rkkg_56", Am = "_socialNetworkSection_1rkkg_70", wm = "_article_1rkkg_83", Oe = {
|
|
7835
7835
|
contentBox: dm,
|
|
7836
7836
|
content: um,
|
|
7837
7837
|
imageStyled: hm,
|
|
@@ -7840,8 +7840,8 @@ const Dd = "_content_r1co8_1", Md = "_videoContent_r1co8_20", jd = "_articleSect
|
|
|
7840
7840
|
journalistSection: gm,
|
|
7841
7841
|
journalistInfo: pm,
|
|
7842
7842
|
socialNetworkSection: Am,
|
|
7843
|
-
article:
|
|
7844
|
-
},
|
|
7843
|
+
article: wm
|
|
7844
|
+
}, ym = async (e) => {
|
|
7845
7845
|
const { autor: t } = e, n = t?.addtional?.USER_SHOWBIO ?? !1, r = t?.info?.name ?? "", o = t?.info?.fullname ?? "", s = t?.info?.image?.sizes?.[0]?.url ?? "", i = t?.addtional?.USER_MIBIO ?? "", c = t?.addtional?.USER_USERFB ?? "", d = t?.addtional?.USER_USERIG ?? "", l = t?.addtional?.USER_USERTWT ?? "", u = t?.addtional?.USER_USERLIN ?? "";
|
|
7846
7846
|
return n && /* @__PURE__ */ a("section", { className: Oe.contentBox, children: /* @__PURE__ */ f("div", { className: Oe.content, children: [
|
|
7847
7847
|
/* @__PURE__ */ f("div", { className: Oe.avatarContent, children: [
|
|
@@ -8583,22 +8583,22 @@ const c3 = (e) => {
|
|
|
8583
8583
|
}
|
|
8584
8584
|
)
|
|
8585
8585
|
] });
|
|
8586
|
-
}, Af = "_content_1nd2h_1",
|
|
8586
|
+
}, Af = "_content_1nd2h_1", wf = "_newsContent_1nd2h_8", yf = "_boxPosition_1nd2h_17", vf = "_bannerContent_1nd2h_23", bf = "_bannerContentAux_1nd2h_33", wt = {
|
|
8587
8587
|
content: Af,
|
|
8588
|
-
newsContent:
|
|
8589
|
-
boxPosition:
|
|
8588
|
+
newsContent: wf,
|
|
8589
|
+
boxPosition: yf,
|
|
8590
8590
|
bannerContent: vf,
|
|
8591
8591
|
bannerContentAux: bf
|
|
8592
8592
|
}, d3 = (e) => {
|
|
8593
8593
|
const { news: t } = e;
|
|
8594
|
-
return Array.isArray(t) && /* @__PURE__ */ f("div", { className:
|
|
8595
|
-
/* @__PURE__ */ f("div", { className:
|
|
8594
|
+
return Array.isArray(t) && /* @__PURE__ */ f("div", { className: wt.content, children: [
|
|
8595
|
+
/* @__PURE__ */ f("div", { className: wt.newsContent, children: [
|
|
8596
8596
|
e.bannerArray && e.bannerArray.map((n, r) => /* @__PURE__ */ a(
|
|
8597
8597
|
"div",
|
|
8598
8598
|
{
|
|
8599
|
-
className:
|
|
8599
|
+
className: wt.boxPosition + " banner-context",
|
|
8600
8600
|
style: { order: 2 + 5 * r },
|
|
8601
|
-
children: /* @__PURE__ */ a("div", { className:
|
|
8601
|
+
children: /* @__PURE__ */ a("div", { className: wt.bannerContentAux, children: /* @__PURE__ */ a(
|
|
8602
8602
|
"div",
|
|
8603
8603
|
{
|
|
8604
8604
|
style: {
|
|
@@ -8615,14 +8615,14 @@ const c3 = (e) => {
|
|
|
8615
8615
|
t.map((n, r) => /* @__PURE__ */ a(
|
|
8616
8616
|
"div",
|
|
8617
8617
|
{
|
|
8618
|
-
className:
|
|
8618
|
+
className: wt.boxPosition,
|
|
8619
8619
|
style: { order: r },
|
|
8620
8620
|
children: /* @__PURE__ */ a(Ze, { ...n, share: e.share, paths: e.paths })
|
|
8621
8621
|
},
|
|
8622
8622
|
r
|
|
8623
8623
|
))
|
|
8624
8624
|
] }),
|
|
8625
|
-
/* @__PURE__ */ a("div", { className:
|
|
8625
|
+
/* @__PURE__ */ a("div", { className: wt.bannerContent, children: e.halfPageBanner })
|
|
8626
8626
|
] });
|
|
8627
8627
|
}, u3 = (e) => /* @__PURE__ */ f(K, { children: [
|
|
8628
8628
|
/* @__PURE__ */ a(
|
|
@@ -9103,7 +9103,7 @@ const c3 = (e) => {
|
|
|
9103
9103
|
{
|
|
9104
9104
|
className: [Ye.newsContentSection, "padding-0"].join(" "),
|
|
9105
9105
|
paginatorComponent: /* @__PURE__ */ a(
|
|
9106
|
-
|
|
9106
|
+
yn,
|
|
9107
9107
|
{
|
|
9108
9108
|
texts: c,
|
|
9109
9109
|
pathname: i,
|
|
@@ -9166,7 +9166,7 @@ const c3 = (e) => {
|
|
|
9166
9166
|
{
|
|
9167
9167
|
className: "padding-0",
|
|
9168
9168
|
paginatorComponent: /* @__PURE__ */ a(
|
|
9169
|
-
|
|
9169
|
+
yn,
|
|
9170
9170
|
{
|
|
9171
9171
|
texts: c,
|
|
9172
9172
|
pathname: i,
|
|
@@ -9251,9 +9251,9 @@ const c3 = (e) => {
|
|
|
9251
9251
|
className: `content-layout-2 ${p2.content} ${t}`,
|
|
9252
9252
|
children: e
|
|
9253
9253
|
}
|
|
9254
|
-
),
|
|
9255
|
-
container:
|
|
9256
|
-
note:
|
|
9254
|
+
), w2 = "_container_8w9ca_1", y2 = "_note_8w9ca_9", v2 = "_commercial_8w9ca_49", b2 = "_commercialContent_8w9ca_66", C2 = "_complement_8w9ca_82", Lt = {
|
|
9255
|
+
container: w2,
|
|
9256
|
+
note: y2,
|
|
9257
9257
|
commercial: v2,
|
|
9258
9258
|
commercialContent: b2,
|
|
9259
9259
|
complement: C2
|
|
@@ -9348,7 +9348,6 @@ const c3 = (e) => {
|
|
|
9348
9348
|
"--news-description-title-line-height-desk": "46px",
|
|
9349
9349
|
"--news-description-title-line-height-mobile": "38px",
|
|
9350
9350
|
"--news-description-content-gap": "0px",
|
|
9351
|
-
"--news-description-subtitle-margin": "22px 0 0",
|
|
9352
9351
|
...e.headerSectionStyles?.common
|
|
9353
9352
|
},
|
|
9354
9353
|
children: /* @__PURE__ */ a(
|
|
@@ -9393,7 +9392,7 @@ const c3 = (e) => {
|
|
|
9393
9392
|
s = s.replace("ck-related-news", "ck-related-news-empty");
|
|
9394
9393
|
break;
|
|
9395
9394
|
}
|
|
9396
|
-
const u = l.preview?.sizes?.[0], m = u ? await me(u.url) : "", h = l.info.section?.url ?? "#", p = l.info.section?.name ?? "Sección", g = l.info.link?.url ?? "#", A = l.main?.title.article ?? "Título",
|
|
9395
|
+
const u = l.preview?.sizes?.[0], m = u ? await me(u.url) : "", h = l.info.section?.url ?? "#", p = l.info.section?.name ?? "Sección", g = l.info.link?.url ?? "#", A = l.main?.title.article ?? "Título", w = (await Promise.all(
|
|
9397
9396
|
l.preview?.sizes?.map(async (N) => {
|
|
9398
9397
|
const _ = await me(N.url);
|
|
9399
9398
|
return N.width < 200 ? `<source srcset="${_}" media="(width < 750px)"/>` : `<source srcset="${_}" media="(width >= 750px)"/>`;
|
|
@@ -9401,7 +9400,7 @@ const c3 = (e) => {
|
|
|
9401
9400
|
)).reduce((N, _) => N += _, ""), v = `
|
|
9402
9401
|
<span data-src="${d}">
|
|
9403
9402
|
<picture style='display: flex'>
|
|
9404
|
-
${
|
|
9403
|
+
${w}
|
|
9405
9404
|
<img fetchPriority='low' loading='lazy' src="${m}" alt="${t.noteRelatedImageAlt}" />
|
|
9406
9405
|
</picture>
|
|
9407
9406
|
<div>
|
|
@@ -9446,9 +9445,9 @@ async function Q2(e, t) {
|
|
|
9446
9445
|
if (h && h.data) {
|
|
9447
9446
|
const g = h.data.data[0];
|
|
9448
9447
|
let A = "";
|
|
9449
|
-
const
|
|
9448
|
+
const w = d.match(
|
|
9450
9449
|
/<span\b[^>]*class=["']video__title["'][^>]*>([\s\S]*?)<\/span>/i
|
|
9451
|
-
), v =
|
|
9450
|
+
), v = w && w[1] ? w[1].trim() : "";
|
|
9452
9451
|
g.info && g.info.type === "video-youtube" ? A = `<iframe
|
|
9453
9452
|
loading="lazy"
|
|
9454
9453
|
frameborder="0"
|
|
@@ -9851,24 +9850,24 @@ const n0 = (e) => /* @__PURE__ */ a(
|
|
|
9851
9850
|
const u = l[0], m = l[2] ?? "";
|
|
9852
9851
|
i.add(m);
|
|
9853
9852
|
const h = u.match(/<img\b[^>]*\balt=["']([^"']*)["']/), p = h ? h[1] : "imagen", g = m.match(/__scale=([^&"']+)/), A = g ? decodeURIComponent(g[1]) : null;
|
|
9854
|
-
let
|
|
9853
|
+
let w = 0, v = 0;
|
|
9855
9854
|
if (A) {
|
|
9856
9855
|
const x = A.match(/w:(\d+)/), P = A.match(/h:(\d+)/);
|
|
9857
|
-
|
|
9856
|
+
w = x ? parseInt(x[1]) : 0, v = P ? parseInt(P[1]) : 0;
|
|
9858
9857
|
}
|
|
9859
9858
|
const _ = {
|
|
9860
9859
|
preview: {
|
|
9861
9860
|
sizes: [
|
|
9862
9861
|
{
|
|
9863
|
-
scale: A || `w:${
|
|
9862
|
+
scale: A || `w:${w},h:${v},t:2`,
|
|
9864
9863
|
url: m,
|
|
9865
|
-
width:
|
|
9864
|
+
width: w,
|
|
9866
9865
|
height: v
|
|
9867
9866
|
}
|
|
9868
9867
|
],
|
|
9869
9868
|
original: {
|
|
9870
9869
|
url: m.split("?")[0],
|
|
9871
|
-
width:
|
|
9870
|
+
width: w,
|
|
9872
9871
|
height: v
|
|
9873
9872
|
},
|
|
9874
9873
|
copyright: !1,
|
|
@@ -9885,24 +9884,24 @@ const n0 = (e) => /* @__PURE__ */ a(
|
|
|
9885
9884
|
const u = l[0], m = l[1] ?? "";
|
|
9886
9885
|
if (i.has(m)) continue;
|
|
9887
9886
|
const h = u.match(/\balt=["']([^"']*)["']/), p = h ? h[1] : "imagen", g = m.match(/__scale=([^&"']+)/), A = g ? decodeURIComponent(g[1]) : null;
|
|
9888
|
-
let
|
|
9887
|
+
let w = 0, v = 0;
|
|
9889
9888
|
if (A) {
|
|
9890
9889
|
const x = A.match(/w:(\d+)/), P = A.match(/h:(\d+)/);
|
|
9891
|
-
|
|
9890
|
+
w = x ? parseInt(x[1]) : 0, v = P ? parseInt(P[1]) : 0;
|
|
9892
9891
|
}
|
|
9893
9892
|
const _ = {
|
|
9894
9893
|
preview: {
|
|
9895
9894
|
sizes: [
|
|
9896
9895
|
{
|
|
9897
|
-
scale: A || `w:${
|
|
9896
|
+
scale: A || `w:${w},h:${v},t:2`,
|
|
9898
9897
|
url: m,
|
|
9899
|
-
width:
|
|
9898
|
+
width: w,
|
|
9900
9899
|
height: v
|
|
9901
9900
|
}
|
|
9902
9901
|
],
|
|
9903
9902
|
original: {
|
|
9904
9903
|
url: m.split("?")[0],
|
|
9905
|
-
width:
|
|
9904
|
+
width: w,
|
|
9906
9905
|
height: v
|
|
9907
9906
|
},
|
|
9908
9907
|
copyright: !1,
|
|
@@ -9973,7 +9972,7 @@ const n0 = (e) => /* @__PURE__ */ a(
|
|
|
9973
9972
|
(N) => d.includes(N?.[0]?.info.link.internal || "")
|
|
9974
9973
|
);
|
|
9975
9974
|
if (!l || !l[0]) continue;
|
|
9976
|
-
const u = l[0].preview?.sizes?.[0], m = u ? await me(u.url) : "", h = 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",
|
|
9975
|
+
const u = l[0].preview?.sizes?.[0], m = u ? await me(u.url) : "", h = 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(
|
|
9977
9976
|
l[0].preview?.sizes?.map(async (N, _) => {
|
|
9978
9977
|
const E = await me(N.url);
|
|
9979
9978
|
return _ === 0 ? `<source srcset="${E}" media="(width >= 900px)"/>` : `<source srcset="${E}" media="(width < 900px)"/>`;
|
|
@@ -9981,7 +9980,7 @@ const n0 = (e) => /* @__PURE__ */ a(
|
|
|
9981
9980
|
)).reduce((N, _) => N += _, ""), v = `
|
|
9982
9981
|
<span data-src="${d}">
|
|
9983
9982
|
<picture style='display: flex'>
|
|
9984
|
-
${
|
|
9983
|
+
${w}
|
|
9985
9984
|
<img fetchPriority='low' loading='lazy' src="${m}" alt="${t.noteRelatedImageAlt}" />
|
|
9986
9985
|
</picture>
|
|
9987
9986
|
<div>
|
|
@@ -10035,7 +10034,7 @@ async function c0(e, t) {
|
|
|
10035
10034
|
N && (p = N[1] ?? "");
|
|
10036
10035
|
}
|
|
10037
10036
|
}
|
|
10038
|
-
let
|
|
10037
|
+
let w = "";
|
|
10039
10038
|
if (p)
|
|
10040
10039
|
try {
|
|
10041
10040
|
const v = await t.iframe({ path: p }), N = t.schema ? await t.schema(p) : null;
|
|
@@ -10061,7 +10060,7 @@ async function c0(e, t) {
|
|
|
10061
10060
|
style="position: relative!important;"
|
|
10062
10061
|
src="${_.main?.code || ""}"></iframe>` : E = _.main?.code || "";
|
|
10063
10062
|
const P = x || _.main?.description || "";
|
|
10064
|
-
|
|
10063
|
+
w = `
|
|
10065
10064
|
<figure class="videoFigure">
|
|
10066
10065
|
${N && N.data && N.data.data ? `<script type="application/ld+json">${Io(
|
|
10067
10066
|
JSON.stringify(N.data.data)
|
|
@@ -10072,11 +10071,11 @@ async function c0(e, t) {
|
|
|
10072
10071
|
`;
|
|
10073
10072
|
}
|
|
10074
10073
|
} catch (v) {
|
|
10075
|
-
console.error("insertVideos error for", p, v),
|
|
10074
|
+
console.error("insertVideos error for", p, v), w = "";
|
|
10076
10075
|
}
|
|
10077
10076
|
else
|
|
10078
|
-
|
|
10079
|
-
r = m, n +=
|
|
10077
|
+
w = h;
|
|
10078
|
+
r = m, n += w, o.lastIndex = m;
|
|
10080
10079
|
}
|
|
10081
10080
|
return n += e.slice(r), n;
|
|
10082
10081
|
}
|
|
@@ -10211,7 +10210,7 @@ const d0 = "_content_cu8lm_1", u0 = "_title_cu8lm_18", pr = {
|
|
|
10211
10210
|
}
|
|
10212
10211
|
}, p0 = "_content_ezbiw_1", A0 = {
|
|
10213
10212
|
content: p0
|
|
10214
|
-
},
|
|
10213
|
+
}, w0 = async ({
|
|
10215
10214
|
newsformated: e,
|
|
10216
10215
|
internal: t,
|
|
10217
10216
|
commonServices: n
|
|
@@ -10234,8 +10233,8 @@ const d0 = "_content_cu8lm_1", u0 = "_title_cu8lm_18", pr = {
|
|
|
10234
10233
|
} catch {
|
|
10235
10234
|
return null;
|
|
10236
10235
|
}
|
|
10237
|
-
},
|
|
10238
|
-
content:
|
|
10236
|
+
}, y0 = "_content_156j7_1", Ar = {
|
|
10237
|
+
content: y0
|
|
10239
10238
|
}, ot = {
|
|
10240
10239
|
imagen: "imagen",
|
|
10241
10240
|
videoEmbedded: "videoEmbedded",
|
|
@@ -10244,7 +10243,7 @@ const d0 = "_content_cu8lm_1", u0 = "_title_cu8lm_18", pr = {
|
|
|
10244
10243
|
}, v0 = {
|
|
10245
10244
|
[ot.videoEmbedded]: h0,
|
|
10246
10245
|
[ot.videoYouTube]: g0,
|
|
10247
|
-
[ot.iframe]:
|
|
10246
|
+
[ot.iframe]: w0
|
|
10248
10247
|
}, b0 = ({ news: e, commonServices: t }) => {
|
|
10249
10248
|
const { config: n, hascontent: r, info: o } = e, s = n.articlepreview, i = o.link.internal, c = r?.hasgalleryimages;
|
|
10250
10249
|
if (s === ot.imagen && c)
|
|
@@ -10386,7 +10385,7 @@ const d0 = "_content_cu8lm_1", u0 = "_title_cu8lm_18", pr = {
|
|
|
10386
10385
|
}) })
|
|
10387
10386
|
] })
|
|
10388
10387
|
] });
|
|
10389
|
-
},
|
|
10388
|
+
}, wr = {
|
|
10390
10389
|
banner: (e) => /* @__PURE__ */ a(pe, { ...e, name: e.slot_id.replace("Home", "block") }),
|
|
10391
10390
|
readest: (e) => /* @__PURE__ */ a(ba, { ...e }),
|
|
10392
10391
|
"Modulo 1x3": (e) => /* @__PURE__ */ a(Eo, { ...e }),
|
|
@@ -10409,7 +10408,7 @@ function ko({
|
|
|
10409
10408
|
banners: r
|
|
10410
10409
|
}) {
|
|
10411
10410
|
if (r)
|
|
10412
|
-
return
|
|
10411
|
+
return wr[e] && /* @__PURE__ */ a("div", { className: "home-slot", style: Ea(n), children: wr[e]({ ...n, banners: r, slot_id: t }) });
|
|
10413
10412
|
}
|
|
10414
10413
|
function f3({
|
|
10415
10414
|
children: e,
|
|
@@ -10417,7 +10416,7 @@ function f3({
|
|
|
10417
10416
|
}) {
|
|
10418
10417
|
return /* @__PURE__ */ a("div", { className: "home-slot", style: Ea(t), children: e });
|
|
10419
10418
|
}
|
|
10420
|
-
const
|
|
10419
|
+
const yr = {
|
|
10421
10420
|
Diario: (e) => {
|
|
10422
10421
|
if (!e?.data || e.data.length === 0) return;
|
|
10423
10422
|
const t = e.data.slice(1);
|
|
@@ -10479,7 +10478,7 @@ const wr = {
|
|
|
10479
10478
|
data: t,
|
|
10480
10479
|
banners: n,
|
|
10481
10480
|
rightOnlyBanner: r
|
|
10482
|
-
}) => /* @__PURE__ */ a("div", { style: Ea(t), children:
|
|
10481
|
+
}) => /* @__PURE__ */ a("div", { style: Ea(t), children: yr[e] && yr[e]({
|
|
10483
10482
|
...t,
|
|
10484
10483
|
rightOnlyBanner: r,
|
|
10485
10484
|
banners: n
|
|
@@ -10498,7 +10497,7 @@ const wr = {
|
|
|
10498
10497
|
const p = "Home_" + m + "_" + h;
|
|
10499
10498
|
!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(
|
|
10500
10499
|
/* @__PURE__ */ f(
|
|
10501
|
-
|
|
10500
|
+
yc,
|
|
10502
10501
|
{
|
|
10503
10502
|
show: !!e[p].content?.data,
|
|
10504
10503
|
order: (m - 1) * l + (h - 1),
|
|
@@ -10627,7 +10626,7 @@ const wr = {
|
|
|
10627
10626
|
banner: /* @__PURE__ */ a(pe, { banners: r ?? [], name: "right_2" }),
|
|
10628
10627
|
complement: /* @__PURE__ */ f("div", { id: "comentarios", suppressHydrationWarning: !0, children: [
|
|
10629
10628
|
o.length > 0 && /* @__PURE__ */ a(
|
|
10630
|
-
|
|
10629
|
+
ym,
|
|
10631
10630
|
{
|
|
10632
10631
|
texts: e.texts,
|
|
10633
10632
|
autorIcon: e.autorIcon,
|
|
@@ -10747,7 +10746,7 @@ const wr = {
|
|
|
10747
10746
|
}
|
|
10748
10747
|
)
|
|
10749
10748
|
] }) });
|
|
10750
|
-
}, L0 = "_content_1tl6i_1", B0 = "_contentInfo_1tl6i_24", P0 = "_imageStyled_1tl6i_41", O0 = "_name_1tl6i_46", D0 = "_description_1tl6i_51", M0 = "_contentInfoWithoutImg_1tl6i_104",
|
|
10749
|
+
}, L0 = "_content_1tl6i_1", B0 = "_contentInfo_1tl6i_24", P0 = "_imageStyled_1tl6i_41", O0 = "_name_1tl6i_46", D0 = "_description_1tl6i_51", M0 = "_contentInfoWithoutImg_1tl6i_104", yt = {
|
|
10751
10750
|
content: L0,
|
|
10752
10751
|
contentInfo: B0,
|
|
10753
10752
|
imageStyled: P0,
|
|
@@ -10756,25 +10755,25 @@ const wr = {
|
|
|
10756
10755
|
contentInfoWithoutImg: M0
|
|
10757
10756
|
}, j0 = async (e) => {
|
|
10758
10757
|
const t = e.img ? await me(e.img) : "";
|
|
10759
|
-
return /* @__PURE__ */ a("section", { className:
|
|
10758
|
+
return /* @__PURE__ */ a("section", { className: yt.content, children: /* @__PURE__ */ f(
|
|
10760
10759
|
"div",
|
|
10761
10760
|
{
|
|
10762
|
-
className: `${
|
|
10761
|
+
className: `${yt.contentInfo} ${t ? "" : yt.contentInfoWithoutImg}`,
|
|
10763
10762
|
children: [
|
|
10764
10763
|
e.img && /* @__PURE__ */ a(
|
|
10765
10764
|
"img",
|
|
10766
10765
|
{
|
|
10767
10766
|
fetchPriority: "low",
|
|
10768
10767
|
loading: "lazy",
|
|
10769
|
-
className:
|
|
10768
|
+
className: yt.imageStyled,
|
|
10770
10769
|
src: t
|
|
10771
10770
|
}
|
|
10772
10771
|
),
|
|
10773
|
-
/* @__PURE__ */ a("h1", { className:
|
|
10772
|
+
/* @__PURE__ */ a("h1", { className: yt.name, children: e.tag }),
|
|
10774
10773
|
e.description && /* @__PURE__ */ a(
|
|
10775
10774
|
"div",
|
|
10776
10775
|
{
|
|
10777
|
-
className:
|
|
10776
|
+
className: yt.description,
|
|
10778
10777
|
dangerouslySetInnerHTML: {
|
|
10779
10778
|
__html: e.description
|
|
10780
10779
|
}
|
|
@@ -10823,7 +10822,7 @@ const wr = {
|
|
|
10823
10822
|
)
|
|
10824
10823
|
] })
|
|
10825
10824
|
}
|
|
10826
|
-
),
|
|
10825
|
+
), w3 = (e) => {
|
|
10827
10826
|
const { option: t, entity: n } = e;
|
|
10828
10827
|
switch (t) {
|
|
10829
10828
|
case "op1":
|
|
@@ -10875,7 +10874,7 @@ const wr = {
|
|
|
10875
10874
|
}
|
|
10876
10875
|
) })
|
|
10877
10876
|
}
|
|
10878
|
-
),
|
|
10877
|
+
), y3 = (e) => /* @__PURE__ */ a(
|
|
10879
10878
|
"form",
|
|
10880
10879
|
{
|
|
10881
10880
|
className: Bt.content,
|
|
@@ -10935,7 +10934,7 @@ const wr = {
|
|
|
10935
10934
|
" "
|
|
10936
10935
|
),
|
|
10937
10936
|
paginatorComponent: /* @__PURE__ */ a(
|
|
10938
|
-
|
|
10937
|
+
yn,
|
|
10939
10938
|
{
|
|
10940
10939
|
texts: u,
|
|
10941
10940
|
pathname: i,
|
|
@@ -11016,7 +11015,7 @@ const wr = {
|
|
|
11016
11015
|
}
|
|
11017
11016
|
),
|
|
11018
11017
|
/* @__PURE__ */ a(
|
|
11019
|
-
|
|
11018
|
+
yn,
|
|
11020
11019
|
{
|
|
11021
11020
|
texts: u,
|
|
11022
11021
|
query: "",
|
|
@@ -11116,11 +11115,11 @@ const wr = {
|
|
|
11116
11115
|
`video-small-${r}`
|
|
11117
11116
|
)) })
|
|
11118
11117
|
] }) }) }) });
|
|
11119
|
-
}, pg = "_content_ruy5q_1", Ag = "_videoContent_ruy5q_9",
|
|
11118
|
+
}, pg = "_content_ruy5q_1", Ag = "_videoContent_ruy5q_9", wg = "_articleSection_ruy5q_21", yg = "_contentLatout_ruy5q_31", vg = "_title_ruy5q_36", bg = "_article_ruy5q_21", Cg = "_correspondent_ruy5q_64", lt = {
|
|
11120
11119
|
content: pg,
|
|
11121
11120
|
videoContent: Ag,
|
|
11122
|
-
articleSection:
|
|
11123
|
-
contentLatout:
|
|
11121
|
+
articleSection: wg,
|
|
11122
|
+
contentLatout: yg,
|
|
11124
11123
|
title: vg,
|
|
11125
11124
|
article: bg,
|
|
11126
11125
|
correspondent: Cg
|
|
@@ -11716,7 +11715,7 @@ var Nr;
|
|
|
11716
11715
|
function tp() {
|
|
11717
11716
|
if (Nr) return ne;
|
|
11718
11717
|
Nr = 1;
|
|
11719
|
-
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, m = e ? Symbol.for("react.suspense") : 60113, h = 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,
|
|
11718
|
+
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, m = e ? Symbol.for("react.suspense") : 60113, h = 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, v = e ? Symbol.for("react.responder") : 60118, N = e ? Symbol.for("react.scope") : 60119;
|
|
11720
11719
|
function _(b) {
|
|
11721
11720
|
if (typeof b == "object" && b !== null) {
|
|
11722
11721
|
var x = b.$$typeof;
|
|
@@ -11775,17 +11774,17 @@ function tp() {
|
|
|
11775
11774
|
}, ne.isSuspense = function(b) {
|
|
11776
11775
|
return _(b) === m;
|
|
11777
11776
|
}, ne.isValidElementType = function(b) {
|
|
11778
|
-
return typeof b == "string" || typeof b == "function" || b === r || b === l || b === s || b === o || b === m || b === h || typeof b == "object" && b !== null && (b.$$typeof === g || b.$$typeof === p || b.$$typeof === i || b.$$typeof === c || b.$$typeof === u || b.$$typeof ===
|
|
11777
|
+
return typeof b == "string" || typeof b == "function" || b === r || b === l || b === s || b === o || b === m || b === h || typeof b == "object" && b !== null && (b.$$typeof === g || b.$$typeof === p || b.$$typeof === i || b.$$typeof === c || b.$$typeof === u || b.$$typeof === w || b.$$typeof === v || b.$$typeof === N || b.$$typeof === A);
|
|
11779
11778
|
}, ne.typeOf = _, ne;
|
|
11780
11779
|
}
|
|
11781
11780
|
var ae = {};
|
|
11782
11781
|
var Sr;
|
|
11783
11782
|
function np() {
|
|
11784
11783
|
return Sr || (Sr = 1, process.env.NODE_ENV !== "production" && (function() {
|
|
11785
|
-
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, m = e ? Symbol.for("react.suspense") : 60113, h = 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,
|
|
11784
|
+
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, m = e ? Symbol.for("react.suspense") : 60113, h = 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, v = e ? Symbol.for("react.responder") : 60118, N = e ? Symbol.for("react.scope") : 60119;
|
|
11786
11785
|
function _(R) {
|
|
11787
11786
|
return typeof R == "string" || typeof R == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
11788
|
-
R === r || R === l || R === s || R === o || R === m || R === h || typeof R == "object" && R !== null && (R.$$typeof === g || R.$$typeof === p || R.$$typeof === i || R.$$typeof === c || R.$$typeof === u || R.$$typeof ===
|
|
11787
|
+
R === r || R === l || R === s || R === o || R === m || R === h || typeof R == "object" && R !== null && (R.$$typeof === g || R.$$typeof === p || R.$$typeof === i || R.$$typeof === c || R.$$typeof === u || R.$$typeof === w || R.$$typeof === v || R.$$typeof === N || R.$$typeof === A);
|
|
11789
11788
|
}
|
|
11790
11789
|
function E(R) {
|
|
11791
11790
|
if (typeof R == "object" && R !== null) {
|
|
@@ -11821,9 +11820,9 @@ function np() {
|
|
|
11821
11820
|
}
|
|
11822
11821
|
var b = d, x = l, P = c, Q = i, te = t, G = u, O = r, ee = g, ce = p, M = n, U = s, T = o, D = m, I = !1;
|
|
11823
11822
|
function z(R) {
|
|
11824
|
-
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.")),
|
|
11823
|
+
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(R) || E(R) === d;
|
|
11825
11824
|
}
|
|
11826
|
-
function
|
|
11825
|
+
function y(R) {
|
|
11827
11826
|
return E(R) === l;
|
|
11828
11827
|
}
|
|
11829
11828
|
function S(R) {
|
|
@@ -11859,7 +11858,7 @@ function np() {
|
|
|
11859
11858
|
function ie(R) {
|
|
11860
11859
|
return E(R) === m;
|
|
11861
11860
|
}
|
|
11862
|
-
ae.AsyncMode = b, ae.ConcurrentMode = x, ae.ContextConsumer = P, ae.ContextProvider = Q, ae.Element = te, ae.ForwardRef = G, ae.Fragment = O, ae.Lazy = ee, ae.Memo = ce, ae.Portal = M, ae.Profiler = U, ae.StrictMode = T, ae.Suspense = D, ae.isAsyncMode = z, ae.isConcurrentMode =
|
|
11861
|
+
ae.AsyncMode = b, ae.ConcurrentMode = x, ae.ContextConsumer = P, ae.ContextProvider = Q, ae.Element = te, ae.ForwardRef = G, ae.Fragment = O, ae.Lazy = ee, ae.Memo = ce, ae.Portal = M, ae.Profiler = U, ae.StrictMode = T, ae.Suspense = D, ae.isAsyncMode = z, ae.isConcurrentMode = y, ae.isContextConsumer = S, ae.isContextProvider = q, ae.isElement = j, ae.isForwardRef = L, ae.isFragment = H, ae.isLazy = V, ae.isMemo = F, ae.isPortal = Z, ae.isProfiler = X, ae.isStrictMode = $, ae.isSuspense = ie, ae.isValidElementType = _, ae.typeOf = E;
|
|
11863
11862
|
})()), ae;
|
|
11864
11863
|
}
|
|
11865
11864
|
var xr;
|
|
@@ -11991,8 +11990,8 @@ function op() {
|
|
|
11991
11990
|
}
|
|
11992
11991
|
return Kn = function(c, d) {
|
|
11993
11992
|
var l = typeof Symbol == "function" && Symbol.iterator, u = "@@iterator";
|
|
11994
|
-
function m(
|
|
11995
|
-
var S =
|
|
11993
|
+
function m(y) {
|
|
11994
|
+
var S = y && (l && y[l] || y[u]);
|
|
11996
11995
|
if (typeof S == "function")
|
|
11997
11996
|
return S;
|
|
11998
11997
|
}
|
|
@@ -12017,14 +12016,14 @@ function op() {
|
|
|
12017
12016
|
shape: ee,
|
|
12018
12017
|
exact: ce
|
|
12019
12018
|
};
|
|
12020
|
-
function g(
|
|
12021
|
-
return
|
|
12019
|
+
function g(y, S) {
|
|
12020
|
+
return y === S ? y !== 0 || 1 / y === 1 / S : y !== y && S !== S;
|
|
12022
12021
|
}
|
|
12023
|
-
function A(
|
|
12024
|
-
this.message =
|
|
12022
|
+
function A(y, S) {
|
|
12023
|
+
this.message = y, this.data = S && typeof S == "object" ? S : {}, this.stack = "";
|
|
12025
12024
|
}
|
|
12026
12025
|
A.prototype = Error.prototype;
|
|
12027
|
-
function y
|
|
12026
|
+
function w(y) {
|
|
12028
12027
|
if (process.env.NODE_ENV !== "production")
|
|
12029
12028
|
var S = {}, q = 0;
|
|
12030
12029
|
function j(H, V, F, Z, X, $, ie) {
|
|
@@ -12042,31 +12041,31 @@ function op() {
|
|
|
12042
12041
|
), S[Ae] = !0, q++);
|
|
12043
12042
|
}
|
|
12044
12043
|
}
|
|
12045
|
-
return V[F] == null ? H ? V[F] === null ? new A("The " + X + " `" + $ + "` is marked as required " + ("in `" + Z + "`, but its value is `null`.")) : new A("The " + X + " `" + $ + "` is marked as required in " + ("`" + Z + "`, but its value is `undefined`.")) : null :
|
|
12044
|
+
return V[F] == null ? H ? V[F] === null ? new A("The " + X + " `" + $ + "` is marked as required " + ("in `" + Z + "`, but its value is `null`.")) : new A("The " + X + " `" + $ + "` is marked as required in " + ("`" + Z + "`, but its value is `undefined`.")) : null : y(V, F, Z, X, $);
|
|
12046
12045
|
}
|
|
12047
12046
|
var L = j.bind(null, !1);
|
|
12048
12047
|
return L.isRequired = j.bind(null, !0), L;
|
|
12049
12048
|
}
|
|
12050
|
-
function v(
|
|
12049
|
+
function v(y) {
|
|
12051
12050
|
function S(q, j, L, H, V, F) {
|
|
12052
12051
|
var Z = q[j], X = T(Z);
|
|
12053
|
-
if (X !==
|
|
12052
|
+
if (X !== y) {
|
|
12054
12053
|
var $ = D(Z);
|
|
12055
12054
|
return new A(
|
|
12056
|
-
"Invalid " + H + " `" + V + "` of type " + ("`" + $ + "` supplied to `" + L + "`, expected ") + ("`" +
|
|
12057
|
-
{ expectedType:
|
|
12055
|
+
"Invalid " + H + " `" + V + "` of type " + ("`" + $ + "` supplied to `" + L + "`, expected ") + ("`" + y + "`."),
|
|
12056
|
+
{ expectedType: y }
|
|
12058
12057
|
);
|
|
12059
12058
|
}
|
|
12060
12059
|
return null;
|
|
12061
12060
|
}
|
|
12062
|
-
return
|
|
12061
|
+
return w(S);
|
|
12063
12062
|
}
|
|
12064
12063
|
function N() {
|
|
12065
|
-
return
|
|
12064
|
+
return w(i);
|
|
12066
12065
|
}
|
|
12067
|
-
function _(
|
|
12066
|
+
function _(y) {
|
|
12068
12067
|
function S(q, j, L, H, V) {
|
|
12069
|
-
if (typeof
|
|
12068
|
+
if (typeof y != "function")
|
|
12070
12069
|
return new A("Property `" + V + "` of component `" + L + "` has invalid PropType notation inside arrayOf.");
|
|
12071
12070
|
var F = q[j];
|
|
12072
12071
|
if (!Array.isArray(F)) {
|
|
@@ -12074,16 +12073,16 @@ function op() {
|
|
|
12074
12073
|
return new A("Invalid " + H + " `" + V + "` of type " + ("`" + Z + "` supplied to `" + L + "`, expected an array."));
|
|
12075
12074
|
}
|
|
12076
12075
|
for (var X = 0; X < F.length; X++) {
|
|
12077
|
-
var $ =
|
|
12076
|
+
var $ = y(F, X, L, H, V + "[" + X + "]", n);
|
|
12078
12077
|
if ($ instanceof Error)
|
|
12079
12078
|
return $;
|
|
12080
12079
|
}
|
|
12081
12080
|
return null;
|
|
12082
12081
|
}
|
|
12083
|
-
return
|
|
12082
|
+
return w(S);
|
|
12084
12083
|
}
|
|
12085
12084
|
function E() {
|
|
12086
|
-
function
|
|
12085
|
+
function y(S, q, j, L, H) {
|
|
12087
12086
|
var V = S[q];
|
|
12088
12087
|
if (!c(V)) {
|
|
12089
12088
|
var F = T(V);
|
|
@@ -12091,10 +12090,10 @@ function op() {
|
|
|
12091
12090
|
}
|
|
12092
12091
|
return null;
|
|
12093
12092
|
}
|
|
12094
|
-
return y
|
|
12093
|
+
return w(y);
|
|
12095
12094
|
}
|
|
12096
12095
|
function b() {
|
|
12097
|
-
function
|
|
12096
|
+
function y(S, q, j, L, H) {
|
|
12098
12097
|
var V = S[q];
|
|
12099
12098
|
if (!e.isValidElementType(V)) {
|
|
12100
12099
|
var F = T(V);
|
|
@@ -12102,65 +12101,65 @@ function op() {
|
|
|
12102
12101
|
}
|
|
12103
12102
|
return null;
|
|
12104
12103
|
}
|
|
12105
|
-
return y
|
|
12104
|
+
return w(y);
|
|
12106
12105
|
}
|
|
12107
|
-
function x(
|
|
12106
|
+
function x(y) {
|
|
12108
12107
|
function S(q, j, L, H, V) {
|
|
12109
|
-
if (!(q[j] instanceof
|
|
12110
|
-
var F =
|
|
12108
|
+
if (!(q[j] instanceof y)) {
|
|
12109
|
+
var F = y.name || h, Z = z(q[j]);
|
|
12111
12110
|
return new A("Invalid " + H + " `" + V + "` of type " + ("`" + Z + "` supplied to `" + L + "`, expected ") + ("instance of `" + F + "`."));
|
|
12112
12111
|
}
|
|
12113
12112
|
return null;
|
|
12114
12113
|
}
|
|
12115
|
-
return
|
|
12114
|
+
return w(S);
|
|
12116
12115
|
}
|
|
12117
|
-
function P(
|
|
12118
|
-
if (!Array.isArray(
|
|
12116
|
+
function P(y) {
|
|
12117
|
+
if (!Array.isArray(y))
|
|
12119
12118
|
return process.env.NODE_ENV !== "production" && (arguments.length > 1 ? s(
|
|
12120
12119
|
"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])."
|
|
12121
12120
|
) : s("Invalid argument supplied to oneOf, expected an array.")), i;
|
|
12122
12121
|
function S(q, j, L, H, V) {
|
|
12123
|
-
for (var F = q[j], Z = 0; Z <
|
|
12124
|
-
if (g(F,
|
|
12122
|
+
for (var F = q[j], Z = 0; Z < y.length; Z++)
|
|
12123
|
+
if (g(F, y[Z]))
|
|
12125
12124
|
return null;
|
|
12126
|
-
var X = JSON.stringify(
|
|
12125
|
+
var X = JSON.stringify(y, function(ie, R) {
|
|
12127
12126
|
var Ae = D(R);
|
|
12128
12127
|
return Ae === "symbol" ? String(R) : R;
|
|
12129
12128
|
});
|
|
12130
12129
|
return new A("Invalid " + H + " `" + V + "` of value `" + String(F) + "` " + ("supplied to `" + L + "`, expected one of " + X + "."));
|
|
12131
12130
|
}
|
|
12132
|
-
return
|
|
12131
|
+
return w(S);
|
|
12133
12132
|
}
|
|
12134
|
-
function Q(
|
|
12133
|
+
function Q(y) {
|
|
12135
12134
|
function S(q, j, L, H, V) {
|
|
12136
|
-
if (typeof
|
|
12135
|
+
if (typeof y != "function")
|
|
12137
12136
|
return new A("Property `" + V + "` of component `" + L + "` has invalid PropType notation inside objectOf.");
|
|
12138
12137
|
var F = q[j], Z = T(F);
|
|
12139
12138
|
if (Z !== "object")
|
|
12140
12139
|
return new A("Invalid " + H + " `" + V + "` of type " + ("`" + Z + "` supplied to `" + L + "`, expected an object."));
|
|
12141
12140
|
for (var X in F)
|
|
12142
12141
|
if (r(F, X)) {
|
|
12143
|
-
var $ =
|
|
12142
|
+
var $ = y(F, X, L, H, V + "." + X, n);
|
|
12144
12143
|
if ($ instanceof Error)
|
|
12145
12144
|
return $;
|
|
12146
12145
|
}
|
|
12147
12146
|
return null;
|
|
12148
12147
|
}
|
|
12149
|
-
return
|
|
12148
|
+
return w(S);
|
|
12150
12149
|
}
|
|
12151
|
-
function te(
|
|
12152
|
-
if (!Array.isArray(
|
|
12150
|
+
function te(y) {
|
|
12151
|
+
if (!Array.isArray(y))
|
|
12153
12152
|
return process.env.NODE_ENV !== "production" && s("Invalid argument supplied to oneOfType, expected an instance of array."), i;
|
|
12154
|
-
for (var S = 0; S <
|
|
12155
|
-
var q =
|
|
12153
|
+
for (var S = 0; S < y.length; S++) {
|
|
12154
|
+
var q = y[S];
|
|
12156
12155
|
if (typeof q != "function")
|
|
12157
12156
|
return s(
|
|
12158
12157
|
"Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + I(q) + " at index " + S + "."
|
|
12159
12158
|
), i;
|
|
12160
12159
|
}
|
|
12161
12160
|
function j(L, H, V, F, Z) {
|
|
12162
|
-
for (var X = [], $ = 0; $ <
|
|
12163
|
-
var ie =
|
|
12161
|
+
for (var X = [], $ = 0; $ < y.length; $++) {
|
|
12162
|
+
var ie = y[$], R = ie(L, H, V, F, Z, n);
|
|
12164
12163
|
if (R == null)
|
|
12165
12164
|
return null;
|
|
12166
12165
|
R.data && r(R.data, "expectedType") && X.push(R.data.expectedType);
|
|
@@ -12168,26 +12167,26 @@ function op() {
|
|
|
12168
12167
|
var Ae = X.length > 0 ? ", expected one of type [" + X.join(", ") + "]" : "";
|
|
12169
12168
|
return new A("Invalid " + F + " `" + Z + "` supplied to " + ("`" + V + "`" + Ae + "."));
|
|
12170
12169
|
}
|
|
12171
|
-
return
|
|
12170
|
+
return w(j);
|
|
12172
12171
|
}
|
|
12173
12172
|
function G() {
|
|
12174
|
-
function
|
|
12173
|
+
function y(S, q, j, L, H) {
|
|
12175
12174
|
return M(S[q]) ? null : new A("Invalid " + L + " `" + H + "` supplied to " + ("`" + j + "`, expected a ReactNode."));
|
|
12176
12175
|
}
|
|
12177
|
-
return y
|
|
12176
|
+
return w(y);
|
|
12178
12177
|
}
|
|
12179
|
-
function O(
|
|
12178
|
+
function O(y, S, q, j, L) {
|
|
12180
12179
|
return new A(
|
|
12181
|
-
(
|
|
12180
|
+
(y || "React class") + ": " + S + " type `" + q + "." + j + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + L + "`."
|
|
12182
12181
|
);
|
|
12183
12182
|
}
|
|
12184
|
-
function ee(
|
|
12183
|
+
function ee(y) {
|
|
12185
12184
|
function S(q, j, L, H, V) {
|
|
12186
12185
|
var F = q[j], Z = T(F);
|
|
12187
12186
|
if (Z !== "object")
|
|
12188
12187
|
return new A("Invalid " + H + " `" + V + "` of type `" + Z + "` " + ("supplied to `" + L + "`, expected `object`."));
|
|
12189
|
-
for (var X in
|
|
12190
|
-
var $ =
|
|
12188
|
+
for (var X in y) {
|
|
12189
|
+
var $ = y[X];
|
|
12191
12190
|
if (typeof $ != "function")
|
|
12192
12191
|
return O(L, H, V, X, D($));
|
|
12193
12192
|
var ie = $(F, X, L, H, V + "." + X, n);
|
|
@@ -12196,22 +12195,22 @@ function op() {
|
|
|
12196
12195
|
}
|
|
12197
12196
|
return null;
|
|
12198
12197
|
}
|
|
12199
|
-
return
|
|
12198
|
+
return w(S);
|
|
12200
12199
|
}
|
|
12201
|
-
function ce(
|
|
12200
|
+
function ce(y) {
|
|
12202
12201
|
function S(q, j, L, H, V) {
|
|
12203
12202
|
var F = q[j], Z = T(F);
|
|
12204
12203
|
if (Z !== "object")
|
|
12205
12204
|
return new A("Invalid " + H + " `" + V + "` of type `" + Z + "` " + ("supplied to `" + L + "`, expected `object`."));
|
|
12206
|
-
var X = t({}, q[j],
|
|
12205
|
+
var X = t({}, q[j], y);
|
|
12207
12206
|
for (var $ in X) {
|
|
12208
|
-
var ie =
|
|
12209
|
-
if (r(
|
|
12207
|
+
var ie = y[$];
|
|
12208
|
+
if (r(y, $) && typeof ie != "function")
|
|
12210
12209
|
return O(L, H, V, $, D(ie));
|
|
12211
12210
|
if (!ie)
|
|
12212
12211
|
return new A(
|
|
12213
12212
|
"Invalid " + H + " `" + V + "` key `" + $ + "` supplied to `" + L + "`.\nBad object: " + JSON.stringify(q[j], null, " ") + `
|
|
12214
|
-
Valid keys: ` + JSON.stringify(Object.keys(
|
|
12213
|
+
Valid keys: ` + JSON.stringify(Object.keys(y), null, " ")
|
|
12215
12214
|
);
|
|
12216
12215
|
var R = ie(F, $, L, H, V + "." + $, n);
|
|
12217
12216
|
if (R)
|
|
@@ -12219,25 +12218,25 @@ Valid keys: ` + JSON.stringify(Object.keys(w), null, " ")
|
|
|
12219
12218
|
}
|
|
12220
12219
|
return null;
|
|
12221
12220
|
}
|
|
12222
|
-
return
|
|
12221
|
+
return w(S);
|
|
12223
12222
|
}
|
|
12224
|
-
function M(
|
|
12225
|
-
switch (typeof
|
|
12223
|
+
function M(y) {
|
|
12224
|
+
switch (typeof y) {
|
|
12226
12225
|
case "number":
|
|
12227
12226
|
case "string":
|
|
12228
12227
|
case "undefined":
|
|
12229
12228
|
return !0;
|
|
12230
12229
|
case "boolean":
|
|
12231
|
-
return !
|
|
12230
|
+
return !y;
|
|
12232
12231
|
case "object":
|
|
12233
|
-
if (Array.isArray(
|
|
12234
|
-
return
|
|
12235
|
-
if (
|
|
12232
|
+
if (Array.isArray(y))
|
|
12233
|
+
return y.every(M);
|
|
12234
|
+
if (y === null || c(y))
|
|
12236
12235
|
return !0;
|
|
12237
|
-
var S = m(
|
|
12236
|
+
var S = m(y);
|
|
12238
12237
|
if (S) {
|
|
12239
|
-
var q = S.call(
|
|
12240
|
-
if (S !==
|
|
12238
|
+
var q = S.call(y), j;
|
|
12239
|
+
if (S !== y.entries) {
|
|
12241
12240
|
for (; !(j = q.next()).done; )
|
|
12242
12241
|
if (!M(j.value))
|
|
12243
12242
|
return !1;
|
|
@@ -12254,27 +12253,27 @@ Valid keys: ` + JSON.stringify(Object.keys(w), null, " ")
|
|
|
12254
12253
|
return !1;
|
|
12255
12254
|
}
|
|
12256
12255
|
}
|
|
12257
|
-
function U(
|
|
12258
|
-
return
|
|
12256
|
+
function U(y, S) {
|
|
12257
|
+
return y === "symbol" ? !0 : S ? S["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && S instanceof Symbol : !1;
|
|
12259
12258
|
}
|
|
12260
|
-
function T(
|
|
12261
|
-
var S = typeof
|
|
12262
|
-
return Array.isArray(
|
|
12259
|
+
function T(y) {
|
|
12260
|
+
var S = typeof y;
|
|
12261
|
+
return Array.isArray(y) ? "array" : y instanceof RegExp ? "object" : U(S, y) ? "symbol" : S;
|
|
12263
12262
|
}
|
|
12264
|
-
function D(
|
|
12265
|
-
if (typeof
|
|
12266
|
-
return "" +
|
|
12267
|
-
var S = T(
|
|
12263
|
+
function D(y) {
|
|
12264
|
+
if (typeof y > "u" || y === null)
|
|
12265
|
+
return "" + y;
|
|
12266
|
+
var S = T(y);
|
|
12268
12267
|
if (S === "object") {
|
|
12269
|
-
if (
|
|
12268
|
+
if (y instanceof Date)
|
|
12270
12269
|
return "date";
|
|
12271
|
-
if (
|
|
12270
|
+
if (y instanceof RegExp)
|
|
12272
12271
|
return "regexp";
|
|
12273
12272
|
}
|
|
12274
12273
|
return S;
|
|
12275
12274
|
}
|
|
12276
|
-
function I(
|
|
12277
|
-
var S = D(
|
|
12275
|
+
function I(y) {
|
|
12276
|
+
var S = D(y);
|
|
12278
12277
|
switch (S) {
|
|
12279
12278
|
case "array":
|
|
12280
12279
|
case "object":
|
|
@@ -12287,8 +12286,8 @@ Valid keys: ` + JSON.stringify(Object.keys(w), null, " ")
|
|
|
12287
12286
|
return S;
|
|
12288
12287
|
}
|
|
12289
12288
|
}
|
|
12290
|
-
function z(
|
|
12291
|
-
return !
|
|
12289
|
+
function z(y) {
|
|
12290
|
+
return !y.constructor || !y.constructor.name ? h : y.constructor.name;
|
|
12292
12291
|
}
|
|
12293
12292
|
return p.checkPropTypes = o, p.resetWarningCache = o.resetWarningCache, p.PropTypes = p, p;
|
|
12294
12293
|
}, Kn;
|
|
@@ -12523,17 +12522,17 @@ function hp() {
|
|
|
12523
12522
|
return e.isMemo(g) ? o : s[g.$$typeof] || t;
|
|
12524
12523
|
}
|
|
12525
12524
|
var c = Object.defineProperty, d = Object.getOwnPropertyNames, l = Object.getOwnPropertySymbols, u = Object.getOwnPropertyDescriptor, m = Object.getPrototypeOf, h = Object.prototype;
|
|
12526
|
-
function p(g, A,
|
|
12525
|
+
function p(g, A, w) {
|
|
12527
12526
|
if (typeof A != "string") {
|
|
12528
12527
|
if (h) {
|
|
12529
12528
|
var v = m(A);
|
|
12530
|
-
v && v !== h && p(g, v,
|
|
12529
|
+
v && v !== h && p(g, v, w);
|
|
12531
12530
|
}
|
|
12532
12531
|
var N = d(A);
|
|
12533
12532
|
l && (N = N.concat(l(A)));
|
|
12534
12533
|
for (var _ = i(g), E = i(A), b = 0; b < N.length; ++b) {
|
|
12535
12534
|
var x = N[b];
|
|
12536
|
-
if (!n[x] && !(
|
|
12535
|
+
if (!n[x] && !(w && w[x]) && !(E && E[x]) && !(_ && _[x])) {
|
|
12537
12536
|
var P = u(A, x);
|
|
12538
12537
|
try {
|
|
12539
12538
|
c(g, x, P);
|
|
@@ -12569,7 +12568,7 @@ function pp(e, t) {
|
|
|
12569
12568
|
e.prototype = Object.create(t.prototype), e.prototype.constructor = e, e.__proto__ = t;
|
|
12570
12569
|
}
|
|
12571
12570
|
var Le = {}, Ap = 0;
|
|
12572
|
-
function
|
|
12571
|
+
function wp(e, t) {
|
|
12573
12572
|
return t = t || {}, function(r) {
|
|
12574
12573
|
var o = r.displayName || r.name || "Component", s = /* @__PURE__ */ (function(c) {
|
|
12575
12574
|
pp(d, c);
|
|
@@ -12595,7 +12594,7 @@ function yp(e, t) {
|
|
|
12595
12594
|
m.observers[h](m);
|
|
12596
12595
|
delete window[t.callbackName];
|
|
12597
12596
|
}, l.componentDidMount = function() {
|
|
12598
|
-
var m = this, h = this.setupScriptURL(), p = this.asyncScriptLoaderGetScriptLoaderID(), g = t, A = g.globalName,
|
|
12597
|
+
var m = this, h = this.setupScriptURL(), p = this.asyncScriptLoaderGetScriptLoaderID(), g = t, A = g.globalName, w = g.callbackName, v = g.scriptId;
|
|
12599
12598
|
if (A && typeof window[A] < "u" && (Le[h] = {
|
|
12600
12599
|
loaded: !0,
|
|
12601
12600
|
observers: {}
|
|
@@ -12629,12 +12628,12 @@ function yp(e, t) {
|
|
|
12629
12628
|
Q(G[O]) && delete G[O];
|
|
12630
12629
|
}
|
|
12631
12630
|
};
|
|
12632
|
-
|
|
12631
|
+
w && typeof window < "u" && (window[w] = function() {
|
|
12633
12632
|
return m.asyncScriptLoaderTriggerOnScriptLoaded();
|
|
12634
12633
|
}), E.onload = function() {
|
|
12635
12634
|
var P = Le[h];
|
|
12636
12635
|
P && (P.loaded = !0, x(function(Q) {
|
|
12637
|
-
return
|
|
12636
|
+
return w ? !1 : (Q(P), !0);
|
|
12638
12637
|
}));
|
|
12639
12638
|
}, E.onerror = function() {
|
|
12640
12639
|
var P = Le[h];
|
|
@@ -12665,7 +12664,7 @@ function yp(e, t) {
|
|
|
12665
12664
|
}, fp(i, r);
|
|
12666
12665
|
};
|
|
12667
12666
|
}
|
|
12668
|
-
var ua = "onloadcallback",
|
|
12667
|
+
var ua = "onloadcallback", yp = "grecaptcha";
|
|
12669
12668
|
function ha() {
|
|
12670
12669
|
return typeof window < "u" && window.recaptchaOptions || {};
|
|
12671
12670
|
}
|
|
@@ -12673,9 +12672,9 @@ function vp() {
|
|
|
12673
12672
|
var e = ha(), t = e.useRecaptchaNet ? "recaptcha.net" : "www.google.com";
|
|
12674
12673
|
return e.enterprise ? "https://" + t + "/recaptcha/enterprise.js?onload=" + ua + "&render=explicit" : "https://" + t + "/recaptcha/api.js?onload=" + ua + "&render=explicit";
|
|
12675
12674
|
}
|
|
12676
|
-
const Lo =
|
|
12675
|
+
const Lo = wp(vp, {
|
|
12677
12676
|
callbackName: ua,
|
|
12678
|
-
globalName:
|
|
12677
|
+
globalName: yp,
|
|
12679
12678
|
attributes: ha().nonce ? {
|
|
12680
12679
|
nonce: ha().nonce
|
|
12681
12680
|
} : {}
|
|
@@ -12769,7 +12768,7 @@ const Lo = yp(vp, {
|
|
|
12769
12768
|
})).json();
|
|
12770
12769
|
if (N.type === "success")
|
|
12771
12770
|
Xg(document, n), c("success"), setTimeout(() => {
|
|
12772
|
-
|
|
12771
|
+
w();
|
|
12773
12772
|
}, 3e3);
|
|
12774
12773
|
else
|
|
12775
12774
|
throw new Error(N.message || "Error al reportar comentario");
|
|
@@ -12777,11 +12776,11 @@ const Lo = yp(vp, {
|
|
|
12777
12776
|
console.error("Error reporting comment:", v), m(v.message || "Error al reportar comentario"), c("form");
|
|
12778
12777
|
}
|
|
12779
12778
|
}
|
|
12780
|
-
},
|
|
12779
|
+
}, w = () => {
|
|
12781
12780
|
c("form"), l(""), m(""), t();
|
|
12782
12781
|
};
|
|
12783
12782
|
return !e || !n || !o ? null : /* @__PURE__ */ a("div", { className: ue.overlay, children: /* @__PURE__ */ f("div", { className: ue.popup, children: [
|
|
12784
|
-
/* @__PURE__ */ a("button", { className: "close-reply-form", onClick:
|
|
12783
|
+
/* @__PURE__ */ a("button", { className: "close-reply-form", onClick: w, children: /* @__PURE__ */ a(Tt, {}) }),
|
|
12785
12784
|
/* @__PURE__ */ a("h2", { className: ue.title, children: "Reportar Abuso" }),
|
|
12786
12785
|
i === "loading" && /* @__PURE__ */ a("div", { className: ue.loadingContainer, children: /* @__PURE__ */ a(Je, {}) }),
|
|
12787
12786
|
i === "form" || i === "loading" ? /* @__PURE__ */ f(K, { children: [
|
|
@@ -12812,7 +12811,7 @@ const Lo = yp(vp, {
|
|
|
12812
12811
|
}
|
|
12813
12812
|
),
|
|
12814
12813
|
/* @__PURE__ */ f("div", { className: ue.buttons, children: [
|
|
12815
|
-
/* @__PURE__ */ a("button", { onClick:
|
|
12814
|
+
/* @__PURE__ */ a("button", { onClick: w, className: ue.cancelButton, children: "Cancelar" }),
|
|
12816
12815
|
/* @__PURE__ */ a(
|
|
12817
12816
|
"button",
|
|
12818
12817
|
{
|
|
@@ -12846,7 +12845,7 @@ const Lo = yp(vp, {
|
|
|
12846
12845
|
/* @__PURE__ */ a("div", { className: ue.buttons, children: /* @__PURE__ */ a(
|
|
12847
12846
|
"button",
|
|
12848
12847
|
{
|
|
12849
|
-
onClick:
|
|
12848
|
+
onClick: w,
|
|
12850
12849
|
className: [ue.closeButton, ue.buttonAlone].join(" "),
|
|
12851
12850
|
children: "Cerrar"
|
|
12852
12851
|
}
|
|
@@ -12912,10 +12911,10 @@ async function Wp({
|
|
|
12912
12911
|
state: i
|
|
12913
12912
|
});
|
|
12914
12913
|
o && A.append("id", o), s && A.append("lastid", s);
|
|
12915
|
-
const
|
|
12914
|
+
const w = `${g}${m}/newcomments/get?${A.toString()}`;
|
|
12916
12915
|
try {
|
|
12917
|
-
console.log("Fetching comments from:",
|
|
12918
|
-
const { data: v } = await oe.get(
|
|
12916
|
+
console.log("Fetching comments from:", w);
|
|
12917
|
+
const { data: v } = await oe.get(w, {
|
|
12919
12918
|
headers: {
|
|
12920
12919
|
"x-api-token": c,
|
|
12921
12920
|
"Cache-Control": "max-age=0, no-cache, no-store, must-revalidate",
|
|
@@ -13222,8 +13221,8 @@ const { PUBLIC_PUBLICATION_ID: Yp } = W(), Kp = Yp, Jp = (e) => {
|
|
|
13222
13221
|
] }) });
|
|
13223
13222
|
}, n9 = ({ comment: e, replyingTo: t, path: n, user: r, handleReplyingTo: o, onFlag: s, CAPTCHA_KEY_V2: i }) => {
|
|
13224
13223
|
const c = { morereply: e.morereply ?? !1, reply: e.reply ? e.reply : [] }, [d, l] = J(c), [u, m] = Te.useState(!1), { PUBLIC_PUBLICATION_ID: h, PUBLIC_X_SECURITY_TOKEN: p } = W(), g = e.text, A = Te.useRef(null);
|
|
13225
|
-
let
|
|
13226
|
-
e.user && (
|
|
13224
|
+
let w = `${Ke.firstname} ${Ke.lastname}`, v = Ke.username;
|
|
13225
|
+
e.user && (w = `${e.user.firstname} ${e.user.lastname}`, v = e.user.username);
|
|
13227
13226
|
const N = (_) => {
|
|
13228
13227
|
l({ morereply: d.morereply, reply: [_, ...d.reply] });
|
|
13229
13228
|
};
|
|
@@ -13235,7 +13234,7 @@ const { PUBLIC_PUBLICATION_ID: Yp } = W(), Kp = Yp, Jp = (e) => {
|
|
|
13235
13234
|
children: [
|
|
13236
13235
|
/* @__PURE__ */ a(Po, { user: e.user ? e.user : Ke }),
|
|
13237
13236
|
/* @__PURE__ */ f("div", { style: { flex: 1 }, children: [
|
|
13238
|
-
/* @__PURE__ */ a(Bo, { username:
|
|
13237
|
+
/* @__PURE__ */ a(Bo, { username: w, date: e.date.time }),
|
|
13239
13238
|
/* @__PURE__ */ a("p", { className: "comment-text", children: g }),
|
|
13240
13239
|
r?.username.toLowerCase() !== v.toLowerCase() && // No puedes responder ni reportar tus respuestas
|
|
13241
13240
|
/* @__PURE__ */ a(
|
|
@@ -13263,7 +13262,7 @@ const { PUBLIC_PUBLICATION_ID: Yp } = W(), Kp = Yp, Jp = (e) => {
|
|
|
13263
13262
|
{
|
|
13264
13263
|
user: r,
|
|
13265
13264
|
reply: _,
|
|
13266
|
-
replyingTo:
|
|
13265
|
+
replyingTo: w,
|
|
13267
13266
|
onFlag: s
|
|
13268
13267
|
},
|
|
13269
13268
|
_.id
|
|
@@ -13357,7 +13356,7 @@ const { PUBLIC_PUBLICATION_ID: Yp } = W(), Kp = Yp, Jp = (e) => {
|
|
|
13357
13356
|
void 0
|
|
13358
13357
|
), [d, l] = J(""), { comments: u, setComments: m } = Jp(s), [h, p] = Te.useState(!1), g = Te.useRef(null), A = (x) => {
|
|
13359
13358
|
l(d === x ? "" : x);
|
|
13360
|
-
},
|
|
13359
|
+
}, w = (x) => {
|
|
13361
13360
|
m(
|
|
13362
13361
|
u ? {
|
|
13363
13362
|
...u,
|
|
@@ -13407,7 +13406,7 @@ const { PUBLIC_PUBLICATION_ID: Yp } = W(), Kp = Yp, Jp = (e) => {
|
|
|
13407
13406
|
{
|
|
13408
13407
|
commentRef: g,
|
|
13409
13408
|
user: n,
|
|
13410
|
-
addComment:
|
|
13409
|
+
addComment: w,
|
|
13411
13410
|
path: s,
|
|
13412
13411
|
CAPTCHA_KEY_V2: o.CAPTCHA_KEY_V2
|
|
13413
13412
|
}
|
|
@@ -13583,7 +13582,7 @@ function i9({ goToLogin: e, handleGoogleLogin: t, CAPTCHA_KEY: n }) {
|
|
|
13583
13582
|
} finally {
|
|
13584
13583
|
d(!1);
|
|
13585
13584
|
}
|
|
13586
|
-
},
|
|
13585
|
+
}, w = r.password || "";
|
|
13587
13586
|
return /* @__PURE__ */ f(K, { children: [
|
|
13588
13587
|
m === "register" && /* @__PURE__ */ f(K, { children: [
|
|
13589
13588
|
/* @__PURE__ */ f("button", { onClick: t, className: k.google, children: [
|
|
@@ -13619,7 +13618,7 @@ function i9({ goToLogin: e, handleGoogleLogin: t, CAPTCHA_KEY: n }) {
|
|
|
13619
13618
|
}
|
|
13620
13619
|
),
|
|
13621
13620
|
v === "password" && /* @__PURE__ */ a("div", { className: k.passwordChecker, children: Cn.map((_, E) => {
|
|
13622
|
-
const b = _.test(
|
|
13621
|
+
const b = _.test(w);
|
|
13623
13622
|
return /* @__PURE__ */ f(
|
|
13624
13623
|
"div",
|
|
13625
13624
|
{
|
|
@@ -13731,7 +13730,7 @@ function c9({
|
|
|
13731
13730
|
handleGoogleLogin: r,
|
|
13732
13731
|
CAPTCHA_KEY: o
|
|
13733
13732
|
}) {
|
|
13734
|
-
const [s, i] = J("login"), [c, d] = J(""), [l, u] = J(""), [m, h] = J(""), [p, g] = J(""), [A,
|
|
13733
|
+
const [s, i] = J("login"), [c, d] = J(""), [l, u] = J(""), [m, h] = J(""), [p, g] = J(""), [A, w] = J(""), [v, N] = J(!1), [_, E] = J(!1), [b, x] = J(null);
|
|
13735
13734
|
return console.log("CAPTCHA_KEY", o), /* @__PURE__ */ f(K, { children: [
|
|
13736
13735
|
s === "login" && /* @__PURE__ */ a(
|
|
13737
13736
|
l9,
|
|
@@ -13819,7 +13818,7 @@ function c9({
|
|
|
13819
13818
|
error: b,
|
|
13820
13819
|
setConfirmationCode: h,
|
|
13821
13820
|
setNewPassword: g,
|
|
13822
|
-
setConfirmNewPassword:
|
|
13821
|
+
setConfirmNewPassword: w,
|
|
13823
13822
|
setShowPassword: N,
|
|
13824
13823
|
onSubmit: async (G) => {
|
|
13825
13824
|
if (_) return;
|
|
@@ -14417,10 +14416,10 @@ async function E3({
|
|
|
14417
14416
|
});
|
|
14418
14417
|
} catch (g) {
|
|
14419
14418
|
if (console.error("Error enviando comentario:", g), oe.isAxiosError(g)) {
|
|
14420
|
-
const A = g.response?.status ?? 500,
|
|
14419
|
+
const A = g.response?.status ?? 500, w = g.response?.data;
|
|
14421
14420
|
return A === 400 ? {
|
|
14422
14421
|
type: "error",
|
|
14423
|
-
message:
|
|
14422
|
+
message: w?.message || "Solicitud inválida. Verifica que los campos sean correctos.",
|
|
14424
14423
|
status: 400
|
|
14425
14424
|
} : A === 403 ? {
|
|
14426
14425
|
type: "error",
|
|
@@ -14432,7 +14431,7 @@ async function E3({
|
|
|
14432
14431
|
status: 500
|
|
14433
14432
|
} : {
|
|
14434
14433
|
type: "error",
|
|
14435
|
-
message:
|
|
14434
|
+
message: w?.message || "No se pudo enviar el comentario.",
|
|
14436
14435
|
status: A
|
|
14437
14436
|
};
|
|
14438
14437
|
}
|
|
@@ -14507,7 +14506,7 @@ export {
|
|
|
14507
14506
|
n3 as ErrorComponent,
|
|
14508
14507
|
Rs as Font,
|
|
14509
14508
|
e3 as Footer,
|
|
14510
|
-
|
|
14509
|
+
ys as FormatAfterScripts,
|
|
14511
14510
|
Hr as FormatScripts,
|
|
14512
14511
|
Fo as GA4,
|
|
14513
14512
|
$o as GTM,
|
|
@@ -14515,13 +14514,13 @@ export {
|
|
|
14515
14514
|
K9 as GenerateBody,
|
|
14516
14515
|
Y9 as GenerateHead,
|
|
14517
14516
|
i3 as Header,
|
|
14518
|
-
|
|
14517
|
+
w0 as IframeHeader,
|
|
14519
14518
|
tl as ImageOffline,
|
|
14520
14519
|
Ue as ImageOnline,
|
|
14521
14520
|
el as ImageOnlineClient,
|
|
14522
14521
|
F9 as IssuuServices,
|
|
14523
14522
|
Ts as ItemListSchema,
|
|
14524
|
-
|
|
14523
|
+
ym as JournalistArticule2,
|
|
14525
14524
|
Em as JournalistGroup,
|
|
14526
14525
|
_o as LayoutNewsComponent,
|
|
14527
14526
|
x3 as LazyLoader,
|
|
@@ -14544,26 +14543,26 @@ export {
|
|
|
14544
14543
|
A3 as NewsComponent,
|
|
14545
14544
|
ra as NewsContent,
|
|
14546
14545
|
Et as NewsDescriptionComponent,
|
|
14547
|
-
|
|
14546
|
+
yn as NextPrev,
|
|
14548
14547
|
ks as OrgList,
|
|
14549
14548
|
Ma as PreloadImages,
|
|
14550
14549
|
We as REPORT_REASONS,
|
|
14551
14550
|
ba as Readest,
|
|
14552
14551
|
C3 as ScriptHydrator,
|
|
14553
|
-
|
|
14552
|
+
y3 as SearchSection,
|
|
14554
14553
|
fe as Section,
|
|
14555
14554
|
Ze as SectionCard,
|
|
14556
14555
|
In as SectionCard2,
|
|
14557
14556
|
sa as SectionCardServerComponent,
|
|
14558
14557
|
h3 as SectionServerComponent,
|
|
14559
|
-
|
|
14558
|
+
yc as ShowSection,
|
|
14560
14559
|
z2 as SocialNetworks,
|
|
14561
14560
|
xs as SpeculationRules,
|
|
14562
14561
|
f3 as StaticSlotWrapper,
|
|
14563
14562
|
gl as SubscribeColumn,
|
|
14564
14563
|
Tl as SubscribeRow,
|
|
14565
14564
|
X9 as SubscribeWhatsAppColumn,
|
|
14566
|
-
|
|
14565
|
+
w3 as TagComponent,
|
|
14567
14566
|
lm as TagSection,
|
|
14568
14567
|
H1 as TimeLine,
|
|
14569
14568
|
C9 as TrimPathname,
|
|
@@ -14583,7 +14582,7 @@ export {
|
|
|
14583
14582
|
je as cutString,
|
|
14584
14583
|
v9 as extractRealtedNews,
|
|
14585
14584
|
Me as formatDate,
|
|
14586
|
-
|
|
14585
|
+
y9 as formatDateEdiciones,
|
|
14587
14586
|
jr as formatDateJournalistArticule,
|
|
14588
14587
|
us as formatDateTimeline,
|
|
14589
14588
|
fs as formatNewsMeta,
|
|
@@ -14611,8 +14610,8 @@ export {
|
|
|
14611
14610
|
_9 as getTypeOfNews,
|
|
14612
14611
|
N9 as getVideoRealPath,
|
|
14613
14612
|
Ua as handleGetComments,
|
|
14614
|
-
|
|
14615
|
-
|
|
14613
|
+
w9 as initLibrary,
|
|
14614
|
+
ws as metadataToJSX,
|
|
14616
14615
|
mc as metadata_defaults,
|
|
14617
14616
|
Gr as parseTags,
|
|
14618
14617
|
gs as pathnameSplit,
|