@dododog/ui 0.6.0 → 0.6.1
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-WXEZA6NE.js → chunk-2J73BRC5.js} +4 -14
- package/dist/{chunk-M2H6QUAL.mjs → chunk-MKUUHYGQ.mjs} +4 -14
- package/dist/{chunk-QJDKVDK2.mjs → chunk-QTW2FJUJ.mjs} +2 -2
- package/dist/{chunk-YDTBGEAB.js → chunk-S26SN3WK.js} +2 -2
- package/dist/components/AnchorTabs/index.d.mts +0 -7
- package/dist/components/AnchorTabs/index.d.ts +0 -7
- package/dist/components/AnchorTabs/index.js +2 -2
- package/dist/components/AnchorTabs/index.mjs +1 -1
- package/dist/components/RoomTypeCard/index.js +3 -3
- package/dist/components/RoomTypeCard/index.mjs +1 -1
- package/dist/index.js +45 -45
- package/dist/index.mjs +10 -10
- package/package.json +1 -1
|
@@ -33,8 +33,7 @@ var AnchorTabs = React__namespace.forwardRef(
|
|
|
33
33
|
onActiveChange,
|
|
34
34
|
pinWhileSectionsVisible = false,
|
|
35
35
|
pinTop = 72,
|
|
36
|
-
containerClassName
|
|
37
|
-
variant = "underline"
|
|
36
|
+
containerClassName
|
|
38
37
|
}, ref) => {
|
|
39
38
|
const [activeKey, setActiveKey] = React__namespace.useState(items[0]?.key ?? "");
|
|
40
39
|
const [pinned, setPinned] = React__namespace.useState(false);
|
|
@@ -113,10 +112,7 @@ var AnchorTabs = React__namespace.forwardRef(
|
|
|
113
112
|
ref,
|
|
114
113
|
"aria-label": ariaLabel,
|
|
115
114
|
className: chunkADIDI7AJ_js.cn(
|
|
116
|
-
|
|
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",
|
|
115
|
+
"flex items-stretch gap-1 overflow-x-auto border-b border-sand-dark bg-white",
|
|
120
116
|
isPinned && "z-40 shadow-sm",
|
|
121
117
|
className
|
|
122
118
|
),
|
|
@@ -133,14 +129,8 @@ var AnchorTabs = React__namespace.forwardRef(
|
|
|
133
129
|
// Cible tactile >= 44px (min-h-[44px] + flex centré) ; transition
|
|
134
130
|
// limitée aux couleurs (150-300ms, sans reflow) ; press feedback
|
|
135
131
|
// via opacité (transform/opacity, aucun layout shift).
|
|
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
|
-
|
|
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
|
-
)
|
|
132
|
+
"flex min-h-[44px] items-center whitespace-nowrap border-b-2 px-4 text-sm outline-none transition-colors duration-200 -mb-px active:opacity-70 focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-2",
|
|
133
|
+
isActive ? "border-secondary font-semibold text-primary" : "border-transparent font-medium text-text-secondary hover:border-gray-300 hover:text-primary"
|
|
144
134
|
),
|
|
145
135
|
children: item.label
|
|
146
136
|
},
|
|
@@ -11,8 +11,7 @@ var AnchorTabs = React.forwardRef(
|
|
|
11
11
|
onActiveChange,
|
|
12
12
|
pinWhileSectionsVisible = false,
|
|
13
13
|
pinTop = 72,
|
|
14
|
-
containerClassName
|
|
15
|
-
variant = "underline"
|
|
14
|
+
containerClassName
|
|
16
15
|
}, ref) => {
|
|
17
16
|
const [activeKey, setActiveKey] = React.useState(items[0]?.key ?? "");
|
|
18
17
|
const [pinned, setPinned] = React.useState(false);
|
|
@@ -91,10 +90,7 @@ var AnchorTabs = React.forwardRef(
|
|
|
91
90
|
ref,
|
|
92
91
|
"aria-label": ariaLabel,
|
|
93
92
|
className: cn(
|
|
94
|
-
|
|
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",
|
|
93
|
+
"flex items-stretch gap-1 overflow-x-auto border-b border-sand-dark bg-white",
|
|
98
94
|
isPinned && "z-40 shadow-sm",
|
|
99
95
|
className
|
|
100
96
|
),
|
|
@@ -111,14 +107,8 @@ var AnchorTabs = React.forwardRef(
|
|
|
111
107
|
// Cible tactile >= 44px (min-h-[44px] + flex centré) ; transition
|
|
112
108
|
// limitée aux couleurs (150-300ms, sans reflow) ; press feedback
|
|
113
109
|
// via opacité (transform/opacity, aucun layout shift).
|
|
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
|
-
|
|
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
|
-
)
|
|
110
|
+
"flex min-h-[44px] items-center whitespace-nowrap border-b-2 px-4 text-sm outline-none transition-colors duration-200 -mb-px active:opacity-70 focus-visible:ring-2 focus-visible:ring-secondary focus-visible:ring-offset-2",
|
|
111
|
+
isActive ? "border-secondary font-semibold text-primary" : "border-transparent font-medium text-text-secondary hover:border-gray-300 hover:text-primary"
|
|
122
112
|
),
|
|
123
113
|
children: item.label
|
|
124
114
|
},
|
|
@@ -61,8 +61,8 @@ function formatPrice(price) {
|
|
|
61
61
|
return new Intl.NumberFormat("fr-FR", {
|
|
62
62
|
style: "currency",
|
|
63
63
|
currency: "EUR",
|
|
64
|
-
minimumFractionDigits:
|
|
65
|
-
maximumFractionDigits:
|
|
64
|
+
minimumFractionDigits: 2,
|
|
65
|
+
maximumFractionDigits: 2
|
|
66
66
|
}).format(price);
|
|
67
67
|
}
|
|
68
68
|
function CancellationChip({ cancellation }) {
|
|
@@ -83,8 +83,8 @@ function formatPrice(price) {
|
|
|
83
83
|
return new Intl.NumberFormat("fr-FR", {
|
|
84
84
|
style: "currency",
|
|
85
85
|
currency: "EUR",
|
|
86
|
-
minimumFractionDigits:
|
|
87
|
-
maximumFractionDigits:
|
|
86
|
+
minimumFractionDigits: 2,
|
|
87
|
+
maximumFractionDigits: 2
|
|
88
88
|
}).format(price);
|
|
89
89
|
}
|
|
90
90
|
function CancellationChip({ cancellation }) {
|
|
@@ -34,13 +34,6 @@ 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";
|
|
44
37
|
}
|
|
45
38
|
/**
|
|
46
39
|
* Barre d'onglets d'ancrage (desktop) avec scroll-spy.
|
|
@@ -34,13 +34,6 @@ 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";
|
|
44
37
|
}
|
|
45
38
|
/**
|
|
46
39
|
* Barre d'onglets d'ancrage (desktop) avec scroll-spy.
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunk2J73BRC5_js = require('../../chunk-2J73BRC5.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 chunk2J73BRC5_js.AnchorTabs; }
|
|
11
11
|
});
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { AnchorTabs } from '../../chunk-
|
|
1
|
+
export { AnchorTabs } from '../../chunk-MKUUHYGQ.mjs';
|
|
2
2
|
import '../../chunk-IMKLN273.mjs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkS26SN3WK_js = require('../../chunk-S26SN3WK.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 chunkS26SN3WK_js.RoomTypeCard; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "RoomTypeCardSkeleton", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkS26SN3WK_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 chunkS26SN3WK_js = require('./chunk-S26SN3WK.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');
|
|
@@ -28,20 +28,20 @@ var chunkSCGN5H6D_js = require('./chunk-SCGN5H6D.js');
|
|
|
28
28
|
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
|
-
var chunkIRKM5UF4_js = require('./chunk-IRKM5UF4.js');
|
|
32
31
|
var chunkODUY7NXD_js = require('./chunk-ODUY7NXD.js');
|
|
32
|
+
var chunkIRKM5UF4_js = require('./chunk-IRKM5UF4.js');
|
|
33
33
|
var chunkYN4HPIRC_js = require('./chunk-YN4HPIRC.js');
|
|
34
|
+
var chunkMKOKWME3_js = require('./chunk-MKOKWME3.js');
|
|
34
35
|
var chunkDLOHAW74_js = require('./chunk-DLOHAW74.js');
|
|
35
36
|
var chunk77WKG2D7_js = require('./chunk-77WKG2D7.js');
|
|
36
|
-
var chunkMKOKWME3_js = require('./chunk-MKOKWME3.js');
|
|
37
37
|
var chunkU3XWNFHH_js = require('./chunk-U3XWNFHH.js');
|
|
38
38
|
var chunkW7DZZS6L_js = require('./chunk-W7DZZS6L.js');
|
|
39
39
|
var chunkIEHX4DU6_js = require('./chunk-IEHX4DU6.js');
|
|
40
40
|
var chunkTDGU5Y2P_js = require('./chunk-TDGU5Y2P.js');
|
|
41
|
-
var chunk7W3TFPIF_js = require('./chunk-7W3TFPIF.js');
|
|
42
41
|
var chunkS5TLUDNM_js = require('./chunk-S5TLUDNM.js');
|
|
43
|
-
var
|
|
42
|
+
var chunk7W3TFPIF_js = require('./chunk-7W3TFPIF.js');
|
|
44
43
|
var chunkS732LTPT_js = require('./chunk-S732LTPT.js');
|
|
44
|
+
var chunkN2Q4Z2FU_js = require('./chunk-N2Q4Z2FU.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,19 +50,19 @@ 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 chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
|
|
54
53
|
var chunkT5FLQQP6_js = require('./chunk-T5FLQQP6.js');
|
|
54
|
+
var chunkVWFY24XF_js = require('./chunk-VWFY24XF.js');
|
|
55
55
|
var chunkEY4ZIR3P_js = require('./chunk-EY4ZIR3P.js');
|
|
56
|
-
var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
|
|
57
|
-
var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
|
|
58
56
|
var chunkZ5S7LHMY_js = require('./chunk-Z5S7LHMY.js');
|
|
59
|
-
var
|
|
57
|
+
var chunk6EG6EAHW_js = require('./chunk-6EG6EAHW.js');
|
|
58
|
+
var chunkPND5YKFN_js = require('./chunk-PND5YKFN.js');
|
|
60
59
|
var chunkH3JNRTAI_js = require('./chunk-H3JNRTAI.js');
|
|
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
63
|
var chunkMCF3EQTV_js = require('./chunk-MCF3EQTV.js');
|
|
64
64
|
var chunkWBRVUWGC_js = require('./chunk-WBRVUWGC.js');
|
|
65
|
-
var
|
|
65
|
+
var chunk2J73BRC5_js = require('./chunk-2J73BRC5.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');
|
|
@@ -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 chunkS26SN3WK_js.RoomTypeCard; }
|
|
574
574
|
});
|
|
575
575
|
Object.defineProperty(exports, "RoomTypeCardSkeleton", {
|
|
576
576
|
enumerable: true,
|
|
577
|
-
get: function () { return
|
|
577
|
+
get: function () { return chunkS26SN3WK_js.RoomTypeCardSkeleton; }
|
|
578
578
|
});
|
|
579
579
|
Object.defineProperty(exports, "SearchBar", {
|
|
580
580
|
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, "Header", {
|
|
660
|
-
enumerable: true,
|
|
661
|
-
get: function () { return chunkIRKM5UF4_js.Header; }
|
|
662
|
-
});
|
|
663
659
|
Object.defineProperty(exports, "HotelCard", {
|
|
664
660
|
enumerable: true,
|
|
665
661
|
get: function () { return chunkODUY7NXD_js.HotelCard; }
|
|
666
662
|
});
|
|
663
|
+
Object.defineProperty(exports, "Header", {
|
|
664
|
+
enumerable: true,
|
|
665
|
+
get: function () { return chunkIRKM5UF4_js.Header; }
|
|
666
|
+
});
|
|
667
667
|
Object.defineProperty(exports, "IconBadge", {
|
|
668
668
|
enumerable: true,
|
|
669
669
|
get: function () { return chunkYN4HPIRC_js.IconBadge; }
|
|
@@ -672,6 +672,10 @@ Object.defineProperty(exports, "iconBadgeVariants", {
|
|
|
672
672
|
enumerable: true,
|
|
673
673
|
get: function () { return chunkYN4HPIRC_js.iconBadgeVariants; }
|
|
674
674
|
});
|
|
675
|
+
Object.defineProperty(exports, "ImageGallery", {
|
|
676
|
+
enumerable: true,
|
|
677
|
+
get: function () { return chunkMKOKWME3_js.ImageGallery; }
|
|
678
|
+
});
|
|
675
679
|
Object.defineProperty(exports, "ImageWithFallback", {
|
|
676
680
|
enumerable: true,
|
|
677
681
|
get: function () { return chunkDLOHAW74_js.ImageWithFallback; }
|
|
@@ -684,10 +688,6 @@ Object.defineProperty(exports, "inputVariants", {
|
|
|
684
688
|
enumerable: true,
|
|
685
689
|
get: function () { return chunk77WKG2D7_js.inputVariants; }
|
|
686
690
|
});
|
|
687
|
-
Object.defineProperty(exports, "ImageGallery", {
|
|
688
|
-
enumerable: true,
|
|
689
|
-
get: function () { return chunkMKOKWME3_js.ImageGallery; }
|
|
690
|
-
});
|
|
691
691
|
Object.defineProperty(exports, "Lightbox", {
|
|
692
692
|
enumerable: true,
|
|
693
693
|
get: function () { return chunkU3XWNFHH_js.Lightbox; }
|
|
@@ -704,22 +704,22 @@ Object.defineProperty(exports, "DualRangeSlider", {
|
|
|
704
704
|
enumerable: true,
|
|
705
705
|
get: function () { return chunkTDGU5Y2P_js.DualRangeSlider; }
|
|
706
706
|
});
|
|
707
|
-
Object.defineProperty(exports, "FilterAccordion", {
|
|
708
|
-
enumerable: true,
|
|
709
|
-
get: function () { return chunk7W3TFPIF_js.FilterAccordion; }
|
|
710
|
-
});
|
|
711
707
|
Object.defineProperty(exports, "ErrorBoundary", {
|
|
712
708
|
enumerable: true,
|
|
713
709
|
get: function () { return chunkS5TLUDNM_js.ErrorBoundary; }
|
|
714
710
|
});
|
|
715
|
-
Object.defineProperty(exports, "
|
|
711
|
+
Object.defineProperty(exports, "FilterAccordion", {
|
|
716
712
|
enumerable: true,
|
|
717
|
-
get: function () { return
|
|
713
|
+
get: function () { return chunk7W3TFPIF_js.FilterAccordion; }
|
|
718
714
|
});
|
|
719
715
|
Object.defineProperty(exports, "FloatingDock", {
|
|
720
716
|
enumerable: true,
|
|
721
717
|
get: function () { return chunkS732LTPT_js.FloatingDock; }
|
|
722
718
|
});
|
|
719
|
+
Object.defineProperty(exports, "FilterPill", {
|
|
720
|
+
enumerable: true,
|
|
721
|
+
get: function () { return chunkN2Q4Z2FU_js.FilterPill; }
|
|
722
|
+
});
|
|
723
723
|
Object.defineProperty(exports, "Footer", {
|
|
724
724
|
enumerable: true,
|
|
725
725
|
get: function () { return chunkC4RZBOKH_js.Footer; }
|
|
@@ -756,21 +756,25 @@ Object.defineProperty(exports, "Divider", {
|
|
|
756
756
|
enumerable: true,
|
|
757
757
|
get: function () { return chunkXXC2YD3D_js.Divider; }
|
|
758
758
|
});
|
|
759
|
-
Object.defineProperty(exports, "Drawer", {
|
|
760
|
-
enumerable: true,
|
|
761
|
-
get: function () { return chunkVWFY24XF_js.Drawer; }
|
|
762
|
-
});
|
|
763
759
|
Object.defineProperty(exports, "DropdownMenu", {
|
|
764
760
|
enumerable: true,
|
|
765
761
|
get: function () { return chunkT5FLQQP6_js.DropdownMenu; }
|
|
766
762
|
});
|
|
763
|
+
Object.defineProperty(exports, "Drawer", {
|
|
764
|
+
enumerable: true,
|
|
765
|
+
get: function () { return chunkVWFY24XF_js.Drawer; }
|
|
766
|
+
});
|
|
767
767
|
Object.defineProperty(exports, "Avatar", {
|
|
768
768
|
enumerable: true,
|
|
769
769
|
get: function () { return chunkEY4ZIR3P_js.Avatar; }
|
|
770
770
|
});
|
|
771
|
-
Object.defineProperty(exports, "
|
|
771
|
+
Object.defineProperty(exports, "Badge", {
|
|
772
772
|
enumerable: true,
|
|
773
|
-
get: function () { return
|
|
773
|
+
get: function () { return chunkZ5S7LHMY_js.Badge; }
|
|
774
|
+
});
|
|
775
|
+
Object.defineProperty(exports, "badgeVariants", {
|
|
776
|
+
enumerable: true,
|
|
777
|
+
get: function () { return chunkZ5S7LHMY_js.badgeVariants; }
|
|
774
778
|
});
|
|
775
779
|
Object.defineProperty(exports, "Banner", {
|
|
776
780
|
enumerable: true,
|
|
@@ -780,13 +784,17 @@ Object.defineProperty(exports, "bannerVariants", {
|
|
|
780
784
|
enumerable: true,
|
|
781
785
|
get: function () { return chunk6EG6EAHW_js.bannerVariants; }
|
|
782
786
|
});
|
|
783
|
-
Object.defineProperty(exports, "
|
|
787
|
+
Object.defineProperty(exports, "BottomNavBar", {
|
|
784
788
|
enumerable: true,
|
|
785
|
-
get: function () { return
|
|
789
|
+
get: function () { return chunkPND5YKFN_js.BottomNavBar; }
|
|
786
790
|
});
|
|
787
|
-
Object.defineProperty(exports, "
|
|
791
|
+
Object.defineProperty(exports, "Breadcrumb", {
|
|
788
792
|
enumerable: true,
|
|
789
|
-
get: function () { return
|
|
793
|
+
get: function () { return chunkH3JNRTAI_js.Breadcrumb; }
|
|
794
|
+
});
|
|
795
|
+
Object.defineProperty(exports, "breadcrumbVariants", {
|
|
796
|
+
enumerable: true,
|
|
797
|
+
get: function () { return chunkH3JNRTAI_js.breadcrumbVariants; }
|
|
790
798
|
});
|
|
791
799
|
Object.defineProperty(exports, "Button", {
|
|
792
800
|
enumerable: true,
|
|
@@ -796,14 +804,6 @@ Object.defineProperty(exports, "buttonVariants", {
|
|
|
796
804
|
enumerable: true,
|
|
797
805
|
get: function () { return chunkYZTVHCLK_js.buttonVariants; }
|
|
798
806
|
});
|
|
799
|
-
Object.defineProperty(exports, "Breadcrumb", {
|
|
800
|
-
enumerable: true,
|
|
801
|
-
get: function () { return chunkH3JNRTAI_js.Breadcrumb; }
|
|
802
|
-
});
|
|
803
|
-
Object.defineProperty(exports, "breadcrumbVariants", {
|
|
804
|
-
enumerable: true,
|
|
805
|
-
get: function () { return chunkH3JNRTAI_js.breadcrumbVariants; }
|
|
806
|
-
});
|
|
807
807
|
Object.defineProperty(exports, "Card", {
|
|
808
808
|
enumerable: true,
|
|
809
809
|
get: function () { return chunkZAUYE2EI_js.Card; }
|
|
@@ -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 chunk2J73BRC5_js.AnchorTabs; }
|
|
850
850
|
});
|
|
851
851
|
Object.defineProperty(exports, "Autocomplete", {
|
|
852
852
|
enumerable: true,
|
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-QTW2FJUJ.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';
|
|
@@ -26,20 +26,20 @@ export { Pagination } from './chunk-XQVODPHL.mjs';
|
|
|
26
26
|
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
|
-
export { Header } from './chunk-PPDKQ3FF.mjs';
|
|
30
29
|
export { HotelCard } from './chunk-PXHZ4CXG.mjs';
|
|
30
|
+
export { Header } from './chunk-PPDKQ3FF.mjs';
|
|
31
31
|
export { IconBadge, iconBadgeVariants } from './chunk-I4WCNTNP.mjs';
|
|
32
|
+
export { ImageGallery } from './chunk-QU6ZRLKO.mjs';
|
|
32
33
|
export { ImageWithFallback } from './chunk-BUXVK2HE.mjs';
|
|
33
34
|
export { Input, inputVariants } from './chunk-GRG4USTC.mjs';
|
|
34
|
-
export { ImageGallery } from './chunk-QU6ZRLKO.mjs';
|
|
35
35
|
export { Lightbox } from './chunk-GBWVIY3C.mjs';
|
|
36
36
|
export { LinkCard } from './chunk-UYDZKAGZ.mjs';
|
|
37
37
|
export { EmptyState } from './chunk-OCUHCDAQ.mjs';
|
|
38
38
|
export { DualRangeSlider } from './chunk-ERL3WXNY.mjs';
|
|
39
|
-
export { FilterAccordion } from './chunk-VQVRKRSM.mjs';
|
|
40
39
|
export { ErrorBoundary } from './chunk-5257MWFI.mjs';
|
|
41
|
-
export {
|
|
40
|
+
export { FilterAccordion } from './chunk-VQVRKRSM.mjs';
|
|
42
41
|
export { FloatingDock } from './chunk-PBDPZTHK.mjs';
|
|
42
|
+
export { FilterPill } from './chunk-TNWMTKNR.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,19 +48,19 @@ 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 { Drawer } from './chunk-ZLF7IL3Y.mjs';
|
|
52
51
|
export { DropdownMenu } from './chunk-Q7BKR6O7.mjs';
|
|
52
|
+
export { Drawer } from './chunk-ZLF7IL3Y.mjs';
|
|
53
53
|
export { Avatar } from './chunk-2POGTS27.mjs';
|
|
54
|
-
export { BottomNavBar } from './chunk-UQRQZLMQ.mjs';
|
|
55
|
-
export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
|
|
56
54
|
export { Badge, badgeVariants } from './chunk-XZU2SISM.mjs';
|
|
57
|
-
export {
|
|
55
|
+
export { Banner, bannerVariants } from './chunk-LFIZX2S6.mjs';
|
|
56
|
+
export { BottomNavBar } from './chunk-UQRQZLMQ.mjs';
|
|
58
57
|
export { Breadcrumb, breadcrumbVariants } from './chunk-UKCH6RYL.mjs';
|
|
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
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-MKUUHYGQ.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';
|