@20minutes/hela 2.21.0 → 2.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/atoms/Button/Button.d.ts +3 -5
- package/dist/components/atoms/Input/Input.d.ts +1 -1
- package/dist/components/atoms/RadioButton/RadioButton.d.ts +1 -0
- package/dist/components/atoms/Tag/Tag.d.ts +1 -1
- package/dist/components/molecules/Card/CardTitle/CardTitle.d.ts +2 -0
- package/dist/components/molecules/Card/Templates/CardNewsletter/CardNewletter.d.ts +7 -5
- package/dist/constants/buttonConfig.d.ts +2 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/index.es.js +553 -510
- package/dist/index.umd.cjs +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +1 -1
- package/dist/style.css +1 -1
- package/dist/types/ButtonType.d.ts +3 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { jsx as e, jsxs as t, Fragment as j } from "react/jsx-runtime";
|
|
2
|
-
import Q, { Fragment as
|
|
3
|
-
function
|
|
2
|
+
import Q, { Fragment as u0, useMemo as W, useState as p0, createElement as g0 } from "react";
|
|
3
|
+
function v0(a) {
|
|
4
4
|
return a && a.__esModule && Object.prototype.hasOwnProperty.call(a, "default") ? a.default : a;
|
|
5
5
|
}
|
|
6
6
|
var B1 = { exports: {} };
|
|
7
7
|
var A1;
|
|
8
|
-
function
|
|
8
|
+
function x0() {
|
|
9
9
|
return A1 || (A1 = 1, (function(a) {
|
|
10
10
|
(function() {
|
|
11
11
|
var s = {}.hasOwnProperty;
|
|
@@ -37,8 +37,8 @@ function f0() {
|
|
|
37
37
|
})();
|
|
38
38
|
})(B1)), B1.exports;
|
|
39
39
|
}
|
|
40
|
-
var
|
|
41
|
-
const p = /* @__PURE__ */
|
|
40
|
+
var f0 = x0();
|
|
41
|
+
const p = /* @__PURE__ */ v0(f0), Te = ({
|
|
42
42
|
adUnitCompletePath: a,
|
|
43
43
|
variant: s,
|
|
44
44
|
isFullscreenMobile: c = !1,
|
|
@@ -169,11 +169,7 @@ const p = /* @__PURE__ */ x0(w0), Ie = ({
|
|
|
169
169
|
}
|
|
170
170
|
)
|
|
171
171
|
] });
|
|
172
|
-
}
|
|
173
|
-
function T(a) {
|
|
174
|
-
return Q.forwardRef(a);
|
|
175
|
-
}
|
|
176
|
-
const b0 = [
|
|
172
|
+
}, w0 = [
|
|
177
173
|
"primary",
|
|
178
174
|
"secondary",
|
|
179
175
|
"tertiary",
|
|
@@ -181,183 +177,7 @@ const b0 = [
|
|
|
181
177
|
"dark",
|
|
182
178
|
"white",
|
|
183
179
|
"blue-ice"
|
|
184
|
-
], Oe = ["ghost", "outlined", "link", "ghost-with-icon-bg", "close"],
|
|
185
|
-
({
|
|
186
|
-
as: a = "button",
|
|
187
|
-
variant: s,
|
|
188
|
-
color: c = s === "ghost" || s === "link" ? void 0 : "primary",
|
|
189
|
-
children: l,
|
|
190
|
-
iconProps: r,
|
|
191
|
-
counter: n,
|
|
192
|
-
isCentered: i = !1,
|
|
193
|
-
isSquare: o = !1,
|
|
194
|
-
isFullWidth: d = !1,
|
|
195
|
-
isLoading: u = !1,
|
|
196
|
-
size: m,
|
|
197
|
-
isCloseWithProgress: v,
|
|
198
|
-
closeProgressColor: f,
|
|
199
|
-
..._
|
|
200
|
-
}, w) => {
|
|
201
|
-
const b = {
|
|
202
|
-
..._?.style,
|
|
203
|
-
...f && {
|
|
204
|
-
"--button-close-progress-color": `var(--color-theme-${f})`
|
|
205
|
-
}
|
|
206
|
-
};
|
|
207
|
-
return /* @__PURE__ */ t(
|
|
208
|
-
h,
|
|
209
|
-
{
|
|
210
|
-
..._,
|
|
211
|
-
style: b,
|
|
212
|
-
as: a,
|
|
213
|
-
ref: w,
|
|
214
|
-
alignItems: "center",
|
|
215
|
-
justifyContent: "center",
|
|
216
|
-
gap: "xxs",
|
|
217
|
-
inline: s === "link" || a === "a",
|
|
218
|
-
radius: o ? "0" : void 0,
|
|
219
|
-
className: p(
|
|
220
|
-
"c-btn",
|
|
221
|
-
{
|
|
222
|
-
[`c-btn--${c}`]: c,
|
|
223
|
-
[`c-btn--${s}`]: s,
|
|
224
|
-
[`c-btn--${m}`]: m,
|
|
225
|
-
"c-btn--is-centered": i,
|
|
226
|
-
"c-btn--is-loading": u,
|
|
227
|
-
"c-btn--full-width": d
|
|
228
|
-
},
|
|
229
|
-
_?.className
|
|
230
|
-
),
|
|
231
|
-
children: [
|
|
232
|
-
r && /* @__PURE__ */ e(N, { ...r }),
|
|
233
|
-
l,
|
|
234
|
-
(n === 0 || n) && /* @__PURE__ */ e(
|
|
235
|
-
h,
|
|
236
|
-
{
|
|
237
|
-
justifyContent: "center",
|
|
238
|
-
alignItems: "center",
|
|
239
|
-
color: "grey-900",
|
|
240
|
-
bg: "white",
|
|
241
|
-
px: "xxs",
|
|
242
|
-
radius: "s",
|
|
243
|
-
className: "c-btn__counter",
|
|
244
|
-
children: n
|
|
245
|
-
}
|
|
246
|
-
),
|
|
247
|
-
v && /* @__PURE__ */ e("div", { className: "c-btn__close-progress" })
|
|
248
|
-
]
|
|
249
|
-
}
|
|
250
|
-
);
|
|
251
|
-
}
|
|
252
|
-
);
|
|
253
|
-
H.displayName = "Button";
|
|
254
|
-
const Re = ({
|
|
255
|
-
id: a,
|
|
256
|
-
className: s,
|
|
257
|
-
required: c,
|
|
258
|
-
label: l,
|
|
259
|
-
variant: r,
|
|
260
|
-
variantLabel: n = "default",
|
|
261
|
-
hint: i,
|
|
262
|
-
error: o,
|
|
263
|
-
...d
|
|
264
|
-
}) => /* @__PURE__ */ t("div", { className: "c-checkbox", children: [
|
|
265
|
-
/* @__PURE__ */ e(
|
|
266
|
-
"input",
|
|
267
|
-
{
|
|
268
|
-
id: a,
|
|
269
|
-
type: "checkbox",
|
|
270
|
-
className: p(
|
|
271
|
-
"c-checkbox__input",
|
|
272
|
-
{
|
|
273
|
-
[`c-checkbox__input--${r}`]: r
|
|
274
|
-
},
|
|
275
|
-
s
|
|
276
|
-
),
|
|
277
|
-
required: c,
|
|
278
|
-
"aria-describedby": [i ? `${a}-hint` : null, o ? `${a}-error` : null].filter(Boolean).join(" ") || void 0,
|
|
279
|
-
...d
|
|
280
|
-
}
|
|
281
|
-
),
|
|
282
|
-
l && /* @__PURE__ */ t(
|
|
283
|
-
"label",
|
|
284
|
-
{
|
|
285
|
-
htmlFor: a,
|
|
286
|
-
className: p("c-checkbox__label", `c-checkbox__label--${n}`),
|
|
287
|
-
children: [
|
|
288
|
-
l,
|
|
289
|
-
c && /* @__PURE__ */ t(g, { as: "span", size: "xxs", weight: "regular", children: [
|
|
290
|
-
" ",
|
|
291
|
-
"(obligatoire)"
|
|
292
|
-
] })
|
|
293
|
-
]
|
|
294
|
-
}
|
|
295
|
-
),
|
|
296
|
-
o && /* @__PURE__ */ e(
|
|
297
|
-
g,
|
|
298
|
-
{
|
|
299
|
-
as: "span",
|
|
300
|
-
id: `${a}-error`,
|
|
301
|
-
className: "u-mask",
|
|
302
|
-
color: "red",
|
|
303
|
-
size: "xxs",
|
|
304
|
-
mt: "xxs-2",
|
|
305
|
-
ml: "xxs-2",
|
|
306
|
-
role: "alert",
|
|
307
|
-
children: o
|
|
308
|
-
}
|
|
309
|
-
),
|
|
310
|
-
i && /* @__PURE__ */ e(g, { as: "span", id: `${a}-hint`, mt: "xxs-2", ml: "xxs-2", className: "u-mask", children: i })
|
|
311
|
-
] }), G = T(
|
|
312
|
-
({ text: a, color: s = "black", thickness: c = "thin", ...l }, r) => {
|
|
313
|
-
const n = /* @__PURE__ */ e(
|
|
314
|
-
F,
|
|
315
|
-
{
|
|
316
|
-
bg: s,
|
|
317
|
-
align: "center",
|
|
318
|
-
className: p("c-divider__line", {
|
|
319
|
-
[`c-divider__line--${c}`]: c !== "thin"
|
|
320
|
-
})
|
|
321
|
-
}
|
|
322
|
-
);
|
|
323
|
-
return /* @__PURE__ */ e(
|
|
324
|
-
h,
|
|
325
|
-
{
|
|
326
|
-
...l,
|
|
327
|
-
ref: r,
|
|
328
|
-
className: p(
|
|
329
|
-
"c-divider",
|
|
330
|
-
{ "c-divider--has-text": !!a },
|
|
331
|
-
l?.className
|
|
332
|
-
),
|
|
333
|
-
children: a ? /* @__PURE__ */ t(j, { children: [
|
|
334
|
-
n,
|
|
335
|
-
/* @__PURE__ */ e(F, { px: "xxs-2", className: "c-divider__text", children: /* @__PURE__ */ e(g, { size: "xxs", color: s, textTransform: "uppercase", children: a }) }),
|
|
336
|
-
n
|
|
337
|
-
] }) : n
|
|
338
|
-
}
|
|
339
|
-
);
|
|
340
|
-
}
|
|
341
|
-
), L1 = ({
|
|
342
|
-
bg: a = "ultramarine",
|
|
343
|
-
...s
|
|
344
|
-
}) => /* @__PURE__ */ e(x, { ...s, className: p("c-divider-section", s?.className), children: /* @__PURE__ */ e(x, { as: "hr", className: p("c-divider-section__line"), bg: a }) }), K1 = T(
|
|
345
|
-
({ color: a = "black", thickness: s = "thin", ...c }, l) => /* @__PURE__ */ e(
|
|
346
|
-
x,
|
|
347
|
-
{
|
|
348
|
-
...c,
|
|
349
|
-
ref: l,
|
|
350
|
-
bg: a,
|
|
351
|
-
className: p(
|
|
352
|
-
"c-divider-vertical",
|
|
353
|
-
{
|
|
354
|
-
[`c-divider-vertical--${s}`]: s !== "thin"
|
|
355
|
-
},
|
|
356
|
-
c?.className
|
|
357
|
-
)
|
|
358
|
-
}
|
|
359
|
-
)
|
|
360
|
-
), Ee = ["column", "row", "column-reverse", "row-reverse"], Pe = ["wrap", "wrap-reverse", "no-wrap"], qe = ["start", "end", "center", "baseline", "stretch"], Ke = [
|
|
180
|
+
], Oe = ["ghost", "outlined", "link", "ghost-with-icon-bg", "close"], Re = ["column", "row", "column-reverse", "row-reverse"], Ee = ["wrap", "wrap-reverse", "no-wrap"], Pe = ["start", "end", "center", "baseline", "stretch"], qe = [
|
|
361
181
|
"start",
|
|
362
182
|
"end",
|
|
363
183
|
"center",
|
|
@@ -365,7 +185,7 @@ const Re = ({
|
|
|
365
185
|
"around",
|
|
366
186
|
"evenly",
|
|
367
187
|
"stretch"
|
|
368
|
-
],
|
|
188
|
+
], Ke = [
|
|
369
189
|
"start",
|
|
370
190
|
"end",
|
|
371
191
|
"center",
|
|
@@ -373,7 +193,7 @@ const Re = ({
|
|
|
373
193
|
"around",
|
|
374
194
|
"evenly",
|
|
375
195
|
"stretch"
|
|
376
|
-
],
|
|
196
|
+
], Ge = ["auto", "start", "end", "center", "stretch", "baseline"], Ue = ["auto", 0, 25, 33, 50, 75, 100], We = [0, 1], Ye = [0, 1], R = {
|
|
377
197
|
asset: {
|
|
378
198
|
font: {
|
|
379
199
|
"Obviously-Semibold": {
|
|
@@ -1542,7 +1362,7 @@ const Re = ({
|
|
|
1542
1362
|
}
|
|
1543
1363
|
}
|
|
1544
1364
|
}
|
|
1545
|
-
},
|
|
1365
|
+
}, Xe = ["underline", "dotted", "wavy", "overline"], Je = ["left", "center", "right", "justify"], Qe = ["capitalize", "uppercase", "lowercase"], e2 = [
|
|
1546
1366
|
"break-spaces",
|
|
1547
1367
|
"normal",
|
|
1548
1368
|
"nowrap",
|
|
@@ -1550,17 +1370,17 @@ const Re = ({
|
|
|
1550
1370
|
"pre-line",
|
|
1551
1371
|
"pre-wrap",
|
|
1552
1372
|
"revert"
|
|
1553
|
-
],
|
|
1373
|
+
], a2 = Object.keys(R["font-family"]).filter(
|
|
1554
1374
|
(a) => !["base"].includes(a)
|
|
1555
|
-
),
|
|
1375
|
+
), s2 = Object.keys(
|
|
1556
1376
|
R["font-weight"]
|
|
1557
|
-
),
|
|
1377
|
+
), c2 = Object.keys(
|
|
1558
1378
|
R.typography.heading
|
|
1559
|
-
),
|
|
1379
|
+
), l2 = Object.keys(
|
|
1560
1380
|
R.typography.text
|
|
1561
1381
|
);
|
|
1562
|
-
var
|
|
1563
|
-
const
|
|
1382
|
+
var b0 = /* @__PURE__ */ ((a) => (a.angry = "angry", a.heart = "heart", a.interesting = "interesting", a.laughing = "laughing", a.sad = "sad", a.shock = "shock", a.solidary = "solidary", a.down = "down", a.up = "up", a))(b0 || {});
|
|
1383
|
+
const K1 = {
|
|
1564
1384
|
sad: "😢",
|
|
1565
1385
|
interesting: "😍",
|
|
1566
1386
|
laughing: "😂",
|
|
@@ -1606,7 +1426,7 @@ const G1 = {
|
|
|
1606
1426
|
filterPrefix: "69123AR",
|
|
1607
1427
|
ids: Array.from({ length: 9 }, (a, s) => `69123AR0${s + 1}`)
|
|
1608
1428
|
}
|
|
1609
|
-
},
|
|
1429
|
+
}, y0 = {
|
|
1610
1430
|
"01": "Ain",
|
|
1611
1431
|
"02": "Aisne",
|
|
1612
1432
|
"03": "Allier",
|
|
@@ -1708,7 +1528,7 @@ const G1 = {
|
|
|
1708
1528
|
973: "Guyane",
|
|
1709
1529
|
974: "La Réunion",
|
|
1710
1530
|
976: "Mayotte"
|
|
1711
|
-
},
|
|
1531
|
+
}, t2 = ["xs", "sm", "md", "lg", "xl", "xxl"], _0 = [
|
|
1712
1532
|
"extreme-gauche",
|
|
1713
1533
|
"parti-revolutionnaire-communiste",
|
|
1714
1534
|
"lutte-ouvriere",
|
|
@@ -1773,11 +1593,11 @@ const G1 = {
|
|
|
1773
1593
|
"europe-democratie-esperanto",
|
|
1774
1594
|
"union-populaire-republicaine",
|
|
1775
1595
|
"regionalistes"
|
|
1776
|
-
],
|
|
1596
|
+
], z0 = {
|
|
1777
1597
|
borderColor: ["border-color"],
|
|
1778
1598
|
bg: ["background-color"],
|
|
1779
1599
|
color: ["color"]
|
|
1780
|
-
},
|
|
1600
|
+
}, G1 = {
|
|
1781
1601
|
alignItems: ["align-items"],
|
|
1782
1602
|
alignContent: ["align-content"],
|
|
1783
1603
|
justifyContent: ["justify-content"],
|
|
@@ -1788,14 +1608,14 @@ const G1 = {
|
|
|
1788
1608
|
direction: ["direction"],
|
|
1789
1609
|
wrap: ["wrap"],
|
|
1790
1610
|
flexGrow: ["flex-grow"]
|
|
1791
|
-
},
|
|
1611
|
+
}, N0 = {
|
|
1792
1612
|
align: ["align-self"],
|
|
1793
1613
|
basis: ["flex-basis"],
|
|
1794
1614
|
shrink: ["flex-shrink"],
|
|
1795
1615
|
grow: ["flex-grow"]
|
|
1796
|
-
},
|
|
1616
|
+
}, U1 = {
|
|
1797
1617
|
radius: ["border-radius"]
|
|
1798
|
-
},
|
|
1618
|
+
}, k0 = {
|
|
1799
1619
|
m: ["margin"],
|
|
1800
1620
|
mt: ["margin-top"],
|
|
1801
1621
|
mr: ["margin-right"],
|
|
@@ -1803,7 +1623,7 @@ const G1 = {
|
|
|
1803
1623
|
mb: ["margin-bottom"],
|
|
1804
1624
|
mx: ["margin-left", "margin-right"],
|
|
1805
1625
|
my: ["margin-top", "margin-bottom"]
|
|
1806
|
-
},
|
|
1626
|
+
}, W1 = {
|
|
1807
1627
|
p: ["padding"],
|
|
1808
1628
|
pt: ["padding-top"],
|
|
1809
1629
|
pr: ["padding-right"],
|
|
@@ -1811,14 +1631,14 @@ const G1 = {
|
|
|
1811
1631
|
pb: ["padding-bottom"],
|
|
1812
1632
|
px: ["padding-left", "padding-right"],
|
|
1813
1633
|
py: ["padding-top", "padding-bottom"]
|
|
1814
|
-
},
|
|
1815
|
-
...
|
|
1816
|
-
...Y1
|
|
1817
|
-
}, C0 = {
|
|
1818
|
-
...X1,
|
|
1819
|
-
...N0,
|
|
1634
|
+
}, Y1 = {
|
|
1635
|
+
...k0,
|
|
1820
1636
|
...W1
|
|
1821
|
-
},
|
|
1637
|
+
}, M0 = {
|
|
1638
|
+
...Y1,
|
|
1639
|
+
...z0,
|
|
1640
|
+
...U1
|
|
1641
|
+
}, C0 = {
|
|
1822
1642
|
textAlign: ["text-align"],
|
|
1823
1643
|
weight: ["font-weight"],
|
|
1824
1644
|
italic: ["font-style"],
|
|
@@ -1826,28 +1646,208 @@ const G1 = {
|
|
|
1826
1646
|
textTransform: ["text-transform"],
|
|
1827
1647
|
fontFamily: ["font-family"],
|
|
1828
1648
|
whiteSpace: ["white-space"]
|
|
1829
|
-
},
|
|
1649
|
+
}, n2 = Object.keys(R.color.theme), r2 = ["light", "dark"], i2 = Object.keys(R.spacing), o2 = [
|
|
1830
1650
|
...Object.keys(R.color.primary),
|
|
1831
1651
|
...Object.keys(R.color.secondary),
|
|
1832
1652
|
...Object.keys(R.color.greyscale),
|
|
1833
1653
|
...Object.keys(R.color.status),
|
|
1834
1654
|
...Object.keys(R.color.theme)
|
|
1835
|
-
],
|
|
1655
|
+
], d2 = Object.keys(R.asset.icon), h2 = Object.keys(
|
|
1836
1656
|
R.asset.icon["horoscope-sign"].chinese
|
|
1837
|
-
),
|
|
1657
|
+
), m2 = Object.keys(
|
|
1838
1658
|
R.asset.icon["horoscope-sign"].zodiac
|
|
1839
|
-
),
|
|
1659
|
+
), u2 = Object.keys(
|
|
1840
1660
|
R.asset.icon["numerology-sign"]
|
|
1841
|
-
),
|
|
1661
|
+
), p2 = Object.keys(R.radius), g2 = [
|
|
1842
1662
|
"20-arena",
|
|
1843
1663
|
"on-vous-en-dit-plus",
|
|
1844
1664
|
"planete-c",
|
|
1845
1665
|
"plein-les-poches",
|
|
1846
1666
|
"story",
|
|
1847
1667
|
"tant-d-ecrans"
|
|
1848
|
-
]
|
|
1668
|
+
];
|
|
1669
|
+
function F(a) {
|
|
1670
|
+
return Q.forwardRef(a);
|
|
1671
|
+
}
|
|
1672
|
+
const H = F(
|
|
1673
|
+
({
|
|
1674
|
+
as: a = "button",
|
|
1675
|
+
variant: s,
|
|
1676
|
+
color: c = s === "ghost" || s === "link" ? void 0 : "primary",
|
|
1677
|
+
children: l,
|
|
1678
|
+
iconProps: r,
|
|
1679
|
+
counter: n,
|
|
1680
|
+
isCentered: i = !1,
|
|
1681
|
+
isSquare: o = !1,
|
|
1682
|
+
isFullWidth: d = !1,
|
|
1683
|
+
isLoading: u = !1,
|
|
1684
|
+
size: m,
|
|
1685
|
+
isCloseWithProgress: v,
|
|
1686
|
+
closeProgressColor: f,
|
|
1687
|
+
..._
|
|
1688
|
+
}, w) => {
|
|
1689
|
+
const b = {
|
|
1690
|
+
..._?.style,
|
|
1691
|
+
...f && {
|
|
1692
|
+
"--button-close-progress-color": `var(--color-theme-${f})`
|
|
1693
|
+
}
|
|
1694
|
+
};
|
|
1695
|
+
return /* @__PURE__ */ t(
|
|
1696
|
+
h,
|
|
1697
|
+
{
|
|
1698
|
+
..._,
|
|
1699
|
+
style: b,
|
|
1700
|
+
as: a,
|
|
1701
|
+
ref: w,
|
|
1702
|
+
alignItems: "center",
|
|
1703
|
+
justifyContent: "center",
|
|
1704
|
+
gap: "xxs",
|
|
1705
|
+
inline: s === "link" || a === "a",
|
|
1706
|
+
radius: o ? "0" : void 0,
|
|
1707
|
+
className: p(
|
|
1708
|
+
"c-btn",
|
|
1709
|
+
{
|
|
1710
|
+
[`c-btn--${c}`]: c,
|
|
1711
|
+
[`c-btn--${s}`]: s,
|
|
1712
|
+
[`c-btn--${m}`]: m,
|
|
1713
|
+
"c-btn--is-centered": i,
|
|
1714
|
+
"c-btn--is-loading": u,
|
|
1715
|
+
"c-btn--full-width": d
|
|
1716
|
+
},
|
|
1717
|
+
_?.className
|
|
1718
|
+
),
|
|
1719
|
+
children: [
|
|
1720
|
+
r && /* @__PURE__ */ e(N, { ...r }),
|
|
1721
|
+
l,
|
|
1722
|
+
(n === 0 || n) && /* @__PURE__ */ e(
|
|
1723
|
+
h,
|
|
1724
|
+
{
|
|
1725
|
+
justifyContent: "center",
|
|
1726
|
+
alignItems: "center",
|
|
1727
|
+
color: "grey-900",
|
|
1728
|
+
bg: "white",
|
|
1729
|
+
px: "xxs",
|
|
1730
|
+
radius: "s",
|
|
1731
|
+
className: "c-btn__counter",
|
|
1732
|
+
children: n
|
|
1733
|
+
}
|
|
1734
|
+
),
|
|
1735
|
+
v && /* @__PURE__ */ e("div", { className: "c-btn__close-progress" })
|
|
1736
|
+
]
|
|
1737
|
+
}
|
|
1738
|
+
);
|
|
1739
|
+
}
|
|
1740
|
+
);
|
|
1741
|
+
H.displayName = "Button";
|
|
1742
|
+
const v2 = ({
|
|
1743
|
+
id: a,
|
|
1744
|
+
className: s,
|
|
1745
|
+
required: c,
|
|
1746
|
+
label: l,
|
|
1747
|
+
variant: r,
|
|
1748
|
+
variantLabel: n = "default",
|
|
1749
|
+
hint: i,
|
|
1750
|
+
error: o,
|
|
1751
|
+
...d
|
|
1752
|
+
}) => /* @__PURE__ */ t("div", { className: "c-checkbox", children: [
|
|
1753
|
+
/* @__PURE__ */ e(
|
|
1754
|
+
"input",
|
|
1755
|
+
{
|
|
1756
|
+
id: a,
|
|
1757
|
+
type: "checkbox",
|
|
1758
|
+
className: p(
|
|
1759
|
+
"c-checkbox__input",
|
|
1760
|
+
{
|
|
1761
|
+
[`c-checkbox__input--${r}`]: r
|
|
1762
|
+
},
|
|
1763
|
+
s
|
|
1764
|
+
),
|
|
1765
|
+
required: c,
|
|
1766
|
+
"aria-describedby": [i ? `${a}-hint` : null, o ? `${a}-error` : null].filter(Boolean).join(" ") || void 0,
|
|
1767
|
+
...d
|
|
1768
|
+
}
|
|
1769
|
+
),
|
|
1770
|
+
l && /* @__PURE__ */ t(
|
|
1771
|
+
"label",
|
|
1772
|
+
{
|
|
1773
|
+
htmlFor: a,
|
|
1774
|
+
className: p("c-checkbox__label", `c-checkbox__label--${n}`),
|
|
1775
|
+
children: [
|
|
1776
|
+
l,
|
|
1777
|
+
c && /* @__PURE__ */ t(g, { as: "span", size: "xxs", weight: "regular", children: [
|
|
1778
|
+
" ",
|
|
1779
|
+
"(obligatoire)"
|
|
1780
|
+
] })
|
|
1781
|
+
]
|
|
1782
|
+
}
|
|
1783
|
+
),
|
|
1784
|
+
o && /* @__PURE__ */ e(
|
|
1785
|
+
g,
|
|
1786
|
+
{
|
|
1787
|
+
as: "span",
|
|
1788
|
+
id: `${a}-error`,
|
|
1789
|
+
className: "u-mask",
|
|
1790
|
+
color: "red",
|
|
1791
|
+
size: "xxs",
|
|
1792
|
+
mt: "xxs-2",
|
|
1793
|
+
ml: "xxs-2",
|
|
1794
|
+
role: "alert",
|
|
1795
|
+
children: o
|
|
1796
|
+
}
|
|
1797
|
+
),
|
|
1798
|
+
i && /* @__PURE__ */ e(g, { as: "span", id: `${a}-hint`, mt: "xxs-2", ml: "xxs-2", className: "u-mask", children: i })
|
|
1799
|
+
] }), G = F(
|
|
1800
|
+
({ text: a, color: s = "black", thickness: c = "thin", ...l }, r) => {
|
|
1801
|
+
const n = /* @__PURE__ */ e(
|
|
1802
|
+
I,
|
|
1803
|
+
{
|
|
1804
|
+
bg: s,
|
|
1805
|
+
align: "center",
|
|
1806
|
+
className: p("c-divider__line", {
|
|
1807
|
+
[`c-divider__line--${c}`]: c !== "thin"
|
|
1808
|
+
})
|
|
1809
|
+
}
|
|
1810
|
+
);
|
|
1811
|
+
return /* @__PURE__ */ e(
|
|
1812
|
+
h,
|
|
1813
|
+
{
|
|
1814
|
+
...l,
|
|
1815
|
+
ref: r,
|
|
1816
|
+
className: p(
|
|
1817
|
+
"c-divider",
|
|
1818
|
+
{ "c-divider--has-text": !!a },
|
|
1819
|
+
l?.className
|
|
1820
|
+
),
|
|
1821
|
+
children: a ? /* @__PURE__ */ t(j, { children: [
|
|
1822
|
+
n,
|
|
1823
|
+
/* @__PURE__ */ e(I, { px: "xxs-2", className: "c-divider__text", children: /* @__PURE__ */ e(g, { size: "xxs", color: s, textTransform: "uppercase", children: a }) }),
|
|
1824
|
+
n
|
|
1825
|
+
] }) : n
|
|
1826
|
+
}
|
|
1827
|
+
);
|
|
1828
|
+
}
|
|
1829
|
+
), L1 = ({
|
|
1830
|
+
bg: a = "ultramarine",
|
|
1831
|
+
...s
|
|
1832
|
+
}) => /* @__PURE__ */ e(x, { ...s, className: p("c-divider-section", s?.className), children: /* @__PURE__ */ e(x, { as: "hr", className: p("c-divider-section__line"), bg: a }) }), X1 = F(
|
|
1833
|
+
({ color: a = "black", thickness: s = "thin", ...c }, l) => /* @__PURE__ */ e(
|
|
1834
|
+
x,
|
|
1835
|
+
{
|
|
1836
|
+
...c,
|
|
1837
|
+
ref: l,
|
|
1838
|
+
bg: a,
|
|
1839
|
+
className: p(
|
|
1840
|
+
"c-divider-vertical",
|
|
1841
|
+
{
|
|
1842
|
+
[`c-divider-vertical--${s}`]: s !== "thin"
|
|
1843
|
+
},
|
|
1844
|
+
c?.className
|
|
1845
|
+
)
|
|
1846
|
+
}
|
|
1847
|
+
)
|
|
1848
|
+
), x2 = ["quarter", "half", "three-quarter"], f2 = ["small", "medium", "big"], S0 = (a) => typeof a == "string" && _0.includes(a), N = F(
|
|
1849
1849
|
({ name: a, size: s = 28, isRounded: c = !1, border: l, rotation: r, svgTitle: n, color: i, ...o }, d) => {
|
|
1850
|
-
const u = Array.isArray(s) ? s?.[0] : s, m = Array.isArray(s) ? s?.[1] : s, v = !n, f =
|
|
1850
|
+
const u = Array.isArray(s) ? s?.[0] : s, m = Array.isArray(s) ? s?.[1] : s, v = !n, f = S0(i);
|
|
1851
1851
|
return /* @__PURE__ */ e(
|
|
1852
1852
|
x,
|
|
1853
1853
|
{
|
|
@@ -3039,7 +3039,7 @@ const G1 = {
|
|
|
3039
3039
|
/* @__PURE__ */ e("defs", { children: /* @__PURE__ */ e("clipPath", { id: "fha", children: /* @__PURE__ */ e("path", { fill: "#fff", d: "M22 5h32v74H22z" }) }) })
|
|
3040
3040
|
] }),
|
|
3041
3041
|
/* @__PURE__ */ e("symbol", { viewBox: "0 0 20 15", id: "youtube", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ e("path", { d: "M19.5 2.8c-.1-.6-.4-1.1-.8-1.5-.4-.4-.9-.7-1.4-.9C15.7.1 10.6 0 10 0c-.6 0-5.7 0-7.2.4-.5.2-1 .4-1.4.9-.5.4-.7 1-.9 1.5C.1 4.4.1 7.4.1 7.5s0 3.1.4 4.7c.1.6.4 1.1.8 1.5.4.4.9.7 1.4.9 1.5.4 6.6.4 7.2.4.6 0 5.7 0 7.2-.4.5-.2 1-.4 1.4-.9.4-.4.7-.9.8-1.5.4-1.5.4-4.6.4-4.7s.2-3.1-.2-4.7zm-6.3 5c0 .1-.1.1-.2.2l-4.3 2.6c-.1 0-.2.1-.2.1-.1 0-.3-.1-.4-.2s-.1-.3-.1-.4V4.7c0-.1.1-.1.2-.2.1 0 .2-.1.2-.1.1 0 .2 0 .2.1L13 7.1c.1 0 .1.1.2.2s.1.2.1.3c-.1 0-.1.1-.1.2z" }) })
|
|
3042
|
-
] }), b2 = [...
|
|
3042
|
+
] }), b2 = [...w0, "blue-dark"], q = F(
|
|
3043
3043
|
({ iconProps: a, as: s = "button", variant: c, color: l, size: r, hasShadow: n, isLoading: i, isFloating: o, ...d }, u) => /* @__PURE__ */ e(
|
|
3044
3044
|
h,
|
|
3045
3045
|
{
|
|
@@ -3096,7 +3096,7 @@ function y2({ title: a, ratio: s = "auto", htmlIframeProps: c, ...l }) {
|
|
|
3096
3096
|
}
|
|
3097
3097
|
);
|
|
3098
3098
|
}
|
|
3099
|
-
const
|
|
3099
|
+
const B0 = ({ src: a, formats: s }) => {
|
|
3100
3100
|
if (s !== void 0 && s.length > 0)
|
|
3101
3101
|
return s.map((c) => `${a.replace(/%format/, c)} ${c.split("x")[0]}w`).join(", ");
|
|
3102
3102
|
}, $1 = ({ src: a, format: s }) => a.replace(/%format/, s), d1 = ({
|
|
@@ -3126,12 +3126,12 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3126
3126
|
return /* @__PURE__ */ e(x, { as: "img", src: s, ...f });
|
|
3127
3127
|
const _ = c.split("x"), w = _[0], b = _[1];
|
|
3128
3128
|
let C, Z = `data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='${w}'%20height='${b}'%3E%3C/svg%3E`;
|
|
3129
|
-
if (s && (Z = $1({ src: s, format: c }), C =
|
|
3129
|
+
if (s && (Z = $1({ src: s, format: c }), C = B0({ formats: l, src: s }) ?? ""), u) {
|
|
3130
3130
|
const k = Number(w) * 2, M = Number(b) * 2, S = `${k}x${M}`, y = $1({ src: s, format: S });
|
|
3131
3131
|
C = C ? `${C}, ${y} 2x` : `${y} 2x`;
|
|
3132
3132
|
}
|
|
3133
3133
|
return f.width = w || void 0, f.height = b !== "0" ? b : void 0, f.sizes = n || void 0, /* @__PURE__ */ e(x, { ...f, as: "img", src: Z, ...C ? { srcSet: C } : {} });
|
|
3134
|
-
}, i1 = ({ size: a, ...s }) => /* @__PURE__ */ e(g, { as: "span", size: a || "s", ...s, children: "•" }), V1 =
|
|
3134
|
+
}, i1 = ({ size: a, ...s }) => /* @__PURE__ */ e(g, { as: "span", size: a || "s", ...s, children: "•" }), V1 = F(
|
|
3135
3135
|
({
|
|
3136
3136
|
id: a,
|
|
3137
3137
|
className: s,
|
|
@@ -3170,7 +3170,9 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3170
3170
|
{
|
|
3171
3171
|
direction: "column",
|
|
3172
3172
|
...v,
|
|
3173
|
-
className: p("c-input", v?.className
|
|
3173
|
+
className: p("c-input", v?.className, {
|
|
3174
|
+
[`c-input--${u}`]: u
|
|
3175
|
+
}),
|
|
3174
3176
|
children: [
|
|
3175
3177
|
r && /* @__PURE__ */ t("label", { htmlFor: a, className: "c-input__label", children: [
|
|
3176
3178
|
r,
|
|
@@ -3185,7 +3187,6 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3185
3187
|
{
|
|
3186
3188
|
gap: n && b ? "xs" : void 0,
|
|
3187
3189
|
className: p("c-input-container", {
|
|
3188
|
-
[`c-input-container--${u}`]: u,
|
|
3189
3190
|
"c-input-container--rounded": f,
|
|
3190
3191
|
"c-input-container--transparent": _,
|
|
3191
3192
|
"c-input-container--large": w,
|
|
@@ -3291,10 +3292,10 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3291
3292
|
});
|
|
3292
3293
|
return r && s.push(r), s;
|
|
3293
3294
|
}, []);
|
|
3294
|
-
},
|
|
3295
|
+
}, Z0 = (a) => a.replace(/([a-z])([A-Z])/g, "$1-$2").replace(/[\s_]+/g, "-").toLowerCase(), O1 = (a) => {
|
|
3295
3296
|
if (a.propValue !== void 0) {
|
|
3296
3297
|
if (typeof a.propValue != "boolean") {
|
|
3297
|
-
const s =
|
|
3298
|
+
const s = Z0(
|
|
3298
3299
|
typeof a.propValue == "number" ? a.propValue.toString() : a.propValue
|
|
3299
3300
|
);
|
|
3300
3301
|
return a.className ? `${a.className}-${s}@${a.defaultModifier}` : `${s}@${a.defaultModifier}`;
|
|
@@ -3303,11 +3304,11 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3303
3304
|
throw new Error('It is necessary to define the argument "className" !');
|
|
3304
3305
|
return `${a.className}@${a.defaultModifier}`;
|
|
3305
3306
|
}
|
|
3306
|
-
},
|
|
3307
|
+
}, $0 = (a) => p({
|
|
3307
3308
|
[`bg-${a.bg}`]: a.bg,
|
|
3308
3309
|
[`color-${a.color}`]: a.color,
|
|
3309
3310
|
[`border-color-${a.borderColor}`]: a.borderColor
|
|
3310
|
-
}),
|
|
3311
|
+
}), j0 = ({
|
|
3311
3312
|
basis: a,
|
|
3312
3313
|
shrink: s,
|
|
3313
3314
|
grow: c,
|
|
@@ -3325,8 +3326,8 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3325
3326
|
propValue: c,
|
|
3326
3327
|
className: "grow"
|
|
3327
3328
|
}),
|
|
3328
|
-
|
|
3329
|
-
),
|
|
3329
|
+
V0(l)
|
|
3330
|
+
), L0 = ({
|
|
3330
3331
|
inline: a = !1,
|
|
3331
3332
|
direction: s,
|
|
3332
3333
|
wrap: c,
|
|
@@ -3373,20 +3374,20 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3373
3374
|
propValue: a.flexGrow,
|
|
3374
3375
|
className: "grow"
|
|
3375
3376
|
})
|
|
3376
|
-
),
|
|
3377
|
+
), V0 = (a) => p(
|
|
3377
3378
|
...V({
|
|
3378
3379
|
propValue: a.align,
|
|
3379
3380
|
className: "self"
|
|
3380
3381
|
})
|
|
3381
|
-
), h1 = (a) => typeof a.props == "object" ? Object.keys(a.props).reduce((s, c) => (a.systemPropNames.includes(c) || (s[c] = a.props[c]), s), {}) : {},
|
|
3382
|
-
Object.entries(a).filter(([s]) => Object.keys(
|
|
3382
|
+
), h1 = (a) => typeof a.props == "object" ? Object.keys(a.props).reduce((s, c) => (a.systemPropNames.includes(c) || (s[c] = a.props[c]), s), {}) : {}, H0 = (a) => p(
|
|
3383
|
+
Object.entries(a).filter(([s]) => Object.keys(U1).includes(s)).reduce((s, [c, l]) => (s.push(
|
|
3383
3384
|
...V({
|
|
3384
3385
|
className: c,
|
|
3385
3386
|
propValue: l
|
|
3386
3387
|
})
|
|
3387
3388
|
), s), [])
|
|
3388
3389
|
), Q1 = (a) => p(
|
|
3389
|
-
Object.entries(a).filter(([s]) => Object.keys(
|
|
3390
|
+
Object.entries(a).filter(([s]) => Object.keys(Y1).includes(s)).reduce((s, [c, l]) => (s.push(
|
|
3390
3391
|
...V({
|
|
3391
3392
|
className: c,
|
|
3392
3393
|
propValue: l
|
|
@@ -3394,8 +3395,8 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3394
3395
|
), s), [])
|
|
3395
3396
|
), e0 = (a) => p(
|
|
3396
3397
|
Q1(a),
|
|
3397
|
-
|
|
3398
|
-
|
|
3398
|
+
$0(a),
|
|
3399
|
+
H0(a)
|
|
3399
3400
|
), j1 = ({
|
|
3400
3401
|
textAlign: a,
|
|
3401
3402
|
weight: s,
|
|
@@ -3420,12 +3421,12 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3420
3421
|
"text-italic": !!r,
|
|
3421
3422
|
[`font-${n}`]: !!n
|
|
3422
3423
|
}
|
|
3423
|
-
), x =
|
|
3424
|
+
), x = F(({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
3424
3425
|
a,
|
|
3425
3426
|
{
|
|
3426
3427
|
...h1({
|
|
3427
3428
|
props: c,
|
|
3428
|
-
systemPropNames: Object.keys(
|
|
3429
|
+
systemPropNames: Object.keys(M0)
|
|
3429
3430
|
}),
|
|
3430
3431
|
ref: l,
|
|
3431
3432
|
className: p(e0(c), c?.className),
|
|
@@ -3433,36 +3434,36 @@ const Z0 = ({ src: a, formats: s }) => {
|
|
|
3433
3434
|
}
|
|
3434
3435
|
));
|
|
3435
3436
|
x.displayName = "Box";
|
|
3436
|
-
const h =
|
|
3437
|
+
const h = F(({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
3437
3438
|
x,
|
|
3438
3439
|
{
|
|
3439
3440
|
...h1({
|
|
3440
3441
|
props: c,
|
|
3441
|
-
systemPropNames: Object.keys(
|
|
3442
|
+
systemPropNames: Object.keys(G1)
|
|
3442
3443
|
}),
|
|
3443
3444
|
as: a,
|
|
3444
3445
|
ref: l,
|
|
3445
|
-
className: p(
|
|
3446
|
+
className: p(L0(c), c?.className),
|
|
3446
3447
|
children: s
|
|
3447
3448
|
}
|
|
3448
|
-
)),
|
|
3449
|
+
)), I = F(
|
|
3449
3450
|
({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
3450
3451
|
x,
|
|
3451
3452
|
{
|
|
3452
3453
|
...h1({
|
|
3453
3454
|
props: c,
|
|
3454
|
-
systemPropNames: Object.keys(
|
|
3455
|
+
systemPropNames: Object.keys(N0)
|
|
3455
3456
|
}),
|
|
3456
3457
|
as: a,
|
|
3457
3458
|
ref: l,
|
|
3458
|
-
className: p(
|
|
3459
|
+
className: p(j0(c), c?.className),
|
|
3459
3460
|
children: s
|
|
3460
3461
|
}
|
|
3461
3462
|
)
|
|
3462
3463
|
), z2 = [1, 2, 3, 4, 5, 6, 12, "2-of-3"], l1 = ({ colsNumber: a, gap: s, gapX: c, gapY: l, children: r, ...n }) => Q.createElement(x, {
|
|
3463
3464
|
...h1({
|
|
3464
3465
|
props: n,
|
|
3465
|
-
systemPropNames: Object.keys(
|
|
3466
|
+
systemPropNames: Object.keys(G1)
|
|
3466
3467
|
}),
|
|
3467
3468
|
className: p(
|
|
3468
3469
|
"grid",
|
|
@@ -3485,7 +3486,7 @@ const h = T(({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
|
3485
3486
|
p(J1(n), n?.className)
|
|
3486
3487
|
),
|
|
3487
3488
|
children: r
|
|
3488
|
-
}), $ =
|
|
3489
|
+
}), $ = F(
|
|
3489
3490
|
({
|
|
3490
3491
|
as: a = "a",
|
|
3491
3492
|
children: s,
|
|
@@ -3563,24 +3564,33 @@ const h = T(({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
|
3563
3564
|
]
|
|
3564
3565
|
}
|
|
3565
3566
|
);
|
|
3566
|
-
},
|
|
3567
|
+
}, F0 = (a) => /* @__PURE__ */ e(x, { ...a, className: p("c-overlay c-overlay--with-bg", a?.className) }), H1 = ({ isWhite: a }) => /* @__PURE__ */ e("div", { className: p("c-pipe", { "c-pipe--is-white": a }) }), N2 = ({
|
|
3567
3568
|
id: a,
|
|
3568
3569
|
required: s,
|
|
3569
3570
|
label: c,
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3571
|
+
variant: l,
|
|
3572
|
+
...r
|
|
3573
|
+
}) => /* @__PURE__ */ t(
|
|
3574
|
+
"div",
|
|
3575
|
+
{
|
|
3576
|
+
className: p("c-radio-button", {
|
|
3577
|
+
[`c-radio-button--${l}`]: l
|
|
3578
|
+
}),
|
|
3579
|
+
children: [
|
|
3580
|
+
/* @__PURE__ */ e(
|
|
3581
|
+
"input",
|
|
3582
|
+
{
|
|
3583
|
+
id: a,
|
|
3584
|
+
type: "radio",
|
|
3585
|
+
className: "c-radio-button__input",
|
|
3586
|
+
required: s,
|
|
3587
|
+
...r
|
|
3588
|
+
}
|
|
3589
|
+
),
|
|
3590
|
+
c && /* @__PURE__ */ e("label", { htmlFor: a, className: "c-radio-button__label", children: c })
|
|
3591
|
+
]
|
|
3592
|
+
}
|
|
3593
|
+
), I0 = ({ rating: a, ratingMax: s = 5, iconProps: c, ...l }) => {
|
|
3584
3594
|
const r = (d) => /* @__PURE__ */ e(N, { name: "star", color: "ultramarine", ...c }, d), n = (d) => /* @__PURE__ */ e(N, { name: "star", color: "grey-200", ...c }, d), i = (d) => /* @__PURE__ */ e(N, { name: "halfstar", color: "grey-200", ...c }, d), o = [];
|
|
3585
3595
|
for (let d = 0; d < s; d += 1) {
|
|
3586
3596
|
const u = d < a, m = d + 0.5 === a;
|
|
@@ -3645,7 +3655,7 @@ const h = T(({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
|
3645
3655
|
)
|
|
3646
3656
|
]
|
|
3647
3657
|
}
|
|
3648
|
-
), M2 =
|
|
3658
|
+
), M2 = F(
|
|
3649
3659
|
({ variant: a, progressColor: s = "ultramarine" }, c) => /* @__PURE__ */ e(
|
|
3650
3660
|
x,
|
|
3651
3661
|
{
|
|
@@ -3655,7 +3665,7 @@ const h = T(({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
|
3655
3665
|
children: /* @__PURE__ */ e(x, { className: "c-progress__bar", bg: s, style: { width: "0%" } })
|
|
3656
3666
|
}
|
|
3657
3667
|
)
|
|
3658
|
-
),
|
|
3668
|
+
), T0 = ({
|
|
3659
3669
|
triggerSelector: a = "[data-scroll-trigger]",
|
|
3660
3670
|
triggerOffset: s = 0,
|
|
3661
3671
|
...c
|
|
@@ -3677,7 +3687,7 @@ const h = T(({ as: a = "div", children: s, ...c }, l) => /* @__PURE__ */ e(
|
|
|
3677
3687
|
) })
|
|
3678
3688
|
}
|
|
3679
3689
|
);
|
|
3680
|
-
|
|
3690
|
+
T0.displayName = "ScrollToTopButton";
|
|
3681
3691
|
const C2 = ({ inner: a, children: s, ...c }) => /* @__PURE__ */ e(
|
|
3682
3692
|
x,
|
|
3683
3693
|
{
|
|
@@ -3685,7 +3695,7 @@ const C2 = ({ inner: a, children: s, ...c }) => /* @__PURE__ */ e(
|
|
|
3685
3695
|
className: p("c-section", { "c-section--inner": a }, c?.className),
|
|
3686
3696
|
children: s
|
|
3687
3697
|
}
|
|
3688
|
-
),
|
|
3698
|
+
), A0 = F(
|
|
3689
3699
|
({
|
|
3690
3700
|
id: a,
|
|
3691
3701
|
className: s,
|
|
@@ -3737,7 +3747,7 @@ const C2 = ({ inner: a, children: s, ...c }) => /* @__PURE__ */ e(
|
|
|
3737
3747
|
"aria-describedby": [v ? `${a}-hint` : null, f ? `${a}-error` : null].filter(Boolean).join(" ") || void 0,
|
|
3738
3748
|
...h1({
|
|
3739
3749
|
props: _,
|
|
3740
|
-
systemPropNames: Object.keys(
|
|
3750
|
+
systemPropNames: Object.keys(W1)
|
|
3741
3751
|
}),
|
|
3742
3752
|
children: [
|
|
3743
3753
|
i && /* @__PURE__ */ e("option", { value: "", disabled: !0, hidden: !0, children: i }),
|
|
@@ -3776,7 +3786,7 @@ const C2 = ({ inner: a, children: s, ...c }) => /* @__PURE__ */ e(
|
|
|
3776
3786
|
}
|
|
3777
3787
|
);
|
|
3778
3788
|
var z = /* @__PURE__ */ ((a) => (a.MOBILE = "mobile", a.DESKTOP = "desktop", a))(z || {}), Y = /* @__PURE__ */ ((a) => (a.embed = "embed", a.photo = "photo", a.podcast = "podcast", a.video = "video", a))(Y || {});
|
|
3779
|
-
const m1 =
|
|
3789
|
+
const m1 = F(
|
|
3780
3790
|
({
|
|
3781
3791
|
layout: a,
|
|
3782
3792
|
children: s,
|
|
@@ -3830,12 +3840,12 @@ const m1 = T(
|
|
|
3830
3840
|
]
|
|
3831
3841
|
}
|
|
3832
3842
|
)
|
|
3833
|
-
),
|
|
3843
|
+
), D0 = ({
|
|
3834
3844
|
items: a,
|
|
3835
3845
|
colorVariant: s = "ultramarine",
|
|
3836
3846
|
...c
|
|
3837
3847
|
}) => /* @__PURE__ */ e(h, { className: "c-stepper", gap: "xxs-2", ...c, children: a.map((l, r) => /* @__PURE__ */ e(
|
|
3838
|
-
|
|
3848
|
+
I,
|
|
3839
3849
|
{
|
|
3840
3850
|
className: p("c-stepper__item", {
|
|
3841
3851
|
"c-stepper__item--loading": l.loading,
|
|
@@ -3845,7 +3855,7 @@ const m1 = T(
|
|
|
3845
3855
|
children: /* @__PURE__ */ e(x, { className: "c-stepper__loader", bg: s })
|
|
3846
3856
|
},
|
|
3847
3857
|
r
|
|
3848
|
-
)) }),
|
|
3858
|
+
)) }), O0 = ({
|
|
3849
3859
|
containerProps: a,
|
|
3850
3860
|
labelPosition: s = "before",
|
|
3851
3861
|
label: c,
|
|
@@ -3916,7 +3926,7 @@ const m1 = T(
|
|
|
3916
3926
|
"aria-labelledby": `tab-${a}`,
|
|
3917
3927
|
children: s
|
|
3918
3928
|
}
|
|
3919
|
-
),
|
|
3929
|
+
), X = F(
|
|
3920
3930
|
({ as: a = "a", id: s, variant: c = "primary", size: l, children: r, ...n }, i) => /* @__PURE__ */ e(
|
|
3921
3931
|
x,
|
|
3922
3932
|
{
|
|
@@ -3935,7 +3945,7 @@ const m1 = T(
|
|
|
3935
3945
|
children: r
|
|
3936
3946
|
}
|
|
3937
3947
|
)
|
|
3938
|
-
), B2 =
|
|
3948
|
+
), B2 = F(
|
|
3939
3949
|
({ id: a, required: s, label: c, variant: l, msg: r, rows: n = 5, containerProps: i, hint: o, error: d, ...u }, m) => /* @__PURE__ */ t(
|
|
3940
3950
|
h,
|
|
3941
3951
|
{
|
|
@@ -3994,9 +4004,9 @@ const m1 = T(
|
|
|
3994
4004
|
]
|
|
3995
4005
|
}
|
|
3996
4006
|
)
|
|
3997
|
-
), L =
|
|
4007
|
+
), L = F(
|
|
3998
4008
|
({ as: a = "h1", size: s, children: c, ...l }, r) => /* @__PURE__ */ e(
|
|
3999
|
-
|
|
4009
|
+
s0,
|
|
4000
4010
|
{
|
|
4001
4011
|
...l,
|
|
4002
4012
|
as: a,
|
|
@@ -4011,9 +4021,9 @@ const m1 = T(
|
|
|
4011
4021
|
children: c
|
|
4012
4022
|
}
|
|
4013
4023
|
)
|
|
4014
|
-
), g =
|
|
4024
|
+
), g = F(
|
|
4015
4025
|
({ as: a = "p", size: s, highlighted: c, children: l, ...r }, n) => /* @__PURE__ */ e(
|
|
4016
|
-
|
|
4026
|
+
s0,
|
|
4017
4027
|
{
|
|
4018
4028
|
as: c ? "span" : a,
|
|
4019
4029
|
bg: c ? "sponsoring" : r.bg,
|
|
@@ -4032,13 +4042,13 @@ const m1 = T(
|
|
|
4032
4042
|
children: l
|
|
4033
4043
|
}
|
|
4034
4044
|
)
|
|
4035
|
-
),
|
|
4045
|
+
), s0 = F(
|
|
4036
4046
|
({ as: a = "p", children: s, ...c }, l) => s && s.toString().length || c?.dangerouslySetInnerHTML ? /* @__PURE__ */ e(
|
|
4037
4047
|
x,
|
|
4038
4048
|
{
|
|
4039
4049
|
...h1({
|
|
4040
4050
|
props: c,
|
|
4041
|
-
systemPropNames: Object.keys(
|
|
4051
|
+
systemPropNames: Object.keys(C0)
|
|
4042
4052
|
}),
|
|
4043
4053
|
as: a,
|
|
4044
4054
|
ref: l,
|
|
@@ -4143,7 +4153,7 @@ const m1 = T(
|
|
|
4143
4153
|
children: l
|
|
4144
4154
|
}
|
|
4145
4155
|
),
|
|
4146
|
-
n && /* @__PURE__ */ e(
|
|
4156
|
+
n && /* @__PURE__ */ e(J, { sponsor: n, variant: "header-dedicated-desktop", mt: "l" })
|
|
4147
4157
|
] });
|
|
4148
4158
|
let u = /* @__PURE__ */ t(x, { ...o, as: "header", children: [
|
|
4149
4159
|
s.length > 0 && /* @__PURE__ */ e(A, { color: r, size: "xs", children: s }),
|
|
@@ -4167,7 +4177,7 @@ const m1 = T(
|
|
|
4167
4177
|
] }),
|
|
4168
4178
|
l && l.length > 0 && /* @__PURE__ */ e(g, { id: "content-header-lead", as: "span", size: "xxl", fontFamily: "source-serif-pro", children: l })
|
|
4169
4179
|
] }),
|
|
4170
|
-
n && /* @__PURE__ */ e(
|
|
4180
|
+
n && /* @__PURE__ */ e(J, { sponsor: n, variant: "header-dedicated-desktop", mt: "l" })
|
|
4171
4181
|
]
|
|
4172
4182
|
}
|
|
4173
4183
|
)), u;
|
|
@@ -4309,7 +4319,7 @@ const m1 = T(
|
|
|
4309
4319
|
r !== a.length - 1 && /* @__PURE__ */ e(G, { color: "grey-200", my: "l" })
|
|
4310
4320
|
] }, l.title)) }),
|
|
4311
4321
|
/* @__PURE__ */ e(me, { heading: s.heading, description: s.description })
|
|
4312
|
-
] }),
|
|
4322
|
+
] }), I2 = ({ astroSignsList: a }) => /* @__PURE__ */ e(x, { as: "ul", className: "o-inline", mx: { xs: "m", md: "0" }, children: a.map((s) => /* @__PURE__ */ e("li", { className: "o-inline__by-4", children: /* @__PURE__ */ t("a", { href: s.url, className: "c-square-tile o-column bg-ultramarine color-white", children: [
|
|
4313
4323
|
/* @__PURE__ */ e(
|
|
4314
4324
|
N,
|
|
4315
4325
|
{
|
|
@@ -4321,7 +4331,7 @@ const m1 = T(
|
|
|
4321
4331
|
}
|
|
4322
4332
|
),
|
|
4323
4333
|
/* @__PURE__ */ e(A, { isUppercase: !1, children: s.label })
|
|
4324
|
-
] }) }, s.slug)) }), K0 =
|
|
4334
|
+
] }) }, s.slug)) }), K0 = F(
|
|
4325
4335
|
({ icon: a, title: s, content: c, ...l }, r) => /* @__PURE__ */ t(x, { ...l, ref: r, className: p("c-astro-topic-card", l?.className), children: [
|
|
4326
4336
|
/* @__PURE__ */ t(h, { alignItems: "center", mb: "s", children: [
|
|
4327
4337
|
/* @__PURE__ */ e(N, { mr: "xs", name: a, size: 21 }),
|
|
@@ -4342,7 +4352,7 @@ const m1 = T(
|
|
|
4342
4352
|
color: r.color ?? (r.path ? void 0 : c)
|
|
4343
4353
|
},
|
|
4344
4354
|
r.title
|
|
4345
|
-
)) }),
|
|
4355
|
+
)) }), T2 = ({
|
|
4346
4356
|
rubrics: a,
|
|
4347
4357
|
tags: s,
|
|
4348
4358
|
color: c,
|
|
@@ -4363,7 +4373,7 @@ const m1 = T(
|
|
|
4363
4373
|
as: "nav",
|
|
4364
4374
|
children: [
|
|
4365
4375
|
/* @__PURE__ */ e(
|
|
4366
|
-
|
|
4376
|
+
X,
|
|
4367
4377
|
{
|
|
4368
4378
|
variant: n ? "transparent" : "quinary",
|
|
4369
4379
|
href: "/",
|
|
@@ -4383,7 +4393,7 @@ const m1 = T(
|
|
|
4383
4393
|
)
|
|
4384
4394
|
}
|
|
4385
4395
|
),
|
|
4386
|
-
a && a.length > 0 && a.slice(0, 4).map((d) => /* @__PURE__ */ t(
|
|
4396
|
+
a && a.length > 0 && a.slice(0, 4).map((d) => /* @__PURE__ */ t(u0, { children: [
|
|
4387
4397
|
/* @__PURE__ */ e(
|
|
4388
4398
|
N,
|
|
4389
4399
|
{
|
|
@@ -4394,7 +4404,7 @@ const m1 = T(
|
|
|
4394
4404
|
}
|
|
4395
4405
|
),
|
|
4396
4406
|
/* @__PURE__ */ e(
|
|
4397
|
-
|
|
4407
|
+
X,
|
|
4398
4408
|
{
|
|
4399
4409
|
variant: n ? "transparent" : "quinary",
|
|
4400
4410
|
href: d.link,
|
|
@@ -4408,7 +4418,7 @@ const m1 = T(
|
|
|
4408
4418
|
s && s.length > 0 && /* @__PURE__ */ t(j, { children: [
|
|
4409
4419
|
/* @__PURE__ */ e(H1, { isWhite: i }),
|
|
4410
4420
|
s.map((d, u) => /* @__PURE__ */ e(
|
|
4411
|
-
|
|
4421
|
+
X,
|
|
4412
4422
|
{
|
|
4413
4423
|
variant: n ? "transparent" : d.variant,
|
|
4414
4424
|
color: n ? "white" : void 0,
|
|
@@ -4510,7 +4520,7 @@ const m1 = T(
|
|
|
4510
4520
|
const i = W(() => {
|
|
4511
4521
|
const y = l ? new Date(l) : /* @__PURE__ */ new Date();
|
|
4512
4522
|
return y.setHours(0, 0, 0, 0), y;
|
|
4513
|
-
}, [l]), [o, d] =
|
|
4523
|
+
}, [l]), [o, d] = p0(() => {
|
|
4514
4524
|
if (c) {
|
|
4515
4525
|
const y = new Date(c);
|
|
4516
4526
|
return { year: y.getFullYear(), month: y.getMonth() };
|
|
@@ -4575,9 +4585,9 @@ const m1 = T(
|
|
|
4575
4585
|
/* @__PURE__ */ e("div", { className: "c-calendar__grid", children: _.map((y) => {
|
|
4576
4586
|
const B = w1(y), E = y.getMonth() === o.month, K = B === Z, P = C.has(B), a1 = (w.has(B) || b.has(B)) && !P, t1 = w.has(B), M1 = b.has(B), C1 = new Date(y);
|
|
4577
4587
|
C1.setDate(C1.getDate() - 1);
|
|
4578
|
-
const
|
|
4588
|
+
const I1 = P && !C.has(w1(C1)), S1 = new Date(y);
|
|
4579
4589
|
S1.setDate(S1.getDate() + 1);
|
|
4580
|
-
const
|
|
4590
|
+
const T1 = P && !C.has(w1(S1));
|
|
4581
4591
|
return /* @__PURE__ */ e(
|
|
4582
4592
|
h,
|
|
4583
4593
|
{
|
|
@@ -4589,19 +4599,19 @@ const m1 = T(
|
|
|
4589
4599
|
"c-calendar__cell--heat": t1,
|
|
4590
4600
|
"c-calendar__cell--max-heat": M1,
|
|
4591
4601
|
"c-calendar__cell--grouped": P,
|
|
4592
|
-
"c-calendar__cell--first-of-group":
|
|
4593
|
-
"c-calendar__cell--last-of-group":
|
|
4602
|
+
"c-calendar__cell--first-of-group": I1,
|
|
4603
|
+
"c-calendar__cell--last-of-group": T1
|
|
4594
4604
|
}),
|
|
4595
4605
|
children: /* @__PURE__ */ t(h, { alignItems: "center", justifyContent: "center", className: "c-calendar__date", children: [
|
|
4596
4606
|
/* @__PURE__ */ e(g, { as: "span", size: "xs", children: y.getDate() }),
|
|
4597
|
-
(a1 ||
|
|
4607
|
+
(a1 || I1 || T1) && /* @__PURE__ */ e(N, { name: "heat", size: [22, 32], className: "c-calendar__heat-icon" })
|
|
4598
4608
|
] })
|
|
4599
4609
|
},
|
|
4600
4610
|
B
|
|
4601
4611
|
);
|
|
4602
4612
|
}) })
|
|
4603
4613
|
] });
|
|
4604
|
-
}, O =
|
|
4614
|
+
}, O = F(
|
|
4605
4615
|
({ as: a = "article", children: s, className: c, clickable: l = !1, ...r }, n) => /* @__PURE__ */ e(
|
|
4606
4616
|
h,
|
|
4607
4617
|
{
|
|
@@ -4617,7 +4627,7 @@ const m1 = T(
|
|
|
4617
4627
|
children: s
|
|
4618
4628
|
}
|
|
4619
4629
|
)
|
|
4620
|
-
),
|
|
4630
|
+
), c0 = ({
|
|
4621
4631
|
text: a,
|
|
4622
4632
|
avatarAlt: s,
|
|
4623
4633
|
avatarUrl: c,
|
|
@@ -4783,7 +4793,7 @@ const m1 = T(
|
|
|
4783
4793
|
default:
|
|
4784
4794
|
return 40;
|
|
4785
4795
|
}
|
|
4786
|
-
},
|
|
4796
|
+
}, T = ({
|
|
4787
4797
|
cover: a,
|
|
4788
4798
|
id: s,
|
|
4789
4799
|
defaultFormat: c,
|
|
@@ -4885,31 +4895,35 @@ const m1 = T(
|
|
|
4885
4895
|
cartridgeIsCentered: s,
|
|
4886
4896
|
maxRows: c,
|
|
4887
4897
|
as: l,
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
|
|
4891
|
-
|
|
4892
|
-
|
|
4898
|
+
href: r,
|
|
4899
|
+
hrefTarget: n,
|
|
4900
|
+
size: i,
|
|
4901
|
+
fontFamily: o,
|
|
4902
|
+
weight: d,
|
|
4903
|
+
children: u,
|
|
4904
|
+
...m
|
|
4893
4905
|
}) => /* @__PURE__ */ e(
|
|
4894
4906
|
x,
|
|
4895
4907
|
{
|
|
4896
4908
|
pb: "xxs-3",
|
|
4897
|
-
...
|
|
4909
|
+
...m,
|
|
4898
4910
|
className: p(
|
|
4899
4911
|
"c-card-title",
|
|
4900
4912
|
{
|
|
4901
4913
|
"c-card-title--has-max-rows": c,
|
|
4902
4914
|
[`c-card-title--has-${c}-rows`]: c
|
|
4903
4915
|
},
|
|
4904
|
-
|
|
4916
|
+
m?.className
|
|
4905
4917
|
),
|
|
4906
4918
|
children: /* @__PURE__ */ t(
|
|
4907
4919
|
L,
|
|
4908
4920
|
{
|
|
4909
4921
|
as: l || "h1",
|
|
4910
|
-
|
|
4911
|
-
|
|
4912
|
-
|
|
4922
|
+
...r && { as: "a", href: r },
|
|
4923
|
+
...n && { target: n },
|
|
4924
|
+
size: i || "m",
|
|
4925
|
+
fontFamily: o || "source-serif-pro",
|
|
4926
|
+
weight: d || "semi-bold",
|
|
4913
4927
|
children: [
|
|
4914
4928
|
a && /* @__PURE__ */ e(
|
|
4915
4929
|
A,
|
|
@@ -4925,7 +4939,7 @@ const m1 = T(
|
|
|
4925
4939
|
children: R1(a).label
|
|
4926
4940
|
}
|
|
4927
4941
|
),
|
|
4928
|
-
|
|
4942
|
+
u
|
|
4929
4943
|
]
|
|
4930
4944
|
}
|
|
4931
4945
|
)
|
|
@@ -4970,7 +4984,7 @@ const m1 = T(
|
|
|
4970
4984
|
"o-columns-by-3__first-2-columns": u
|
|
4971
4985
|
}),
|
|
4972
4986
|
children: n && /* @__PURE__ */ e(
|
|
4973
|
-
|
|
4987
|
+
T,
|
|
4974
4988
|
{
|
|
4975
4989
|
...n,
|
|
4976
4990
|
formats: b,
|
|
@@ -5026,7 +5040,7 @@ const m1 = T(
|
|
|
5026
5040
|
l && /* @__PURE__ */ e(e1, { ...l, rightSubheader: void 0, mx: "m", mb: "xxs-2" }),
|
|
5027
5041
|
/* @__PURE__ */ e(D, { as: "h2", weight: "bold", ...r, mx: "m", children: /* @__PURE__ */ e("a", { href: a, children: s }) }),
|
|
5028
5042
|
n && /* @__PURE__ */ e(
|
|
5029
|
-
|
|
5043
|
+
T,
|
|
5030
5044
|
{
|
|
5031
5045
|
...n,
|
|
5032
5046
|
formats: b,
|
|
@@ -5037,7 +5051,7 @@ const m1 = T(
|
|
|
5037
5051
|
}
|
|
5038
5052
|
),
|
|
5039
5053
|
o && /* @__PURE__ */ e(
|
|
5040
|
-
|
|
5054
|
+
o0,
|
|
5041
5055
|
{
|
|
5042
5056
|
...o,
|
|
5043
5057
|
mx: "m",
|
|
@@ -5071,7 +5085,7 @@ const m1 = T(
|
|
|
5071
5085
|
] })
|
|
5072
5086
|
}
|
|
5073
5087
|
);
|
|
5074
|
-
},
|
|
5088
|
+
}, l0 = ({
|
|
5075
5089
|
link: a,
|
|
5076
5090
|
title: s,
|
|
5077
5091
|
cardHeaderProps: c,
|
|
@@ -5117,7 +5131,7 @@ const m1 = T(
|
|
|
5117
5131
|
}
|
|
5118
5132
|
),
|
|
5119
5133
|
r && /* @__PURE__ */ e(
|
|
5120
|
-
|
|
5134
|
+
T,
|
|
5121
5135
|
{
|
|
5122
5136
|
...r,
|
|
5123
5137
|
...r.caption && {
|
|
@@ -5133,7 +5147,7 @@ const m1 = T(
|
|
|
5133
5147
|
]
|
|
5134
5148
|
}
|
|
5135
5149
|
),
|
|
5136
|
-
n && /* @__PURE__ */ e(
|
|
5150
|
+
n && /* @__PURE__ */ e(c0, { ...n, mt: "xs" }),
|
|
5137
5151
|
o && /* @__PURE__ */ e(
|
|
5138
5152
|
o1,
|
|
5139
5153
|
{
|
|
@@ -5173,7 +5187,7 @@ const m1 = T(
|
|
|
5173
5187
|
),
|
|
5174
5188
|
children: /* @__PURE__ */ t("a", { href: a, children: [
|
|
5175
5189
|
i && /* @__PURE__ */ e(
|
|
5176
|
-
|
|
5190
|
+
T,
|
|
5177
5191
|
{
|
|
5178
5192
|
...i,
|
|
5179
5193
|
defaultFormat: c === z.DESKTOP ? "722x460" : "310x384",
|
|
@@ -5223,7 +5237,7 @@ const m1 = T(
|
|
|
5223
5237
|
const { cardFooterProps: m, signatureProps: v, ...f } = u;
|
|
5224
5238
|
return /* @__PURE__ */ e(O, { ...f, className: "c-card-large", direction: "column", children: c === z.DESKTOP ? /* @__PURE__ */ t("a", { href: a, children: [
|
|
5225
5239
|
i && /* @__PURE__ */ e(
|
|
5226
|
-
|
|
5240
|
+
T,
|
|
5227
5241
|
{
|
|
5228
5242
|
...i,
|
|
5229
5243
|
defaultFormat: "722x460",
|
|
@@ -5248,7 +5262,7 @@ const m1 = T(
|
|
|
5248
5262
|
] }) : /* @__PURE__ */ t(j, { children: [
|
|
5249
5263
|
/* @__PURE__ */ t("a", { href: a, children: [
|
|
5250
5264
|
i && /* @__PURE__ */ e(
|
|
5251
|
-
|
|
5265
|
+
T,
|
|
5252
5266
|
{
|
|
5253
5267
|
...i,
|
|
5254
5268
|
defaultFormat: "722x460",
|
|
@@ -5307,7 +5321,7 @@ const m1 = T(
|
|
|
5307
5321
|
clickable: !0,
|
|
5308
5322
|
children: [
|
|
5309
5323
|
r && /* @__PURE__ */ e(
|
|
5310
|
-
|
|
5324
|
+
T,
|
|
5311
5325
|
{
|
|
5312
5326
|
...r,
|
|
5313
5327
|
formats: ["480x308", "346x222"],
|
|
@@ -5334,7 +5348,7 @@ const m1 = T(
|
|
|
5334
5348
|
}
|
|
5335
5349
|
),
|
|
5336
5350
|
i && /* @__PURE__ */ e(
|
|
5337
|
-
|
|
5351
|
+
c0,
|
|
5338
5352
|
{
|
|
5339
5353
|
...i,
|
|
5340
5354
|
mt: "l",
|
|
@@ -5407,7 +5421,7 @@ const m1 = T(
|
|
|
5407
5421
|
),
|
|
5408
5422
|
o && /* @__PURE__ */ e(g, { color: "grey-600", fontFamily: "source-serif-pro", size: "m", mt: "xs", ...o, children: o.children }),
|
|
5409
5423
|
r?.cover && i === z.MOBILE && /* @__PURE__ */ e(
|
|
5410
|
-
|
|
5424
|
+
T,
|
|
5411
5425
|
{
|
|
5412
5426
|
...r,
|
|
5413
5427
|
...r.caption && {
|
|
@@ -5434,7 +5448,7 @@ const m1 = T(
|
|
|
5434
5448
|
] })
|
|
5435
5449
|
] }),
|
|
5436
5450
|
r?.cover && i === z.DESKTOP && /* @__PURE__ */ e(
|
|
5437
|
-
|
|
5451
|
+
T,
|
|
5438
5452
|
{
|
|
5439
5453
|
...r,
|
|
5440
5454
|
...r.caption && {
|
|
@@ -5502,7 +5516,7 @@ const m1 = T(
|
|
|
5502
5516
|
/* @__PURE__ */ t(h, { direction: "row", gap: { xs: "m", md: "l" }, ..._, children: [
|
|
5503
5517
|
/* @__PURE__ */ t("div", { className: "c-card-movie__side", children: [
|
|
5504
5518
|
l && /* @__PURE__ */ e(
|
|
5505
|
-
|
|
5519
|
+
T,
|
|
5506
5520
|
{
|
|
5507
5521
|
...l,
|
|
5508
5522
|
radius: "xs",
|
|
@@ -5573,44 +5587,70 @@ const m1 = T(
|
|
|
5573
5587
|
id: a,
|
|
5574
5588
|
label: s,
|
|
5575
5589
|
title: c,
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5581
|
-
|
|
5582
|
-
|
|
5583
|
-
|
|
5584
|
-
|
|
5585
|
-
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
|
|
5589
|
-
|
|
5590
|
-
"
|
|
5591
|
-
|
|
5592
|
-
|
|
5593
|
-
|
|
5594
|
-
|
|
5595
|
-
|
|
5596
|
-
|
|
5597
|
-
|
|
5598
|
-
|
|
5599
|
-
|
|
5600
|
-
|
|
5601
|
-
|
|
5602
|
-
|
|
5603
|
-
|
|
5604
|
-
|
|
5605
|
-
|
|
5606
|
-
|
|
5607
|
-
|
|
5608
|
-
|
|
5609
|
-
|
|
5610
|
-
|
|
5611
|
-
|
|
5612
|
-
|
|
5613
|
-
),
|
|
5590
|
+
description: l,
|
|
5591
|
+
imgUrl: r,
|
|
5592
|
+
externalLink: n,
|
|
5593
|
+
children: i,
|
|
5594
|
+
withBorderBottom: o = !0,
|
|
5595
|
+
isChecked: d = !1,
|
|
5596
|
+
mainColor: u = "default",
|
|
5597
|
+
onCheckedChange: m,
|
|
5598
|
+
...v
|
|
5599
|
+
}) => {
|
|
5600
|
+
const f = `var(--color-theme-${u})`;
|
|
5601
|
+
return /* @__PURE__ */ t(
|
|
5602
|
+
O,
|
|
5603
|
+
{
|
|
5604
|
+
alignItems: "start",
|
|
5605
|
+
justifyContent: "start",
|
|
5606
|
+
gap: "s",
|
|
5607
|
+
className: p("c-card-newsletter", {
|
|
5608
|
+
"c-card-newsletter--with-border-bottom": o
|
|
5609
|
+
}),
|
|
5610
|
+
...o && { pb: "m" },
|
|
5611
|
+
...v,
|
|
5612
|
+
children: [
|
|
5613
|
+
/* @__PURE__ */ e(
|
|
5614
|
+
h,
|
|
5615
|
+
{
|
|
5616
|
+
alignItems: "center",
|
|
5617
|
+
justifyContent: "center",
|
|
5618
|
+
bg: u,
|
|
5619
|
+
className: "c-card-newsletter__icon",
|
|
5620
|
+
children: /* @__PURE__ */ e("img", { src: r, alt: c })
|
|
5621
|
+
}
|
|
5622
|
+
),
|
|
5623
|
+
/* @__PURE__ */ t("div", { children: [
|
|
5624
|
+
/* @__PURE__ */ t(h, { gap: "xxs", alignItems: "center", children: [
|
|
5625
|
+
/* @__PURE__ */ e(D, { as: "h4", fontFamily: "base", size: "xxs", weight: "bold", children: c }),
|
|
5626
|
+
/* @__PURE__ */ e(X, { size: "extra-small", px: "xs", children: s })
|
|
5627
|
+
] }),
|
|
5628
|
+
/* @__PURE__ */ t(x, { mt: "xxs-3", children: [
|
|
5629
|
+
/* @__PURE__ */ e(g, { size: "m", children: l }),
|
|
5630
|
+
i,
|
|
5631
|
+
/* @__PURE__ */ t(h, { gap: "s", mt: "m", alignItems: "center", children: [
|
|
5632
|
+
/* @__PURE__ */ e(
|
|
5633
|
+
H,
|
|
5634
|
+
{
|
|
5635
|
+
size: "small",
|
|
5636
|
+
onClick: m,
|
|
5637
|
+
style: {
|
|
5638
|
+
"--button-scheme-color": f,
|
|
5639
|
+
"--button-base-background-color": f,
|
|
5640
|
+
"--button-base-border-color": f,
|
|
5641
|
+
"--button-hover-background-color": f
|
|
5642
|
+
},
|
|
5643
|
+
children: d ? "Se désabonner" : "S'inscrire"
|
|
5644
|
+
}
|
|
5645
|
+
),
|
|
5646
|
+
n && /* @__PURE__ */ e($, { target: "_blank", href: n, color: u, children: "Voir la newsletter" })
|
|
5647
|
+
] })
|
|
5648
|
+
] })
|
|
5649
|
+
] })
|
|
5650
|
+
]
|
|
5651
|
+
}
|
|
5652
|
+
);
|
|
5653
|
+
}, K2 = ({
|
|
5614
5654
|
timeText: a,
|
|
5615
5655
|
hasDot: s,
|
|
5616
5656
|
closeButton: c,
|
|
@@ -5627,7 +5667,7 @@ const m1 = T(
|
|
|
5627
5667
|
] }),
|
|
5628
5668
|
/* @__PURE__ */ t(h, { justifyContent: "end", direction: "row", gap: "xs", children: [
|
|
5629
5669
|
l && /* @__PURE__ */ e(
|
|
5630
|
-
|
|
5670
|
+
T,
|
|
5631
5671
|
{
|
|
5632
5672
|
...l,
|
|
5633
5673
|
...l.caption && {
|
|
@@ -5654,7 +5694,7 @@ const m1 = T(
|
|
|
5654
5694
|
)
|
|
5655
5695
|
] })
|
|
5656
5696
|
] })
|
|
5657
|
-
] }),
|
|
5697
|
+
] }), t0 = ({
|
|
5658
5698
|
link: a,
|
|
5659
5699
|
cardImageProps: s,
|
|
5660
5700
|
cardHeaderProps: c,
|
|
@@ -5699,7 +5739,7 @@ const m1 = T(
|
|
|
5699
5739
|
...v,
|
|
5700
5740
|
children: [
|
|
5701
5741
|
s && /* @__PURE__ */ e(
|
|
5702
|
-
|
|
5742
|
+
T,
|
|
5703
5743
|
{
|
|
5704
5744
|
...s,
|
|
5705
5745
|
..._,
|
|
@@ -5754,7 +5794,7 @@ const m1 = T(
|
|
|
5754
5794
|
...r,
|
|
5755
5795
|
children: [
|
|
5756
5796
|
s && /* @__PURE__ */ e(
|
|
5757
|
-
|
|
5797
|
+
T,
|
|
5758
5798
|
{
|
|
5759
5799
|
...s,
|
|
5760
5800
|
...{
|
|
@@ -5795,7 +5835,7 @@ const m1 = T(
|
|
|
5795
5835
|
className: p("o-lt-show", o.className),
|
|
5796
5836
|
children: [
|
|
5797
5837
|
/* @__PURE__ */ e(x, { className: p("o-lt-show__main"), children: n && /* @__PURE__ */ e(
|
|
5798
|
-
|
|
5838
|
+
T,
|
|
5799
5839
|
{
|
|
5800
5840
|
...n,
|
|
5801
5841
|
formats: d,
|
|
@@ -5862,7 +5902,7 @@ const m1 = T(
|
|
|
5862
5902
|
s
|
|
5863
5903
|
);
|
|
5864
5904
|
return a === "medium" ? /* @__PURE__ */ e(ae, { ...c, className: l }) : /* @__PURE__ */ e(se, { ...c, className: l });
|
|
5865
|
-
},
|
|
5905
|
+
}, n0 = ({
|
|
5866
5906
|
link: a,
|
|
5867
5907
|
title: s,
|
|
5868
5908
|
cardHeaderProps: c,
|
|
@@ -5875,7 +5915,7 @@ const m1 = T(
|
|
|
5875
5915
|
}) => {
|
|
5876
5916
|
const { cardFooterProps: u, signatureProps: m, socialBarProps: v, ...f } = d, _ = /* @__PURE__ */ t(j, { children: [
|
|
5877
5917
|
r && /* @__PURE__ */ e(
|
|
5878
|
-
|
|
5918
|
+
T,
|
|
5879
5919
|
{
|
|
5880
5920
|
sizes: "(min-width: 480px) 252px, 160px",
|
|
5881
5921
|
defaultFormat: i === z.DESKTOP ? "252x162" : "160x102",
|
|
@@ -5938,7 +5978,7 @@ const m1 = T(
|
|
|
5938
5978
|
clickable: !0,
|
|
5939
5979
|
children: [
|
|
5940
5980
|
r && /* @__PURE__ */ e(
|
|
5941
|
-
|
|
5981
|
+
T,
|
|
5942
5982
|
{
|
|
5943
5983
|
...r,
|
|
5944
5984
|
...r.caption && {
|
|
@@ -5991,7 +6031,7 @@ const m1 = T(
|
|
|
5991
6031
|
"c-card-container--clickable"
|
|
5992
6032
|
),
|
|
5993
6033
|
children: c && /* @__PURE__ */ e(
|
|
5994
|
-
|
|
6034
|
+
T,
|
|
5995
6035
|
{
|
|
5996
6036
|
...c,
|
|
5997
6037
|
defaultFormat: "196x234",
|
|
@@ -6046,7 +6086,7 @@ const m1 = T(
|
|
|
6046
6086
|
children: l.children
|
|
6047
6087
|
}
|
|
6048
6088
|
),
|
|
6049
|
-
c && /* @__PURE__ */ e(
|
|
6089
|
+
c && /* @__PURE__ */ e(o0, { ...c, mt: "l", className: "c-card-element--is-clickable" })
|
|
6050
6090
|
] })
|
|
6051
6091
|
]
|
|
6052
6092
|
}
|
|
@@ -6069,7 +6109,7 @@ const m1 = T(
|
|
|
6069
6109
|
"c-card-container--clickable"
|
|
6070
6110
|
),
|
|
6071
6111
|
children: c && /* @__PURE__ */ e(
|
|
6072
|
-
|
|
6112
|
+
T,
|
|
6073
6113
|
{
|
|
6074
6114
|
sizes: "(min-width: 480px) 183px, 223px",
|
|
6075
6115
|
...c,
|
|
@@ -6095,8 +6135,8 @@ const m1 = T(
|
|
|
6095
6135
|
gap: "l",
|
|
6096
6136
|
alignItems: { xs: "baseline", md: "center" },
|
|
6097
6137
|
children: [
|
|
6098
|
-
/* @__PURE__ */ t(
|
|
6099
|
-
/* @__PURE__ */ t(h, { color: "ultramarine", children: [
|
|
6138
|
+
/* @__PURE__ */ t(I, { grow: 1, children: [
|
|
6139
|
+
n && /* @__PURE__ */ t(h, { color: "ultramarine", children: [
|
|
6100
6140
|
/* @__PURE__ */ e(N, { name: "local", size: 13, mr: "xxs-2", mb: "xxs-2" }),
|
|
6101
6141
|
/* @__PURE__ */ e(g, { size: "xxs", weight: "bold", textTransform: "uppercase", children: n })
|
|
6102
6142
|
] }),
|
|
@@ -6120,7 +6160,7 @@ const m1 = T(
|
|
|
6120
6160
|
const { cardFooterProps: u, signatureProps: m, ...v } = d;
|
|
6121
6161
|
return /* @__PURE__ */ t(O, { ...v, direction: "column", className: "c-card-with-summary", clickable: !0, children: [
|
|
6122
6162
|
/* @__PURE__ */ t(h, { mb: "xs", className: "c-card-with-summary__content", gap: "xs", children: [
|
|
6123
|
-
/* @__PURE__ */ t(
|
|
6163
|
+
/* @__PURE__ */ t(I, { grow: 1, children: [
|
|
6124
6164
|
l && /* @__PURE__ */ e(e1, { ...l, mb: "xxs-2" }),
|
|
6125
6165
|
/* @__PURE__ */ e(
|
|
6126
6166
|
D,
|
|
@@ -6135,7 +6175,7 @@ const m1 = T(
|
|
|
6135
6175
|
o === z.DESKTOP && c && /* @__PURE__ */ e(g, { ...c, as: "span", size: "m", fontFamily: "source-serif-pro", children: c.children })
|
|
6136
6176
|
] }),
|
|
6137
6177
|
/* @__PURE__ */ e("div", { children: n && /* @__PURE__ */ e(
|
|
6138
|
-
|
|
6178
|
+
T,
|
|
6139
6179
|
{
|
|
6140
6180
|
...n,
|
|
6141
6181
|
...n.caption && {
|
|
@@ -6180,7 +6220,7 @@ const m1 = T(
|
|
|
6180
6220
|
return /* @__PURE__ */ e(le, { ...b });
|
|
6181
6221
|
default:
|
|
6182
6222
|
return /* @__PURE__ */ e(
|
|
6183
|
-
|
|
6223
|
+
n0,
|
|
6184
6224
|
{
|
|
6185
6225
|
...b,
|
|
6186
6226
|
layout: s,
|
|
@@ -6206,7 +6246,7 @@ const m1 = T(
|
|
|
6206
6246
|
);
|
|
6207
6247
|
}
|
|
6208
6248
|
}, w = /* @__PURE__ */ e(
|
|
6209
|
-
|
|
6249
|
+
i0,
|
|
6210
6250
|
{
|
|
6211
6251
|
label: c || "",
|
|
6212
6252
|
mb: n && "0" || (!u || m) && "m" || "xxl",
|
|
@@ -6253,7 +6293,7 @@ const m1 = T(
|
|
|
6253
6293
|
itemsGap: o?.sliderVariant === "videos" ? "l" : "xs",
|
|
6254
6294
|
layout: s,
|
|
6255
6295
|
children: a.map((b) => /* @__PURE__ */ e(
|
|
6256
|
-
|
|
6296
|
+
I,
|
|
6257
6297
|
{
|
|
6258
6298
|
as: "article",
|
|
6259
6299
|
grow: 0,
|
|
@@ -6458,7 +6498,7 @@ const m1 = T(
|
|
|
6458
6498
|
children: s
|
|
6459
6499
|
}
|
|
6460
6500
|
)
|
|
6461
|
-
] }), N1 =
|
|
6501
|
+
] }), N1 = F(
|
|
6462
6502
|
({
|
|
6463
6503
|
index: a,
|
|
6464
6504
|
textTitleProps: s,
|
|
@@ -6599,7 +6639,7 @@ const m1 = T(
|
|
|
6599
6639
|
}
|
|
6600
6640
|
)
|
|
6601
6641
|
] }),
|
|
6602
|
-
c && /* @__PURE__ */ e("div", { children: /* @__PURE__ */ e(
|
|
6642
|
+
c && /* @__PURE__ */ e("div", { children: /* @__PURE__ */ e(X1, { color: "grey-200" }) })
|
|
6603
6643
|
] }), E1 = ({
|
|
6604
6644
|
layout: a,
|
|
6605
6645
|
title: s,
|
|
@@ -6654,7 +6694,7 @@ const m1 = T(
|
|
|
6654
6694
|
icon: s = { name: "darkmode", size: 20 },
|
|
6655
6695
|
...c
|
|
6656
6696
|
}) => /* @__PURE__ */ e(
|
|
6657
|
-
|
|
6697
|
+
O0,
|
|
6658
6698
|
{
|
|
6659
6699
|
icon: s,
|
|
6660
6700
|
label: a || /* @__PURE__ */ e(g, { size: "l", as: "span", weight: "bold", children: "Mode sombre" }),
|
|
@@ -6721,7 +6761,7 @@ const m1 = T(
|
|
|
6721
6761
|
className: "c-search-banner__expand-button"
|
|
6722
6762
|
}
|
|
6723
6763
|
), m = n && /* @__PURE__ */ e(
|
|
6724
|
-
|
|
6764
|
+
A0,
|
|
6725
6765
|
{
|
|
6726
6766
|
...n,
|
|
6727
6767
|
defaultValue: n?.options.find((_) => _.isSelected)?.value,
|
|
@@ -6741,7 +6781,7 @@ const m1 = T(
|
|
|
6741
6781
|
"data-search-banner-collapse": !0,
|
|
6742
6782
|
...a === z.DESKTOP && { "aria-hidden": o ? !o : "true" },
|
|
6743
6783
|
children: r?.map(({ label: _, link: w }, b) => /* @__PURE__ */ e(
|
|
6744
|
-
|
|
6784
|
+
X,
|
|
6745
6785
|
{
|
|
6746
6786
|
variant: "tertiary",
|
|
6747
6787
|
size: "small",
|
|
@@ -6801,7 +6841,7 @@ const m1 = T(
|
|
|
6801
6841
|
) : /* @__PURE__ */ e(N, { name: "ballot-box", size: 55, className: "c-search-banner__default-icon" }),
|
|
6802
6842
|
/* @__PURE__ */ t(h, { flexGrow: 1, direction: "column", py: "m", children: [
|
|
6803
6843
|
/* @__PURE__ */ t(h, { gap: { xs: "m", lg: "l" }, justifyContent: "end", children: [
|
|
6804
|
-
/* @__PURE__ */ e(
|
|
6844
|
+
/* @__PURE__ */ e(I, { grow: 1, children: /* @__PURE__ */ e(x, { as: g1, ...s }) }),
|
|
6805
6845
|
!!n?.options.length && m,
|
|
6806
6846
|
!!r?.length && u
|
|
6807
6847
|
] }),
|
|
@@ -6822,7 +6862,7 @@ const m1 = T(
|
|
|
6822
6862
|
children: [
|
|
6823
6863
|
c && /* @__PURE__ */ e(g, { as: "span", px: "m", weight: "bold", color: "white", mb: "xxs", children: l ? /* @__PURE__ */ e("a", { href: l, children: c }) : c }),
|
|
6824
6864
|
/* @__PURE__ */ t(h, { gap: "s", px: { xs: "m", md: "0" }, children: [
|
|
6825
|
-
/* @__PURE__ */ e(
|
|
6865
|
+
/* @__PURE__ */ e(I, { as: g1, grow: 1, ...s }),
|
|
6826
6866
|
!!(r?.length || n?.options.length) && u
|
|
6827
6867
|
] }),
|
|
6828
6868
|
!!(r?.length || n?.options.length) && /* @__PURE__ */ t(
|
|
@@ -6874,7 +6914,7 @@ const m1 = T(
|
|
|
6874
6914
|
py: "xxs-3",
|
|
6875
6915
|
px: "xxs",
|
|
6876
6916
|
children: [
|
|
6877
|
-
/* @__PURE__ */ e(g, { as: "span", size: "xl", className: "c-emoji-toolbar__emoji", children:
|
|
6917
|
+
/* @__PURE__ */ e(g, { as: "span", size: "xl", className: "c-emoji-toolbar__emoji", children: K1[l.type] }),
|
|
6878
6918
|
/* @__PURE__ */ e(g, { as: "span", size: "xxs", ml: "xxs-2", className: "c-emoji-toolbar__count", children: String(l.count).padStart(2, "0") })
|
|
6879
6919
|
]
|
|
6880
6920
|
}
|
|
@@ -7100,7 +7140,7 @@ const m1 = T(
|
|
|
7100
7140
|
}
|
|
7101
7141
|
), w = /* @__PURE__ */ t(j, { children: [
|
|
7102
7142
|
/* @__PURE__ */ e(h, { as: "header", gap: n ? "m" : void 0, alignItems: "start", justifyContent: "between", children: /* @__PURE__ */ t(
|
|
7103
|
-
|
|
7143
|
+
I,
|
|
7104
7144
|
{
|
|
7105
7145
|
mx: { xs: "m", md: "0" },
|
|
7106
7146
|
mt: { xs: i ? "l" : "s", md: u ? "0" : "l" },
|
|
@@ -7160,7 +7200,7 @@ const m1 = T(
|
|
|
7160
7200
|
] });
|
|
7161
7201
|
let b = /* @__PURE__ */ t("div", { children: [
|
|
7162
7202
|
n?.type === "sponsored-page" && /* @__PURE__ */ e(
|
|
7163
|
-
|
|
7203
|
+
J,
|
|
7164
7204
|
{
|
|
7165
7205
|
sponsor: n.content,
|
|
7166
7206
|
variant: "header-sponsored-mobile",
|
|
@@ -7182,12 +7222,12 @@ const m1 = T(
|
|
|
7182
7222
|
...d
|
|
7183
7223
|
}
|
|
7184
7224
|
),
|
|
7185
|
-
n?.type === "dedicated-area" && /* @__PURE__ */ e(
|
|
7225
|
+
n?.type === "dedicated-area" && /* @__PURE__ */ e(J, { sponsor: n.content, variant: "header-dedicated-mobile", mt: "s", mx: "m" }),
|
|
7186
7226
|
i && /* @__PURE__ */ e(x1, { ...i, mt: "xl" }),
|
|
7187
7227
|
l && w
|
|
7188
7228
|
] });
|
|
7189
7229
|
return a === z.DESKTOP && (b = /* @__PURE__ */ t(h, { alignItems: "start", justifyContent: "between", gap: n ? "m" : void 0, children: [
|
|
7190
|
-
/* @__PURE__ */ t(
|
|
7230
|
+
/* @__PURE__ */ t(I, { basis: 100, children: [
|
|
7191
7231
|
c || n?.type === "sponsored-page" ? /* @__PURE__ */ t(
|
|
7192
7232
|
h,
|
|
7193
7233
|
{
|
|
@@ -7197,10 +7237,10 @@ const m1 = T(
|
|
|
7197
7237
|
gap: "m",
|
|
7198
7238
|
pb: "xxs",
|
|
7199
7239
|
children: [
|
|
7200
|
-
/* @__PURE__ */ e(
|
|
7201
|
-
!!c && /* @__PURE__ */ e(
|
|
7240
|
+
/* @__PURE__ */ e(I, { basis: 100, children: _ }),
|
|
7241
|
+
!!c && /* @__PURE__ */ e(I, { basis: "auto", shrink: 0, children: c }),
|
|
7202
7242
|
n?.type === "sponsored-page" && /* @__PURE__ */ e(
|
|
7203
|
-
|
|
7243
|
+
J,
|
|
7204
7244
|
{
|
|
7205
7245
|
sponsor: n.content,
|
|
7206
7246
|
variant: "header-sponsored-desktop",
|
|
@@ -7243,7 +7283,7 @@ const m1 = T(
|
|
|
7243
7283
|
}
|
|
7244
7284
|
)
|
|
7245
7285
|
] }),
|
|
7246
|
-
n?.type === "dedicated-area" && /* @__PURE__ */ e(
|
|
7286
|
+
n?.type === "dedicated-area" && /* @__PURE__ */ e(J, { sponsor: n.content, variant: "header-dedicated-desktop", mt: "xl" })
|
|
7247
7287
|
] })), /* @__PURE__ */ e(
|
|
7248
7288
|
x,
|
|
7249
7289
|
{
|
|
@@ -7538,7 +7578,7 @@ const m1 = T(
|
|
|
7538
7578
|
},
|
|
7539
7579
|
l.name
|
|
7540
7580
|
)) });
|
|
7541
|
-
},
|
|
7581
|
+
}, r0 = (a) => Q.Children.map(a.children, (s) => {
|
|
7542
7582
|
if (Q.isValidElement(s)) {
|
|
7543
7583
|
const { children: c, ...l } = s.props;
|
|
7544
7584
|
return /* @__PURE__ */ t(
|
|
@@ -7550,13 +7590,13 @@ const m1 = T(
|
|
|
7550
7590
|
}) : l?.className,
|
|
7551
7591
|
children: [
|
|
7552
7592
|
s.type === "li" && /* @__PURE__ */ e(N, { name: "diode", size: 16, mr: "xs" }),
|
|
7553
|
-
c ?
|
|
7593
|
+
c ? r0({ color: a.color, children: c }) : void 0
|
|
7554
7594
|
]
|
|
7555
7595
|
}
|
|
7556
7596
|
);
|
|
7557
7597
|
}
|
|
7558
7598
|
return s;
|
|
7559
|
-
}), ue = (a) => /* @__PURE__ */ e(j, { children:
|
|
7599
|
+
}), ue = (a) => /* @__PURE__ */ e(j, { children: r0(a) }), p3 = ({
|
|
7560
7600
|
variant: a,
|
|
7561
7601
|
isOver: s = !1,
|
|
7562
7602
|
updatedAt: c,
|
|
@@ -7793,7 +7833,7 @@ const m1 = T(
|
|
|
7793
7833
|
"puis une circonscription pour accéder aux résultats"
|
|
7794
7834
|
] }),
|
|
7795
7835
|
/* @__PURE__ */ e(
|
|
7796
|
-
|
|
7836
|
+
X,
|
|
7797
7837
|
{
|
|
7798
7838
|
variant: "span",
|
|
7799
7839
|
color: "ultramarine",
|
|
@@ -7999,7 +8039,7 @@ const m1 = T(
|
|
|
7999
8039
|
) : null;
|
|
8000
8040
|
}) }),
|
|
8001
8041
|
/* @__PURE__ */ e("g", { className: "c-map-towns__layer-departments", "aria-hidden": "true", children: Object.entries(c).map(([w, b]) => {
|
|
8002
|
-
const C =
|
|
8042
|
+
const C = y0[w];
|
|
8003
8043
|
return /* @__PURE__ */ e(
|
|
8004
8044
|
"path",
|
|
8005
8045
|
{
|
|
@@ -8301,7 +8341,7 @@ const m1 = T(
|
|
|
8301
8341
|
},
|
|
8302
8342
|
isOpen: !0,
|
|
8303
8343
|
children: [
|
|
8304
|
-
/* @__PURE__ */ e(h, { as: "ul", gap: "xxs", mb: "s", wrap: "wrap", children: s.map((d) => /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(
|
|
8344
|
+
/* @__PURE__ */ e(h, { as: "ul", gap: "xxs", mb: "s", wrap: "wrap", children: s.map((d) => /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(X, { href: d.href, variant: "secondary", children: d.children }, d.href) }, d.href)) }),
|
|
8305
8345
|
/* @__PURE__ */ t(
|
|
8306
8346
|
h,
|
|
8307
8347
|
{
|
|
@@ -8331,7 +8371,7 @@ const m1 = T(
|
|
|
8331
8371
|
children: d.sponsor ? /* @__PURE__ */ t("div", { children: [
|
|
8332
8372
|
d.name,
|
|
8333
8373
|
d.sponsor && /* @__PURE__ */ e(
|
|
8334
|
-
|
|
8374
|
+
J,
|
|
8335
8375
|
{
|
|
8336
8376
|
sponsor: d.sponsor,
|
|
8337
8377
|
variant: "menu",
|
|
@@ -8354,7 +8394,7 @@ const m1 = T(
|
|
|
8354
8394
|
...d.links?.some((m) => "name" in m) ? { py: "s" } : {}
|
|
8355
8395
|
},
|
|
8356
8396
|
children: [
|
|
8357
|
-
(d?.tags ?? []).length > 0 && /* @__PURE__ */ e(h, { as: "ul", gap: "xxs", mb: "l", wrap: "wrap", children: d.tags?.map((m) => /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(
|
|
8397
|
+
(d?.tags ?? []).length > 0 && /* @__PURE__ */ e(h, { as: "ul", gap: "xxs", mb: "l", wrap: "wrap", children: d.tags?.map((m) => /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e(X, { href: m.href, color: "ultramarine", children: m.children }, m.href) }, m.href)) }),
|
|
8358
8398
|
d.links.map((m, v) => "name" in m ? /* @__PURE__ */ e(
|
|
8359
8399
|
N1,
|
|
8360
8400
|
{
|
|
@@ -8623,7 +8663,7 @@ const m1 = T(
|
|
|
8623
8663
|
}),
|
|
8624
8664
|
bg: "grey-100",
|
|
8625
8665
|
"data-reaction-item": k.type,
|
|
8626
|
-
children: /* @__PURE__ */ e(g, { as: "span", size: "xxs", children:
|
|
8666
|
+
children: /* @__PURE__ */ e(g, { as: "span", size: "xxs", children: K1[k.type] })
|
|
8627
8667
|
},
|
|
8628
8668
|
k.type
|
|
8629
8669
|
)) });
|
|
@@ -8719,14 +8759,14 @@ const m1 = T(
|
|
|
8719
8759
|
}
|
|
8720
8760
|
),
|
|
8721
8761
|
/* @__PURE__ */ e(m1, { layout: s, buttonsColor: "white", hasSpaceAroundButtons: !0, children: a.map((i, o) => /* @__PURE__ */ e(
|
|
8722
|
-
|
|
8762
|
+
I,
|
|
8723
8763
|
{
|
|
8724
8764
|
grow: 0,
|
|
8725
8765
|
shrink: 0,
|
|
8726
8766
|
align: "stretch",
|
|
8727
8767
|
className: "c-read-also-banner__article",
|
|
8728
8768
|
children: /* @__PURE__ */ e(
|
|
8729
|
-
|
|
8769
|
+
t0,
|
|
8730
8770
|
{
|
|
8731
8771
|
...i,
|
|
8732
8772
|
alignItems: "center",
|
|
@@ -8784,7 +8824,7 @@ const m1 = T(
|
|
|
8784
8824
|
l && l.length > 0 && /* @__PURE__ */ e("ul", { className: "c-search-form__autocomplete u-hidden", children: l.slice(0, 8).map((i) => /* @__PURE__ */ e("li", { children: /* @__PURE__ */ e("a", { href: i.url, tabIndex: -1, children: i.value }) }, i.value)) })
|
|
8785
8825
|
]
|
|
8786
8826
|
}
|
|
8787
|
-
),
|
|
8827
|
+
), i0 = ({
|
|
8788
8828
|
label: a,
|
|
8789
8829
|
labelLink: s,
|
|
8790
8830
|
themeColor: c,
|
|
@@ -9066,7 +9106,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9066
9106
|
}
|
|
9067
9107
|
),
|
|
9068
9108
|
/* @__PURE__ */ e("div", { className: "c-show-cover__shadow" }),
|
|
9069
|
-
l === z.DESKTOP ? /* @__PURE__ */ e(h, { as: "section", className: "c-show-cover__content o-page-wrap", color: "white", children: /* @__PURE__ */ t(
|
|
9109
|
+
l === z.DESKTOP ? /* @__PURE__ */ e(h, { as: "section", className: "c-show-cover__content o-page-wrap", color: "white", children: /* @__PURE__ */ t(I, { as: "section", basis: 50, children: [
|
|
9070
9110
|
i,
|
|
9071
9111
|
o
|
|
9072
9112
|
] }) }) : /* @__PURE__ */ t(x, { as: "section", color: "white", px: "m", className: "c-show-cover__content", children: [
|
|
@@ -9074,7 +9114,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9074
9114
|
o && /* @__PURE__ */ e(h, { justifyContent: "center", children: o })
|
|
9075
9115
|
] })
|
|
9076
9116
|
] });
|
|
9077
|
-
},
|
|
9117
|
+
}, o0 = ({
|
|
9078
9118
|
avatars: a,
|
|
9079
9119
|
authors: s,
|
|
9080
9120
|
layout: c,
|
|
@@ -9090,7 +9130,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9090
9130
|
}) => {
|
|
9091
9131
|
const f = /* @__PURE__ */ t(h, { ...v, as: "address", alignItems: "start", gap: "s", children: [
|
|
9092
9132
|
!d && /* @__PURE__ */ e(G0, { avatars: a, themeColor: u }),
|
|
9093
|
-
/* @__PURE__ */ t(
|
|
9133
|
+
/* @__PURE__ */ t(I, { grow: 1, align: r ? "start" : "center", children: [
|
|
9094
9134
|
o ? /* @__PURE__ */ e("div", { children: /* @__PURE__ */ e(g, { as: "span", size: "s", weight: "bold", px: "xxs", bg: "sponsoring", color: "grey-900", children: s }) }) : /* @__PURE__ */ e(g, { size: "s", weight: "bold", children: s }),
|
|
9095
9135
|
r && /* @__PURE__ */ t(g, { size: "xxs", color: "grey-400", mt: "xxs-2", ...l, children: [
|
|
9096
9136
|
/* @__PURE__ */ t("time", { children: [
|
|
@@ -9103,7 +9143,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9103
9143
|
] })
|
|
9104
9144
|
] })
|
|
9105
9145
|
] }),
|
|
9106
|
-
m && c === z.MOBILE && /* @__PURE__ */ e(
|
|
9146
|
+
m && c === z.MOBILE && /* @__PURE__ */ e(J, { sponsor: m, variant: "signature" })
|
|
9107
9147
|
] });
|
|
9108
9148
|
return i ? /* @__PURE__ */ e("a", { href: i, children: f }) : f;
|
|
9109
9149
|
}, j3 = ({ installButton: a, closeButton: s }) => /* @__PURE__ */ t(h, { className: "c-smart-banner", alignItems: "center", gap: "xs", bg: "ultramarine", color: "white", children: [
|
|
@@ -9281,9 +9321,11 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9281
9321
|
switch (l) {
|
|
9282
9322
|
case "card":
|
|
9283
9323
|
return /* @__PURE__ */ t(j, { children: [
|
|
9284
|
-
|
|
9285
|
-
|
|
9286
|
-
|
|
9324
|
+
/* @__PURE__ */ e("li", { children: /* @__PURE__ */ t(h, { as: "ul", alignItems: "center", gap: "xxs", children: [
|
|
9325
|
+
M && /* @__PURE__ */ e("li", { children: M }),
|
|
9326
|
+
y && /* @__PURE__ */ e("li", { children: y })
|
|
9327
|
+
] }) }),
|
|
9328
|
+
B && /* @__PURE__ */ e("li", { children: B })
|
|
9287
9329
|
] });
|
|
9288
9330
|
case "horizontal":
|
|
9289
9331
|
return /* @__PURE__ */ t(j, { children: [
|
|
@@ -9315,6 +9357,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9315
9357
|
alignItems: "center",
|
|
9316
9358
|
gap: l === "card" ? "xxs" : "xl",
|
|
9317
9359
|
direction: l === "vertical" ? "column" : "row",
|
|
9360
|
+
justifyContent: l === "card" ? "between" : void 0,
|
|
9318
9361
|
className: p(
|
|
9319
9362
|
"c-social-bar",
|
|
9320
9363
|
{
|
|
@@ -9327,13 +9370,13 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9327
9370
|
children: a1()
|
|
9328
9371
|
}
|
|
9329
9372
|
);
|
|
9330
|
-
},
|
|
9373
|
+
}, J = ({
|
|
9331
9374
|
sponsor: a,
|
|
9332
9375
|
variant: s,
|
|
9333
9376
|
hasText: c = !1,
|
|
9334
9377
|
...l
|
|
9335
9378
|
}) => /* @__PURE__ */ t(h, { ...l, gap: c ? l?.gap || "l" : void 0, children: [
|
|
9336
|
-
c && /* @__PURE__ */ e(
|
|
9379
|
+
c && /* @__PURE__ */ e(I, { align: "end", children: /* @__PURE__ */ e(g, { as: "span", weight: "bold", children: "avec" }) }),
|
|
9337
9380
|
/* @__PURE__ */ e(
|
|
9338
9381
|
"img",
|
|
9339
9382
|
{
|
|
@@ -9439,7 +9482,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9439
9482
|
}
|
|
9440
9483
|
)
|
|
9441
9484
|
] }),
|
|
9442
|
-
/* @__PURE__ */ t(h, {
|
|
9485
|
+
/* @__PURE__ */ t(h, { mt: "xxs", color: "grey-900", wrap: "wrap", gap: "xxs", justifyContent: "between", children: [
|
|
9443
9486
|
l && /* @__PURE__ */ e(g, { size: "xxs", weight: "bold", children: l }),
|
|
9444
9487
|
/* @__PURE__ */ e(g, { size: "xxs", children: "Semaine en cours" })
|
|
9445
9488
|
] })
|
|
@@ -9520,7 +9563,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9520
9563
|
alignItems: l?.tags && i ? "center" : "end",
|
|
9521
9564
|
children: [
|
|
9522
9565
|
i && /* @__PURE__ */ e(
|
|
9523
|
-
|
|
9566
|
+
J,
|
|
9524
9567
|
{
|
|
9525
9568
|
sponsor: i,
|
|
9526
9569
|
variant: "menu",
|
|
@@ -9529,12 +9572,12 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9529
9572
|
...!l?.tags && { pt: "xxs", pb: "xs" }
|
|
9530
9573
|
}
|
|
9531
9574
|
),
|
|
9532
|
-
l?.tags && /* @__PURE__ */ e(h, { gap: "xs", children: l?.tags.map((u) => /* @__PURE__ */ e(
|
|
9575
|
+
l?.tags && /* @__PURE__ */ e(h, { gap: "xs", children: l?.tags.map((u) => /* @__PURE__ */ e(X, { href: u.href, color: r || "ultramarine", children: u.name }, u.href)) })
|
|
9533
9576
|
]
|
|
9534
9577
|
}
|
|
9535
9578
|
),
|
|
9536
|
-
/* @__PURE__ */ e(l1, { colsNumber: n, gap: "xl", children: l?.cards?.map((u) => /* @__PURE__ */
|
|
9537
|
-
|
|
9579
|
+
/* @__PURE__ */ e(l1, { colsNumber: n, gap: "xl", children: l?.cards?.map((u) => /* @__PURE__ */ g0(
|
|
9580
|
+
n0,
|
|
9538
9581
|
{
|
|
9539
9582
|
...u,
|
|
9540
9583
|
key: u.link,
|
|
@@ -9571,7 +9614,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9571
9614
|
a && l && /* @__PURE__ */ e("thead", { children: /* @__PURE__ */ e("tr", { children: l.map((n, i) => /* @__PURE__ */ e(x, { as: "th", p: "s", children: n }, i)) }) }),
|
|
9572
9615
|
/* @__PURE__ */ e("tbody", { children: r.map((n, i) => /* @__PURE__ */ e("tr", { children: n.map((o, d) => /* @__PURE__ */ e(x, { as: "td", p: "s", children: o }, d)) }, i)) })
|
|
9573
9616
|
] });
|
|
9574
|
-
},
|
|
9617
|
+
}, d0 = ({
|
|
9575
9618
|
tabItems: a,
|
|
9576
9619
|
name: s = "default",
|
|
9577
9620
|
fitContainer: c,
|
|
@@ -9641,7 +9684,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9641
9684
|
layout: s,
|
|
9642
9685
|
className: p("c-tag-bar", l?.className),
|
|
9643
9686
|
...c && { buttonsSize: "small" },
|
|
9644
|
-
children: a.map((r, n) => /* @__PURE__ */ e(
|
|
9687
|
+
children: a.map((r, n) => /* @__PURE__ */ e(X, { ...r, ...c && { size: "small" } }, n))
|
|
9645
9688
|
}
|
|
9646
9689
|
) : null, Se = ({ iconName: a, className: s }) => /* @__PURE__ */ e("li", { className: p("c-text-tooltip-item", s), children: /* @__PURE__ */ e(
|
|
9647
9690
|
H,
|
|
@@ -9733,7 +9776,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9733
9776
|
}),
|
|
9734
9777
|
children: [
|
|
9735
9778
|
/* @__PURE__ */ e(g, { as: "span", weight: "bold", className: "c-timeline__time", children: l.time }),
|
|
9736
|
-
/* @__PURE__ */ e(
|
|
9779
|
+
/* @__PURE__ */ e(X1, { color: "white", className: "c-timeline__separator" })
|
|
9737
9780
|
]
|
|
9738
9781
|
}
|
|
9739
9782
|
),
|
|
@@ -9759,7 +9802,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9759
9802
|
] })
|
|
9760
9803
|
]
|
|
9761
9804
|
}
|
|
9762
|
-
),
|
|
9805
|
+
), I3 = ({
|
|
9763
9806
|
children: a,
|
|
9764
9807
|
navigationLinks: s,
|
|
9765
9808
|
user: c,
|
|
@@ -9796,7 +9839,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9796
9839
|
)) }),
|
|
9797
9840
|
a,
|
|
9798
9841
|
/* @__PURE__ */ e(G, { color: "grey-200" })
|
|
9799
|
-
] }),
|
|
9842
|
+
] }), T3 = ({
|
|
9800
9843
|
label: a,
|
|
9801
9844
|
layout: s,
|
|
9802
9845
|
result: c,
|
|
@@ -9928,7 +9971,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9928
9971
|
pb: o && o.length > 0 ? "xxl" : "m",
|
|
9929
9972
|
children: b ? /* @__PURE__ */ t(h, { children: [
|
|
9930
9973
|
w,
|
|
9931
|
-
/* @__PURE__ */ e(
|
|
9974
|
+
/* @__PURE__ */ e(I, { grow: 1, align: "center", children: _ })
|
|
9932
9975
|
] }) : _
|
|
9933
9976
|
}
|
|
9934
9977
|
);
|
|
@@ -9938,7 +9981,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9938
9981
|
/* @__PURE__ */ e(g, { as: "span", size: "xxs", weight: "regular", children: "Télécharger sur" }),
|
|
9939
9982
|
/* @__PURE__ */ e(g, { as: "span", size: "xs", weight: "bold", children: c })
|
|
9940
9983
|
] })
|
|
9941
|
-
] }),
|
|
9984
|
+
] }), h0 = ({ links: a, ...s }) => /* @__PURE__ */ e(
|
|
9942
9985
|
h,
|
|
9943
9986
|
{
|
|
9944
9987
|
gapX: "xs",
|
|
@@ -9947,7 +9990,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
9947
9990
|
className: p("c-footer-links", s?.className),
|
|
9948
9991
|
children: a.map((c) => /* @__PURE__ */ e($, { ...c, color: "white", className: "c-footer-links__link" }, String(c.children)))
|
|
9949
9992
|
}
|
|
9950
|
-
),
|
|
9993
|
+
), m0 = ({
|
|
9951
9994
|
socialIcons: a,
|
|
9952
9995
|
themeColor: s,
|
|
9953
9996
|
...c
|
|
@@ -10006,7 +10049,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
10006
10049
|
}
|
|
10007
10050
|
) }),
|
|
10008
10051
|
/* @__PURE__ */ e(
|
|
10009
|
-
|
|
10052
|
+
m0,
|
|
10010
10053
|
{
|
|
10011
10054
|
socialIcons: l,
|
|
10012
10055
|
themeColor: c,
|
|
@@ -10077,7 +10120,7 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
10077
10120
|
alignItems: "center",
|
|
10078
10121
|
gap: "xs",
|
|
10079
10122
|
children: [
|
|
10080
|
-
/* @__PURE__ */ e(
|
|
10123
|
+
/* @__PURE__ */ e(h0, { links: n, justifyContent: "center", mb: "xl" }),
|
|
10081
10124
|
/* @__PURE__ */ e("strong", { children: "© Copyright 20 Minutes" }),
|
|
10082
10125
|
/* @__PURE__ */ e("p", { children: "La fréquentation de 20 Minutes est certifiée par l‘ACPM" })
|
|
10083
10126
|
]
|
|
@@ -10165,10 +10208,10 @@ const Z3 = ({ networks: a = ["sharethis"], ...s }) => {
|
|
|
10165
10208
|
] }),
|
|
10166
10209
|
/* @__PURE__ */ e(G, { color: "grey-200" })
|
|
10167
10210
|
] }) : void 0,
|
|
10168
|
-
/* @__PURE__ */ e(
|
|
10211
|
+
/* @__PURE__ */ e(m0, { socialIcons: l, themeColor: c, my: "xl", mx: "m" }),
|
|
10169
10212
|
/* @__PURE__ */ e(G, { color: "grey-200" }),
|
|
10170
10213
|
/* @__PURE__ */ t(x, { as: "section", className: "c-footer-mobile__bottom", px: "m", pt: "xl", pb: "xxl-2", children: [
|
|
10171
|
-
/* @__PURE__ */ e(
|
|
10214
|
+
/* @__PURE__ */ e(h0, { links: r, gapX: "s", mb: "xl" }),
|
|
10172
10215
|
/* @__PURE__ */ e("strong", { children: "© Copyright 20 Minutes" }),
|
|
10173
10216
|
/* @__PURE__ */ e(g, { mt: "xs", children: "La fréquentation de 20 Minutes est certifiée par l‘ACPM" })
|
|
10174
10217
|
] })
|
|
@@ -10403,7 +10446,7 @@ const $e = {
|
|
|
10403
10446
|
},
|
|
10404
10447
|
m.link
|
|
10405
10448
|
)),
|
|
10406
|
-
/* @__PURE__ */ e(
|
|
10449
|
+
/* @__PURE__ */ e(F0, {})
|
|
10407
10450
|
]
|
|
10408
10451
|
}
|
|
10409
10452
|
)
|
|
@@ -10540,7 +10583,7 @@ const $e = {
|
|
|
10540
10583
|
}),
|
|
10541
10584
|
children: /* @__PURE__ */ e("div", { children: v.body.map((_, w) => /* @__PURE__ */ t(Q.Fragment, { children: [
|
|
10542
10585
|
f ? /* @__PURE__ */ e(
|
|
10543
|
-
|
|
10586
|
+
l0,
|
|
10544
10587
|
{
|
|
10545
10588
|
link: _.url,
|
|
10546
10589
|
title: _.title,
|
|
@@ -10595,7 +10638,7 @@ const $e = {
|
|
|
10595
10638
|
};
|
|
10596
10639
|
});
|
|
10597
10640
|
return m.length === 0 ? null : /* @__PURE__ */ e(
|
|
10598
|
-
|
|
10641
|
+
d0,
|
|
10599
10642
|
{
|
|
10600
10643
|
tabItemActive: l || m[0].name,
|
|
10601
10644
|
tabItems: m,
|
|
@@ -10650,7 +10693,7 @@ const $e = {
|
|
|
10650
10693
|
] })
|
|
10651
10694
|
}));
|
|
10652
10695
|
return u.length === 0 ? null : /* @__PURE__ */ e(
|
|
10653
|
-
|
|
10696
|
+
d0,
|
|
10654
10697
|
{
|
|
10655
10698
|
tabItemActive: l || (u.length > 0 ? u[0].name : ""),
|
|
10656
10699
|
tabItems: u,
|
|
@@ -10699,7 +10742,7 @@ const $e = {
|
|
|
10699
10742
|
"c-overview-bar__article--has-stepper": c
|
|
10700
10743
|
}
|
|
10701
10744
|
), d = /* @__PURE__ */ e(m1, { layout: s, itemsGap: "m", hasSpaceAroundButtons: !0, children: a.map((m, v) => l === "product" && m.cardHeaderProps?.headline?.text ? /* @__PURE__ */ e(
|
|
10702
|
-
|
|
10745
|
+
I,
|
|
10703
10746
|
{
|
|
10704
10747
|
grow: 0,
|
|
10705
10748
|
shrink: 0,
|
|
@@ -10719,14 +10762,14 @@ const $e = {
|
|
|
10719
10762
|
},
|
|
10720
10763
|
m.cardHeaderProps.headline.text
|
|
10721
10764
|
) : /* @__PURE__ */ e(
|
|
10722
|
-
|
|
10765
|
+
I,
|
|
10723
10766
|
{
|
|
10724
10767
|
grow: 0,
|
|
10725
10768
|
shrink: 0,
|
|
10726
10769
|
className: o,
|
|
10727
10770
|
pl: { xs: v === 0 ? "m" : "0", md: "0" },
|
|
10728
10771
|
children: /* @__PURE__ */ e(
|
|
10729
|
-
|
|
10772
|
+
t0,
|
|
10730
10773
|
{
|
|
10731
10774
|
...m,
|
|
10732
10775
|
cardTitleProps: {
|
|
@@ -10748,7 +10791,7 @@ const $e = {
|
|
|
10748
10791
|
i,
|
|
10749
10792
|
d
|
|
10750
10793
|
] }),
|
|
10751
|
-
c && s === z.MOBILE && /* @__PURE__ */ e(
|
|
10794
|
+
c && s === z.MOBILE && /* @__PURE__ */ e(D0, { items: u, mt: "s" })
|
|
10752
10795
|
] });
|
|
10753
10796
|
}, P3 = ({ medias: a, ...s }) => !a || a.length === 0 ? null : /* @__PURE__ */ e(x, { ...s, className: "pswp-gallery", id: "photoswipe-gallery", children: a.map((c, l) => /* @__PURE__ */ e(
|
|
10754
10797
|
"a",
|
|
@@ -10866,7 +10909,7 @@ const $e = {
|
|
|
10866
10909
|
}, He = ({ title: a, articles: s, isSponsored: c, seeMoreLink: l }) => {
|
|
10867
10910
|
const { layout: r, ...n } = s[0];
|
|
10868
10911
|
return /* @__PURE__ */ t(
|
|
10869
|
-
|
|
10912
|
+
I,
|
|
10870
10913
|
{
|
|
10871
10914
|
as: "section",
|
|
10872
10915
|
bg: c ? "sponsoring" : void 0,
|
|
@@ -10875,7 +10918,7 @@ const $e = {
|
|
|
10875
10918
|
align: "end",
|
|
10876
10919
|
className: "c-three-columns-articles__column",
|
|
10877
10920
|
children: [
|
|
10878
|
-
a && /* @__PURE__ */ e(
|
|
10921
|
+
a && /* @__PURE__ */ e(i0, { ...a, mb: c ? "m" : "xxl" }),
|
|
10879
10922
|
c && /* @__PURE__ */ e(x, { mb: "xs", children: /* @__PURE__ */ e(g, { as: "span", size: "xs", mx: "s", color: "grey-900", children: "Vidéos sponsorisées" }) }),
|
|
10880
10923
|
/* @__PURE__ */ e(
|
|
10881
10924
|
J0,
|
|
@@ -10892,7 +10935,7 @@ const $e = {
|
|
|
10892
10935
|
s.map((i) => /* @__PURE__ */ t(Q.Fragment, { children: [
|
|
10893
10936
|
/* @__PURE__ */ e(G, { color: "grey-200", my: "s" }),
|
|
10894
10937
|
/* @__PURE__ */ e(
|
|
10895
|
-
|
|
10938
|
+
l0,
|
|
10896
10939
|
{
|
|
10897
10940
|
...i,
|
|
10898
10941
|
cardTitleProps: { ...i.cardTitleProps, maxRows: 3 },
|
|
@@ -10956,7 +10999,7 @@ const $e = {
|
|
|
10956
10999
|
}
|
|
10957
11000
|
);
|
|
10958
11001
|
export {
|
|
10959
|
-
|
|
11002
|
+
Te as Ad,
|
|
10960
11003
|
Ae as Alert,
|
|
10961
11004
|
Z2 as AlertInfoBanner,
|
|
10962
11005
|
$2 as ArticleBrandBanner,
|
|
@@ -10964,34 +11007,34 @@ export {
|
|
|
10964
11007
|
L2 as ArticleSummary,
|
|
10965
11008
|
V2 as ArticleVideo,
|
|
10966
11009
|
F2 as AstroContent,
|
|
10967
|
-
|
|
11010
|
+
I2 as AstroTiles,
|
|
10968
11011
|
K0 as AstroTopicCard,
|
|
10969
11012
|
De as Autocomplete,
|
|
10970
11013
|
v1 as Avatar,
|
|
10971
11014
|
G0 as AvatarGroup,
|
|
10972
11015
|
x as Box,
|
|
10973
|
-
|
|
11016
|
+
T2 as Breadcrumb,
|
|
10974
11017
|
A2 as BulletedList,
|
|
10975
11018
|
H as Button,
|
|
10976
11019
|
D2 as Calendar,
|
|
10977
11020
|
O as CardContainer,
|
|
10978
11021
|
O2 as CardExtraLarge,
|
|
10979
|
-
|
|
10980
|
-
|
|
11022
|
+
l0 as CardExtraSmall,
|
|
11023
|
+
c0 as CardFooter,
|
|
10981
11024
|
R2 as CardFrame,
|
|
10982
11025
|
e1 as CardHeader,
|
|
10983
|
-
|
|
11026
|
+
T as CardImage,
|
|
10984
11027
|
E2 as CardLarge,
|
|
10985
11028
|
J0 as CardMedium,
|
|
10986
11029
|
Q0 as CardMost,
|
|
10987
11030
|
P2 as CardMovie,
|
|
10988
11031
|
q2 as CardNewsletter,
|
|
10989
11032
|
K2 as CardNotification,
|
|
10990
|
-
|
|
11033
|
+
t0 as CardOverview,
|
|
10991
11034
|
ee as CardProduct,
|
|
10992
11035
|
G2 as CardSideImage,
|
|
10993
11036
|
U2 as CardSkeleton,
|
|
10994
|
-
|
|
11037
|
+
n0 as CardSmall,
|
|
10995
11038
|
ce as CardTiny,
|
|
10996
11039
|
D as CardTitle,
|
|
10997
11040
|
le as CardVertical,
|
|
@@ -11001,7 +11044,7 @@ export {
|
|
|
11001
11044
|
X2 as CardWithSummary,
|
|
11002
11045
|
ne as Carousel,
|
|
11003
11046
|
Q2 as Chatbot,
|
|
11004
|
-
|
|
11047
|
+
v2 as Checkbox,
|
|
11005
11048
|
e3 as Citation,
|
|
11006
11049
|
N1 as Collapse,
|
|
11007
11050
|
a3 as Comment,
|
|
@@ -11013,14 +11056,14 @@ export {
|
|
|
11013
11056
|
t3 as DiscoverList,
|
|
11014
11057
|
G as Divider,
|
|
11015
11058
|
L1 as DividerSection,
|
|
11016
|
-
|
|
11017
|
-
|
|
11059
|
+
X1 as DividerVertical,
|
|
11060
|
+
T3 as ElectionsResult,
|
|
11018
11061
|
H2 as Embed,
|
|
11019
11062
|
r3 as EmojiToolbar,
|
|
11020
11063
|
i3 as ErrorContent,
|
|
11021
11064
|
de as Expandable,
|
|
11022
11065
|
h as Flex,
|
|
11023
|
-
|
|
11066
|
+
I as FlexItem,
|
|
11024
11067
|
A3 as Footer,
|
|
11025
11068
|
l1 as Grid,
|
|
11026
11069
|
J2 as HalfDonut,
|
|
@@ -11069,7 +11112,7 @@ export {
|
|
|
11069
11112
|
R3 as MostWatchVideos,
|
|
11070
11113
|
k3 as Newsletter,
|
|
11071
11114
|
M3 as OrderedListWithNumber,
|
|
11072
|
-
|
|
11115
|
+
F0 as Overlay,
|
|
11073
11116
|
E3 as OverviewBar,
|
|
11074
11117
|
C3 as Pagination,
|
|
11075
11118
|
we as PercentageBar,
|
|
@@ -11080,34 +11123,34 @@ export {
|
|
|
11080
11123
|
q3 as Ranking,
|
|
11081
11124
|
I0 as Rating,
|
|
11082
11125
|
be as ReactButton,
|
|
11083
|
-
|
|
11126
|
+
b0 as ReactionContent,
|
|
11084
11127
|
k2 as ReadAlso,
|
|
11085
11128
|
B3 as ReadAlsoBanner,
|
|
11086
11129
|
M2 as ScrollProgressBar,
|
|
11087
|
-
|
|
11130
|
+
T0 as ScrollToTopButton,
|
|
11088
11131
|
n3 as SearchBanner,
|
|
11089
11132
|
g1 as SearchForm,
|
|
11090
11133
|
C2 as Section,
|
|
11091
|
-
|
|
11092
|
-
|
|
11134
|
+
i0 as SectionTitle,
|
|
11135
|
+
A0 as Select,
|
|
11093
11136
|
Z3 as ShareBar,
|
|
11094
11137
|
$3 as ShowCover,
|
|
11095
|
-
|
|
11138
|
+
o0 as Signature,
|
|
11096
11139
|
S2 as Skeleton,
|
|
11097
11140
|
m1 as Slider,
|
|
11098
11141
|
j3 as SmartBanner,
|
|
11099
11142
|
o1 as SocialBar,
|
|
11100
|
-
|
|
11101
|
-
|
|
11143
|
+
J as Sponsor,
|
|
11144
|
+
D0 as Stepper,
|
|
11102
11145
|
Me as StreakBlock,
|
|
11103
11146
|
Ce as SubMenu,
|
|
11104
11147
|
w2 as SvgSprite,
|
|
11105
|
-
|
|
11148
|
+
O0 as Switch,
|
|
11106
11149
|
R0 as Tab,
|
|
11107
11150
|
E0 as TabPanel,
|
|
11108
11151
|
L3 as Table,
|
|
11109
|
-
|
|
11110
|
-
|
|
11152
|
+
d0 as Tabs,
|
|
11153
|
+
X as Tag,
|
|
11111
11154
|
V3 as TagBar,
|
|
11112
11155
|
g as Text,
|
|
11113
11156
|
H3 as TextTooltip,
|
|
@@ -11116,61 +11159,61 @@ export {
|
|
|
11116
11159
|
_1 as Tiles,
|
|
11117
11160
|
F3 as Timeline,
|
|
11118
11161
|
G3 as Toolbar,
|
|
11119
|
-
|
|
11120
|
-
|
|
11121
|
-
|
|
11122
|
-
|
|
11123
|
-
|
|
11162
|
+
s0 as Typography,
|
|
11163
|
+
I3 as UserPanel,
|
|
11164
|
+
qe as alignContentList,
|
|
11165
|
+
Pe as alignItemsList,
|
|
11166
|
+
Ge as alignSelfList,
|
|
11124
11167
|
z1 as applyFormatToNumbers,
|
|
11125
11168
|
f2 as borderSizeList,
|
|
11126
|
-
|
|
11169
|
+
w0 as buttonColor,
|
|
11127
11170
|
Oe as buttonVariant,
|
|
11128
11171
|
Z1 as cityZoom,
|
|
11129
|
-
|
|
11130
|
-
|
|
11172
|
+
z0 as colorSystemProps,
|
|
11173
|
+
o2 as colorTokenNameList,
|
|
11131
11174
|
z2 as colsNumberGridList,
|
|
11132
|
-
|
|
11133
|
-
|
|
11134
|
-
|
|
11135
|
-
|
|
11136
|
-
|
|
11137
|
-
|
|
11138
|
-
|
|
11139
|
-
|
|
11140
|
-
|
|
11141
|
-
|
|
11142
|
-
|
|
11143
|
-
|
|
11175
|
+
y0 as departmentNames,
|
|
11176
|
+
K1 as emojiConfig,
|
|
11177
|
+
Ue as flexBasisList,
|
|
11178
|
+
Re as flexDirectionList,
|
|
11179
|
+
Ye as flexGrowList,
|
|
11180
|
+
G1 as flexOrGridBoxSystemProps,
|
|
11181
|
+
N0 as flexOrGridItemSystemProps,
|
|
11182
|
+
We as flexShrinkList,
|
|
11183
|
+
Ee as flexWrapList,
|
|
11184
|
+
a2 as fontFamilyTokenNameList,
|
|
11185
|
+
s2 as fontWeightTokenNameList,
|
|
11186
|
+
F as forwardRef,
|
|
11144
11187
|
D1 as franceMainCities,
|
|
11145
|
-
|
|
11146
|
-
|
|
11188
|
+
B0 as getSrcSetFromFormats,
|
|
11189
|
+
c2 as headingSizeTokenNameList,
|
|
11147
11190
|
b2 as iconButtonColor,
|
|
11148
|
-
|
|
11149
|
-
|
|
11150
|
-
|
|
11151
|
-
|
|
11191
|
+
h2 as iconTokenNameHorscopeChineseList,
|
|
11192
|
+
m2 as iconTokenNameHorscopeZodiacList,
|
|
11193
|
+
d2 as iconTokenNameList,
|
|
11194
|
+
u2 as iconTokenNameNumerologyList,
|
|
11152
11195
|
P0 as imageConfigDesktop,
|
|
11153
11196
|
q0 as imageConfigMobile,
|
|
11154
|
-
|
|
11155
|
-
|
|
11156
|
-
|
|
11157
|
-
|
|
11158
|
-
|
|
11159
|
-
|
|
11160
|
-
|
|
11197
|
+
Ke as justifyContentList,
|
|
11198
|
+
k0 as marginSystemProps,
|
|
11199
|
+
t2 as mediaQueriesList,
|
|
11200
|
+
W1 as paddingSystemProps,
|
|
11201
|
+
_0 as politicalPartiesColors,
|
|
11202
|
+
U1 as radiusSystemProps,
|
|
11203
|
+
p2 as radiusTokenNameList,
|
|
11161
11204
|
$1 as replaceSrcFormat,
|
|
11162
11205
|
x2 as rotationList,
|
|
11163
|
-
|
|
11164
|
-
|
|
11165
|
-
|
|
11166
|
-
|
|
11167
|
-
|
|
11168
|
-
|
|
11169
|
-
|
|
11170
|
-
|
|
11171
|
-
|
|
11206
|
+
Y1 as spacingSystemProps,
|
|
11207
|
+
i2 as spacingTokenNameList,
|
|
11208
|
+
M0 as systemProps,
|
|
11209
|
+
Je as textAlignList,
|
|
11210
|
+
Xe as textDecorationList,
|
|
11211
|
+
l2 as textSizeTokenNameList,
|
|
11212
|
+
Qe as textTransformList,
|
|
11213
|
+
n2 as themeColorAvailables,
|
|
11214
|
+
r2 as themeList,
|
|
11172
11215
|
R as tokenVariables,
|
|
11173
|
-
|
|
11174
|
-
|
|
11175
|
-
|
|
11216
|
+
g2 as tvShowsColors,
|
|
11217
|
+
C0 as typographySystemProps,
|
|
11218
|
+
e2 as whiteSpaceList
|
|
11176
11219
|
};
|