@dododog/ui 0.6.4 → 0.7.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.
@@ -25,7 +25,7 @@ function _interopNamespace(e) {
25
25
  var React__namespace = /*#__PURE__*/_interopNamespace(React);
26
26
 
27
27
  var FilterPill = React__namespace.forwardRef(
28
- ({ label, isActive = false, count, onClear, children, className }, ref) => {
28
+ ({ label, isActive = false, count, onClear, children, className, onToggle }, ref) => {
29
29
  const [isOpen, setIsOpen] = React__namespace.useState(false);
30
30
  const containerRef = React__namespace.useRef(null);
31
31
  React__namespace.useEffect(() => {
@@ -42,9 +42,10 @@ var FilterPill = React__namespace.forwardRef(
42
42
  "button",
43
43
  {
44
44
  type: "button",
45
- onClick: () => setIsOpen(!isOpen),
45
+ onClick: onToggle ?? (() => setIsOpen(!isOpen)),
46
+ "aria-pressed": onToggle ? isActive : void 0,
46
47
  className: chunkADIDI7AJ_js.cn(
47
- "inline-flex items-center gap-1.5 px-3 py-2 text-sm font-medium rounded-full border transition-all",
48
+ "inline-flex min-h-[44px] items-center gap-1.5 px-3 py-2 text-sm font-medium rounded-full border transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-2 active:opacity-70",
48
49
  isActive ? "bg-primary text-white border-primary" : "bg-white text-gray-700 border-gray-200 hover:border-gray-300"
49
50
  ),
50
51
  children: [
@@ -53,7 +54,7 @@ var FilterPill = React__namespace.forwardRef(
53
54
  "inline-flex items-center justify-center w-5 h-5 text-xs rounded-full",
54
55
  isActive ? "bg-white/20 text-white" : "bg-gray-100 text-gray-600"
55
56
  ), children: count }),
56
- /* @__PURE__ */ jsxRuntime.jsx(
57
+ !onToggle && /* @__PURE__ */ jsxRuntime.jsx(
57
58
  "svg",
58
59
  {
59
60
  xmlns: "http://www.w3.org/2000/svg",
@@ -3,7 +3,7 @@ import * as React from 'react';
3
3
  import { jsx, jsxs } from 'react/jsx-runtime';
4
4
 
5
5
  var FilterPill = React.forwardRef(
6
- ({ label, isActive = false, count, onClear, children, className }, ref) => {
6
+ ({ label, isActive = false, count, onClear, children, className, onToggle }, ref) => {
7
7
  const [isOpen, setIsOpen] = React.useState(false);
8
8
  const containerRef = React.useRef(null);
9
9
  React.useEffect(() => {
@@ -20,9 +20,10 @@ var FilterPill = React.forwardRef(
20
20
  "button",
21
21
  {
22
22
  type: "button",
23
- onClick: () => setIsOpen(!isOpen),
23
+ onClick: onToggle ?? (() => setIsOpen(!isOpen)),
24
+ "aria-pressed": onToggle ? isActive : void 0,
24
25
  className: cn(
25
- "inline-flex items-center gap-1.5 px-3 py-2 text-sm font-medium rounded-full border transition-all",
26
+ "inline-flex min-h-[44px] items-center gap-1.5 px-3 py-2 text-sm font-medium rounded-full border transition-all focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-2 active:opacity-70",
26
27
  isActive ? "bg-primary text-white border-primary" : "bg-white text-gray-700 border-gray-200 hover:border-gray-300"
27
28
  ),
28
29
  children: [
@@ -31,7 +32,7 @@ var FilterPill = React.forwardRef(
31
32
  "inline-flex items-center justify-center w-5 h-5 text-xs rounded-full",
32
33
  isActive ? "bg-white/20 text-white" : "bg-gray-100 text-gray-600"
33
34
  ), children: count }),
34
- /* @__PURE__ */ jsx(
35
+ !onToggle && /* @__PURE__ */ jsx(
35
36
  "svg",
36
37
  {
37
38
  xmlns: "http://www.w3.org/2000/svg",
@@ -7,6 +7,12 @@ interface FilterPillProps {
7
7
  onClear?: () => void;
8
8
  children?: React.ReactNode;
9
9
  className?: string;
10
+ /**
11
+ * Mode TOGGLE (additif) : quand fourni, le clic bascule le filtre au lieu
12
+ * d'ouvrir un dropdown — le chevron disparaît et l'état est exposé via
13
+ * `aria-pressed`. Utilisé par les filtres de la section chambres (fiche V2).
14
+ */
15
+ onToggle?: () => void;
10
16
  }
11
17
  declare const FilterPill: React.ForwardRefExoticComponent<FilterPillProps & React.RefAttributes<HTMLDivElement>>;
12
18
 
@@ -7,6 +7,12 @@ interface FilterPillProps {
7
7
  onClear?: () => void;
8
8
  children?: React.ReactNode;
9
9
  className?: string;
10
+ /**
11
+ * Mode TOGGLE (additif) : quand fourni, le clic bascule le filtre au lieu
12
+ * d'ouvrir un dropdown — le chevron disparaît et l'état est exposé via
13
+ * `aria-pressed`. Utilisé par les filtres de la section chambres (fiche V2).
14
+ */
15
+ onToggle?: () => void;
10
16
  }
11
17
  declare const FilterPill: React.ForwardRefExoticComponent<FilterPillProps & React.RefAttributes<HTMLDivElement>>;
12
18
 
@@ -1,11 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var chunkN2Q4Z2FU_js = require('../../chunk-N2Q4Z2FU.js');
3
+ var chunkTJDHGNMR_js = require('../../chunk-TJDHGNMR.js');
4
4
  require('../../chunk-ADIDI7AJ.js');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "FilterPill", {
9
9
  enumerable: true,
10
- get: function () { return chunkN2Q4Z2FU_js.FilterPill; }
10
+ get: function () { return chunkTJDHGNMR_js.FilterPill; }
11
11
  });
@@ -1,2 +1,2 @@
1
- export { FilterPill } from '../../chunk-TNWMTKNR.mjs';
1
+ export { FilterPill } from '../../chunk-YKBASX5A.mjs';
2
2
  import '../../chunk-IMKLN273.mjs';
package/dist/index.js CHANGED
@@ -1,8 +1,8 @@
1
1
  'use strict';
2
2
 
3
3
  var chunkVTELEOT7_js = require('./chunk-VTELEOT7.js');
4
- var chunkDTIYZ3TQ_js = require('./chunk-DTIYZ3TQ.js');
5
4
  var chunkE6ZNND75_js = require('./chunk-E6ZNND75.js');
5
+ var chunkDTIYZ3TQ_js = require('./chunk-DTIYZ3TQ.js');
6
6
  var chunkN3JU7JS7_js = require('./chunk-N3JU7JS7.js');
7
7
  var chunkXHRDPJTF_js = require('./chunk-XHRDPJTF.js');
8
8
  var chunkTT7L3ZU7_js = require('./chunk-TT7L3ZU7.js');
@@ -20,8 +20,8 @@ var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.js');
20
20
  var chunk3R7PT3JG_js = require('./chunk-3R7PT3JG.js');
21
21
  var chunkDS4LM7OS_js = require('./chunk-DS4LM7OS.js');
22
22
  var chunkNCU5PY34_js = require('./chunk-NCU5PY34.js');
23
- var chunkTE4WHZ4Q_js = require('./chunk-TE4WHZ4Q.js');
24
23
  var chunkHN6B4TAW_js = require('./chunk-HN6B4TAW.js');
24
+ var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
25
25
  var chunkKZSGVMUG_js = require('./chunk-KZSGVMUG.js');
26
26
  var chunkNBDPT3XQ_js = require('./chunk-NBDPT3XQ.js');
27
27
  var chunkSCGN5H6D_js = require('./chunk-SCGN5H6D.js');
@@ -35,35 +35,35 @@ var chunkMKOKWME3_js = require('./chunk-MKOKWME3.js');
35
35
  var chunkDLOHAW74_js = require('./chunk-DLOHAW74.js');
36
36
  var chunk77WKG2D7_js = require('./chunk-77WKG2D7.js');
37
37
  var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
38
- var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
38
+ var chunkTE4WHZ4Q_js = require('./chunk-TE4WHZ4Q.js');
39
39
  var chunkTDGU5Y2P_js = require('./chunk-TDGU5Y2P.js');
40
40
  var chunkIEHX4DU6_js = require('./chunk-IEHX4DU6.js');
41
41
  var chunkS5TLUDNM_js = require('./chunk-S5TLUDNM.js');
42
42
  var chunk7W3TFPIF_js = require('./chunk-7W3TFPIF.js');
43
- var chunkN2Q4Z2FU_js = require('./chunk-N2Q4Z2FU.js');
43
+ var chunkTJDHGNMR_js = require('./chunk-TJDHGNMR.js');
44
44
  var chunkS732LTPT_js = require('./chunk-S732LTPT.js');
45
45
  var chunkC4RZBOKH_js = require('./chunk-C4RZBOKH.js');
46
46
  var chunkKOO5ZXLD_js = require('./chunk-KOO5ZXLD.js');
47
47
  var chunkP7GAKOCX_js = require('./chunk-P7GAKOCX.js');
48
- var chunkIJIUUBFT_js = require('./chunk-IJIUUBFT.js');
49
48
  var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
50
- var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
49
+ var chunkIJIUUBFT_js = require('./chunk-IJIUUBFT.js');
51
50
  var chunkE24VNM6S_js = require('./chunk-E24VNM6S.js');
51
+ var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
52
52
  var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
53
53
  var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
54
54
  var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
55
- var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
56
- var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
57
- var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
55
+ var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
56
+ var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
58
57
  var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
59
- var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
58
+ var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
60
59
  var chunkYZTVHCLK_js = require('./chunk-YZTVHCLK.js');
60
+ var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
61
61
  var chunkZAUYE2EI_js = require('./chunk-ZAUYE2EI.js');
62
62
  var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
63
63
  var chunkMCF3EQTV_js = require('./chunk-MCF3EQTV.js');
64
- var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
65
64
  var chunkWXEZA6NE_js = require('./chunk-WXEZA6NE.js');
66
- var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
65
+ var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
66
+ var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
67
67
  var chunkADIDI7AJ_js = require('./chunk-ADIDI7AJ.js');
68
68
  var React = require('react');
69
69
  var classVarianceAuthority = require('class-variance-authority');
@@ -492,14 +492,14 @@ Object.defineProperty(exports, "toastVariants", {
492
492
  enumerable: true,
493
493
  get: function () { return chunkVTELEOT7_js.toastVariants; }
494
494
  });
495
- Object.defineProperty(exports, "Toggle", {
496
- enumerable: true,
497
- get: function () { return chunkDTIYZ3TQ_js.Toggle; }
498
- });
499
495
  Object.defineProperty(exports, "Tooltip", {
500
496
  enumerable: true,
501
497
  get: function () { return chunkE6ZNND75_js.Tooltip; }
502
498
  });
499
+ Object.defineProperty(exports, "Toggle", {
500
+ enumerable: true,
501
+ get: function () { return chunkDTIYZ3TQ_js.Toggle; }
502
+ });
503
503
  Object.defineProperty(exports, "VerticalMarquee", {
504
504
  enumerable: true,
505
505
  get: function () { return chunkN3JU7JS7_js.VerticalMarquee; }
@@ -612,14 +612,14 @@ Object.defineProperty(exports, "SkeletonText", {
612
612
  enumerable: true,
613
613
  get: function () { return chunkNCU5PY34_js.SkeletonText; }
614
614
  });
615
- Object.defineProperty(exports, "LoadingOverlay", {
616
- enumerable: true,
617
- get: function () { return chunkTE4WHZ4Q_js.LoadingOverlay; }
618
- });
619
615
  Object.defineProperty(exports, "MegaMenu", {
620
616
  enumerable: true,
621
617
  get: function () { return chunkHN6B4TAW_js.MegaMenu; }
622
618
  });
619
+ Object.defineProperty(exports, "LinkCard", {
620
+ enumerable: true,
621
+ get: function () { return chunkW7DZZS6L_js.LinkCard; }
622
+ });
623
623
  Object.defineProperty(exports, "MobileMenu", {
624
624
  enumerable: true,
625
625
  get: function () { return chunkKZSGVMUG_js.MobileMenu; }
@@ -692,9 +692,9 @@ Object.defineProperty(exports, "Lightbox", {
692
692
  enumerable: true,
693
693
  get: function () { return chunkU3XWNFHH_js.Lightbox; }
694
694
  });
695
- Object.defineProperty(exports, "LinkCard", {
695
+ Object.defineProperty(exports, "LoadingOverlay", {
696
696
  enumerable: true,
697
- get: function () { return chunkW7DZZS6L_js.LinkCard; }
697
+ get: function () { return chunkTE4WHZ4Q_js.LoadingOverlay; }
698
698
  });
699
699
  Object.defineProperty(exports, "DualRangeSlider", {
700
700
  enumerable: true,
@@ -714,7 +714,7 @@ Object.defineProperty(exports, "FilterAccordion", {
714
714
  });
715
715
  Object.defineProperty(exports, "FilterPill", {
716
716
  enumerable: true,
717
- get: function () { return chunkN2Q4Z2FU_js.FilterPill; }
717
+ get: function () { return chunkTJDHGNMR_js.FilterPill; }
718
718
  });
719
719
  Object.defineProperty(exports, "FloatingDock", {
720
720
  enumerable: true,
@@ -732,13 +732,17 @@ Object.defineProperty(exports, "Carousel", {
732
732
  enumerable: true,
733
733
  get: function () { return chunkP7GAKOCX_js.Carousel; }
734
734
  });
735
+ Object.defineProperty(exports, "Counter", {
736
+ enumerable: true,
737
+ get: function () { return chunkT4AT3YCT_js.Counter; }
738
+ });
735
739
  Object.defineProperty(exports, "Checkbox", {
736
740
  enumerable: true,
737
741
  get: function () { return chunkIJIUUBFT_js.Checkbox; }
738
742
  });
739
- Object.defineProperty(exports, "Counter", {
743
+ Object.defineProperty(exports, "DetailList", {
740
744
  enumerable: true,
741
- get: function () { return chunkT4AT3YCT_js.Counter; }
745
+ get: function () { return chunkE24VNM6S_js.DetailList; }
742
746
  });
743
747
  Object.defineProperty(exports, "DatePickerInput", {
744
748
  enumerable: true,
@@ -748,10 +752,6 @@ Object.defineProperty(exports, "DateRangePicker", {
748
752
  enumerable: true,
749
753
  get: function () { return chunkAIA3NHCK_js.DateRangePicker; }
750
754
  });
751
- Object.defineProperty(exports, "DetailList", {
752
- enumerable: true,
753
- get: function () { return chunkE24VNM6S_js.DetailList; }
754
- });
755
755
  Object.defineProperty(exports, "Divider", {
756
756
  enumerable: true,
757
757
  get: function () { return chunkXXC2YD3D_js.Divider; }
@@ -764,17 +764,21 @@ Object.defineProperty(exports, "DropdownMenu", {
764
764
  enumerable: true,
765
765
  get: function () { return chunkT5FLQQP6_js.DropdownMenu; }
766
766
  });
767
- Object.defineProperty(exports, "Avatar", {
767
+ Object.defineProperty(exports, "Alert", {
768
768
  enumerable: true,
769
- get: function () { return chunkEY4ZIR3P_js.Avatar; }
769
+ get: function () { return chunkWBRVUWGC_js.Alert; }
770
770
  });
771
- Object.defineProperty(exports, "Badge", {
771
+ Object.defineProperty(exports, "Autocomplete", {
772
772
  enumerable: true,
773
- get: function () { return chunkZ5S7LHMY_js.Badge; }
773
+ get: function () { return chunkNHB2TI2B_js.Autocomplete; }
774
774
  });
775
- Object.defineProperty(exports, "badgeVariants", {
775
+ Object.defineProperty(exports, "autocompleteInputVariants", {
776
776
  enumerable: true,
777
- get: function () { return chunkZ5S7LHMY_js.badgeVariants; }
777
+ get: function () { return chunkNHB2TI2B_js.autocompleteInputVariants; }
778
+ });
779
+ Object.defineProperty(exports, "BottomNavBar", {
780
+ enumerable: true,
781
+ get: function () { return chunkPND5YKFN_js.BottomNavBar; }
778
782
  });
779
783
  Object.defineProperty(exports, "Banner", {
780
784
  enumerable: true,
@@ -784,9 +788,13 @@ Object.defineProperty(exports, "bannerVariants", {
784
788
  enumerable: true,
785
789
  get: function () { return chunk6EG6EAHW_js.bannerVariants; }
786
790
  });
787
- Object.defineProperty(exports, "BottomNavBar", {
791
+ Object.defineProperty(exports, "Button", {
788
792
  enumerable: true,
789
- get: function () { return chunkPND5YKFN_js.BottomNavBar; }
793
+ get: function () { return chunkYZTVHCLK_js.Button; }
794
+ });
795
+ Object.defineProperty(exports, "buttonVariants", {
796
+ enumerable: true,
797
+ get: function () { return chunkYZTVHCLK_js.buttonVariants; }
790
798
  });
791
799
  Object.defineProperty(exports, "Breadcrumb", {
792
800
  enumerable: true,
@@ -796,14 +804,6 @@ Object.defineProperty(exports, "breadcrumbVariants", {
796
804
  enumerable: true,
797
805
  get: function () { return chunkH3JNRTAI_js.breadcrumbVariants; }
798
806
  });
799
- Object.defineProperty(exports, "Button", {
800
- enumerable: true,
801
- get: function () { return chunkYZTVHCLK_js.Button; }
802
- });
803
- Object.defineProperty(exports, "buttonVariants", {
804
- enumerable: true,
805
- get: function () { return chunkYZTVHCLK_js.buttonVariants; }
806
- });
807
807
  Object.defineProperty(exports, "Card", {
808
808
  enumerable: true,
809
809
  get: function () { return chunkZAUYE2EI_js.Card; }
@@ -840,21 +840,21 @@ Object.defineProperty(exports, "Accordion", {
840
840
  enumerable: true,
841
841
  get: function () { return chunkMCF3EQTV_js.Accordion; }
842
842
  });
843
- Object.defineProperty(exports, "Alert", {
844
- enumerable: true,
845
- get: function () { return chunkWBRVUWGC_js.Alert; }
846
- });
847
843
  Object.defineProperty(exports, "AnchorTabs", {
848
844
  enumerable: true,
849
845
  get: function () { return chunkWXEZA6NE_js.AnchorTabs; }
850
846
  });
851
- Object.defineProperty(exports, "Autocomplete", {
847
+ Object.defineProperty(exports, "Avatar", {
852
848
  enumerable: true,
853
- get: function () { return chunkNHB2TI2B_js.Autocomplete; }
849
+ get: function () { return chunkEY4ZIR3P_js.Avatar; }
854
850
  });
855
- Object.defineProperty(exports, "autocompleteInputVariants", {
851
+ Object.defineProperty(exports, "Badge", {
856
852
  enumerable: true,
857
- get: function () { return chunkNHB2TI2B_js.autocompleteInputVariants; }
853
+ get: function () { return chunkZ5S7LHMY_js.Badge; }
854
+ });
855
+ Object.defineProperty(exports, "badgeVariants", {
856
+ enumerable: true,
857
+ get: function () { return chunkZ5S7LHMY_js.badgeVariants; }
858
858
  });
859
859
  Object.defineProperty(exports, "cn", {
860
860
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  export { Toast, toastVariants } from './chunk-YVTUUNAX.mjs';
2
- export { Toggle } from './chunk-2AB5ZHY5.mjs';
3
2
  export { Tooltip } from './chunk-2MJTZ6RR.mjs';
3
+ export { Toggle } from './chunk-2AB5ZHY5.mjs';
4
4
  export { VerticalMarquee } from './chunk-JP5ZR2HI.mjs';
5
5
  export { Spinner, spinnerVariants } from './chunk-NCSFXSOZ.mjs';
6
6
  export { StatCard } from './chunk-O2W7NR33.mjs';
@@ -18,8 +18,8 @@ export { SegmentedControl } from './chunk-36Y7UU32.mjs';
18
18
  export { Select, selectVariants } from './chunk-333YD5QI.mjs';
19
19
  export { Sidebar } from './chunk-MPL35D5G.mjs';
20
20
  export { Skeleton, SkeletonCircle, SkeletonImage, SkeletonText } from './chunk-PAHSQMXV.mjs';
21
- export { LoadingOverlay } from './chunk-WVEJS2J2.mjs';
22
21
  export { MegaMenu } from './chunk-EUEM2D5M.mjs';
22
+ export { LinkCard } from './chunk-UYDZKAGZ.mjs';
23
23
  export { MobileMenu } from './chunk-R4DC7XPP.mjs';
24
24
  export { Modal } from './chunk-74B2EGKT.mjs';
25
25
  export { Pagination } from './chunk-XQVODPHL.mjs';
@@ -33,35 +33,35 @@ export { ImageGallery } from './chunk-QU6ZRLKO.mjs';
33
33
  export { ImageWithFallback } from './chunk-BUXVK2HE.mjs';
34
34
  export { Input, inputVariants } from './chunk-GRG4USTC.mjs';
35
35
  export { Lightbox } from './chunk-GBWVIY3C.mjs';
36
- export { LinkCard } from './chunk-UYDZKAGZ.mjs';
36
+ export { LoadingOverlay } from './chunk-WVEJS2J2.mjs';
37
37
  export { DualRangeSlider } from './chunk-ERL3WXNY.mjs';
38
38
  export { EmptyState } from './chunk-OCUHCDAQ.mjs';
39
39
  export { ErrorBoundary } from './chunk-5257MWFI.mjs';
40
40
  export { FilterAccordion } from './chunk-VQVRKRSM.mjs';
41
- export { FilterPill } from './chunk-TNWMTKNR.mjs';
41
+ export { FilterPill } from './chunk-YKBASX5A.mjs';
42
42
  export { FloatingDock } from './chunk-PBDPZTHK.mjs';
43
43
  export { Footer } from './chunk-SZ3SV4SJ.mjs';
44
44
  export { GuestPicker } from './chunk-EJ7LDW7E.mjs';
45
45
  export { Carousel } from './chunk-OOPP4ES2.mjs';
46
- export { Checkbox } from './chunk-EEIPCJQ2.mjs';
47
46
  export { Counter } from './chunk-LRNSVRUN.mjs';
48
- export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
47
+ export { Checkbox } from './chunk-EEIPCJQ2.mjs';
49
48
  export { DetailList } from './chunk-N6THLJIG.mjs';
49
+ export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
50
50
  export { Divider } from './chunk-E4B6LXK7.mjs';
51
51
  export { Drawer } from './chunk-ZLF7IL3Y.mjs';
52
52
  export { DropdownMenu } from './chunk-Q7BKR6O7.mjs';
53
- export { Avatar } from './chunk-2POGTS27.mjs';
54
- export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
55
- export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
53
+ export { Alert } from './chunk-BQWVWK74.mjs';
54
+ export { Autocomplete, autocompleteInputVariants } from './chunk-B47HQHX3.mjs';
56
55
  export { BottomNavBar } from './chunk-UQRQZLMQ.mjs';
57
- export { Breadcrumb, breadcrumbVariants } from './chunk-UKCH6RYL.mjs';
56
+ export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
58
57
  export { Button, buttonVariants } from './chunk-4U5MNA3B.mjs';
58
+ export { Breadcrumb, breadcrumbVariants } from './chunk-UKCH6RYL.mjs';
59
59
  export { Card, CardContent, CardDescription, CardImage, CardTitle, cardImageVariants, cardVariants } from './chunk-V5J2XLPD.mjs';
60
60
  export { CardList } from './chunk-RJWHPHHX.mjs';
61
61
  export { Accordion } from './chunk-NZ7GF6RF.mjs';
62
- export { Alert } from './chunk-BQWVWK74.mjs';
63
62
  export { AnchorTabs } from './chunk-M2H6QUAL.mjs';
64
- export { Autocomplete, autocompleteInputVariants } from './chunk-B47HQHX3.mjs';
63
+ export { Avatar } from './chunk-2POGTS27.mjs';
64
+ export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
65
65
  import { cn } from './chunk-IMKLN273.mjs';
66
66
  export { cn } from './chunk-IMKLN273.mjs';
67
67
  import * as React from 'react';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dododog/ui",
3
- "version": "0.6.4",
3
+ "version": "0.7.0",
4
4
  "description": "React UI component library for DodoDog — pet-friendly travel platform",
5
5
  "sideEffects": false,
6
6
  "license": "MIT",