@dododog/ui 0.4.0 → 0.5.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.
- package/dist/{chunk-XH2MVC4W.mjs → chunk-QJDKVDK2.mjs} +21 -2
- package/dist/{chunk-36JNXXGH.js → chunk-YDTBGEAB.js} +21 -2
- package/dist/components/RoomTypeCard/index.d.mts +10 -0
- package/dist/components/RoomTypeCard/index.d.ts +10 -0
- package/dist/components/RoomTypeCard/index.js +3 -3
- package/dist/components/RoomTypeCard/index.mjs +1 -1
- package/dist/index.js +39 -39
- package/dist/index.mjs +9 -9
- package/package.json +1 -1
|
@@ -87,9 +87,13 @@ function RateRow({
|
|
|
87
87
|
rate,
|
|
88
88
|
selected,
|
|
89
89
|
onSelect,
|
|
90
|
+
onReserve,
|
|
90
91
|
selectLabel,
|
|
92
|
+
reserveLabel,
|
|
93
|
+
ctaNote,
|
|
91
94
|
withTopBorder
|
|
92
95
|
}) {
|
|
96
|
+
const showReserveCta = selected && !!onReserve;
|
|
93
97
|
return /* @__PURE__ */ jsxs(
|
|
94
98
|
"div",
|
|
95
99
|
{
|
|
@@ -110,7 +114,15 @@ function RateRow({
|
|
|
110
114
|
rate.originalTotal && rate.originalTotal > rate.totalPrice && /* @__PURE__ */ jsx("div", { className: "text-[11px] text-text-muted line-through leading-none", children: formatPrice(rate.originalTotal) }),
|
|
111
115
|
/* @__PURE__ */ jsx("div", { className: "font-heading text-lg font-bold text-primary leading-tight", children: formatPrice(rate.totalPrice) }),
|
|
112
116
|
rate.totalLabel && /* @__PURE__ */ jsx("div", { className: "text-[11px] text-text-muted", children: rate.totalLabel }),
|
|
113
|
-
/* @__PURE__ */ jsx(
|
|
117
|
+
showReserveCta ? /* @__PURE__ */ jsx(
|
|
118
|
+
"button",
|
|
119
|
+
{
|
|
120
|
+
type: "button",
|
|
121
|
+
onClick: () => onReserve?.(rate.id),
|
|
122
|
+
className: "mt-1.5 text-[13px] font-semibold px-5 py-1.5 rounded-full bg-secondary text-white transition-colors hover:bg-secondary-dark focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-1",
|
|
123
|
+
children: reserveLabel
|
|
124
|
+
}
|
|
125
|
+
) : /* @__PURE__ */ jsx(
|
|
114
126
|
"button",
|
|
115
127
|
{
|
|
116
128
|
type: "button",
|
|
@@ -122,7 +134,8 @@ function RateRow({
|
|
|
122
134
|
),
|
|
123
135
|
children: selected ? "S\xE9lectionn\xE9" : selectLabel
|
|
124
136
|
}
|
|
125
|
-
)
|
|
137
|
+
),
|
|
138
|
+
showReserveCta && ctaNote && /* @__PURE__ */ jsx("div", { className: "mt-1 text-[11px] leading-tight text-text-muted", children: ctaNote })
|
|
126
139
|
] })
|
|
127
140
|
]
|
|
128
141
|
}
|
|
@@ -134,6 +147,9 @@ var RoomTypeCard = React.forwardRef(
|
|
|
134
147
|
rates,
|
|
135
148
|
selectedRateId,
|
|
136
149
|
onSelectRate,
|
|
150
|
+
onReserveRate,
|
|
151
|
+
reserveLabel = "R\xE9server",
|
|
152
|
+
ctaNote,
|
|
137
153
|
initialVisibleRates = 2,
|
|
138
154
|
selectLabel = "Choisir",
|
|
139
155
|
variant = "default",
|
|
@@ -266,7 +282,10 @@ var RoomTypeCard = React.forwardRef(
|
|
|
266
282
|
rate,
|
|
267
283
|
selected: rate.id === selectedRateId,
|
|
268
284
|
onSelect: onSelectRate,
|
|
285
|
+
onReserve: onReserveRate,
|
|
269
286
|
selectLabel,
|
|
287
|
+
reserveLabel,
|
|
288
|
+
ctaNote,
|
|
270
289
|
withTopBorder: i > 0
|
|
271
290
|
},
|
|
272
291
|
rate.id
|
|
@@ -109,9 +109,13 @@ function RateRow({
|
|
|
109
109
|
rate,
|
|
110
110
|
selected,
|
|
111
111
|
onSelect,
|
|
112
|
+
onReserve,
|
|
112
113
|
selectLabel,
|
|
114
|
+
reserveLabel,
|
|
115
|
+
ctaNote,
|
|
113
116
|
withTopBorder
|
|
114
117
|
}) {
|
|
118
|
+
const showReserveCta = selected && !!onReserve;
|
|
115
119
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
116
120
|
"div",
|
|
117
121
|
{
|
|
@@ -132,7 +136,15 @@ function RateRow({
|
|
|
132
136
|
rate.originalTotal && rate.originalTotal > rate.totalPrice && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-[11px] text-text-muted line-through leading-none", children: formatPrice(rate.originalTotal) }),
|
|
133
137
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "font-heading text-lg font-bold text-primary leading-tight", children: formatPrice(rate.totalPrice) }),
|
|
134
138
|
rate.totalLabel && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "text-[11px] text-text-muted", children: rate.totalLabel }),
|
|
135
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
139
|
+
showReserveCta ? /* @__PURE__ */ jsxRuntime.jsx(
|
|
140
|
+
"button",
|
|
141
|
+
{
|
|
142
|
+
type: "button",
|
|
143
|
+
onClick: () => onReserve?.(rate.id),
|
|
144
|
+
className: "mt-1.5 text-[13px] font-semibold px-5 py-1.5 rounded-full bg-secondary text-white transition-colors hover:bg-secondary-dark focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-1",
|
|
145
|
+
children: reserveLabel
|
|
146
|
+
}
|
|
147
|
+
) : /* @__PURE__ */ jsxRuntime.jsx(
|
|
136
148
|
"button",
|
|
137
149
|
{
|
|
138
150
|
type: "button",
|
|
@@ -144,7 +156,8 @@ function RateRow({
|
|
|
144
156
|
),
|
|
145
157
|
children: selected ? "S\xE9lectionn\xE9" : selectLabel
|
|
146
158
|
}
|
|
147
|
-
)
|
|
159
|
+
),
|
|
160
|
+
showReserveCta && ctaNote && /* @__PURE__ */ jsxRuntime.jsx("div", { className: "mt-1 text-[11px] leading-tight text-text-muted", children: ctaNote })
|
|
148
161
|
] })
|
|
149
162
|
]
|
|
150
163
|
}
|
|
@@ -156,6 +169,9 @@ var RoomTypeCard = React__namespace.forwardRef(
|
|
|
156
169
|
rates,
|
|
157
170
|
selectedRateId,
|
|
158
171
|
onSelectRate,
|
|
172
|
+
onReserveRate,
|
|
173
|
+
reserveLabel = "R\xE9server",
|
|
174
|
+
ctaNote,
|
|
159
175
|
initialVisibleRates = 2,
|
|
160
176
|
selectLabel = "Choisir",
|
|
161
177
|
variant = "default",
|
|
@@ -288,7 +304,10 @@ var RoomTypeCard = React__namespace.forwardRef(
|
|
|
288
304
|
rate,
|
|
289
305
|
selected: rate.id === selectedRateId,
|
|
290
306
|
onSelect: onSelectRate,
|
|
307
|
+
onReserve: onReserveRate,
|
|
291
308
|
selectLabel,
|
|
309
|
+
reserveLabel,
|
|
310
|
+
ctaNote,
|
|
292
311
|
withTopBorder: i > 0
|
|
293
312
|
},
|
|
294
313
|
rate.id
|
|
@@ -53,6 +53,16 @@ interface RoomTypeCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
53
53
|
/** id de la formule actuellement sélectionnée */
|
|
54
54
|
selectedRateId?: string;
|
|
55
55
|
onSelectRate?: (rateId: string) => void;
|
|
56
|
+
/**
|
|
57
|
+
* Callback de réservation directe (pattern Expedia) : quand fourni, la formule
|
|
58
|
+
* sélectionnée affiche un bouton PLEIN « Réserver » qui l'appelle. Absent →
|
|
59
|
+
* comportement historique préservé (bouton « Sélectionné », API additive).
|
|
60
|
+
*/
|
|
61
|
+
onReserveRate?: (rateId: string) => void;
|
|
62
|
+
/** Libellé du CTA de réservation directe (défaut « Réserver »). */
|
|
63
|
+
reserveLabel?: string;
|
|
64
|
+
/** Note grise sous le CTA « Réserver » (ex: « Le montant ne vous sera pas encore facturé »). */
|
|
65
|
+
ctaNote?: string;
|
|
56
66
|
/** Nombre de formules visibles avant le bouton "X autres formules" (défaut 2) */
|
|
57
67
|
initialVisibleRates?: number;
|
|
58
68
|
selectLabel?: string;
|
|
@@ -53,6 +53,16 @@ interface RoomTypeCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
53
53
|
/** id de la formule actuellement sélectionnée */
|
|
54
54
|
selectedRateId?: string;
|
|
55
55
|
onSelectRate?: (rateId: string) => void;
|
|
56
|
+
/**
|
|
57
|
+
* Callback de réservation directe (pattern Expedia) : quand fourni, la formule
|
|
58
|
+
* sélectionnée affiche un bouton PLEIN « Réserver » qui l'appelle. Absent →
|
|
59
|
+
* comportement historique préservé (bouton « Sélectionné », API additive).
|
|
60
|
+
*/
|
|
61
|
+
onReserveRate?: (rateId: string) => void;
|
|
62
|
+
/** Libellé du CTA de réservation directe (défaut « Réserver »). */
|
|
63
|
+
reserveLabel?: string;
|
|
64
|
+
/** Note grise sous le CTA « Réserver » (ex: « Le montant ne vous sera pas encore facturé »). */
|
|
65
|
+
ctaNote?: string;
|
|
56
66
|
/** Nombre de formules visibles avant le bouton "X autres formules" (défaut 2) */
|
|
57
67
|
initialVisibleRates?: number;
|
|
58
68
|
selectLabel?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkYDTBGEAB_js = require('../../chunk-YDTBGEAB.js');
|
|
4
4
|
require('../../chunk-NCU5PY34.js');
|
|
5
5
|
require('../../chunk-ADIDI7AJ.js');
|
|
6
6
|
|
|
@@ -8,9 +8,9 @@ require('../../chunk-ADIDI7AJ.js');
|
|
|
8
8
|
|
|
9
9
|
Object.defineProperty(exports, "RoomTypeCard", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkYDTBGEAB_js.RoomTypeCard; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "RoomTypeCardSkeleton", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkYDTBGEAB_js.RoomTypeCardSkeleton; }
|
|
16
16
|
});
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var chunk7IJOHVNJ_js = require('./chunk-7IJOHVNJ.js');
|
|
|
14
14
|
var chunkL7OYR6U3_js = require('./chunk-L7OYR6U3.js');
|
|
15
15
|
var chunkGXKON34B_js = require('./chunk-GXKON34B.js');
|
|
16
16
|
var chunkTZHT7NZU_js = require('./chunk-TZHT7NZU.js');
|
|
17
|
-
var
|
|
17
|
+
var chunkYDTBGEAB_js = require('./chunk-YDTBGEAB.js');
|
|
18
18
|
var chunkHS3MAW3G_js = require('./chunk-HS3MAW3G.js');
|
|
19
19
|
var chunkQWDKSY6Y_js = require('./chunk-QWDKSY6Y.js');
|
|
20
20
|
var chunk3R7PT3JG_js = require('./chunk-3R7PT3JG.js');
|
|
@@ -29,30 +29,30 @@ var chunk6ASRTUXO_js = require('./chunk-6ASRTUXO.js');
|
|
|
29
29
|
var chunkPG4I4NWO_js = require('./chunk-PG4I4NWO.js');
|
|
30
30
|
var chunkPRDIS2VR_js = require('./chunk-PRDIS2VR.js');
|
|
31
31
|
var chunkIRKM5UF4_js = require('./chunk-IRKM5UF4.js');
|
|
32
|
-
var chunkYN4HPIRC_js = require('./chunk-YN4HPIRC.js');
|
|
33
32
|
var chunkODUY7NXD_js = require('./chunk-ODUY7NXD.js');
|
|
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
|
-
var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
|
|
37
36
|
var chunk77WKG2D7_js = require('./chunk-77WKG2D7.js');
|
|
37
|
+
var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
|
|
38
38
|
var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.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 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');
|
|
48
48
|
var chunkIJIUUBFT_js = require('./chunk-IJIUUBFT.js');
|
|
49
|
+
var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
|
|
50
|
+
var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
|
|
49
51
|
var chunkE24VNM6S_js = require('./chunk-E24VNM6S.js');
|
|
50
52
|
var chunkXXC2YD3D_js = require('./chunk-XXC2YD3D.js');
|
|
51
|
-
var chunkAIA3NHCK_js = require('./chunk-AIA3NHCK.js');
|
|
52
|
-
var chunkT4AT3YCT_js = require('./chunk-T4AT3YCT.js');
|
|
53
53
|
var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
|
|
54
54
|
var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
|
|
55
|
-
var
|
|
55
|
+
var chunk5A3MVRZJ_js = require('./chunk-5A3MVRZJ.js');
|
|
56
56
|
var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
|
|
57
57
|
var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
|
|
58
58
|
var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
|
|
@@ -60,10 +60,10 @@ var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
|
|
|
60
60
|
var chunkYZTVHCLK_js = require('./chunk-YZTVHCLK.js');
|
|
61
61
|
var chunkZAUYE2EI_js = require('./chunk-ZAUYE2EI.js');
|
|
62
62
|
var chunkMY6BYO5F_js = require('./chunk-MY6BYO5F.js');
|
|
63
|
-
var chunkMCF3EQTV_js = require('./chunk-MCF3EQTV.js');
|
|
64
63
|
var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
|
|
65
|
-
var
|
|
64
|
+
var chunkMCF3EQTV_js = require('./chunk-MCF3EQTV.js');
|
|
66
65
|
var chunkNHB2TI2B_js = require('./chunk-NHB2TI2B.js');
|
|
66
|
+
var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
|
|
67
67
|
var chunkADIDI7AJ_js = require('./chunk-ADIDI7AJ.js');
|
|
68
68
|
var React = require('react');
|
|
69
69
|
var classVarianceAuthority = require('class-variance-authority');
|
|
@@ -570,11 +570,11 @@ Object.defineProperty(exports, "Rating", {
|
|
|
570
570
|
});
|
|
571
571
|
Object.defineProperty(exports, "RoomTypeCard", {
|
|
572
572
|
enumerable: true,
|
|
573
|
-
get: function () { return
|
|
573
|
+
get: function () { return chunkYDTBGEAB_js.RoomTypeCard; }
|
|
574
574
|
});
|
|
575
575
|
Object.defineProperty(exports, "RoomTypeCardSkeleton", {
|
|
576
576
|
enumerable: true,
|
|
577
|
-
get: function () { return
|
|
577
|
+
get: function () { return chunkYDTBGEAB_js.RoomTypeCardSkeleton; }
|
|
578
578
|
});
|
|
579
579
|
Object.defineProperty(exports, "SearchBar", {
|
|
580
580
|
enumerable: true,
|
|
@@ -660,6 +660,10 @@ Object.defineProperty(exports, "Header", {
|
|
|
660
660
|
enumerable: true,
|
|
661
661
|
get: function () { return chunkIRKM5UF4_js.Header; }
|
|
662
662
|
});
|
|
663
|
+
Object.defineProperty(exports, "HotelCard", {
|
|
664
|
+
enumerable: true,
|
|
665
|
+
get: function () { return chunkODUY7NXD_js.HotelCard; }
|
|
666
|
+
});
|
|
663
667
|
Object.defineProperty(exports, "IconBadge", {
|
|
664
668
|
enumerable: true,
|
|
665
669
|
get: function () { return chunkYN4HPIRC_js.IconBadge; }
|
|
@@ -668,10 +672,6 @@ Object.defineProperty(exports, "iconBadgeVariants", {
|
|
|
668
672
|
enumerable: true,
|
|
669
673
|
get: function () { return chunkYN4HPIRC_js.iconBadgeVariants; }
|
|
670
674
|
});
|
|
671
|
-
Object.defineProperty(exports, "HotelCard", {
|
|
672
|
-
enumerable: true,
|
|
673
|
-
get: function () { return chunkODUY7NXD_js.HotelCard; }
|
|
674
|
-
});
|
|
675
675
|
Object.defineProperty(exports, "ImageGallery", {
|
|
676
676
|
enumerable: true,
|
|
677
677
|
get: function () { return chunkMKOKWME3_js.ImageGallery; }
|
|
@@ -680,10 +680,6 @@ Object.defineProperty(exports, "ImageWithFallback", {
|
|
|
680
680
|
enumerable: true,
|
|
681
681
|
get: function () { return chunkDLOHAW74_js.ImageWithFallback; }
|
|
682
682
|
});
|
|
683
|
-
Object.defineProperty(exports, "Lightbox", {
|
|
684
|
-
enumerable: true,
|
|
685
|
-
get: function () { return chunkU3XWNFHH_js.Lightbox; }
|
|
686
|
-
});
|
|
687
683
|
Object.defineProperty(exports, "Input", {
|
|
688
684
|
enumerable: true,
|
|
689
685
|
get: function () { return chunk77WKG2D7_js.Input; }
|
|
@@ -692,6 +688,10 @@ Object.defineProperty(exports, "inputVariants", {
|
|
|
692
688
|
enumerable: true,
|
|
693
689
|
get: function () { return chunk77WKG2D7_js.inputVariants; }
|
|
694
690
|
});
|
|
691
|
+
Object.defineProperty(exports, "Lightbox", {
|
|
692
|
+
enumerable: true,
|
|
693
|
+
get: function () { return chunkU3XWNFHH_js.Lightbox; }
|
|
694
|
+
});
|
|
695
695
|
Object.defineProperty(exports, "LinkCard", {
|
|
696
696
|
enumerable: true,
|
|
697
697
|
get: function () { return chunkW7DZZS6L_js.LinkCard; }
|
|
@@ -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; }
|
|
@@ -736,13 +736,9 @@ Object.defineProperty(exports, "Checkbox", {
|
|
|
736
736
|
enumerable: true,
|
|
737
737
|
get: function () { return chunkIJIUUBFT_js.Checkbox; }
|
|
738
738
|
});
|
|
739
|
-
Object.defineProperty(exports, "
|
|
740
|
-
enumerable: true,
|
|
741
|
-
get: function () { return chunkE24VNM6S_js.DetailList; }
|
|
742
|
-
});
|
|
743
|
-
Object.defineProperty(exports, "Divider", {
|
|
739
|
+
Object.defineProperty(exports, "Counter", {
|
|
744
740
|
enumerable: true,
|
|
745
|
-
get: function () { return
|
|
741
|
+
get: function () { return chunkT4AT3YCT_js.Counter; }
|
|
746
742
|
});
|
|
747
743
|
Object.defineProperty(exports, "DatePickerInput", {
|
|
748
744
|
enumerable: true,
|
|
@@ -752,9 +748,13 @@ Object.defineProperty(exports, "DateRangePicker", {
|
|
|
752
748
|
enumerable: true,
|
|
753
749
|
get: function () { return chunkAIA3NHCK_js.DateRangePicker; }
|
|
754
750
|
});
|
|
755
|
-
Object.defineProperty(exports, "
|
|
751
|
+
Object.defineProperty(exports, "DetailList", {
|
|
756
752
|
enumerable: true,
|
|
757
|
-
get: function () { return
|
|
753
|
+
get: function () { return chunkE24VNM6S_js.DetailList; }
|
|
754
|
+
});
|
|
755
|
+
Object.defineProperty(exports, "Divider", {
|
|
756
|
+
enumerable: true,
|
|
757
|
+
get: function () { return chunkXXC2YD3D_js.Divider; }
|
|
758
758
|
});
|
|
759
759
|
Object.defineProperty(exports, "Drawer", {
|
|
760
760
|
enumerable: true,
|
|
@@ -764,9 +764,9 @@ Object.defineProperty(exports, "DropdownMenu", {
|
|
|
764
764
|
enumerable: true,
|
|
765
765
|
get: function () { return chunkT5FLQQP6_js.DropdownMenu; }
|
|
766
766
|
});
|
|
767
|
-
Object.defineProperty(exports, "
|
|
767
|
+
Object.defineProperty(exports, "AnchorTabs", {
|
|
768
768
|
enumerable: true,
|
|
769
|
-
get: function () { return
|
|
769
|
+
get: function () { return chunk5A3MVRZJ_js.AnchorTabs; }
|
|
770
770
|
});
|
|
771
771
|
Object.defineProperty(exports, "Badge", {
|
|
772
772
|
enumerable: true,
|
|
@@ -836,17 +836,13 @@ Object.defineProperty(exports, "CardList", {
|
|
|
836
836
|
enumerable: true,
|
|
837
837
|
get: function () { return chunkMY6BYO5F_js.CardList; }
|
|
838
838
|
});
|
|
839
|
-
Object.defineProperty(exports, "Accordion", {
|
|
840
|
-
enumerable: true,
|
|
841
|
-
get: function () { return chunkMCF3EQTV_js.Accordion; }
|
|
842
|
-
});
|
|
843
839
|
Object.defineProperty(exports, "Alert", {
|
|
844
840
|
enumerable: true,
|
|
845
841
|
get: function () { return chunkWBRVUWGC_js.Alert; }
|
|
846
842
|
});
|
|
847
|
-
Object.defineProperty(exports, "
|
|
843
|
+
Object.defineProperty(exports, "Accordion", {
|
|
848
844
|
enumerable: true,
|
|
849
|
-
get: function () { return
|
|
845
|
+
get: function () { return chunkMCF3EQTV_js.Accordion; }
|
|
850
846
|
});
|
|
851
847
|
Object.defineProperty(exports, "Autocomplete", {
|
|
852
848
|
enumerable: true,
|
|
@@ -856,6 +852,10 @@ Object.defineProperty(exports, "autocompleteInputVariants", {
|
|
|
856
852
|
enumerable: true,
|
|
857
853
|
get: function () { return chunkNHB2TI2B_js.autocompleteInputVariants; }
|
|
858
854
|
});
|
|
855
|
+
Object.defineProperty(exports, "Avatar", {
|
|
856
|
+
enumerable: true,
|
|
857
|
+
get: function () { return chunkEY4ZIR3P_js.Avatar; }
|
|
858
|
+
});
|
|
859
859
|
Object.defineProperty(exports, "cn", {
|
|
860
860
|
enumerable: true,
|
|
861
861
|
get: function () { return chunkADIDI7AJ_js.cn; }
|
package/dist/index.mjs
CHANGED
|
@@ -12,7 +12,7 @@ export { Tag, tagVariants } from './chunk-WOG6V7OW.mjs';
|
|
|
12
12
|
export { Textarea, textareaVariants } from './chunk-ZZ4EWC53.mjs';
|
|
13
13
|
export { RadioGroup } from './chunk-F2BUMJYW.mjs';
|
|
14
14
|
export { Rating } from './chunk-SGDC4IVX.mjs';
|
|
15
|
-
export { RoomTypeCard, RoomTypeCardSkeleton } from './chunk-
|
|
15
|
+
export { RoomTypeCard, RoomTypeCardSkeleton } from './chunk-QJDKVDK2.mjs';
|
|
16
16
|
export { SearchBar } from './chunk-KQK7LFWM.mjs';
|
|
17
17
|
export { SegmentedControl } from './chunk-36Y7UU32.mjs';
|
|
18
18
|
export { Select, selectVariants } from './chunk-333YD5QI.mjs';
|
|
@@ -27,30 +27,30 @@ export { PriceDisplay } from './chunk-DGEXT7PN.mjs';
|
|
|
27
27
|
export { ProgressBar, progressBarVariants, progressFillVariants } from './chunk-UGYMWWKT.mjs';
|
|
28
28
|
export { PromoBanner, promoBannerVariants } from './chunk-FNDR3WOZ.mjs';
|
|
29
29
|
export { Header } from './chunk-PPDKQ3FF.mjs';
|
|
30
|
-
export { IconBadge, iconBadgeVariants } from './chunk-I4WCNTNP.mjs';
|
|
31
30
|
export { HotelCard } from './chunk-PXHZ4CXG.mjs';
|
|
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
|
-
export { Lightbox } from './chunk-GBWVIY3C.mjs';
|
|
35
34
|
export { Input, inputVariants } from './chunk-GRG4USTC.mjs';
|
|
35
|
+
export { Lightbox } from './chunk-GBWVIY3C.mjs';
|
|
36
36
|
export { LinkCard } from './chunk-UYDZKAGZ.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 { 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';
|
|
46
46
|
export { Checkbox } from './chunk-EEIPCJQ2.mjs';
|
|
47
|
+
export { Counter } from './chunk-LRNSVRUN.mjs';
|
|
48
|
+
export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
|
|
47
49
|
export { DetailList } from './chunk-N6THLJIG.mjs';
|
|
48
50
|
export { Divider } from './chunk-E4B6LXK7.mjs';
|
|
49
|
-
export { DatePickerInput, DateRangePicker } from './chunk-FL3GD5FJ.mjs';
|
|
50
|
-
export { Counter } from './chunk-LRNSVRUN.mjs';
|
|
51
51
|
export { Drawer } from './chunk-ZLF7IL3Y.mjs';
|
|
52
52
|
export { DropdownMenu } from './chunk-Q7BKR6O7.mjs';
|
|
53
|
-
export {
|
|
53
|
+
export { AnchorTabs } from './chunk-PU4CWOWU.mjs';
|
|
54
54
|
export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
|
|
55
55
|
export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
|
|
56
56
|
export { BottomNavBar } from './chunk-UQRQZLMQ.mjs';
|
|
@@ -58,10 +58,10 @@ export { Breadcrumb, breadcrumbVariants } from './chunk-UKCH6RYL.mjs';
|
|
|
58
58
|
export { Button, buttonVariants } from './chunk-4U5MNA3B.mjs';
|
|
59
59
|
export { Card, CardContent, CardDescription, CardImage, CardTitle, cardImageVariants, cardVariants } from './chunk-V5J2XLPD.mjs';
|
|
60
60
|
export { CardList } from './chunk-RJWHPHHX.mjs';
|
|
61
|
-
export { Accordion } from './chunk-NZ7GF6RF.mjs';
|
|
62
61
|
export { Alert } from './chunk-BQWVWK74.mjs';
|
|
63
|
-
export {
|
|
62
|
+
export { Accordion } from './chunk-NZ7GF6RF.mjs';
|
|
64
63
|
export { Autocomplete, autocompleteInputVariants } from './chunk-B47HQHX3.mjs';
|
|
64
|
+
export { Avatar } from './chunk-2POGTS27.mjs';
|
|
65
65
|
import { cn } from './chunk-IMKLN273.mjs';
|
|
66
66
|
export { cn } from './chunk-IMKLN273.mjs';
|
|
67
67
|
import * as React from 'react';
|