@dododog/ui 0.14.1 → 0.15.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 (53) hide show
  1. package/dist/chunk-5KOWMIWK.mjs +110 -0
  2. package/dist/{chunk-MCF3EQTV.js → chunk-73BHQJW6.js} +13 -1
  3. package/dist/{chunk-U3XWNFHH.js → chunk-A3M3XQ35.js} +96 -29
  4. package/dist/chunk-BKM5VCUS.mjs +569 -0
  5. package/dist/{chunk-333YD5QI.mjs → chunk-EAATIFYL.mjs} +40 -6
  6. package/dist/chunk-FLKEMER2.js +592 -0
  7. package/dist/{chunk-I4S3R6C6.js → chunk-JUB3NGJR.js} +51 -6
  8. package/dist/chunk-JWQ2OUEG.js +132 -0
  9. package/dist/{chunk-3R7PT3JG.js → chunk-LJSMPON7.js} +40 -6
  10. package/dist/{chunk-DMCMWOBJ.mjs → chunk-PBXH4I5N.mjs} +51 -6
  11. package/dist/{chunk-ERL3WXNY.mjs → chunk-PZZWQ6IG.mjs} +5 -5
  12. package/dist/{chunk-GBWVIY3C.mjs → chunk-UJEIFKSK.mjs} +96 -29
  13. package/dist/chunk-WY24TZ4R.mjs +94 -0
  14. package/dist/chunk-XBNIHUSG.js +116 -0
  15. package/dist/{chunk-TDGU5Y2P.js → chunk-XOFTU3T7.js} +5 -5
  16. package/dist/{chunk-NZ7GF6RF.mjs → chunk-YOMOULLR.mjs} +13 -1
  17. package/dist/components/Accordion/index.js +2 -2
  18. package/dist/components/Accordion/index.mjs +1 -1
  19. package/dist/components/Counter/index.d.mts +12 -0
  20. package/dist/components/Counter/index.d.ts +12 -0
  21. package/dist/components/Counter/index.js +2 -2
  22. package/dist/components/Counter/index.mjs +1 -1
  23. package/dist/components/DateRangePicker/index.d.mts +7 -1
  24. package/dist/components/DateRangePicker/index.d.ts +7 -1
  25. package/dist/components/DateRangePicker/index.js +3 -3
  26. package/dist/components/DateRangePicker/index.mjs +1 -1
  27. package/dist/components/Drawer/index.d.mts +21 -1
  28. package/dist/components/Drawer/index.d.ts +21 -1
  29. package/dist/components/Drawer/index.js +2 -2
  30. package/dist/components/Drawer/index.mjs +1 -1
  31. package/dist/components/DualRangeSlider/index.js +2 -2
  32. package/dist/components/DualRangeSlider/index.mjs +1 -1
  33. package/dist/components/Lightbox/index.d.mts +2 -0
  34. package/dist/components/Lightbox/index.d.ts +2 -0
  35. package/dist/components/Lightbox/index.js +2 -2
  36. package/dist/components/Lightbox/index.mjs +1 -1
  37. package/dist/components/Select/index.d.mts +8 -0
  38. package/dist/components/Select/index.d.ts +8 -0
  39. package/dist/components/Select/index.js +3 -3
  40. package/dist/components/Select/index.mjs +1 -1
  41. package/dist/components/Switch/index.d.mts +41 -1
  42. package/dist/components/Switch/index.d.ts +41 -1
  43. package/dist/components/Switch/index.js +4 -4
  44. package/dist/components/Switch/index.mjs +1 -1
  45. package/dist/index.js +47 -47
  46. package/dist/index.mjs +15 -15
  47. package/package.json +1 -1
  48. package/dist/chunk-AIA3NHCK.js +0 -373
  49. package/dist/chunk-FL3GD5FJ.mjs +0 -350
  50. package/dist/chunk-LRNSVRUN.mjs +0 -55
  51. package/dist/chunk-T4AT3YCT.js +0 -77
  52. package/dist/chunk-VWFY24XF.js +0 -89
  53. package/dist/chunk-ZLF7IL3Y.mjs +0 -67
@@ -8,15 +8,55 @@ declare const switchTrackVariants: (props?: ({
8
8
  declare const switchThumbVariants: (props?: ({
9
9
  size?: "sm" | "md" | null | undefined;
10
10
  } & class_variance_authority_types.ClassProp) | undefined) => string;
11
- interface SwitchProps extends VariantProps<typeof switchTrackVariants> {
11
+ interface SwitchBaseProps extends VariantProps<typeof switchTrackVariants> {
12
12
  checked?: boolean;
13
13
  onCheckedChange?: (checked: boolean) => void;
14
14
  disabled?: boolean;
15
+ /**
16
+ * Libelle visible. C'est la maniere PRIVILEGIEE de nommer un switch : il est
17
+ * rendu dans un `<label>` relie au bouton.
18
+ */
15
19
  label?: string;
16
20
  description?: string;
17
21
  className?: string;
22
+ /** Nom du champ de formulaire (rend un input cache). */
18
23
  name?: string;
24
+ /** Id du bouton. Genere automatiquement si absent. */
25
+ id?: string;
26
+ /**
27
+ * Nom accessible quand aucun `label` visible n'est rendu (le texte est deja
28
+ * porte par un titre voisin, par exemple).
29
+ */
30
+ "aria-label"?: string;
31
+ /** Id d'un texte deja present dans la page qui sert de nom accessible. */
32
+ "aria-labelledby"?: string;
33
+ /** Id(s) d'un texte descriptif externe, compose avec `description`. */
34
+ "aria-describedby"?: string;
19
35
  }
36
+ /**
37
+ * Au moins UNE source de nom accessible est obligatoire. La contrainte est
38
+ * portee par le type, pas seulement par une convention : un switch sans nom ne
39
+ * compile plus. `name` reste accepte parce que la version publiee de la lib en
40
+ * derive deja l'`aria-label`, et que les appelants s'en servent.
41
+ */
42
+ type SwitchAccessibleNameProps = {
43
+ label: string;
44
+ } | {
45
+ "aria-label": string;
46
+ } | {
47
+ "aria-labelledby": string;
48
+ } | {
49
+ name: string;
50
+ };
51
+ type SwitchProps = SwitchBaseProps & SwitchAccessibleNameProps;
52
+ /**
53
+ * Un switch DOIT avoir un nom accessible. Les quatre sources acceptees, par
54
+ * ordre de priorite : `label`, `aria-labelledby`, `aria-label`, `name`.
55
+ *
56
+ * La contrainte est appliquee par le TYPE (`SwitchAccessibleNameProps`) : un
57
+ * `<Switch />` nu ne compile pas. L'avertissement en developpement reste le
58
+ * filet des consommateurs JavaScript, qui n'ont pas de verification de types.
59
+ */
20
60
  declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
21
61
 
22
62
  export { Switch, type SwitchProps, switchThumbVariants, switchTrackVariants };
@@ -1,19 +1,19 @@
1
1
  'use strict';
2
2
 
3
- var chunkI4S3R6C6_js = require('../../chunk-I4S3R6C6.js');
3
+ var chunkJUB3NGJR_js = require('../../chunk-JUB3NGJR.js');
4
4
  require('../../chunk-ADIDI7AJ.js');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "Switch", {
9
9
  enumerable: true,
10
- get: function () { return chunkI4S3R6C6_js.Switch; }
10
+ get: function () { return chunkJUB3NGJR_js.Switch; }
11
11
  });
12
12
  Object.defineProperty(exports, "switchThumbVariants", {
13
13
  enumerable: true,
14
- get: function () { return chunkI4S3R6C6_js.switchThumbVariants; }
14
+ get: function () { return chunkJUB3NGJR_js.switchThumbVariants; }
15
15
  });
16
16
  Object.defineProperty(exports, "switchTrackVariants", {
17
17
  enumerable: true,
18
- get: function () { return chunkI4S3R6C6_js.switchTrackVariants; }
18
+ get: function () { return chunkJUB3NGJR_js.switchTrackVariants; }
19
19
  });
@@ -1,2 +1,2 @@
1
- export { Switch, switchThumbVariants, switchTrackVariants } from '../../chunk-DMCMWOBJ.mjs';
1
+ export { Switch, switchThumbVariants, switchTrackVariants } from '../../chunk-PBXH4I5N.mjs';
2
2
  import '../../chunk-IMKLN273.mjs';
package/dist/index.js CHANGED
@@ -13,65 +13,65 @@ var chunkCWXP2ZI2_js = require('./chunk-CWXP2ZI2.js');
13
13
  var chunkDFXXGKMI_js = require('./chunk-DFXXGKMI.js');
14
14
  var chunkOTHB7MU7_js = require('./chunk-OTHB7MU7.js');
15
15
  var chunk3VU6TPAT_js = require('./chunk-3VU6TPAT.js');
16
- var chunkI4S3R6C6_js = require('./chunk-I4S3R6C6.js');
16
+ var chunkJUB3NGJR_js = require('./chunk-JUB3NGJR.js');
17
17
  var chunk762LQMWP_js = require('./chunk-762LQMWP.js');
18
18
  var chunk6KW7ZSKR_js = require('./chunk-6KW7ZSKR.js');
19
19
  var chunkSEHALSKW_js = require('./chunk-SEHALSKW.js');
20
- var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.js');
21
- var chunk3R7PT3JG_js = require('./chunk-3R7PT3JG.js');
22
20
  var chunkOGB5LIXN_js = require('./chunk-OGB5LIXN.js');
21
+ var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.js');
22
+ var chunkLJSMPON7_js = require('./chunk-LJSMPON7.js');
23
23
  var chunkDS4LM7OS_js = require('./chunk-DS4LM7OS.js');
24
24
  var chunkWXSBKARZ_js = require('./chunk-WXSBKARZ.js');
25
25
  var chunkSCGN5H6D_js = require('./chunk-SCGN5H6D.js');
26
26
  var chunkB4LR4H6R_js = require('./chunk-B4LR4H6R.js');
27
27
  var chunkPG4I4NWO_js = require('./chunk-PG4I4NWO.js');
28
- var chunkGXKON34B_js = require('./chunk-GXKON34B.js');
29
28
  var chunkPRDIS2VR_js = require('./chunk-PRDIS2VR.js');
29
+ var chunkGXKON34B_js = require('./chunk-GXKON34B.js');
30
30
  var chunkTZHT7NZU_js = require('./chunk-TZHT7NZU.js');
31
31
  var chunkKFQILIZO_js = require('./chunk-KFQILIZO.js');
32
32
  var chunkNCU5PY34_js = require('./chunk-NCU5PY34.js');
33
33
  var chunkHS3MAW3G_js = require('./chunk-HS3MAW3G.js');
34
34
  var chunkDFC6XK57_js = require('./chunk-DFC6XK57.js');
35
35
  var chunk5UNG2O64_js = require('./chunk-5UNG2O64.js');
36
- var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
36
+ var chunkA3M3XQ35_js = require('./chunk-A3M3XQ35.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
40
  var chunkKZSGVMUG_js = require('./chunk-KZSGVMUG.js');
41
41
  var chunkHH4X2JYO_js = require('./chunk-HH4X2JYO.js');
42
- var chunkZCQJN4IT_js = require('./chunk-ZCQJN4IT.js');
43
42
  var chunkEQPT6VZF_js = require('./chunk-EQPT6VZF.js');
44
43
  var chunkKOO5ZXLD_js = require('./chunk-KOO5ZXLD.js');
45
44
  var chunkIRKM5UF4_js = require('./chunk-IRKM5UF4.js');
45
+ var chunkS5TLUDNM_js = require('./chunk-S5TLUDNM.js');
46
46
  var chunkECVKFE6U_js = require('./chunk-ECVKFE6U.js');
47
47
  var chunkYN4HPIRC_js = require('./chunk-YN4HPIRC.js');
48
48
  var chunkMKOKWME3_js = require('./chunk-MKOKWME3.js');
49
49
  var chunkDLOHAW74_js = require('./chunk-DLOHAW74.js');
50
50
  var chunkBS7R7VDS_js = require('./chunk-BS7R7VDS.js');
51
- var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
51
+ var chunkJWQ2OUEG_js = require('./chunk-JWQ2OUEG.js');
52
52
  var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
53
53
  var chunkIEHX4DU6_js = require('./chunk-IEHX4DU6.js');
54
- var chunkTDGU5Y2P_js = require('./chunk-TDGU5Y2P.js');
55
- var chunkS5TLUDNM_js = require('./chunk-S5TLUDNM.js');
56
- var chunkTJDHGNMR_js = require('./chunk-TJDHGNMR.js');
54
+ var chunkXOFTU3T7_js = require('./chunk-XOFTU3T7.js');
57
55
  var chunk7W3TFPIF_js = require('./chunk-7W3TFPIF.js');
56
+ var chunkTJDHGNMR_js = require('./chunk-TJDHGNMR.js');
57
+ var chunkZCQJN4IT_js = require('./chunk-ZCQJN4IT.js');
58
58
  var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
59
59
  var chunkP7GAKOCX_js = require('./chunk-P7GAKOCX.js');
60
60
  var chunkIJIUUBFT_js = require('./chunk-IJIUUBFT.js');
61
- var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
62
- var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
61
+ var chunkXBNIHUSG_js = require('./chunk-XBNIHUSG.js');
62
+ var chunkFLKEMER2_js = require('./chunk-FLKEMER2.js');
63
63
  var chunkE24VNM6S_js = require('./chunk-E24VNM6S.js');
64
- require('./chunk-VNURXHKK.js');
65
64
  var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
65
+ require('./chunk-VNURXHKK.js');
66
66
  var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
67
67
  var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
68
68
  var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
69
- var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
70
69
  var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
70
+ var chunkPND5YKFN_js = require('./chunk-PND5YKFN.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');
74
- var chunkMCF3EQTV_js = require('./chunk-MCF3EQTV.js');
74
+ var chunk73BHQJW6_js = require('./chunk-73BHQJW6.js');
75
75
  var chunkG3LZ32WA_js = require('./chunk-G3LZ32WA.js');
76
76
  var chunkHB2XJOBZ_js = require('./chunk-HB2XJOBZ.js');
77
77
  var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
@@ -596,15 +596,15 @@ Object.defineProperty(exports, "Stepper", {
596
596
  });
597
597
  Object.defineProperty(exports, "Switch", {
598
598
  enumerable: true,
599
- get: function () { return chunkI4S3R6C6_js.Switch; }
599
+ get: function () { return chunkJUB3NGJR_js.Switch; }
600
600
  });
601
601
  Object.defineProperty(exports, "switchThumbVariants", {
602
602
  enumerable: true,
603
- get: function () { return chunkI4S3R6C6_js.switchThumbVariants; }
603
+ get: function () { return chunkJUB3NGJR_js.switchThumbVariants; }
604
604
  });
605
605
  Object.defineProperty(exports, "switchTrackVariants", {
606
606
  enumerable: true,
607
- get: function () { return chunkI4S3R6C6_js.switchTrackVariants; }
607
+ get: function () { return chunkJUB3NGJR_js.switchTrackVariants; }
608
608
  });
609
609
  Object.defineProperty(exports, "Tabs", {
610
610
  enumerable: true,
@@ -618,21 +618,21 @@ Object.defineProperty(exports, "SearchWidget", {
618
618
  enumerable: true,
619
619
  get: function () { return chunkSEHALSKW_js.SearchWidget; }
620
620
  });
621
+ Object.defineProperty(exports, "SectionHeader", {
622
+ enumerable: true,
623
+ get: function () { return chunkOGB5LIXN_js.SectionHeader; }
624
+ });
621
625
  Object.defineProperty(exports, "SegmentedControl", {
622
626
  enumerable: true,
623
627
  get: function () { return chunkQWDKSY6Y_js.SegmentedControl; }
624
628
  });
625
629
  Object.defineProperty(exports, "Select", {
626
630
  enumerable: true,
627
- get: function () { return chunk3R7PT3JG_js.Select; }
631
+ get: function () { return chunkLJSMPON7_js.Select; }
628
632
  });
629
633
  Object.defineProperty(exports, "selectVariants", {
630
634
  enumerable: true,
631
- get: function () { return chunk3R7PT3JG_js.selectVariants; }
632
- });
633
- Object.defineProperty(exports, "SectionHeader", {
634
- enumerable: true,
635
- get: function () { return chunkOGB5LIXN_js.SectionHeader; }
635
+ get: function () { return chunkLJSMPON7_js.selectVariants; }
636
636
  });
637
637
  Object.defineProperty(exports, "Sidebar", {
638
638
  enumerable: true,
@@ -666,10 +666,6 @@ Object.defineProperty(exports, "progressFillVariants", {
666
666
  enumerable: true,
667
667
  get: function () { return chunkPG4I4NWO_js.progressFillVariants; }
668
668
  });
669
- Object.defineProperty(exports, "RadioGroup", {
670
- enumerable: true,
671
- get: function () { return chunkGXKON34B_js.RadioGroup; }
672
- });
673
669
  Object.defineProperty(exports, "PromoBanner", {
674
670
  enumerable: true,
675
671
  get: function () { return chunkPRDIS2VR_js.PromoBanner; }
@@ -678,6 +674,10 @@ Object.defineProperty(exports, "promoBannerVariants", {
678
674
  enumerable: true,
679
675
  get: function () { return chunkPRDIS2VR_js.promoBannerVariants; }
680
676
  });
677
+ Object.defineProperty(exports, "RadioGroup", {
678
+ enumerable: true,
679
+ get: function () { return chunkGXKON34B_js.RadioGroup; }
680
+ });
681
681
  Object.defineProperty(exports, "Rating", {
682
682
  enumerable: true,
683
683
  get: function () { return chunkTZHT7NZU_js.Rating; }
@@ -724,7 +724,7 @@ Object.defineProperty(exports, "inputVariants", {
724
724
  });
725
725
  Object.defineProperty(exports, "Lightbox", {
726
726
  enumerable: true,
727
- get: function () { return chunkU3XWNFHH_js.Lightbox; }
727
+ get: function () { return chunkA3M3XQ35_js.Lightbox; }
728
728
  });
729
729
  Object.defineProperty(exports, "LinkCard", {
730
730
  enumerable: true,
@@ -746,10 +746,6 @@ Object.defineProperty(exports, "Modal", {
746
746
  enumerable: true,
747
747
  get: function () { return chunkHH4X2JYO_js.Modal; }
748
748
  });
749
- Object.defineProperty(exports, "FloatingDock", {
750
- enumerable: true,
751
- get: function () { return chunkZCQJN4IT_js.FloatingDock; }
752
- });
753
749
  Object.defineProperty(exports, "Footer", {
754
750
  enumerable: true,
755
751
  get: function () { return chunkEQPT6VZF_js.Footer; }
@@ -762,6 +758,10 @@ Object.defineProperty(exports, "Header", {
762
758
  enumerable: true,
763
759
  get: function () { return chunkIRKM5UF4_js.Header; }
764
760
  });
761
+ Object.defineProperty(exports, "ErrorBoundary", {
762
+ enumerable: true,
763
+ get: function () { return chunkS5TLUDNM_js.ErrorBoundary; }
764
+ });
765
765
  Object.defineProperty(exports, "HotelCard", {
766
766
  enumerable: true,
767
767
  get: function () { return chunkECVKFE6U_js.HotelCard; }
@@ -788,7 +788,7 @@ Object.defineProperty(exports, "DogCard", {
788
788
  });
789
789
  Object.defineProperty(exports, "Drawer", {
790
790
  enumerable: true,
791
- get: function () { return chunkVWFY24XF_js.Drawer; }
791
+ get: function () { return chunkJWQ2OUEG_js.Drawer; }
792
792
  });
793
793
  Object.defineProperty(exports, "DropdownMenu", {
794
794
  enumerable: true,
@@ -800,19 +800,19 @@ Object.defineProperty(exports, "EmptyState", {
800
800
  });
801
801
  Object.defineProperty(exports, "DualRangeSlider", {
802
802
  enumerable: true,
803
- get: function () { return chunkTDGU5Y2P_js.DualRangeSlider; }
803
+ get: function () { return chunkXOFTU3T7_js.DualRangeSlider; }
804
804
  });
805
- Object.defineProperty(exports, "ErrorBoundary", {
805
+ Object.defineProperty(exports, "FilterAccordion", {
806
806
  enumerable: true,
807
- get: function () { return chunkS5TLUDNM_js.ErrorBoundary; }
807
+ get: function () { return chunk7W3TFPIF_js.FilterAccordion; }
808
808
  });
809
809
  Object.defineProperty(exports, "FilterPill", {
810
810
  enumerable: true,
811
811
  get: function () { return chunkTJDHGNMR_js.FilterPill; }
812
812
  });
813
- Object.defineProperty(exports, "FilterAccordion", {
813
+ Object.defineProperty(exports, "FloatingDock", {
814
814
  enumerable: true,
815
- get: function () { return chunk7W3TFPIF_js.FilterAccordion; }
815
+ get: function () { return chunkZCQJN4IT_js.FloatingDock; }
816
816
  });
817
817
  Object.defineProperty(exports, "CardList", {
818
818
  enumerable: true,
@@ -828,15 +828,15 @@ Object.defineProperty(exports, "Checkbox", {
828
828
  });
829
829
  Object.defineProperty(exports, "Counter", {
830
830
  enumerable: true,
831
- get: function () { return chunkT4AT3YCT_js.Counter; }
831
+ get: function () { return chunkXBNIHUSG_js.Counter; }
832
832
  });
833
833
  Object.defineProperty(exports, "DatePickerInput", {
834
834
  enumerable: true,
835
- get: function () { return chunkAIA3NHCK_js.DatePickerInput; }
835
+ get: function () { return chunkFLKEMER2_js.DatePickerInput; }
836
836
  });
837
837
  Object.defineProperty(exports, "DateRangePicker", {
838
838
  enumerable: true,
839
- get: function () { return chunkAIA3NHCK_js.DateRangePicker; }
839
+ get: function () { return chunkFLKEMER2_js.DateRangePicker; }
840
840
  });
841
841
  Object.defineProperty(exports, "DetailList", {
842
842
  enumerable: true,
@@ -866,10 +866,6 @@ Object.defineProperty(exports, "badgeVariants", {
866
866
  enumerable: true,
867
867
  get: function () { return chunkZ5S7LHMY_js.badgeVariants; }
868
868
  });
869
- Object.defineProperty(exports, "BottomNavBar", {
870
- enumerable: true,
871
- get: function () { return chunkPND5YKFN_js.BottomNavBar; }
872
- });
873
869
  Object.defineProperty(exports, "Banner", {
874
870
  enumerable: true,
875
871
  get: function () { return chunk6EG6EAHW_js.Banner; }
@@ -878,6 +874,10 @@ Object.defineProperty(exports, "bannerVariants", {
878
874
  enumerable: true,
879
875
  get: function () { return chunk6EG6EAHW_js.bannerVariants; }
880
876
  });
877
+ Object.defineProperty(exports, "BottomNavBar", {
878
+ enumerable: true,
879
+ get: function () { return chunkPND5YKFN_js.BottomNavBar; }
880
+ });
881
881
  Object.defineProperty(exports, "Breadcrumb", {
882
882
  enumerable: true,
883
883
  get: function () { return chunkH3JNRTAI_js.Breadcrumb; }
@@ -924,7 +924,7 @@ Object.defineProperty(exports, "cardVariants", {
924
924
  });
925
925
  Object.defineProperty(exports, "Accordion", {
926
926
  enumerable: true,
927
- get: function () { return chunkMCF3EQTV_js.Accordion; }
927
+ get: function () { return chunk73BHQJW6_js.Accordion; }
928
928
  });
929
929
  Object.defineProperty(exports, "ActiveStayCard", {
930
930
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -11,65 +11,65 @@ export { StatTile } from './chunk-ZEPXWD6U.mjs';
11
11
  export { StatusBadge, statusBadgeVariants } from './chunk-FZ7UNXSC.mjs';
12
12
  export { StayListRow } from './chunk-IVCQVBOT.mjs';
13
13
  export { Stepper } from './chunk-2ASKBL63.mjs';
14
- export { Switch, switchThumbVariants, switchTrackVariants } from './chunk-DMCMWOBJ.mjs';
14
+ export { Switch, switchThumbVariants, switchTrackVariants } from './chunk-PBXH4I5N.mjs';
15
15
  export { Tabs } from './chunk-VOZPGXQD.mjs';
16
16
  export { SearchLoadingChecklist } from './chunk-SRYZ4N7T.mjs';
17
17
  export { SearchWidget } from './chunk-DUT3ABEI.mjs';
18
- export { SegmentedControl } from './chunk-36Y7UU32.mjs';
19
- export { Select, selectVariants } from './chunk-333YD5QI.mjs';
20
18
  export { SectionHeader } from './chunk-DM76AK4A.mjs';
19
+ export { SegmentedControl } from './chunk-36Y7UU32.mjs';
20
+ export { Select, selectVariants } from './chunk-EAATIFYL.mjs';
21
21
  export { Sidebar } from './chunk-MPL35D5G.mjs';
22
22
  export { SignInCallout, signInCalloutVariants } from './chunk-Z3KRMKHP.mjs';
23
23
  export { Pagination } from './chunk-XQVODPHL.mjs';
24
24
  export { PriceDisplay } from './chunk-REXLQTNE.mjs';
25
25
  export { ProgressBar, progressBarVariants, progressFillVariants } from './chunk-UGYMWWKT.mjs';
26
- export { RadioGroup } from './chunk-F2BUMJYW.mjs';
27
26
  export { PromoBanner, promoBannerVariants } from './chunk-FNDR3WOZ.mjs';
27
+ export { RadioGroup } from './chunk-F2BUMJYW.mjs';
28
28
  export { Rating } from './chunk-SGDC4IVX.mjs';
29
29
  export { RoomTypeCard, RoomTypeCardSkeleton } from './chunk-IGBEBAPY.mjs';
30
30
  export { Skeleton, SkeletonCircle, SkeletonImage, SkeletonText } from './chunk-PAHSQMXV.mjs';
31
31
  export { SearchBar } from './chunk-KQK7LFWM.mjs';
32
32
  export { ImpactCard } from './chunk-IKQYFSBW.mjs';
33
33
  export { Input, inputVariants } from './chunk-JWOV5H6G.mjs';
34
- export { Lightbox } from './chunk-GBWVIY3C.mjs';
34
+ export { Lightbox } from './chunk-UJEIFKSK.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
38
  export { MobileMenu } from './chunk-R4DC7XPP.mjs';
39
39
  export { Modal } from './chunk-N5ZNXNCO.mjs';
40
- export { FloatingDock } from './chunk-P2SGBTKS.mjs';
41
40
  export { Footer } from './chunk-4DHZ6MIL.mjs';
42
41
  export { GuestPicker } from './chunk-EJ7LDW7E.mjs';
43
42
  export { Header } from './chunk-PPDKQ3FF.mjs';
43
+ export { ErrorBoundary } from './chunk-5257MWFI.mjs';
44
44
  export { HotelCard } from './chunk-XSSRFA5O.mjs';
45
45
  export { IconBadge, iconBadgeVariants } from './chunk-I4WCNTNP.mjs';
46
46
  export { ImageGallery } from './chunk-QU6ZRLKO.mjs';
47
47
  export { ImageWithFallback } from './chunk-BUXVK2HE.mjs';
48
48
  export { DogCard } from './chunk-4A3AQ66D.mjs';
49
- export { Drawer } from './chunk-ZLF7IL3Y.mjs';
49
+ export { Drawer } from './chunk-5KOWMIWK.mjs';
50
50
  export { DropdownMenu } from './chunk-Q7BKR6O7.mjs';
51
51
  export { EmptyState } from './chunk-OCUHCDAQ.mjs';
52
- export { DualRangeSlider } from './chunk-ERL3WXNY.mjs';
53
- export { ErrorBoundary } from './chunk-5257MWFI.mjs';
54
- export { FilterPill } from './chunk-YKBASX5A.mjs';
52
+ export { DualRangeSlider } from './chunk-PZZWQ6IG.mjs';
55
53
  export { FilterAccordion } from './chunk-VQVRKRSM.mjs';
54
+ export { FilterPill } from './chunk-YKBASX5A.mjs';
55
+ export { FloatingDock } from './chunk-P2SGBTKS.mjs';
56
56
  export { CardList } from './chunk-RJWHPHHX.mjs';
57
57
  export { Carousel } from './chunk-OOPP4ES2.mjs';
58
58
  export { Checkbox } from './chunk-EEIPCJQ2.mjs';
59
- export { Counter } from './chunk-LRNSVRUN.mjs';
60
- export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
59
+ export { Counter } from './chunk-WY24TZ4R.mjs';
60
+ export { DatePickerInput, DateRangePicker } from './chunk-BKM5VCUS.mjs';
61
61
  export { DetailList } from './chunk-N6THLJIG.mjs';
62
- import './chunk-OZULAGYL.mjs';
63
62
  export { Divider } from './chunk-E4B6LXK7.mjs';
63
+ import './chunk-OZULAGYL.mjs';
64
64
  export { Autocomplete, autocompleteInputVariants } from './chunk-B47HQHX3.mjs';
65
65
  export { Avatar } from './chunk-2POGTS27.mjs';
66
66
  export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
67
- export { BottomNavBar } from './chunk-UQRQZLMQ.mjs';
68
67
  export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
68
+ export { BottomNavBar } from './chunk-UQRQZLMQ.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';
72
- export { Accordion } from './chunk-NZ7GF6RF.mjs';
72
+ export { Accordion } from './chunk-YOMOULLR.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 { Alert } from './chunk-BQWVWK74.mjs';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dododog/ui",
3
- "version": "0.14.1",
3
+ "version": "0.15.0",
4
4
  "description": "React UI component library for ToutouTrip — pet-friendly travel platform",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",