@dododog/ui 0.12.0 → 0.13.1

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.
@@ -23,15 +23,18 @@ var StayListRow = React.forwardRef(
23
23
  thumbnailGradient = DEFAULT_GRADIENT,
24
24
  badge,
25
25
  badgeTone = "free",
26
+ statusBadge,
26
27
  dogs = [],
27
28
  href,
29
+ onSelect,
28
30
  className,
29
31
  renderImage,
30
32
  renderLink
31
33
  }, ref) => {
34
+ const interactive = !!href || !!onSelect;
32
35
  const rowClass = cn(
33
- "group flex items-center gap-3 px-4 py-3.5 transition-colors hover:bg-sand-light md:gap-4 md:px-[18px] md:py-[15px]",
34
- href && "cursor-pointer focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-inset focus-visible:ring-offset-0",
36
+ "group flex w-full items-center gap-3 px-4 py-3.5 text-left transition-colors hover:bg-sand-light md:gap-4 md:px-[18px] md:py-[15px]",
37
+ interactive && "cursor-pointer focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-inset",
35
38
  className
36
39
  );
37
40
  const body = /* @__PURE__ */ jsxs(Fragment, { children: [
@@ -56,7 +59,10 @@ var StayListRow = React.forwardRef(
56
59
  }
57
60
  ),
58
61
  /* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
59
- /* @__PURE__ */ jsx("div", { className: "truncate text-sm font-bold text-primary md:text-[15px]", children: hotelName }),
62
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
63
+ /* @__PURE__ */ jsx("span", { className: "truncate text-sm font-bold text-primary md:text-[15px]", children: hotelName }),
64
+ statusBadge
65
+ ] }),
60
66
  location && /* @__PURE__ */ jsxs("div", { className: "mt-0.5 inline-flex items-center gap-1.5 text-[12.5px] text-text-secondary md:text-[13px]", children: [
61
67
  /* @__PURE__ */ jsx(MapPinIcon, {}),
62
68
  /* @__PURE__ */ jsx("span", { className: "truncate", children: location })
@@ -67,8 +73,11 @@ var StayListRow = React.forwardRef(
67
73
  /* @__PURE__ */ jsx("div", { className: "font-heading text-[15px] font-bold text-primary md:text-base", children: priceLabel }),
68
74
  nightsLabel && /* @__PURE__ */ jsx("div", { className: "text-[11px] text-text-secondary", children: nightsLabel })
69
75
  ] }),
70
- href && /* @__PURE__ */ jsx("span", { className: "hidden text-sand-dark transition-colors group-hover:text-text-secondary md:block", children: /* @__PURE__ */ jsx(ChevronRightIcon, {}) })
76
+ interactive && /* @__PURE__ */ jsx("span", { className: "hidden text-sand-dark transition-colors group-hover:text-text-secondary md:block", children: /* @__PURE__ */ jsx(ChevronRightIcon, {}) })
71
77
  ] });
78
+ if (onSelect) {
79
+ return /* @__PURE__ */ jsx("div", { ref, children: /* @__PURE__ */ jsx("button", { type: "button", onClick: onSelect, className: rowClass, "aria-label": hotelName, children: body }) });
80
+ }
72
81
  return /* @__PURE__ */ jsx("div", { ref, children: href ? renderLink ? renderLink({ href, className: rowClass, "aria-label": hotelName, children: body }) : /* @__PURE__ */ jsx("a", { href, className: rowClass, "aria-label": hotelName, children: body }) : /* @__PURE__ */ jsx("div", { className: rowClass, children: body }) });
73
82
  }
74
83
  );
@@ -45,15 +45,18 @@ var StayListRow = React__namespace.forwardRef(
45
45
  thumbnailGradient = DEFAULT_GRADIENT,
46
46
  badge,
47
47
  badgeTone = "free",
48
+ statusBadge,
48
49
  dogs = [],
49
50
  href,
51
+ onSelect,
50
52
  className,
51
53
  renderImage,
52
54
  renderLink
53
55
  }, ref) => {
56
+ const interactive = !!href || !!onSelect;
54
57
  const rowClass = chunkADIDI7AJ_js.cn(
55
- "group flex items-center gap-3 px-4 py-3.5 transition-colors hover:bg-sand-light md:gap-4 md:px-[18px] md:py-[15px]",
56
- href && "cursor-pointer focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-inset focus-visible:ring-offset-0",
58
+ "group flex w-full items-center gap-3 px-4 py-3.5 text-left transition-colors hover:bg-sand-light md:gap-4 md:px-[18px] md:py-[15px]",
59
+ interactive && "cursor-pointer focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-primary focus-visible:ring-inset",
57
60
  className
58
61
  );
59
62
  const body = /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
@@ -78,7 +81,10 @@ var StayListRow = React__namespace.forwardRef(
78
81
  }
79
82
  ),
80
83
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "min-w-0 flex-1", children: [
81
- /* @__PURE__ */ jsxRuntime.jsx("div", { className: "truncate text-sm font-bold text-primary md:text-[15px]", children: hotelName }),
84
+ /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-2", children: [
85
+ /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate text-sm font-bold text-primary md:text-[15px]", children: hotelName }),
86
+ statusBadge
87
+ ] }),
82
88
  location && /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "mt-0.5 inline-flex items-center gap-1.5 text-[12.5px] text-text-secondary md:text-[13px]", children: [
83
89
  /* @__PURE__ */ jsxRuntime.jsx(MapPinIcon, {}),
84
90
  /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate", children: location })
@@ -89,8 +95,11 @@ var StayListRow = React__namespace.forwardRef(
89
95
  /* @__PURE__ */ jsxRuntime.jsx("div", { className: "font-heading text-[15px] font-bold text-primary md:text-base", children: priceLabel }),
90
96
  nightsLabel && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-[11px] text-text-secondary", children: nightsLabel })
91
97
  ] }),
92
- href && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "hidden text-sand-dark transition-colors group-hover:text-text-secondary md:block", children: /* @__PURE__ */ jsxRuntime.jsx(ChevronRightIcon, {}) })
98
+ interactive && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "hidden text-sand-dark transition-colors group-hover:text-text-secondary md:block", children: /* @__PURE__ */ jsxRuntime.jsx(ChevronRightIcon, {}) })
93
99
  ] });
100
+ if (onSelect) {
101
+ return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, children: /* @__PURE__ */ jsxRuntime.jsx("button", { type: "button", onClick: onSelect, className: rowClass, "aria-label": hotelName, children: body }) });
102
+ }
94
103
  return /* @__PURE__ */ jsxRuntime.jsx("div", { ref, children: href ? renderLink ? renderLink({ href, className: rowClass, "aria-label": hotelName, children: body }) : /* @__PURE__ */ jsxRuntime.jsx("a", { href, className: rowClass, "aria-label": hotelName, children: body }) : /* @__PURE__ */ jsxRuntime.jsx("div", { className: rowClass, children: body }) });
95
104
  }
96
105
  );
@@ -11,8 +11,12 @@ interface StayListRowProps {
11
11
  thumbnailGradient?: string;
12
12
  badge?: string | null;
13
13
  badgeTone?: "free" | "fee";
14
+ /** Badge de statut (ex. <StatusBadge/>) rendu sous le nom. */
15
+ statusBadge?: React.ReactNode;
14
16
  dogs?: DogAvatarStackDog[];
15
17
  href?: string;
18
+ /** Ouvre au clic (ex. modale) au lieu de naviguer. Rend la ligne en `button`. */
19
+ onSelect?: () => void;
16
20
  className?: string;
17
21
  renderImage?: (props: {
18
22
  src: string;
@@ -11,8 +11,12 @@ interface StayListRowProps {
11
11
  thumbnailGradient?: string;
12
12
  badge?: string | null;
13
13
  badgeTone?: "free" | "fee";
14
+ /** Badge de statut (ex. <StatusBadge/>) rendu sous le nom. */
15
+ statusBadge?: React.ReactNode;
14
16
  dogs?: DogAvatarStackDog[];
15
17
  href?: string;
18
+ /** Ouvre au clic (ex. modale) au lieu de naviguer. Rend la ligne en `button`. */
19
+ onSelect?: () => void;
16
20
  className?: string;
17
21
  renderImage?: (props: {
18
22
  src: string;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkJSRYMZCT_js = require('../../chunk-JSRYMZCT.js');
3
+ var chunkOTHB7MU7_js = require('../../chunk-OTHB7MU7.js');
4
4
  require('../../chunk-HB2XJOBZ.js');
5
5
  require('../../chunk-ADIDI7AJ.js');
6
6
 
@@ -8,5 +8,5 @@ require('../../chunk-ADIDI7AJ.js');
8
8
 
9
9
  Object.defineProperty(exports, "StayListRow", {
10
10
  enumerable: true,
11
- get: function () { return chunkJSRYMZCT_js.StayListRow; }
11
+ get: function () { return chunkOTHB7MU7_js.StayListRow; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { StayListRow } from '../../chunk-NKD7FXZR.mjs';
1
+ export { StayListRow } from '../../chunk-IVCQVBOT.mjs';
2
2
  import '../../chunk-AGNY5DBW.mjs';
3
3
  import '../../chunk-IMKLN273.mjs';
package/dist/index.d.mts CHANGED
@@ -143,7 +143,10 @@ interface ReviewItem {
143
143
  meta?: string;
144
144
  /** Avis vérifié */
145
145
  verified?: boolean;
146
- /** Langue d'origine si traduit, ex: "l'anglais" → "Traduit de l'anglais" */
146
+ /**
147
+ * Langue d'origine si traduit, préposition incluse pour une contraction FR
148
+ * correcte : "de l'anglais" → "Traduit de l'anglais", "du russe" → "Traduit du russe".
149
+ */
147
150
  translatedFrom?: string;
148
151
  }
149
152
  interface ReviewSummaryProps extends React.HTMLAttributes<HTMLElement> {
package/dist/index.d.ts CHANGED
@@ -143,7 +143,10 @@ interface ReviewItem {
143
143
  meta?: string;
144
144
  /** Avis vérifié */
145
145
  verified?: boolean;
146
- /** Langue d'origine si traduit, ex: "l'anglais" → "Traduit de l'anglais" */
146
+ /**
147
+ * Langue d'origine si traduit, préposition incluse pour une contraction FR
148
+ * correcte : "de l'anglais" → "Traduit de l'anglais", "du russe" → "Traduit du russe".
149
+ */
147
150
  translatedFrom?: string;
148
151
  }
149
152
  interface ReviewSummaryProps extends React.HTMLAttributes<HTMLElement> {
package/dist/index.js CHANGED
@@ -1,53 +1,53 @@
1
1
  'use strict';
2
2
 
3
- var chunk7IJOHVNJ_js = require('./chunk-7IJOHVNJ.js');
4
3
  var chunkL7OYR6U3_js = require('./chunk-L7OYR6U3.js');
5
4
  var chunkVTELEOT7_js = require('./chunk-VTELEOT7.js');
6
5
  var chunkDTIYZ3TQ_js = require('./chunk-DTIYZ3TQ.js');
7
6
  var chunkE6ZNND75_js = require('./chunk-E6ZNND75.js');
7
+ var chunk7IJOHVNJ_js = require('./chunk-7IJOHVNJ.js');
8
8
  var chunkBXFU7V2X_js = require('./chunk-BXFU7V2X.js');
9
9
  var chunkN3JU7JS7_js = require('./chunk-N3JU7JS7.js');
10
- var chunkXHRDPJTF_js = require('./chunk-XHRDPJTF.js');
11
10
  var chunkTT7L3ZU7_js = require('./chunk-TT7L3ZU7.js');
12
11
  var chunkCWXP2ZI2_js = require('./chunk-CWXP2ZI2.js');
13
12
  var chunkDFXXGKMI_js = require('./chunk-DFXXGKMI.js');
14
- var chunkJSRYMZCT_js = require('./chunk-JSRYMZCT.js');
13
+ var chunkOTHB7MU7_js = require('./chunk-OTHB7MU7.js');
15
14
  var chunk3VU6TPAT_js = require('./chunk-3VU6TPAT.js');
16
15
  var chunkI4S3R6C6_js = require('./chunk-I4S3R6C6.js');
17
16
  var chunk762LQMWP_js = require('./chunk-762LQMWP.js');
18
- var chunk6KW7ZSKR_js = require('./chunk-6KW7ZSKR.js');
19
- var chunkSEHALSKW_js = require('./chunk-SEHALSKW.js');
20
17
  var chunkOGB5LIXN_js = require('./chunk-OGB5LIXN.js');
18
+ var chunkSEHALSKW_js = require('./chunk-SEHALSKW.js');
21
19
  var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.js');
20
+ var chunkKFQILIZO_js = require('./chunk-KFQILIZO.js');
21
+ var chunkNCU5PY34_js = require('./chunk-NCU5PY34.js');
22
22
  var chunk3R7PT3JG_js = require('./chunk-3R7PT3JG.js');
23
23
  var chunkDS4LM7OS_js = require('./chunk-DS4LM7OS.js');
24
24
  var chunkWXSBKARZ_js = require('./chunk-WXSBKARZ.js');
25
- var chunkSCGN5H6D_js = require('./chunk-SCGN5H6D.js');
26
- var chunkB4LR4H6R_js = require('./chunk-B4LR4H6R.js');
25
+ var chunkXHRDPJTF_js = require('./chunk-XHRDPJTF.js');
26
+ var chunkKZSGVMUG_js = require('./chunk-KZSGVMUG.js');
27
27
  var chunkPG4I4NWO_js = require('./chunk-PG4I4NWO.js');
28
28
  var chunkPRDIS2VR_js = require('./chunk-PRDIS2VR.js');
29
- var chunkGXKON34B_js = require('./chunk-GXKON34B.js');
30
29
  var chunkTZHT7NZU_js = require('./chunk-TZHT7NZU.js');
31
- var chunkKFQILIZO_js = require('./chunk-KFQILIZO.js');
32
- var chunkNCU5PY34_js = require('./chunk-NCU5PY34.js');
30
+ var chunkB4LR4H6R_js = require('./chunk-B4LR4H6R.js');
31
+ var chunkGXKON34B_js = require('./chunk-GXKON34B.js');
33
32
  var chunkHS3MAW3G_js = require('./chunk-HS3MAW3G.js');
34
- var chunkDFC6XK57_js = require('./chunk-DFC6XK57.js');
33
+ var chunk6KW7ZSKR_js = require('./chunk-6KW7ZSKR.js');
34
+ var chunkDLOHAW74_js = require('./chunk-DLOHAW74.js');
35
35
  var chunk77WKG2D7_js = require('./chunk-77WKG2D7.js');
36
36
  var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
37
37
  var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
38
38
  var chunkTE4WHZ4Q_js = require('./chunk-TE4WHZ4Q.js');
39
39
  var chunkHN6B4TAW_js = require('./chunk-HN6B4TAW.js');
40
- var chunkKZSGVMUG_js = require('./chunk-KZSGVMUG.js');
40
+ var chunkSCGN5H6D_js = require('./chunk-SCGN5H6D.js');
41
41
  var chunkNBDPT3XQ_js = require('./chunk-NBDPT3XQ.js');
42
42
  var chunkZCQJN4IT_js = require('./chunk-ZCQJN4IT.js');
43
43
  var chunkC4RZBOKH_js = require('./chunk-C4RZBOKH.js');
44
44
  var chunkKOO5ZXLD_js = require('./chunk-KOO5ZXLD.js');
45
45
  var chunkIRKM5UF4_js = require('./chunk-IRKM5UF4.js');
46
- var chunkECVKFE6U_js = require('./chunk-ECVKFE6U.js');
47
46
  var chunkYN4HPIRC_js = require('./chunk-YN4HPIRC.js');
47
+ var chunkECVKFE6U_js = require('./chunk-ECVKFE6U.js');
48
48
  var chunkMKOKWME3_js = require('./chunk-MKOKWME3.js');
49
- var chunkDLOHAW74_js = require('./chunk-DLOHAW74.js');
50
- var chunkBS7R7VDS_js = require('./chunk-BS7R7VDS.js');
49
+ var chunkDFC6XK57_js = require('./chunk-DFC6XK57.js');
50
+ require('./chunk-VNURXHKK.js');
51
51
  var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
52
52
  var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
53
53
  var chunkTDGU5Y2P_js = require('./chunk-TDGU5Y2P.js');
@@ -55,27 +55,27 @@ var chunkIEHX4DU6_js = require('./chunk-IEHX4DU6.js');
55
55
  var chunkS5TLUDNM_js = require('./chunk-S5TLUDNM.js');
56
56
  var chunk7W3TFPIF_js = require('./chunk-7W3TFPIF.js');
57
57
  var chunkTJDHGNMR_js = require('./chunk-TJDHGNMR.js');
58
- var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
59
58
  var chunkP7GAKOCX_js = require('./chunk-P7GAKOCX.js');
60
- var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
59
+ var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
61
60
  var chunkIJIUUBFT_js = require('./chunk-IJIUUBFT.js');
62
61
  var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
62
+ var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
63
63
  var chunkE24VNM6S_js = require('./chunk-E24VNM6S.js');
64
64
  var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
65
- require('./chunk-VNURXHKK.js');
66
- var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
65
+ var chunkBS7R7VDS_js = require('./chunk-BS7R7VDS.js');
67
66
  var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
68
- var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
69
67
  var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
68
+ var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
69
+ var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
70
70
  var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
71
- var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
72
71
  var chunkYZTVHCLK_js = require('./chunk-YZTVHCLK.js');
72
+ var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
73
73
  var chunkZAUYE2EI_js = require('./chunk-ZAUYE2EI.js');
74
74
  var chunkMCF3EQTV_js = require('./chunk-MCF3EQTV.js');
75
75
  var chunkG3LZ32WA_js = require('./chunk-G3LZ32WA.js');
76
76
  var chunkHB2XJOBZ_js = require('./chunk-HB2XJOBZ.js');
77
77
  var chunkWXEZA6NE_js = require('./chunk-WXEZA6NE.js');
78
- var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
78
+ var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
79
79
  var chunkADIDI7AJ_js = require('./chunk-ADIDI7AJ.js');
80
80
  var React = require('react');
81
81
  var classVarianceAuthority = require('class-variance-authority');
@@ -429,7 +429,7 @@ function ReviewSummary({
429
429
  "Avis v\xE9rifi\xE9"
430
430
  ] }) : null,
431
431
  review.translatedFrom ? /* @__PURE__ */ jsxRuntime.jsxs("span", { className: "text-xs italic text-text-muted", children: [
432
- "Traduit de ",
432
+ "Traduit ",
433
433
  review.translatedFrom
434
434
  ] }) : null
435
435
  ] })
@@ -496,14 +496,6 @@ function MobileBookingBar({
496
496
  );
497
497
  }
498
498
 
499
- Object.defineProperty(exports, "Tag", {
500
- enumerable: true,
501
- get: function () { return chunk7IJOHVNJ_js.Tag; }
502
- });
503
- Object.defineProperty(exports, "tagVariants", {
504
- enumerable: true,
505
- get: function () { return chunk7IJOHVNJ_js.tagVariants; }
506
- });
507
499
  Object.defineProperty(exports, "Textarea", {
508
500
  enumerable: true,
509
501
  get: function () { return chunkL7OYR6U3_js.Textarea; }
@@ -528,21 +520,21 @@ Object.defineProperty(exports, "Tooltip", {
528
520
  enumerable: true,
529
521
  get: function () { return chunkE6ZNND75_js.Tooltip; }
530
522
  });
531
- Object.defineProperty(exports, "TripHeroCard", {
523
+ Object.defineProperty(exports, "Tag", {
532
524
  enumerable: true,
533
- get: function () { return chunkBXFU7V2X_js.TripHeroCard; }
525
+ get: function () { return chunk7IJOHVNJ_js.Tag; }
534
526
  });
535
- Object.defineProperty(exports, "VerticalMarquee", {
527
+ Object.defineProperty(exports, "tagVariants", {
536
528
  enumerable: true,
537
- get: function () { return chunkN3JU7JS7_js.VerticalMarquee; }
529
+ get: function () { return chunk7IJOHVNJ_js.tagVariants; }
538
530
  });
539
- Object.defineProperty(exports, "Spinner", {
531
+ Object.defineProperty(exports, "TripHeroCard", {
540
532
  enumerable: true,
541
- get: function () { return chunkXHRDPJTF_js.Spinner; }
533
+ get: function () { return chunkBXFU7V2X_js.TripHeroCard; }
542
534
  });
543
- Object.defineProperty(exports, "spinnerVariants", {
535
+ Object.defineProperty(exports, "VerticalMarquee", {
544
536
  enumerable: true,
545
- get: function () { return chunkXHRDPJTF_js.spinnerVariants; }
537
+ get: function () { return chunkN3JU7JS7_js.VerticalMarquee; }
546
538
  });
547
539
  Object.defineProperty(exports, "StatCard", {
548
540
  enumerable: true,
@@ -562,7 +554,7 @@ Object.defineProperty(exports, "statusBadgeVariants", {
562
554
  });
563
555
  Object.defineProperty(exports, "StayListRow", {
564
556
  enumerable: true,
565
- get: function () { return chunkJSRYMZCT_js.StayListRow; }
557
+ get: function () { return chunkOTHB7MU7_js.StayListRow; }
566
558
  });
567
559
  Object.defineProperty(exports, "Stepper", {
568
560
  enumerable: true,
@@ -584,22 +576,42 @@ Object.defineProperty(exports, "Tabs", {
584
576
  enumerable: true,
585
577
  get: function () { return chunk762LQMWP_js.Tabs; }
586
578
  });
587
- Object.defineProperty(exports, "SearchLoadingChecklist", {
579
+ Object.defineProperty(exports, "SectionHeader", {
588
580
  enumerable: true,
589
- get: function () { return chunk6KW7ZSKR_js.SearchLoadingChecklist; }
581
+ get: function () { return chunkOGB5LIXN_js.SectionHeader; }
590
582
  });
591
583
  Object.defineProperty(exports, "SearchWidget", {
592
584
  enumerable: true,
593
585
  get: function () { return chunkSEHALSKW_js.SearchWidget; }
594
586
  });
595
- Object.defineProperty(exports, "SectionHeader", {
596
- enumerable: true,
597
- get: function () { return chunkOGB5LIXN_js.SectionHeader; }
598
- });
599
587
  Object.defineProperty(exports, "SegmentedControl", {
600
588
  enumerable: true,
601
589
  get: function () { return chunkQWDKSY6Y_js.SegmentedControl; }
602
590
  });
591
+ Object.defineProperty(exports, "RoomTypeCard", {
592
+ enumerable: true,
593
+ get: function () { return chunkKFQILIZO_js.RoomTypeCard; }
594
+ });
595
+ Object.defineProperty(exports, "RoomTypeCardSkeleton", {
596
+ enumerable: true,
597
+ get: function () { return chunkKFQILIZO_js.RoomTypeCardSkeleton; }
598
+ });
599
+ Object.defineProperty(exports, "Skeleton", {
600
+ enumerable: true,
601
+ get: function () { return chunkNCU5PY34_js.Skeleton; }
602
+ });
603
+ Object.defineProperty(exports, "SkeletonCircle", {
604
+ enumerable: true,
605
+ get: function () { return chunkNCU5PY34_js.SkeletonCircle; }
606
+ });
607
+ Object.defineProperty(exports, "SkeletonImage", {
608
+ enumerable: true,
609
+ get: function () { return chunkNCU5PY34_js.SkeletonImage; }
610
+ });
611
+ Object.defineProperty(exports, "SkeletonText", {
612
+ enumerable: true,
613
+ get: function () { return chunkNCU5PY34_js.SkeletonText; }
614
+ });
603
615
  Object.defineProperty(exports, "Select", {
604
616
  enumerable: true,
605
617
  get: function () { return chunk3R7PT3JG_js.Select; }
@@ -620,13 +632,17 @@ Object.defineProperty(exports, "signInCalloutVariants", {
620
632
  enumerable: true,
621
633
  get: function () { return chunkWXSBKARZ_js.signInCalloutVariants; }
622
634
  });
623
- Object.defineProperty(exports, "Pagination", {
635
+ Object.defineProperty(exports, "Spinner", {
624
636
  enumerable: true,
625
- get: function () { return chunkSCGN5H6D_js.Pagination; }
637
+ get: function () { return chunkXHRDPJTF_js.Spinner; }
626
638
  });
627
- Object.defineProperty(exports, "PriceDisplay", {
639
+ Object.defineProperty(exports, "spinnerVariants", {
628
640
  enumerable: true,
629
- get: function () { return chunkB4LR4H6R_js.PriceDisplay; }
641
+ get: function () { return chunkXHRDPJTF_js.spinnerVariants; }
642
+ });
643
+ Object.defineProperty(exports, "MobileMenu", {
644
+ enumerable: true,
645
+ get: function () { return chunkKZSGVMUG_js.MobileMenu; }
630
646
  });
631
647
  Object.defineProperty(exports, "ProgressBar", {
632
648
  enumerable: true,
@@ -648,45 +664,29 @@ Object.defineProperty(exports, "promoBannerVariants", {
648
664
  enumerable: true,
649
665
  get: function () { return chunkPRDIS2VR_js.promoBannerVariants; }
650
666
  });
651
- Object.defineProperty(exports, "RadioGroup", {
652
- enumerable: true,
653
- get: function () { return chunkGXKON34B_js.RadioGroup; }
654
- });
655
667
  Object.defineProperty(exports, "Rating", {
656
668
  enumerable: true,
657
669
  get: function () { return chunkTZHT7NZU_js.Rating; }
658
670
  });
659
- Object.defineProperty(exports, "RoomTypeCard", {
660
- enumerable: true,
661
- get: function () { return chunkKFQILIZO_js.RoomTypeCard; }
662
- });
663
- Object.defineProperty(exports, "RoomTypeCardSkeleton", {
664
- enumerable: true,
665
- get: function () { return chunkKFQILIZO_js.RoomTypeCardSkeleton; }
666
- });
667
- Object.defineProperty(exports, "Skeleton", {
668
- enumerable: true,
669
- get: function () { return chunkNCU5PY34_js.Skeleton; }
670
- });
671
- Object.defineProperty(exports, "SkeletonCircle", {
672
- enumerable: true,
673
- get: function () { return chunkNCU5PY34_js.SkeletonCircle; }
674
- });
675
- Object.defineProperty(exports, "SkeletonImage", {
671
+ Object.defineProperty(exports, "PriceDisplay", {
676
672
  enumerable: true,
677
- get: function () { return chunkNCU5PY34_js.SkeletonImage; }
673
+ get: function () { return chunkB4LR4H6R_js.PriceDisplay; }
678
674
  });
679
- Object.defineProperty(exports, "SkeletonText", {
675
+ Object.defineProperty(exports, "RadioGroup", {
680
676
  enumerable: true,
681
- get: function () { return chunkNCU5PY34_js.SkeletonText; }
677
+ get: function () { return chunkGXKON34B_js.RadioGroup; }
682
678
  });
683
679
  Object.defineProperty(exports, "SearchBar", {
684
680
  enumerable: true,
685
681
  get: function () { return chunkHS3MAW3G_js.SearchBar; }
686
682
  });
687
- Object.defineProperty(exports, "ImpactCard", {
683
+ Object.defineProperty(exports, "SearchLoadingChecklist", {
688
684
  enumerable: true,
689
- get: function () { return chunkDFC6XK57_js.ImpactCard; }
685
+ get: function () { return chunk6KW7ZSKR_js.SearchLoadingChecklist; }
686
+ });
687
+ Object.defineProperty(exports, "ImageWithFallback", {
688
+ enumerable: true,
689
+ get: function () { return chunkDLOHAW74_js.ImageWithFallback; }
690
690
  });
691
691
  Object.defineProperty(exports, "Input", {
692
692
  enumerable: true,
@@ -712,9 +712,9 @@ Object.defineProperty(exports, "MegaMenu", {
712
712
  enumerable: true,
713
713
  get: function () { return chunkHN6B4TAW_js.MegaMenu; }
714
714
  });
715
- Object.defineProperty(exports, "MobileMenu", {
715
+ Object.defineProperty(exports, "Pagination", {
716
716
  enumerable: true,
717
- get: function () { return chunkKZSGVMUG_js.MobileMenu; }
717
+ get: function () { return chunkSCGN5H6D_js.Pagination; }
718
718
  });
719
719
  Object.defineProperty(exports, "Modal", {
720
720
  enumerable: true,
@@ -736,10 +736,6 @@ Object.defineProperty(exports, "Header", {
736
736
  enumerable: true,
737
737
  get: function () { return chunkIRKM5UF4_js.Header; }
738
738
  });
739
- Object.defineProperty(exports, "HotelCard", {
740
- enumerable: true,
741
- get: function () { return chunkECVKFE6U_js.HotelCard; }
742
- });
743
739
  Object.defineProperty(exports, "IconBadge", {
744
740
  enumerable: true,
745
741
  get: function () { return chunkYN4HPIRC_js.IconBadge; }
@@ -748,17 +744,17 @@ Object.defineProperty(exports, "iconBadgeVariants", {
748
744
  enumerable: true,
749
745
  get: function () { return chunkYN4HPIRC_js.iconBadgeVariants; }
750
746
  });
751
- Object.defineProperty(exports, "ImageGallery", {
747
+ Object.defineProperty(exports, "HotelCard", {
752
748
  enumerable: true,
753
- get: function () { return chunkMKOKWME3_js.ImageGallery; }
749
+ get: function () { return chunkECVKFE6U_js.HotelCard; }
754
750
  });
755
- Object.defineProperty(exports, "ImageWithFallback", {
751
+ Object.defineProperty(exports, "ImageGallery", {
756
752
  enumerable: true,
757
- get: function () { return chunkDLOHAW74_js.ImageWithFallback; }
753
+ get: function () { return chunkMKOKWME3_js.ImageGallery; }
758
754
  });
759
- Object.defineProperty(exports, "DogCard", {
755
+ Object.defineProperty(exports, "ImpactCard", {
760
756
  enumerable: true,
761
- get: function () { return chunkBS7R7VDS_js.DogCard; }
757
+ get: function () { return chunkDFC6XK57_js.ImpactCard; }
762
758
  });
763
759
  Object.defineProperty(exports, "Drawer", {
764
760
  enumerable: true,
@@ -788,17 +784,13 @@ Object.defineProperty(exports, "FilterPill", {
788
784
  enumerable: true,
789
785
  get: function () { return chunkTJDHGNMR_js.FilterPill; }
790
786
  });
791
- Object.defineProperty(exports, "CardList", {
792
- enumerable: true,
793
- get: function () { return chunkMY6BYO5F_js.CardList; }
794
- });
795
787
  Object.defineProperty(exports, "Carousel", {
796
788
  enumerable: true,
797
789
  get: function () { return chunkP7GAKOCX_js.Carousel; }
798
790
  });
799
- Object.defineProperty(exports, "Counter", {
791
+ Object.defineProperty(exports, "CardList", {
800
792
  enumerable: true,
801
- get: function () { return chunkT4AT3YCT_js.Counter; }
793
+ get: function () { return chunkMY6BYO5F_js.CardList; }
802
794
  });
803
795
  Object.defineProperty(exports, "Checkbox", {
804
796
  enumerable: true,
@@ -812,6 +804,10 @@ Object.defineProperty(exports, "DateRangePicker", {
812
804
  enumerable: true,
813
805
  get: function () { return chunkAIA3NHCK_js.DateRangePicker; }
814
806
  });
807
+ Object.defineProperty(exports, "Counter", {
808
+ enumerable: true,
809
+ get: function () { return chunkT4AT3YCT_js.Counter; }
810
+ });
815
811
  Object.defineProperty(exports, "DetailList", {
816
812
  enumerable: true,
817
813
  get: function () { return chunkE24VNM6S_js.DetailList; }
@@ -820,9 +816,9 @@ Object.defineProperty(exports, "Divider", {
820
816
  enumerable: true,
821
817
  get: function () { return chunkXXC2YD3D_js.Divider; }
822
818
  });
823
- Object.defineProperty(exports, "Alert", {
819
+ Object.defineProperty(exports, "DogCard", {
824
820
  enumerable: true,
825
- get: function () { return chunkWBRVUWGC_js.Alert; }
821
+ get: function () { return chunkBS7R7VDS_js.DogCard; }
826
822
  });
827
823
  Object.defineProperty(exports, "Autocomplete", {
828
824
  enumerable: true,
@@ -832,14 +828,6 @@ Object.defineProperty(exports, "autocompleteInputVariants", {
832
828
  enumerable: true,
833
829
  get: function () { return chunkNHB2TI2B_js.autocompleteInputVariants; }
834
830
  });
835
- Object.defineProperty(exports, "Banner", {
836
- enumerable: true,
837
- get: function () { return chunk6EG6EAHW_js.Banner; }
838
- });
839
- Object.defineProperty(exports, "bannerVariants", {
840
- enumerable: true,
841
- get: function () { return chunk6EG6EAHW_js.bannerVariants; }
842
- });
843
831
  Object.defineProperty(exports, "Badge", {
844
832
  enumerable: true,
845
833
  get: function () { return chunkZ5S7LHMY_js.Badge; }
@@ -848,17 +836,21 @@ Object.defineProperty(exports, "badgeVariants", {
848
836
  enumerable: true,
849
837
  get: function () { return chunkZ5S7LHMY_js.badgeVariants; }
850
838
  });
851
- Object.defineProperty(exports, "BottomNavBar", {
839
+ Object.defineProperty(exports, "Banner", {
852
840
  enumerable: true,
853
- get: function () { return chunkPND5YKFN_js.BottomNavBar; }
841
+ get: function () { return chunk6EG6EAHW_js.Banner; }
854
842
  });
855
- Object.defineProperty(exports, "Breadcrumb", {
843
+ Object.defineProperty(exports, "bannerVariants", {
856
844
  enumerable: true,
857
- get: function () { return chunkH3JNRTAI_js.Breadcrumb; }
845
+ get: function () { return chunk6EG6EAHW_js.bannerVariants; }
858
846
  });
859
- Object.defineProperty(exports, "breadcrumbVariants", {
847
+ Object.defineProperty(exports, "Avatar", {
860
848
  enumerable: true,
861
- get: function () { return chunkH3JNRTAI_js.breadcrumbVariants; }
849
+ get: function () { return chunkEY4ZIR3P_js.Avatar; }
850
+ });
851
+ Object.defineProperty(exports, "BottomNavBar", {
852
+ enumerable: true,
853
+ get: function () { return chunkPND5YKFN_js.BottomNavBar; }
862
854
  });
863
855
  Object.defineProperty(exports, "Button", {
864
856
  enumerable: true,
@@ -868,6 +860,14 @@ Object.defineProperty(exports, "buttonVariants", {
868
860
  enumerable: true,
869
861
  get: function () { return chunkYZTVHCLK_js.buttonVariants; }
870
862
  });
863
+ Object.defineProperty(exports, "Breadcrumb", {
864
+ enumerable: true,
865
+ get: function () { return chunkH3JNRTAI_js.Breadcrumb; }
866
+ });
867
+ Object.defineProperty(exports, "breadcrumbVariants", {
868
+ enumerable: true,
869
+ get: function () { return chunkH3JNRTAI_js.breadcrumbVariants; }
870
+ });
871
871
  Object.defineProperty(exports, "Card", {
872
872
  enumerable: true,
873
873
  get: function () { return chunkZAUYE2EI_js.Card; }
@@ -924,9 +924,9 @@ Object.defineProperty(exports, "AnchorTabs", {
924
924
  enumerable: true,
925
925
  get: function () { return chunkWXEZA6NE_js.AnchorTabs; }
926
926
  });
927
- Object.defineProperty(exports, "Avatar", {
927
+ Object.defineProperty(exports, "Alert", {
928
928
  enumerable: true,
929
- get: function () { return chunkEY4ZIR3P_js.Avatar; }
929
+ get: function () { return chunkWBRVUWGC_js.Alert; }
930
930
  });
931
931
  Object.defineProperty(exports, "cn", {
932
932
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,51 +1,51 @@
1
- export { Tag, tagVariants } from './chunk-WOG6V7OW.mjs';
2
1
  export { Textarea, textareaVariants } from './chunk-ZZ4EWC53.mjs';
3
2
  export { Toast, toastVariants } from './chunk-YVTUUNAX.mjs';
4
3
  export { Toggle } from './chunk-2AB5ZHY5.mjs';
5
4
  export { Tooltip } from './chunk-2MJTZ6RR.mjs';
5
+ export { Tag, tagVariants } from './chunk-WOG6V7OW.mjs';
6
6
  export { TripHeroCard } from './chunk-LO2XNMZO.mjs';
7
7
  export { VerticalMarquee } from './chunk-JP5ZR2HI.mjs';
8
- export { Spinner, spinnerVariants } from './chunk-NCSFXSOZ.mjs';
9
8
  export { StatCard } from './chunk-O2W7NR33.mjs';
10
9
  export { StatTile } from './chunk-ZEPXWD6U.mjs';
11
10
  export { StatusBadge, statusBadgeVariants } from './chunk-FZ7UNXSC.mjs';
12
- export { StayListRow } from './chunk-NKD7FXZR.mjs';
11
+ export { StayListRow } from './chunk-IVCQVBOT.mjs';
13
12
  export { Stepper } from './chunk-2ASKBL63.mjs';
14
13
  export { Switch, switchThumbVariants, switchTrackVariants } from './chunk-DMCMWOBJ.mjs';
15
14
  export { Tabs } from './chunk-VOZPGXQD.mjs';
16
- export { SearchLoadingChecklist } from './chunk-SRYZ4N7T.mjs';
17
- export { SearchWidget } from './chunk-DUT3ABEI.mjs';
18
15
  export { SectionHeader } from './chunk-DM76AK4A.mjs';
16
+ export { SearchWidget } from './chunk-DUT3ABEI.mjs';
19
17
  export { SegmentedControl } from './chunk-36Y7UU32.mjs';
18
+ export { RoomTypeCard, RoomTypeCardSkeleton } from './chunk-IGBEBAPY.mjs';
19
+ export { Skeleton, SkeletonCircle, SkeletonImage, SkeletonText } from './chunk-PAHSQMXV.mjs';
20
20
  export { Select, selectVariants } from './chunk-333YD5QI.mjs';
21
21
  export { Sidebar } from './chunk-MPL35D5G.mjs';
22
22
  export { SignInCallout, signInCalloutVariants } from './chunk-Z3KRMKHP.mjs';
23
- export { Pagination } from './chunk-XQVODPHL.mjs';
24
- export { PriceDisplay } from './chunk-REXLQTNE.mjs';
23
+ export { Spinner, spinnerVariants } from './chunk-NCSFXSOZ.mjs';
24
+ export { MobileMenu } from './chunk-R4DC7XPP.mjs';
25
25
  export { ProgressBar, progressBarVariants, progressFillVariants } from './chunk-UGYMWWKT.mjs';
26
26
  export { PromoBanner, promoBannerVariants } from './chunk-FNDR3WOZ.mjs';
27
- export { RadioGroup } from './chunk-F2BUMJYW.mjs';
28
27
  export { Rating } from './chunk-SGDC4IVX.mjs';
29
- export { RoomTypeCard, RoomTypeCardSkeleton } from './chunk-IGBEBAPY.mjs';
30
- export { Skeleton, SkeletonCircle, SkeletonImage, SkeletonText } from './chunk-PAHSQMXV.mjs';
28
+ export { PriceDisplay } from './chunk-REXLQTNE.mjs';
29
+ export { RadioGroup } from './chunk-F2BUMJYW.mjs';
31
30
  export { SearchBar } from './chunk-KQK7LFWM.mjs';
32
- export { ImpactCard } from './chunk-IKQYFSBW.mjs';
31
+ export { SearchLoadingChecklist } from './chunk-SRYZ4N7T.mjs';
32
+ export { ImageWithFallback } from './chunk-BUXVK2HE.mjs';
33
33
  export { Input, inputVariants } from './chunk-GRG4USTC.mjs';
34
34
  export { Lightbox } from './chunk-GBWVIY3C.mjs';
35
35
  export { LinkCard } from './chunk-UYDZKAGZ.mjs';
36
36
  export { LoadingOverlay } from './chunk-WVEJS2J2.mjs';
37
37
  export { MegaMenu } from './chunk-EUEM2D5M.mjs';
38
- export { MobileMenu } from './chunk-R4DC7XPP.mjs';
38
+ export { Pagination } from './chunk-XQVODPHL.mjs';
39
39
  export { Modal } from './chunk-74B2EGKT.mjs';
40
40
  export { FloatingDock } from './chunk-P2SGBTKS.mjs';
41
41
  export { Footer } from './chunk-SZ3SV4SJ.mjs';
42
42
  export { GuestPicker } from './chunk-EJ7LDW7E.mjs';
43
43
  export { Header } from './chunk-PPDKQ3FF.mjs';
44
- export { HotelCard } from './chunk-XSSRFA5O.mjs';
45
44
  export { IconBadge, iconBadgeVariants } from './chunk-I4WCNTNP.mjs';
45
+ export { HotelCard } from './chunk-XSSRFA5O.mjs';
46
46
  export { ImageGallery } from './chunk-QU6ZRLKO.mjs';
47
- export { ImageWithFallback } from './chunk-BUXVK2HE.mjs';
48
- export { DogCard } from './chunk-4A3AQ66D.mjs';
47
+ export { ImpactCard } from './chunk-IKQYFSBW.mjs';
48
+ import './chunk-OZULAGYL.mjs';
49
49
  export { Drawer } from './chunk-ZLF7IL3Y.mjs';
50
50
  export { DropdownMenu } from './chunk-Q7BKR6O7.mjs';
51
51
  export { DualRangeSlider } from './chunk-ERL3WXNY.mjs';
@@ -53,27 +53,27 @@ export { EmptyState } from './chunk-OCUHCDAQ.mjs';
53
53
  export { ErrorBoundary } from './chunk-5257MWFI.mjs';
54
54
  export { FilterAccordion } from './chunk-VQVRKRSM.mjs';
55
55
  export { FilterPill } from './chunk-YKBASX5A.mjs';
56
- export { CardList } from './chunk-RJWHPHHX.mjs';
57
56
  export { Carousel } from './chunk-OOPP4ES2.mjs';
58
- export { Counter } from './chunk-LRNSVRUN.mjs';
57
+ export { CardList } from './chunk-RJWHPHHX.mjs';
59
58
  export { Checkbox } from './chunk-EEIPCJQ2.mjs';
60
59
  export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
60
+ export { Counter } from './chunk-LRNSVRUN.mjs';
61
61
  export { DetailList } from './chunk-N6THLJIG.mjs';
62
62
  export { Divider } from './chunk-E4B6LXK7.mjs';
63
- import './chunk-OZULAGYL.mjs';
64
- export { Alert } from './chunk-BQWVWK74.mjs';
63
+ export { DogCard } from './chunk-4A3AQ66D.mjs';
65
64
  export { Autocomplete, autocompleteInputVariants } from './chunk-B47HQHX3.mjs';
66
- export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
67
65
  export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
66
+ export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
67
+ export { Avatar } from './chunk-2POGTS27.mjs';
68
68
  export { BottomNavBar } from './chunk-UQRQZLMQ.mjs';
69
- export { Breadcrumb, breadcrumbVariants } from './chunk-UKCH6RYL.mjs';
70
69
  export { Button, buttonVariants } from './chunk-4U5MNA3B.mjs';
70
+ export { Breadcrumb, breadcrumbVariants } from './chunk-UKCH6RYL.mjs';
71
71
  export { Card, CardContent, CardDescription, CardImage, CardTitle, cardImageVariants, cardVariants } from './chunk-V5J2XLPD.mjs';
72
72
  export { Accordion } from './chunk-NZ7GF6RF.mjs';
73
73
  export { ActiveStayCard } from './chunk-CRQ4XOCC.mjs';
74
74
  export { DOG_AVATAR_COLORS, DogAvatar, DogAvatarStack, dogAvatarColor } from './chunk-AGNY5DBW.mjs';
75
75
  export { AnchorTabs } from './chunk-M2H6QUAL.mjs';
76
- export { Avatar } from './chunk-2POGTS27.mjs';
76
+ export { Alert } from './chunk-BQWVWK74.mjs';
77
77
  import { cn } from './chunk-IMKLN273.mjs';
78
78
  export { cn } from './chunk-IMKLN273.mjs';
79
79
  import * as React from 'react';
@@ -408,7 +408,7 @@ function ReviewSummary({
408
408
  "Avis v\xE9rifi\xE9"
409
409
  ] }) : null,
410
410
  review.translatedFrom ? /* @__PURE__ */ jsxs("span", { className: "text-xs italic text-text-muted", children: [
411
- "Traduit de ",
411
+ "Traduit ",
412
412
  review.translatedFrom
413
413
  ] }) : null
414
414
  ] })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dododog/ui",
3
- "version": "0.12.0",
3
+ "version": "0.13.1",
4
4
  "description": "React UI component library for DodoDog — pet-friendly travel platform",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",