@dododog/ui 0.11.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.
Files changed (37) hide show
  1. package/dist/chunk-AGNY5DBW.mjs +116 -0
  2. package/dist/chunk-CRQ4XOCC.mjs +107 -0
  3. package/dist/chunk-DFC6XK57.js +55 -0
  4. package/dist/chunk-DUT3ABEI.mjs +108 -0
  5. package/dist/chunk-G3LZ32WA.js +129 -0
  6. package/dist/chunk-HB2XJOBZ.js +141 -0
  7. package/dist/chunk-IKQYFSBW.mjs +33 -0
  8. package/dist/chunk-IVCQVBOT.mjs +86 -0
  9. package/dist/chunk-OTHB7MU7.js +108 -0
  10. package/dist/chunk-OZULAGYL.mjs +1 -0
  11. package/dist/chunk-SEHALSKW.js +130 -0
  12. package/dist/chunk-VNURXHKK.js +2 -0
  13. package/dist/components/ActiveStayCard/index.d.mts +36 -0
  14. package/dist/components/ActiveStayCard/index.d.ts +36 -0
  15. package/dist/components/ActiveStayCard/index.js +12 -0
  16. package/dist/components/ActiveStayCard/index.mjs +3 -0
  17. package/dist/components/DogAvatar/index.d.mts +37 -0
  18. package/dist/components/DogAvatar/index.d.ts +37 -0
  19. package/dist/components/DogAvatar/index.js +24 -0
  20. package/dist/components/DogAvatar/index.mjs +3 -0
  21. package/dist/components/ImpactCard/index.d.mts +12 -0
  22. package/dist/components/ImpactCard/index.d.ts +12 -0
  23. package/dist/components/ImpactCard/index.js +11 -0
  24. package/dist/components/ImpactCard/index.mjs +2 -0
  25. package/dist/components/SearchWidget/index.d.mts +20 -0
  26. package/dist/components/SearchWidget/index.d.ts +20 -0
  27. package/dist/components/SearchWidget/index.js +11 -0
  28. package/dist/components/SearchWidget/index.mjs +2 -0
  29. package/dist/components/StayListRow/index.d.mts +35 -0
  30. package/dist/components/StayListRow/index.d.ts +35 -0
  31. package/dist/components/StayListRow/index.js +12 -0
  32. package/dist/components/StayListRow/index.mjs +3 -0
  33. package/dist/index.d.mts +5 -0
  34. package/dist/index.d.ts +5 -0
  35. package/dist/index.js +159 -121
  36. package/dist/index.mjs +31 -25
  37. package/package.json +26 -1
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+
3
+ interface SearchWidgetProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ title?: string;
5
+ destination?: string;
6
+ arrivalLabel?: string;
7
+ departureLabel?: string;
8
+ travelersLabel?: string;
9
+ actionLabel?: string;
10
+ href?: string;
11
+ renderLink?: (props: {
12
+ href: string;
13
+ className: string;
14
+ children: React.ReactNode;
15
+ }) => React.ReactNode;
16
+ }
17
+ /** Carte de recherche compacte du dashboard (renvoie vers la recherche). */
18
+ declare const SearchWidget: React.ForwardRefExoticComponent<SearchWidgetProps & React.RefAttributes<HTMLDivElement>>;
19
+
20
+ export { SearchWidget, type SearchWidgetProps };
@@ -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,35 @@
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
+ /** Badge de statut (ex. <StatusBadge/>) rendu sous le nom. */
15
+ statusBadge?: React.ReactNode;
16
+ dogs?: DogAvatarStackDog[];
17
+ href?: string;
18
+ /** Ouvre au clic (ex. modale) au lieu de naviguer. Rend la ligne en `button`. */
19
+ onSelect?: () => void;
20
+ className?: string;
21
+ renderImage?: (props: {
22
+ src: string;
23
+ alt: string;
24
+ className: string;
25
+ }) => React.ReactNode;
26
+ renderLink?: (props: {
27
+ href: string;
28
+ className: string;
29
+ "aria-label"?: string;
30
+ children: React.ReactNode;
31
+ }) => React.ReactNode;
32
+ }
33
+ declare const StayListRow: React.ForwardRefExoticComponent<StayListRowProps & React.RefAttributes<HTMLDivElement>>;
34
+
35
+ export { StayListRow, type StayListRowProps };
@@ -0,0 +1,35 @@
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
+ /** Badge de statut (ex. <StatusBadge/>) rendu sous le nom. */
15
+ statusBadge?: React.ReactNode;
16
+ dogs?: DogAvatarStackDog[];
17
+ href?: string;
18
+ /** Ouvre au clic (ex. modale) au lieu de naviguer. Rend la ligne en `button`. */
19
+ onSelect?: () => void;
20
+ className?: string;
21
+ renderImage?: (props: {
22
+ src: string;
23
+ alt: string;
24
+ className: string;
25
+ }) => React.ReactNode;
26
+ renderLink?: (props: {
27
+ href: string;
28
+ className: string;
29
+ "aria-label"?: string;
30
+ children: React.ReactNode;
31
+ }) => React.ReactNode;
32
+ }
33
+ declare const StayListRow: React.ForwardRefExoticComponent<StayListRowProps & React.RefAttributes<HTMLDivElement>>;
34
+
35
+ export { StayListRow, type StayListRowProps };
@@ -0,0 +1,12 @@
1
+ 'use strict';
2
+
3
+ var chunkOTHB7MU7_js = require('../../chunk-OTHB7MU7.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 chunkOTHB7MU7_js.StayListRow; }
12
+ });
@@ -0,0 +1,3 @@
1
+ export { StayListRow } from '../../chunk-IVCQVBOT.mjs';
2
+ import '../../chunk-AGNY5DBW.mjs';
3
+ import '../../chunk-IMKLN273.mjs';
package/dist/index.d.mts CHANGED
@@ -72,6 +72,11 @@ export { SignInCallout, SignInCalloutProps, signInCalloutVariants } from './comp
72
72
  export { SectionHeader, SectionHeaderProps } from './components/SectionHeader/index.mjs';
73
73
  export { StatTile, StatTileProps } from './components/StatTile/index.mjs';
74
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';
75
80
  export { cn } from './utils/index.mjs';
76
81
  import 'clsx';
77
82
 
package/dist/index.d.ts CHANGED
@@ -72,6 +72,11 @@ export { SignInCallout, SignInCalloutProps, signInCalloutVariants } from './comp
72
72
  export { SectionHeader, SectionHeaderProps } from './components/SectionHeader/index.js';
73
73
  export { StatTile, StatTileProps } from './components/StatTile/index.js';
74
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';
75
80
  export { cn } from './utils/index.js';
76
81
  import 'clsx';
77
82
 
package/dist/index.js CHANGED
@@ -1,73 +1,79 @@
1
1
  'use strict';
2
2
 
3
- var chunkBXFU7V2X_js = require('./chunk-BXFU7V2X.js');
4
- var chunkN3JU7JS7_js = require('./chunk-N3JU7JS7.js');
5
- var chunk3VU6TPAT_js = require('./chunk-3VU6TPAT.js');
6
- var chunkI4S3R6C6_js = require('./chunk-I4S3R6C6.js');
7
- var chunk762LQMWP_js = require('./chunk-762LQMWP.js');
8
3
  var chunk7IJOHVNJ_js = require('./chunk-7IJOHVNJ.js');
9
4
  var chunkL7OYR6U3_js = require('./chunk-L7OYR6U3.js');
10
5
  var chunkVTELEOT7_js = require('./chunk-VTELEOT7.js');
11
6
  var chunkDTIYZ3TQ_js = require('./chunk-DTIYZ3TQ.js');
7
+ var chunkBXFU7V2X_js = require('./chunk-BXFU7V2X.js');
12
8
  var chunkE6ZNND75_js = require('./chunk-E6ZNND75.js');
13
- var chunk3R7PT3JG_js = require('./chunk-3R7PT3JG.js');
14
- var chunkDS4LM7OS_js = require('./chunk-DS4LM7OS.js');
15
- var chunkWXSBKARZ_js = require('./chunk-WXSBKARZ.js');
9
+ var chunkN3JU7JS7_js = require('./chunk-N3JU7JS7.js');
16
10
  var chunkXHRDPJTF_js = require('./chunk-XHRDPJTF.js');
17
11
  var chunkTT7L3ZU7_js = require('./chunk-TT7L3ZU7.js');
18
12
  var chunkCWXP2ZI2_js = require('./chunk-CWXP2ZI2.js');
19
13
  var chunkDFXXGKMI_js = require('./chunk-DFXXGKMI.js');
14
+ var chunkOTHB7MU7_js = require('./chunk-OTHB7MU7.js');
15
+ var chunk3VU6TPAT_js = require('./chunk-3VU6TPAT.js');
16
+ var chunkI4S3R6C6_js = require('./chunk-I4S3R6C6.js');
17
+ var chunk762LQMWP_js = require('./chunk-762LQMWP.js');
18
+ var chunkSEHALSKW_js = require('./chunk-SEHALSKW.js');
19
+ var chunk6KW7ZSKR_js = require('./chunk-6KW7ZSKR.js');
20
+ var chunkOGB5LIXN_js = require('./chunk-OGB5LIXN.js');
21
+ var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.js');
22
+ var chunk3R7PT3JG_js = require('./chunk-3R7PT3JG.js');
23
+ var chunkDS4LM7OS_js = require('./chunk-DS4LM7OS.js');
24
+ var chunkWXSBKARZ_js = require('./chunk-WXSBKARZ.js');
25
+ var chunkB4LR4H6R_js = require('./chunk-B4LR4H6R.js');
26
+ var chunkPG4I4NWO_js = require('./chunk-PG4I4NWO.js');
27
+ var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
20
28
  var chunkPRDIS2VR_js = require('./chunk-PRDIS2VR.js');
21
29
  var chunkGXKON34B_js = require('./chunk-GXKON34B.js');
22
30
  var chunkTZHT7NZU_js = require('./chunk-TZHT7NZU.js');
23
31
  var chunkKFQILIZO_js = require('./chunk-KFQILIZO.js');
24
32
  var chunkNCU5PY34_js = require('./chunk-NCU5PY34.js');
25
33
  var chunkHS3MAW3G_js = require('./chunk-HS3MAW3G.js');
26
- var chunk6KW7ZSKR_js = require('./chunk-6KW7ZSKR.js');
27
- var chunkOGB5LIXN_js = require('./chunk-OGB5LIXN.js');
28
- var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.js');
29
- var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
34
+ var chunkDFC6XK57_js = require('./chunk-DFC6XK57.js');
35
+ var chunk77WKG2D7_js = require('./chunk-77WKG2D7.js');
36
+ var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
30
37
  var chunkTE4WHZ4Q_js = require('./chunk-TE4WHZ4Q.js');
31
38
  var chunkHN6B4TAW_js = require('./chunk-HN6B4TAW.js');
32
39
  var chunkKZSGVMUG_js = require('./chunk-KZSGVMUG.js');
33
40
  var chunkNBDPT3XQ_js = require('./chunk-NBDPT3XQ.js');
34
41
  var chunkSCGN5H6D_js = require('./chunk-SCGN5H6D.js');
35
- var chunkB4LR4H6R_js = require('./chunk-B4LR4H6R.js');
36
- var chunkPG4I4NWO_js = require('./chunk-PG4I4NWO.js');
42
+ var chunkZCQJN4IT_js = require('./chunk-ZCQJN4IT.js');
43
+ var chunkC4RZBOKH_js = require('./chunk-C4RZBOKH.js');
37
44
  var chunkKOO5ZXLD_js = require('./chunk-KOO5ZXLD.js');
38
45
  var chunkIRKM5UF4_js = require('./chunk-IRKM5UF4.js');
39
46
  var chunkECVKFE6U_js = require('./chunk-ECVKFE6U.js');
40
47
  var chunkYN4HPIRC_js = require('./chunk-YN4HPIRC.js');
41
48
  var chunkMKOKWME3_js = require('./chunk-MKOKWME3.js');
42
49
  var chunkDLOHAW74_js = require('./chunk-DLOHAW74.js');
43
- var chunk77WKG2D7_js = require('./chunk-77WKG2D7.js');
44
- var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
50
+ var chunkBS7R7VDS_js = require('./chunk-BS7R7VDS.js');
51
+ var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
45
52
  var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
46
53
  var chunkTDGU5Y2P_js = require('./chunk-TDGU5Y2P.js');
47
54
  var chunkIEHX4DU6_js = require('./chunk-IEHX4DU6.js');
48
55
  var chunkS5TLUDNM_js = require('./chunk-S5TLUDNM.js');
49
56
  var chunk7W3TFPIF_js = require('./chunk-7W3TFPIF.js');
50
57
  var chunkTJDHGNMR_js = require('./chunk-TJDHGNMR.js');
51
- var chunkZCQJN4IT_js = require('./chunk-ZCQJN4IT.js');
52
- var chunkC4RZBOKH_js = require('./chunk-C4RZBOKH.js');
58
+ var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
59
+ var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
53
60
  var chunkIJIUUBFT_js = require('./chunk-IJIUUBFT.js');
54
61
  var chunkP7GAKOCX_js = require('./chunk-P7GAKOCX.js');
55
62
  var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
56
- var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
57
63
  var chunkE24VNM6S_js = require('./chunk-E24VNM6S.js');
64
+ require('./chunk-VNURXHKK.js');
58
65
  var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
59
- var chunkBS7R7VDS_js = require('./chunk-BS7R7VDS.js');
60
- var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
66
+ var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
67
+ var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
61
68
  var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
62
- var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
63
69
  var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
70
+ var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
64
71
  var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
65
72
  var chunkYZTVHCLK_js = require('./chunk-YZTVHCLK.js');
66
- var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
67
73
  var chunkZAUYE2EI_js = require('./chunk-ZAUYE2EI.js');
68
- var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
69
74
  var chunkMCF3EQTV_js = require('./chunk-MCF3EQTV.js');
70
- var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
75
+ var chunkG3LZ32WA_js = require('./chunk-G3LZ32WA.js');
76
+ var chunkHB2XJOBZ_js = require('./chunk-HB2XJOBZ.js');
71
77
  var chunkWXEZA6NE_js = require('./chunk-WXEZA6NE.js');
72
78
  var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
73
79
  var chunkADIDI7AJ_js = require('./chunk-ADIDI7AJ.js');
@@ -490,14 +496,74 @@ function MobileBookingBar({
490
496
  );
491
497
  }
492
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
+ Object.defineProperty(exports, "Textarea", {
508
+ enumerable: true,
509
+ get: function () { return chunkL7OYR6U3_js.Textarea; }
510
+ });
511
+ Object.defineProperty(exports, "textareaVariants", {
512
+ enumerable: true,
513
+ get: function () { return chunkL7OYR6U3_js.textareaVariants; }
514
+ });
515
+ Object.defineProperty(exports, "Toast", {
516
+ enumerable: true,
517
+ get: function () { return chunkVTELEOT7_js.Toast; }
518
+ });
519
+ Object.defineProperty(exports, "toastVariants", {
520
+ enumerable: true,
521
+ get: function () { return chunkVTELEOT7_js.toastVariants; }
522
+ });
523
+ Object.defineProperty(exports, "Toggle", {
524
+ enumerable: true,
525
+ get: function () { return chunkDTIYZ3TQ_js.Toggle; }
526
+ });
493
527
  Object.defineProperty(exports, "TripHeroCard", {
494
528
  enumerable: true,
495
529
  get: function () { return chunkBXFU7V2X_js.TripHeroCard; }
496
530
  });
531
+ Object.defineProperty(exports, "Tooltip", {
532
+ enumerable: true,
533
+ get: function () { return chunkE6ZNND75_js.Tooltip; }
534
+ });
497
535
  Object.defineProperty(exports, "VerticalMarquee", {
498
536
  enumerable: true,
499
537
  get: function () { return chunkN3JU7JS7_js.VerticalMarquee; }
500
538
  });
539
+ Object.defineProperty(exports, "Spinner", {
540
+ enumerable: true,
541
+ get: function () { return chunkXHRDPJTF_js.Spinner; }
542
+ });
543
+ Object.defineProperty(exports, "spinnerVariants", {
544
+ enumerable: true,
545
+ get: function () { return chunkXHRDPJTF_js.spinnerVariants; }
546
+ });
547
+ Object.defineProperty(exports, "StatCard", {
548
+ enumerable: true,
549
+ get: function () { return chunkTT7L3ZU7_js.StatCard; }
550
+ });
551
+ Object.defineProperty(exports, "StatTile", {
552
+ enumerable: true,
553
+ get: function () { return chunkCWXP2ZI2_js.StatTile; }
554
+ });
555
+ Object.defineProperty(exports, "StatusBadge", {
556
+ enumerable: true,
557
+ get: function () { return chunkDFXXGKMI_js.StatusBadge; }
558
+ });
559
+ Object.defineProperty(exports, "statusBadgeVariants", {
560
+ enumerable: true,
561
+ get: function () { return chunkDFXXGKMI_js.statusBadgeVariants; }
562
+ });
563
+ Object.defineProperty(exports, "StayListRow", {
564
+ enumerable: true,
565
+ get: function () { return chunkOTHB7MU7_js.StayListRow; }
566
+ });
501
567
  Object.defineProperty(exports, "Stepper", {
502
568
  enumerable: true,
503
569
  get: function () { return chunk3VU6TPAT_js.Stepper; }
@@ -518,37 +584,21 @@ Object.defineProperty(exports, "Tabs", {
518
584
  enumerable: true,
519
585
  get: function () { return chunk762LQMWP_js.Tabs; }
520
586
  });
521
- Object.defineProperty(exports, "Tag", {
522
- enumerable: true,
523
- get: function () { return chunk7IJOHVNJ_js.Tag; }
524
- });
525
- Object.defineProperty(exports, "tagVariants", {
526
- enumerable: true,
527
- get: function () { return chunk7IJOHVNJ_js.tagVariants; }
528
- });
529
- Object.defineProperty(exports, "Textarea", {
530
- enumerable: true,
531
- get: function () { return chunkL7OYR6U3_js.Textarea; }
532
- });
533
- Object.defineProperty(exports, "textareaVariants", {
534
- enumerable: true,
535
- get: function () { return chunkL7OYR6U3_js.textareaVariants; }
536
- });
537
- Object.defineProperty(exports, "Toast", {
587
+ Object.defineProperty(exports, "SearchWidget", {
538
588
  enumerable: true,
539
- get: function () { return chunkVTELEOT7_js.Toast; }
589
+ get: function () { return chunkSEHALSKW_js.SearchWidget; }
540
590
  });
541
- Object.defineProperty(exports, "toastVariants", {
591
+ Object.defineProperty(exports, "SearchLoadingChecklist", {
542
592
  enumerable: true,
543
- get: function () { return chunkVTELEOT7_js.toastVariants; }
593
+ get: function () { return chunk6KW7ZSKR_js.SearchLoadingChecklist; }
544
594
  });
545
- Object.defineProperty(exports, "Toggle", {
595
+ Object.defineProperty(exports, "SectionHeader", {
546
596
  enumerable: true,
547
- get: function () { return chunkDTIYZ3TQ_js.Toggle; }
597
+ get: function () { return chunkOGB5LIXN_js.SectionHeader; }
548
598
  });
549
- Object.defineProperty(exports, "Tooltip", {
599
+ Object.defineProperty(exports, "SegmentedControl", {
550
600
  enumerable: true,
551
- get: function () { return chunkE6ZNND75_js.Tooltip; }
601
+ get: function () { return chunkQWDKSY6Y_js.SegmentedControl; }
552
602
  });
553
603
  Object.defineProperty(exports, "Select", {
554
604
  enumerable: true,
@@ -570,29 +620,25 @@ Object.defineProperty(exports, "signInCalloutVariants", {
570
620
  enumerable: true,
571
621
  get: function () { return chunkWXSBKARZ_js.signInCalloutVariants; }
572
622
  });
573
- Object.defineProperty(exports, "Spinner", {
574
- enumerable: true,
575
- get: function () { return chunkXHRDPJTF_js.Spinner; }
576
- });
577
- Object.defineProperty(exports, "spinnerVariants", {
623
+ Object.defineProperty(exports, "PriceDisplay", {
578
624
  enumerable: true,
579
- get: function () { return chunkXHRDPJTF_js.spinnerVariants; }
625
+ get: function () { return chunkB4LR4H6R_js.PriceDisplay; }
580
626
  });
581
- Object.defineProperty(exports, "StatCard", {
627
+ Object.defineProperty(exports, "ProgressBar", {
582
628
  enumerable: true,
583
- get: function () { return chunkTT7L3ZU7_js.StatCard; }
629
+ get: function () { return chunkPG4I4NWO_js.ProgressBar; }
584
630
  });
585
- Object.defineProperty(exports, "StatTile", {
631
+ Object.defineProperty(exports, "progressBarVariants", {
586
632
  enumerable: true,
587
- get: function () { return chunkCWXP2ZI2_js.StatTile; }
633
+ get: function () { return chunkPG4I4NWO_js.progressBarVariants; }
588
634
  });
589
- Object.defineProperty(exports, "StatusBadge", {
635
+ Object.defineProperty(exports, "progressFillVariants", {
590
636
  enumerable: true,
591
- get: function () { return chunkDFXXGKMI_js.StatusBadge; }
637
+ get: function () { return chunkPG4I4NWO_js.progressFillVariants; }
592
638
  });
593
- Object.defineProperty(exports, "statusBadgeVariants", {
639
+ Object.defineProperty(exports, "LinkCard", {
594
640
  enumerable: true,
595
- get: function () { return chunkDFXXGKMI_js.statusBadgeVariants; }
641
+ get: function () { return chunkW7DZZS6L_js.LinkCard; }
596
642
  });
597
643
  Object.defineProperty(exports, "PromoBanner", {
598
644
  enumerable: true,
@@ -638,21 +684,21 @@ Object.defineProperty(exports, "SearchBar", {
638
684
  enumerable: true,
639
685
  get: function () { return chunkHS3MAW3G_js.SearchBar; }
640
686
  });
641
- Object.defineProperty(exports, "SearchLoadingChecklist", {
687
+ Object.defineProperty(exports, "ImpactCard", {
642
688
  enumerable: true,
643
- get: function () { return chunk6KW7ZSKR_js.SearchLoadingChecklist; }
689
+ get: function () { return chunkDFC6XK57_js.ImpactCard; }
644
690
  });
645
- Object.defineProperty(exports, "SectionHeader", {
691
+ Object.defineProperty(exports, "Input", {
646
692
  enumerable: true,
647
- get: function () { return chunkOGB5LIXN_js.SectionHeader; }
693
+ get: function () { return chunk77WKG2D7_js.Input; }
648
694
  });
649
- Object.defineProperty(exports, "SegmentedControl", {
695
+ Object.defineProperty(exports, "inputVariants", {
650
696
  enumerable: true,
651
- get: function () { return chunkQWDKSY6Y_js.SegmentedControl; }
697
+ get: function () { return chunk77WKG2D7_js.inputVariants; }
652
698
  });
653
- Object.defineProperty(exports, "LinkCard", {
699
+ Object.defineProperty(exports, "Lightbox", {
654
700
  enumerable: true,
655
- get: function () { return chunkW7DZZS6L_js.LinkCard; }
701
+ get: function () { return chunkU3XWNFHH_js.Lightbox; }
656
702
  });
657
703
  Object.defineProperty(exports, "LoadingOverlay", {
658
704
  enumerable: true,
@@ -674,21 +720,13 @@ Object.defineProperty(exports, "Pagination", {
674
720
  enumerable: true,
675
721
  get: function () { return chunkSCGN5H6D_js.Pagination; }
676
722
  });
677
- Object.defineProperty(exports, "PriceDisplay", {
678
- enumerable: true,
679
- get: function () { return chunkB4LR4H6R_js.PriceDisplay; }
680
- });
681
- Object.defineProperty(exports, "ProgressBar", {
682
- enumerable: true,
683
- get: function () { return chunkPG4I4NWO_js.ProgressBar; }
684
- });
685
- Object.defineProperty(exports, "progressBarVariants", {
723
+ Object.defineProperty(exports, "FloatingDock", {
686
724
  enumerable: true,
687
- get: function () { return chunkPG4I4NWO_js.progressBarVariants; }
725
+ get: function () { return chunkZCQJN4IT_js.FloatingDock; }
688
726
  });
689
- Object.defineProperty(exports, "progressFillVariants", {
727
+ Object.defineProperty(exports, "Footer", {
690
728
  enumerable: true,
691
- get: function () { return chunkPG4I4NWO_js.progressFillVariants; }
729
+ get: function () { return chunkC4RZBOKH_js.Footer; }
692
730
  });
693
731
  Object.defineProperty(exports, "GuestPicker", {
694
732
  enumerable: true,
@@ -718,17 +756,13 @@ Object.defineProperty(exports, "ImageWithFallback", {
718
756
  enumerable: true,
719
757
  get: function () { return chunkDLOHAW74_js.ImageWithFallback; }
720
758
  });
721
- Object.defineProperty(exports, "Input", {
722
- enumerable: true,
723
- get: function () { return chunk77WKG2D7_js.Input; }
724
- });
725
- Object.defineProperty(exports, "inputVariants", {
759
+ Object.defineProperty(exports, "DogCard", {
726
760
  enumerable: true,
727
- get: function () { return chunk77WKG2D7_js.inputVariants; }
761
+ get: function () { return chunkBS7R7VDS_js.DogCard; }
728
762
  });
729
- Object.defineProperty(exports, "Lightbox", {
763
+ Object.defineProperty(exports, "Drawer", {
730
764
  enumerable: true,
731
- get: function () { return chunkU3XWNFHH_js.Lightbox; }
765
+ get: function () { return chunkVWFY24XF_js.Drawer; }
732
766
  });
733
767
  Object.defineProperty(exports, "DropdownMenu", {
734
768
  enumerable: true,
@@ -754,13 +788,13 @@ Object.defineProperty(exports, "FilterPill", {
754
788
  enumerable: true,
755
789
  get: function () { return chunkTJDHGNMR_js.FilterPill; }
756
790
  });
757
- Object.defineProperty(exports, "FloatingDock", {
791
+ Object.defineProperty(exports, "CardList", {
758
792
  enumerable: true,
759
- get: function () { return chunkZCQJN4IT_js.FloatingDock; }
793
+ get: function () { return chunkMY6BYO5F_js.CardList; }
760
794
  });
761
- Object.defineProperty(exports, "Footer", {
795
+ Object.defineProperty(exports, "Counter", {
762
796
  enumerable: true,
763
- get: function () { return chunkC4RZBOKH_js.Footer; }
797
+ get: function () { return chunkT4AT3YCT_js.Counter; }
764
798
  });
765
799
  Object.defineProperty(exports, "Checkbox", {
766
800
  enumerable: true,
@@ -778,10 +812,6 @@ Object.defineProperty(exports, "DateRangePicker", {
778
812
  enumerable: true,
779
813
  get: function () { return chunkAIA3NHCK_js.DateRangePicker; }
780
814
  });
781
- Object.defineProperty(exports, "Counter", {
782
- enumerable: true,
783
- get: function () { return chunkT4AT3YCT_js.Counter; }
784
- });
785
815
  Object.defineProperty(exports, "DetailList", {
786
816
  enumerable: true,
787
817
  get: function () { return chunkE24VNM6S_js.DetailList; }
@@ -790,13 +820,17 @@ Object.defineProperty(exports, "Divider", {
790
820
  enumerable: true,
791
821
  get: function () { return chunkXXC2YD3D_js.Divider; }
792
822
  });
793
- Object.defineProperty(exports, "DogCard", {
823
+ Object.defineProperty(exports, "Banner", {
794
824
  enumerable: true,
795
- get: function () { return chunkBS7R7VDS_js.DogCard; }
825
+ get: function () { return chunk6EG6EAHW_js.Banner; }
796
826
  });
797
- Object.defineProperty(exports, "Drawer", {
827
+ Object.defineProperty(exports, "bannerVariants", {
798
828
  enumerable: true,
799
- get: function () { return chunkVWFY24XF_js.Drawer; }
829
+ get: function () { return chunk6EG6EAHW_js.bannerVariants; }
830
+ });
831
+ Object.defineProperty(exports, "Alert", {
832
+ enumerable: true,
833
+ get: function () { return chunkWBRVUWGC_js.Alert; }
800
834
  });
801
835
  Object.defineProperty(exports, "Autocomplete", {
802
836
  enumerable: true,
@@ -806,6 +840,10 @@ Object.defineProperty(exports, "autocompleteInputVariants", {
806
840
  enumerable: true,
807
841
  get: function () { return chunkNHB2TI2B_js.autocompleteInputVariants; }
808
842
  });
843
+ Object.defineProperty(exports, "BottomNavBar", {
844
+ enumerable: true,
845
+ get: function () { return chunkPND5YKFN_js.BottomNavBar; }
846
+ });
809
847
  Object.defineProperty(exports, "Badge", {
810
848
  enumerable: true,
811
849
  get: function () { return chunkZ5S7LHMY_js.Badge; }
@@ -814,10 +852,6 @@ Object.defineProperty(exports, "badgeVariants", {
814
852
  enumerable: true,
815
853
  get: function () { return chunkZ5S7LHMY_js.badgeVariants; }
816
854
  });
817
- Object.defineProperty(exports, "BottomNavBar", {
818
- enumerable: true,
819
- get: function () { return chunkPND5YKFN_js.BottomNavBar; }
820
- });
821
855
  Object.defineProperty(exports, "Breadcrumb", {
822
856
  enumerable: true,
823
857
  get: function () { return chunkH3JNRTAI_js.Breadcrumb; }
@@ -834,14 +868,6 @@ Object.defineProperty(exports, "buttonVariants", {
834
868
  enumerable: true,
835
869
  get: function () { return chunkYZTVHCLK_js.buttonVariants; }
836
870
  });
837
- Object.defineProperty(exports, "Banner", {
838
- enumerable: true,
839
- get: function () { return chunk6EG6EAHW_js.Banner; }
840
- });
841
- Object.defineProperty(exports, "bannerVariants", {
842
- enumerable: true,
843
- get: function () { return chunk6EG6EAHW_js.bannerVariants; }
844
- });
845
871
  Object.defineProperty(exports, "Card", {
846
872
  enumerable: true,
847
873
  get: function () { return chunkZAUYE2EI_js.Card; }
@@ -870,17 +896,29 @@ Object.defineProperty(exports, "cardVariants", {
870
896
  enumerable: true,
871
897
  get: function () { return chunkZAUYE2EI_js.cardVariants; }
872
898
  });
873
- Object.defineProperty(exports, "CardList", {
874
- enumerable: true,
875
- get: function () { return chunkMY6BYO5F_js.CardList; }
876
- });
877
899
  Object.defineProperty(exports, "Accordion", {
878
900
  enumerable: true,
879
901
  get: function () { return chunkMCF3EQTV_js.Accordion; }
880
902
  });
881
- Object.defineProperty(exports, "Alert", {
903
+ Object.defineProperty(exports, "ActiveStayCard", {
882
904
  enumerable: true,
883
- get: function () { return chunkWBRVUWGC_js.Alert; }
905
+ get: function () { return chunkG3LZ32WA_js.ActiveStayCard; }
906
+ });
907
+ Object.defineProperty(exports, "DOG_AVATAR_COLORS", {
908
+ enumerable: true,
909
+ get: function () { return chunkHB2XJOBZ_js.DOG_AVATAR_COLORS; }
910
+ });
911
+ Object.defineProperty(exports, "DogAvatar", {
912
+ enumerable: true,
913
+ get: function () { return chunkHB2XJOBZ_js.DogAvatar; }
914
+ });
915
+ Object.defineProperty(exports, "DogAvatarStack", {
916
+ enumerable: true,
917
+ get: function () { return chunkHB2XJOBZ_js.DogAvatarStack; }
918
+ });
919
+ Object.defineProperty(exports, "dogAvatarColor", {
920
+ enumerable: true,
921
+ get: function () { return chunkHB2XJOBZ_js.dogAvatarColor; }
884
922
  });
885
923
  Object.defineProperty(exports, "AnchorTabs", {
886
924
  enumerable: true,