@prijsvrijtechsupport/ui 0.0.31 → 0.0.33

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/index.d.ts CHANGED
@@ -103,5 +103,5 @@ export { Collection } from "./components/collection";
103
103
  export { HotelWidget } from "./components/hotelWidget";
104
104
  export { PageNavigation } from "./components/pageNavigation";
105
105
  export { PvPopup } from "./components/pvPopup";
106
- export { BookModule } from "./components/bookModule";
106
+ export { SearchBlock } from "./components/searchBlock";
107
107
  export { RangeSlider } from "./components/rangeSlider";
package/dist/index.js CHANGED
@@ -85,7 +85,7 @@ var styles_default$15 = {};
85
85
  var styles_default$14 = {};
86
86
 
87
87
  //#endregion
88
- //#region src/components/bookModule/styles.css
88
+ //#region src/components/searchBlock/styles.css
89
89
  var styles_default$13 = {};
90
90
 
91
91
  //#endregion
@@ -200,7 +200,7 @@ const IconAlert = ({ className,...props }) => /* @__PURE__ */ jsxs("svg", {
200
200
 
201
201
  //#endregion
202
202
  //#region src/components/button/buttonVariants.ts
203
- const defaultButtonStyling = "justify-center group relative flex items-center gap-2 cursor-pointer border rounded py-2 px-5 text-sx md:text-sm md:font-medium font-medium hover:outline-hidden focus:outline-hidden disabled:cursor-not-allowed transition-colors duration-100 ease-in-out";
203
+ const defaultButtonStyling = "justify-center group relative whitespace-nowrap flex items-center gap-2 cursor-pointer border rounded py-2 px-5 text-xs md:text-sm md:font-medium font-medium hover:outline-hidden focus:outline-hidden disabled:cursor-not-allowed transition-colors duration-100 ease-in-out";
204
204
  const buttonVariants = {
205
205
  primary: clsx(defaultButtonStyling, "btn-primary btn-primary-boxShadow hover:btn-primary-boxShadow-hover active:btn-primary-boxShadow-active hover:-translate-y-[3px] active:translate-y-[2px]"),
206
206
  primaryGlow: clsx(defaultButtonStyling, "btn-primary btn-shadow btn-glow"),
@@ -217,7 +217,7 @@ const buttonVariants = {
217
217
  "prijsvrij-primary": clsx(defaultButtonStyling, "border-transparent bg-prijsvrij-primary text-white hover:bg-prijsvrij-600 disabled:bg-prijsvrij-100 disabled:text-prijsvrij-700"),
218
218
  "dreizen-primary": clsx(defaultButtonStyling, "border-transparent bg-dreizen-primary text-white hover:bg-dreizen-600 disabled:bg-dreizen-100 disabled:text-dreizen-700"),
219
219
  search: clsx(defaultButtonStyling, "absolute top-0 right-0 h-full w-[50px] border-0 bg-transparent bg-no-repeat"),
220
- textButton: clsx("justify-center group relative flex items-center gap-2 cursor-pointer text-sx md:text-sm md:font-medium font-medium hover:outline-hidden focus:outline-hidden disabled:cursor-not-allowed transition-colors duration-100 ease-in-out btn-text btn-text-color btn-text-hover-color")
220
+ textButton: clsx("justify-center group relative flex items-center gap-2 cursor-pointer text-base md:text-sm md:font-medium font-medium hover:outline-hidden focus:outline-hidden disabled:cursor-not-allowed transition-colors duration-100 ease-in-out btn-text btn-text-color btn-text-hover-color")
221
221
  };
222
222
 
223
223
  //#endregion
@@ -4030,7 +4030,7 @@ const Header = ({ className, middleNavigation, menuItems, "data-testid": dataTes
4030
4030
  return /* @__PURE__ */ jsx("div", {
4031
4031
  "data-component": "header",
4032
4032
  "data-testid": dataTestId,
4033
- className: clsx(`w-full ${brand === "dreizen" && "shadow-[0_4px_4px_rgba(0,0,0,0.05)]"}`, className),
4033
+ className: clsx(`w-full ${brand === "dreizen" && "bg-white shadow-[0_4px_4px_rgba(0,0,0,0.05)]"}`, className),
4034
4034
  children: brand === "prijsvrij" ? /* @__PURE__ */ jsx("div", {
4035
4035
  className: "w-full",
4036
4036
  style: { backgroundColor: "#0092f2" },
@@ -4340,6 +4340,14 @@ const Toggle = TransportToggle;
4340
4340
 
4341
4341
  //#endregion
4342
4342
  //#region src/components/topHeaderMenu/index.tsx
4343
+ const createTimeoutCallback = (iconId, setFlyingIcons, onHeartClick) => {
4344
+ return () => {
4345
+ setFlyingIcons((prev) => prev.filter((icon) => icon.id !== iconId));
4346
+ if (onHeartClick) {
4347
+ onHeartClick();
4348
+ }
4349
+ };
4350
+ };
4343
4351
  const TopHeaderMenu = ({ className, menuItems, onHeartClick,...props }) => {
4344
4352
  const [flyingIcons, setFlyingIcons] = useState([]);
4345
4353
  const iconIdCounter = useRef(0);
@@ -4362,12 +4370,8 @@ const TopHeaderMenu = ({ className, menuItems, onHeartClick,...props }) => {
4362
4370
  endY: targetRect.top + targetRect.height / 2
4363
4371
  };
4364
4372
  setFlyingIcons((prev) => [...prev, newIcon]);
4365
- setTimeout(() => {
4366
- setFlyingIcons((prev) => prev.filter((icon) => icon.id !== newIcon.id));
4367
- if (onHeartClick) {
4368
- onHeartClick();
4369
- }
4370
- }, 1e3);
4373
+ const timeoutCallback = createTimeoutCallback(newIcon.id, setFlyingIcons, onHeartClick);
4374
+ setTimeout(timeoutCallback, 1e3);
4371
4375
  };
4372
4376
  return /* @__PURE__ */ jsxs("div", {
4373
4377
  "data-component": "top-header-menu",
@@ -4473,9 +4477,9 @@ const Usp = ({ className, orientation = "horizontal", uspItems, "data-testid": d
4473
4477
 
4474
4478
  //#endregion
4475
4479
  //#region src/components/middleNavigation/index.tsx
4476
- const MenuItem = ({ item, onClick }) => {
4480
+ const MenuItem = ({ item }) => {
4477
4481
  return /* @__PURE__ */ jsxs("li", {
4478
- onClick,
4482
+ onClick: item.onClick,
4479
4483
  className: "flex cursor-pointer flex-col justify-center items-center",
4480
4484
  children: [/* @__PURE__ */ jsx("span", {
4481
4485
  className: "w-6 h-6 flex items-center justify-center",
@@ -4492,10 +4496,7 @@ const MiddleNavigation = ({ className, menuItems,...props }) => /* @__PURE__ */
4492
4496
  ...props,
4493
4497
  children: /* @__PURE__ */ jsx("ul", {
4494
4498
  className: "flex flex-row gap-4",
4495
- children: menuItems.map((item) => /* @__PURE__ */ jsx(MenuItem, {
4496
- item,
4497
- onClick: item.onClick
4498
- }, item.text))
4499
+ children: menuItems.map((item) => /* @__PURE__ */ jsx(MenuItem, { item }, item.text))
4499
4500
  })
4500
4501
  });
4501
4502
 
@@ -4733,7 +4734,7 @@ const FooterNavigation = ({ className, showIcon = true, columns = footerNavigati
4733
4734
  children: /* @__PURE__ */ jsx("div", {
4734
4735
  className: "max-w-7xl mx-auto",
4735
4736
  children: /* @__PURE__ */ jsx("div", {
4736
- className: "grid grid-cols-8 gap-8",
4737
+ className: "grid grid-rows-8 sm:grid-cols-8 gap-8",
4737
4738
  children: columns.map((column, columnIndex) => /* @__PURE__ */ jsxs("div", {
4738
4739
  className: "col-span-2",
4739
4740
  children: [/* @__PURE__ */ jsx("h3", {
@@ -4764,15 +4765,15 @@ const FooterNavigation = ({ className, showIcon = true, columns = footerNavigati
4764
4765
  const FooterBar = ({ className, data = footerBarData, "data-testid": dataTestId = "footer-bar",...props }) => /* @__PURE__ */ jsx("div", {
4765
4766
  "data-component": "footer-bar",
4766
4767
  "data-testid": dataTestId,
4767
- className: clsx("bg-primary text-white py-4 px-6", className),
4768
+ className: clsx("bg-primary text-white py-4 px-3 sm:py-4 sm:px-6", className),
4768
4769
  ...props,
4769
4770
  children: /* @__PURE__ */ jsxs("div", {
4770
- className: "max-w-7xl mx-auto flex justify-between items-center",
4771
+ className: "max-w-7xl mx-auto flex-col flex sm:flex-row gap-2 sm:gap-0 justify-between items-center",
4771
4772
  children: [/* @__PURE__ */ jsx("div", {
4772
- className: "flex space-x-6",
4773
+ className: "flex space-x-6 w-full items-center justify-center overflow-scroll",
4773
4774
  children: data.leftLinks.map((link, index) => /* @__PURE__ */ jsx("a", {
4774
4775
  href: link.href,
4775
- className: "text-white transition-colors",
4776
+ className: "text-white transition-colors whitespace-nowrap",
4776
4777
  children: link.text
4777
4778
  }, index))
4778
4779
  }), /* @__PURE__ */ jsx("div", {
@@ -9063,7 +9064,7 @@ const Calendar = ({ className, month, year = 2026,...props }) => {
9063
9064
  children: [/* @__PURE__ */ jsxs("div", {
9064
9065
  className: "flex items-center justify-between gap-4 mb-3",
9065
9066
  children: [/* @__PURE__ */ jsx("div", {
9066
- className: "text-sm text-secondary font-bold",
9067
+ className: "text-sm text-secondary font-bold whitespace-nowrap",
9067
9068
  children: firstOfMonth.toLocaleDateString("nl-NL", {
9068
9069
  month: "long",
9069
9070
  year: "numeric"
@@ -10164,7 +10165,7 @@ function CompactTimeline({ leg, hasStopOvers, onToggleStopOvers }) {
10164
10165
  /* @__PURE__ */ jsx(TimelineDot, {})
10165
10166
  ]
10166
10167
  }), /* @__PURE__ */ jsxs("div", {
10167
- className: "flex flex-col gap-2 w-full py-1",
10168
+ className: "flex flex-col gap-2 w-full",
10168
10169
  children: [
10169
10170
  /* @__PURE__ */ jsxs("div", {
10170
10171
  className: "flex flex-row gap-2",
@@ -10192,7 +10193,7 @@ function CompactTimeline({ leg, hasStopOvers, onToggleStopOvers }) {
10192
10193
  ]
10193
10194
  }),
10194
10195
  /* @__PURE__ */ jsxs("div", {
10195
- className: "flex flex-row w-full justify-between",
10196
+ className: "flex flex-col sm:flex-row w-full justify-between",
10196
10197
  children: [/* @__PURE__ */ jsxs("div", {
10197
10198
  className: "flex flex-row gap-2",
10198
10199
  children: [/* @__PURE__ */ jsx("span", {
@@ -10381,10 +10382,10 @@ const GiftCard = ({ className, amount, amountTotal, cardNumber, validUntilDate,.
10381
10382
  className: "flex flex-col",
10382
10383
  children: [
10383
10384
  /* @__PURE__ */ jsxs("span", {
10384
- className: "mb-1.5",
10385
+ className: "mb-1.5 text-xs sm:text-2xl",
10385
10386
  children: [
10386
10387
  /* @__PURE__ */ jsx("span", {
10387
- className: "text-2xl font-bold gift-card-amount",
10388
+ className: "font-bold gift-card-amount",
10388
10389
  children: setCurrencyValue(amount || "0")
10389
10390
  }),
10390
10391
  " / ",
@@ -10402,10 +10403,7 @@ const GiftCard = ({ className, amount, amountTotal, cardNumber, validUntilDate,.
10402
10403
  ]
10403
10404
  }), /* @__PURE__ */ jsx("span", {
10404
10405
  className: "flex items-center mr-3",
10405
- children: /* @__PURE__ */ jsx(IconPresent, {
10406
- width: 56,
10407
- height: 56
10408
- })
10406
+ children: /* @__PURE__ */ jsx(IconPresent, { className: "size-[28px] sm:size-[56px]" })
10409
10407
  })]
10410
10408
  });
10411
10409
 
@@ -10870,7 +10868,7 @@ const Coupon = ({ className, title, description, code, validUntil, image, backgr
10870
10868
  };
10871
10869
  return /* @__PURE__ */ jsxs("div", {
10872
10870
  "data-component": "coupon",
10873
- className: clsx(className, "rounded-lg w-fit relative"),
10871
+ className: clsx(className, "rounded-lg w-full sm:w-fit relative"),
10874
10872
  ...props,
10875
10873
  children: [
10876
10874
  /* @__PURE__ */ jsx("div", {
@@ -10889,7 +10887,7 @@ const Coupon = ({ className, title, description, code, validUntil, image, backgr
10889
10887
  className: "font-bold text-secondary",
10890
10888
  children: title
10891
10889
  }), /* @__PURE__ */ jsx("p", {
10892
- className: "text-sm",
10890
+ className: "text-xs sm:text-sm",
10893
10891
  children: description
10894
10892
  })]
10895
10893
  })]
@@ -10906,11 +10904,11 @@ const Coupon = ({ className, title, description, code, validUntil, image, backgr
10906
10904
  className: "text-primary uppercase flex flex-row items-center gap-1",
10907
10905
  children: [
10908
10906
  /* @__PURE__ */ jsx("span", {
10909
- className: "text-base",
10907
+ className: "text-xs sm:text-base",
10910
10908
  children: "Kortingscode:"
10911
10909
  }),
10912
10910
  /* @__PURE__ */ jsx("span", {
10913
- className: "font-bold",
10911
+ className: "font-bold text-xs sm:text-base",
10914
10912
  children: code
10915
10913
  }),
10916
10914
  /* @__PURE__ */ jsx("button", {
@@ -11223,54 +11221,60 @@ const PvPopup = ({ className, popupTitle, content, button, size, popover, popupI
11223
11221
  };
11224
11222
 
11225
11223
  //#endregion
11226
- //#region src/components/bookModule/index.tsx
11227
- const BookModuleButton = ({ className, label, labelOutside, icon, downIcon, onClick, selectedValue, secondarySelectedValue,...props }) => {
11224
+ //#region src/components/searchBlock/index.tsx
11225
+ const SearchBlockButton = ({ className, label, labelOutside, icon, downIcon, onClick, selectedValue, secondarySelectedValue,...props }) => {
11228
11226
  return /* @__PURE__ */ jsxs(Fragment$1, { children: [labelOutside && /* @__PURE__ */ jsx("span", {
11229
- className: "bookModuleButtonLabel",
11227
+ className: "searchBlockButtonLabel",
11230
11228
  children: label
11231
11229
  }), /* @__PURE__ */ jsxs("button", {
11232
- className: clsx(className, "bookModuleButton flex flex-row items-center justify-between gap-2 px-2"),
11230
+ className: clsx(className, "searchBlockButton flex flex-row items-center justify-between gap-2 px-2 py-2"),
11233
11231
  onClick,
11234
11232
  ...props,
11235
11233
  children: [/* @__PURE__ */ jsxs("div", {
11236
11234
  className: "flex flex-row items-center justify-center gap-2",
11237
11235
  children: [/* @__PURE__ */ jsx("span", {
11238
- className: "w-5 h-5 flex items-center justify-center bookModuleButtonIcon",
11236
+ className: "w-5 h-auto sm:h-5 flex items-center justify-center searchBlockButtonIcon",
11239
11237
  children: icon
11240
11238
  }), /* @__PURE__ */ jsxs("span", {
11241
11239
  className: "flex flex-col items-start justify-center",
11242
11240
  children: [!labelOutside && /* @__PURE__ */ jsx("span", {
11243
- className: "bookModuleButtonLabel",
11241
+ className: "searchBlockButtonLabel",
11244
11242
  children: label
11245
11243
  }), /* @__PURE__ */ jsxs("span", {
11246
- className: "bookModuleButtonSelectedValue",
11244
+ className: "searchBlockButtonSelectedValue whitespace-nowrap flex flex-col sm:flex-row items-start sm:items-center",
11247
11245
  children: [/* @__PURE__ */ jsx("span", {
11248
11246
  className: `${secondarySelectedValue && "font-bold"}`,
11249
11247
  children: selectedValue
11250
- }), secondarySelectedValue && ` - ${secondarySelectedValue}`]
11248
+ }), secondarySelectedValue && /* @__PURE__ */ jsxs("div", {
11249
+ className: "flex flex-row gap-0 sm:gap-2 text-xs",
11250
+ children: [/* @__PURE__ */ jsx("span", {
11251
+ className: "hidden ml-0 sm:ml-2 sm:inline",
11252
+ children: "-"
11253
+ }), secondarySelectedValue]
11254
+ })]
11251
11255
  })]
11252
11256
  })]
11253
11257
  }), /* @__PURE__ */ jsx("span", {
11254
- className: "bookModuleButtonDownIcon",
11258
+ className: "searchBlockButtonDownIcon",
11255
11259
  children: downIcon
11256
11260
  })]
11257
11261
  })] });
11258
11262
  };
11259
- const BookModule = ({ className, bookModuleTitle, bookModuleForm, onClickFn, "data-testid": dataTestId = "book-module",...props }) => {
11263
+ const SearchBlock = ({ className, SearchBlockTitle, SearchBlockForm, onClickFn, "data-testid": dataTestId = "book-module",...props }) => {
11260
11264
  const brand = useBrand();
11261
11265
  return /* @__PURE__ */ jsx("div", {
11262
11266
  "data-component": "book-module",
11263
11267
  "data-testid": dataTestId,
11264
- className: clsx(className, `bookModule w-[350px] ${brand === "dreizen" ? "p-8" : "p-4"}`),
11268
+ className: clsx(className, `searchBlock w-full sm:w-[350px] ${brand === "dreizen" ? "p-8" : "p-4"}`),
11265
11269
  ...props,
11266
11270
  children: /* @__PURE__ */ jsxs("div", {
11267
11271
  className: `flex flex-col ${brand === "prijsvrij" && "gap-2"}`,
11268
11272
  children: [
11269
11273
  /* @__PURE__ */ jsx("span", {
11270
11274
  className: `${brand === "dreizen" && "mb-2"}`,
11271
- children: bookModuleTitle
11275
+ children: SearchBlockTitle
11272
11276
  }),
11273
- /* @__PURE__ */ jsx(BookModuleButton, {
11277
+ /* @__PURE__ */ jsx(SearchBlockButton, {
11274
11278
  labelOutside: brand === "dreizen",
11275
11279
  selectedValue: "2 personen op 1 kamer",
11276
11280
  label: "Reisgezelschap",
@@ -11278,7 +11282,7 @@ const BookModule = ({ className, bookModuleTitle, bookModuleForm, onClickFn, "da
11278
11282
  downIcon: brand === "dreizen" ? /* @__PURE__ */ jsx(IconChevronRight, { className: " rotate-90" }) : /* @__PURE__ */ jsx(IconArrowDown, { className: "" }),
11279
11283
  onClick: () => {}
11280
11284
  }),
11281
- /* @__PURE__ */ jsx(BookModuleButton, {
11285
+ /* @__PURE__ */ jsx(SearchBlockButton, {
11282
11286
  labelOutside: brand === "dreizen",
11283
11287
  selectedValue: "Alle landen",
11284
11288
  label: "Bestemming",
@@ -11286,7 +11290,7 @@ const BookModule = ({ className, bookModuleTitle, bookModuleForm, onClickFn, "da
11286
11290
  downIcon: brand === "dreizen" ? /* @__PURE__ */ jsx(IconChevronRight, { className: " rotate-90" }) : /* @__PURE__ */ jsx(IconArrowDown, { className: "" }),
11287
11291
  onClick: () => {}
11288
11292
  }),
11289
- /* @__PURE__ */ jsx(BookModuleButton, {
11293
+ /* @__PURE__ */ jsx(SearchBlockButton, {
11290
11294
  labelOutside: brand === "dreizen",
11291
11295
  selectedValue: "De voordeligste datum",
11292
11296
  secondarySelectedValue: "14 dagen",
@@ -11295,7 +11299,7 @@ const BookModule = ({ className, bookModuleTitle, bookModuleForm, onClickFn, "da
11295
11299
  downIcon: brand === "dreizen" ? /* @__PURE__ */ jsx(IconChevronRight, { className: " rotate-90" }) : /* @__PURE__ */ jsx(IconArrowDown, { className: "" }),
11296
11300
  onClick: () => {}
11297
11301
  }),
11298
- /* @__PURE__ */ jsx(BookModuleButton, {
11302
+ /* @__PURE__ */ jsx(SearchBlockButton, {
11299
11303
  labelOutside: brand === "dreizen",
11300
11304
  selectedValue: "Vliegreis",
11301
11305
  secondarySelectedValue: "5 geselecteerd",
@@ -11416,5 +11420,5 @@ const RangeSlider = forwardRef(function RangeSlider$1({ className, min = 0, max
11416
11420
  RangeSlider.displayName = "RangeSlider";
11417
11421
 
11418
11422
  //#endregion
11419
- export { Accordion, ActionIcon, Alert, AutoCompleteInput, Avatar, AvatarIndicator, Badge, BigBadge, BlogWidget, BookModule, BrandProvider, BrandTopMenu, BreadCrumb, Button, CSS_VARIABLE_KEYS, Calendar, CategoryFilter, Chatbot, Checkbox, Collection, CounterIcon, Coupon, DatePickerInput, Divider, Dropdown, FavouriteButton, FilterButton, Filters, FlightSwitch, Footer, GiftCard, HR, HamburgerMenuButton, Header, Hero, HotelAccomodationResults, HotelWidget, IconAlert, IconArrival, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconBeach, IconBed, IconBlog, IconBus, IconCalendar, IconCancel, IconCar, IconCarSun, IconCheck, IconChevronRight, IconCity, IconClock, IconCocktail, IconDelete, IconDeparture, IconDollar, IconEdit, IconExpand, IconFacebook, IconFavorite, IconFilter, IconFood, IconHeart, IconHeartFilled, IconHot, IconHotel, IconHouse, IconIce, IconInfo, IconInstagram, IconLuggage, IconMail, IconMap, IconMinus, IconParty, IconPhone, IconPhoto, IconPinterest, IconPlane, IconPlus, IconPresent, IconQuestion, IconRating, IconSearch, IconSeat, IconShare, IconSplash, IconStar, IconSuccess, IconSun, IconSupport, IconTemperature, IconTiktok, IconTransfer, IconTree, IconTwitter, IconUser, IconView, IconWarning, IconWatched, IconWhatsapp, IconWinterSport, IconWinterSun, Island, Label, LinkBox, Loading, Logo, Map, MatrixTable, Menu, MiddleNavigation, Modal, Nominations, NumberField, PageNavigation, PageRating, PasswordInput, PhoneNumberInput, PhotoCardsRotated, Popover, PriceBox, PriceCheck, ProfileMenu, ProgressBar, PvPopup, QuantityButtons, RadioButton, RangeSlider, Rating, RegionSelector, Review, ReviewSmall, Reviews, ScrollToTop, SearchBox, SearchBoxResults, SearchInput, Select, Skeleton, SkillPill, Slider, Spotlights, Stepper, StickyFooter, StickyMobileButtonWrapper, Table, TableCell, TableHeader, TableHeaderItem, TableHeaderRow, TableRow, TabsBadge, TabsWrapper, TextInput, Textarea, TimeInput, Toggle, TopHeaderMenu, TopMenu, TruncatedText, UnorderedList, UnorderedListItem, UnstyledButton, Usp, ViewedAccomodations, WarningText, Weather, buttonVariants, getCSSVariable, setCSSVariable, useBrand };
11423
+ export { Accordion, ActionIcon, Alert, AutoCompleteInput, Avatar, AvatarIndicator, Badge, BigBadge, BlogWidget, BrandProvider, BrandTopMenu, BreadCrumb, Button, CSS_VARIABLE_KEYS, Calendar, CategoryFilter, Chatbot, Checkbox, Collection, CounterIcon, Coupon, DatePickerInput, Divider, Dropdown, FavouriteButton, FilterButton, Filters, FlightSwitch, Footer, GiftCard, HR, HamburgerMenuButton, Header, Hero, HotelAccomodationResults, HotelWidget, IconAlert, IconArrival, IconArrowDown, IconArrowLeft, IconArrowRight, IconArrowUp, IconBeach, IconBed, IconBlog, IconBus, IconCalendar, IconCancel, IconCar, IconCarSun, IconCheck, IconChevronRight, IconCity, IconClock, IconCocktail, IconDelete, IconDeparture, IconDollar, IconEdit, IconExpand, IconFacebook, IconFavorite, IconFilter, IconFood, IconHeart, IconHeartFilled, IconHot, IconHotel, IconHouse, IconIce, IconInfo, IconInstagram, IconLuggage, IconMail, IconMap, IconMinus, IconParty, IconPhone, IconPhoto, IconPinterest, IconPlane, IconPlus, IconPresent, IconQuestion, IconRating, IconSearch, IconSeat, IconShare, IconSplash, IconStar, IconSuccess, IconSun, IconSupport, IconTemperature, IconTiktok, IconTransfer, IconTree, IconTwitter, IconUser, IconView, IconWarning, IconWatched, IconWhatsapp, IconWinterSport, IconWinterSun, Island, Label, LinkBox, Loading, Logo, Map, MatrixTable, Menu, MiddleNavigation, Modal, Nominations, NumberField, PageNavigation, PageRating, PasswordInput, PhoneNumberInput, PhotoCardsRotated, Popover, PriceBox, PriceCheck, ProfileMenu, ProgressBar, PvPopup, QuantityButtons, RadioButton, RangeSlider, Rating, RegionSelector, Review, ReviewSmall, Reviews, ScrollToTop, SearchBlock, SearchBox, SearchBoxResults, SearchInput, Select, Skeleton, SkillPill, Slider, Spotlights, Stepper, StickyFooter, StickyMobileButtonWrapper, Table, TableCell, TableHeader, TableHeaderItem, TableHeaderRow, TableRow, TabsBadge, TabsWrapper, TextInput, Textarea, TimeInput, Toggle, TopHeaderMenu, TopMenu, TruncatedText, UnorderedList, UnorderedListItem, UnstyledButton, Usp, ViewedAccomodations, WarningText, Weather, buttonVariants, getCSSVariable, setCSSVariable, useBrand };
11420
11424
  //# sourceMappingURL=index.js.map