@dododog/ui 0.12.0 → 0.13.0

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.js CHANGED
@@ -4,27 +4,27 @@ var chunk7IJOHVNJ_js = require('./chunk-7IJOHVNJ.js');
4
4
  var chunkL7OYR6U3_js = require('./chunk-L7OYR6U3.js');
5
5
  var chunkVTELEOT7_js = require('./chunk-VTELEOT7.js');
6
6
  var chunkDTIYZ3TQ_js = require('./chunk-DTIYZ3TQ.js');
7
- var chunkE6ZNND75_js = require('./chunk-E6ZNND75.js');
8
7
  var chunkBXFU7V2X_js = require('./chunk-BXFU7V2X.js');
8
+ var chunkE6ZNND75_js = require('./chunk-E6ZNND75.js');
9
9
  var chunkN3JU7JS7_js = require('./chunk-N3JU7JS7.js');
10
10
  var chunkXHRDPJTF_js = require('./chunk-XHRDPJTF.js');
11
11
  var chunkTT7L3ZU7_js = require('./chunk-TT7L3ZU7.js');
12
12
  var chunkCWXP2ZI2_js = require('./chunk-CWXP2ZI2.js');
13
13
  var chunkDFXXGKMI_js = require('./chunk-DFXXGKMI.js');
14
- var chunkJSRYMZCT_js = require('./chunk-JSRYMZCT.js');
14
+ var chunkOTHB7MU7_js = require('./chunk-OTHB7MU7.js');
15
15
  var chunk3VU6TPAT_js = require('./chunk-3VU6TPAT.js');
16
16
  var chunkI4S3R6C6_js = require('./chunk-I4S3R6C6.js');
17
17
  var chunk762LQMWP_js = require('./chunk-762LQMWP.js');
18
- var chunk6KW7ZSKR_js = require('./chunk-6KW7ZSKR.js');
19
18
  var chunkSEHALSKW_js = require('./chunk-SEHALSKW.js');
19
+ var chunk6KW7ZSKR_js = require('./chunk-6KW7ZSKR.js');
20
20
  var chunkOGB5LIXN_js = require('./chunk-OGB5LIXN.js');
21
21
  var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.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
25
  var chunkB4LR4H6R_js = require('./chunk-B4LR4H6R.js');
27
26
  var chunkPG4I4NWO_js = require('./chunk-PG4I4NWO.js');
27
+ var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
28
28
  var chunkPRDIS2VR_js = require('./chunk-PRDIS2VR.js');
29
29
  var chunkGXKON34B_js = require('./chunk-GXKON34B.js');
30
30
  var chunkTZHT7NZU_js = require('./chunk-TZHT7NZU.js');
@@ -34,11 +34,11 @@ var chunkHS3MAW3G_js = require('./chunk-HS3MAW3G.js');
34
34
  var chunkDFC6XK57_js = require('./chunk-DFC6XK57.js');
35
35
  var chunk77WKG2D7_js = require('./chunk-77WKG2D7.js');
36
36
  var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
37
- var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
38
37
  var chunkTE4WHZ4Q_js = require('./chunk-TE4WHZ4Q.js');
39
38
  var chunkHN6B4TAW_js = require('./chunk-HN6B4TAW.js');
40
39
  var chunkKZSGVMUG_js = require('./chunk-KZSGVMUG.js');
41
40
  var chunkNBDPT3XQ_js = require('./chunk-NBDPT3XQ.js');
41
+ var chunkSCGN5H6D_js = require('./chunk-SCGN5H6D.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');
@@ -56,18 +56,18 @@ 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
58
  var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
59
- var chunkP7GAKOCX_js = require('./chunk-P7GAKOCX.js');
60
59
  var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
61
60
  var chunkIJIUUBFT_js = require('./chunk-IJIUUBFT.js');
61
+ var chunkP7GAKOCX_js = require('./chunk-P7GAKOCX.js');
62
62
  var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
63
63
  var chunkE24VNM6S_js = require('./chunk-E24VNM6S.js');
64
- var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
65
64
  require('./chunk-VNURXHKK.js');
65
+ var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
66
+ var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
66
67
  var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
67
68
  var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
68
- var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
69
- var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
70
69
  var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
70
+ var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
71
71
  var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
72
72
  var chunkYZTVHCLK_js = require('./chunk-YZTVHCLK.js');
73
73
  var chunkZAUYE2EI_js = require('./chunk-ZAUYE2EI.js');
@@ -524,14 +524,14 @@ Object.defineProperty(exports, "Toggle", {
524
524
  enumerable: true,
525
525
  get: function () { return chunkDTIYZ3TQ_js.Toggle; }
526
526
  });
527
- Object.defineProperty(exports, "Tooltip", {
528
- enumerable: true,
529
- get: function () { return chunkE6ZNND75_js.Tooltip; }
530
- });
531
527
  Object.defineProperty(exports, "TripHeroCard", {
532
528
  enumerable: true,
533
529
  get: function () { return chunkBXFU7V2X_js.TripHeroCard; }
534
530
  });
531
+ Object.defineProperty(exports, "Tooltip", {
532
+ enumerable: true,
533
+ get: function () { return chunkE6ZNND75_js.Tooltip; }
534
+ });
535
535
  Object.defineProperty(exports, "VerticalMarquee", {
536
536
  enumerable: true,
537
537
  get: function () { return chunkN3JU7JS7_js.VerticalMarquee; }
@@ -562,7 +562,7 @@ Object.defineProperty(exports, "statusBadgeVariants", {
562
562
  });
563
563
  Object.defineProperty(exports, "StayListRow", {
564
564
  enumerable: true,
565
- get: function () { return chunkJSRYMZCT_js.StayListRow; }
565
+ get: function () { return chunkOTHB7MU7_js.StayListRow; }
566
566
  });
567
567
  Object.defineProperty(exports, "Stepper", {
568
568
  enumerable: true,
@@ -584,14 +584,14 @@ Object.defineProperty(exports, "Tabs", {
584
584
  enumerable: true,
585
585
  get: function () { return chunk762LQMWP_js.Tabs; }
586
586
  });
587
- Object.defineProperty(exports, "SearchLoadingChecklist", {
588
- enumerable: true,
589
- get: function () { return chunk6KW7ZSKR_js.SearchLoadingChecklist; }
590
- });
591
587
  Object.defineProperty(exports, "SearchWidget", {
592
588
  enumerable: true,
593
589
  get: function () { return chunkSEHALSKW_js.SearchWidget; }
594
590
  });
591
+ Object.defineProperty(exports, "SearchLoadingChecklist", {
592
+ enumerable: true,
593
+ get: function () { return chunk6KW7ZSKR_js.SearchLoadingChecklist; }
594
+ });
595
595
  Object.defineProperty(exports, "SectionHeader", {
596
596
  enumerable: true,
597
597
  get: function () { return chunkOGB5LIXN_js.SectionHeader; }
@@ -620,10 +620,6 @@ Object.defineProperty(exports, "signInCalloutVariants", {
620
620
  enumerable: true,
621
621
  get: function () { return chunkWXSBKARZ_js.signInCalloutVariants; }
622
622
  });
623
- Object.defineProperty(exports, "Pagination", {
624
- enumerable: true,
625
- get: function () { return chunkSCGN5H6D_js.Pagination; }
626
- });
627
623
  Object.defineProperty(exports, "PriceDisplay", {
628
624
  enumerable: true,
629
625
  get: function () { return chunkB4LR4H6R_js.PriceDisplay; }
@@ -640,6 +636,10 @@ Object.defineProperty(exports, "progressFillVariants", {
640
636
  enumerable: true,
641
637
  get: function () { return chunkPG4I4NWO_js.progressFillVariants; }
642
638
  });
639
+ Object.defineProperty(exports, "LinkCard", {
640
+ enumerable: true,
641
+ get: function () { return chunkW7DZZS6L_js.LinkCard; }
642
+ });
643
643
  Object.defineProperty(exports, "PromoBanner", {
644
644
  enumerable: true,
645
645
  get: function () { return chunkPRDIS2VR_js.PromoBanner; }
@@ -700,10 +700,6 @@ Object.defineProperty(exports, "Lightbox", {
700
700
  enumerable: true,
701
701
  get: function () { return chunkU3XWNFHH_js.Lightbox; }
702
702
  });
703
- Object.defineProperty(exports, "LinkCard", {
704
- enumerable: true,
705
- get: function () { return chunkW7DZZS6L_js.LinkCard; }
706
- });
707
703
  Object.defineProperty(exports, "LoadingOverlay", {
708
704
  enumerable: true,
709
705
  get: function () { return chunkTE4WHZ4Q_js.LoadingOverlay; }
@@ -720,6 +716,10 @@ Object.defineProperty(exports, "Modal", {
720
716
  enumerable: true,
721
717
  get: function () { return chunkNBDPT3XQ_js.Modal; }
722
718
  });
719
+ Object.defineProperty(exports, "Pagination", {
720
+ enumerable: true,
721
+ get: function () { return chunkSCGN5H6D_js.Pagination; }
722
+ });
723
723
  Object.defineProperty(exports, "FloatingDock", {
724
724
  enumerable: true,
725
725
  get: function () { return chunkZCQJN4IT_js.FloatingDock; }
@@ -792,10 +792,6 @@ Object.defineProperty(exports, "CardList", {
792
792
  enumerable: true,
793
793
  get: function () { return chunkMY6BYO5F_js.CardList; }
794
794
  });
795
- Object.defineProperty(exports, "Carousel", {
796
- enumerable: true,
797
- get: function () { return chunkP7GAKOCX_js.Carousel; }
798
- });
799
795
  Object.defineProperty(exports, "Counter", {
800
796
  enumerable: true,
801
797
  get: function () { return chunkT4AT3YCT_js.Counter; }
@@ -804,6 +800,10 @@ Object.defineProperty(exports, "Checkbox", {
804
800
  enumerable: true,
805
801
  get: function () { return chunkIJIUUBFT_js.Checkbox; }
806
802
  });
803
+ Object.defineProperty(exports, "Carousel", {
804
+ enumerable: true,
805
+ get: function () { return chunkP7GAKOCX_js.Carousel; }
806
+ });
807
807
  Object.defineProperty(exports, "DatePickerInput", {
808
808
  enumerable: true,
809
809
  get: function () { return chunkAIA3NHCK_js.DatePickerInput; }
@@ -820,6 +820,14 @@ Object.defineProperty(exports, "Divider", {
820
820
  enumerable: true,
821
821
  get: function () { return chunkXXC2YD3D_js.Divider; }
822
822
  });
823
+ Object.defineProperty(exports, "Banner", {
824
+ enumerable: true,
825
+ get: function () { return chunk6EG6EAHW_js.Banner; }
826
+ });
827
+ Object.defineProperty(exports, "bannerVariants", {
828
+ enumerable: true,
829
+ get: function () { return chunk6EG6EAHW_js.bannerVariants; }
830
+ });
823
831
  Object.defineProperty(exports, "Alert", {
824
832
  enumerable: true,
825
833
  get: function () { return chunkWBRVUWGC_js.Alert; }
@@ -832,13 +840,9 @@ Object.defineProperty(exports, "autocompleteInputVariants", {
832
840
  enumerable: true,
833
841
  get: function () { return chunkNHB2TI2B_js.autocompleteInputVariants; }
834
842
  });
835
- Object.defineProperty(exports, "Banner", {
836
- enumerable: true,
837
- get: function () { return chunk6EG6EAHW_js.Banner; }
838
- });
839
- Object.defineProperty(exports, "bannerVariants", {
843
+ Object.defineProperty(exports, "BottomNavBar", {
840
844
  enumerable: true,
841
- get: function () { return chunk6EG6EAHW_js.bannerVariants; }
845
+ get: function () { return chunkPND5YKFN_js.BottomNavBar; }
842
846
  });
843
847
  Object.defineProperty(exports, "Badge", {
844
848
  enumerable: true,
@@ -848,10 +852,6 @@ Object.defineProperty(exports, "badgeVariants", {
848
852
  enumerable: true,
849
853
  get: function () { return chunkZ5S7LHMY_js.badgeVariants; }
850
854
  });
851
- Object.defineProperty(exports, "BottomNavBar", {
852
- enumerable: true,
853
- get: function () { return chunkPND5YKFN_js.BottomNavBar; }
854
- });
855
855
  Object.defineProperty(exports, "Breadcrumb", {
856
856
  enumerable: true,
857
857
  get: function () { return chunkH3JNRTAI_js.Breadcrumb; }
package/dist/index.mjs CHANGED
@@ -2,27 +2,27 @@ export { Tag, tagVariants } from './chunk-WOG6V7OW.mjs';
2
2
  export { Textarea, textareaVariants } from './chunk-ZZ4EWC53.mjs';
3
3
  export { Toast, toastVariants } from './chunk-YVTUUNAX.mjs';
4
4
  export { Toggle } from './chunk-2AB5ZHY5.mjs';
5
- export { Tooltip } from './chunk-2MJTZ6RR.mjs';
6
5
  export { TripHeroCard } from './chunk-LO2XNMZO.mjs';
6
+ export { Tooltip } from './chunk-2MJTZ6RR.mjs';
7
7
  export { VerticalMarquee } from './chunk-JP5ZR2HI.mjs';
8
8
  export { Spinner, spinnerVariants } from './chunk-NCSFXSOZ.mjs';
9
9
  export { StatCard } from './chunk-O2W7NR33.mjs';
10
10
  export { StatTile } from './chunk-ZEPXWD6U.mjs';
11
11
  export { StatusBadge, statusBadgeVariants } from './chunk-FZ7UNXSC.mjs';
12
- export { StayListRow } from './chunk-NKD7FXZR.mjs';
12
+ export { StayListRow } from './chunk-IVCQVBOT.mjs';
13
13
  export { Stepper } from './chunk-2ASKBL63.mjs';
14
14
  export { Switch, switchThumbVariants, switchTrackVariants } from './chunk-DMCMWOBJ.mjs';
15
15
  export { Tabs } from './chunk-VOZPGXQD.mjs';
16
- export { SearchLoadingChecklist } from './chunk-SRYZ4N7T.mjs';
17
16
  export { SearchWidget } from './chunk-DUT3ABEI.mjs';
17
+ export { SearchLoadingChecklist } from './chunk-SRYZ4N7T.mjs';
18
18
  export { SectionHeader } from './chunk-DM76AK4A.mjs';
19
19
  export { SegmentedControl } from './chunk-36Y7UU32.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
23
  export { PriceDisplay } from './chunk-REXLQTNE.mjs';
25
24
  export { ProgressBar, progressBarVariants, progressFillVariants } from './chunk-UGYMWWKT.mjs';
25
+ export { LinkCard } from './chunk-UYDZKAGZ.mjs';
26
26
  export { PromoBanner, promoBannerVariants } from './chunk-FNDR3WOZ.mjs';
27
27
  export { RadioGroup } from './chunk-F2BUMJYW.mjs';
28
28
  export { Rating } from './chunk-SGDC4IVX.mjs';
@@ -32,11 +32,11 @@ export { SearchBar } from './chunk-KQK7LFWM.mjs';
32
32
  export { ImpactCard } from './chunk-IKQYFSBW.mjs';
33
33
  export { Input, inputVariants } from './chunk-GRG4USTC.mjs';
34
34
  export { Lightbox } from './chunk-GBWVIY3C.mjs';
35
- export { LinkCard } from './chunk-UYDZKAGZ.mjs';
36
35
  export { LoadingOverlay } from './chunk-WVEJS2J2.mjs';
37
36
  export { MegaMenu } from './chunk-EUEM2D5M.mjs';
38
37
  export { MobileMenu } from './chunk-R4DC7XPP.mjs';
39
38
  export { Modal } from './chunk-74B2EGKT.mjs';
39
+ export { Pagination } from './chunk-XQVODPHL.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';
@@ -54,18 +54,18 @@ export { ErrorBoundary } from './chunk-5257MWFI.mjs';
54
54
  export { FilterAccordion } from './chunk-VQVRKRSM.mjs';
55
55
  export { FilterPill } from './chunk-YKBASX5A.mjs';
56
56
  export { CardList } from './chunk-RJWHPHHX.mjs';
57
- export { Carousel } from './chunk-OOPP4ES2.mjs';
58
57
  export { Counter } from './chunk-LRNSVRUN.mjs';
59
58
  export { Checkbox } from './chunk-EEIPCJQ2.mjs';
59
+ export { Carousel } from './chunk-OOPP4ES2.mjs';
60
60
  export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
61
61
  export { DetailList } from './chunk-N6THLJIG.mjs';
62
- export { Divider } from './chunk-E4B6LXK7.mjs';
63
62
  import './chunk-OZULAGYL.mjs';
63
+ export { Divider } from './chunk-E4B6LXK7.mjs';
64
+ export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
64
65
  export { Alert } from './chunk-BQWVWK74.mjs';
65
66
  export { Autocomplete, autocompleteInputVariants } from './chunk-B47HQHX3.mjs';
66
- export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
67
- export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
68
67
  export { BottomNavBar } from './chunk-UQRQZLMQ.mjs';
68
+ export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
69
69
  export { Breadcrumb, breadcrumbVariants } from './chunk-UKCH6RYL.mjs';
70
70
  export { Button, buttonVariants } from './chunk-4U5MNA3B.mjs';
71
71
  export { Card, CardContent, CardDescription, CardImage, CardTitle, cardImageVariants, cardVariants } from './chunk-V5J2XLPD.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dododog/ui",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "React UI component library for DodoDog — pet-friendly travel platform",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",