sass-template-common 0.1.65 → 0.1.66
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as a, jsxs as m, Fragment as J } from "react/jsx-runtime";
|
|
2
2
|
import * as qa from "react";
|
|
3
|
-
import
|
|
3
|
+
import xe, { useState as Y, useRef as Or, useCallback as he, useEffect as Me, createElement as st, forwardRef as Pr, Fragment as pn, useMemo as jo, Component as Qo } from "react";
|
|
4
4
|
let ta = {
|
|
5
5
|
PUBLIC_API_HOST: "https://dev-saas.cms-medios.com",
|
|
6
6
|
PUBLIC_API_FRONT: "https://dev-lahora.cms-medios.com",
|
|
@@ -78,7 +78,7 @@ const Go = () => {
|
|
|
78
78
|
newsType: e?.info?.type ?? "",
|
|
79
79
|
publishDate: new Date(e?.info?.date?.firstpublish ?? "").toISOString().split("T")[0] ?? ""
|
|
80
80
|
} : void 0, Ho = ({ id: e, dimensionValues: t = {} }) => {
|
|
81
|
-
const n =
|
|
81
|
+
const n = xe.useMemo(() => {
|
|
82
82
|
const o = {};
|
|
83
83
|
return Object.keys(t).forEach((s) => {
|
|
84
84
|
o[s] = s;
|
|
@@ -427,7 +427,7 @@ function Dr() {
|
|
|
427
427
|
})(sn)), sn.exports;
|
|
428
428
|
}
|
|
429
429
|
var $o = Dr();
|
|
430
|
-
const
|
|
430
|
+
const Ee = /* @__PURE__ */ Nt($o);
|
|
431
431
|
var cn = { exports: {} }, Yo = cn.exports, La;
|
|
432
432
|
function Ko() {
|
|
433
433
|
return La || (La = 1, (function(e, t) {
|
|
@@ -633,23 +633,23 @@ function ss() {
|
|
|
633
633
|
}
|
|
634
634
|
var is = ss();
|
|
635
635
|
const cs = /* @__PURE__ */ Nt(is);
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
636
|
+
Ee.extend(rs);
|
|
637
|
+
Ee.extend(cs);
|
|
638
|
+
Ee.extend(Zo);
|
|
639
639
|
const Nn = (e) => e === "en" ? "en" : "es", je = (e) => {
|
|
640
640
|
const { PUBLIC_LNG: t, DATE_TIMEZONE: n } = $(), r = Nn(t ?? "es");
|
|
641
|
-
return
|
|
641
|
+
return Ee.tz(e, n).locale(r).format("DD MMMM YYYY");
|
|
642
642
|
}, Mr = (e) => {
|
|
643
643
|
const { PUBLIC_LNG: t, DATE_TIMEZONE: n } = $(), r = Nn(t ?? "es");
|
|
644
|
-
return
|
|
644
|
+
return Ee.tz(e, n).locale(r).format(
|
|
645
645
|
r === "en" ? "MMMM DD YYYY [•] HH:mm [hs]" : "DD [de] MMMM YYYY [•] HH:mm [hs]"
|
|
646
646
|
);
|
|
647
647
|
}, ls = (e) => {
|
|
648
648
|
const { PUBLIC_LNG: t, DATE_TIMEZONE: n } = $(), r = Nn(t ?? "es");
|
|
649
|
-
return
|
|
649
|
+
return Ee.tz(e, n).locale(r).format("MM/DD/YYYY [•] HH:mm [HS]");
|
|
650
650
|
}, A9 = (e) => {
|
|
651
651
|
const { PUBLIC_LNG: t, DATE_TIMEZONE: n } = $(), r = Nn(t ?? "es");
|
|
652
|
-
return
|
|
652
|
+
return Ee.tz(e, n).locale(r).format("dddd DD [de] MMMM YYYY");
|
|
653
653
|
}, Qe = (e, t = 136) => e && e.length > t ? `${e.substring(0, t)}...` : e;
|
|
654
654
|
function ds(e) {
|
|
655
655
|
return e && e.status === "fulfilled" ? e.value.data : null;
|
|
@@ -1017,15 +1017,15 @@ const ys = () => {
|
|
|
1017
1017
|
let t = "";
|
|
1018
1018
|
if (e.params.news.match(/.*t[0-9]*.html/g)) {
|
|
1019
1019
|
const n = e.params.news.split("-"), r = n[n.length - 1] ?? "", o = r.substring(1, 9), s = r.substring(9, 13);
|
|
1020
|
-
t = `/listas/${
|
|
1020
|
+
t = `/listas/${Ee(o).format("YYYY/MM/DD")}/lista_${s}.html`;
|
|
1021
1021
|
} else if (e.params.news.match(/.*lb[0-9]*.html/g)) {
|
|
1022
1022
|
const n = e.params.news.split("-"), r = n[n.length - 1] ?? "", o = r.substring(2, 10), s = r.substring(10, 14);
|
|
1023
|
-
t = `/liveblog/${
|
|
1023
|
+
t = `/liveblog/${Ee(o).format(
|
|
1024
1024
|
"YYYY/MM/DD"
|
|
1025
1025
|
)}/liveblog_${s}.html`;
|
|
1026
1026
|
} else {
|
|
1027
1027
|
const r = e.params.news.replace(/\.html$/g, "").split("-");
|
|
1028
|
-
Array.isArray(r) && (t = `/contenidos/${
|
|
1028
|
+
Array.isArray(r) && (t = `/contenidos/${Ee(r[r.length - 2]).format(
|
|
1029
1029
|
"YYYY/MM/DD"
|
|
1030
1030
|
)}/noticia_${r[r.length - 1]}.html`);
|
|
1031
1031
|
}
|
|
@@ -1034,13 +1034,13 @@ const ys = () => {
|
|
|
1034
1034
|
function b9(e) {
|
|
1035
1035
|
const t = e.split("-"), n = t[t.length - 1]?.split("."), r = n && n[0] ? n[0] : "", o = r.substring(0, 2), s = r.substring(2, 10), i = r.substring(10);
|
|
1036
1036
|
return { path: {
|
|
1037
|
-
vy: (d) => `/videos/video-youtube/${
|
|
1037
|
+
vy: (d) => `/videos/video-youtube/${Ee(s).format(
|
|
1038
1038
|
"YYYY/MM/DD"
|
|
1039
1039
|
)}/videoYouTube_${d}.lnk`,
|
|
1040
|
-
ve: (d) => `/videos/video-embedded/${
|
|
1040
|
+
ve: (d) => `/videos/video-embedded/${Ee(s).format(
|
|
1041
1041
|
"YYYY/MM/DD"
|
|
1042
1042
|
)}/videoEmbedded_${d}.lnk`,
|
|
1043
|
-
vf: (d) => `/videos/video-flash/${
|
|
1043
|
+
vf: (d) => `/videos/video-flash/${Ee(s).format("YYYY/MM/DD")}/${t[0]}.${d}`
|
|
1044
1044
|
}[o]?.(i) ?? "", op: o };
|
|
1045
1045
|
}
|
|
1046
1046
|
const vt = (e, t) => {
|
|
@@ -1547,7 +1547,7 @@ function $r(e, t) {
|
|
|
1547
1547
|
return o;
|
|
1548
1548
|
return null;
|
|
1549
1549
|
}
|
|
1550
|
-
const
|
|
1550
|
+
const dt = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, Yr = (e) => !bt(e) && e !== dt;
|
|
1551
1551
|
function na() {
|
|
1552
1552
|
const { caseless: e, skipUndefined: t } = Yr(this) && this || {}, n = {}, r = (o, s) => {
|
|
1553
1553
|
const i = e && $r(n, s) || s;
|
|
@@ -1656,14 +1656,14 @@ const gi = (e) => {
|
|
|
1656
1656
|
return r;
|
|
1657
1657
|
};
|
|
1658
1658
|
return n(e, 0);
|
|
1659
|
-
}, pi = Oe("AsyncFunction"), Ai = (e) => e && (Gt(e) || Ce(e)) && Ce(e.then) && Ce(e.catch), Jr = ((e, t) => e ? setImmediate : t ? ((n, r) => (
|
|
1660
|
-
o ===
|
|
1659
|
+
}, pi = Oe("AsyncFunction"), Ai = (e) => e && (Gt(e) || Ce(e)) && Ce(e.then) && Ce(e.catch), Jr = ((e, t) => e ? setImmediate : t ? ((n, r) => (dt.addEventListener("message", ({ source: o, data: s }) => {
|
|
1660
|
+
o === dt && s === n && r.length && r.shift()();
|
|
1661
1661
|
}, !1), (o) => {
|
|
1662
|
-
r.push(o),
|
|
1662
|
+
r.push(o), dt.postMessage(n, "*");
|
|
1663
1663
|
}))(`axios@${Math.random()}`, []) : (n) => setTimeout(n))(
|
|
1664
1664
|
typeof setImmediate == "function",
|
|
1665
|
-
Ce(
|
|
1666
|
-
), wi = typeof queueMicrotask < "u" ? queueMicrotask.bind(
|
|
1665
|
+
Ce(dt.postMessage)
|
|
1666
|
+
), wi = typeof queueMicrotask < "u" ? queueMicrotask.bind(dt) : typeof process < "u" && process.nextTick || Jr, yi = (e) => e != null && Ce(e[Sn]), b = {
|
|
1667
1667
|
isArray: St,
|
|
1668
1668
|
isArrayBuffer: Fr,
|
|
1669
1669
|
isBuffer: Qt,
|
|
@@ -1713,7 +1713,7 @@ const gi = (e) => {
|
|
|
1713
1713
|
noop: hi,
|
|
1714
1714
|
toFiniteNumber: mi,
|
|
1715
1715
|
findKey: $r,
|
|
1716
|
-
global:
|
|
1716
|
+
global: dt,
|
|
1717
1717
|
isContextDefined: Yr,
|
|
1718
1718
|
isSpecCompliantForm: fi,
|
|
1719
1719
|
toJSONObject: gi,
|
|
@@ -2423,7 +2423,7 @@ function io(e, t, n) {
|
|
|
2423
2423
|
return e && (r || n == !1) ? $i(e, t) : t;
|
|
2424
2424
|
}
|
|
2425
2425
|
const Fa = (e) => e instanceof _e ? { ...e } : e;
|
|
2426
|
-
function
|
|
2426
|
+
function mt(e, t) {
|
|
2427
2427
|
t = t || {};
|
|
2428
2428
|
const n = {};
|
|
2429
2429
|
function r(l, u, h, f) {
|
|
@@ -2488,7 +2488,7 @@ function ht(e, t) {
|
|
|
2488
2488
|
}), n;
|
|
2489
2489
|
}
|
|
2490
2490
|
const co = (e) => {
|
|
2491
|
-
const t =
|
|
2491
|
+
const t = mt({}, e);
|
|
2492
2492
|
let { data: n, withXSRFToken: r, xsrfHeaderName: o, xsrfCookieName: s, headers: i, auth: c } = t;
|
|
2493
2493
|
if (t.headers = i = _e.from(i), t.url = no(io(t.baseURL, t.url, t.allowAbsoluteUrls), e.params, e.paramsSerializer), c && i.set(
|
|
2494
2494
|
"Authorization",
|
|
@@ -2931,7 +2931,7 @@ const fn = {
|
|
|
2931
2931
|
assertOptions: sc,
|
|
2932
2932
|
validators: In
|
|
2933
2933
|
}, Pe = fn.validators;
|
|
2934
|
-
let
|
|
2934
|
+
let ut = class {
|
|
2935
2935
|
constructor(t) {
|
|
2936
2936
|
this.defaults = t || {}, this.interceptors = {
|
|
2937
2937
|
request: new Ga(),
|
|
@@ -2964,7 +2964,7 @@ let dt = class {
|
|
|
2964
2964
|
}
|
|
2965
2965
|
}
|
|
2966
2966
|
_request(t, n) {
|
|
2967
|
-
typeof t == "string" ? (n = n || {}, n.url = t) : n = t || {}, n =
|
|
2967
|
+
typeof t == "string" ? (n = n || {}, n.url = t) : n = t || {}, n = mt(this.defaults, n);
|
|
2968
2968
|
const { transitional: r, paramsSerializer: o, headers: s } = n;
|
|
2969
2969
|
r !== void 0 && fn.assertOptions(r, {
|
|
2970
2970
|
silentJSONParsing: Pe.transitional(Pe.boolean),
|
|
@@ -3026,14 +3026,14 @@ let dt = class {
|
|
|
3026
3026
|
return u;
|
|
3027
3027
|
}
|
|
3028
3028
|
getUri(t) {
|
|
3029
|
-
t =
|
|
3029
|
+
t = mt(this.defaults, t);
|
|
3030
3030
|
const n = io(t.baseURL, t.url, t.allowAbsoluteUrls);
|
|
3031
3031
|
return no(n, t.params, t.paramsSerializer);
|
|
3032
3032
|
}
|
|
3033
3033
|
};
|
|
3034
3034
|
b.forEach(["delete", "get", "head", "options"], function(t) {
|
|
3035
|
-
|
|
3036
|
-
return this.request(
|
|
3035
|
+
ut.prototype[t] = function(n, r) {
|
|
3036
|
+
return this.request(mt(r || {}, {
|
|
3037
3037
|
method: t,
|
|
3038
3038
|
url: n,
|
|
3039
3039
|
data: (r || {}).data
|
|
@@ -3043,7 +3043,7 @@ b.forEach(["delete", "get", "head", "options"], function(t) {
|
|
|
3043
3043
|
b.forEach(["post", "put", "patch"], function(t) {
|
|
3044
3044
|
function n(r) {
|
|
3045
3045
|
return function(s, i, c) {
|
|
3046
|
-
return this.request(
|
|
3046
|
+
return this.request(mt(c || {}, {
|
|
3047
3047
|
method: t,
|
|
3048
3048
|
headers: r ? {
|
|
3049
3049
|
"Content-Type": "multipart/form-data"
|
|
@@ -3053,7 +3053,7 @@ b.forEach(["post", "put", "patch"], function(t) {
|
|
|
3053
3053
|
}));
|
|
3054
3054
|
};
|
|
3055
3055
|
}
|
|
3056
|
-
|
|
3056
|
+
ut.prototype[t] = n(), ut.prototype[t + "Form"] = n(!0);
|
|
3057
3057
|
});
|
|
3058
3058
|
let ic = class mo {
|
|
3059
3059
|
constructor(t) {
|
|
@@ -3211,13 +3211,13 @@ Object.entries(oa).forEach(([e, t]) => {
|
|
|
3211
3211
|
oa[t] = e;
|
|
3212
3212
|
});
|
|
3213
3213
|
function fo(e) {
|
|
3214
|
-
const t = new
|
|
3215
|
-
return b.extend(n,
|
|
3216
|
-
return fo(
|
|
3214
|
+
const t = new ut(e), n = Hr(ut.prototype.request, t);
|
|
3215
|
+
return b.extend(n, ut.prototype, t, { allOwnKeys: !0 }), b.extend(n, t, null, { allOwnKeys: !0 }), n.create = function(o) {
|
|
3216
|
+
return fo(mt(e, o));
|
|
3217
3217
|
}, n;
|
|
3218
3218
|
}
|
|
3219
3219
|
const oe = fo(Ht);
|
|
3220
|
-
oe.Axios =
|
|
3220
|
+
oe.Axios = ut;
|
|
3221
3221
|
oe.CanceledError = Et;
|
|
3222
3222
|
oe.CancelToken = ic;
|
|
3223
3223
|
oe.isCancel = oo;
|
|
@@ -3230,7 +3230,7 @@ oe.all = function(t) {
|
|
|
3230
3230
|
};
|
|
3231
3231
|
oe.spread = cc;
|
|
3232
3232
|
oe.isAxiosError = lc;
|
|
3233
|
-
oe.mergeConfig =
|
|
3233
|
+
oe.mergeConfig = mt;
|
|
3234
3234
|
oe.AxiosHeaders = _e;
|
|
3235
3235
|
oe.formToJSON = (e) => ro(b.isHTMLForm(e) ? new FormData(e) : e);
|
|
3236
3236
|
oe.getAdapter = uo.getAdapter;
|
|
@@ -4283,7 +4283,7 @@ function xt(e) {
|
|
|
4283
4283
|
}
|
|
4284
4284
|
const bc = "_content_3olxv_1", Cc = {
|
|
4285
4285
|
content: bc
|
|
4286
|
-
},
|
|
4286
|
+
}, ht = (e) => /* @__PURE__ */ a("div", { className: Cc.content, children: e.children }), _c = (e) => (e || "").replaceAll("[section_replace]", "").replaceAll("[tags_replace]", "").replaceAll("[url_replace]", "").replaceAll("[creator_replace]", ""), rt = ({ banners: e, index: t }) => {
|
|
4287
4287
|
if (!e || e.length === 0) return null;
|
|
4288
4288
|
const n = e.find((r) => r.key === `middle_${t}`);
|
|
4289
4289
|
return n?.value && n.show ? /* @__PURE__ */ a(
|
|
@@ -4563,7 +4563,7 @@ const Tt = (e) => {
|
|
|
4563
4563
|
}
|
|
4564
4564
|
),
|
|
4565
4565
|
/* @__PURE__ */ a(u, {}),
|
|
4566
|
-
|
|
4566
|
+
xe.createElement(
|
|
4567
4567
|
e.isTitle ? "h1" : "h2",
|
|
4568
4568
|
{
|
|
4569
4569
|
className: re.articule
|
|
@@ -4786,7 +4786,7 @@ const Tt = (e) => {
|
|
|
4786
4786
|
children: /* @__PURE__ */ a("div", { className: se.imagePlaceholder })
|
|
4787
4787
|
}
|
|
4788
4788
|
);
|
|
4789
|
-
},
|
|
4789
|
+
}, Ue = async (e) => {
|
|
4790
4790
|
const { preview: t } = e;
|
|
4791
4791
|
if (!t?.sizes || t.sizes.length === 0 || t.sizes.some((s) => !s.url))
|
|
4792
4792
|
return /* @__PURE__ */ a("div", { className: se.imageLogoPlaceholder });
|
|
@@ -4831,7 +4831,7 @@ const Tt = (e) => {
|
|
|
4831
4831
|
},
|
|
4832
4832
|
children: [
|
|
4833
4833
|
/* @__PURE__ */ a("div", { className: Jt.numberTag, children: r + 1 }),
|
|
4834
|
-
n.main.title.home && /* @__PURE__ */ a(
|
|
4834
|
+
n.main.title.home && /* @__PURE__ */ a(Ue, { preview: n.preview, priorityHigh: e.priorityHigh })
|
|
4835
4835
|
]
|
|
4836
4836
|
}
|
|
4837
4837
|
),
|
|
@@ -5804,7 +5804,7 @@ const Tt = (e) => {
|
|
|
5804
5804
|
]
|
|
5805
5805
|
}
|
|
5806
5806
|
);
|
|
5807
|
-
}, sl = "_content_6azvz_1", il = "_subscribeImage_6azvz_22", cl = "_tag_6azvz_32", ll = "_contentTitle_6azvz_50", dl = "_title_6azvz_55", ul = "_inputStyled_6azvz_72", hl = "_buttonStyled_6azvz_112", ml = "_contentTerms_6azvz_123", fl = "_subscribeText_6azvz_128", gl = "_terms_6azvz_138",
|
|
5807
|
+
}, sl = "_content_6azvz_1", il = "_subscribeImage_6azvz_22", cl = "_tag_6azvz_32", ll = "_contentTitle_6azvz_50", dl = "_title_6azvz_55", ul = "_inputStyled_6azvz_72", hl = "_buttonStyled_6azvz_112", ml = "_contentTerms_6azvz_123", fl = "_subscribeText_6azvz_128", gl = "_terms_6azvz_138", qe = {
|
|
5808
5808
|
content: sl,
|
|
5809
5809
|
subscribeImage: il,
|
|
5810
5810
|
tag: cl,
|
|
@@ -5841,14 +5841,14 @@ const Tt = (e) => {
|
|
|
5841
5841
|
htmlFor: e?.toggledrawerevent === "true" ? "side-bar-state" : ""
|
|
5842
5842
|
}
|
|
5843
5843
|
) : /* @__PURE__ */ a(L, { ...r, style: o });
|
|
5844
|
-
}, pl = (e) => /* @__PURE__ */ m("section", { className: [
|
|
5845
|
-
/* @__PURE__ */ a("div", { className:
|
|
5846
|
-
/* @__PURE__ */ a("div", { className:
|
|
5847
|
-
/* @__PURE__ */ m("div", { className:
|
|
5848
|
-
/* @__PURE__ */ a("p", { className:
|
|
5849
|
-
/* @__PURE__ */ a("p", { className:
|
|
5844
|
+
}, pl = (e) => /* @__PURE__ */ m("section", { className: [qe.content, e.className ?? ""].join(" "), children: [
|
|
5845
|
+
/* @__PURE__ */ a("div", { className: qe.subscribeImage, children: e.image }),
|
|
5846
|
+
/* @__PURE__ */ a("div", { className: qe.tag, children: e.texts.newsletterTag ?? "NEWS" }),
|
|
5847
|
+
/* @__PURE__ */ m("div", { className: qe.contentTitle, children: [
|
|
5848
|
+
/* @__PURE__ */ a("p", { className: qe.title, children: e.title }),
|
|
5849
|
+
/* @__PURE__ */ a("p", { className: qe.subTitle, children: e.sibtitle })
|
|
5850
5850
|
] }),
|
|
5851
|
-
/* @__PURE__ */ a("div", { className:
|
|
5851
|
+
/* @__PURE__ */ a("div", { className: qe.inputStyled, children: /* @__PURE__ */ a(
|
|
5852
5852
|
"input",
|
|
5853
5853
|
{
|
|
5854
5854
|
type: "email",
|
|
@@ -5856,12 +5856,12 @@ const Tt = (e) => {
|
|
|
5856
5856
|
id: "newsletter-email-column"
|
|
5857
5857
|
}
|
|
5858
5858
|
) }),
|
|
5859
|
-
/* @__PURE__ */ a(kn, { className:
|
|
5860
|
-
/* @__PURE__ */ m("div", { className:
|
|
5861
|
-
/* @__PURE__ */ a("p", { className:
|
|
5862
|
-
/* @__PURE__ */ a(L, { className:
|
|
5859
|
+
/* @__PURE__ */ a(kn, { className: qe.buttonStyled, size: "large", full: !0, children: e.texts.newsletterButtonText ?? "Suscribirme" }),
|
|
5860
|
+
/* @__PURE__ */ m("div", { className: qe.contentTerms, children: [
|
|
5861
|
+
/* @__PURE__ */ a("p", { className: qe.subscribeText, children: e.texts.newsletterTermsText ?? "Suscribirte implica aceptar los" }),
|
|
5862
|
+
/* @__PURE__ */ a(L, { className: qe.terms, children: e.texts.newsletterTermsAnchor ?? "Términos y condiciones" })
|
|
5863
5863
|
] })
|
|
5864
|
-
] }), Al = "_content_1ms2y_1", wl = "_contentInfo_1ms2y_20", yl = "_subscribeImage_1ms2y_28", vl = "_tag_1ms2y_42", bl = "_contentTitle_1ms2y_60", Cl = "_title_1ms2y_65", _l = "_subTitle_1ms2y_70", Nl = "_inputStyled_1ms2y_79", Sl = "_buttonStyled_1ms2y_118", El = "_contentTerms_1ms2y_131", xl = "_subscribeText_1ms2y_137", Tl = "_terms_1ms2y_146",
|
|
5864
|
+
] }), Al = "_content_1ms2y_1", wl = "_contentInfo_1ms2y_20", yl = "_subscribeImage_1ms2y_28", vl = "_tag_1ms2y_42", bl = "_contentTitle_1ms2y_60", Cl = "_title_1ms2y_65", _l = "_subTitle_1ms2y_70", Nl = "_inputStyled_1ms2y_79", Sl = "_buttonStyled_1ms2y_118", El = "_contentTerms_1ms2y_131", xl = "_subscribeText_1ms2y_137", Tl = "_terms_1ms2y_146", Te = {
|
|
5865
5865
|
content: Al,
|
|
5866
5866
|
contentInfo: wl,
|
|
5867
5867
|
subscribeImage: yl,
|
|
@@ -5874,15 +5874,15 @@ const Tt = (e) => {
|
|
|
5874
5874
|
contentTerms: El,
|
|
5875
5875
|
subscribeText: xl,
|
|
5876
5876
|
terms: Tl
|
|
5877
|
-
}, Il = (e) => /* @__PURE__ */ m("section", { className:
|
|
5878
|
-
/* @__PURE__ */ a("div", { className:
|
|
5879
|
-
/* @__PURE__ */ m("div", { className:
|
|
5880
|
-
/* @__PURE__ */ a("div", { className:
|
|
5881
|
-
/* @__PURE__ */ m("div", { className:
|
|
5882
|
-
/* @__PURE__ */ a("p", { className:
|
|
5883
|
-
/* @__PURE__ */ a("p", { className:
|
|
5877
|
+
}, Il = (e) => /* @__PURE__ */ m("section", { className: Te.content, children: [
|
|
5878
|
+
/* @__PURE__ */ a("div", { className: Te.subscribeImage, children: e.image }),
|
|
5879
|
+
/* @__PURE__ */ m("div", { className: Te.contentInfo, children: [
|
|
5880
|
+
/* @__PURE__ */ a("div", { className: Te.tag, children: e.texts.newsletterTag ?? "NEWS" }),
|
|
5881
|
+
/* @__PURE__ */ m("div", { className: Te.contentTitle, children: [
|
|
5882
|
+
/* @__PURE__ */ a("p", { className: Te.title, children: e.title }),
|
|
5883
|
+
/* @__PURE__ */ a("p", { className: Te.subTitle, children: e.sibtitle })
|
|
5884
5884
|
] }),
|
|
5885
|
-
/* @__PURE__ */ m("div", { className:
|
|
5885
|
+
/* @__PURE__ */ m("div", { className: Te.inputStyled, children: [
|
|
5886
5886
|
/* @__PURE__ */ a(
|
|
5887
5887
|
"input",
|
|
5888
5888
|
{
|
|
@@ -5891,11 +5891,11 @@ const Tt = (e) => {
|
|
|
5891
5891
|
id: "newsletter-email"
|
|
5892
5892
|
}
|
|
5893
5893
|
),
|
|
5894
|
-
/* @__PURE__ */ a(kn, { className:
|
|
5894
|
+
/* @__PURE__ */ a(kn, { className: Te.buttonStyled, size: "large", full: !0, children: e.texts.newsletterButtonText ?? "Suscribirme" })
|
|
5895
5895
|
] }),
|
|
5896
|
-
/* @__PURE__ */ m("div", { className:
|
|
5897
|
-
/* @__PURE__ */ a("p", { className:
|
|
5898
|
-
/* @__PURE__ */ a(L, { className:
|
|
5896
|
+
/* @__PURE__ */ m("div", { className: Te.contentTerms, children: [
|
|
5897
|
+
/* @__PURE__ */ a("p", { className: Te.subscribeText, children: e.texts.newsletterTermsText ?? "Suscribirte implica aceptar los" }),
|
|
5898
|
+
/* @__PURE__ */ a(L, { className: Te.terms, children: e.texts.newsletterTermsAnchor ?? "Términos y condiciones" })
|
|
5899
5899
|
] })
|
|
5900
5900
|
] })
|
|
5901
5901
|
] }), kl = (e) => /* @__PURE__ */ m(
|
|
@@ -6650,7 +6650,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6650
6650
|
href: r?.link?.url,
|
|
6651
6651
|
target: r?.link?.target,
|
|
6652
6652
|
children: /* @__PURE__ */ a(
|
|
6653
|
-
|
|
6653
|
+
Ue,
|
|
6654
6654
|
{
|
|
6655
6655
|
preview: o,
|
|
6656
6656
|
isVideo: i,
|
|
@@ -6678,7 +6678,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6678
6678
|
]
|
|
6679
6679
|
}
|
|
6680
6680
|
);
|
|
6681
|
-
}, n1 = "_content_14xk9_1", a1 = "_boxInformation_14xk9_12", r1 = "_titleGradient_14xk9_30", o1 = "_sectionDescription_14xk9_58", s1 = "_articule_14xk9_83", i1 = "_linkStyled_14xk9_116",
|
|
6681
|
+
}, n1 = "_content_14xk9_1", a1 = "_boxInformation_14xk9_12", r1 = "_titleGradient_14xk9_30", o1 = "_sectionDescription_14xk9_58", s1 = "_articule_14xk9_83", i1 = "_linkStyled_14xk9_116", et = {
|
|
6682
6682
|
content: n1,
|
|
6683
6683
|
boxInformation: a1,
|
|
6684
6684
|
titleGradient: r1,
|
|
@@ -6695,20 +6695,20 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6695
6695
|
} = e, { SHOW_TAG_BY_SECTION: i } = $(), c = () => {
|
|
6696
6696
|
if (i && e.keywords?.tags?.length && e.keywords.tags.length > 0) {
|
|
6697
6697
|
const d = e.keywords.tags[0], l = d.name;
|
|
6698
|
-
return /* @__PURE__ */ a(
|
|
6698
|
+
return d.approved ? /* @__PURE__ */ a(
|
|
6699
6699
|
L,
|
|
6700
6700
|
{
|
|
6701
6701
|
"aria-label": l,
|
|
6702
|
-
className:
|
|
6702
|
+
className: et.sectionDescription,
|
|
6703
6703
|
href: vt(d, e.paths),
|
|
6704
6704
|
children: l
|
|
6705
6705
|
}
|
|
6706
|
-
);
|
|
6706
|
+
) : /* @__PURE__ */ a("div", { className: et.sectionDescription, children: l });
|
|
6707
6707
|
} else if (e.info?.section?.url)
|
|
6708
6708
|
return /* @__PURE__ */ a(
|
|
6709
6709
|
L,
|
|
6710
6710
|
{
|
|
6711
|
-
className:
|
|
6711
|
+
className: et.sectionDescription,
|
|
6712
6712
|
href: e?.info?.link?.url,
|
|
6713
6713
|
target: e?.info?.link?.target,
|
|
6714
6714
|
children: e.main?.title?.section
|
|
@@ -6716,22 +6716,22 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6716
6716
|
);
|
|
6717
6717
|
return null;
|
|
6718
6718
|
};
|
|
6719
|
-
return /* @__PURE__ */ m("section", { className:
|
|
6719
|
+
return /* @__PURE__ */ m("section", { className: et.content, children: [
|
|
6720
6720
|
/* @__PURE__ */ a(
|
|
6721
6721
|
L,
|
|
6722
6722
|
{
|
|
6723
6723
|
title: r?.title?.section,
|
|
6724
6724
|
href: n.link.url,
|
|
6725
6725
|
target: n.link.target,
|
|
6726
|
-
children: /* @__PURE__ */ a(
|
|
6726
|
+
children: /* @__PURE__ */ a(Ue, { preview: e.preview, isVideo: t })
|
|
6727
6727
|
}
|
|
6728
6728
|
),
|
|
6729
6729
|
/* @__PURE__ */ m(
|
|
6730
6730
|
"div",
|
|
6731
6731
|
{
|
|
6732
6732
|
className: [
|
|
6733
|
-
|
|
6734
|
-
s ?
|
|
6733
|
+
et.boxInformation,
|
|
6734
|
+
s ? et.titleGradient : ""
|
|
6735
6735
|
].join(" "),
|
|
6736
6736
|
style: {
|
|
6737
6737
|
width: o !== "default" ? "90%" : "",
|
|
@@ -6740,10 +6740,10 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6740
6740
|
},
|
|
6741
6741
|
children: [
|
|
6742
6742
|
/* @__PURE__ */ a(c, {}),
|
|
6743
|
-
/* @__PURE__ */ a("h2", { className:
|
|
6743
|
+
/* @__PURE__ */ a("h2", { className: et.articule, children: /* @__PURE__ */ a(
|
|
6744
6744
|
L,
|
|
6745
6745
|
{
|
|
6746
|
-
className:
|
|
6746
|
+
className: et.linkStyled,
|
|
6747
6747
|
href: e?.info?.link?.url,
|
|
6748
6748
|
target: e?.info?.link?.target,
|
|
6749
6749
|
children: e.main?.title?.section
|
|
@@ -6756,7 +6756,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6756
6756
|
}, c1 = "_content_kro73_1", l1 = "_contentLayout_kro73_5", or = {
|
|
6757
6757
|
content: c1,
|
|
6758
6758
|
contentLayout: l1
|
|
6759
|
-
}, sr = (e) => /* @__PURE__ */ a("div", { className: or.content, children: /* @__PURE__ */ a(Vt, { className: `${or.contentLayout} ${e.className}`, children: e.children }) }), d1 = "_content_1nqra_1", u1 = "_before_1nqra_11", h1 = "_textContent_1nqra_22", m1 = "_title_1nqra_37", f1 = "_description_1nqra_46", g1 = "_linkStyled_1nqra_57",
|
|
6759
|
+
}, sr = (e) => /* @__PURE__ */ a("div", { className: or.content, children: /* @__PURE__ */ a(Vt, { className: `${or.contentLayout} ${e.className}`, children: e.children }) }), d1 = "_content_1nqra_1", u1 = "_before_1nqra_11", h1 = "_textContent_1nqra_22", m1 = "_title_1nqra_37", f1 = "_description_1nqra_46", g1 = "_linkStyled_1nqra_57", gt = {
|
|
6760
6760
|
content: d1,
|
|
6761
6761
|
before: u1,
|
|
6762
6762
|
textContent: h1,
|
|
@@ -6765,13 +6765,13 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6765
6765
|
linkStyled: g1
|
|
6766
6766
|
}, X9 = (e) => {
|
|
6767
6767
|
const t = e.logo;
|
|
6768
|
-
return /* @__PURE__ */ m("section", { className:
|
|
6769
|
-
e.backgroundImgURL && /* @__PURE__ */ a("img", { className:
|
|
6770
|
-
/* @__PURE__ */ m("div", { className: `${
|
|
6768
|
+
return /* @__PURE__ */ m("section", { className: gt.content, children: [
|
|
6769
|
+
e.backgroundImgURL && /* @__PURE__ */ a("img", { className: gt.before, src: e.backgroundImgURL, alt: "" }),
|
|
6770
|
+
/* @__PURE__ */ m("div", { className: `${gt.textContent} error-text-content`, children: [
|
|
6771
6771
|
/* @__PURE__ */ a(t, {}),
|
|
6772
|
-
/* @__PURE__ */ a("p", { className:
|
|
6773
|
-
/* @__PURE__ */ a("p", { className:
|
|
6774
|
-
/* @__PURE__ */ a(L, { className:
|
|
6772
|
+
/* @__PURE__ */ a("p", { className: gt.title, children: e.title }),
|
|
6773
|
+
/* @__PURE__ */ a("p", { className: gt.description, children: e.description }),
|
|
6774
|
+
/* @__PURE__ */ a(L, { className: gt.linkStyled, href: "/", children: e.buttonText ?? "Inicio" })
|
|
6775
6775
|
] })
|
|
6776
6776
|
] });
|
|
6777
6777
|
}, p1 = "_content_zxcog_1", A1 = "_contentLabel_zxcog_8", w1 = "_label_zxcog_13", y1 = "_required_zxcog_22", v1 = "_input_zxcog_28", Ut = {
|
|
@@ -6808,7 +6808,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6808
6808
|
}, n3 = (e) => /* @__PURE__ */ m("div", { className: Dn.content, children: [
|
|
6809
6809
|
/* @__PURE__ */ a("label", { className: Dn.label, children: e.label }),
|
|
6810
6810
|
/* @__PURE__ */ a("textarea", { className: Dn.input, ...e })
|
|
6811
|
-
] }), I1 = "_boxInformation_achvw_1", k1 = "_textBox_achvw_30", U1 = "_contentBox_achvw_40", q1 = "_liveBox_achvw_50", R1 = "_dot_achvw_72", L1 = "_sectionDescription_achvw_97", B1 = "_articule_achvw_110", O1 = "_description_achvw_137",
|
|
6811
|
+
] }), I1 = "_boxInformation_achvw_1", k1 = "_textBox_achvw_30", U1 = "_contentBox_achvw_40", q1 = "_liveBox_achvw_50", R1 = "_dot_achvw_72", L1 = "_sectionDescription_achvw_97", B1 = "_articule_achvw_110", O1 = "_description_achvw_137", tt = {
|
|
6812
6812
|
boxInformation: I1,
|
|
6813
6813
|
textBox: k1,
|
|
6814
6814
|
contentBox: U1,
|
|
@@ -6823,31 +6823,31 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6823
6823
|
}, yo = (e) => {
|
|
6824
6824
|
let t = "";
|
|
6825
6825
|
return e.preview.description && (t = e.preview.description), e.preview.copyright && (t = `${t} ${e.preview.copyright}`), e.preview.photographer && (t = `${t} ${e.preview.photographer}`), /* @__PURE__ */ m("div", { className: bn.content, children: [
|
|
6826
|
-
/* @__PURE__ */ a(
|
|
6826
|
+
/* @__PURE__ */ a(Ue, { preview: e.preview, isLarge: !0, priorityHigh: !0 }),
|
|
6827
6827
|
t && /* @__PURE__ */ a("div", { className: bn.description, children: t })
|
|
6828
6828
|
] });
|
|
6829
|
-
}, M1 = (e) => /* @__PURE__ */ a(J, { children: /* @__PURE__ */ m("div", { className:
|
|
6829
|
+
}, M1 = (e) => /* @__PURE__ */ a(J, { children: /* @__PURE__ */ m("div", { className: tt.boxInformation, children: [
|
|
6830
6830
|
/* @__PURE__ */ a(yo, { preview: e.preview }),
|
|
6831
|
-
/* @__PURE__ */ m("div", { className:
|
|
6832
|
-
/* @__PURE__ */ m("div", { className:
|
|
6831
|
+
/* @__PURE__ */ m("div", { className: tt.textBox, children: [
|
|
6832
|
+
/* @__PURE__ */ m("div", { className: tt.contentBox, children: [
|
|
6833
6833
|
e?.info?.section && /* @__PURE__ */ a(
|
|
6834
6834
|
L,
|
|
6835
6835
|
{
|
|
6836
|
-
className:
|
|
6836
|
+
className: tt.sectionDescription,
|
|
6837
6837
|
href: e?.info?.section?.url,
|
|
6838
6838
|
children: e?.info?.section?.name
|
|
6839
6839
|
}
|
|
6840
6840
|
),
|
|
6841
|
-
/* @__PURE__ */ m("div", { className:
|
|
6842
|
-
/* @__PURE__ */ a("span", { className:
|
|
6841
|
+
/* @__PURE__ */ m("div", { className: tt.liveBox, children: [
|
|
6842
|
+
/* @__PURE__ */ a("span", { className: tt.dot }),
|
|
6843
6843
|
/* @__PURE__ */ a("p", { children: "EN VIVO" })
|
|
6844
6844
|
] })
|
|
6845
6845
|
] }),
|
|
6846
|
-
/* @__PURE__ */ a("h1", { className:
|
|
6846
|
+
/* @__PURE__ */ a("h1", { className: tt.articule, children: e.main?.title?.section }),
|
|
6847
6847
|
e.config?.showsubtitle && /* @__PURE__ */ a(
|
|
6848
6848
|
"div",
|
|
6849
6849
|
{
|
|
6850
|
-
className:
|
|
6850
|
+
className: tt.description,
|
|
6851
6851
|
style: {
|
|
6852
6852
|
"--fontSizeSubTitle": e.fontSizeSubTitle,
|
|
6853
6853
|
"--lineHeightSubTitle": e.lineHeightSubTitle
|
|
@@ -6864,7 +6864,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6864
6864
|
}, H1 = (e) => /* @__PURE__ */ a("section", { className: Xt.content, children: e.itemList[0]?.list.items.map((t, n) => /* @__PURE__ */ m("div", { className: Xt.contentLine, children: [
|
|
6865
6865
|
/* @__PURE__ */ a(L, { className: Xt.dateLink, href: `#item-${n + 1}`, children: ls(t.date) }),
|
|
6866
6866
|
/* @__PURE__ */ a("div", { className: Xt.contentText, children: (e.itemList[0]?.list.integrated, t.title) })
|
|
6867
|
-
] }, n)) }), V1 = "_content_w8a84_1", F1 = "_contentInfo_w8a84_11", W1 = "_imageStyled_w8a84_19", $1 = "_contentIconStyled_w8a84_30", Y1 = "_name_w8a84_56", K1 = "_email_w8a84_65", J1 = "_description_w8a84_81", Z1 = "_contenSocialNetwork_w8a84_93", X1 = "_socialIcon_w8a84_103",
|
|
6867
|
+
] }, n)) }), V1 = "_content_w8a84_1", F1 = "_contentInfo_w8a84_11", W1 = "_imageStyled_w8a84_19", $1 = "_contentIconStyled_w8a84_30", Y1 = "_name_w8a84_56", K1 = "_email_w8a84_65", J1 = "_description_w8a84_81", Z1 = "_contenSocialNetwork_w8a84_93", X1 = "_socialIcon_w8a84_103", Ie = {
|
|
6868
6868
|
content: V1,
|
|
6869
6869
|
contentInfo: F1,
|
|
6870
6870
|
imageStyled: W1,
|
|
@@ -6879,29 +6879,29 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6879
6879
|
return /* @__PURE__ */ a(
|
|
6880
6880
|
"section",
|
|
6881
6881
|
{
|
|
6882
|
-
className: `${
|
|
6883
|
-
children: /* @__PURE__ */ m("div", { className:
|
|
6882
|
+
className: `${Ie.content} ${e.className ? e.className : null}`,
|
|
6883
|
+
children: /* @__PURE__ */ m("div", { className: Ie.contentInfo, children: [
|
|
6884
6884
|
t.info.image ? /* @__PURE__ */ a(
|
|
6885
6885
|
"img",
|
|
6886
6886
|
{
|
|
6887
6887
|
fetchPriority: "low",
|
|
6888
6888
|
loading: "lazy",
|
|
6889
6889
|
alt: "",
|
|
6890
|
-
className:
|
|
6890
|
+
className: Ie.imageStyled,
|
|
6891
6891
|
src: await pe(t.info.image.sizes[0]?.url || "")
|
|
6892
6892
|
}
|
|
6893
|
-
) : /* @__PURE__ */ a("div", { className:
|
|
6894
|
-
/* @__PURE__ */ a("h1", { className:
|
|
6895
|
-
t.addtional.USER_SHOWEMAIL && /* @__PURE__ */ a("p", { className:
|
|
6896
|
-
t.addtional.USER_SHOWBIO && /* @__PURE__ */ a("p", { className:
|
|
6897
|
-
/* @__PURE__ */ m("div", { className:
|
|
6893
|
+
) : /* @__PURE__ */ a("div", { className: Ie.contentIconStyled, children: /* @__PURE__ */ a(r, {}) }),
|
|
6894
|
+
/* @__PURE__ */ a("h1", { className: Ie.name, children: t.info.fullname }),
|
|
6895
|
+
t.addtional.USER_SHOWEMAIL && /* @__PURE__ */ a("p", { className: Ie.email, children: t.info.email }),
|
|
6896
|
+
t.addtional.USER_SHOWBIO && /* @__PURE__ */ a("p", { className: Ie.description, children: t.addtional.USER_MIBIO }),
|
|
6897
|
+
/* @__PURE__ */ m("div", { className: Ie.contenSocialNetwork, children: [
|
|
6898
6898
|
t.addtional.USER_USERFB && /* @__PURE__ */ a(
|
|
6899
6899
|
"a",
|
|
6900
6900
|
{
|
|
6901
6901
|
href: t.addtional.USER_USERFB,
|
|
6902
6902
|
target: "_blank",
|
|
6903
6903
|
rel: "noreferrer",
|
|
6904
|
-
children: /* @__PURE__ */ a(Ca, { className:
|
|
6904
|
+
children: /* @__PURE__ */ a(Ca, { className: Ie.socialIcon })
|
|
6905
6905
|
}
|
|
6906
6906
|
),
|
|
6907
6907
|
t.addtional.USER_USERIG && /* @__PURE__ */ a(
|
|
@@ -6910,7 +6910,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6910
6910
|
href: t.addtional.USER_USERIG,
|
|
6911
6911
|
target: "_blank",
|
|
6912
6912
|
rel: "noreferrer",
|
|
6913
|
-
children: /* @__PURE__ */ a(_a, { className:
|
|
6913
|
+
children: /* @__PURE__ */ a(_a, { className: Ie.socialIcon })
|
|
6914
6914
|
}
|
|
6915
6915
|
),
|
|
6916
6916
|
t.addtional.USER_USERTWT && /* @__PURE__ */ a(
|
|
@@ -6919,7 +6919,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6919
6919
|
href: t.addtional.USER_USERTWT,
|
|
6920
6920
|
target: "_blank",
|
|
6921
6921
|
rel: "noreferrer",
|
|
6922
|
-
children: /* @__PURE__ */ a(jt, { className:
|
|
6922
|
+
children: /* @__PURE__ */ a(jt, { className: Ie.socialIcon })
|
|
6923
6923
|
}
|
|
6924
6924
|
),
|
|
6925
6925
|
t.addtional.USER_USERLIN && /* @__PURE__ */ a(
|
|
@@ -6928,7 +6928,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
6928
6928
|
href: t.addtional.USER_USERLIN,
|
|
6929
6929
|
target: "_blank",
|
|
6930
6930
|
rel: "noreferrer",
|
|
6931
|
-
children: /* @__PURE__ */ a(yn, { className:
|
|
6931
|
+
children: /* @__PURE__ */ a(yn, { className: Ie.socialIcon })
|
|
6932
6932
|
}
|
|
6933
6933
|
)
|
|
6934
6934
|
] })
|
|
@@ -7031,7 +7031,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7031
7031
|
),
|
|
7032
7032
|
e.banner
|
|
7033
7033
|
] })
|
|
7034
|
-
] }), fu = "_content_1jqwg_1", gu = "_header_1jqwg_21", pu = "_videos_1jqwg_46", Au = "_videoContent_1jqwg_53", wu = "_articleSection_1jqwg_60", yu = "_contentLayoutVideoSection_1jqwg_74", vu = "_sectionVideoList_1jqwg_82", bu = "_iframeStyled_1jqwg_155", Cu = "_contentFrame_1jqwg_164", _u = "_relatedTitle_1jqwg_189",
|
|
7034
|
+
] }), fu = "_content_1jqwg_1", gu = "_header_1jqwg_21", pu = "_videos_1jqwg_46", Au = "_videoContent_1jqwg_53", wu = "_articleSection_1jqwg_60", yu = "_contentLayoutVideoSection_1jqwg_74", vu = "_sectionVideoList_1jqwg_82", bu = "_iframeStyled_1jqwg_155", Cu = "_contentFrame_1jqwg_164", _u = "_relatedTitle_1jqwg_189", Re = {
|
|
7035
7035
|
content: fu,
|
|
7036
7036
|
header: gu,
|
|
7037
7037
|
videos: pu,
|
|
@@ -7073,8 +7073,8 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7073
7073
|
),
|
|
7074
7074
|
/* @__PURE__ */ a("div", { children: /* @__PURE__ */ a(Tt, { ...t, paths: e.paths }) })
|
|
7075
7075
|
] }) : null;
|
|
7076
|
-
}, a3 = (e) => /* @__PURE__ */ a("div", { className:
|
|
7077
|
-
/* @__PURE__ */ m("a", { className:
|
|
7076
|
+
}, a3 = (e) => /* @__PURE__ */ a("div", { className: Re.content, children: /* @__PURE__ */ m(Vt, { className: Re.contentLayoutVideoSection, children: [
|
|
7077
|
+
/* @__PURE__ */ m("a", { className: Re.header, href: "/", children: [
|
|
7078
7078
|
/* @__PURE__ */ a(
|
|
7079
7079
|
"svg",
|
|
7080
7080
|
{
|
|
@@ -7096,12 +7096,12 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7096
7096
|
),
|
|
7097
7097
|
"VOLVER A VIDEOS"
|
|
7098
7098
|
] }),
|
|
7099
|
-
/* @__PURE__ */ m("div", { className:
|
|
7100
|
-
/* @__PURE__ */ m("div", { className:
|
|
7099
|
+
/* @__PURE__ */ m("div", { className: Re.videos, children: [
|
|
7100
|
+
/* @__PURE__ */ m("div", { className: Re.videoContent, style: e.mainVideoStyles, children: [
|
|
7101
7101
|
e.type === "vy" && /* @__PURE__ */ a(
|
|
7102
7102
|
"iframe",
|
|
7103
7103
|
{
|
|
7104
|
-
className:
|
|
7104
|
+
className: Re.iframeStyled,
|
|
7105
7105
|
src: `https://www.youtube.com/embed/${e.video?.main?.code}`,
|
|
7106
7106
|
frameBorder: "0",
|
|
7107
7107
|
allowFullScreen: !0
|
|
@@ -7110,7 +7110,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7110
7110
|
e.type === "vf" && /* @__PURE__ */ a(
|
|
7111
7111
|
"iframe",
|
|
7112
7112
|
{
|
|
7113
|
-
className:
|
|
7113
|
+
className: Re.iframeStyled,
|
|
7114
7114
|
src: e.video?.main?.code,
|
|
7115
7115
|
frameBorder: "0",
|
|
7116
7116
|
allowFullScreen: !0
|
|
@@ -7119,11 +7119,11 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7119
7119
|
e.type === "ve" && /* @__PURE__ */ a(
|
|
7120
7120
|
"div",
|
|
7121
7121
|
{
|
|
7122
|
-
className:
|
|
7122
|
+
className: Re.contentFrame,
|
|
7123
7123
|
dangerouslySetInnerHTML: { __html: e.video?.main?.code }
|
|
7124
7124
|
}
|
|
7125
7125
|
),
|
|
7126
|
-
/* @__PURE__ */ a("div", { className:
|
|
7126
|
+
/* @__PURE__ */ a("div", { className: Re.articleSection, children: /* @__PURE__ */ a(
|
|
7127
7127
|
Tt,
|
|
7128
7128
|
{
|
|
7129
7129
|
...Mt(
|
|
@@ -7138,7 +7138,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7138
7138
|
/* @__PURE__ */ m(
|
|
7139
7139
|
"div",
|
|
7140
7140
|
{
|
|
7141
|
-
className:
|
|
7141
|
+
className: Re.sectionVideoList,
|
|
7142
7142
|
style: e.listVideoStyles,
|
|
7143
7143
|
children: [
|
|
7144
7144
|
e.banner && /* @__PURE__ */ a(
|
|
@@ -7148,8 +7148,8 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7148
7148
|
name: e.banner.bannerName
|
|
7149
7149
|
}
|
|
7150
7150
|
),
|
|
7151
|
-
e.relatedName && /* @__PURE__ */ a("h2", { className:
|
|
7152
|
-
Array.isArray(e.videoList) && e.videoList.map((t, n) => /* @__PURE__ */
|
|
7151
|
+
e.relatedName && /* @__PURE__ */ a("h2", { className: Re.relatedTitle, children: e.relatedName }),
|
|
7152
|
+
Array.isArray(e.videoList) && e.videoList.map((t, n) => /* @__PURE__ */ st(
|
|
7153
7153
|
xu,
|
|
7154
7154
|
{
|
|
7155
7155
|
...Mt(t, !0, !1),
|
|
@@ -7513,7 +7513,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7513
7513
|
i
|
|
7514
7514
|
)) })
|
|
7515
7515
|
] });
|
|
7516
|
-
}, vh = "_headerStyled_t61zq_1", bh = "_headerContent_t61zq_14", Ch = "_iconContent_t61zq_25", _h = "_menuButton_t61zq_34", Nh = "_logoStyled_t61zq_66", Sh = "_buttonSection_t61zq_94", Eh = "_buttonSectionSearch_t61zq_109", xh = "_headLineContent_t61zq_130", Th = "_headLineTitle_t61zq_143", Ih = "_headLine_t61zq_130", kh = "_hasAlertZone_t61zq_196",
|
|
7516
|
+
}, vh = "_headerStyled_t61zq_1", bh = "_headerContent_t61zq_14", Ch = "_iconContent_t61zq_25", _h = "_menuButton_t61zq_34", Nh = "_logoStyled_t61zq_66", Sh = "_buttonSection_t61zq_94", Eh = "_buttonSectionSearch_t61zq_109", xh = "_headLineContent_t61zq_130", Th = "_headLineTitle_t61zq_143", Ih = "_headLine_t61zq_130", kh = "_hasAlertZone_t61zq_196", ke = {
|
|
7517
7517
|
headerStyled: vh,
|
|
7518
7518
|
headerContent: bh,
|
|
7519
7519
|
iconContent: Ch,
|
|
@@ -7527,7 +7527,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7527
7527
|
hasAlertZone: kh
|
|
7528
7528
|
}, Uh = (e) => {
|
|
7529
7529
|
const { alertZone: t } = e;
|
|
7530
|
-
return /* @__PURE__ */ m("header", { className:
|
|
7530
|
+
return /* @__PURE__ */ m("header", { className: ke.headerStyled, children: [
|
|
7531
7531
|
e.socialIcons && /* @__PURE__ */ a(
|
|
7532
7532
|
yh,
|
|
7533
7533
|
{
|
|
@@ -7537,12 +7537,12 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7537
7537
|
socials: e.socials
|
|
7538
7538
|
}
|
|
7539
7539
|
),
|
|
7540
|
-
/* @__PURE__ */ m("div", { className: `${
|
|
7540
|
+
/* @__PURE__ */ m("div", { className: `${ke.headerContent} center-mobile-header-icon`, children: [
|
|
7541
7541
|
/* @__PURE__ */ a(
|
|
7542
7542
|
kn,
|
|
7543
7543
|
{
|
|
7544
7544
|
id: "button-app",
|
|
7545
|
-
className:
|
|
7545
|
+
className: ke.menuButton,
|
|
7546
7546
|
toggledrawerevent: "true",
|
|
7547
7547
|
"aria-label": "menu",
|
|
7548
7548
|
"aria-labelledby": "menu",
|
|
@@ -7550,7 +7550,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7550
7550
|
children: /* @__PURE__ */ a(
|
|
7551
7551
|
bo,
|
|
7552
7552
|
{
|
|
7553
|
-
className:
|
|
7553
|
+
className: ke.startIcon,
|
|
7554
7554
|
color: "var(--header-icons)",
|
|
7555
7555
|
width: 27,
|
|
7556
7556
|
height: 27
|
|
@@ -7558,26 +7558,26 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7558
7558
|
)
|
|
7559
7559
|
}
|
|
7560
7560
|
),
|
|
7561
|
-
/* @__PURE__ */ a("div", { className:
|
|
7561
|
+
/* @__PURE__ */ a("div", { className: ke.iconContent, children: /* @__PURE__ */ a(
|
|
7562
7562
|
L,
|
|
7563
7563
|
{
|
|
7564
7564
|
href: "/",
|
|
7565
7565
|
"aria-label": "Home",
|
|
7566
7566
|
className: "icon header-logo-link-sticky",
|
|
7567
7567
|
style: { display: "flex" },
|
|
7568
|
-
children:
|
|
7568
|
+
children: xe.createElement(
|
|
7569
7569
|
"span",
|
|
7570
|
-
{ className:
|
|
7570
|
+
{ className: ke.logoStyled },
|
|
7571
7571
|
e.icon
|
|
7572
7572
|
)
|
|
7573
7573
|
}
|
|
7574
7574
|
) }),
|
|
7575
|
-
!e.showAlertPop && t?.data && /* @__PURE__ */ m("div", { className:
|
|
7576
|
-
/* @__PURE__ */ a("div", { className: `${
|
|
7575
|
+
!e.showAlertPop && t?.data && /* @__PURE__ */ m("div", { className: ke.headLineContent, children: [
|
|
7576
|
+
/* @__PURE__ */ a("div", { className: `${ke.headLineTitle} headLineTitle`, children: t.entity.description ? `${t.entity.description}` : "" }),
|
|
7577
7577
|
/* @__PURE__ */ a(
|
|
7578
7578
|
L,
|
|
7579
7579
|
{
|
|
7580
|
-
className:
|
|
7580
|
+
className: ke.headLine,
|
|
7581
7581
|
href: t.data[0]?.info.link.url,
|
|
7582
7582
|
target: t.data[0]?.info.link.target,
|
|
7583
7583
|
title: t.data[0]?.main.title.home,
|
|
@@ -7590,8 +7590,8 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7590
7590
|
{
|
|
7591
7591
|
style: e.showAlertPop ? { marginLeft: "auto" } : {},
|
|
7592
7592
|
className: [
|
|
7593
|
-
|
|
7594
|
-
t?.data ?
|
|
7593
|
+
ke.buttonSection,
|
|
7594
|
+
t?.data ? ke.hasAlertZone : "",
|
|
7595
7595
|
"search-button"
|
|
7596
7596
|
].join(" "),
|
|
7597
7597
|
children: [
|
|
@@ -7600,7 +7600,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7600
7600
|
{
|
|
7601
7601
|
href: e.searchLink ? e.searchLink : "/buscar",
|
|
7602
7602
|
"aria-label": e.searchKeyWord,
|
|
7603
|
-
className: `${
|
|
7603
|
+
className: `${ke.buttonSectionSearch} search-button-icon`,
|
|
7604
7604
|
style: { display: "flex" },
|
|
7605
7605
|
children: /* @__PURE__ */ a(Sa, { width: 28, height: 28, color: "currentColor" })
|
|
7606
7606
|
}
|
|
@@ -7703,7 +7703,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7703
7703
|
]
|
|
7704
7704
|
}
|
|
7705
7705
|
) }),
|
|
7706
|
-
/* @__PURE__ */ a("div", { className: ye.logoContent, children: /* @__PURE__ */ a(L, { href: "/", "aria-label": "Home", className: "header-logo-link", children:
|
|
7706
|
+
/* @__PURE__ */ a("div", { className: ye.logoContent, children: /* @__PURE__ */ a(L, { href: "/", "aria-label": "Home", className: "header-logo-link", children: xe.createElement(
|
|
7707
7707
|
"span",
|
|
7708
7708
|
{ className: `${ye.logoStyled}` },
|
|
7709
7709
|
e.icon
|
|
@@ -7792,15 +7792,15 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
7792
7792
|
}
|
|
7793
7793
|
)
|
|
7794
7794
|
] });
|
|
7795
|
-
}, om = "_content_16ydf_1", sm = "_tags_16ydf_10", im = "_chipStyled_16ydf_20", cm = "_tagLink_16ydf_47", lm = "_tagStyled_16ydf_53",
|
|
7795
|
+
}, om = "_content_16ydf_1", sm = "_tags_16ydf_10", im = "_chipStyled_16ydf_20", cm = "_tagLink_16ydf_47", lm = "_tagStyled_16ydf_53", pt = {
|
|
7796
7796
|
content: om,
|
|
7797
7797
|
tags: sm,
|
|
7798
7798
|
chipStyled: im,
|
|
7799
7799
|
tagLink: cm,
|
|
7800
7800
|
tagStyled: lm
|
|
7801
|
-
}, dm = (e) => /* @__PURE__ */ a("section", { className:
|
|
7802
|
-
/* @__PURE__ */ a("p", { className:
|
|
7803
|
-
e.tags.map((t, n) => t.approved ? /* @__PURE__ */ a(L, { href: vt(t, e.paths), children: /* @__PURE__ */ a("div", { className: `${
|
|
7801
|
+
}, dm = (e) => /* @__PURE__ */ a("section", { className: pt.content, children: Array.isArray(e.tags) && /* @__PURE__ */ m("div", { className: pt.tags, children: [
|
|
7802
|
+
/* @__PURE__ */ a("p", { className: pt.tagStyled, children: e.title ? e.title : "Tags:" }),
|
|
7803
|
+
e.tags.map((t, n) => t.approved ? /* @__PURE__ */ a(L, { 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))
|
|
7804
7804
|
] }) }), um = "_contentBox_1rkkg_1", hm = "_content_1rkkg_1", mm = "_imageStyled_1rkkg_16", fm = "_contentIconStyled_1rkkg_23", gm = "_avatarContent_1rkkg_43", pm = "_journalistSection_1rkkg_50", Am = "_journalistInfo_1rkkg_56", wm = "_socialNetworkSection_1rkkg_70", ym = "_article_1rkkg_83", De = {
|
|
7805
7805
|
contentBox: um,
|
|
7806
7806
|
content: hm,
|
|
@@ -8002,7 +8002,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8002
8002
|
}
|
|
8003
8003
|
)
|
|
8004
8004
|
] }) });
|
|
8005
|
-
}, bm = "_content_vmnac_1", Cm = "_imageStyled_vmnac_20", _m = "_contentIconStyled_vmnac_21", Nm = "_contentCard_vmnac_31", Sm = "_contentInfo_vmnac_70", Em = "_fullName_vmnac_76", xm = "_LearnMoreLink_vmnac_83",
|
|
8005
|
+
}, bm = "_content_vmnac_1", Cm = "_imageStyled_vmnac_20", _m = "_contentIconStyled_vmnac_21", Nm = "_contentCard_vmnac_31", Sm = "_contentInfo_vmnac_70", Em = "_fullName_vmnac_76", xm = "_LearnMoreLink_vmnac_83", nt = {
|
|
8006
8006
|
content: bm,
|
|
8007
8007
|
imageStyled: Cm,
|
|
8008
8008
|
contentIconStyled: _m,
|
|
@@ -8012,34 +8012,34 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8012
8012
|
LearnMoreLink: xm
|
|
8013
8013
|
}, Tm = async (e) => {
|
|
8014
8014
|
const { news: t, texts: n } = e;
|
|
8015
|
-
return t.config?.showauthor && /* @__PURE__ */ a("div", { className:
|
|
8015
|
+
return t.config?.showauthor && /* @__PURE__ */ a("div", { className: nt.content, children: Array.isArray(t.authors) && t.authors?.map(async (r) => /* @__PURE__ */ m(
|
|
8016
8016
|
"div",
|
|
8017
8017
|
{
|
|
8018
|
-
className:
|
|
8018
|
+
className: nt.contentCard,
|
|
8019
8019
|
children: [
|
|
8020
8020
|
r.image ? /* @__PURE__ */ a(
|
|
8021
8021
|
"img",
|
|
8022
8022
|
{
|
|
8023
8023
|
fetchPriority: "low",
|
|
8024
8024
|
loading: "lazy",
|
|
8025
|
-
className:
|
|
8025
|
+
className: nt.imageStyled,
|
|
8026
8026
|
src: await pe(r.image.sizes[0]?.url || "")
|
|
8027
8027
|
},
|
|
8028
8028
|
r.fullname
|
|
8029
|
-
) : /* @__PURE__ */ a("div", { className:
|
|
8030
|
-
/* @__PURE__ */ m("div", { className:
|
|
8029
|
+
) : /* @__PURE__ */ a("div", { className: nt.contentIconStyled, children: e.autorIcon }, r.fullname),
|
|
8030
|
+
/* @__PURE__ */ m("div", { className: nt.contentInfo, children: [
|
|
8031
8031
|
r.internaluser ? /* @__PURE__ */ a(
|
|
8032
8032
|
"a",
|
|
8033
8033
|
{
|
|
8034
|
-
className:
|
|
8034
|
+
className: nt.fullName,
|
|
8035
8035
|
href: `/${e.paths.autor}/${r.name}`,
|
|
8036
8036
|
children: r.fullname
|
|
8037
8037
|
}
|
|
8038
|
-
) : /* @__PURE__ */ a("p", { className:
|
|
8038
|
+
) : /* @__PURE__ */ a("p", { className: nt.fullName, children: r.fullname }),
|
|
8039
8039
|
r.internaluser && /* @__PURE__ */ a(
|
|
8040
8040
|
"a",
|
|
8041
8041
|
{
|
|
8042
|
-
className:
|
|
8042
|
+
className: nt.LearnMoreLink,
|
|
8043
8043
|
href: `/${e.paths.autor}/${r.name}`,
|
|
8044
8044
|
children: n.JournalistGroupLink
|
|
8045
8045
|
}
|
|
@@ -8049,7 +8049,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8049
8049
|
},
|
|
8050
8050
|
`author-${r.firstname}`
|
|
8051
8051
|
)) });
|
|
8052
|
-
}, Im = "_content_1j0pj_1", km = "_contentNews_1j0pj_10", Um = "_linkTitle_1j0pj_27", qm = "_tag_1j0pj_35", Rm = "_tagmx_1j0pj_55", Lm = "_titular_1j0pj_70", Bm = "_correspondent_1j0pj_85", Om = "_correspondentLink_1j0pj_96", Pm = "_description_1j0pj_107",
|
|
8052
|
+
}, Im = "_content_1j0pj_1", km = "_contentNews_1j0pj_10", Um = "_linkTitle_1j0pj_27", qm = "_tag_1j0pj_35", Rm = "_tagmx_1j0pj_55", Lm = "_titular_1j0pj_70", Bm = "_correspondent_1j0pj_85", Om = "_correspondentLink_1j0pj_96", Pm = "_description_1j0pj_107", Se = {
|
|
8053
8053
|
content: Im,
|
|
8054
8054
|
contentNews: km,
|
|
8055
8055
|
linkTitle: Um,
|
|
@@ -8072,35 +8072,35 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8072
8072
|
}, r = () => {
|
|
8073
8073
|
if (t && e.keywords?.tags?.length && e.keywords.tags.length > 0) {
|
|
8074
8074
|
const s = e.keywords.tags[0], i = s.name;
|
|
8075
|
-
return /* @__PURE__ */ a(
|
|
8075
|
+
return s.approved ? /* @__PURE__ */ a(
|
|
8076
8076
|
L,
|
|
8077
8077
|
{
|
|
8078
8078
|
"aria-label": i,
|
|
8079
|
-
className:
|
|
8079
|
+
className: Se.tagmx,
|
|
8080
8080
|
href: vt(s, e.paths),
|
|
8081
8081
|
children: i
|
|
8082
8082
|
}
|
|
8083
|
-
);
|
|
8083
|
+
) : /* @__PURE__ */ a("div", { className: Se.tagmx, children: i });
|
|
8084
8084
|
} else if (e.info?.section?.url)
|
|
8085
|
-
return /* @__PURE__ */ a(L, { className:
|
|
8085
|
+
return /* @__PURE__ */ a(L, { className: Se.tagmx, href: e?.info?.section?.url, children: e?.info?.section?.name });
|
|
8086
8086
|
return null;
|
|
8087
8087
|
}, o = () => {
|
|
8088
8088
|
if (t && e.keywords?.tags?.length && e.keywords.tags.length > 0) {
|
|
8089
8089
|
const s = e.keywords.tags[0], i = s.name;
|
|
8090
|
-
return /* @__PURE__ */ a(
|
|
8090
|
+
return s.approved ? /* @__PURE__ */ a(
|
|
8091
8091
|
L,
|
|
8092
8092
|
{
|
|
8093
8093
|
"aria-label": i,
|
|
8094
|
-
className:
|
|
8094
|
+
className: Se.tag,
|
|
8095
8095
|
href: vt(s, e.paths),
|
|
8096
8096
|
children: i
|
|
8097
8097
|
}
|
|
8098
|
-
);
|
|
8098
|
+
) : /* @__PURE__ */ a("div", { className: Se.tag, children: i });
|
|
8099
8099
|
} else if (e.info?.section?.url)
|
|
8100
|
-
return /* @__PURE__ */ a(L, { className:
|
|
8100
|
+
return /* @__PURE__ */ a(L, { className: Se.tag, href: e?.info?.section?.url, children: e?.info?.section?.name });
|
|
8101
8101
|
return null;
|
|
8102
8102
|
};
|
|
8103
|
-
return /* @__PURE__ */ m("section", { className: `${
|
|
8103
|
+
return /* @__PURE__ */ m("section", { className: `${Se.content} destacado-super-content`, children: [
|
|
8104
8104
|
/* @__PURE__ */ a(
|
|
8105
8105
|
L,
|
|
8106
8106
|
{
|
|
@@ -8113,7 +8113,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8113
8113
|
"--lineHeightImageNewsTitleMobile": e.isVertical ? "26px" : "36px"
|
|
8114
8114
|
},
|
|
8115
8115
|
children: /* @__PURE__ */ a(
|
|
8116
|
-
|
|
8116
|
+
Ue,
|
|
8117
8117
|
{
|
|
8118
8118
|
preview: e.preview,
|
|
8119
8119
|
isLarge: !0,
|
|
@@ -8126,7 +8126,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8126
8126
|
/* @__PURE__ */ m(
|
|
8127
8127
|
"div",
|
|
8128
8128
|
{
|
|
8129
|
-
className:
|
|
8129
|
+
className: Se.contentNews,
|
|
8130
8130
|
style: {
|
|
8131
8131
|
"--widthTextContent": e.textPosition === "start" ? "100%" : "80%"
|
|
8132
8132
|
},
|
|
@@ -8143,13 +8143,13 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8143
8143
|
/* @__PURE__ */ a(
|
|
8144
8144
|
L,
|
|
8145
8145
|
{
|
|
8146
|
-
className:
|
|
8146
|
+
className: Se.linkTitle,
|
|
8147
8147
|
href: e?.info?.link?.url,
|
|
8148
8148
|
target: e?.info?.link?.target,
|
|
8149
8149
|
children: /* @__PURE__ */ a(
|
|
8150
8150
|
"h1",
|
|
8151
8151
|
{
|
|
8152
|
-
className:
|
|
8152
|
+
className: Se.titular,
|
|
8153
8153
|
style: {
|
|
8154
8154
|
"--titlePosition": e.textPosition === "start" ? "initial" : "center"
|
|
8155
8155
|
},
|
|
@@ -8164,7 +8164,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8164
8164
|
e.config?.showsubtitle && /* @__PURE__ */ a(
|
|
8165
8165
|
"div",
|
|
8166
8166
|
{
|
|
8167
|
-
className:
|
|
8167
|
+
className: Se.description,
|
|
8168
8168
|
dangerouslySetInnerHTML: {
|
|
8169
8169
|
__html: e.main.subtitle.striped
|
|
8170
8170
|
}
|
|
@@ -8174,10 +8174,10 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8174
8174
|
L,
|
|
8175
8175
|
{
|
|
8176
8176
|
href: `/${e.paths?.autor ?? "autor"}/${e?.authors[0]?.name}`,
|
|
8177
|
-
className:
|
|
8177
|
+
className: Se.correspondent,
|
|
8178
8178
|
children: n()
|
|
8179
8179
|
}
|
|
8180
|
-
) : /* @__PURE__ */ a("p", { className:
|
|
8180
|
+
) : /* @__PURE__ */ a("p", { className: Se.correspondentLink, children: n() }) })
|
|
8181
8181
|
]
|
|
8182
8182
|
}
|
|
8183
8183
|
)
|
|
@@ -8268,7 +8268,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8268
8268
|
paths: r
|
|
8269
8269
|
}
|
|
8270
8270
|
) }),
|
|
8271
|
-
/* @__PURE__ */ a("div", { style: n, className: Qn.secondSection, children: e.map((s, i) => i > 0 && /* @__PURE__ */
|
|
8271
|
+
/* @__PURE__ */ a("div", { style: n, className: Qn.secondSection, children: e.map((s, i) => i > 0 && /* @__PURE__ */ st(
|
|
8272
8272
|
_t,
|
|
8273
8273
|
{
|
|
8274
8274
|
...s,
|
|
@@ -8306,7 +8306,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8306
8306
|
)
|
|
8307
8307
|
},
|
|
8308
8308
|
s
|
|
8309
|
-
) : /* @__PURE__ */ a("section", { style: n, children: /* @__PURE__ */
|
|
8309
|
+
) : /* @__PURE__ */ a("section", { style: n, children: /* @__PURE__ */ st(
|
|
8310
8310
|
_t,
|
|
8311
8311
|
{
|
|
8312
8312
|
...o,
|
|
@@ -8317,7 +8317,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8317
8317
|
heightImageOverwriteMobile: "270px",
|
|
8318
8318
|
paths: r
|
|
8319
8319
|
}
|
|
8320
|
-
) }, s)) }), Vm = "_content_1n73e_1", Fm = "_sectionDescription_1n73e_13", Wm = "_title_1n73e_33", $m = "_subtitle_1n73e_47", Ym = "_linkStyled_1n73e_58",
|
|
8320
|
+
) }, s)) }), Vm = "_content_1n73e_1", Fm = "_sectionDescription_1n73e_13", Wm = "_title_1n73e_33", $m = "_subtitle_1n73e_47", Ym = "_linkStyled_1n73e_58", it = {
|
|
8321
8321
|
content: Vm,
|
|
8322
8322
|
sectionDescription: Fm,
|
|
8323
8323
|
title: Wm,
|
|
@@ -8327,39 +8327,39 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8327
8327
|
const { SHOW_TAG_BY_SECTION: t } = $(), n = () => {
|
|
8328
8328
|
if (t && e.mainNew.keywords?.tags?.length && e.mainNew.keywords.tags.length > 0) {
|
|
8329
8329
|
const r = e.mainNew.keywords.tags[0], o = r.name;
|
|
8330
|
-
return /* @__PURE__ */ a(
|
|
8330
|
+
return r.approved ? /* @__PURE__ */ a(
|
|
8331
8331
|
L,
|
|
8332
8332
|
{
|
|
8333
8333
|
"aria-label": o,
|
|
8334
|
-
className:
|
|
8334
|
+
className: it.sectionDescription,
|
|
8335
8335
|
href: vt(r, e.paths),
|
|
8336
8336
|
children: o
|
|
8337
8337
|
}
|
|
8338
|
-
);
|
|
8338
|
+
) : /* @__PURE__ */ a("div", { className: it.sectionDescription, children: o });
|
|
8339
8339
|
} else if (e.mainNew.info?.section?.url)
|
|
8340
8340
|
return /* @__PURE__ */ a(
|
|
8341
8341
|
L,
|
|
8342
8342
|
{
|
|
8343
|
-
className:
|
|
8343
|
+
className: it.sectionDescription,
|
|
8344
8344
|
href: e?.mainNew?.info?.section?.url,
|
|
8345
8345
|
children: e?.mainNew?.info?.section?.name
|
|
8346
8346
|
}
|
|
8347
8347
|
);
|
|
8348
8348
|
return null;
|
|
8349
8349
|
};
|
|
8350
|
-
return /* @__PURE__ */ m("div", { className:
|
|
8350
|
+
return /* @__PURE__ */ m("div", { className: it.content, children: [
|
|
8351
8351
|
/* @__PURE__ */ a(n, {}),
|
|
8352
8352
|
/* @__PURE__ */ a(
|
|
8353
8353
|
L,
|
|
8354
8354
|
{
|
|
8355
|
-
className:
|
|
8355
|
+
className: it.title,
|
|
8356
8356
|
href: e?.mainNew?.info?.link?.url,
|
|
8357
8357
|
target: e?.mainNew?.info?.link?.target,
|
|
8358
8358
|
children: e?.mainNew?.main?.title.home
|
|
8359
8359
|
}
|
|
8360
8360
|
),
|
|
8361
|
-
e?.mainNew?.main?.subtitle?.rendered && /* @__PURE__ */ a("p", { className:
|
|
8362
|
-
e.goTo && /* @__PURE__ */ a(L, { href: e.goTo.url, className:
|
|
8361
|
+
e?.mainNew?.main?.subtitle?.rendered && /* @__PURE__ */ a("p", { className: it.subtitle, children: e?.mainNew?.main?.subtitle?.striped }),
|
|
8362
|
+
e.goTo && /* @__PURE__ */ a(L, { href: e.goTo.url, className: it.linkStyled, children: e.goTo.description })
|
|
8363
8363
|
] });
|
|
8364
8364
|
}, Km = "_headerSection_drjnj_1", Jm = "_headerSectionLink_drjnj_12", Zm = "_newsContent_drjnj_17", Gn = {
|
|
8365
8365
|
headerSection: Km,
|
|
@@ -8387,7 +8387,7 @@ const Md = "_content_r1co8_1", jd = "_videoContent_r1co8_20", Qd = "_articleSect
|
|
|
8387
8387
|
className: Gn.headerSectionLink,
|
|
8388
8388
|
href: s?.info?.link?.url,
|
|
8389
8389
|
target: s?.info?.link?.target,
|
|
8390
|
-
children: /* @__PURE__ */ a(
|
|
8390
|
+
children: /* @__PURE__ */ a(Ue, { preview: s.preview })
|
|
8391
8391
|
}
|
|
8392
8392
|
)
|
|
8393
8393
|
] }),
|
|
@@ -8754,7 +8754,7 @@ const o3 = (e) => {
|
|
|
8754
8754
|
target: o?.info?.link.target,
|
|
8755
8755
|
"aria-label": "Video",
|
|
8756
8756
|
children: /* @__PURE__ */ a(
|
|
8757
|
-
|
|
8757
|
+
Ue,
|
|
8758
8758
|
{
|
|
8759
8759
|
preview: {
|
|
8760
8760
|
sizes: o?.main?.image.sizes,
|
|
@@ -8780,7 +8780,7 @@ const o3 = (e) => {
|
|
|
8780
8780
|
}
|
|
8781
8781
|
}
|
|
8782
8782
|
};
|
|
8783
|
-
return /* @__PURE__ */ a("div", { style: { order: d }, children: /* @__PURE__ */
|
|
8783
|
+
return /* @__PURE__ */ a("div", { style: { order: d }, children: /* @__PURE__ */ st(
|
|
8784
8784
|
Xe,
|
|
8785
8785
|
{
|
|
8786
8786
|
...u,
|
|
@@ -8815,7 +8815,7 @@ const o3 = (e) => {
|
|
|
8815
8815
|
target: e?.info?.link?.target,
|
|
8816
8816
|
title: e.main?.title?.section,
|
|
8817
8817
|
href: t ? e.info.link.url : e?.info?.section?.url,
|
|
8818
|
-
children: /* @__PURE__ */ a(
|
|
8818
|
+
children: /* @__PURE__ */ a(Ue, { preview: e.preview })
|
|
8819
8819
|
}
|
|
8820
8820
|
),
|
|
8821
8821
|
/* @__PURE__ */ m("div", { className: Lt.textContent, children: [
|
|
@@ -8865,7 +8865,7 @@ const o3 = (e) => {
|
|
|
8865
8865
|
"section",
|
|
8866
8866
|
{
|
|
8867
8867
|
className: e.hasLines ? ia.hasLinesBlock : "",
|
|
8868
|
-
children: /* @__PURE__ */
|
|
8868
|
+
children: /* @__PURE__ */ st(
|
|
8869
8869
|
z2,
|
|
8870
8870
|
{
|
|
8871
8871
|
...o,
|
|
@@ -8914,7 +8914,7 @@ const o3 = (e) => {
|
|
|
8914
8914
|
})
|
|
8915
8915
|
}
|
|
8916
8916
|
) });
|
|
8917
|
-
}, J2 = "_content_1mj79_1", Z2 = "_imageStyled_1mj79_14", X2 = "_contentIcon_1mj79_23", ef = "_boxInformation_1mj79_44", tf = "_comment_1mj79_51", nf = "_title_1mj79_60", af = "_authorName_1mj79_81",
|
|
8917
|
+
}, J2 = "_content_1mj79_1", Z2 = "_imageStyled_1mj79_14", X2 = "_contentIcon_1mj79_23", ef = "_boxInformation_1mj79_44", tf = "_comment_1mj79_51", nf = "_title_1mj79_60", af = "_authorName_1mj79_81", at = {
|
|
8918
8918
|
content: J2,
|
|
8919
8919
|
imageStyled: Z2,
|
|
8920
8920
|
contentIcon: X2,
|
|
@@ -8924,35 +8924,35 @@ const o3 = (e) => {
|
|
|
8924
8924
|
authorName: af
|
|
8925
8925
|
}, rf = async (e) => {
|
|
8926
8926
|
const { data: t } = e;
|
|
8927
|
-
return /* @__PURE__ */ m("div", { className:
|
|
8927
|
+
return /* @__PURE__ */ m("div", { className: at.content, children: [
|
|
8928
8928
|
Array.isArray(t.authors) && t?.authors[0]?.image ? /* @__PURE__ */ a(
|
|
8929
8929
|
"img",
|
|
8930
8930
|
{
|
|
8931
8931
|
fetchPriority: "low",
|
|
8932
8932
|
loading: "lazy",
|
|
8933
|
-
className:
|
|
8933
|
+
className: at.imageStyled,
|
|
8934
8934
|
src: await pe(t?.authors[0]?.image?.sizes[0]?.url || ""),
|
|
8935
8935
|
alt: t?.authors[0]?.fullname
|
|
8936
8936
|
}
|
|
8937
|
-
) : /* @__PURE__ */ a("div", { className:
|
|
8938
|
-
/* @__PURE__ */ m("div", { className:
|
|
8939
|
-
/* @__PURE__ */ a("p", { className:
|
|
8937
|
+
) : /* @__PURE__ */ a("div", { className: at.contentIcon, children: e.autorIcon }),
|
|
8938
|
+
/* @__PURE__ */ m("div", { className: at.boxInformation, children: [
|
|
8939
|
+
/* @__PURE__ */ a("p", { className: at.authorName, children: t?.authors[0]?.internaluser ? /* @__PURE__ */ a(
|
|
8940
8940
|
L,
|
|
8941
8941
|
{
|
|
8942
8942
|
href: t.authors[0]?.internaluser ? `/${e.paths.autor}/${t?.authors[0]?.name}` : "#",
|
|
8943
8943
|
children: t?.authors[0]?.fullname ?? "Redacción"
|
|
8944
8944
|
}
|
|
8945
8945
|
) : t?.authors[0]?.fullname ?? "Redacción" }),
|
|
8946
|
-
/* @__PURE__ */ a("p", { className:
|
|
8946
|
+
/* @__PURE__ */ a("p", { className: at.title, children: /* @__PURE__ */ a(
|
|
8947
8947
|
L,
|
|
8948
8948
|
{
|
|
8949
|
-
className:
|
|
8949
|
+
className: at.linkStyled,
|
|
8950
8950
|
href: t?.info?.link?.url,
|
|
8951
8951
|
target: t?.info?.link?.target,
|
|
8952
8952
|
children: Qe(t?.main?.title?.home, 40)
|
|
8953
8953
|
}
|
|
8954
8954
|
) }),
|
|
8955
|
-
/* @__PURE__ */ a("p", { className:
|
|
8955
|
+
/* @__PURE__ */ a("p", { className: at.comment, children: t?.main?.subtitle?.striped })
|
|
8956
8956
|
] })
|
|
8957
8957
|
] });
|
|
8958
8958
|
}, of = (e) => {
|
|
@@ -9394,7 +9394,7 @@ const Qf = async ({
|
|
|
9394
9394
|
)
|
|
9395
9395
|
] }),
|
|
9396
9396
|
/* @__PURE__ */ a("p", { className: $e.contentTitle, children: e[0]?.list.integrated ? s.title : `${s.index}. ${s.title}` }),
|
|
9397
|
-
s.image && /* @__PURE__ */ a(
|
|
9397
|
+
s.image && /* @__PURE__ */ a(Ue, { preview: s.image, isLarge: !0 }),
|
|
9398
9398
|
/* @__PURE__ */ a(
|
|
9399
9399
|
"div",
|
|
9400
9400
|
{
|
|
@@ -9586,7 +9586,7 @@ const Hf = () => /* @__PURE__ */ m("svg", { xmlns: "http://www.w3.org/2000/svg",
|
|
|
9586
9586
|
visibleItems: 1,
|
|
9587
9587
|
pagination: !0,
|
|
9588
9588
|
cardGap: 0,
|
|
9589
|
-
children: s && s.map((i, c) => /* @__PURE__ */ a(
|
|
9589
|
+
children: s && s.map((i, c) => /* @__PURE__ */ a(Ue, { preview: i, priorityHigh: !0 }, c))
|
|
9590
9590
|
}
|
|
9591
9591
|
),
|
|
9592
9592
|
/* @__PURE__ */ a("div", { className: bn.description, children: s && s[0]?.description })
|
|
@@ -9943,18 +9943,18 @@ const c0 = "_content_cu8lm_1", l0 = "_title_cu8lm_18", gr = {
|
|
|
9943
9943
|
);
|
|
9944
9944
|
}, A0 = "_content_156j7_1", pr = {
|
|
9945
9945
|
content: A0
|
|
9946
|
-
},
|
|
9946
|
+
}, ot = {
|
|
9947
9947
|
imagen: "imagen",
|
|
9948
9948
|
videoEmbedded: "videoEmbedded",
|
|
9949
9949
|
videoYouTube: "videoYouTube",
|
|
9950
9950
|
iframe: "iframe"
|
|
9951
9951
|
}, w0 = {
|
|
9952
|
-
[
|
|
9953
|
-
[
|
|
9954
|
-
[
|
|
9952
|
+
[ot.videoEmbedded]: d0,
|
|
9953
|
+
[ot.videoYouTube]: m0,
|
|
9954
|
+
[ot.iframe]: p0
|
|
9955
9955
|
}, y0 = ({ news: e }) => {
|
|
9956
9956
|
const { config: t, hascontent: n, info: r } = e, o = t.articlepreview, s = r.link.internal, i = n?.hasgalleryimages;
|
|
9957
|
-
if (o ===
|
|
9957
|
+
if (o === ot.imagen && i)
|
|
9958
9958
|
return /* @__PURE__ */ a("div", { className: pr.content, children: /* @__PURE__ */ a(So, { newsformated: e, internal: s }) });
|
|
9959
9959
|
const c = o ? w0[o] : null;
|
|
9960
9960
|
return c ? /* @__PURE__ */ a("div", { className: pr.content, children: /* @__PURE__ */ a(c, { newsformated: e, internal: s }) }) : null;
|
|
@@ -10016,7 +10016,7 @@ const c0 = "_content_cu8lm_1", l0 = "_title_cu8lm_18", gr = {
|
|
|
10016
10016
|
...s.main,
|
|
10017
10017
|
title: { ...s.main.title, section: o ? s.main.title.home : s.main.title.section }
|
|
10018
10018
|
} };
|
|
10019
|
-
return /* @__PURE__ */
|
|
10019
|
+
return /* @__PURE__ */ st(
|
|
10020
10020
|
Un,
|
|
10021
10021
|
{
|
|
10022
10022
|
...c,
|
|
@@ -10033,7 +10033,7 @@ const c0 = "_content_cu8lm_1", l0 = "_title_cu8lm_18", gr = {
|
|
|
10033
10033
|
for (const n in e)
|
|
10034
10034
|
n.startsWith("--") && (t[n] = e[n]);
|
|
10035
10035
|
return t;
|
|
10036
|
-
}, _0 = "_headerSection_1c69w_1", N0 = "_title_1c69w_11", S0 = "_subtitle_1c69w_23", E0 = "_newsContent_1c69w_36", x0 = "_containerCards_1c69w_44", T0 = "_image_1c69w_50", I0 = "_blockHeadContainer_1c69w_56",
|
|
10036
|
+
}, _0 = "_headerSection_1c69w_1", N0 = "_title_1c69w_11", S0 = "_subtitle_1c69w_23", E0 = "_newsContent_1c69w_36", x0 = "_containerCards_1c69w_44", T0 = "_image_1c69w_50", I0 = "_blockHeadContainer_1c69w_56", ct = {
|
|
10037
10037
|
headerSection: _0,
|
|
10038
10038
|
title: N0,
|
|
10039
10039
|
subtitle: S0,
|
|
@@ -10046,25 +10046,25 @@ const c0 = "_content_cu8lm_1", l0 = "_title_cu8lm_18", gr = {
|
|
|
10046
10046
|
if (!t || t.length === 0) return;
|
|
10047
10047
|
const o = t[0], s = t.slice(1), i = e.slot_id && e.slot_id !== "Nota_1";
|
|
10048
10048
|
return o && s && /* @__PURE__ */ m(me, { title: n, titleUrl: e.titleUrl, children: [
|
|
10049
|
-
/* @__PURE__ */ a("div", { className:
|
|
10049
|
+
/* @__PURE__ */ a("div", { className: ct.headerSection, children: /* @__PURE__ */ m(
|
|
10050
10050
|
"a",
|
|
10051
10051
|
{
|
|
10052
10052
|
style: { "--heightImageOverwriteMobile": "200%" },
|
|
10053
|
-
className:
|
|
10053
|
+
className: ct.image,
|
|
10054
10054
|
href: o?.info?.link?.url,
|
|
10055
10055
|
target: o?.info?.link?.target,
|
|
10056
10056
|
children: [
|
|
10057
|
-
/* @__PURE__ */ m("div", { className:
|
|
10058
|
-
/* @__PURE__ */ a("p", { className:
|
|
10059
|
-
o?.main?.subtitle?.rendered && /* @__PURE__ */ a("p", { className:
|
|
10057
|
+
/* @__PURE__ */ m("div", { className: ct.blockHeadContainer, children: [
|
|
10058
|
+
/* @__PURE__ */ a("p", { className: ct.title, children: o?.main?.title.home }),
|
|
10059
|
+
o?.main?.subtitle?.rendered && /* @__PURE__ */ a("p", { className: ct.subtitle, children: o?.main?.subtitle?.striped })
|
|
10060
10060
|
] }),
|
|
10061
|
-
/* @__PURE__ */ a(
|
|
10061
|
+
/* @__PURE__ */ a(Ue, { preview: o.preview })
|
|
10062
10062
|
]
|
|
10063
10063
|
}
|
|
10064
10064
|
) }),
|
|
10065
|
-
/* @__PURE__ */ m("div", { className:
|
|
10065
|
+
/* @__PURE__ */ m("div", { className: ct.containerCards, children: [
|
|
10066
10066
|
/* @__PURE__ */ a("div", { className: "banner-context", style: { order: 1 }, children: e.banner }),
|
|
10067
|
-
/* @__PURE__ */ a("div", { className:
|
|
10067
|
+
/* @__PURE__ */ a("div", { className: ct.newsContent, children: Array.isArray(s) && s.map((c, d) => {
|
|
10068
10068
|
const l = {
|
|
10069
10069
|
...c,
|
|
10070
10070
|
main: {
|
|
@@ -10220,8 +10220,8 @@ const wr = {
|
|
|
10220
10220
|
}
|
|
10221
10221
|
}
|
|
10222
10222
|
),
|
|
10223
|
-
/* @__PURE__ */ a(
|
|
10224
|
-
|
|
10223
|
+
/* @__PURE__ */ a(ht, { children: /* @__PURE__ */ a(
|
|
10224
|
+
rt,
|
|
10225
10225
|
{
|
|
10226
10226
|
banners: s,
|
|
10227
10227
|
index: "dynamic_" + h + "_" + f
|
|
@@ -10257,7 +10257,7 @@ const wr = {
|
|
|
10257
10257
|
banners: r
|
|
10258
10258
|
}
|
|
10259
10259
|
),
|
|
10260
|
-
/* @__PURE__ */ a(
|
|
10260
|
+
/* @__PURE__ */ a(ht, { children: /* @__PURE__ */ a(rt, { banners: r, index: 1 }) }),
|
|
10261
10261
|
/* @__PURE__ */ a(
|
|
10262
10262
|
Fn,
|
|
10263
10263
|
{
|
|
@@ -10266,7 +10266,7 @@ const wr = {
|
|
|
10266
10266
|
banners: r
|
|
10267
10267
|
}
|
|
10268
10268
|
),
|
|
10269
|
-
/* @__PURE__ */ a(
|
|
10269
|
+
/* @__PURE__ */ a(ht, { children: /* @__PURE__ */ a(rt, { banners: r, index: 1 }) }),
|
|
10270
10270
|
/* @__PURE__ */ a(
|
|
10271
10271
|
Fn,
|
|
10272
10272
|
{
|
|
@@ -10275,15 +10275,15 @@ const wr = {
|
|
|
10275
10275
|
banners: r
|
|
10276
10276
|
}
|
|
10277
10277
|
),
|
|
10278
|
-
/* @__PURE__ */ a(
|
|
10278
|
+
/* @__PURE__ */ a(ht, { children: /* @__PURE__ */ a(rt, { banners: r, index: 1 }) })
|
|
10279
10279
|
] });
|
|
10280
10280
|
}, U0 = (e) => {
|
|
10281
10281
|
const { config: t, hascontent: n } = e, r = t.articlepreview, o = [
|
|
10282
|
-
|
|
10283
|
-
|
|
10284
|
-
|
|
10282
|
+
ot.videoEmbedded,
|
|
10283
|
+
ot.videoYouTube,
|
|
10284
|
+
ot.iframe
|
|
10285
10285
|
];
|
|
10286
|
-
return !!(r ===
|
|
10286
|
+
return !!(r === ot.imagen && n?.hasgalleryimages || o.includes(r));
|
|
10287
10287
|
}, f3 = async (e) => {
|
|
10288
10288
|
const {
|
|
10289
10289
|
custom_complement: t,
|
|
@@ -10306,7 +10306,7 @@ const wr = {
|
|
|
10306
10306
|
paths: e.paths
|
|
10307
10307
|
}
|
|
10308
10308
|
),
|
|
10309
|
-
/* @__PURE__ */ a(
|
|
10309
|
+
/* @__PURE__ */ a(rt, { banners: r, index: 1 }),
|
|
10310
10310
|
!u && /* @__PURE__ */ a(y0, { news: s[0] }),
|
|
10311
10311
|
/* @__PURE__ */ a(
|
|
10312
10312
|
Nf,
|
|
@@ -10367,7 +10367,7 @@ const wr = {
|
|
|
10367
10367
|
)
|
|
10368
10368
|
}
|
|
10369
10369
|
),
|
|
10370
|
-
/* @__PURE__ */ a(
|
|
10370
|
+
/* @__PURE__ */ a(ht, { children: /* @__PURE__ */ a(rt, { banners: r, index: 2 }) }),
|
|
10371
10371
|
/* @__PURE__ */ a(
|
|
10372
10372
|
xo,
|
|
10373
10373
|
{
|
|
@@ -10382,7 +10382,7 @@ const wr = {
|
|
|
10382
10382
|
}
|
|
10383
10383
|
}
|
|
10384
10384
|
),
|
|
10385
|
-
/* @__PURE__ */ a(
|
|
10385
|
+
/* @__PURE__ */ a(ht, { children: /* @__PURE__ */ a(rt, { banners: r, index: 3 }) }),
|
|
10386
10386
|
/* @__PURE__ */ a(me, { title: e.texts.moreNewsTitle, children: /* @__PURE__ */ a(
|
|
10387
10387
|
"div",
|
|
10388
10388
|
{
|
|
@@ -10398,7 +10398,7 @@ const wr = {
|
|
|
10398
10398
|
)
|
|
10399
10399
|
}
|
|
10400
10400
|
) }),
|
|
10401
|
-
/* @__PURE__ */ a(
|
|
10401
|
+
/* @__PURE__ */ a(ht, { children: /* @__PURE__ */ a(rt, { banners: r, index: 4 }) })
|
|
10402
10402
|
]
|
|
10403
10403
|
}
|
|
10404
10404
|
)
|
|
@@ -10803,7 +10803,7 @@ const wr = {
|
|
|
10803
10803
|
`video-small-${r}`
|
|
10804
10804
|
)) })
|
|
10805
10805
|
] }) }) }) });
|
|
10806
|
-
}, fg = "_content_ruy5q_1", gg = "_videoContent_ruy5q_9", pg = "_articleSection_ruy5q_21", Ag = "_contentLatout_ruy5q_31", wg = "_title_ruy5q_36", yg = "_article_ruy5q_21", vg = "_correspondent_ruy5q_64",
|
|
10806
|
+
}, fg = "_content_ruy5q_1", gg = "_videoContent_ruy5q_9", pg = "_articleSection_ruy5q_21", Ag = "_contentLatout_ruy5q_31", wg = "_title_ruy5q_36", yg = "_article_ruy5q_21", vg = "_correspondent_ruy5q_64", lt = {
|
|
10807
10807
|
content: fg,
|
|
10808
10808
|
videoContent: gg,
|
|
10809
10809
|
articleSection: pg,
|
|
@@ -10823,7 +10823,7 @@ const wr = {
|
|
|
10823
10823
|
target: t.info.link.target,
|
|
10824
10824
|
children: /* @__PURE__ */ m("section", { className: br.container, children: [
|
|
10825
10825
|
/* @__PURE__ */ a(
|
|
10826
|
-
|
|
10826
|
+
Ue,
|
|
10827
10827
|
{
|
|
10828
10828
|
isLarge: !0,
|
|
10829
10829
|
preview: {
|
|
@@ -10840,20 +10840,20 @@ const wr = {
|
|
|
10840
10840
|
const t = () => e?.video.main.author ? `${e?.video.main.author} - ${je(
|
|
10841
10841
|
e.video.info.date.created
|
|
10842
10842
|
)}` : e?.video.main.author;
|
|
10843
|
-
return /* @__PURE__ */ a("div", { className:
|
|
10843
|
+
return /* @__PURE__ */ a("div", { className: lt.content, children: /* @__PURE__ */ a(Vt, { className: lt.contentLatout, children: /* @__PURE__ */ a(me, { title: "Videos", isTitle: !0, children: /* @__PURE__ */ m("div", { className: lt.videoContent, children: [
|
|
10844
10844
|
/* @__PURE__ */ a(_g, { video: e.video }),
|
|
10845
|
-
/* @__PURE__ */ m("div", { className:
|
|
10845
|
+
/* @__PURE__ */ m("div", { className: lt.articleSection, children: [
|
|
10846
10846
|
/* @__PURE__ */ a(
|
|
10847
10847
|
L,
|
|
10848
10848
|
{
|
|
10849
|
-
className:
|
|
10849
|
+
className: lt.title,
|
|
10850
10850
|
href: e.video.info.link.url,
|
|
10851
10851
|
target: e.video.info.link.target,
|
|
10852
10852
|
children: e.video.main.title
|
|
10853
10853
|
}
|
|
10854
10854
|
),
|
|
10855
|
-
/* @__PURE__ */ a("p", { className:
|
|
10856
|
-
/* @__PURE__ */ a("p", { className:
|
|
10855
|
+
/* @__PURE__ */ a("p", { className: lt.article, children: Qe(e.video.main.description) }),
|
|
10856
|
+
/* @__PURE__ */ a("p", { className: lt.correspondent, children: t() })
|
|
10857
10857
|
] })
|
|
10858
10858
|
] }) }) }) });
|
|
10859
10859
|
}, w3 = (e) => {
|
|
@@ -11356,7 +11356,7 @@ const Ye = {
|
|
|
11356
11356
|
function b3(e) {
|
|
11357
11357
|
return Ye[e];
|
|
11358
11358
|
}
|
|
11359
|
-
const
|
|
11359
|
+
const ft = 300, Je = {
|
|
11360
11360
|
username: "anonimo",
|
|
11361
11361
|
firstname: "Usuario",
|
|
11362
11362
|
lastname: "Anonimo"
|
|
@@ -11369,7 +11369,7 @@ function Kg(e) {
|
|
|
11369
11369
|
}
|
|
11370
11370
|
const xa = (e, t) => {
|
|
11371
11371
|
if (!e || !e.current) return { boolean: !1, text: "" };
|
|
11372
|
-
const n = e.current?.value || "", r = n.length >
|
|
11372
|
+
const n = e.current?.value || "", r = n.length > ft, { PUBLIC_ENV: o } = $(), s = o === "local", i = n.trim() !== "" && (s || t !== "") && !r, c = r ? `No debes exceder el limite de ${ft} caracteres.` : "Debes completar todos los campos para comentar.";
|
|
11373
11373
|
return { boolean: i, text: c };
|
|
11374
11374
|
}, Io = (e) => {
|
|
11375
11375
|
const t = e.cookie.split("; ").find((n) => n.startsWith("reported="));
|
|
@@ -12338,10 +12338,10 @@ function pp(e, t) {
|
|
|
12338
12338
|
var h = t.globalName, f = this.props;
|
|
12339
12339
|
f.asyncScriptOnLoad;
|
|
12340
12340
|
var A = f.forwardedRef, g = mp(f, ["asyncScriptOnLoad", "forwardedRef"]);
|
|
12341
|
-
return h && typeof window < "u" && (g[h] = typeof window[h] < "u" ? window[h] : void 0), g.ref = A,
|
|
12341
|
+
return h && typeof window < "u" && (g[h] = typeof window[h] < "u" ? window[h] : void 0), g.ref = A, st(r, g);
|
|
12342
12342
|
}, d;
|
|
12343
12343
|
})(Qo), i = Pr(function(c, d) {
|
|
12344
|
-
return
|
|
12344
|
+
return st(s, ha({}, c, {
|
|
12345
12345
|
forwardedRef: d
|
|
12346
12346
|
}));
|
|
12347
12347
|
});
|
|
@@ -12703,7 +12703,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
12703
12703
|
if (!r) return;
|
|
12704
12704
|
const o = () => {
|
|
12705
12705
|
const i = r.value.length;
|
|
12706
|
-
r.parentElement && (r.parentElement.dataset.text = `${i}/${
|
|
12706
|
+
r.parentElement && (r.parentElement.dataset.text = `${i}/${ft}`), r.classList.toggle("over-limit", i > ft), n(!xa(e, t).boolean);
|
|
12707
12707
|
};
|
|
12708
12708
|
return r.addEventListener("input", o), o(), () => r.removeEventListener("input", o);
|
|
12709
12709
|
}, [e, t, n]), /* @__PURE__ */ m("div", { children: [
|
|
@@ -12741,8 +12741,8 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
12741
12741
|
] })
|
|
12742
12742
|
] });
|
|
12743
12743
|
}, Po = ({ onClick: e, isDisabled: t }) => {
|
|
12744
|
-
const [n, r] =
|
|
12745
|
-
return
|
|
12744
|
+
const [n, r] = xe.useState(!1);
|
|
12745
|
+
return xe.useEffect(() => {
|
|
12746
12746
|
let o = null;
|
|
12747
12747
|
return n && (o = setTimeout(() => {
|
|
12748
12748
|
r(!1);
|
|
@@ -12843,7 +12843,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
12843
12843
|
closeForm: s
|
|
12844
12844
|
}) => {
|
|
12845
12845
|
const [i, c] = Y(!0), [d, l] = Y(""), u = () => {
|
|
12846
|
-
t.current?.parentElement && (t.current.parentElement.dataset.text = `0/${
|
|
12846
|
+
t.current?.parentElement && (t.current.parentElement.dataset.text = `0/${ft}`), c(!0), s();
|
|
12847
12847
|
};
|
|
12848
12848
|
return /* @__PURE__ */ m("div", { className: "comment-form reply-form", children: [
|
|
12849
12849
|
/* @__PURE__ */ a("button", { className: "close-reply-form", onClick: u, children: /* @__PURE__ */ a(It, {}) }),
|
|
@@ -12902,7 +12902,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
12902
12902
|
] })
|
|
12903
12903
|
] }) });
|
|
12904
12904
|
}, e9 = ({ comment: e, replyingTo: t, path: n, user: r, handleReplyingTo: o, onFlag: s }) => {
|
|
12905
|
-
const i = { morereply: e.morereply ?? !1, reply: e.reply ? e.reply : [] }, [c, d] = Y(i), [l, u] =
|
|
12905
|
+
const i = { morereply: e.morereply ?? !1, reply: e.reply ? e.reply : [] }, [c, d] = Y(i), [l, u] = xe.useState(!1), h = process.env.PUBLIC_PUBLICATION_ID ?? "", f = e.text, A = xe.useRef(null);
|
|
12906
12906
|
let g = `${Je.firstname} ${Je.lastname}`, p = Je.username;
|
|
12907
12907
|
e.user && (g = `${e.user.firstname} ${e.user.lastname}`, p = e.user.username);
|
|
12908
12908
|
const w = (_) => {
|
|
@@ -13014,8 +13014,8 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
13014
13014
|
user: t,
|
|
13015
13015
|
addComment: r
|
|
13016
13016
|
});
|
|
13017
|
-
return l && typeof l == "number" ? (e.current?.parentElement && (e.current.parentElement.dataset.text = `0/${
|
|
13018
|
-
e.current?.parentElement && (e.current.parentElement.dataset.text = `0/${
|
|
13017
|
+
return l && typeof l == "number" ? (e.current?.parentElement && (e.current.parentElement.dataset.text = `0/${ft}`), s(!0), setTimeout(() => {
|
|
13018
|
+
e.current?.parentElement && (e.current.parentElement.dataset.text = `0/${ft}`), s(!0);
|
|
13019
13019
|
}, l), !0) : !1;
|
|
13020
13020
|
},
|
|
13021
13021
|
isDisabled: o
|
|
@@ -13032,7 +13032,7 @@ const { PUBLIC_PUBLICATION_ID: Wp } = $(), $p = Wp, Yp = (e) => {
|
|
|
13032
13032
|
}) => {
|
|
13033
13033
|
const o = t.replaceAll("/", "|"), [s, i] = Y(
|
|
13034
13034
|
void 0
|
|
13035
|
-
), [c, d] = Y(""), { comments: l, setComments: u } = Yp(o), [h, f] =
|
|
13035
|
+
), [c, d] = Y(""), { comments: l, setComments: u } = Yp(o), [h, f] = xe.useState(!1), A = xe.useRef(null), g = (v) => {
|
|
13036
13036
|
d(c === v ? "" : v);
|
|
13037
13037
|
}, p = (v) => {
|
|
13038
13038
|
u(
|
|
@@ -13856,7 +13856,7 @@ function h9({
|
|
|
13856
13856
|
checkAuth: s,
|
|
13857
13857
|
icon: i
|
|
13858
13858
|
}) {
|
|
13859
|
-
const [c, d] =
|
|
13859
|
+
const [c, d] = xe.useState(!1);
|
|
13860
13860
|
return /* @__PURE__ */ m(J, { children: [
|
|
13861
13861
|
c && /* @__PURE__ */ a(
|
|
13862
13862
|
u9,
|
|
@@ -13964,8 +13964,8 @@ const C3 = ({
|
|
|
13964
13964
|
icon: s,
|
|
13965
13965
|
isVisibleDefault: i = !1
|
|
13966
13966
|
}) => {
|
|
13967
|
-
const c = Or(null), [d, l] =
|
|
13968
|
-
|
|
13967
|
+
const c = Or(null), [d, l] = xe.useState(i);
|
|
13968
|
+
xe.useEffect(() => {
|
|
13969
13969
|
if (i || d) return;
|
|
13970
13970
|
const h = new IntersectionObserver(
|
|
13971
13971
|
([f]) => {
|
|
@@ -14152,7 +14152,7 @@ export {
|
|
|
14152
14152
|
eu as AutorHeader1,
|
|
14153
14153
|
uu as AutorHeader2,
|
|
14154
14154
|
ge as BannerAdvertising,
|
|
14155
|
-
|
|
14155
|
+
rt as BannerAdvertisingMiddle,
|
|
14156
14156
|
Y9 as CarrouselCSR,
|
|
14157
14157
|
xt as CarrouselIRS,
|
|
14158
14158
|
K2 as CarruselCard,
|
|
@@ -14195,7 +14195,7 @@ export {
|
|
|
14195
14195
|
$9 as Location,
|
|
14196
14196
|
N9 as MainComponentServices,
|
|
14197
14197
|
Fo as Marfeel,
|
|
14198
|
-
|
|
14198
|
+
ht as MiddleSection,
|
|
14199
14199
|
No as Modulo1x3,
|
|
14200
14200
|
Y2 as Modulo1x3Card,
|
|
14201
14201
|
I2 as Modulo1x4,
|