@dododog/ui 0.6.2 → 0.6.4
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.
- package/dist/{chunk-6ASRTUXO.js → chunk-B4LR4H6R.js} +2 -2
- package/dist/{chunk-ODUY7NXD.js → chunk-ECVKFE6U.js} +2 -2
- package/dist/{chunk-MKUUHYGQ.mjs → chunk-M2H6QUAL.mjs} +14 -4
- package/dist/{chunk-DGEXT7PN.mjs → chunk-REXLQTNE.mjs} +2 -2
- package/dist/{chunk-2J73BRC5.js → chunk-WXEZA6NE.js} +14 -4
- package/dist/{chunk-PXHZ4CXG.mjs → chunk-XSSRFA5O.mjs} +2 -2
- package/dist/components/AnchorTabs/index.d.mts +7 -0
- package/dist/components/AnchorTabs/index.d.ts +7 -0
- package/dist/components/AnchorTabs/index.js +2 -2
- package/dist/components/AnchorTabs/index.mjs +1 -1
- package/dist/components/HotelCard/index.js +2 -2
- package/dist/components/HotelCard/index.mjs +1 -1
- package/dist/components/PriceDisplay/index.js +2 -2
- package/dist/components/PriceDisplay/index.mjs +1 -1
- package/dist/index.js +24 -24
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
|
@@ -28,8 +28,8 @@ function formatPrice(price, currency) {
|
|
|
28
28
|
return new Intl.NumberFormat("fr-FR", {
|
|
29
29
|
style: "currency",
|
|
30
30
|
currency,
|
|
31
|
-
minimumFractionDigits:
|
|
32
|
-
maximumFractionDigits:
|
|
31
|
+
minimumFractionDigits: 2,
|
|
32
|
+
maximumFractionDigits: 2
|
|
33
33
|
}).format(price);
|
|
34
34
|
}
|
|
35
35
|
var PriceDisplay = React__namespace.forwardRef(
|
|
@@ -53,8 +53,8 @@ function formatPrice(price) {
|
|
|
53
53
|
return new Intl.NumberFormat("fr-FR", {
|
|
54
54
|
style: "currency",
|
|
55
55
|
currency: "EUR",
|
|
56
|
-
minimumFractionDigits:
|
|
57
|
-
maximumFractionDigits:
|
|
56
|
+
minimumFractionDigits: 2,
|
|
57
|
+
maximumFractionDigits: 2
|
|
58
58
|
}).format(price);
|
|
59
59
|
}
|
|
60
60
|
var HotelCard = React__namespace.forwardRef(
|
|
@@ -11,7 +11,8 @@ var AnchorTabs = React.forwardRef(
|
|
|
11
11
|
onActiveChange,
|
|
12
12
|
pinWhileSectionsVisible = false,
|
|
13
13
|
pinTop = 72,
|
|
14
|
-
containerClassName
|
|
14
|
+
containerClassName,
|
|
15
|
+
variant = "underline"
|
|
15
16
|
}, ref) => {
|
|
16
17
|
const [activeKey, setActiveKey] = React.useState(items[0]?.key ?? "");
|
|
17
18
|
const [pinned, setPinned] = React.useState(false);
|
|
@@ -90,7 +91,10 @@ var AnchorTabs = React.forwardRef(
|
|
|
90
91
|
ref,
|
|
91
92
|
"aria-label": ariaLabel,
|
|
92
93
|
className: cn(
|
|
93
|
-
|
|
94
|
+
variant === "pills" ? (
|
|
95
|
+
// Pills : chips posées sur le fond de page, sans carte ni séparateur.
|
|
96
|
+
"flex items-center gap-2 overflow-x-auto"
|
|
97
|
+
) : "flex items-stretch gap-1 overflow-x-auto border-b border-sand-dark bg-white",
|
|
94
98
|
isPinned && "z-40 shadow-sm",
|
|
95
99
|
className
|
|
96
100
|
),
|
|
@@ -107,8 +111,14 @@ var AnchorTabs = React.forwardRef(
|
|
|
107
111
|
// Cible tactile >= 44px (min-h-[44px] + flex centré) ; transition
|
|
108
112
|
// limitée aux couleurs (150-300ms, sans reflow) ; press feedback
|
|
109
113
|
// via opacité (transform/opacity, aucun layout shift).
|
|
110
|
-
"flex min-h-[44px] items-center whitespace-nowrap
|
|
111
|
-
|
|
114
|
+
"flex min-h-[44px] items-center whitespace-nowrap px-4 text-sm outline-none transition-colors duration-200 active:opacity-70 focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-2",
|
|
115
|
+
variant === "pills" ? cn(
|
|
116
|
+
"rounded-full border",
|
|
117
|
+
isActive ? "border-primary bg-primary font-semibold text-white" : "border-gray-200 bg-white font-medium text-text-secondary hover:border-gray-300 hover:text-primary"
|
|
118
|
+
) : cn(
|
|
119
|
+
"-mb-px border-b-2",
|
|
120
|
+
isActive ? "border-secondary font-semibold text-primary" : "border-transparent font-medium text-text-secondary hover:border-gray-300 hover:text-primary"
|
|
121
|
+
)
|
|
112
122
|
),
|
|
113
123
|
children: item.label
|
|
114
124
|
},
|
|
@@ -6,8 +6,8 @@ function formatPrice(price, currency) {
|
|
|
6
6
|
return new Intl.NumberFormat("fr-FR", {
|
|
7
7
|
style: "currency",
|
|
8
8
|
currency,
|
|
9
|
-
minimumFractionDigits:
|
|
10
|
-
maximumFractionDigits:
|
|
9
|
+
minimumFractionDigits: 2,
|
|
10
|
+
maximumFractionDigits: 2
|
|
11
11
|
}).format(price);
|
|
12
12
|
}
|
|
13
13
|
var PriceDisplay = React.forwardRef(
|
|
@@ -33,7 +33,8 @@ var AnchorTabs = React__namespace.forwardRef(
|
|
|
33
33
|
onActiveChange,
|
|
34
34
|
pinWhileSectionsVisible = false,
|
|
35
35
|
pinTop = 72,
|
|
36
|
-
containerClassName
|
|
36
|
+
containerClassName,
|
|
37
|
+
variant = "underline"
|
|
37
38
|
}, ref) => {
|
|
38
39
|
const [activeKey, setActiveKey] = React__namespace.useState(items[0]?.key ?? "");
|
|
39
40
|
const [pinned, setPinned] = React__namespace.useState(false);
|
|
@@ -112,7 +113,10 @@ var AnchorTabs = React__namespace.forwardRef(
|
|
|
112
113
|
ref,
|
|
113
114
|
"aria-label": ariaLabel,
|
|
114
115
|
className: chunkADIDI7AJ_js.cn(
|
|
115
|
-
|
|
116
|
+
variant === "pills" ? (
|
|
117
|
+
// Pills : chips posées sur le fond de page, sans carte ni séparateur.
|
|
118
|
+
"flex items-center gap-2 overflow-x-auto"
|
|
119
|
+
) : "flex items-stretch gap-1 overflow-x-auto border-b border-sand-dark bg-white",
|
|
116
120
|
isPinned && "z-40 shadow-sm",
|
|
117
121
|
className
|
|
118
122
|
),
|
|
@@ -129,8 +133,14 @@ var AnchorTabs = React__namespace.forwardRef(
|
|
|
129
133
|
// Cible tactile >= 44px (min-h-[44px] + flex centré) ; transition
|
|
130
134
|
// limitée aux couleurs (150-300ms, sans reflow) ; press feedback
|
|
131
135
|
// via opacité (transform/opacity, aucun layout shift).
|
|
132
|
-
"flex min-h-[44px] items-center whitespace-nowrap
|
|
133
|
-
|
|
136
|
+
"flex min-h-[44px] items-center whitespace-nowrap px-4 text-sm outline-none transition-colors duration-200 active:opacity-70 focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-2",
|
|
137
|
+
variant === "pills" ? chunkADIDI7AJ_js.cn(
|
|
138
|
+
"rounded-full border",
|
|
139
|
+
isActive ? "border-primary bg-primary font-semibold text-white" : "border-gray-200 bg-white font-medium text-text-secondary hover:border-gray-300 hover:text-primary"
|
|
140
|
+
) : chunkADIDI7AJ_js.cn(
|
|
141
|
+
"-mb-px border-b-2",
|
|
142
|
+
isActive ? "border-secondary font-semibold text-primary" : "border-transparent font-medium text-text-secondary hover:border-gray-300 hover:text-primary"
|
|
143
|
+
)
|
|
134
144
|
),
|
|
135
145
|
children: item.label
|
|
136
146
|
},
|
|
@@ -31,8 +31,8 @@ function formatPrice(price) {
|
|
|
31
31
|
return new Intl.NumberFormat("fr-FR", {
|
|
32
32
|
style: "currency",
|
|
33
33
|
currency: "EUR",
|
|
34
|
-
minimumFractionDigits:
|
|
35
|
-
maximumFractionDigits:
|
|
34
|
+
minimumFractionDigits: 2,
|
|
35
|
+
maximumFractionDigits: 2
|
|
36
36
|
}).format(price);
|
|
37
37
|
}
|
|
38
38
|
var HotelCard = React.forwardRef(
|
|
@@ -34,6 +34,13 @@ interface AnchorTabsProps {
|
|
|
34
34
|
pinTop?: number;
|
|
35
35
|
/** Classes du conteneur/sentinelle (ex. `hidden lg:block`). */
|
|
36
36
|
containerClassName?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Présentation de la barre :
|
|
39
|
+
* - `underline` (défaut) : rangée d'onglets sur fond blanc, actif souligné ;
|
|
40
|
+
* - `pills` : chips arrondies posées sur le fond de page (pattern
|
|
41
|
+
* FilterPill) — actif rempli `primary`, inactifs en pill blanche bordée.
|
|
42
|
+
*/
|
|
43
|
+
variant?: "underline" | "pills";
|
|
37
44
|
}
|
|
38
45
|
/**
|
|
39
46
|
* Barre d'onglets d'ancrage (desktop) avec scroll-spy.
|
|
@@ -34,6 +34,13 @@ interface AnchorTabsProps {
|
|
|
34
34
|
pinTop?: number;
|
|
35
35
|
/** Classes du conteneur/sentinelle (ex. `hidden lg:block`). */
|
|
36
36
|
containerClassName?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Présentation de la barre :
|
|
39
|
+
* - `underline` (défaut) : rangée d'onglets sur fond blanc, actif souligné ;
|
|
40
|
+
* - `pills` : chips arrondies posées sur le fond de page (pattern
|
|
41
|
+
* FilterPill) — actif rempli `primary`, inactifs en pill blanche bordée.
|
|
42
|
+
*/
|
|
43
|
+
variant?: "underline" | "pills";
|
|
37
44
|
}
|
|
38
45
|
/**
|
|
39
46
|
* Barre d'onglets d'ancrage (desktop) avec scroll-spy.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkWXEZA6NE_js = require('../../chunk-WXEZA6NE.js');
|
|
4
4
|
require('../../chunk-ADIDI7AJ.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "AnchorTabs", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunkWXEZA6NE_js.AnchorTabs; }
|
|
11
11
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { AnchorTabs } from '../../chunk-
|
|
1
|
+
export { AnchorTabs } from '../../chunk-M2H6QUAL.mjs';
|
|
2
2
|
import '../../chunk-IMKLN273.mjs';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkECVKFE6U_js = require('../../chunk-ECVKFE6U.js');
|
|
4
4
|
require('../../chunk-ADIDI7AJ.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "HotelCard", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunkECVKFE6U_js.HotelCard; }
|
|
11
11
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { HotelCard } from '../../chunk-
|
|
1
|
+
export { HotelCard } from '../../chunk-XSSRFA5O.mjs';
|
|
2
2
|
import '../../chunk-IMKLN273.mjs';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkB4LR4H6R_js = require('../../chunk-B4LR4H6R.js');
|
|
4
4
|
require('../../chunk-ADIDI7AJ.js');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
Object.defineProperty(exports, "PriceDisplay", {
|
|
9
9
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
10
|
+
get: function () { return chunkB4LR4H6R_js.PriceDisplay; }
|
|
11
11
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { PriceDisplay } from '../../chunk-
|
|
1
|
+
export { PriceDisplay } from '../../chunk-REXLQTNE.mjs';
|
|
2
2
|
import '../../chunk-IMKLN273.mjs';
|
package/dist/index.js
CHANGED
|
@@ -25,23 +25,23 @@ var chunkHN6B4TAW_js = require('./chunk-HN6B4TAW.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');
|
|
28
|
-
var
|
|
28
|
+
var chunkB4LR4H6R_js = require('./chunk-B4LR4H6R.js');
|
|
29
29
|
var chunkPG4I4NWO_js = require('./chunk-PG4I4NWO.js');
|
|
30
30
|
var chunkPRDIS2VR_js = require('./chunk-PRDIS2VR.js');
|
|
31
|
-
var chunkODUY7NXD_js = require('./chunk-ODUY7NXD.js');
|
|
32
31
|
var chunkIRKM5UF4_js = require('./chunk-IRKM5UF4.js');
|
|
32
|
+
var chunkECVKFE6U_js = require('./chunk-ECVKFE6U.js');
|
|
33
33
|
var chunkYN4HPIRC_js = require('./chunk-YN4HPIRC.js');
|
|
34
34
|
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
38
|
var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
|
|
39
|
-
var chunkIEHX4DU6_js = require('./chunk-IEHX4DU6.js');
|
|
40
39
|
var chunkTDGU5Y2P_js = require('./chunk-TDGU5Y2P.js');
|
|
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 chunkS732LTPT_js = require('./chunk-S732LTPT.js');
|
|
44
43
|
var chunkN2Q4Z2FU_js = require('./chunk-N2Q4Z2FU.js');
|
|
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');
|
|
@@ -50,8 +50,8 @@ var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
|
|
|
50
50
|
var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
|
|
51
51
|
var chunkE24VNM6S_js = require('./chunk-E24VNM6S.js');
|
|
52
52
|
var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
|
|
53
|
-
var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
|
|
54
53
|
var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
|
|
54
|
+
var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
|
|
55
55
|
var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
|
|
56
56
|
var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
|
|
57
57
|
var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
|
|
@@ -62,7 +62,7 @@ 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
64
|
var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
|
|
65
|
-
var
|
|
65
|
+
var chunkWXEZA6NE_js = require('./chunk-WXEZA6NE.js');
|
|
66
66
|
var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
|
|
67
67
|
var chunkADIDI7AJ_js = require('./chunk-ADIDI7AJ.js');
|
|
68
68
|
var React = require('react');
|
|
@@ -634,7 +634,7 @@ Object.defineProperty(exports, "Pagination", {
|
|
|
634
634
|
});
|
|
635
635
|
Object.defineProperty(exports, "PriceDisplay", {
|
|
636
636
|
enumerable: true,
|
|
637
|
-
get: function () { return
|
|
637
|
+
get: function () { return chunkB4LR4H6R_js.PriceDisplay; }
|
|
638
638
|
});
|
|
639
639
|
Object.defineProperty(exports, "ProgressBar", {
|
|
640
640
|
enumerable: true,
|
|
@@ -656,14 +656,14 @@ Object.defineProperty(exports, "promoBannerVariants", {
|
|
|
656
656
|
enumerable: true,
|
|
657
657
|
get: function () { return chunkPRDIS2VR_js.promoBannerVariants; }
|
|
658
658
|
});
|
|
659
|
-
Object.defineProperty(exports, "HotelCard", {
|
|
660
|
-
enumerable: true,
|
|
661
|
-
get: function () { return chunkODUY7NXD_js.HotelCard; }
|
|
662
|
-
});
|
|
663
659
|
Object.defineProperty(exports, "Header", {
|
|
664
660
|
enumerable: true,
|
|
665
661
|
get: function () { return chunkIRKM5UF4_js.Header; }
|
|
666
662
|
});
|
|
663
|
+
Object.defineProperty(exports, "HotelCard", {
|
|
664
|
+
enumerable: true,
|
|
665
|
+
get: function () { return chunkECVKFE6U_js.HotelCard; }
|
|
666
|
+
});
|
|
667
667
|
Object.defineProperty(exports, "IconBadge", {
|
|
668
668
|
enumerable: true,
|
|
669
669
|
get: function () { return chunkYN4HPIRC_js.IconBadge; }
|
|
@@ -696,14 +696,14 @@ Object.defineProperty(exports, "LinkCard", {
|
|
|
696
696
|
enumerable: true,
|
|
697
697
|
get: function () { return chunkW7DZZS6L_js.LinkCard; }
|
|
698
698
|
});
|
|
699
|
-
Object.defineProperty(exports, "EmptyState", {
|
|
700
|
-
enumerable: true,
|
|
701
|
-
get: function () { return chunkIEHX4DU6_js.EmptyState; }
|
|
702
|
-
});
|
|
703
699
|
Object.defineProperty(exports, "DualRangeSlider", {
|
|
704
700
|
enumerable: true,
|
|
705
701
|
get: function () { return chunkTDGU5Y2P_js.DualRangeSlider; }
|
|
706
702
|
});
|
|
703
|
+
Object.defineProperty(exports, "EmptyState", {
|
|
704
|
+
enumerable: true,
|
|
705
|
+
get: function () { return chunkIEHX4DU6_js.EmptyState; }
|
|
706
|
+
});
|
|
707
707
|
Object.defineProperty(exports, "ErrorBoundary", {
|
|
708
708
|
enumerable: true,
|
|
709
709
|
get: function () { return chunkS5TLUDNM_js.ErrorBoundary; }
|
|
@@ -712,14 +712,14 @@ Object.defineProperty(exports, "FilterAccordion", {
|
|
|
712
712
|
enumerable: true,
|
|
713
713
|
get: function () { return chunk7W3TFPIF_js.FilterAccordion; }
|
|
714
714
|
});
|
|
715
|
-
Object.defineProperty(exports, "FloatingDock", {
|
|
716
|
-
enumerable: true,
|
|
717
|
-
get: function () { return chunkS732LTPT_js.FloatingDock; }
|
|
718
|
-
});
|
|
719
715
|
Object.defineProperty(exports, "FilterPill", {
|
|
720
716
|
enumerable: true,
|
|
721
717
|
get: function () { return chunkN2Q4Z2FU_js.FilterPill; }
|
|
722
718
|
});
|
|
719
|
+
Object.defineProperty(exports, "FloatingDock", {
|
|
720
|
+
enumerable: true,
|
|
721
|
+
get: function () { return chunkS732LTPT_js.FloatingDock; }
|
|
722
|
+
});
|
|
723
723
|
Object.defineProperty(exports, "Footer", {
|
|
724
724
|
enumerable: true,
|
|
725
725
|
get: function () { return chunkC4RZBOKH_js.Footer; }
|
|
@@ -756,14 +756,14 @@ Object.defineProperty(exports, "Divider", {
|
|
|
756
756
|
enumerable: true,
|
|
757
757
|
get: function () { return chunkXXC2YD3D_js.Divider; }
|
|
758
758
|
});
|
|
759
|
-
Object.defineProperty(exports, "DropdownMenu", {
|
|
760
|
-
enumerable: true,
|
|
761
|
-
get: function () { return chunkT5FLQQP6_js.DropdownMenu; }
|
|
762
|
-
});
|
|
763
759
|
Object.defineProperty(exports, "Drawer", {
|
|
764
760
|
enumerable: true,
|
|
765
761
|
get: function () { return chunkVWFY24XF_js.Drawer; }
|
|
766
762
|
});
|
|
763
|
+
Object.defineProperty(exports, "DropdownMenu", {
|
|
764
|
+
enumerable: true,
|
|
765
|
+
get: function () { return chunkT5FLQQP6_js.DropdownMenu; }
|
|
766
|
+
});
|
|
767
767
|
Object.defineProperty(exports, "Avatar", {
|
|
768
768
|
enumerable: true,
|
|
769
769
|
get: function () { return chunkEY4ZIR3P_js.Avatar; }
|
|
@@ -846,7 +846,7 @@ Object.defineProperty(exports, "Alert", {
|
|
|
846
846
|
});
|
|
847
847
|
Object.defineProperty(exports, "AnchorTabs", {
|
|
848
848
|
enumerable: true,
|
|
849
|
-
get: function () { return
|
|
849
|
+
get: function () { return chunkWXEZA6NE_js.AnchorTabs; }
|
|
850
850
|
});
|
|
851
851
|
Object.defineProperty(exports, "Autocomplete", {
|
|
852
852
|
enumerable: true,
|
package/dist/index.mjs
CHANGED
|
@@ -23,23 +23,23 @@ export { MegaMenu } from './chunk-EUEM2D5M.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';
|
|
26
|
-
export { PriceDisplay } from './chunk-
|
|
26
|
+
export { PriceDisplay } from './chunk-REXLQTNE.mjs';
|
|
27
27
|
export { ProgressBar, progressBarVariants, progressFillVariants } from './chunk-UGYMWWKT.mjs';
|
|
28
28
|
export { PromoBanner, promoBannerVariants } from './chunk-FNDR3WOZ.mjs';
|
|
29
|
-
export { HotelCard } from './chunk-PXHZ4CXG.mjs';
|
|
30
29
|
export { Header } from './chunk-PPDKQ3FF.mjs';
|
|
30
|
+
export { HotelCard } from './chunk-XSSRFA5O.mjs';
|
|
31
31
|
export { IconBadge, iconBadgeVariants } from './chunk-I4WCNTNP.mjs';
|
|
32
32
|
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
36
|
export { LinkCard } from './chunk-UYDZKAGZ.mjs';
|
|
37
|
-
export { EmptyState } from './chunk-OCUHCDAQ.mjs';
|
|
38
37
|
export { DualRangeSlider } from './chunk-ERL3WXNY.mjs';
|
|
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 { FloatingDock } from './chunk-PBDPZTHK.mjs';
|
|
42
41
|
export { FilterPill } from './chunk-TNWMTKNR.mjs';
|
|
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';
|
|
@@ -48,8 +48,8 @@ export { Counter } from './chunk-LRNSVRUN.mjs';
|
|
|
48
48
|
export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
|
|
49
49
|
export { DetailList } from './chunk-N6THLJIG.mjs';
|
|
50
50
|
export { Divider } from './chunk-E4B6LXK7.mjs';
|
|
51
|
-
export { DropdownMenu } from './chunk-Q7BKR6O7.mjs';
|
|
52
51
|
export { Drawer } from './chunk-ZLF7IL3Y.mjs';
|
|
52
|
+
export { DropdownMenu } from './chunk-Q7BKR6O7.mjs';
|
|
53
53
|
export { Avatar } from './chunk-2POGTS27.mjs';
|
|
54
54
|
export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
|
|
55
55
|
export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
|
|
@@ -60,7 +60,7 @@ export { Card, CardContent, CardDescription, CardImage, CardTitle, cardImageVari
|
|
|
60
60
|
export { CardList } from './chunk-RJWHPHHX.mjs';
|
|
61
61
|
export { Accordion } from './chunk-NZ7GF6RF.mjs';
|
|
62
62
|
export { Alert } from './chunk-BQWVWK74.mjs';
|
|
63
|
-
export { AnchorTabs } from './chunk-
|
|
63
|
+
export { AnchorTabs } from './chunk-M2H6QUAL.mjs';
|
|
64
64
|
export { Autocomplete, autocompleteInputVariants } from './chunk-B47HQHX3.mjs';
|
|
65
65
|
import { cn } from './chunk-IMKLN273.mjs';
|
|
66
66
|
export { cn } from './chunk-IMKLN273.mjs';
|