@hotelcard/ui 0.0.19 → 0.0.21
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.
Potentially problematic release.
This version of @hotelcard/ui might be problematic. Click here for more details.
- package/dist/index.cjs +654 -503
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +0 -502
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +818 -96
- package/dist/index.d.ts +818 -96
- package/dist/index.js +654 -501
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -60,7 +60,8 @@ var label = {
|
|
|
60
60
|
"rating-very-good": "Very good",
|
|
61
61
|
"rating-good": "Good",
|
|
62
62
|
"rating-fair": "Fair",
|
|
63
|
-
"rating-none": "No rating"
|
|
63
|
+
"rating-none": "No rating",
|
|
64
|
+
clear: "Clear"
|
|
64
65
|
};
|
|
65
66
|
var product = {
|
|
66
67
|
"6m": "6-month subscription",
|
|
@@ -113,7 +114,7 @@ var filter = {
|
|
|
113
114
|
"most-popular": "Most popular",
|
|
114
115
|
"newest-hotels": "Newest",
|
|
115
116
|
relevance: "Relevance",
|
|
116
|
-
selected: "Selected",
|
|
117
|
+
selected: "Selected:",
|
|
117
118
|
"clear-all": "Clear all",
|
|
118
119
|
options: "Options",
|
|
119
120
|
"hotellerie-suisse": "Classification HotellerieSuisse",
|
|
@@ -125,6 +126,162 @@ var filter = {
|
|
|
125
126
|
var headline = {
|
|
126
127
|
"no-results": "No stays match your search right now"
|
|
127
128
|
};
|
|
129
|
+
var meta_title = "Search Hotels - HotelCard";
|
|
130
|
+
var meta_description = "Search for hotels by city, region, or hotel name";
|
|
131
|
+
var title = "Search";
|
|
132
|
+
var loading = "Loading hotels...";
|
|
133
|
+
var retry = "Retry";
|
|
134
|
+
var close_map = "Close map";
|
|
135
|
+
var seo = {
|
|
136
|
+
default_title: "Search Hotel Deals - HotelCard",
|
|
137
|
+
location_title: "Hotels in {{location}}",
|
|
138
|
+
region_title: "Hotels in {{region}}",
|
|
139
|
+
experience_title: "{{experience}} Hotels",
|
|
140
|
+
default_description: "Discover {{count}} hotels with exclusive HotelCard discounts.",
|
|
141
|
+
location_description: "Find {{count}} hotels in {{location}} with exclusive discounts up to 50% off."
|
|
142
|
+
};
|
|
143
|
+
var modal = {
|
|
144
|
+
close_search: "Close search",
|
|
145
|
+
placeholder_anywhere: "Anywhere",
|
|
146
|
+
recent_searches: "Recent searches",
|
|
147
|
+
remove_recent: "Remove from recent searches",
|
|
148
|
+
all_destinations: "All destinations"
|
|
149
|
+
};
|
|
150
|
+
var map = {
|
|
151
|
+
open_search: "Open search",
|
|
152
|
+
open_filters: "Open filters",
|
|
153
|
+
switch_to_list: "Switch to list view",
|
|
154
|
+
zoom_in: "Zoom in",
|
|
155
|
+
zoom_out: "Zoom out",
|
|
156
|
+
no_location_data: "No hotels with location data available",
|
|
157
|
+
hotels_missing_coordinates: "{{count}} hotels found but missing coordinates",
|
|
158
|
+
no_hotels_in_area: "No hotels found in this area"
|
|
159
|
+
};
|
|
160
|
+
var view = {
|
|
161
|
+
list: "List"
|
|
162
|
+
};
|
|
163
|
+
var breadcrumb = {
|
|
164
|
+
properties_found: "{{count}} properties found",
|
|
165
|
+
properties_found_location: "{{location}}: {{count}} properties found"
|
|
166
|
+
};
|
|
167
|
+
var aria = {
|
|
168
|
+
search_results_breadcrumb: "Search results",
|
|
169
|
+
close: "Close",
|
|
170
|
+
previous_image: "Previous image",
|
|
171
|
+
next_image: "Next image",
|
|
172
|
+
add_to_favorites: "Add to favorites",
|
|
173
|
+
remove_from_favorites: "Remove from favorites",
|
|
174
|
+
list_view: "Switch to list view",
|
|
175
|
+
map_view: "Switch to map view"
|
|
176
|
+
};
|
|
177
|
+
var breadcrumb_nav = {
|
|
178
|
+
home: "Home"
|
|
179
|
+
};
|
|
180
|
+
var guest_selector = {
|
|
181
|
+
adults_description: "Ages 13 or above",
|
|
182
|
+
children_description: "Ages 2-12",
|
|
183
|
+
infants_description: "Under 2",
|
|
184
|
+
decrease_adults: "Decrease adults",
|
|
185
|
+
increase_adults: "Increase adults",
|
|
186
|
+
decrease_children: "Decrease children",
|
|
187
|
+
increase_children: "Increase children",
|
|
188
|
+
decrease_infants: "Decrease infants",
|
|
189
|
+
increase_infants: "Increase infants",
|
|
190
|
+
toggle_infants: "Toggle pet"
|
|
191
|
+
};
|
|
192
|
+
var search_form = {
|
|
193
|
+
location_placeholder: "Search for hotels, cities, regions...",
|
|
194
|
+
distance_any: "- km",
|
|
195
|
+
distance_5: "+ 5 km",
|
|
196
|
+
distance_10: "+ 10 km",
|
|
197
|
+
distance_20: "+ 20 km",
|
|
198
|
+
distance_30: "+ 30 km",
|
|
199
|
+
distance_50: "+ 50 km",
|
|
200
|
+
searching: "Searching...",
|
|
201
|
+
reset_filters: "Reset"
|
|
202
|
+
};
|
|
203
|
+
var dropdown = {
|
|
204
|
+
hotels: "Hotels",
|
|
205
|
+
cities: "Cities",
|
|
206
|
+
regions: "Regions",
|
|
207
|
+
countries: "Countries",
|
|
208
|
+
"no-results": "No results found"
|
|
209
|
+
};
|
|
210
|
+
var filters = {
|
|
211
|
+
show_filters: "Show filters",
|
|
212
|
+
open_filters: "Open filters",
|
|
213
|
+
filter_by: "Filter by:",
|
|
214
|
+
hotel_rating: "Hotel rating",
|
|
215
|
+
show_results: "Show {{count}} results",
|
|
216
|
+
apply_filters: "Apply filters",
|
|
217
|
+
close_filters: "Close filters",
|
|
218
|
+
view_in_map: "View in a Map",
|
|
219
|
+
popular_filters: "Popular filters",
|
|
220
|
+
show_less: "Show less",
|
|
221
|
+
selected: "Selected",
|
|
222
|
+
clear_all: "Clear all",
|
|
223
|
+
options: {
|
|
224
|
+
instant_booking: "Immediately bookable",
|
|
225
|
+
pets_allowed: "Pets allowed",
|
|
226
|
+
free_cancellation: "Free cancellation"
|
|
227
|
+
}
|
|
228
|
+
};
|
|
229
|
+
var date_selector = {
|
|
230
|
+
apply: "Apply",
|
|
231
|
+
months_selected: "{{count}} months"
|
|
232
|
+
};
|
|
233
|
+
var star_rating = {
|
|
234
|
+
"5_stars": "5 stars",
|
|
235
|
+
"4_stars": "4 stars",
|
|
236
|
+
"3_stars": "3 stars",
|
|
237
|
+
"2_stars": "2 stars",
|
|
238
|
+
not_classified: "Not classified",
|
|
239
|
+
swiss_lodge: "Swiss Lodge"
|
|
240
|
+
};
|
|
241
|
+
var results = {
|
|
242
|
+
hotels_found: "{{count}} hotels found",
|
|
243
|
+
load_more: "Load more",
|
|
244
|
+
loading: "Loading...",
|
|
245
|
+
end_of_results: "You've reached the end of results",
|
|
246
|
+
no_results: "No hotels found",
|
|
247
|
+
try_different_search: "Try adjusting your search criteria",
|
|
248
|
+
unavailable_banner_title: "More hotels that might interest you",
|
|
249
|
+
unavailable_banner_description: "These hotels don't currently have availability matching your search criteria."
|
|
250
|
+
};
|
|
251
|
+
var errors = {
|
|
252
|
+
search_failed: "Search failed",
|
|
253
|
+
load_more_failed: "Failed to load more hotels"
|
|
254
|
+
};
|
|
255
|
+
var error = {
|
|
256
|
+
title: "Something went wrong",
|
|
257
|
+
description: "We couldn't load the hotels. Please try again.",
|
|
258
|
+
retry: "Try again"
|
|
259
|
+
};
|
|
260
|
+
var no_results = {
|
|
261
|
+
title: "No stays match your search right now.",
|
|
262
|
+
description: "Explore different destinations, change your dates, or remove some filters.",
|
|
263
|
+
description_with_filters: "Explore different destinations, change your dates, or remove some filters.",
|
|
264
|
+
clear_filters: "Clear all filters"
|
|
265
|
+
};
|
|
266
|
+
var pagination = {
|
|
267
|
+
label: "Pagination",
|
|
268
|
+
previous: "Previous page",
|
|
269
|
+
previous_short: "Previous",
|
|
270
|
+
next: "Next page",
|
|
271
|
+
next_short: "Next",
|
|
272
|
+
page: "Page {{page}}"
|
|
273
|
+
};
|
|
274
|
+
var hotel_card = {
|
|
275
|
+
rating: "Rating",
|
|
276
|
+
price_from: "per room & night from",
|
|
277
|
+
not_available: "Not available for your search criteria"
|
|
278
|
+
};
|
|
279
|
+
var badges = {
|
|
280
|
+
"new": "New"
|
|
281
|
+
};
|
|
282
|
+
var clear_location = "Clear location";
|
|
283
|
+
var clear_date = "Clear date";
|
|
284
|
+
var clear_guests = "Clear guests";
|
|
128
285
|
var en = {
|
|
129
286
|
button: button,
|
|
130
287
|
link: link,
|
|
@@ -134,7 +291,36 @@ var en = {
|
|
|
134
291
|
subheadline: subheadline,
|
|
135
292
|
form: form,
|
|
136
293
|
filter: filter,
|
|
137
|
-
headline: headline
|
|
294
|
+
headline: headline,
|
|
295
|
+
meta_title: meta_title,
|
|
296
|
+
meta_description: meta_description,
|
|
297
|
+
title: title,
|
|
298
|
+
loading: loading,
|
|
299
|
+
retry: retry,
|
|
300
|
+
close_map: close_map,
|
|
301
|
+
seo: seo,
|
|
302
|
+
modal: modal,
|
|
303
|
+
map: map,
|
|
304
|
+
view: view,
|
|
305
|
+
breadcrumb: breadcrumb,
|
|
306
|
+
aria: aria,
|
|
307
|
+
breadcrumb_nav: breadcrumb_nav,
|
|
308
|
+
guest_selector: guest_selector,
|
|
309
|
+
search_form: search_form,
|
|
310
|
+
dropdown: dropdown,
|
|
311
|
+
filters: filters,
|
|
312
|
+
date_selector: date_selector,
|
|
313
|
+
star_rating: star_rating,
|
|
314
|
+
results: results,
|
|
315
|
+
errors: errors,
|
|
316
|
+
error: error,
|
|
317
|
+
no_results: no_results,
|
|
318
|
+
pagination: pagination,
|
|
319
|
+
hotel_card: hotel_card,
|
|
320
|
+
badges: badges,
|
|
321
|
+
clear_location: clear_location,
|
|
322
|
+
clear_date: clear_date,
|
|
323
|
+
clear_guests: clear_guests
|
|
138
324
|
};
|
|
139
325
|
|
|
140
326
|
declare const translations: {
|
|
@@ -197,6 +383,7 @@ declare const translations: {
|
|
|
197
383
|
"rating-good": string;
|
|
198
384
|
"rating-fair": string;
|
|
199
385
|
"rating-none": string;
|
|
386
|
+
clear: string;
|
|
200
387
|
};
|
|
201
388
|
product: {
|
|
202
389
|
"6m": string;
|
|
@@ -261,6 +448,162 @@ declare const translations: {
|
|
|
261
448
|
headline: {
|
|
262
449
|
"no-results": string;
|
|
263
450
|
};
|
|
451
|
+
meta_title: string;
|
|
452
|
+
meta_description: string;
|
|
453
|
+
title: string;
|
|
454
|
+
loading: string;
|
|
455
|
+
retry: string;
|
|
456
|
+
close_map: string;
|
|
457
|
+
seo: {
|
|
458
|
+
default_title: string;
|
|
459
|
+
location_title: string;
|
|
460
|
+
region_title: string;
|
|
461
|
+
experience_title: string;
|
|
462
|
+
default_description: string;
|
|
463
|
+
location_description: string;
|
|
464
|
+
};
|
|
465
|
+
modal: {
|
|
466
|
+
close_search: string;
|
|
467
|
+
placeholder_anywhere: string;
|
|
468
|
+
recent_searches: string;
|
|
469
|
+
remove_recent: string;
|
|
470
|
+
all_destinations: string;
|
|
471
|
+
};
|
|
472
|
+
map: {
|
|
473
|
+
open_search: string;
|
|
474
|
+
open_filters: string;
|
|
475
|
+
switch_to_list: string;
|
|
476
|
+
zoom_in: string;
|
|
477
|
+
zoom_out: string;
|
|
478
|
+
no_location_data: string;
|
|
479
|
+
hotels_missing_coordinates: string;
|
|
480
|
+
no_hotels_in_area: string;
|
|
481
|
+
};
|
|
482
|
+
view: {
|
|
483
|
+
list: string;
|
|
484
|
+
};
|
|
485
|
+
breadcrumb: {
|
|
486
|
+
properties_found: string;
|
|
487
|
+
properties_found_location: string;
|
|
488
|
+
};
|
|
489
|
+
aria: {
|
|
490
|
+
search_results_breadcrumb: string;
|
|
491
|
+
close: string;
|
|
492
|
+
previous_image: string;
|
|
493
|
+
next_image: string;
|
|
494
|
+
add_to_favorites: string;
|
|
495
|
+
remove_from_favorites: string;
|
|
496
|
+
list_view: string;
|
|
497
|
+
map_view: string;
|
|
498
|
+
};
|
|
499
|
+
breadcrumb_nav: {
|
|
500
|
+
home: string;
|
|
501
|
+
};
|
|
502
|
+
guest_selector: {
|
|
503
|
+
decrease_adults: string;
|
|
504
|
+
increase_adults: string;
|
|
505
|
+
decrease_children: string;
|
|
506
|
+
increase_children: string;
|
|
507
|
+
decrease_infants: string;
|
|
508
|
+
increase_infants: string;
|
|
509
|
+
toggle_infants: string;
|
|
510
|
+
};
|
|
511
|
+
search_form: {
|
|
512
|
+
location_placeholder: string;
|
|
513
|
+
distance_any: string;
|
|
514
|
+
distance_5: string;
|
|
515
|
+
distance_10: string;
|
|
516
|
+
distance_20: string;
|
|
517
|
+
distance_30: string;
|
|
518
|
+
distance_50: string;
|
|
519
|
+
searching: string;
|
|
520
|
+
reset_filters: string;
|
|
521
|
+
};
|
|
522
|
+
dropdown: {
|
|
523
|
+
hotels: string;
|
|
524
|
+
cities: string;
|
|
525
|
+
regions: string;
|
|
526
|
+
countries: string;
|
|
527
|
+
"no-results": string;
|
|
528
|
+
};
|
|
529
|
+
filters: {
|
|
530
|
+
show_filters: string;
|
|
531
|
+
open_filters: string;
|
|
532
|
+
filter_by: string;
|
|
533
|
+
hotel_rating: string;
|
|
534
|
+
show_results: string;
|
|
535
|
+
apply_filters: string;
|
|
536
|
+
close_filters: string;
|
|
537
|
+
view_in_map: string;
|
|
538
|
+
popular_filters: string;
|
|
539
|
+
destinations: string;
|
|
540
|
+
options_title: string;
|
|
541
|
+
options: {
|
|
542
|
+
instant_booking: string;
|
|
543
|
+
pets_allowed: string;
|
|
544
|
+
free_cancellation: string;
|
|
545
|
+
};
|
|
546
|
+
category: {
|
|
547
|
+
footer_prefix: string;
|
|
548
|
+
};
|
|
549
|
+
show_less: string;
|
|
550
|
+
selected: string;
|
|
551
|
+
clear_all: string;
|
|
552
|
+
};
|
|
553
|
+
date_selector: {
|
|
554
|
+
apply: string;
|
|
555
|
+
months_selected: string;
|
|
556
|
+
};
|
|
557
|
+
star_rating: {
|
|
558
|
+
"5_stars": string;
|
|
559
|
+
"4_stars": string;
|
|
560
|
+
"3_stars": string;
|
|
561
|
+
"2_stars": string;
|
|
562
|
+
not_classified: string;
|
|
563
|
+
swiss_lodge: string;
|
|
564
|
+
};
|
|
565
|
+
results: {
|
|
566
|
+
hotels_found: string;
|
|
567
|
+
load_more: string;
|
|
568
|
+
loading: string;
|
|
569
|
+
end_of_results: string;
|
|
570
|
+
no_results: string;
|
|
571
|
+
try_different_search: string;
|
|
572
|
+
unavailable_banner_title: string;
|
|
573
|
+
unavailable_banner_description: string;
|
|
574
|
+
};
|
|
575
|
+
no_results: {
|
|
576
|
+
title: string;
|
|
577
|
+
subtitle: string;
|
|
578
|
+
description: string;
|
|
579
|
+
description_with_filters: string;
|
|
580
|
+
clear_filters: string;
|
|
581
|
+
};
|
|
582
|
+
errors: {
|
|
583
|
+
search_failed: string;
|
|
584
|
+
load_more_failed: string;
|
|
585
|
+
};
|
|
586
|
+
error: {
|
|
587
|
+
title: string;
|
|
588
|
+
description: string;
|
|
589
|
+
retry: string;
|
|
590
|
+
};
|
|
591
|
+
pagination: {
|
|
592
|
+
label: string;
|
|
593
|
+
previous: string;
|
|
594
|
+
previous_short: string;
|
|
595
|
+
next: string;
|
|
596
|
+
next_short: string;
|
|
597
|
+
page: string;
|
|
598
|
+
};
|
|
599
|
+
hotel_card: {
|
|
600
|
+
rating: string;
|
|
601
|
+
price_from: string;
|
|
602
|
+
not_available: string;
|
|
603
|
+
};
|
|
604
|
+
badges: {
|
|
605
|
+
new: string;
|
|
606
|
+
};
|
|
264
607
|
};
|
|
265
608
|
readonly en: {
|
|
266
609
|
button: {
|
|
@@ -321,6 +664,7 @@ declare const translations: {
|
|
|
321
664
|
"rating-good": string;
|
|
322
665
|
"rating-fair": string;
|
|
323
666
|
"rating-none": string;
|
|
667
|
+
clear: string;
|
|
324
668
|
};
|
|
325
669
|
product: {
|
|
326
670
|
"6m": string;
|
|
@@ -385,6 +729,162 @@ declare const translations: {
|
|
|
385
729
|
headline: {
|
|
386
730
|
"no-results": string;
|
|
387
731
|
};
|
|
732
|
+
meta_title: string;
|
|
733
|
+
meta_description: string;
|
|
734
|
+
title: string;
|
|
735
|
+
loading: string;
|
|
736
|
+
retry: string;
|
|
737
|
+
close_map: string;
|
|
738
|
+
seo: {
|
|
739
|
+
default_title: string;
|
|
740
|
+
location_title: string;
|
|
741
|
+
region_title: string;
|
|
742
|
+
experience_title: string;
|
|
743
|
+
default_description: string;
|
|
744
|
+
location_description: string;
|
|
745
|
+
};
|
|
746
|
+
modal: {
|
|
747
|
+
close_search: string;
|
|
748
|
+
placeholder_anywhere: string;
|
|
749
|
+
recent_searches: string;
|
|
750
|
+
remove_recent: string;
|
|
751
|
+
all_destinations: string;
|
|
752
|
+
};
|
|
753
|
+
map: {
|
|
754
|
+
open_search: string;
|
|
755
|
+
open_filters: string;
|
|
756
|
+
switch_to_list: string;
|
|
757
|
+
zoom_in: string;
|
|
758
|
+
zoom_out: string;
|
|
759
|
+
no_location_data: string;
|
|
760
|
+
hotels_missing_coordinates: string;
|
|
761
|
+
no_hotels_in_area: string;
|
|
762
|
+
};
|
|
763
|
+
view: {
|
|
764
|
+
list: string;
|
|
765
|
+
};
|
|
766
|
+
breadcrumb: {
|
|
767
|
+
properties_found: string;
|
|
768
|
+
properties_found_location: string;
|
|
769
|
+
};
|
|
770
|
+
aria: {
|
|
771
|
+
search_results_breadcrumb: string;
|
|
772
|
+
close: string;
|
|
773
|
+
previous_image: string;
|
|
774
|
+
next_image: string;
|
|
775
|
+
add_to_favorites: string;
|
|
776
|
+
remove_from_favorites: string;
|
|
777
|
+
list_view: string;
|
|
778
|
+
map_view: string;
|
|
779
|
+
};
|
|
780
|
+
breadcrumb_nav: {
|
|
781
|
+
home: string;
|
|
782
|
+
};
|
|
783
|
+
guest_selector: {
|
|
784
|
+
adults_description: string;
|
|
785
|
+
children_description: string;
|
|
786
|
+
infants_description: string;
|
|
787
|
+
decrease_adults: string;
|
|
788
|
+
increase_adults: string;
|
|
789
|
+
decrease_children: string;
|
|
790
|
+
increase_children: string;
|
|
791
|
+
decrease_infants: string;
|
|
792
|
+
increase_infants: string;
|
|
793
|
+
toggle_infants: string;
|
|
794
|
+
};
|
|
795
|
+
search_form: {
|
|
796
|
+
location_placeholder: string;
|
|
797
|
+
distance_any: string;
|
|
798
|
+
distance_5: string;
|
|
799
|
+
distance_10: string;
|
|
800
|
+
distance_20: string;
|
|
801
|
+
distance_30: string;
|
|
802
|
+
distance_50: string;
|
|
803
|
+
searching: string;
|
|
804
|
+
reset_filters: string;
|
|
805
|
+
};
|
|
806
|
+
dropdown: {
|
|
807
|
+
hotels: string;
|
|
808
|
+
cities: string;
|
|
809
|
+
regions: string;
|
|
810
|
+
countries: string;
|
|
811
|
+
"no-results": string;
|
|
812
|
+
};
|
|
813
|
+
filters: {
|
|
814
|
+
show_filters: string;
|
|
815
|
+
open_filters: string;
|
|
816
|
+
filter_by: string;
|
|
817
|
+
hotel_rating: string;
|
|
818
|
+
show_results: string;
|
|
819
|
+
apply_filters: string;
|
|
820
|
+
close_filters: string;
|
|
821
|
+
view_in_map: string;
|
|
822
|
+
popular_filters: string;
|
|
823
|
+
show_less: string;
|
|
824
|
+
selected: string;
|
|
825
|
+
clear_all: string;
|
|
826
|
+
options: {
|
|
827
|
+
instant_booking: string;
|
|
828
|
+
pets_allowed: string;
|
|
829
|
+
free_cancellation: string;
|
|
830
|
+
};
|
|
831
|
+
};
|
|
832
|
+
date_selector: {
|
|
833
|
+
apply: string;
|
|
834
|
+
months_selected: string;
|
|
835
|
+
};
|
|
836
|
+
star_rating: {
|
|
837
|
+
"5_stars": string;
|
|
838
|
+
"4_stars": string;
|
|
839
|
+
"3_stars": string;
|
|
840
|
+
"2_stars": string;
|
|
841
|
+
not_classified: string;
|
|
842
|
+
swiss_lodge: string;
|
|
843
|
+
};
|
|
844
|
+
results: {
|
|
845
|
+
hotels_found: string;
|
|
846
|
+
load_more: string;
|
|
847
|
+
loading: string;
|
|
848
|
+
end_of_results: string;
|
|
849
|
+
no_results: string;
|
|
850
|
+
try_different_search: string;
|
|
851
|
+
unavailable_banner_title: string;
|
|
852
|
+
unavailable_banner_description: string;
|
|
853
|
+
};
|
|
854
|
+
errors: {
|
|
855
|
+
search_failed: string;
|
|
856
|
+
load_more_failed: string;
|
|
857
|
+
};
|
|
858
|
+
error: {
|
|
859
|
+
title: string;
|
|
860
|
+
description: string;
|
|
861
|
+
retry: string;
|
|
862
|
+
};
|
|
863
|
+
no_results: {
|
|
864
|
+
title: string;
|
|
865
|
+
description: string;
|
|
866
|
+
description_with_filters: string;
|
|
867
|
+
clear_filters: string;
|
|
868
|
+
};
|
|
869
|
+
pagination: {
|
|
870
|
+
label: string;
|
|
871
|
+
previous: string;
|
|
872
|
+
previous_short: string;
|
|
873
|
+
next: string;
|
|
874
|
+
next_short: string;
|
|
875
|
+
page: string;
|
|
876
|
+
};
|
|
877
|
+
hotel_card: {
|
|
878
|
+
rating: string;
|
|
879
|
+
price_from: string;
|
|
880
|
+
not_available: string;
|
|
881
|
+
};
|
|
882
|
+
badges: {
|
|
883
|
+
new: string;
|
|
884
|
+
};
|
|
885
|
+
clear_location: string;
|
|
886
|
+
clear_date: string;
|
|
887
|
+
clear_guests: string;
|
|
388
888
|
};
|
|
389
889
|
readonly fr: {
|
|
390
890
|
button: {
|
|
@@ -445,6 +945,7 @@ declare const translations: {
|
|
|
445
945
|
"rating-good": string;
|
|
446
946
|
"rating-fair": string;
|
|
447
947
|
"rating-none": string;
|
|
948
|
+
clear: string;
|
|
448
949
|
};
|
|
449
950
|
product: {
|
|
450
951
|
"6m": string;
|
|
@@ -509,6 +1010,162 @@ declare const translations: {
|
|
|
509
1010
|
headline: {
|
|
510
1011
|
"no-results": string;
|
|
511
1012
|
};
|
|
1013
|
+
meta_title: string;
|
|
1014
|
+
meta_description: string;
|
|
1015
|
+
title: string;
|
|
1016
|
+
loading: string;
|
|
1017
|
+
retry: string;
|
|
1018
|
+
close_map: string;
|
|
1019
|
+
seo: {
|
|
1020
|
+
default_title: string;
|
|
1021
|
+
location_title: string;
|
|
1022
|
+
region_title: string;
|
|
1023
|
+
experience_title: string;
|
|
1024
|
+
default_description: string;
|
|
1025
|
+
location_description: string;
|
|
1026
|
+
};
|
|
1027
|
+
modal: {
|
|
1028
|
+
close_search: string;
|
|
1029
|
+
placeholder_anywhere: string;
|
|
1030
|
+
recent_searches: string;
|
|
1031
|
+
remove_recent: string;
|
|
1032
|
+
all_destinations: string;
|
|
1033
|
+
};
|
|
1034
|
+
map: {
|
|
1035
|
+
open_search: string;
|
|
1036
|
+
open_filters: string;
|
|
1037
|
+
switch_to_list: string;
|
|
1038
|
+
zoom_in: string;
|
|
1039
|
+
zoom_out: string;
|
|
1040
|
+
no_location_data: string;
|
|
1041
|
+
hotels_missing_coordinates: string;
|
|
1042
|
+
no_hotels_in_area: string;
|
|
1043
|
+
};
|
|
1044
|
+
view: {
|
|
1045
|
+
list: string;
|
|
1046
|
+
};
|
|
1047
|
+
breadcrumb: {
|
|
1048
|
+
properties_found: string;
|
|
1049
|
+
properties_found_location: string;
|
|
1050
|
+
};
|
|
1051
|
+
aria: {
|
|
1052
|
+
search_results_breadcrumb: string;
|
|
1053
|
+
close: string;
|
|
1054
|
+
previous_image: string;
|
|
1055
|
+
next_image: string;
|
|
1056
|
+
add_to_favorites: string;
|
|
1057
|
+
remove_from_favorites: string;
|
|
1058
|
+
list_view: string;
|
|
1059
|
+
map_view: string;
|
|
1060
|
+
};
|
|
1061
|
+
breadcrumb_nav: {
|
|
1062
|
+
home: string;
|
|
1063
|
+
};
|
|
1064
|
+
guest_selector: {
|
|
1065
|
+
decrease_adults: string;
|
|
1066
|
+
increase_adults: string;
|
|
1067
|
+
decrease_children: string;
|
|
1068
|
+
increase_children: string;
|
|
1069
|
+
decrease_infants: string;
|
|
1070
|
+
increase_infants: string;
|
|
1071
|
+
toggle_infants: string;
|
|
1072
|
+
};
|
|
1073
|
+
search_form: {
|
|
1074
|
+
location_placeholder: string;
|
|
1075
|
+
distance_any: string;
|
|
1076
|
+
distance_5: string;
|
|
1077
|
+
distance_10: string;
|
|
1078
|
+
distance_20: string;
|
|
1079
|
+
distance_30: string;
|
|
1080
|
+
distance_50: string;
|
|
1081
|
+
searching: string;
|
|
1082
|
+
reset_filters: string;
|
|
1083
|
+
};
|
|
1084
|
+
dropdown: {
|
|
1085
|
+
hotels: string;
|
|
1086
|
+
cities: string;
|
|
1087
|
+
regions: string;
|
|
1088
|
+
countries: string;
|
|
1089
|
+
"no-results": string;
|
|
1090
|
+
};
|
|
1091
|
+
filters: {
|
|
1092
|
+
show_filters: string;
|
|
1093
|
+
open_filters: string;
|
|
1094
|
+
filter_by: string;
|
|
1095
|
+
hotel_rating: string;
|
|
1096
|
+
show_results: string;
|
|
1097
|
+
apply_filters: string;
|
|
1098
|
+
close_filters: string;
|
|
1099
|
+
view_in_map: string;
|
|
1100
|
+
popular_filters: string;
|
|
1101
|
+
destinations: string;
|
|
1102
|
+
options_title: string;
|
|
1103
|
+
options: {
|
|
1104
|
+
instant_booking: string;
|
|
1105
|
+
pets_allowed: string;
|
|
1106
|
+
free_cancellation: string;
|
|
1107
|
+
};
|
|
1108
|
+
category: {
|
|
1109
|
+
footer_prefix: string;
|
|
1110
|
+
};
|
|
1111
|
+
show_less: string;
|
|
1112
|
+
selected: string;
|
|
1113
|
+
clear_all: string;
|
|
1114
|
+
};
|
|
1115
|
+
date_selector: {
|
|
1116
|
+
apply: string;
|
|
1117
|
+
months_selected: string;
|
|
1118
|
+
};
|
|
1119
|
+
star_rating: {
|
|
1120
|
+
"5_stars": string;
|
|
1121
|
+
"4_stars": string;
|
|
1122
|
+
"3_stars": string;
|
|
1123
|
+
"2_stars": string;
|
|
1124
|
+
not_classified: string;
|
|
1125
|
+
swiss_lodge: string;
|
|
1126
|
+
};
|
|
1127
|
+
results: {
|
|
1128
|
+
hotels_found: string;
|
|
1129
|
+
load_more: string;
|
|
1130
|
+
loading: string;
|
|
1131
|
+
end_of_results: string;
|
|
1132
|
+
no_results: string;
|
|
1133
|
+
try_different_search: string;
|
|
1134
|
+
unavailable_banner_title: string;
|
|
1135
|
+
unavailable_banner_description: string;
|
|
1136
|
+
};
|
|
1137
|
+
no_results: {
|
|
1138
|
+
title: string;
|
|
1139
|
+
subtitle: string;
|
|
1140
|
+
description: string;
|
|
1141
|
+
description_with_filters: string;
|
|
1142
|
+
clear_filters: string;
|
|
1143
|
+
};
|
|
1144
|
+
errors: {
|
|
1145
|
+
search_failed: string;
|
|
1146
|
+
load_more_failed: string;
|
|
1147
|
+
};
|
|
1148
|
+
error: {
|
|
1149
|
+
title: string;
|
|
1150
|
+
description: string;
|
|
1151
|
+
retry: string;
|
|
1152
|
+
};
|
|
1153
|
+
pagination: {
|
|
1154
|
+
label: string;
|
|
1155
|
+
previous: string;
|
|
1156
|
+
previous_short: string;
|
|
1157
|
+
next: string;
|
|
1158
|
+
next_short: string;
|
|
1159
|
+
page: string;
|
|
1160
|
+
};
|
|
1161
|
+
hotel_card: {
|
|
1162
|
+
rating: string;
|
|
1163
|
+
price_from: string;
|
|
1164
|
+
not_available: string;
|
|
1165
|
+
};
|
|
1166
|
+
badges: {
|
|
1167
|
+
new: string;
|
|
1168
|
+
};
|
|
512
1169
|
};
|
|
513
1170
|
readonly it: {
|
|
514
1171
|
button: {
|
|
@@ -569,6 +1226,7 @@ declare const translations: {
|
|
|
569
1226
|
"rating-good": string;
|
|
570
1227
|
"rating-fair": string;
|
|
571
1228
|
"rating-none": string;
|
|
1229
|
+
clear: string;
|
|
572
1230
|
};
|
|
573
1231
|
product: {
|
|
574
1232
|
"6m": string;
|
|
@@ -633,6 +1291,162 @@ declare const translations: {
|
|
|
633
1291
|
headline: {
|
|
634
1292
|
"no-results": string;
|
|
635
1293
|
};
|
|
1294
|
+
meta_title: string;
|
|
1295
|
+
meta_description: string;
|
|
1296
|
+
title: string;
|
|
1297
|
+
loading: string;
|
|
1298
|
+
retry: string;
|
|
1299
|
+
close_map: string;
|
|
1300
|
+
seo: {
|
|
1301
|
+
default_title: string;
|
|
1302
|
+
location_title: string;
|
|
1303
|
+
region_title: string;
|
|
1304
|
+
experience_title: string;
|
|
1305
|
+
default_description: string;
|
|
1306
|
+
location_description: string;
|
|
1307
|
+
};
|
|
1308
|
+
modal: {
|
|
1309
|
+
close_search: string;
|
|
1310
|
+
placeholder_anywhere: string;
|
|
1311
|
+
recent_searches: string;
|
|
1312
|
+
remove_recent: string;
|
|
1313
|
+
all_destinations: string;
|
|
1314
|
+
};
|
|
1315
|
+
map: {
|
|
1316
|
+
open_search: string;
|
|
1317
|
+
open_filters: string;
|
|
1318
|
+
switch_to_list: string;
|
|
1319
|
+
zoom_in: string;
|
|
1320
|
+
zoom_out: string;
|
|
1321
|
+
no_location_data: string;
|
|
1322
|
+
hotels_missing_coordinates: string;
|
|
1323
|
+
no_hotels_in_area: string;
|
|
1324
|
+
};
|
|
1325
|
+
view: {
|
|
1326
|
+
list: string;
|
|
1327
|
+
};
|
|
1328
|
+
breadcrumb: {
|
|
1329
|
+
properties_found: string;
|
|
1330
|
+
properties_found_location: string;
|
|
1331
|
+
};
|
|
1332
|
+
aria: {
|
|
1333
|
+
search_results_breadcrumb: string;
|
|
1334
|
+
close: string;
|
|
1335
|
+
previous_image: string;
|
|
1336
|
+
next_image: string;
|
|
1337
|
+
add_to_favorites: string;
|
|
1338
|
+
remove_from_favorites: string;
|
|
1339
|
+
list_view: string;
|
|
1340
|
+
map_view: string;
|
|
1341
|
+
};
|
|
1342
|
+
breadcrumb_nav: {
|
|
1343
|
+
home: string;
|
|
1344
|
+
};
|
|
1345
|
+
guest_selector: {
|
|
1346
|
+
decrease_adults: string;
|
|
1347
|
+
increase_adults: string;
|
|
1348
|
+
decrease_children: string;
|
|
1349
|
+
increase_children: string;
|
|
1350
|
+
decrease_infants: string;
|
|
1351
|
+
increase_infants: string;
|
|
1352
|
+
toggle_infants: string;
|
|
1353
|
+
};
|
|
1354
|
+
search_form: {
|
|
1355
|
+
location_placeholder: string;
|
|
1356
|
+
distance_any: string;
|
|
1357
|
+
distance_5: string;
|
|
1358
|
+
distance_10: string;
|
|
1359
|
+
distance_20: string;
|
|
1360
|
+
distance_30: string;
|
|
1361
|
+
distance_50: string;
|
|
1362
|
+
searching: string;
|
|
1363
|
+
reset_filters: string;
|
|
1364
|
+
};
|
|
1365
|
+
dropdown: {
|
|
1366
|
+
hotels: string;
|
|
1367
|
+
cities: string;
|
|
1368
|
+
regions: string;
|
|
1369
|
+
countries: string;
|
|
1370
|
+
"no-results": string;
|
|
1371
|
+
};
|
|
1372
|
+
filters: {
|
|
1373
|
+
show_filters: string;
|
|
1374
|
+
open_filters: string;
|
|
1375
|
+
filter_by: string;
|
|
1376
|
+
hotel_rating: string;
|
|
1377
|
+
show_results: string;
|
|
1378
|
+
apply_filters: string;
|
|
1379
|
+
close_filters: string;
|
|
1380
|
+
view_in_map: string;
|
|
1381
|
+
popular_filters: string;
|
|
1382
|
+
destinations: string;
|
|
1383
|
+
options_title: string;
|
|
1384
|
+
options: {
|
|
1385
|
+
instant_booking: string;
|
|
1386
|
+
pets_allowed: string;
|
|
1387
|
+
free_cancellation: string;
|
|
1388
|
+
};
|
|
1389
|
+
category: {
|
|
1390
|
+
footer_prefix: string;
|
|
1391
|
+
};
|
|
1392
|
+
show_less: string;
|
|
1393
|
+
selected: string;
|
|
1394
|
+
clear_all: string;
|
|
1395
|
+
};
|
|
1396
|
+
date_selector: {
|
|
1397
|
+
apply: string;
|
|
1398
|
+
months_selected: string;
|
|
1399
|
+
};
|
|
1400
|
+
star_rating: {
|
|
1401
|
+
"5_stars": string;
|
|
1402
|
+
"4_stars": string;
|
|
1403
|
+
"3_stars": string;
|
|
1404
|
+
"2_stars": string;
|
|
1405
|
+
not_classified: string;
|
|
1406
|
+
swiss_lodge: string;
|
|
1407
|
+
};
|
|
1408
|
+
results: {
|
|
1409
|
+
hotels_found: string;
|
|
1410
|
+
load_more: string;
|
|
1411
|
+
loading: string;
|
|
1412
|
+
end_of_results: string;
|
|
1413
|
+
no_results: string;
|
|
1414
|
+
try_different_search: string;
|
|
1415
|
+
unavailable_banner_title: string;
|
|
1416
|
+
unavailable_banner_description: string;
|
|
1417
|
+
};
|
|
1418
|
+
no_results: {
|
|
1419
|
+
title: string;
|
|
1420
|
+
subtitle: string;
|
|
1421
|
+
description: string;
|
|
1422
|
+
description_with_filters: string;
|
|
1423
|
+
clear_filters: string;
|
|
1424
|
+
};
|
|
1425
|
+
errors: {
|
|
1426
|
+
search_failed: string;
|
|
1427
|
+
load_more_failed: string;
|
|
1428
|
+
};
|
|
1429
|
+
error: {
|
|
1430
|
+
title: string;
|
|
1431
|
+
description: string;
|
|
1432
|
+
retry: string;
|
|
1433
|
+
};
|
|
1434
|
+
pagination: {
|
|
1435
|
+
label: string;
|
|
1436
|
+
previous: string;
|
|
1437
|
+
previous_short: string;
|
|
1438
|
+
next: string;
|
|
1439
|
+
next_short: string;
|
|
1440
|
+
page: string;
|
|
1441
|
+
};
|
|
1442
|
+
hotel_card: {
|
|
1443
|
+
rating: string;
|
|
1444
|
+
price_from: string;
|
|
1445
|
+
not_available: string;
|
|
1446
|
+
};
|
|
1447
|
+
badges: {
|
|
1448
|
+
new: string;
|
|
1449
|
+
};
|
|
636
1450
|
};
|
|
637
1451
|
};
|
|
638
1452
|
type Locale = keyof typeof translations;
|
|
@@ -1548,98 +2362,6 @@ interface SelectedFiltersRowProps {
|
|
|
1548
2362
|
}
|
|
1549
2363
|
declare const SelectedFiltersRow: React__default.FC<SelectedFiltersRowProps>;
|
|
1550
2364
|
|
|
1551
|
-
/**
|
|
1552
|
-
* FilterPanel - Sidebar/modal filters for search results
|
|
1553
|
-
*
|
|
1554
|
-
* Desktop: Fixed sidebar
|
|
1555
|
-
* Mobile: Full-screen modal (use with FilterModal wrapper)
|
|
1556
|
-
*/
|
|
1557
|
-
interface FilterState {
|
|
1558
|
-
regions?: string[];
|
|
1559
|
-
experiences?: string[];
|
|
1560
|
-
priceRange?: {
|
|
1561
|
-
min: number;
|
|
1562
|
-
max: number;
|
|
1563
|
-
};
|
|
1564
|
-
discounts?: string[];
|
|
1565
|
-
options?: string[];
|
|
1566
|
-
meals?: string[];
|
|
1567
|
-
categories?: string[];
|
|
1568
|
-
ratings?: string[];
|
|
1569
|
-
transport?: string[];
|
|
1570
|
-
wellness?: string[];
|
|
1571
|
-
services?: string[];
|
|
1572
|
-
}
|
|
1573
|
-
interface FilterOptions {
|
|
1574
|
-
meals?: FilterOption[];
|
|
1575
|
-
transport?: FilterOption[];
|
|
1576
|
-
wellness?: FilterOption[];
|
|
1577
|
-
services?: FilterOption[];
|
|
1578
|
-
}
|
|
1579
|
-
interface FilterPanelProps {
|
|
1580
|
-
onFilterChange?: (filters: FilterState) => void;
|
|
1581
|
-
onViewMap?: () => void;
|
|
1582
|
-
className?: string;
|
|
1583
|
-
isLoading?: boolean;
|
|
1584
|
-
priceHistogram?: number[];
|
|
1585
|
-
minPrice?: number;
|
|
1586
|
-
maxPrice?: number;
|
|
1587
|
-
regions?: RegionOption[];
|
|
1588
|
-
discountCounts?: Record<string, number>;
|
|
1589
|
-
optionsCounts?: Record<string, number>;
|
|
1590
|
-
categoryCounts?: Record<string, number>;
|
|
1591
|
-
experienceCounts?: Record<string, number>;
|
|
1592
|
-
themes?: ThemeAggregation[];
|
|
1593
|
-
mealsCounts?: Record<string, number>;
|
|
1594
|
-
reviewsCounts?: Record<string, number>;
|
|
1595
|
-
transportCounts?: Record<string, number>;
|
|
1596
|
-
wellnessCounts?: Record<string, number>;
|
|
1597
|
-
servicesCounts?: Record<string, number>;
|
|
1598
|
-
filterOptions?: FilterOptions;
|
|
1599
|
-
selectedDiscounts?: string[];
|
|
1600
|
-
selectedOptions?: string[];
|
|
1601
|
-
selectedExperiences?: string[];
|
|
1602
|
-
selectedRegions?: string[];
|
|
1603
|
-
selectedCategories?: string[];
|
|
1604
|
-
selectedMeals?: string[];
|
|
1605
|
-
selectedReviews?: string[];
|
|
1606
|
-
selectedTransport?: string[];
|
|
1607
|
-
selectedWellness?: string[];
|
|
1608
|
-
selectedServices?: string[];
|
|
1609
|
-
selectedPriceRange?: {
|
|
1610
|
-
min: number;
|
|
1611
|
-
max: number;
|
|
1612
|
-
} | null;
|
|
1613
|
-
mapCenter?: {
|
|
1614
|
-
lat: number;
|
|
1615
|
-
lng: number;
|
|
1616
|
-
};
|
|
1617
|
-
}
|
|
1618
|
-
declare const FilterPanel: React__default.FC<FilterPanelProps>;
|
|
1619
|
-
|
|
1620
|
-
/**
|
|
1621
|
-
* FilterModal - Modal wrapper for FilterPanel
|
|
1622
|
-
*
|
|
1623
|
-
* Used in:
|
|
1624
|
-
* - Mobile list view
|
|
1625
|
-
* - Map view (both desktop and mobile)
|
|
1626
|
-
*
|
|
1627
|
-
* This is just a modal container - all filter logic is in FilterPanel
|
|
1628
|
-
* Selected filters chips are passed from the parent (same as list view)
|
|
1629
|
-
*/
|
|
1630
|
-
interface FilterModalProps extends Omit<FilterPanelProps, 'className' | 'onViewMap'> {
|
|
1631
|
-
isOpen: boolean;
|
|
1632
|
-
onClose: () => void;
|
|
1633
|
-
resultCount?: number;
|
|
1634
|
-
/** Selected filters to display as chips - passed from parent */
|
|
1635
|
-
selectedFilters?: SelectedFilter[];
|
|
1636
|
-
/** Handler for removing a single filter chip - passed from parent */
|
|
1637
|
-
onRemoveFilter?: (filter: SelectedFilter) => void;
|
|
1638
|
-
/** Handler for clearing all filters - passed from parent */
|
|
1639
|
-
onClearAllFilters?: () => void;
|
|
1640
|
-
}
|
|
1641
|
-
declare const FilterModal: React__default.FC<FilterModalProps>;
|
|
1642
|
-
|
|
1643
2365
|
interface HeartIconProps {
|
|
1644
2366
|
filled?: boolean;
|
|
1645
2367
|
className?: string;
|
|
@@ -1834,4 +2556,4 @@ interface SearchFilters {
|
|
|
1834
2556
|
regions?: string[];
|
|
1835
2557
|
}
|
|
1836
2558
|
|
|
1837
|
-
export { type Address, Badge, type BadgeProps, type BenefitItem, Benefits, type BenefitsProps, Block, type BlockProps, type Booking, Button, type ButtonProps, CATEGORY_OPTIONS, Card, type CardBadge, type CardProps, type CardRatingInfo, type CategoryOption, Checkbox, CheckboxFilter, type CheckboxFilterProps, type CheckboxProps, type CheckboxSize, ChevronLeftIcon, ChevronRightIcon, type ChildAgeError, Chip, type ChipProps, type ChipSize, type ChipState, CollapsibleFilterSection, type CollapsibleFilterSectionProps, type DateRange, DateSelector, type DateSelectorProps, Divider, type DividerProps, Dropdown, type DropdownOption, type DropdownProps, DualCalendar, ExperienceFilter, type ExperienceFilterProps, FAQ, type FAQItem, type FAQProps, FilterCheckboxItem, type FilterCheckboxItemProps,
|
|
2559
|
+
export { type Address, Badge, type BadgeProps, type BenefitItem, Benefits, type BenefitsProps, Block, type BlockProps, type Booking, Button, type ButtonProps, CATEGORY_OPTIONS, Card, type CardBadge, type CardProps, type CardRatingInfo, type CategoryOption, Checkbox, CheckboxFilter, type CheckboxFilterProps, type CheckboxProps, type CheckboxSize, ChevronLeftIcon, ChevronRightIcon, type ChildAgeError, Chip, type ChipProps, type ChipSize, type ChipState, CollapsibleFilterSection, type CollapsibleFilterSectionProps, type DateRange, DateSelector, type DateSelectorProps, Divider, type DividerProps, Dropdown, type DropdownOption, type DropdownProps, DualCalendar, ExperienceFilter, type ExperienceFilterProps, FAQ, type FAQItem, type FAQProps, FilterCheckboxItem, type FilterCheckboxItemProps, type FilterOption, GuestContent, type GuestContentProps, type GuestCounts, HeartIcon, type Hotel, HotelCard, HotelCardContent, type HotelCardContentProps, type HotelCardHotel, HotelCardImage, type HotelCardImageProps, type HotelCardProps, HotelCardUIProvider, type HotelCardUIProviderProps, HotelCategoryFilter, type HotelCategoryFilterProps, Input, type InputProps, type InputType, type Locale, MealsFilter, type Membership, Modal, type ModalProps, Pin, PinIcon, type PinProps, PriceRangeFilter, type PriceRangeFilterProps, REVIEW_OPTIONS, RadioButton, type RadioButtonProps, Rating, type RatingProps, type RegionOption, RegionsFilter, type RegionsFilterProps, ReviewCard, type ReviewCardProps, type ReviewOption, ReviewsFilter, type ReviewsFilterProps, type SearchFilters, type SearchParams, SectionHeader, type SectionHeaderProps, type SelectedFilter, SelectedFiltersRow, type SelectedFiltersRowProps, StarIcon, type ThemeAggregation, type TranslateFunction$1 as TranslateFunction, type TranslationKeys, TransportFilter, type UIContextValue, type User, WellnessFilter, WhenContent, type WhenContentProps, calculateDiscount, formatDate, formatDateRange, formatPrice, translations, useDebounce, useResponsive, useTranslation, useUIContext, useWindowData };
|