@dododog/ui 0.10.1 → 0.12.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.
Files changed (55) hide show
  1. package/dist/chunk-AGNY5DBW.mjs +116 -0
  2. package/dist/chunk-BXFU7V2X.js +156 -0
  3. package/dist/chunk-CRQ4XOCC.mjs +107 -0
  4. package/dist/chunk-CWXP2ZI2.js +79 -0
  5. package/dist/chunk-DFC6XK57.js +55 -0
  6. package/dist/chunk-DM76AK4A.mjs +67 -0
  7. package/dist/chunk-DUT3ABEI.mjs +108 -0
  8. package/dist/chunk-G3LZ32WA.js +129 -0
  9. package/dist/chunk-HB2XJOBZ.js +141 -0
  10. package/dist/chunk-IKQYFSBW.mjs +33 -0
  11. package/dist/chunk-JSRYMZCT.js +99 -0
  12. package/dist/chunk-LO2XNMZO.mjs +134 -0
  13. package/dist/chunk-NKD7FXZR.mjs +77 -0
  14. package/dist/chunk-OGB5LIXN.js +89 -0
  15. package/dist/chunk-OZULAGYL.mjs +1 -0
  16. package/dist/chunk-SEHALSKW.js +130 -0
  17. package/dist/chunk-VNURXHKK.js +2 -0
  18. package/dist/chunk-ZEPXWD6U.mjs +57 -0
  19. package/dist/components/ActiveStayCard/index.d.mts +36 -0
  20. package/dist/components/ActiveStayCard/index.d.ts +36 -0
  21. package/dist/components/ActiveStayCard/index.js +12 -0
  22. package/dist/components/ActiveStayCard/index.mjs +3 -0
  23. package/dist/components/DogAvatar/index.d.mts +37 -0
  24. package/dist/components/DogAvatar/index.d.ts +37 -0
  25. package/dist/components/DogAvatar/index.js +24 -0
  26. package/dist/components/DogAvatar/index.mjs +3 -0
  27. package/dist/components/ImpactCard/index.d.mts +12 -0
  28. package/dist/components/ImpactCard/index.d.ts +12 -0
  29. package/dist/components/ImpactCard/index.js +11 -0
  30. package/dist/components/ImpactCard/index.mjs +2 -0
  31. package/dist/components/SearchWidget/index.d.mts +20 -0
  32. package/dist/components/SearchWidget/index.d.ts +20 -0
  33. package/dist/components/SearchWidget/index.js +11 -0
  34. package/dist/components/SearchWidget/index.mjs +2 -0
  35. package/dist/components/SectionHeader/index.d.mts +30 -0
  36. package/dist/components/SectionHeader/index.d.ts +30 -0
  37. package/dist/components/SectionHeader/index.js +11 -0
  38. package/dist/components/SectionHeader/index.mjs +2 -0
  39. package/dist/components/StatTile/index.d.mts +28 -0
  40. package/dist/components/StatTile/index.d.ts +28 -0
  41. package/dist/components/StatTile/index.js +11 -0
  42. package/dist/components/StatTile/index.mjs +2 -0
  43. package/dist/components/StayListRow/index.d.mts +31 -0
  44. package/dist/components/StayListRow/index.d.ts +31 -0
  45. package/dist/components/StayListRow/index.js +12 -0
  46. package/dist/components/StayListRow/index.mjs +3 -0
  47. package/dist/components/TripHeroCard/index.d.mts +38 -0
  48. package/dist/components/TripHeroCard/index.d.ts +38 -0
  49. package/dist/components/TripHeroCard/index.js +11 -0
  50. package/dist/components/TripHeroCard/index.mjs +2 -0
  51. package/dist/index.d.mts +9 -1
  52. package/dist/index.d.ts +9 -1
  53. package/dist/index.js +206 -153
  54. package/dist/index.mjs +40 -31
  55. package/package.json +41 -1
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ var chunkSEHALSKW_js = require('../../chunk-SEHALSKW.js');
4
+ require('../../chunk-ADIDI7AJ.js');
5
+
6
+
7
+
8
+ Object.defineProperty(exports, "SearchWidget", {
9
+ enumerable: true,
10
+ get: function () { return chunkSEHALSKW_js.SearchWidget; }
11
+ });
@@ -0,0 +1,2 @@
1
+ export { SearchWidget } from '../../chunk-DUT3ABEI.mjs';
2
+ import '../../chunk-IMKLN273.mjs';
@@ -0,0 +1,30 @@
1
+ import * as React from 'react';
2
+
3
+ interface SectionHeaderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
4
+ /** Titre de la section. */
5
+ title: React.ReactNode;
6
+ /** Sous-titre optionnel affiché sous le titre. */
7
+ subtitle?: React.ReactNode;
8
+ /** Icône décorative optionnelle rendue avant le titre. */
9
+ icon?: React.ReactNode;
10
+ /** Libellé du lien d'action (ex : "Voir tout"). */
11
+ actionLabel?: string;
12
+ /** Cible du lien d'action. */
13
+ actionHref?: string;
14
+ /** Render personnalisé du lien (ex : next/link). */
15
+ renderLink?: (props: {
16
+ href: string;
17
+ className: string;
18
+ children: React.ReactNode;
19
+ }) => React.ReactNode;
20
+ /** Niveau de titre sémantique (défaut : h2). */
21
+ as?: "h2" | "h3";
22
+ }
23
+ /**
24
+ * En-tête de section standard : titre (+ sous-titre / icône) à gauche,
25
+ * lien « Voir tout » optionnel à droite. Aligne toutes les sections du
26
+ * dashboard sur le même rythme visuel.
27
+ */
28
+ declare const SectionHeader: React.ForwardRefExoticComponent<SectionHeaderProps & React.RefAttributes<HTMLDivElement>>;
29
+
30
+ export { SectionHeader, type SectionHeaderProps };
@@ -0,0 +1,30 @@
1
+ import * as React from 'react';
2
+
3
+ interface SectionHeaderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
4
+ /** Titre de la section. */
5
+ title: React.ReactNode;
6
+ /** Sous-titre optionnel affiché sous le titre. */
7
+ subtitle?: React.ReactNode;
8
+ /** Icône décorative optionnelle rendue avant le titre. */
9
+ icon?: React.ReactNode;
10
+ /** Libellé du lien d'action (ex : "Voir tout"). */
11
+ actionLabel?: string;
12
+ /** Cible du lien d'action. */
13
+ actionHref?: string;
14
+ /** Render personnalisé du lien (ex : next/link). */
15
+ renderLink?: (props: {
16
+ href: string;
17
+ className: string;
18
+ children: React.ReactNode;
19
+ }) => React.ReactNode;
20
+ /** Niveau de titre sémantique (défaut : h2). */
21
+ as?: "h2" | "h3";
22
+ }
23
+ /**
24
+ * En-tête de section standard : titre (+ sous-titre / icône) à gauche,
25
+ * lien « Voir tout » optionnel à droite. Aligne toutes les sections du
26
+ * dashboard sur le même rythme visuel.
27
+ */
28
+ declare const SectionHeader: React.ForwardRefExoticComponent<SectionHeaderProps & React.RefAttributes<HTMLDivElement>>;
29
+
30
+ export { SectionHeader, type SectionHeaderProps };
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ var chunkOGB5LIXN_js = require('../../chunk-OGB5LIXN.js');
4
+ require('../../chunk-ADIDI7AJ.js');
5
+
6
+
7
+
8
+ Object.defineProperty(exports, "SectionHeader", {
9
+ enumerable: true,
10
+ get: function () { return chunkOGB5LIXN_js.SectionHeader; }
11
+ });
@@ -0,0 +1,2 @@
1
+ export { SectionHeader } from '../../chunk-DM76AK4A.mjs';
2
+ import '../../chunk-IMKLN273.mjs';
@@ -0,0 +1,28 @@
1
+ import * as React from 'react';
2
+
3
+ interface StatTileProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
4
+ /** Libellé de la tuile (ex : "Réservations à venir"). */
5
+ label: string;
6
+ /** Valeur mise en avant (ex : "3", "80 %"). */
7
+ value: React.ReactNode;
8
+ /** Icône (ReactNode, ex : lucide) rendue dans la pastille. */
9
+ icon: React.ReactNode;
10
+ /** Cible du lien — rend toute la tuile cliquable. */
11
+ href?: string;
12
+ /** Texte d'aide secondaire sous la valeur. */
13
+ hint?: string;
14
+ /** Render personnalisé du lien (ex : next/link). */
15
+ renderLink?: (props: {
16
+ href: string;
17
+ className: string;
18
+ "aria-label"?: string;
19
+ children: React.ReactNode;
20
+ }) => React.ReactNode;
21
+ }
22
+ /**
23
+ * Tuile compacte « at-a-glance » du dashboard : pastille d'icône, valeur
24
+ * proéminente, libellé. Toute la tuile est cliquable si `href` est fourni.
25
+ */
26
+ declare const StatTile: React.ForwardRefExoticComponent<StatTileProps & React.RefAttributes<HTMLDivElement>>;
27
+
28
+ export { StatTile, type StatTileProps };
@@ -0,0 +1,28 @@
1
+ import * as React from 'react';
2
+
3
+ interface StatTileProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
4
+ /** Libellé de la tuile (ex : "Réservations à venir"). */
5
+ label: string;
6
+ /** Valeur mise en avant (ex : "3", "80 %"). */
7
+ value: React.ReactNode;
8
+ /** Icône (ReactNode, ex : lucide) rendue dans la pastille. */
9
+ icon: React.ReactNode;
10
+ /** Cible du lien — rend toute la tuile cliquable. */
11
+ href?: string;
12
+ /** Texte d'aide secondaire sous la valeur. */
13
+ hint?: string;
14
+ /** Render personnalisé du lien (ex : next/link). */
15
+ renderLink?: (props: {
16
+ href: string;
17
+ className: string;
18
+ "aria-label"?: string;
19
+ children: React.ReactNode;
20
+ }) => React.ReactNode;
21
+ }
22
+ /**
23
+ * Tuile compacte « at-a-glance » du dashboard : pastille d'icône, valeur
24
+ * proéminente, libellé. Toute la tuile est cliquable si `href` est fourni.
25
+ */
26
+ declare const StatTile: React.ForwardRefExoticComponent<StatTileProps & React.RefAttributes<HTMLDivElement>>;
27
+
28
+ export { StatTile, type StatTileProps };
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ var chunkCWXP2ZI2_js = require('../../chunk-CWXP2ZI2.js');
4
+ require('../../chunk-ADIDI7AJ.js');
5
+
6
+
7
+
8
+ Object.defineProperty(exports, "StatTile", {
9
+ enumerable: true,
10
+ get: function () { return chunkCWXP2ZI2_js.StatTile; }
11
+ });
@@ -0,0 +1,2 @@
1
+ export { StatTile } from '../../chunk-ZEPXWD6U.mjs';
2
+ import '../../chunk-IMKLN273.mjs';
@@ -0,0 +1,31 @@
1
+ import * as React from 'react';
2
+ import { DogAvatarStackDog } from '../DogAvatar/index.mjs';
3
+
4
+ interface StayListRowProps {
5
+ hotelName: string;
6
+ location?: string | null;
7
+ priceLabel?: string | null;
8
+ nightsLabel?: string | null;
9
+ thumbnailUrl?: string | null;
10
+ /** Dégradé CSS de repli si pas de photo. */
11
+ thumbnailGradient?: string;
12
+ badge?: string | null;
13
+ badgeTone?: "free" | "fee";
14
+ dogs?: DogAvatarStackDog[];
15
+ href?: string;
16
+ className?: string;
17
+ renderImage?: (props: {
18
+ src: string;
19
+ alt: string;
20
+ className: string;
21
+ }) => React.ReactNode;
22
+ renderLink?: (props: {
23
+ href: string;
24
+ className: string;
25
+ "aria-label"?: string;
26
+ children: React.ReactNode;
27
+ }) => React.ReactNode;
28
+ }
29
+ declare const StayListRow: React.ForwardRefExoticComponent<StayListRowProps & React.RefAttributes<HTMLDivElement>>;
30
+
31
+ export { StayListRow, type StayListRowProps };
@@ -0,0 +1,31 @@
1
+ import * as React from 'react';
2
+ import { DogAvatarStackDog } from '../DogAvatar/index.js';
3
+
4
+ interface StayListRowProps {
5
+ hotelName: string;
6
+ location?: string | null;
7
+ priceLabel?: string | null;
8
+ nightsLabel?: string | null;
9
+ thumbnailUrl?: string | null;
10
+ /** Dégradé CSS de repli si pas de photo. */
11
+ thumbnailGradient?: string;
12
+ badge?: string | null;
13
+ badgeTone?: "free" | "fee";
14
+ dogs?: DogAvatarStackDog[];
15
+ href?: string;
16
+ className?: string;
17
+ renderImage?: (props: {
18
+ src: string;
19
+ alt: string;
20
+ className: string;
21
+ }) => React.ReactNode;
22
+ renderLink?: (props: {
23
+ href: string;
24
+ className: string;
25
+ "aria-label"?: string;
26
+ children: React.ReactNode;
27
+ }) => React.ReactNode;
28
+ }
29
+ declare const StayListRow: React.ForwardRefExoticComponent<StayListRowProps & React.RefAttributes<HTMLDivElement>>;
30
+
31
+ export { StayListRow, type StayListRowProps };
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ var chunkJSRYMZCT_js = require('../../chunk-JSRYMZCT.js');
4
+ require('../../chunk-HB2XJOBZ.js');
5
+ require('../../chunk-ADIDI7AJ.js');
6
+
7
+
8
+
9
+ Object.defineProperty(exports, "StayListRow", {
10
+ enumerable: true,
11
+ get: function () { return chunkJSRYMZCT_js.StayListRow; }
12
+ });
@@ -0,0 +1,3 @@
1
+ export { StayListRow } from '../../chunk-NKD7FXZR.mjs';
2
+ import '../../chunk-AGNY5DBW.mjs';
3
+ import '../../chunk-IMKLN273.mjs';
@@ -0,0 +1,38 @@
1
+ import * as React from 'react';
2
+
3
+ type TripStatusTone = "confirmed" | "pending" | "processing";
4
+ interface TripHeroData {
5
+ hotelName: string;
6
+ /** Photo de l'hôtel. Fallback dégradé si absente. */
7
+ hotelImage?: string | null;
8
+ city?: string | null;
9
+ address?: string | null;
10
+ /** Dates déjà formatées (ex : "12 juil."). */
11
+ checkinLabel: string;
12
+ checkoutLabel: string;
13
+ nights: number;
14
+ /** Compte à rebours déjà formaté (ex : "Dans 5 jours", "Aujourd'hui"). */
15
+ countdownLabel: string;
16
+ /** Met le compte à rebours en avant (séjour proche). */
17
+ isSoon?: boolean;
18
+ /** Libellé du statut (ex : "Confirmée"). */
19
+ statusLabel?: string | null;
20
+ statusTone?: TripStatusTone;
21
+ /** Prix total déjà formaté (ex : "1 234,00 €"). */
22
+ priceLabel?: string | null;
23
+ dogName?: string | null;
24
+ }
25
+ interface TripHeroCardProps extends Omit<React.HTMLAttributes<HTMLElement>, "children"> {
26
+ trip: TripHeroData;
27
+ /** Actions rapides (bon, itinéraire, annuler…) rendues sous les détails. */
28
+ actions?: React.ReactNode;
29
+ /** Render personnalisé de l'image (ex : next/image). */
30
+ renderImage?: (props: {
31
+ src: string;
32
+ alt: string;
33
+ className: string;
34
+ }) => React.ReactNode;
35
+ }
36
+ declare const TripHeroCard: React.ForwardRefExoticComponent<TripHeroCardProps & React.RefAttributes<HTMLElement>>;
37
+
38
+ export { TripHeroCard, type TripHeroCardProps, type TripHeroData, type TripStatusTone };
@@ -0,0 +1,38 @@
1
+ import * as React from 'react';
2
+
3
+ type TripStatusTone = "confirmed" | "pending" | "processing";
4
+ interface TripHeroData {
5
+ hotelName: string;
6
+ /** Photo de l'hôtel. Fallback dégradé si absente. */
7
+ hotelImage?: string | null;
8
+ city?: string | null;
9
+ address?: string | null;
10
+ /** Dates déjà formatées (ex : "12 juil."). */
11
+ checkinLabel: string;
12
+ checkoutLabel: string;
13
+ nights: number;
14
+ /** Compte à rebours déjà formaté (ex : "Dans 5 jours", "Aujourd'hui"). */
15
+ countdownLabel: string;
16
+ /** Met le compte à rebours en avant (séjour proche). */
17
+ isSoon?: boolean;
18
+ /** Libellé du statut (ex : "Confirmée"). */
19
+ statusLabel?: string | null;
20
+ statusTone?: TripStatusTone;
21
+ /** Prix total déjà formaté (ex : "1 234,00 €"). */
22
+ priceLabel?: string | null;
23
+ dogName?: string | null;
24
+ }
25
+ interface TripHeroCardProps extends Omit<React.HTMLAttributes<HTMLElement>, "children"> {
26
+ trip: TripHeroData;
27
+ /** Actions rapides (bon, itinéraire, annuler…) rendues sous les détails. */
28
+ actions?: React.ReactNode;
29
+ /** Render personnalisé de l'image (ex : next/image). */
30
+ renderImage?: (props: {
31
+ src: string;
32
+ alt: string;
33
+ className: string;
34
+ }) => React.ReactNode;
35
+ }
36
+ declare const TripHeroCard: React.ForwardRefExoticComponent<TripHeroCardProps & React.RefAttributes<HTMLElement>>;
37
+
38
+ export { TripHeroCard, type TripHeroCardProps, type TripHeroData, type TripStatusTone };
@@ -0,0 +1,11 @@
1
+ 'use strict';
2
+
3
+ var chunkBXFU7V2X_js = require('../../chunk-BXFU7V2X.js');
4
+ require('../../chunk-ADIDI7AJ.js');
5
+
6
+
7
+
8
+ Object.defineProperty(exports, "TripHeroCard", {
9
+ enumerable: true,
10
+ get: function () { return chunkBXFU7V2X_js.TripHeroCard; }
11
+ });
@@ -0,0 +1,2 @@
1
+ export { TripHeroCard } from '../../chunk-LO2XNMZO.mjs';
2
+ import '../../chunk-IMKLN273.mjs';
package/dist/index.d.mts CHANGED
@@ -9,7 +9,6 @@ export { Breadcrumb, BreadcrumbItem, BreadcrumbProps, breadcrumbVariants } from
9
9
  export { ImageWithFallback, ImageWithFallbackProps } from './components/ImageWithFallback/index.mjs';
10
10
  export { HotelCard, HotelCardData, HotelCardProps } from './components/HotelCard/index.mjs';
11
11
  export { DogCard, DogCardData, DogCardProps } from './components/DogCard/index.mjs';
12
- export { SearchLoadingChecklist, SearchLoadingChecklistProps, SearchLoadingStep } from './components/SearchLoadingChecklist/index.mjs';
13
12
  export { RadioGroup, RadioGroupItemOption, RadioGroupProps } from './components/RadioGroup/index.mjs';
14
13
  export { Checkbox, CheckboxProps } from './components/Checkbox/index.mjs';
15
14
  export { Toggle, ToggleProps } from './components/Toggle/index.mjs';
@@ -62,6 +61,7 @@ export { IconBadge, IconBadgeProps, iconBadgeVariants } from './components/IconB
62
61
  export { PriceDisplay, PriceDisplayProps } from './components/PriceDisplay/index.mjs';
63
62
  export { DetailItem, DetailList, DetailListProps } from './components/DetailList/index.mjs';
64
63
  export { LoadingOverlay, LoadingOverlayProps } from './components/LoadingOverlay/index.mjs';
64
+ export { SearchLoadingChecklist, SearchLoadingChecklistProps, SearchLoadingStep } from './components/SearchLoadingChecklist/index.mjs';
65
65
  export { Switch, SwitchProps, switchThumbVariants, switchTrackVariants } from './components/Switch/index.mjs';
66
66
  export { DualRangeSlider, DualRangeSliderProps } from './components/DualRangeSlider/index.mjs';
67
67
  export { CardList, CardListProps } from './components/CardList/index.mjs';
@@ -69,6 +69,14 @@ export { FilterAccordion, FilterAccordionItemData, FilterAccordionProps } from '
69
69
  export { RoomRate, RoomRateCancellation, RoomRateCancellationKind, RoomRateDetail, RoomTypeCard, RoomTypeCardProps, RoomTypeCardSkeleton, RoomTypeCardSkeletonProps, RoomTypeData } from './components/RoomTypeCard/index.mjs';
70
70
  import * as react_jsx_runtime from 'react/jsx-runtime';
71
71
  export { SignInCallout, SignInCalloutProps, signInCalloutVariants } from './components/SignInCallout/index.mjs';
72
+ export { SectionHeader, SectionHeaderProps } from './components/SectionHeader/index.mjs';
73
+ export { StatTile, StatTileProps } from './components/StatTile/index.mjs';
74
+ export { TripHeroCard, TripHeroCardProps, TripHeroData, TripStatusTone } from './components/TripHeroCard/index.mjs';
75
+ export { DOG_AVATAR_COLORS, DogAvatar, DogAvatarProps, DogAvatarStack, DogAvatarStackDog, DogAvatarStackProps, dogAvatarColor } from './components/DogAvatar/index.mjs';
76
+ export { ActiveStayCard, ActiveStayCardProps } from './components/ActiveStayCard/index.mjs';
77
+ export { StayListRow, StayListRowProps } from './components/StayListRow/index.mjs';
78
+ export { ImpactCard, ImpactCardProps } from './components/ImpactCard/index.mjs';
79
+ export { SearchWidget, SearchWidgetProps } from './components/SearchWidget/index.mjs';
72
80
  export { cn } from './utils/index.mjs';
73
81
  import 'clsx';
74
82
 
package/dist/index.d.ts CHANGED
@@ -9,7 +9,6 @@ export { Breadcrumb, BreadcrumbItem, BreadcrumbProps, breadcrumbVariants } from
9
9
  export { ImageWithFallback, ImageWithFallbackProps } from './components/ImageWithFallback/index.js';
10
10
  export { HotelCard, HotelCardData, HotelCardProps } from './components/HotelCard/index.js';
11
11
  export { DogCard, DogCardData, DogCardProps } from './components/DogCard/index.js';
12
- export { SearchLoadingChecklist, SearchLoadingChecklistProps, SearchLoadingStep } from './components/SearchLoadingChecklist/index.js';
13
12
  export { RadioGroup, RadioGroupItemOption, RadioGroupProps } from './components/RadioGroup/index.js';
14
13
  export { Checkbox, CheckboxProps } from './components/Checkbox/index.js';
15
14
  export { Toggle, ToggleProps } from './components/Toggle/index.js';
@@ -62,6 +61,7 @@ export { IconBadge, IconBadgeProps, iconBadgeVariants } from './components/IconB
62
61
  export { PriceDisplay, PriceDisplayProps } from './components/PriceDisplay/index.js';
63
62
  export { DetailItem, DetailList, DetailListProps } from './components/DetailList/index.js';
64
63
  export { LoadingOverlay, LoadingOverlayProps } from './components/LoadingOverlay/index.js';
64
+ export { SearchLoadingChecklist, SearchLoadingChecklistProps, SearchLoadingStep } from './components/SearchLoadingChecklist/index.js';
65
65
  export { Switch, SwitchProps, switchThumbVariants, switchTrackVariants } from './components/Switch/index.js';
66
66
  export { DualRangeSlider, DualRangeSliderProps } from './components/DualRangeSlider/index.js';
67
67
  export { CardList, CardListProps } from './components/CardList/index.js';
@@ -69,6 +69,14 @@ export { FilterAccordion, FilterAccordionItemData, FilterAccordionProps } from '
69
69
  export { RoomRate, RoomRateCancellation, RoomRateCancellationKind, RoomRateDetail, RoomTypeCard, RoomTypeCardProps, RoomTypeCardSkeleton, RoomTypeCardSkeletonProps, RoomTypeData } from './components/RoomTypeCard/index.js';
70
70
  import * as react_jsx_runtime from 'react/jsx-runtime';
71
71
  export { SignInCallout, SignInCalloutProps, signInCalloutVariants } from './components/SignInCallout/index.js';
72
+ export { SectionHeader, SectionHeaderProps } from './components/SectionHeader/index.js';
73
+ export { StatTile, StatTileProps } from './components/StatTile/index.js';
74
+ export { TripHeroCard, TripHeroCardProps, TripHeroData, TripStatusTone } from './components/TripHeroCard/index.js';
75
+ export { DOG_AVATAR_COLORS, DogAvatar, DogAvatarProps, DogAvatarStack, DogAvatarStackDog, DogAvatarStackProps, dogAvatarColor } from './components/DogAvatar/index.js';
76
+ export { ActiveStayCard, ActiveStayCardProps } from './components/ActiveStayCard/index.js';
77
+ export { StayListRow, StayListRowProps } from './components/StayListRow/index.js';
78
+ export { ImpactCard, ImpactCardProps } from './components/ImpactCard/index.js';
79
+ export { SearchWidget, SearchWidgetProps } from './components/SearchWidget/index.js';
72
80
  export { cn } from './utils/index.js';
73
81
  import 'clsx';
74
82