sass-template-common 0.9.47 → 0.9.49

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.
@@ -177,18 +177,18 @@ function Mn() {
177
177
  e.exports = a();
178
178
  })(Wa, (function() {
179
179
  var s = 1e3, a = 6e4, r = 36e5, i = "millisecond", o = "second", c = "minute", u = "hour", l = "day", d = "week", m = "month", h = "quarter", g = "year", f = "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, S = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(q) {
180
- var x = ["th", "st", "nd", "rd"], U = q % 100;
181
- return "[" + q + (x[(U - 20) % 10] || x[U] || x[0]) + "]";
182
- } }, N = function(q, x, U) {
180
+ var U = ["th", "st", "nd", "rd"], x = q % 100;
181
+ return "[" + q + (U[(x - 20) % 10] || U[x] || U[0]) + "]";
182
+ } }, N = function(q, U, x) {
183
183
  var M = String(q);
184
- return !M || M.length >= x ? q : "" + Array(x + 1 - M.length).join(U) + q;
184
+ return !M || M.length >= U ? q : "" + Array(U + 1 - M.length).join(x) + q;
185
185
  }, E = { s: N, z: function(q) {
186
- var x = -q.utcOffset(), U = Math.abs(x), M = Math.floor(U / 60), R = U % 60;
187
- return (x <= 0 ? "+" : "-") + N(M, 2, "0") + ":" + N(R, 2, "0");
188
- }, m: function q(x, U) {
189
- if (x.date() < U.date()) return -q(U, x);
190
- var M = 12 * (U.year() - x.year()) + (U.month() - x.month()), R = x.clone().add(M, m), F = U - R < 0, y = x.clone().add(M + (F ? -1 : 1), m);
191
- return +(-(M + (U - R) / (F ? R - y : y - R)) || 0);
186
+ var U = -q.utcOffset(), x = Math.abs(U), M = Math.floor(x / 60), R = x % 60;
187
+ return (U <= 0 ? "+" : "-") + N(M, 2, "0") + ":" + N(R, 2, "0");
188
+ }, m: function q(U, x) {
189
+ if (U.date() < x.date()) return -q(x, U);
190
+ var M = 12 * (x.year() - U.year()) + (x.month() - U.month()), R = U.clone().add(M, m), F = x - R < 0, y = U.clone().add(M + (F ? -1 : 1), m);
191
+ return +(-(M + (x - R) / (F ? R - y : y - R)) || 0);
192
192
  }, a: function(q) {
193
193
  return q < 0 ? Math.ceil(q) || 0 : Math.floor(q);
194
194
  }, p: function(q) {
@@ -199,33 +199,33 @@ function Mn() {
199
199
  I[b] = S;
200
200
  var k = "$isDayjsObject", V = function(q) {
201
201
  return q instanceof H || !(!q || !q[k]);
202
- }, Z = function q(x, U, M) {
202
+ }, Z = function q(U, x, M) {
203
203
  var R;
204
- if (!x) return b;
205
- if (typeof x == "string") {
206
- var F = x.toLowerCase();
207
- I[F] && (R = F), U && (I[F] = U, R = F);
208
- var y = x.split("-");
204
+ if (!U) return b;
205
+ if (typeof U == "string") {
206
+ var F = U.toLowerCase();
207
+ I[F] && (R = F), x && (I[F] = x, R = F);
208
+ var y = U.split("-");
209
209
  if (!R && y.length > 1) return q(y[0]);
210
210
  } else {
211
- var T = x.name;
212
- I[T] = x, R = T;
211
+ var T = U.name;
212
+ I[T] = U, R = T;
213
213
  }
214
214
  return !M && R && (b = R), R || !M && b;
215
- }, j = function(q, x) {
215
+ }, j = function(q, U) {
216
216
  if (V(q)) return q.clone();
217
- var U = typeof x == "object" ? x : {};
218
- return U.date = q, U.args = arguments, new H(U);
217
+ var x = typeof U == "object" ? U : {};
218
+ return x.date = q, x.args = arguments, new H(x);
219
219
  }, L = E;
220
- L.l = Z, L.i = V, L.w = function(q, x) {
221
- return j(q, { locale: x.$L, utc: x.$u, x: x.$x, $offset: x.$offset });
220
+ L.l = Z, L.i = V, L.w = function(q, U) {
221
+ return j(q, { locale: U.$L, utc: U.$u, x: U.$x, $offset: U.$offset });
222
222
  };
223
223
  var H = (function() {
224
- function q(U) {
225
- this.$L = Z(U.locale, null, !0), this.parse(U), this.$x = this.$x || U.x || {}, this[k] = !0;
224
+ function q(x) {
225
+ this.$L = Z(x.locale, null, !0), this.parse(x), this.$x = this.$x || x.x || {}, this[k] = !0;
226
226
  }
227
- var x = q.prototype;
228
- return x.parse = function(U) {
227
+ var U = q.prototype;
228
+ return U.parse = function(x) {
229
229
  this.$d = (function(M) {
230
230
  var R = M.date, F = M.utc;
231
231
  if (R === null) return /* @__PURE__ */ new Date(NaN);
@@ -239,29 +239,29 @@ function Mn() {
239
239
  }
240
240
  }
241
241
  return new Date(R);
242
- })(U), this.init();
243
- }, x.init = function() {
244
- var U = this.$d;
245
- this.$y = U.getFullYear(), this.$M = U.getMonth(), this.$D = U.getDate(), this.$W = U.getDay(), this.$H = U.getHours(), this.$m = U.getMinutes(), this.$s = U.getSeconds(), this.$ms = U.getMilliseconds();
246
- }, x.$utils = function() {
242
+ })(x), this.init();
243
+ }, U.init = function() {
244
+ var x = this.$d;
245
+ this.$y = x.getFullYear(), this.$M = x.getMonth(), this.$D = x.getDate(), this.$W = x.getDay(), this.$H = x.getHours(), this.$m = x.getMinutes(), this.$s = x.getSeconds(), this.$ms = x.getMilliseconds();
246
+ }, U.$utils = function() {
247
247
  return L;
248
- }, x.isValid = function() {
248
+ }, U.isValid = function() {
249
249
  return this.$d.toString() !== A;
250
- }, x.isSame = function(U, M) {
251
- var R = j(U);
250
+ }, U.isSame = function(x, M) {
251
+ var R = j(x);
252
252
  return this.startOf(M) <= R && R <= this.endOf(M);
253
- }, x.isAfter = function(U, M) {
254
- return j(U) < this.startOf(M);
255
- }, x.isBefore = function(U, M) {
256
- return this.endOf(M) < j(U);
257
- }, x.$g = function(U, M, R) {
258
- return L.u(U) ? this[M] : this.set(R, U);
259
- }, x.unix = function() {
253
+ }, U.isAfter = function(x, M) {
254
+ return j(x) < this.startOf(M);
255
+ }, U.isBefore = function(x, M) {
256
+ return this.endOf(M) < j(x);
257
+ }, U.$g = function(x, M, R) {
258
+ return L.u(x) ? this[M] : this.set(R, x);
259
+ }, U.unix = function() {
260
260
  return Math.floor(this.valueOf() / 1e3);
261
- }, x.valueOf = function() {
261
+ }, U.valueOf = function() {
262
262
  return this.$d.getTime();
263
- }, x.startOf = function(U, M) {
264
- var R = this, F = !!L.u(M) || M, y = L.p(U), T = function(te, K) {
263
+ }, U.startOf = function(x, M) {
264
+ var R = this, F = !!L.u(M) || M, y = L.p(x), T = function(te, K) {
265
265
  var ie = L.w(R.$u ? Date.UTC(R.$y, K, te) : new Date(R.$y, K, te), R);
266
266
  return F ? ie : ie.endOf(l);
267
267
  }, P = function(te, K) {
@@ -287,38 +287,38 @@ function Mn() {
287
287
  default:
288
288
  return this.clone();
289
289
  }
290
- }, x.endOf = function(U) {
291
- return this.startOf(U, !1);
292
- }, x.$set = function(U, M) {
293
- var R, F = L.p(U), y = "set" + (this.$u ? "UTC" : ""), T = (R = {}, R[l] = y + "Date", R[f] = y + "Date", R[m] = y + "Month", R[g] = y + "FullYear", R[u] = y + "Hours", R[c] = y + "Minutes", R[o] = y + "Seconds", R[i] = y + "Milliseconds", R)[F], P = F === l ? this.$D + (M - this.$W) : M;
290
+ }, U.endOf = function(x) {
291
+ return this.startOf(x, !1);
292
+ }, U.$set = function(x, M) {
293
+ var R, F = L.p(x), y = "set" + (this.$u ? "UTC" : ""), T = (R = {}, R[l] = y + "Date", R[f] = y + "Date", R[m] = y + "Month", R[g] = y + "FullYear", R[u] = y + "Hours", R[c] = y + "Minutes", R[o] = y + "Seconds", R[i] = y + "Milliseconds", R)[F], P = F === l ? this.$D + (M - this.$W) : M;
294
294
  if (F === m || F === g) {
295
295
  var G = this.clone().set(f, 1);
296
296
  G.$d[T](P), G.init(), this.$d = G.set(f, Math.min(this.$D, G.daysInMonth())).$d;
297
297
  } else T && this.$d[T](P);
298
298
  return this.init(), this;
299
- }, x.set = function(U, M) {
300
- return this.clone().$set(U, M);
301
- }, x.get = function(U) {
302
- return this[L.p(U)]();
303
- }, x.add = function(U, M) {
299
+ }, U.set = function(x, M) {
300
+ return this.clone().$set(x, M);
301
+ }, U.get = function(x) {
302
+ return this[L.p(x)]();
303
+ }, U.add = function(x, M) {
304
304
  var R, F = this;
305
- U = Number(U);
305
+ x = Number(x);
306
306
  var y = L.p(M), T = function(D) {
307
307
  var Q = j(F);
308
- return L.w(Q.date(Q.date() + Math.round(D * U)), F);
308
+ return L.w(Q.date(Q.date() + Math.round(D * x)), F);
309
309
  };
310
- if (y === m) return this.set(m, this.$M + U);
311
- if (y === g) return this.set(g, this.$y + U);
310
+ if (y === m) return this.set(m, this.$M + x);
311
+ if (y === g) return this.set(g, this.$y + x);
312
312
  if (y === l) return T(1);
313
313
  if (y === d) return T(7);
314
- var P = (R = {}, R[c] = a, R[u] = r, R[o] = s, R)[y] || 1, G = this.$d.getTime() + U * P;
314
+ var P = (R = {}, R[c] = a, R[u] = r, R[o] = s, R)[y] || 1, G = this.$d.getTime() + x * P;
315
315
  return L.w(G, this);
316
- }, x.subtract = function(U, M) {
317
- return this.add(-1 * U, M);
318
- }, x.format = function(U) {
316
+ }, U.subtract = function(x, M) {
317
+ return this.add(-1 * x, M);
318
+ }, U.format = function(x) {
319
319
  var M = this, R = this.$locale();
320
320
  if (!this.isValid()) return R.invalidDate || A;
321
- var F = U || "YYYY-MM-DDTHH:mm:ssZ", y = L.z(this), T = this.$H, P = this.$m, G = this.$M, D = R.weekdays, Q = R.months, z = R.meridiem, W = function(K, ie, B, he) {
321
+ var F = x || "YYYY-MM-DDTHH:mm:ssZ", y = L.z(this), T = this.$H, P = this.$m, G = this.$M, D = R.weekdays, Q = R.months, z = R.meridiem, W = function(K, ie, B, he) {
322
322
  return K && (K[ie] || K(M, F)) || B[ie].slice(0, he);
323
323
  }, X = function(K) {
324
324
  return L.s(T % 12 || 12, K, "0");
@@ -381,10 +381,10 @@ function Mn() {
381
381
  return null;
382
382
  })(K) || y.replace(":", "");
383
383
  }));
384
- }, x.utcOffset = function() {
384
+ }, U.utcOffset = function() {
385
385
  return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
386
- }, x.diff = function(U, M, R) {
387
- var F, y = this, T = L.p(M), P = j(U), G = (P.utcOffset() - this.utcOffset()) * a, D = this - P, Q = function() {
386
+ }, U.diff = function(x, M, R) {
387
+ var F, y = this, T = L.p(M), P = j(x), G = (P.utcOffset() - this.utcOffset()) * a, D = this - P, Q = function() {
388
388
  return L.m(y, P);
389
389
  };
390
390
  switch (T) {
@@ -416,32 +416,32 @@ function Mn() {
416
416
  F = D;
417
417
  }
418
418
  return R ? F : L.a(F);
419
- }, x.daysInMonth = function() {
419
+ }, U.daysInMonth = function() {
420
420
  return this.endOf(m).$D;
421
- }, x.$locale = function() {
421
+ }, U.$locale = function() {
422
422
  return I[this.$L];
423
- }, x.locale = function(U, M) {
424
- if (!U) return this.$L;
425
- var R = this.clone(), F = Z(U, M, !0);
423
+ }, U.locale = function(x, M) {
424
+ if (!x) return this.$L;
425
+ var R = this.clone(), F = Z(x, M, !0);
426
426
  return F && (R.$L = F), R;
427
- }, x.clone = function() {
427
+ }, U.clone = function() {
428
428
  return L.w(this.$d, this);
429
- }, x.toDate = function() {
429
+ }, U.toDate = function() {
430
430
  return new Date(this.valueOf());
431
- }, x.toJSON = function() {
431
+ }, U.toJSON = function() {
432
432
  return this.isValid() ? this.toISOString() : null;
433
- }, x.toISOString = function() {
433
+ }, U.toISOString = function() {
434
434
  return this.$d.toISOString();
435
- }, x.toString = function() {
435
+ }, U.toString = function() {
436
436
  return this.$d.toUTCString();
437
437
  }, q;
438
438
  })(), se = H.prototype;
439
439
  return j.prototype = se, [["$ms", i], ["$s", o], ["$m", c], ["$H", u], ["$W", l], ["$M", m], ["$y", g], ["$D", f]].forEach((function(q) {
440
- se[q[1]] = function(x) {
441
- return this.$g(x, q[0], q[1]);
440
+ se[q[1]] = function(U) {
441
+ return this.$g(U, q[0], q[1]);
442
442
  };
443
- })), j.extend = function(q, x) {
444
- return q.$i || (q(x, H, j), q.$i = !0), j;
443
+ })), j.extend = function(q, U) {
444
+ return q.$i || (q(U, H, j), q.$i = !0), j;
445
445
  }, j.locale = Z, j.isDayjs = V, j.unix = function(q) {
446
446
  return j(1e3 * q);
447
447
  }, j.en = I[b], j.Ls = I, j.p = {}, j;
@@ -658,7 +658,7 @@ const cr = /* @__PURE__ */ ze(or);
658
658
  be.extend(ar);
659
659
  be.extend(cr);
660
660
  be.extend(Za);
661
- const Lt = (e) => e === "en" ? "en" : "es", Ue = (e, t) => {
661
+ const Lt = (e) => e === "en" ? "en" : "es", xe = (e, t) => {
662
662
  const { PUBLIC_LNG: s, DATE_TIMEZONE: a } = t || _(), r = Lt(s ?? "es");
663
663
  return be.tz(e, a).locale(r).format("DD MMMM YYYY");
664
664
  }, ws = (e) => {
@@ -689,7 +689,7 @@ const Lt = (e) => e === "en" ? "en" : "es", Ue = (e, t) => {
689
689
  });
690
690
  const o = new Date(s.toLocaleString("en-US", { timeZone: "UTC" })), u = (new Date(s.toLocaleString("en-US", { timeZone: t })).getTime() - o.getTime()) / 6e4, l = u >= 0 ? "+" : "-", d = (g) => String(Math.floor(Math.abs(g))).padStart(2, "0"), m = d(u / 60), h = d(u % 60);
691
691
  return `${i.year}-${i.month}-${i.day}T${i.hour}:${i.minute}:${i.second}${l}${m}:${h}`;
692
- }, xe = (e, t = 136) => e && e.length > t ? `${e.substring(0, t)}...` : e;
692
+ }, Ue = (e, t = 136) => e && e.length > t ? `${e.substring(0, t)}...` : e;
693
693
  function je(e) {
694
694
  return e && e.status === "fulfilled" ? e.value.data : null;
695
695
  }
@@ -1296,7 +1296,7 @@ const De = (e, t) => {
1296
1296
  } catch (o) {
1297
1297
  console.log(o);
1298
1298
  }
1299
- }, Ur = "https://recaptchaenterprise.googleapis.com/v1/projects", Sd = async ({
1299
+ }, xr = "https://recaptchaenterprise.googleapis.com/v1/projects", Sd = async ({
1300
1300
  projectID: e,
1301
1301
  recaptchaKey: t,
1302
1302
  token: s,
@@ -1307,7 +1307,7 @@ const De = (e, t) => {
1307
1307
  }) => {
1308
1308
  if (!e || !t || !s || !r)
1309
1309
  return console.warn("createAssessment: faltan parámetros requeridos"), null;
1310
- const c = `${Ur}/${e}/assessments?key=${r}`, u = {
1310
+ const c = `${xr}/${e}/assessments?key=${r}`, u = {
1311
1311
  event: {
1312
1312
  token: s,
1313
1313
  siteKey: t,
@@ -1373,7 +1373,7 @@ function jn(e) {
1373
1373
  }
1374
1374
  return t;
1375
1375
  }
1376
- const xr = { prerender: [
1376
+ const Ur = { prerender: [
1377
1377
  { where: { and: [
1378
1378
  { href_matches: "/*(-|-t|-lb)([0-9]{8})(-|)([0-9]{4,6}).html" },
1379
1379
  { not: { selector_matches: "[rel~=nofollow]" } }
@@ -1385,7 +1385,7 @@ const xr = { prerender: [
1385
1385
  ] }, eagerness: "moderate" },
1386
1386
  { eagerness: "moderate", urls: ["/"] }
1387
1387
  ] }, kr = {
1388
- Home: xr,
1388
+ Home: Ur,
1389
1389
  Common: Rr
1390
1390
  }, Lr = ({ active: e, type: t, customSpeculation: s }) => e && /* @__PURE__ */ n(
1391
1391
  "script",
@@ -1686,7 +1686,7 @@ const Or = async ({
1686
1686
  }, dt = (e) => {
1687
1687
  const t = e.split("/"), s = t[t.length - 1] ?? "1";
1688
1688
  return Number(s) > 0 ? Number(s) : 1;
1689
- }, Ud = (e, t = 2) => {
1689
+ }, xd = (e, t = 2) => {
1690
1690
  if (!e || e.length === 0) return [];
1691
1691
  const s = [];
1692
1692
  for (let a = 0; a < t; a++) {
@@ -1826,7 +1826,7 @@ const Or = async ({
1826
1826
  }
1827
1827
  console.error("[SERVICE_DEBUG] Service error report (HTML):"), console.error(s);
1828
1828
  };
1829
- class xd {
1829
+ class Ud {
1830
1830
  exclude = "keywords,gallery,related,relatedexternal,external,customfields";
1831
1831
  config = {};
1832
1832
  imgSizes = {};
@@ -2229,7 +2229,7 @@ const Si = (e) => {
2229
2229
  }))(`axios@${Math.random()}`, []) : (s) => setTimeout(s))(
2230
2230
  typeof setImmediate == "function",
2231
2231
  Ae(Oe.postMessage)
2232
- ), Ii = typeof queueMicrotask < "u" ? queueMicrotask.bind(Oe) : typeof process < "u" && process.nextTick || Jn, Ui = (e) => e != null && Ae(e[Bt]), C = {
2232
+ ), Ii = typeof queueMicrotask < "u" ? queueMicrotask.bind(Oe) : typeof process < "u" && process.nextTick || Jn, xi = (e) => e != null && Ae(e[Bt]), C = {
2233
2233
  isArray: We,
2234
2234
  isArrayBuffer: Fn,
2235
2235
  isBuffer: nt,
@@ -2287,7 +2287,7 @@ const Si = (e) => {
2287
2287
  isThenable: Ti,
2288
2288
  setImmediate: Jn,
2289
2289
  asap: Ii,
2290
- isIterable: Ui
2290
+ isIterable: xi
2291
2291
  };
2292
2292
  function $(e, t, s, a, r) {
2293
2293
  Error.call(this), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack, this.message = e, this.name = "AxiosError", t && (this.code = t), s && (this.config = s), a && (this.request = a), r && (this.response = r, this.status = r.status ? r.status : null);
@@ -2341,7 +2341,7 @@ $.from = (e, t, s, a, r, i) => {
2341
2341
  const c = e && e.message ? e.message : "Error", u = t == null && e ? e.code : t;
2342
2342
  return $.call(o, c, u, s, a, r), e && o.cause == null && Object.defineProperty(o, "cause", { value: e, configurable: !0 }), o.name = e && e.name || "Error", i && Object.assign(o, i), o;
2343
2343
  };
2344
- const xi = null;
2344
+ const Ui = null;
2345
2345
  function os(e) {
2346
2346
  return C.isPlainObject(e) || C.isArray(e);
2347
2347
  }
@@ -2920,7 +2920,7 @@ function Xi(e, t) {
2920
2920
  }, a - m)));
2921
2921
  }, () => r && o(r)];
2922
2922
  }
2923
- const Ut = (e, t, s = 3) => {
2923
+ const xt = (e, t, s = 3) => {
2924
2924
  let a = 0;
2925
2925
  const r = Zi(50, 250);
2926
2926
  return Xi((i) => {
@@ -3122,7 +3122,7 @@ const oa = (e) => {
3122
3122
  )), w = null;
3123
3123
  }, i === void 0 && o.setContentType(null), "setRequestHeader" in w && C.forEach(o.toJSON(), function(E, b) {
3124
3124
  w.setRequestHeader(b, E);
3125
- }), C.isUndefined(r.withCredentials) || (w.withCredentials = !!r.withCredentials), c && c !== "json" && (w.responseType = r.responseType), l && ([h, f] = Ut(l, !0), w.addEventListener("progress", h)), u && w.upload && ([m, g] = Ut(u), w.upload.addEventListener("progress", m), w.upload.addEventListener("loadend", g)), (r.cancelToken || r.signal) && (d = (N) => {
3125
+ }), C.isUndefined(r.withCredentials) || (w.withCredentials = !!r.withCredentials), c && c !== "json" && (w.responseType = r.responseType), l && ([h, f] = xt(l, !0), w.addEventListener("progress", h)), u && w.upload && ([m, g] = xt(u), w.upload.addEventListener("progress", m), w.upload.addEventListener("loadend", g)), (r.cancelToken || r.signal) && (d = (N) => {
3126
3126
  w && (a(!N || N.type ? new Ye(null, e, w) : N), w.abort(), w = null);
3127
3127
  }, r.cancelToken && r.cancelToken.subscribe(d), r.signal && (r.signal.aborted ? d() : r.signal.addEventListener("abort", d)));
3128
3128
  const S = $i(r.url);
@@ -3290,9 +3290,9 @@ const oa = (e) => {
3290
3290
  const q = H && H.unsubscribe && (() => {
3291
3291
  H.unsubscribe();
3292
3292
  });
3293
- let x;
3293
+ let U;
3294
3294
  try {
3295
- if (I && l && w !== "get" && w !== "head" && (x = await g(V, v)) !== 0) {
3295
+ if (I && l && w !== "get" && w !== "head" && (U = await g(V, v)) !== 0) {
3296
3296
  let T = new s(A, {
3297
3297
  method: "POST",
3298
3298
  body: v,
@@ -3300,21 +3300,21 @@ const oa = (e) => {
3300
3300
  }), P;
3301
3301
  if (C.isFormData(v) && (P = T.headers.get("content-type")) && V.setContentType(P), T.body) {
3302
3302
  const [G, D] = nn(
3303
- x,
3304
- Ut(an(I))
3303
+ U,
3304
+ xt(an(I))
3305
3305
  );
3306
3306
  v = on(T.body, cn, G, D);
3307
3307
  }
3308
3308
  }
3309
3309
  C.isString(Z) || (Z = Z ? "include" : "omit");
3310
- const U = i && "credentials" in s.prototype, M = {
3310
+ const x = i && "credentials" in s.prototype, M = {
3311
3311
  ...j,
3312
3312
  signal: H,
3313
3313
  method: w.toUpperCase(),
3314
3314
  headers: V.normalize().toJSON(),
3315
3315
  body: v,
3316
3316
  duplex: "half",
3317
- credentials: U ? Z : void 0
3317
+ credentials: x ? Z : void 0
3318
3318
  };
3319
3319
  se = i && new s(A, M);
3320
3320
  let R = await (i ? L(se, j) : L(A, M));
@@ -3326,7 +3326,7 @@ const oa = (e) => {
3326
3326
  });
3327
3327
  const P = C.toFiniteNumber(R.headers.get("content-length")), [G, D] = b && nn(
3328
3328
  P,
3329
- Ut(an(b), !0)
3329
+ xt(an(b), !0)
3330
3330
  ) || [];
3331
3331
  R = new a(
3332
3332
  on(R.body, cn, G, () => {
@@ -3347,13 +3347,13 @@ const oa = (e) => {
3347
3347
  request: se
3348
3348
  });
3349
3349
  });
3350
- } catch (U) {
3351
- throw q && q(), U && U.name === "TypeError" && /Load failed|fetch/i.test(U.message) ? Object.assign(
3350
+ } catch (x) {
3351
+ throw q && q(), x && x.name === "TypeError" && /Load failed|fetch/i.test(x.message) ? Object.assign(
3352
3352
  new $("Network Error", $.ERR_NETWORK, f, se),
3353
3353
  {
3354
- cause: U.cause || U
3354
+ cause: x.cause || x
3355
3355
  }
3356
- ) : $.from(U, U && U.code, f, se);
3356
+ ) : $.from(x, x && x.code, f, se);
3357
3357
  }
3358
3358
  };
3359
3359
  }, ho = /* @__PURE__ */ new Map(), ca = (e) => {
@@ -3370,7 +3370,7 @@ const oa = (e) => {
3370
3370
  };
3371
3371
  ca();
3372
3372
  const Ss = {
3373
- http: xi,
3373
+ http: Ui,
3374
3374
  xhr: ro,
3375
3375
  fetch: {
3376
3376
  get: ca
@@ -4969,7 +4969,7 @@ function To({
4969
4969
  se(y.clientX);
4970
4970
  },
4971
4971
  [se]
4972
- ), x = ce(
4972
+ ), U = ce(
4973
4973
  (y) => {
4974
4974
  if (!c || !i) return;
4975
4975
  const T = m - l, P = Date.now() - A, G = Math.abs(T) / Math.max(P, 1), D = L(T), z = G > 0.5 && Math.abs(T) > 50 ? Math.max(D, 1) : D;
@@ -4981,7 +4981,7 @@ function To({
4981
4981
  const W = Math.min(V, e + z);
4982
4982
  o(W);
4983
4983
  }
4984
- u(!1), f(0), document.body.classList.remove("dragging"), document.removeEventListener("mousemove", q), document.removeEventListener("mouseup", x), y.clientX === l && v?.dispatchEvent(new PointerEvent("click"));
4984
+ u(!1), f(0), document.body.classList.remove("dragging"), document.removeEventListener("mousemove", q), document.removeEventListener("mouseup", U), y.clientX === l && v?.dispatchEvent(new PointerEvent("click"));
4985
4985
  },
4986
4986
  [
4987
4987
  c,
@@ -4996,7 +4996,7 @@ function To({
4996
4996
  q,
4997
4997
  v
4998
4998
  ]
4999
- ), U = ce(
4999
+ ), x = ce(
5000
5000
  (y) => {
5001
5001
  y.preventDefault(), ["a", "span"].includes(y.target?.localName) && S(y.target), H(y.clientX);
5002
5002
  },
@@ -5013,19 +5013,19 @@ function To({
5013
5013
  [c, se]
5014
5014
  ), F = ce(
5015
5015
  (y) => {
5016
- x(y);
5016
+ U(y);
5017
5017
  },
5018
- [x]
5018
+ [U]
5019
5019
  );
5020
5020
  return Te(() => {
5021
5021
  if (c)
5022
- return N.current?.addEventListener("mousemove", q), N.current?.addEventListener("mouseup", x), () => {
5022
+ return N.current?.addEventListener("mousemove", q), N.current?.addEventListener("mouseup", U), () => {
5023
5023
  N.current?.removeEventListener(
5024
5024
  "mousemove",
5025
5025
  q
5026
- ), N.current?.removeEventListener("mouseup", x);
5026
+ ), N.current?.removeEventListener("mouseup", U);
5027
5027
  };
5028
- }, [c, se, x, q]), {
5028
+ }, [c, se, U, q]), {
5029
5029
  isDragging: c,
5030
5030
  translateOffset: g,
5031
5031
  carrouselRef: N,
@@ -5033,11 +5033,11 @@ function To({
5033
5033
  getTranslateValue: j,
5034
5034
  actualVisibleItems: E,
5035
5035
  dragHandlers: {
5036
- onMouseDown: U,
5036
+ onMouseDown: x,
5037
5037
  onTouchStart: M,
5038
5038
  onTouchMove: R,
5039
5039
  onTouchEnd: F,
5040
- onMouseLeave: x
5040
+ onMouseLeave: U
5041
5041
  }
5042
5042
  };
5043
5043
  }
@@ -5246,7 +5246,7 @@ function Ke(e) {
5246
5246
  }
5247
5247
  );
5248
5248
  }
5249
- const et = (e) => /* @__PURE__ */ n("div", { className: "su-flex su-flex-col sass-com-mid-content", children: e.children }), Uo = (e) => (e || "").replaceAll("[section_replace]", "").replaceAll("[tags_replace]", "").replaceAll("[url_replace]", "").replaceAll("[creator_replace]", ""), xo = (e) => e.replace(
5249
+ const et = (e) => /* @__PURE__ */ n("div", { className: "su-flex su-flex-col sass-com-mid-content", children: e.children }), xo = (e) => (e || "").replaceAll("[section_replace]", "").replaceAll("[tags_replace]", "").replaceAll("[url_replace]", "").replaceAll("[creator_replace]", ""), Uo = (e) => e.replace(
5250
5250
  /<script\b([^>]*)>/gi,
5251
5251
  (t, s) => (
5252
5252
  // Reemplaza o agrega type="text/deferred-banner" para que el browser no ejecute
@@ -5256,7 +5256,7 @@ const et = (e) => /* @__PURE__ */ n("div", { className: "su-flex su-flex-col sas
5256
5256
  if (!e || e.length === 0) return null;
5257
5257
  const s = e.find((r) => r.key === `middle_${t}`);
5258
5258
  if (!s?.value || !s.show) return null;
5259
- const a = xo(Uo(s.value));
5259
+ const a = Uo(xo(s.value));
5260
5260
  return /* @__PURE__ */ n(
5261
5261
  "div",
5262
5262
  {
@@ -5340,7 +5340,7 @@ const Ro = (e) => !!/([t][0-9]{4})\w+/.exec(e || ""), oe = (e) => {
5340
5340
  )
5341
5341
  }
5342
5342
  );
5343
- }, Us = (e) => {
5343
+ }, xs = (e) => {
5344
5344
  const { PUBLIC_ENV: t } = _(), s = oe("/clipboard.svg");
5345
5345
  return t !== "" && !e.forceSVG ? /* @__PURE__ */ n("img", { fetchPriority: "low", loading: "lazy", src: s, alt: "", ...e }) : /* @__PURE__ */ p(
5346
5346
  "svg",
@@ -5445,7 +5445,7 @@ function Po({ noteShare: e }) {
5445
5445
  "data-active": "false",
5446
5446
  "aria-label": "copy",
5447
5447
  className: ["sass-com-nd-clipboardButton", "clipbtn-id"].join(" "),
5448
- children: /* @__PURE__ */ n(Us, {})
5448
+ children: /* @__PURE__ */ n(xs, {})
5449
5449
  }
5450
5450
  )
5451
5451
  ] }) : null;
@@ -5453,20 +5453,20 @@ function Po({ noteShare: e }) {
5453
5453
  const Je = (e) => {
5454
5454
  const { share: t = !1, cutSubtitle: s = !0, keywords: a, info: r, paths: i, newsDescriptionSectionTag: o = "h3" } = e, { SHOW_TAG_BY_SECTION: c, SUB_PUBLICATION_PREFIX_IN_ROUTES: u } = _(), l = () => {
5455
5455
  if (e?.config?.showtime && e.config?.showauthor)
5456
- return `${e?.authors[0]?.fullname ?? "Redacción"} - ${Ue(
5456
+ return `${e?.authors[0]?.fullname ?? "Redacción"} - ${xe(
5457
5457
  e.info?.date?.modified
5458
5458
  )}`;
5459
5459
  if (e.config?.showauthor)
5460
5460
  return e?.authors[0]?.fullname ?? "Redacción";
5461
5461
  if (e?.config?.showtime)
5462
- return Ue(e.info?.date?.modified);
5462
+ return xe(e.info?.date?.modified);
5463
5463
  }, d = () => {
5464
5464
  const g = {
5465
5465
  "--fontSizeSubTitle": e.fontSizeSubTitle,
5466
5466
  "--lineHeightSubTitle": e.lineHeightSubTitle,
5467
5467
  "--colorSubTitle": e.colorSubTitle
5468
5468
  };
5469
- return s ? /* @__PURE__ */ n("p", { className: "sass-com-nd-description", children: xe(e.main?.subtitle?.striped ?? "") }) : /* @__PURE__ */ n(
5469
+ return s ? /* @__PURE__ */ n("p", { className: "sass-com-nd-description", children: Ue(e.main?.subtitle?.striped ?? "") }) : /* @__PURE__ */ n(
5470
5470
  "h2",
5471
5471
  {
5472
5472
  className: "sass-com-nd-description",
@@ -6705,7 +6705,7 @@ const Bo = (e) => {
6705
6705
  showuppertitle: !1,
6706
6706
  showsubtitle: !1,
6707
6707
  showads: !1
6708
- }, xs = (e) => {
6708
+ }, Us = (e) => {
6709
6709
  let t = [];
6710
6710
  const { PUBLIC_ENV: s, PUBLIC_IS_OFFLINE: a, SHOW_DEV_RANKING: r } = _();
6711
6711
  return e.content && e.content.length > 0 ? t = e.content.map((i) => ({
@@ -6944,10 +6944,10 @@ const Bo = (e) => {
6944
6944
  "path",
6945
6945
  {
6946
6946
  fill: "currentColor",
6947
- d: `M25.7,9.4h-9.1v2.4h9.1c-0.1,0,0.1,0,0.1-0.1V9.5C25.9,9.4,25.9,9.4,25.7,9.4L25.7,9.4z M8.4,9.6
6948
- c-3,0-5.6,2.5-5.6,5.6c0,3,2.5,5.4,5.7,5.4s5.4-2.4,5.4-5.4c0-0.4,0-0.7-0.1-1.1H8.5v2.1h3c-0.3,1.3-1.5,2.1-3,2.1
6949
- c-1.9-0.1-3.4-1.7-3.2-3.4c0-1.9,1.5-3.2,3.2-3.2c0.8,0,1.5,0.3,2.1,0.9l1.5-1.5C11,10.2,9.7,9.6,8.4,9.6L8.4,9.6z M27,13.7H16.5
6950
- v2.4H27c0,0,0.1,0,0.1-0.1v-2.1C27.2,13.7,27.2,13.7,27,13.7L27,13.7z M25.7,18.2h-9.1v2.4h9.1c-0.1,0,0.1-0.1,0.1-0.1v-2.1
6947
+ d: `M25.7,9.4h-9.1v2.4h9.1c-0.1,0,0.1,0,0.1-0.1V9.5C25.9,9.4,25.9,9.4,25.7,9.4L25.7,9.4z M8.4,9.6\r
6948
+ c-3,0-5.6,2.5-5.6,5.6c0,3,2.5,5.4,5.7,5.4s5.4-2.4,5.4-5.4c0-0.4,0-0.7-0.1-1.1H8.5v2.1h3c-0.3,1.3-1.5,2.1-3,2.1\r
6949
+ c-1.9-0.1-3.4-1.7-3.2-3.4c0-1.9,1.5-3.2,3.2-3.2c0.8,0,1.5,0.3,2.1,0.9l1.5-1.5C11,10.2,9.7,9.6,8.4,9.6L8.4,9.6z M27,13.7H16.5\r
6950
+ v2.4H27c0,0,0.1,0,0.1-0.1v-2.1C27.2,13.7,27.2,13.7,27,13.7L27,13.7z M25.7,18.2h-9.1v2.4h9.1c-0.1,0,0.1-0.1,0.1-0.1v-2.1\r
6951
6951
  C25.9,18.2,25.9,18.2,25.7,18.2L25.7,18.2z`
6952
6952
  }
6953
6953
  )
@@ -7000,13 +7000,13 @@ const Bo = (e) => {
7000
7000
  "path",
7001
7001
  {
7002
7002
  fill: "currentColor",
7003
- d: `M12.6,24.9c-1.1,0-2.1-0.3-3.1-0.8c-1.7-0.9-2.8-2.5-3.2-4.3c-0.7-3.3,1.4-6.7,4.7-7.4
7004
- c0.8-0.2,1.5-0.2,2.2-0.1c0.1,0,0.1,0,0.2,0l0.5,0.1l0.1,0.5v3.8l-0.8-0.2c-0.1,0-0.2,0-0.3-0.1c-1.2-0.2-2.3,0.6-2.5,1.8
7005
- c-0.2,1.2,0.6,2.3,1.8,2.5c0.6,0.1,1.2,0,1.7-0.4c0.5-0.4,0.8-1,0.8-1.6c0-0.7,0-1.3,0-2l0-0.7l0-10.8h4.1L19,5.9
7006
- c0,0.2,0,0.4,0.1,0.6c0.4,1.8,2,3.2,3.9,3.3c0.5,0,0.8,0.3,0.8,0.8c0,0.6,0,1.3,0,1.9v1.5l-0.6,0c-1.5,0-2.9-0.4-4.1-1.1l0,5.6
7007
- c0,2.7-1.6,5-4,6C14.2,24.7,13.4,24.9,12.6,24.9z M12.7,13.4c-0.4,0-0.9,0.1-1.3,0.2c-2.7,0.6-4.4,3.4-3.9,6.1
7008
- c0.3,1.5,1.3,2.8,2.6,3.5c1.4,0.7,3,0.8,4.5,0.3c2-0.8,3.3-2.7,3.3-4.9l0-7.8l0.9,0.7c1.2,0.9,2.4,1.3,3.8,1.5v-0.3
7009
- c0-0.5,0-1.1,0-1.6C20.4,10.7,18.5,9,18,6.7c0-0.2-0.1-0.3-0.1-0.5H16l0,10.4c0,0.7,0,1.4,0,2.1c0,0.9-0.5,1.8-1.2,2.4
7003
+ d: `M12.6,24.9c-1.1,0-2.1-0.3-3.1-0.8c-1.7-0.9-2.8-2.5-3.2-4.3c-0.7-3.3,1.4-6.7,4.7-7.4\r
7004
+ c0.8-0.2,1.5-0.2,2.2-0.1c0.1,0,0.1,0,0.2,0l0.5,0.1l0.1,0.5v3.8l-0.8-0.2c-0.1,0-0.2,0-0.3-0.1c-1.2-0.2-2.3,0.6-2.5,1.8\r
7005
+ c-0.2,1.2,0.6,2.3,1.8,2.5c0.6,0.1,1.2,0,1.7-0.4c0.5-0.4,0.8-1,0.8-1.6c0-0.7,0-1.3,0-2l0-0.7l0-10.8h4.1L19,5.9\r
7006
+ c0,0.2,0,0.4,0.1,0.6c0.4,1.8,2,3.2,3.9,3.3c0.5,0,0.8,0.3,0.8,0.8c0,0.6,0,1.3,0,1.9v1.5l-0.6,0c-1.5,0-2.9-0.4-4.1-1.1l0,5.6\r
7007
+ c0,2.7-1.6,5-4,6C14.2,24.7,13.4,24.9,12.6,24.9z M12.7,13.4c-0.4,0-0.9,0.1-1.3,0.2c-2.7,0.6-4.4,3.4-3.9,6.1\r
7008
+ c0.3,1.5,1.3,2.8,2.6,3.5c1.4,0.7,3,0.8,4.5,0.3c2-0.8,3.3-2.7,3.3-4.9l0-7.8l0.9,0.7c1.2,0.9,2.4,1.3,3.8,1.5v-0.3\r
7009
+ c0-0.5,0-1.1,0-1.6C20.4,10.7,18.5,9,18,6.7c0-0.2-0.1-0.3-0.1-0.5H16l0,10.4c0,0.7,0,1.4,0,2.1c0,0.9-0.5,1.8-1.2,2.4\r
7010
7010
  C14,21.8,13,22,12,21.8c-1.8-0.4-3-2-2.7-3.9c0.3-1.7,1.8-2.9,3.6-2.7v-1.9C12.9,13.4,12.8,13.4,12.7,13.4z`
7011
7011
  }
7012
7012
  ) })
@@ -7032,13 +7032,13 @@ const Bo = (e) => {
7032
7032
  "path",
7033
7033
  {
7034
7034
  fill: "currentColor",
7035
- d: `M21.7,8.3c-1.8-1.8-4.2-2.8-6.7-2.8c-5.2,0-9.5,4.2-9.5,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3
7036
- c1.4,0.7,2.9,1.1,4.5,1.1h0c5.2,0,9.5-4.2,9.5-9.4C24.5,12.4,23.5,10,21.7,8.3 M15,22.7L15,22.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2
7037
- l-3,0.8l0.8-2.9l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.9-7.8c2.1,0,4.1,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.5
7038
- C22.9,19.2,19.4,22.7,15,22.7z M19.4,16.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.7,0.9
7039
- c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5c0.1-0.1,0.2-0.3,0.4-0.4
7040
- c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4c-0.1-0.1-0.5-1.3-0.7-1.7c-0.2-0.5-0.4-0.4-0.5-0.4c-0.1,0-0.3,0-0.5,0
7041
- c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.6c0.6,0.2,1,0.4,1.3,0.5
7035
+ d: `M21.7,8.3c-1.8-1.8-4.2-2.8-6.7-2.8c-5.2,0-9.5,4.2-9.5,9.4c0,1.7,0.4,3.3,1.3,4.7l-1.3,4.9l5-1.3\r
7036
+ c1.4,0.7,2.9,1.1,4.5,1.1h0c5.2,0,9.5-4.2,9.5-9.4C24.5,12.4,23.5,10,21.7,8.3 M15,22.7L15,22.7c-1.4,0-2.8-0.4-4-1.1l-0.3-0.2\r
7037
+ l-3,0.8l0.8-2.9l-0.2-0.3c-0.8-1.2-1.2-2.7-1.2-4.2c0-4.3,3.5-7.8,7.9-7.8c2.1,0,4.1,0.8,5.6,2.3c1.5,1.5,2.3,3.4,2.3,5.5\r
7038
+ C22.9,19.2,19.4,22.7,15,22.7z M19.4,16.9c-0.2-0.1-1.4-0.7-1.6-0.8c-0.2-0.1-0.4-0.1-0.5,0.1c-0.2,0.2-0.6,0.8-0.7,0.9\r
7039
+ c-0.1,0.2-0.3,0.2-0.5,0.1c-0.2-0.1-1-0.4-1.9-1.2c-0.7-0.6-1.2-1.4-1.3-1.6c-0.1-0.2,0-0.4,0.1-0.5c0.1-0.1,0.2-0.3,0.4-0.4\r
7040
+ c0.1-0.1,0.2-0.2,0.2-0.4c0.1-0.2,0-0.3,0-0.4c-0.1-0.1-0.5-1.3-0.7-1.7c-0.2-0.5-0.4-0.4-0.5-0.4c-0.1,0-0.3,0-0.5,0\r
7041
+ c-0.2,0-0.4,0.1-0.6,0.3c-0.2,0.2-0.8,0.8-0.8,2c0,1.2,0.8,2.3,1,2.4c0.1,0.2,1.7,2.5,4,3.6c0.6,0.2,1,0.4,1.3,0.5\r
7042
7042
  c0.6,0.2,1.1,0.2,1.5,0.1c0.5-0.1,1.4-0.6,1.6-1.1c0.2-0.5,0.2-1,0.1-1.1C19.7,17.1,19.6,17,19.4,16.9`
7043
7043
  }
7044
7044
  ) }) })
@@ -7068,9 +7068,9 @@ const Bo = (e) => {
7068
7068
  "path",
7069
7069
  {
7070
7070
  fill: "currentColor",
7071
- d: `M15,23.9c-0.7,0-7.3,0-9.2-0.6C4.6,23,3.7,22,3.2,20.8c-0.4-2-0.4-5.6-0.4-5.8c0-0.2,0-3.8,0.6-5.8C3.7,7.9,4.7,7,5.9,6.5c1.9-0.4,8.9-0.4,9.2-0.4c0.7,0,7.3,0,9.2,0.6C25.5,7,26.4,8,26.9,9.2c0,0,0,0,0,0.1c0.5,1.9,0.3,5.7,0.3,5.9
7072
- c0,0.1,0,3.8-0.4,5.7c-0.4,1.3-1.3,2.2-2.6,2.6C22.2,23.9,15.3,23.9,15,23.9z M15.1,7.6c-2,0-7.4,0.1-8.8,0.4C6,8.1,5.1,8.5,4.8,9.5c-0.5,1.8-0.5,5.4-0.5,5.4s0,3.6,0.4,5.4c0.1,0.3,0.5,1.2,1.6,1.5c1.4,0.4,6.8,0.5,8.7,0.5c2,0,7.4-0.1,8.8-0.4
7073
- c0.3-0.1,1.2-0.5,1.5-1.6c0.4-1.6,0.4-5.3,0.4-5.3c0-0.1,0.2-3.7-0.2-5.4c-0.1-0.4-0.5-1.3-1.6-1.6C22.5,7.7,17.1,7.6,15.1,7.6zM12.8,19.2c-0.1,0-0.3,0-0.4-0.1c-0.2-0.1-0.4-0.4-0.4-0.7v-6.9c0-0.3,0.1-0.5,0.4-0.6c0.2-0.1,0.5-0.1,0.7,0l5.9,3.4
7071
+ d: `M15,23.9c-0.7,0-7.3,0-9.2-0.6C4.6,23,3.7,22,3.2,20.8c-0.4-2-0.4-5.6-0.4-5.8c0-0.2,0-3.8,0.6-5.8C3.7,7.9,4.7,7,5.9,6.5c1.9-0.4,8.9-0.4,9.2-0.4c0.7,0,7.3,0,9.2,0.6C25.5,7,26.4,8,26.9,9.2c0,0,0,0,0,0.1c0.5,1.9,0.3,5.7,0.3,5.9\r
7072
+ c0,0.1,0,3.8-0.4,5.7c-0.4,1.3-1.3,2.2-2.6,2.6C22.2,23.9,15.3,23.9,15,23.9z M15.1,7.6c-2,0-7.4,0.1-8.8,0.4C6,8.1,5.1,8.5,4.8,9.5c-0.5,1.8-0.5,5.4-0.5,5.4s0,3.6,0.4,5.4c0.1,0.3,0.5,1.2,1.6,1.5c1.4,0.4,6.8,0.5,8.7,0.5c2,0,7.4-0.1,8.8-0.4\r
7073
+ c0.3-0.1,1.2-0.5,1.5-1.6c0.4-1.6,0.4-5.3,0.4-5.3c0-0.1,0.2-3.7-0.2-5.4c-0.1-0.4-0.5-1.3-1.6-1.6C22.5,7.7,17.1,7.6,15.1,7.6zM12.8,19.2c-0.1,0-0.3,0-0.4-0.1c-0.2-0.1-0.4-0.4-0.4-0.7v-6.9c0-0.3,0.1-0.5,0.4-0.6c0.2-0.1,0.5-0.1,0.7,0l5.9,3.4\r
7074
7074
  c0.2,0.1,0.4,0.4,0.4,0.6c0,0.3-0.1,0.5-0.4,0.7l-5.9,3.5C13.1,19.1,12.9,19.2,12.8,19.2z M13.6,12.9v4.3l3.7-2.2L13.6,12.9z`
7075
7075
  }
7076
7076
  ),
@@ -7353,7 +7353,7 @@ function Yo({ noteShare: e }) {
7353
7353
  "data-active": "false",
7354
7354
  "aria-label": "copy",
7355
7355
  className: ["sass-com-ja3-clipboardButton", "clipbtn-id"].join(" "),
7356
- children: /* @__PURE__ */ n(Us, { forceSVG: !0 })
7356
+ children: /* @__PURE__ */ n(xs, { forceSVG: !0 })
7357
7357
  }
7358
7358
  ),
7359
7359
  /* @__PURE__ */ n(
@@ -7368,7 +7368,7 @@ function Yo({ noteShare: e }) {
7368
7368
  ] }) : null;
7369
7369
  }
7370
7370
  const au = (e) => {
7371
- const t = () => e?.video.main.author ? `${e?.video.main.author} - ${Ue(
7371
+ const t = () => e?.video.main.author ? `${e?.video.main.author} - ${xe(
7372
7372
  e.video.info.date.created
7373
7373
  )}` : e?.video.main.author;
7374
7374
  return /* @__PURE__ */ n("div", { className: "sass-com-bv3-content", children: /* @__PURE__ */ n(Es, { children: /* @__PURE__ */ p("div", { className: "sass-com-bv3-videoContent", children: [
@@ -7399,11 +7399,11 @@ const au = (e) => {
7399
7399
  }
7400
7400
  ),
7401
7401
  /* @__PURE__ */ p("div", { className: "sass-com-bv3-articleSection", children: [
7402
- /* @__PURE__ */ n("p", { className: "sass-com-bv3-article", children: xe(e.video.main.description) }),
7402
+ /* @__PURE__ */ n("p", { className: "sass-com-bv3-article", children: Ue(e.video.main.description) }),
7403
7403
  /* @__PURE__ */ n("p", { className: "sass-com-bv3-correspondent", children: t() })
7404
7404
  ] })
7405
7405
  ] }) }) });
7406
- }, xt = (e) => {
7406
+ }, Ut = (e) => {
7407
7407
  const { currentPage: t, showNext: s, maxPages: a, pathname: r, query: i, block_subPublication: o } = e, c = (u, l, d) => {
7408
7408
  let m = "";
7409
7409
  const h = l.split("/");
@@ -7669,8 +7669,8 @@ const au = (e) => {
7669
7669
  strokeLinecap: "round",
7670
7670
  strokeLinejoin: "round",
7671
7671
  strokeMiterlimit: "10",
7672
- d: `M10.2,8.3c0,1.1-0.9,2.1-2.2,2.1l0,0c-1.3,0-2.1-0.9-2.1-2.1c0-1.1,0.9-2.1,2.2-2.1C9.4,6.3,10.2,7.1,10.2,8.3z M6.1,23.7H10V11.9
7673
- H6.1V23.7z M19.6,11.7c-2.1,0-3.5,2-3.5,2v-1.7h-3.9v11.8H16v-6.6c0-0.3,0-0.7,0.1-0.9c0.3-0.7,0.9-1.4,2-1.4c1.4,0,2,1.1,2,2.7v6.3
7672
+ d: `M10.2,8.3c0,1.1-0.9,2.1-2.2,2.1l0,0c-1.3,0-2.1-0.9-2.1-2.1c0-1.1,0.9-2.1,2.2-2.1C9.4,6.3,10.2,7.1,10.2,8.3z M6.1,23.7H10V11.9\r
7673
+ H6.1V23.7z M19.6,11.7c-2.1,0-3.5,2-3.5,2v-1.7h-3.9v11.8H16v-6.6c0-0.3,0-0.7,0.1-0.9c0.3-0.7,0.9-1.4,2-1.4c1.4,0,2,1.1,2,2.7v6.3\r
7674
7674
  h3.9V17C24.1,13.3,22.2,11.7,19.6,11.7z`
7675
7675
  }
7676
7676
  )
@@ -7854,7 +7854,7 @@ const au = (e) => {
7854
7854
  /* @__PURE__ */ p("div", { className: "sass-com-lnc-bannerSection", children: [
7855
7855
  e.bannerTop,
7856
7856
  /* @__PURE__ */ n(
7857
- xs,
7857
+ Us,
7858
7858
  {
7859
7859
  content: e.ranking,
7860
7860
  title: e.readestTitle,
@@ -7876,7 +7876,7 @@ const au = (e) => {
7876
7876
  ...e.main,
7877
7877
  title: {
7878
7878
  ...e.main.title,
7879
- article: xe(e.main.title.article, 60)
7879
+ article: Ue(e.main.title.article, 60)
7880
7880
  }
7881
7881
  }
7882
7882
  };
@@ -8369,7 +8369,7 @@ const au = (e) => {
8369
8369
  href: t.data[0]?.info.link.url,
8370
8370
  target: t.data[0]?.info.link.target,
8371
8371
  title: t.data[0]?.main.title.home,
8372
- children: xe(t.data[0]?.main.title.home ?? "", 120)
8372
+ children: Ue(t.data[0]?.main.title.home ?? "", 120)
8373
8373
  }
8374
8374
  )
8375
8375
  ] }),
@@ -8508,7 +8508,7 @@ const au = (e) => {
8508
8508
  href: s.data[0]?.info.link.url,
8509
8509
  target: s.data[0]?.info.link.target,
8510
8510
  title: s.data[0]?.main.title.home,
8511
- children: xe(s.data[0]?.main.title.home ?? "", 120)
8511
+ children: Ue(s.data[0]?.main.title.home ?? "", 120)
8512
8512
  }
8513
8513
  )
8514
8514
  ] }) : /* @__PURE__ */ n("div", { className: "sass-com-h1st-line" }),
@@ -8909,13 +8909,13 @@ const au = (e) => {
8909
8909
  }, Fe = (e) => {
8910
8910
  const { SHOW_TAG_BY_SECTION: t, SUB_PUBLICATION_PREFIX_IN_ROUTES: s } = _(), a = () => {
8911
8911
  if (e?.config?.showtime && e.config?.showauthor)
8912
- return `${e?.authors[0]?.fullname} - ${Ue(
8912
+ return `${e?.authors[0]?.fullname} - ${xe(
8913
8913
  e.info?.date?.modified
8914
8914
  )}`;
8915
8915
  if (e.config?.showauthor)
8916
8916
  return e?.authors[0]?.fullname;
8917
8917
  if (e?.config?.showtime)
8918
- return Ue(e.info?.date?.modified);
8918
+ return xe(e.info?.date?.modified);
8919
8919
  }, r = () => {
8920
8920
  if (t && e.keywords?.tags?.length && e.keywords.tags.length > 0) {
8921
8921
  const o = e.keywords.tags[0], c = o.name;
@@ -9293,7 +9293,7 @@ const au = (e) => {
9293
9293
  )
9294
9294
  ] });
9295
9295
  }, Et = async (e) => {
9296
- const { data: t, autorIcon: s } = e, { SUB_PUBLICATION_PREFIX_IN_ROUTES: a } = _(), r = s, i = () => t?.config?.showtime ? `${Ue(t.info?.date?.modified)}` : "", o = /* @__PURE__ */ p("div", { className: "sass-com-oc2-autorContent", children: [
9296
+ const { data: t, autorIcon: s } = e, { SUB_PUBLICATION_PREFIX_IN_ROUTES: a } = _(), r = s, i = () => t?.config?.showtime ? `${xe(t.info?.date?.modified)}` : "", o = /* @__PURE__ */ p("div", { className: "sass-com-oc2-autorContent", children: [
9297
9297
  Array.isArray(t?.authors) && Array.isArray(t?.authors[0]?.image?.sizes) && t?.authors[0]?.image?.sizes?.length > 0 ? /* @__PURE__ */ n(
9298
9298
  "img",
9299
9299
  {
@@ -9304,7 +9304,7 @@ const au = (e) => {
9304
9304
  alt: t?.authors[0]?.fullname
9305
9305
  }
9306
9306
  ) : /* @__PURE__ */ n("div", { className: "sass-com-oc2-contentIcon", children: /* @__PURE__ */ n(r, {}) }),
9307
- /* @__PURE__ */ n("p", { className: "sass-com-oc2-autorName", children: xe(t?.authors[0]?.fullname ?? "Redacción", 18) }),
9307
+ /* @__PURE__ */ n("p", { className: "sass-com-oc2-autorName", children: Ue(t?.authors[0]?.fullname ?? "Redacción", 18) }),
9308
9308
  /* @__PURE__ */ n("p", { className: "sass-com-oc2-time", children: i() })
9309
9309
  ] });
9310
9310
  return /* @__PURE__ */ p("div", { className: "sass-com-oc2-content", children: [
@@ -9326,7 +9326,7 @@ const au = (e) => {
9326
9326
  children: t?.main?.title?.home
9327
9327
  }
9328
9328
  ),
9329
- /* @__PURE__ */ n("p", { className: "sass-com-oc2-comment", children: xe(t?.main?.subtitle?.striped || "") })
9329
+ /* @__PURE__ */ n("p", { className: "sass-com-oc2-comment", children: Ue(t?.main?.subtitle?.striped || "") })
9330
9330
  ] })
9331
9331
  ] });
9332
9332
  };
@@ -9507,7 +9507,7 @@ const mu = (e) => {
9507
9507
  children: a
9508
9508
  }
9509
9509
  );
9510
- }, Ua = (e) => /* @__PURE__ */ n(fe, { title: e.title, titleUrl: e.titleUrl, children: /* @__PURE__ */ n(
9510
+ }, xa = (e) => /* @__PURE__ */ n(fe, { title: e.title, titleUrl: e.titleUrl, children: /* @__PURE__ */ n(
9511
9511
  mc,
9512
9512
  {
9513
9513
  content: e.content,
@@ -9668,7 +9668,7 @@ const mu = (e) => {
9668
9668
  children: (t ? e?.main?.title?.section : e?.info?.section?.name) ?? ""
9669
9669
  }
9670
9670
  ),
9671
- /* @__PURE__ */ n("p", { className: "sass-com-sc6-dateText", children: Ue(e?.info?.date?.modified) })
9671
+ /* @__PURE__ */ n("p", { className: "sass-com-sc6-dateText", children: xe(e?.info?.date?.modified) })
9672
9672
  ] })
9673
9673
  ]
9674
9674
  }
@@ -9775,7 +9775,7 @@ const mu = (e) => {
9775
9775
  className: "sass-com-opt1-linkStyled",
9776
9776
  href: s?.info?.link?.url,
9777
9777
  target: s?.info?.link?.target,
9778
- children: xe(s?.main?.title?.home, 40)
9778
+ children: Ue(s?.main?.title?.home, 40)
9779
9779
  }
9780
9780
  ) }),
9781
9781
  /* @__PURE__ */ n("p", { className: "sass-com-opt1-comment", children: s?.main?.subtitle?.striped })
@@ -9883,7 +9883,7 @@ const mu = (e) => {
9883
9883
  {
9884
9884
  className: ["sass-pg-sec-newsContentSection", "padding-0"].join(" "),
9885
9885
  paginatorComponent: /* @__PURE__ */ n(
9886
- xt,
9886
+ Ut,
9887
9887
  {
9888
9888
  texts: c,
9889
9889
  pathname: o,
@@ -9946,7 +9946,7 @@ const mu = (e) => {
9946
9946
  {
9947
9947
  className: "padding-0",
9948
9948
  paginatorComponent: /* @__PURE__ */ n(
9949
- xt,
9949
+ Ut,
9950
9950
  {
9951
9951
  texts: c,
9952
9952
  pathname: o,
@@ -10028,7 +10028,7 @@ const mu = (e) => {
10028
10028
  e.slug === "liveblogs" && /* @__PURE__ */ n(Jo, { itemList: e.itemList }),
10029
10029
  e.bannerTop,
10030
10030
  /* @__PURE__ */ n(
10031
- xs,
10031
+ Us,
10032
10032
  {
10033
10033
  content: e.ranking,
10034
10034
  title: String(e.texts.readestTitle ?? ""),
@@ -10146,7 +10146,7 @@ const mu = (e) => {
10146
10146
  commonServices: t
10147
10147
  }
10148
10148
  ) }) : null;
10149
- }, Uc = (e) => {
10149
+ }, xc = (e) => {
10150
10150
  const t = e.option === "liveblogs";
10151
10151
  return /* @__PURE__ */ p(Y, { children: [
10152
10152
  /* @__PURE__ */ n(() => {
@@ -10246,7 +10246,7 @@ const mu = (e) => {
10246
10246
  }
10247
10247
  )
10248
10248
  ] });
10249
- }, xc = (e) => /* @__PURE__ */ n("section", { className: "su-w-full sass-com-ccard-content", id: e.id, children: e.children }), Rc = async (e, t, s) => {
10249
+ }, Uc = (e) => /* @__PURE__ */ n("section", { className: "su-w-full sass-com-ccard-content", id: e.id, children: e.children }), Rc = async (e, t, s) => {
10250
10250
  if (!s) return e;
10251
10251
  const a = /(<div[^>]*class=["'][^"']*ck-related-news[^"']*["'][^>]*>[\s\S]*?<span\b[^>]*data-src="([^"]+)"[^>]*>[\s\S]*?<\/span>[\s\S]*?<\/div>\s*<\/div>)/g, r = [...e.matchAll(a)];
10252
10252
  let i = e;
@@ -10382,7 +10382,7 @@ const qc = async ({
10382
10382
  };
10383
10383
  });
10384
10384
  return /* @__PURE__ */ n("section", { className: "sass-com-bnl-content", id: "block-notes-list", children: o?.map(async (c, u) => /* @__PURE__ */ p(Tt, { children: [
10385
- /* @__PURE__ */ n(xc, { id: `item-${u + 1}`, children: /* @__PURE__ */ p("div", { className: "sass-com-bnl-contentWithinCard", children: [
10385
+ /* @__PURE__ */ n(Uc, { id: `item-${u + 1}`, children: /* @__PURE__ */ p("div", { className: "sass-com-bnl-contentWithinCard", children: [
10386
10386
  (await c).date > 0 && /* @__PURE__ */ p("div", { className: "sass-com-bnl-contentDate", children: [
10387
10387
  /* @__PURE__ */ n(
10388
10388
  "span",
@@ -10438,7 +10438,7 @@ const qc = async ({
10438
10438
  u
10439
10439
  )
10440
10440
  ] }, u)) });
10441
- }, xa = {
10441
+ }, Ua = {
10442
10442
  FaceBook: "facebook",
10443
10443
  Instagram: "instagram",
10444
10444
  WhatsApp: "whatsapp",
@@ -10487,7 +10487,7 @@ const Dc = () => /* @__PURE__ */ p("svg", { xmlns: "http://www.w3.org/2000/svg",
10487
10487
  "a",
10488
10488
  {
10489
10489
  className: "sass-com-ja3-whatsappLink",
10490
- href: s[xa.WhatsApp].url,
10490
+ href: s[Ua.WhatsApp].url,
10491
10491
  rel: "noreferrer",
10492
10492
  target: "_blank",
10493
10493
  children: [
@@ -10758,7 +10758,7 @@ function Fc({ noteShare: e }) {
10758
10758
  "data-active": "false",
10759
10759
  "aria-label": "copy",
10760
10760
  className: ["sass-com-ja4-clipboardButton", "clipbtn-id"].join(" "),
10761
- children: /* @__PURE__ */ n(Us, { forceSVG: !0 })
10761
+ children: /* @__PURE__ */ n(xs, { forceSVG: !0 })
10762
10762
  }
10763
10763
  ),
10764
10764
  /* @__PURE__ */ n(
@@ -10803,7 +10803,7 @@ const zc = async (e) => {
10803
10803
  "a",
10804
10804
  {
10805
10805
  className: "sass-com-ja4-socialActionLink",
10806
- href: s[xa.WhatsApp].url,
10806
+ href: s[Ua.WhatsApp].url,
10807
10807
  rel: "noreferrer",
10808
10808
  target: "_blank",
10809
10809
  children: [
@@ -11317,7 +11317,7 @@ const nl = (e) => {
11317
11317
  if (!(!r || !r[0]))
11318
11318
  return /* @__PURE__ */ n(Y, { children: /* @__PURE__ */ p(yc, { className: "sass-pg-news-contentLayout2", children: [
11319
11319
  /* @__PURE__ */ n(
11320
- Uc,
11320
+ xc,
11321
11321
  {
11322
11322
  option: e.slug,
11323
11323
  news: r,
@@ -11460,7 +11460,7 @@ const nl = (e) => {
11460
11460
  " "
11461
11461
  ),
11462
11462
  paginatorComponent: /* @__PURE__ */ n(
11463
- xt,
11463
+ Ut,
11464
11464
  {
11465
11465
  block_subPublication: g?.autor,
11466
11466
  texts: d,
@@ -11530,7 +11530,7 @@ const nl = (e) => {
11530
11530
  /* @__PURE__ */ n(Xo, { autor: a[0], autorIcon: e.autorIcon, socialIconsFilled: m }),
11531
11531
  Array.isArray(t) ? /* @__PURE__ */ p(Y, { children: [
11532
11532
  /* @__PURE__ */ n(
11533
- Ua,
11533
+ xa,
11534
11534
  {
11535
11535
  content: t,
11536
11536
  title: "",
@@ -11542,7 +11542,7 @@ const nl = (e) => {
11542
11542
  }
11543
11543
  ),
11544
11544
  /* @__PURE__ */ n(
11545
- xt,
11545
+ Ut,
11546
11546
  {
11547
11547
  block_subPublication: g?.autor,
11548
11548
  texts: d,
@@ -11874,7 +11874,7 @@ function yu({ texts: e, API_ENV: t, termsAndConditionsUrl: s }) {
11874
11874
  children: /* @__PURE__ */ n(
11875
11875
  "path",
11876
11876
  {
11877
- fill: "#0073BE",
11877
+ fill: "currentColor",
11878
11878
  d: "M119.249 42.357H81.915l5.621-27.039.177-1.893a8.906 8.906 0 0 0-2.603-6.272L78.838.941 39.907 39.93c-2.19 2.13-3.491 5.089-3.491 8.343v59.167c0 6.508 5.325 11.833 11.833 11.833h53.25c4.911 0 9.112-2.958 10.887-7.218l17.868-41.713c.533-1.36.829-2.78.829-4.32V54.192c0-6.509-5.325-11.834-11.834-11.834Zm0 23.667-17.75 41.417h-53.25V48.274l25.679-25.678L67.36 54.19h51.889v11.833ZM.916 48.274h23.667v71H.916v-71Z"
11879
11879
  }
11880
11880
  )
@@ -11885,7 +11885,7 @@ function yu({ texts: e, API_ENV: t, termsAndConditionsUrl: s }) {
11885
11885
  /* @__PURE__ */ n("p", { children: a.successMessage })
11886
11886
  ] })
11887
11887
  ] }),
11888
- /* @__PURE__ */ n("a", { href: "./login", className: "sass-pg-login-primary", children: a.loginButtonText })
11888
+ /* @__PURE__ */ n("a", { href: "./login", type: "submit", className: "sass-pg-login-primary", children: a.loginButtonText })
11889
11889
  ] }),
11890
11890
  f === "register" && /* @__PURE__ */ p("p", { className: "sass-pg-login-switch", children: [
11891
11891
  a.alreadyHasAccountText,
@@ -11930,7 +11930,7 @@ function Cu({
11930
11930
  if (document.cookie.search(e.COGNITO_AUTH_PREFIX + "IS_AUTH=true") !== -1) {
11931
11931
  if (!window) return;
11932
11932
  const L = b("redirect_after_login_1");
11933
- console.log("Redirect path after login:", L), L && L !== "" ? (document.cookie = "redirect_after_login_1=; Max-Age=0; path=/", window.location.pathname = L, window.location.hash = "comentarios") : window.location.pathname = "/auth/success";
11933
+ console.log("Redirect path after login:", L, document.cookie, document.cookie.search("redirect_after_login_1=") !== -1), L && L !== "" ? (document.cookie = "redirect_after_login_1=; Max-Age=0; path=/", window.location.pathname = L, window.location.hash = "comentarios") : window.location.pathname = "/auth/success";
11934
11934
  }
11935
11935
  };
11936
11936
  return /* @__PURE__ */ p(Y, { children: [
@@ -12340,7 +12340,7 @@ function hl({
12340
12340
  }) {
12341
12341
  return /* @__PURE__ */ p("div", { className: "sass-pg-login-form", children: [
12342
12342
  /* @__PURE__ */ n("p", { className: "sass-pg-login-success", children: t.feedbackSuccessMessage }),
12343
- /* @__PURE__ */ n("button", { type: "button", className: "sass-pg-login-primary", onClick: e, children: t.loginButtonText })
12343
+ /* @__PURE__ */ n("button", { type: "submit", className: "sass-pg-login-primary", onClick: e, children: t.loginButtonText })
12344
12344
  ] });
12345
12345
  }
12346
12346
  function Nu({ containerId: e, containerId2: t }) {
@@ -12682,7 +12682,7 @@ const Su = ({ currentNew: e }) => e && e?.hascontent?.hasembeddedtwitter && /* @
12682
12682
  }, bl = (e) => {
12683
12683
  const { share: t = !1, cutSubtitle: s = !0, SHOW_TAG_BY_SECTION: a, keywords: r, info: i } = e, c = (() => {
12684
12684
  if (!e?.authors || e.authors.length === 0) return "";
12685
- const d = e.authors[0], m = Ue(e.info?.date?.modified, e.DATE_CONFIG);
12685
+ const d = e.authors[0], m = xe(e.info?.date?.modified, e.DATE_CONFIG);
12686
12686
  return d && e?.config?.showtime && e.config?.showauthor ? `${d.fullname} - ${m}` : d && e.config?.showauthor ? d.fullname : e?.config?.showtime ? m : "";
12687
12687
  })(), u = () => e.main.uppertitle ? /* @__PURE__ */ n("p", { className: "sass-com-nd-uppertitle", title: e.main.uppertitle, children: e.main.uppertitle }) : null;
12688
12688
  return /* @__PURE__ */ p("div", { className: "sass-com-nd-boxInformation", children: [
@@ -12742,7 +12742,7 @@ const Su = ({ currentNew: e }) => e && e?.hascontent?.hasembeddedtwitter && /* @
12742
12742
  "--lineHeightSubTitle": e.lineHeightSubTitle,
12743
12743
  "--colorSubTitle": e.colorSubTitle
12744
12744
  },
12745
- children: s ? xe(e.main?.subtitle?.striped) : e.main?.subtitle?.striped
12745
+ children: s ? Ue(e.main?.subtitle?.striped) : e.main?.subtitle?.striped
12746
12746
  }
12747
12747
  ),
12748
12748
  (e?.config?.showtime || e.config?.showauthor) && c && /* @__PURE__ */ n(Y, { children: e.authors?.[0]?.internaluser ? /* @__PURE__ */ n(
@@ -13028,7 +13028,7 @@ function Sl() {
13028
13028
  }
13029
13029
  }
13030
13030
  }
13031
- var b = u, I = l, k = c, V = o, Z = t, j = d, L = a, H = f, se = g, q = s, x = i, U = r, M = m, R = !1;
13031
+ var b = u, I = l, k = c, V = o, Z = t, j = d, L = a, H = f, se = g, q = s, U = i, x = r, M = m, R = !1;
13032
13032
  function F(B) {
13033
13033
  return R || (R = !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(B) || E(B) === u;
13034
13034
  }
@@ -13068,7 +13068,7 @@ function Sl() {
13068
13068
  function ie(B) {
13069
13069
  return E(B) === m;
13070
13070
  }
13071
- ae.AsyncMode = b, ae.ConcurrentMode = I, ae.ContextConsumer = k, ae.ContextProvider = V, ae.Element = Z, ae.ForwardRef = j, ae.Fragment = L, ae.Lazy = H, ae.Memo = se, ae.Portal = q, ae.Profiler = x, ae.StrictMode = U, ae.Suspense = M, ae.isAsyncMode = F, ae.isConcurrentMode = y, ae.isContextConsumer = T, ae.isContextProvider = P, ae.isElement = G, ae.isForwardRef = D, ae.isFragment = Q, ae.isLazy = z, ae.isMemo = W, ae.isPortal = X, ae.isProfiler = te, ae.isStrictMode = K, ae.isSuspense = ie, ae.isValidElementType = N, ae.typeOf = E;
13071
+ ae.AsyncMode = b, ae.ConcurrentMode = I, ae.ContextConsumer = k, ae.ContextProvider = V, ae.Element = Z, ae.ForwardRef = j, ae.Fragment = L, ae.Lazy = H, ae.Memo = se, ae.Portal = q, ae.Profiler = U, ae.StrictMode = x, ae.Suspense = M, ae.isAsyncMode = F, ae.isConcurrentMode = y, ae.isContextConsumer = T, ae.isContextProvider = P, ae.isElement = G, ae.isForwardRef = D, ae.isFragment = Q, ae.isLazy = z, ae.isMemo = W, ae.isPortal = X, ae.isProfiler = te, ae.isStrictMode = K, ae.isSuspense = ie, ae.isValidElementType = N, ae.typeOf = E;
13072
13072
  })()), ae;
13073
13073
  }
13074
13074
  var Sn;
@@ -13132,10 +13132,10 @@ var $t, In;
13132
13132
  function Ba() {
13133
13133
  return In || (In = 1, $t = Function.call.bind(Object.prototype.hasOwnProperty)), $t;
13134
13134
  }
13135
- var Zt, Un;
13135
+ var Zt, xn;
13136
13136
  function Tl() {
13137
- if (Un) return Zt;
13138
- Un = 1;
13137
+ if (xn) return Zt;
13138
+ xn = 1;
13139
13139
  var e = function() {
13140
13140
  };
13141
13141
  if (process.env.NODE_ENV !== "production") {
@@ -13181,10 +13181,10 @@ function Tl() {
13181
13181
  process.env.NODE_ENV !== "production" && (s = {});
13182
13182
  }, Zt = r, Zt;
13183
13183
  }
13184
- var Xt, xn;
13184
+ var Xt, Un;
13185
13185
  function Il() {
13186
- if (xn) return Xt;
13187
- xn = 1;
13186
+ if (Un) return Xt;
13187
+ Un = 1;
13188
13188
  var e = Ps(), t = El(), s = /* @__PURE__ */ Bs(), a = /* @__PURE__ */ Ba(), r = /* @__PURE__ */ Tl(), i = function() {
13189
13189
  };
13190
13190
  process.env.NODE_ENV !== "production" && (i = function(c) {
@@ -13258,7 +13258,7 @@ function Il() {
13258
13258
  }
13259
13259
  function v(y) {
13260
13260
  function T(P, G, D, Q, z, W) {
13261
- var X = P[G], te = U(X);
13261
+ var X = P[G], te = x(X);
13262
13262
  if (te !== y) {
13263
13263
  var K = M(X);
13264
13264
  return new A(
@@ -13279,7 +13279,7 @@ function Il() {
13279
13279
  return new A("Property `" + z + "` of component `" + D + "` has invalid PropType notation inside arrayOf.");
13280
13280
  var W = P[G];
13281
13281
  if (!Array.isArray(W)) {
13282
- var X = U(W);
13282
+ var X = x(W);
13283
13283
  return new A("Invalid " + Q + " `" + z + "` of type " + ("`" + X + "` supplied to `" + D + "`, expected an array."));
13284
13284
  }
13285
13285
  for (var te = 0; te < W.length; te++) {
@@ -13295,7 +13295,7 @@ function Il() {
13295
13295
  function y(T, P, G, D, Q) {
13296
13296
  var z = T[P];
13297
13297
  if (!c(z)) {
13298
- var W = U(z);
13298
+ var W = x(z);
13299
13299
  return new A("Invalid " + D + " `" + Q + "` of type " + ("`" + W + "` supplied to `" + G + "`, expected a single ReactElement."));
13300
13300
  }
13301
13301
  return null;
@@ -13306,7 +13306,7 @@ function Il() {
13306
13306
  function y(T, P, G, D, Q) {
13307
13307
  var z = T[P];
13308
13308
  if (!e.isValidElementType(z)) {
13309
- var W = U(z);
13309
+ var W = x(z);
13310
13310
  return new A("Invalid " + D + " `" + Q + "` of type " + ("`" + W + "` supplied to `" + G + "`, expected a single ReactElement type."));
13311
13311
  }
13312
13312
  return null;
@@ -13344,7 +13344,7 @@ function Il() {
13344
13344
  function T(P, G, D, Q, z) {
13345
13345
  if (typeof y != "function")
13346
13346
  return new A("Property `" + z + "` of component `" + D + "` has invalid PropType notation inside objectOf.");
13347
- var W = P[G], X = U(W);
13347
+ var W = P[G], X = x(W);
13348
13348
  if (X !== "object")
13349
13349
  return new A("Invalid " + Q + " `" + z + "` of type " + ("`" + X + "` supplied to `" + D + "`, expected an object."));
13350
13350
  for (var te in W)
@@ -13392,7 +13392,7 @@ function Il() {
13392
13392
  }
13393
13393
  function H(y) {
13394
13394
  function T(P, G, D, Q, z) {
13395
- var W = P[G], X = U(W);
13395
+ var W = P[G], X = x(W);
13396
13396
  if (X !== "object")
13397
13397
  return new A("Invalid " + Q + " `" + z + "` of type `" + X + "` " + ("supplied to `" + D + "`, expected `object`."));
13398
13398
  for (var te in y) {
@@ -13409,7 +13409,7 @@ function Il() {
13409
13409
  }
13410
13410
  function se(y) {
13411
13411
  function T(P, G, D, Q, z) {
13412
- var W = P[G], X = U(W);
13412
+ var W = P[G], X = x(W);
13413
13413
  if (X !== "object")
13414
13414
  return new A("Invalid " + Q + " `" + z + "` of type `" + X + "` " + ("supplied to `" + D + "`, expected `object`."));
13415
13415
  var te = t({}, P[G], y);
@@ -13463,17 +13463,17 @@ Valid keys: ` + JSON.stringify(Object.keys(y), null, " ")
13463
13463
  return !1;
13464
13464
  }
13465
13465
  }
13466
- function x(y, T) {
13466
+ function U(y, T) {
13467
13467
  return y === "symbol" ? !0 : T ? T["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && T instanceof Symbol : !1;
13468
13468
  }
13469
- function U(y) {
13469
+ function x(y) {
13470
13470
  var T = typeof y;
13471
- return Array.isArray(y) ? "array" : y instanceof RegExp ? "object" : x(T, y) ? "symbol" : T;
13471
+ return Array.isArray(y) ? "array" : y instanceof RegExp ? "object" : U(T, y) ? "symbol" : T;
13472
13472
  }
13473
13473
  function M(y) {
13474
13474
  if (typeof y > "u" || y === null)
13475
13475
  return "" + y;
13476
- var T = U(y);
13476
+ var T = x(y);
13477
13477
  if (T === "object") {
13478
13478
  if (y instanceof Date)
13479
13479
  return "date";
@@ -13503,7 +13503,7 @@ Valid keys: ` + JSON.stringify(Object.keys(y), null, " ")
13503
13503
  }, Xt;
13504
13504
  }
13505
13505
  var es, Rn;
13506
- function Ul() {
13506
+ function xl() {
13507
13507
  if (Rn) return es;
13508
13508
  Rn = 1;
13509
13509
  var e = /* @__PURE__ */ Bs();
@@ -13551,16 +13551,16 @@ function Ul() {
13551
13551
  }, es;
13552
13552
  }
13553
13553
  var kn;
13554
- function xl() {
13554
+ function Ul() {
13555
13555
  if (kn) return ft.exports;
13556
13556
  if (kn = 1, process.env.NODE_ENV !== "production") {
13557
13557
  var e = Ps(), t = !0;
13558
13558
  ft.exports = /* @__PURE__ */ Il()(e.isElement, t);
13559
13559
  } else
13560
- ft.exports = /* @__PURE__ */ Ul()();
13560
+ ft.exports = /* @__PURE__ */ xl()();
13561
13561
  return ft.exports;
13562
13562
  }
13563
- var Rl = /* @__PURE__ */ xl();
13563
+ var Rl = /* @__PURE__ */ Ul();
13564
13564
  const pe = /* @__PURE__ */ ze(Rl);
13565
13565
  var kl = ["sitekey", "onChange", "theme", "type", "tabindex", "onExpired", "onErrored", "size", "stoken", "grecaptcha", "badge", "hl", "isolated"];
13566
13566
  function hs() {
@@ -14182,7 +14182,7 @@ const Wl = (e, t) => {
14182
14182
  }, qa = ({ username: e, date: t, DATE_CONFIG: s }) => /* @__PURE__ */ p("div", { className: "comment-header su-flex su-items-center su-relative su-flex-wrap", children: [
14183
14183
  /* @__PURE__ */ n("span", { className: "comment-username su-font-bold su-truncate", children: e }),
14184
14184
  /* @__PURE__ */ n("span", { className: "comment-header-dot", children: "•" }),
14185
- /* @__PURE__ */ n("span", { className: "comment-date su-truncate", children: yl(Ue(Number(t), s)) })
14185
+ /* @__PURE__ */ n("span", { className: "comment-date su-truncate", children: yl(xe(Number(t), s)) })
14186
14186
  ] }), Ma = ({ user: e }) => /* @__PURE__ */ n("div", { className: "comment-avatar su-flex-center su-rounded-full su-font-bold su-overflow-hidden", children: e.picture ? /* @__PURE__ */ n(
14187
14187
  "img",
14188
14188
  {
@@ -14391,7 +14391,13 @@ const _s = ({ onClick: e, isDisabled: t, API_ENV: s, icon: a, handleGoogleLogin:
14391
14391
  }, 2400)), () => {
14392
14392
  v && clearTimeout(v);
14393
14393
  };
14394
- }, [o]);
14394
+ }, [o]), le.useEffect(() => {
14395
+ if (!h || !s.CONFIG_commentsV2 || !i || !document) return;
14396
+ const v = document.getElementById("comment-button");
14397
+ if (!v) return;
14398
+ const S = v.closest(".comment-form"), N = S?.querySelector('input[name="username"]'), E = S?.querySelector('textarea[name="comment"]'), b = S?.querySelector("textarea.g-recaptcha-response") ?? document.querySelector("#g-recaptcha-response");
14399
+ N?.value?.trim() && E?.value?.trim() && b?.value?.trim() && v.click();
14400
+ });
14395
14401
  const w = l == "local" ? d : m && m !== "false" ? m : "";
14396
14402
  return o ? /* @__PURE__ */ n("div", { className: "success-gif-container su-flex-center su-relative", children: /* @__PURE__ */ n("img", { className: "success-gif su-absolute", src: w + "/arte/" + u + "/Success.gif" }) }) : /* @__PURE__ */ p(Y, { children: [
14397
14403
  f && s.CONFIG_commentsV2 && i && /* @__PURE__ */ n(Kl, { API_ENV: s, icon: a, handleGoogleLogin: r, onClose: (v) => {
@@ -14796,23 +14802,23 @@ const _s = ({ onClick: e, isDisabled: t, API_ENV: s, icon: a, handleGoogleLogin:
14796
14802
  }) => {
14797
14803
  const u = { ...nd, ...c?.comentarios }, { PUBLIC_PUBLICATION_ID: l, PUBLIC_X_SECURITY_TOKEN: d } = o, m = l ?? "", h = t.replaceAll("/", "|"), [g, f] = J(
14798
14804
  void 0
14799
- ), [A, w] = J(""), { comments: v, setComments: S } = Wl(h, o), [N, E] = le.useState(!1), b = le.useRef(null), I = le.useRef(null), k = (x) => {
14800
- w(A === x ? "" : x);
14801
- }, V = (x) => {
14805
+ ), [A, w] = J(""), { comments: v, setComments: S } = Wl(h, o), [N, E] = le.useState(!1), b = le.useRef(null), I = le.useRef(null), k = (U) => {
14806
+ w(A === U ? "" : U);
14807
+ }, V = (U) => {
14802
14808
  S(
14803
14809
  v ? {
14804
14810
  ...v,
14805
- comments: [x, ...v.comments ?? []]
14811
+ comments: [U, ...v.comments ?? []]
14806
14812
  } : void 0
14807
14813
  );
14808
- }, Z = (x) => {
14809
- f(x);
14814
+ }, Z = (U) => {
14815
+ f(U);
14810
14816
  }, j = async () => {
14811
14817
  if (!v || !v.morecomment || v.comments.length === 0) return;
14812
- const x = v.comments[v.comments.length - 1];
14813
- if (!x) return;
14818
+ const U = v.comments[v.comments.length - 1];
14819
+ if (!U) return;
14814
14820
  E(!0);
14815
- const U = x.id;
14821
+ const x = U.id;
14816
14822
  try {
14817
14823
  const M = await qs({
14818
14824
  publication: m,
@@ -14820,7 +14826,7 @@ const _s = ({ onClick: e, isDisabled: t, API_ENV: s, icon: a, handleGoogleLogin:
14820
14826
  size: 5,
14821
14827
  sizereply: 2,
14822
14828
  id: void 0,
14823
- lastid: U,
14829
+ lastid: x,
14824
14830
  state: "5,6",
14825
14831
  apiToken: d,
14826
14832
  API_ENV: o
@@ -14881,10 +14887,10 @@ const _s = ({ onClick: e, isDisabled: t, API_ENV: s, icon: a, handleGoogleLogin:
14881
14887
  className: "comments-list",
14882
14888
  "data-isauthenticated": `${e}`,
14883
14889
  children: [
14884
- v.comments.map((x) => /* @__PURE__ */ n(
14890
+ v.comments.map((U) => /* @__PURE__ */ n(
14885
14891
  Xl,
14886
14892
  {
14887
- comment: x,
14893
+ comment: U,
14888
14894
  replyingTo: A,
14889
14895
  handleReplyingTo: k,
14890
14896
  onFlag: Z,
@@ -14893,7 +14899,7 @@ const _s = ({ onClick: e, isDisabled: t, API_ENV: s, icon: a, handleGoogleLogin:
14893
14899
  API_ENV: o,
14894
14900
  texts: c
14895
14901
  },
14896
- x.id
14902
+ U.id
14897
14903
  )),
14898
14904
  N && se
14899
14905
  ]
@@ -15043,7 +15049,7 @@ const Iu = ({
15043
15049
  API_ENV: jn(s),
15044
15050
  texts: a
15045
15051
  }
15046
- ) })), Uu = ({
15052
+ ) })), xu = ({
15047
15053
  section: e,
15048
15054
  internalPath: t,
15049
15055
  stylesConfig: s,
@@ -15069,7 +15075,7 @@ const Iu = ({
15069
15075
  )
15070
15076
  }
15071
15077
  );
15072
- async function xu({
15078
+ async function Uu({
15073
15079
  publication: e,
15074
15080
  path: t,
15075
15081
  username: s,
@@ -15348,8 +15354,8 @@ const _a = async (e, t) => {
15348
15354
  }
15349
15355
  ) }), Pn = {
15350
15356
  banner: (e) => /* @__PURE__ */ n(ue, { ...e, name: e.slot_id.replace("Home", "block") }),
15351
- readest: (e) => /* @__PURE__ */ n(xs, { ...e }),
15352
- "Modulo 1x3": (e) => /* @__PURE__ */ n(Ua, { ...e }),
15357
+ readest: (e) => /* @__PURE__ */ n(Us, { ...e }),
15358
+ "Modulo 1x3": (e) => /* @__PURE__ */ n(xa, { ...e }),
15353
15359
  "Modulo 1x4": (e) => /* @__PURE__ */ n(hc, { ...e }),
15354
15360
  "Modulo 1x5": (e) => /* @__PURE__ */ n(fc, { ...e }),
15355
15361
  "Destacado noticias": (e) => /* @__PURE__ */ n(dc, { ...e }),
@@ -15613,7 +15619,7 @@ export {
15613
15619
  Zd as GenerateBody,
15614
15620
  $d as GenerateHead,
15615
15621
  du as Header,
15616
- Uc as HeaderSectionComponent,
15622
+ xc as HeaderSectionComponent,
15617
15623
  Ec as IframeHeader,
15618
15624
  Oo as ImageOffline,
15619
15625
  Ne as ImageOnline,
@@ -15627,11 +15633,11 @@ export {
15627
15633
  Ko as LiveBlogHeader,
15628
15634
  Xd as Location,
15629
15635
  Cu as LoginForm,
15630
- xd as MainComponentServices,
15636
+ Ud as MainComponentServices,
15631
15637
  za as Marfeel,
15632
- Uu as MasNoticiasLazyLoader,
15638
+ xu as MasNoticiasLazyLoader,
15633
15639
  et as MiddleSection,
15634
- Ua as Modulo1x3,
15640
+ xa as Modulo1x3,
15635
15641
  Ac as Modulo1x3Card,
15636
15642
  hc as Modulo1x4,
15637
15643
  fc as Modulo1x5,
@@ -15645,12 +15651,12 @@ export {
15645
15651
  ds as NewsContent,
15646
15652
  Je as NewsDescriptionComponent,
15647
15653
  al as News_Content,
15648
- xt as NextPrev,
15654
+ Ut as NextPrev,
15649
15655
  qr as OrgList,
15650
15656
  $s as PreloadImages,
15651
15657
  ms as REPORT_REASONS,
15652
15658
  gd as ReCaptchaRender,
15653
- xs as Readest,
15659
+ Us as Readest,
15654
15660
  yu as RegisterForm,
15655
15661
  Nu as ScriptHydrator,
15656
15662
  bu as SearchSection,
@@ -15660,7 +15666,7 @@ export {
15660
15666
  us as SectionCardServerComponent,
15661
15667
  pu as SectionServerComponent,
15662
15668
  pn as ShowSection,
15663
- xa as SocialNetworks,
15669
+ Ua as SocialNetworks,
15664
15670
  Lr as SpeculationRules,
15665
15671
  st as Spin,
15666
15672
  ku as StaticSlotWrapper,
@@ -15678,20 +15684,20 @@ export {
15678
15684
  Sc as VideoYoutubeHeader,
15679
15685
  Dr as VideosSchemas,
15680
15686
  Mr as WebsiteList,
15681
- xu as addComment,
15687
+ Uu as addComment,
15682
15688
  bs as bannersReplace,
15683
15689
  tt as becomeVideoObject,
15684
15690
  De as buildTagUrl,
15685
15691
  su as coloringByStrokeSVGs,
15686
15692
  js as compileStyleProps,
15687
15693
  Sd as createAssessment,
15688
- xe as cutString,
15694
+ Ue as cutString,
15689
15695
  jn as decodeApiEnv,
15690
15696
  Id as encodeApiEnv,
15691
15697
  ve as extractMainSlug,
15692
15698
  Ad as extractRealtedNews,
15693
15699
  rs as extractRelatedNews,
15694
- Ue as formatDate,
15700
+ xe as formatDate,
15695
15701
  pd as formatDateEdiciones,
15696
15702
  ws as formatDateJournalistArticule,
15697
15703
  lr as formatDateTimeline,
@@ -15709,7 +15715,7 @@ export {
15709
15715
  ct as getNextMeta,
15710
15716
  dt as getPage,
15711
15717
  fa as getPlayIcon,
15712
- Ud as getPreloadImages,
15718
+ xd as getPreloadImages,
15713
15719
  lt as getPrevMeta,
15714
15720
  Nd as getRelatedNewsCarrousel,
15715
15721
  Tu as getReportReasonLabel,
@@ -15734,7 +15740,7 @@ export {
15734
15740
  Yo as shareButtons,
15735
15741
  ks as socialIcons,
15736
15742
  Rr as speculationRules,
15737
- xr as speculationRulesHome,
15743
+ Ur as speculationRulesHome,
15738
15744
  He as toISOWithTimeZone,
15739
15745
  wr as urlReplaces,
15740
15746
  ga as usePlayIcon,