@prijsvrijtechsupport/ui 0.0.38 → 0.0.40
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/dist/index.css +13 -5
- package/dist/dist/index.css.map +1 -1
- package/dist/globals.css +8 -0
- package/dist/index.cjs +92 -73
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +92 -74
- package/dist/index.js.map +1 -1
- package/dist/src/components/resultPageFilterBox/index.d.ts +2 -1
- package/dist/src/components/searchBlock/SearchBlock.stories.d.ts +2 -0
- package/dist/src/components/searchBlock/index.d.ts +2 -1
- package/dist/src/components/toggle/index.d.ts +5 -3
- package/dist/src/components/withPvUi.d.ts +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/styles/variables.css +5 -5
- package/package.json +4 -3
package/dist/index.js
CHANGED
|
@@ -157,10 +157,15 @@ var globals_default = {};
|
|
|
157
157
|
*/
|
|
158
158
|
function withPvUi(Component) {
|
|
159
159
|
const WrappedComponent = forwardRef((props, ref) => {
|
|
160
|
-
|
|
160
|
+
const scopedProps = {
|
|
161
161
|
...props,
|
|
162
162
|
ref,
|
|
163
163
|
"data-pv-ui": true
|
|
164
|
+
};
|
|
165
|
+
return /* @__PURE__ */ jsx("div", {
|
|
166
|
+
"data-pv-ui": true,
|
|
167
|
+
style: { display: "contents" },
|
|
168
|
+
children: /* @__PURE__ */ jsx(Component, { ...scopedProps })
|
|
164
169
|
});
|
|
165
170
|
});
|
|
166
171
|
WrappedComponent.displayName = `withPvUi(${Component.displayName || Component.name || "Component"})`;
|
|
@@ -261,12 +266,12 @@ const Button = forwardRef(function Button$1({ type = "button", variant = "primar
|
|
|
261
266
|
...props,
|
|
262
267
|
children: [
|
|
263
268
|
!iconRight && formattedIcon && /* @__PURE__ */ jsx("span", {
|
|
264
|
-
className: "w-4 h-4",
|
|
269
|
+
className: "w-4 h-4 justify-center flex items-center",
|
|
265
270
|
children: formattedIcon
|
|
266
271
|
}),
|
|
267
272
|
children,
|
|
268
273
|
iconRight && formattedIcon && /* @__PURE__ */ jsx("span", {
|
|
269
|
-
className: "w-4 h-4",
|
|
274
|
+
className: "w-4 h-4 justify-center flex items-center",
|
|
270
275
|
children: formattedIcon
|
|
271
276
|
})
|
|
272
277
|
]
|
|
@@ -4295,7 +4300,7 @@ const iconMap = {
|
|
|
4295
4300
|
FL: IconPlane,
|
|
4296
4301
|
HO: IconCar
|
|
4297
4302
|
};
|
|
4298
|
-
const TransportToggle = ({ options, selectedValue, onSelect, disabled = false, disabledSingle = undefined, disabledSingleText = "", className, loading, orientation = "horizontal" }) => {
|
|
4303
|
+
const TransportToggle = withPvUi(({ options, selectedValue, onSelect, disabled = false, disabledSingle = undefined, disabledSingleText = "", className, loading, orientation = "horizontal" }) => {
|
|
4299
4304
|
const normalizeOptionValue = (value) => value?.trim().toUpperCase() ?? "";
|
|
4300
4305
|
const normalizedOptionIds = options.map((option) => normalizeOptionValue(option.id));
|
|
4301
4306
|
const normalizedSelectedValue = normalizeOptionValue(selectedValue);
|
|
@@ -4311,7 +4316,7 @@ const TransportToggle = ({ options, selectedValue, onSelect, disabled = false, d
|
|
|
4311
4316
|
const isDisabledSingle = (optionId) => disabledSingle && normalizeOptionValue(optionId) === normalizeOptionValue(disabledSingle);
|
|
4312
4317
|
const isActive = (optionId) => resolvedSelectedValue === normalizeOptionValue(optionId);
|
|
4313
4318
|
return /* @__PURE__ */ jsx("div", {
|
|
4314
|
-
className: "@container w-full",
|
|
4319
|
+
className: "@container w-full box-border",
|
|
4315
4320
|
children: /* @__PURE__ */ jsx("div", {
|
|
4316
4321
|
className: cn("flex justify-between text-xs w-full toggle p-1 rounded-sm font-bold min-h-12", orientation === "horizontal" ? "flex-row" : "flex-col", disabled && "opacity-50", className),
|
|
4317
4322
|
"data-testid": "transport-toggle-wrapper",
|
|
@@ -4325,9 +4330,9 @@ const TransportToggle = ({ options, selectedValue, onSelect, disabled = false, d
|
|
|
4325
4330
|
children: /* @__PURE__ */ jsxs("span", {
|
|
4326
4331
|
className: "flex flex-col items-center",
|
|
4327
4332
|
children: [/* @__PURE__ */ jsxs("span", {
|
|
4328
|
-
className: "whitespace-nowrap uppercase flex flex-row items-center",
|
|
4333
|
+
className: "whitespace-nowrap uppercase flex flex-row items-center gap-2",
|
|
4329
4334
|
children: [/* @__PURE__ */ jsx("div", {
|
|
4330
|
-
className: "flex items-center justify-center w-
|
|
4335
|
+
className: "flex items-center justify-center w-auto h-4",
|
|
4331
4336
|
children: (() => {
|
|
4332
4337
|
const IconComponent = iconMap[option.icon];
|
|
4333
4338
|
if (!IconComponent) return null;
|
|
@@ -4345,7 +4350,7 @@ const TransportToggle = ({ options, selectedValue, onSelect, disabled = false, d
|
|
|
4345
4350
|
}, option.id)) })
|
|
4346
4351
|
})
|
|
4347
4352
|
});
|
|
4348
|
-
};
|
|
4353
|
+
});
|
|
4349
4354
|
const Toggle = TransportToggle;
|
|
4350
4355
|
|
|
4351
4356
|
//#endregion
|
|
@@ -4947,7 +4952,7 @@ const Stepper = ({ className, steps,...props }) => {
|
|
|
4947
4952
|
|
|
4948
4953
|
//#endregion
|
|
4949
4954
|
//#region src/components/resultPageFilterBox/index.tsx
|
|
4950
|
-
const ResultPageFilterBox = ({ className, filters,...props }) => {
|
|
4955
|
+
const ResultPageFilterBox = ({ className, filters, clickFunction,...props }) => {
|
|
4951
4956
|
const departureDateData = filters.find((filter) => filter.Name === "Vertrekdatum");
|
|
4952
4957
|
const durationData = filters.find((filter) => filter.Name === "Reisduur");
|
|
4953
4958
|
const boardBasisData = filters.find((filter) => filter.Name === "Verzorging");
|
|
@@ -4970,19 +4975,22 @@ const ResultPageFilterBox = ({ className, filters,...props }) => {
|
|
|
4970
4975
|
"YYYY-MM-DD"
|
|
4971
4976
|
]).locale("nl").format("D MMMM [']YY") : "Geen voorkeur",
|
|
4972
4977
|
icon: /* @__PURE__ */ jsx(IconCalendar, { className: "size-5" }),
|
|
4973
|
-
disabled: Boolean(departureDateData?.Items && departureDateData?.Items.length <= 1)
|
|
4978
|
+
disabled: Boolean(departureDateData?.Items && departureDateData?.Items.length <= 1),
|
|
4979
|
+
isCancellable: true
|
|
4974
4980
|
},
|
|
4975
4981
|
{
|
|
4976
4982
|
name: travelParty?.Name,
|
|
4977
4983
|
value: travelParty?.Value,
|
|
4978
4984
|
icon: travelParty?.icon,
|
|
4979
|
-
disabled: false
|
|
4985
|
+
disabled: false,
|
|
4986
|
+
isCancellable: true
|
|
4980
4987
|
},
|
|
4981
4988
|
{
|
|
4982
4989
|
name: durationData?.Name,
|
|
4983
4990
|
value: durationData?.Items?.find((item) => item.Active)?.Name || "Geen voorkeur",
|
|
4984
4991
|
icon: /* @__PURE__ */ jsx(IconClock, { className: "size-5" }),
|
|
4985
|
-
disabled: Boolean(durationData?.Items && durationData?.Items.length <= 1)
|
|
4992
|
+
disabled: Boolean(durationData?.Items && durationData?.Items.length <= 1),
|
|
4993
|
+
isCancellable: true
|
|
4986
4994
|
},
|
|
4987
4995
|
{
|
|
4988
4996
|
name: boardBasisData?.Name,
|
|
@@ -5022,21 +5030,28 @@ const ResultPageFilterBox = ({ className, filters,...props }) => {
|
|
|
5022
5030
|
className: clsx("bg-white", className),
|
|
5023
5031
|
...props,
|
|
5024
5032
|
children: /* @__PURE__ */ jsx("div", {
|
|
5025
|
-
className: "border border-
|
|
5033
|
+
className: "border border-[#80c8f8] rounded-md overflow-hidden grid grid-cols-1 md:grid-cols-2 [&>*:last-child]:border-b-0 md:[&>*:nth-last-child(-n+2)]:border-b-0 md:[&>*:nth-child(even)]:border-l md:[&>*:nth-child(even)]:border-l-[#80c8f8] [&>*:not(:last-child)]:border-b [&>*:not(:last-child)]:border-b-[#80c8f8] md:[&>*:not(:nth-last-child(-n+2))]:border-b md:[&>*:not(:nth-last-child(-n+2))]:border-b-[#80c8f8]",
|
|
5026
5034
|
children: filtersData.map((filter, index) => /* @__PURE__ */ jsxs("button", {
|
|
5027
|
-
|
|
5028
|
-
|
|
5029
|
-
|
|
5030
|
-
|
|
5031
|
-
}), /* @__PURE__ */ jsxs("div", {
|
|
5032
|
-
className: "flex flex-col gap-0 items-start",
|
|
5035
|
+
onClick: () => {},
|
|
5036
|
+
className: `flex flex-row items-center justify-between gap-2 p-1.5 hover:bg-gray-50/70 cursor-pointer ${filter.disabled ? "bg-gray-100 text-black/50" : ""}`,
|
|
5037
|
+
children: [/* @__PURE__ */ jsxs("div", {
|
|
5038
|
+
className: "flex flex-row",
|
|
5033
5039
|
children: [/* @__PURE__ */ jsx("span", {
|
|
5034
|
-
className: "
|
|
5035
|
-
children: filter.
|
|
5036
|
-
}), /* @__PURE__ */
|
|
5037
|
-
className: "
|
|
5038
|
-
children:
|
|
5040
|
+
className: "whitespace-nowrap p-1.5",
|
|
5041
|
+
children: filter.icon
|
|
5042
|
+
}), /* @__PURE__ */ jsxs("div", {
|
|
5043
|
+
className: "flex flex-col gap-0 items-start",
|
|
5044
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
5045
|
+
className: "font-bold text-xs text-[#666666]",
|
|
5046
|
+
children: filter.name
|
|
5047
|
+
}), /* @__PURE__ */ jsx("span", {
|
|
5048
|
+
className: "text-sm",
|
|
5049
|
+
children: filter.value
|
|
5050
|
+
})]
|
|
5039
5051
|
})]
|
|
5052
|
+
}), filter.isCancellable && /* @__PURE__ */ jsx("div", {
|
|
5053
|
+
className: "flex items-center mr-2 bg-gray-200 rounded-full p-1",
|
|
5054
|
+
children: /* @__PURE__ */ jsx(IconCancel, { className: "size-3 text-white" })
|
|
5040
5055
|
})]
|
|
5041
5056
|
}, index))
|
|
5042
5057
|
})
|
|
@@ -9341,23 +9356,23 @@ const MatrixTable = ({ className, startDuration, endDuration, startDate, endDate
|
|
|
9341
9356
|
onClick: loadPrevious,
|
|
9342
9357
|
variant: "icon",
|
|
9343
9358
|
iconRight: true,
|
|
9344
|
-
className: "flex flex-row items-center justify-start text-xs",
|
|
9359
|
+
className: "flex flex-row font-medium items-center justify-start text-xs",
|
|
9345
9360
|
icon: false,
|
|
9346
9361
|
children: [/* @__PURE__ */ jsx(IconArrowLeft, {
|
|
9347
9362
|
className: "text-primary",
|
|
9348
|
-
width:
|
|
9349
|
-
height:
|
|
9363
|
+
width: 20,
|
|
9364
|
+
height: 20
|
|
9350
9365
|
}), " eerder"]
|
|
9351
9366
|
}) : null, index === dates.length - 1 && loadNext ? /* @__PURE__ */ jsxs(Button, {
|
|
9352
9367
|
onClick: loadNext,
|
|
9353
9368
|
variant: "icon",
|
|
9354
|
-
className: "flex flex-row items-center justify-start text-xs",
|
|
9369
|
+
className: "flex flex-row font-medium items-center justify-start text-xs",
|
|
9355
9370
|
iconRight: true,
|
|
9356
9371
|
icon: false,
|
|
9357
9372
|
children: ["later", /* @__PURE__ */ jsx(IconArrowRight, {
|
|
9358
9373
|
className: "text-primary",
|
|
9359
|
-
width:
|
|
9360
|
-
height:
|
|
9374
|
+
width: 20,
|
|
9375
|
+
height: 20
|
|
9361
9376
|
})]
|
|
9362
9377
|
}) : null]
|
|
9363
9378
|
}, date);
|
|
@@ -9916,20 +9931,58 @@ const WarningText = ({ className, warningText, onClick, type,...props }) => /* @
|
|
|
9916
9931
|
})]
|
|
9917
9932
|
});
|
|
9918
9933
|
|
|
9934
|
+
//#endregion
|
|
9935
|
+
//#region src/components/reviewSmall/index.tsx
|
|
9936
|
+
const ReviewSmall = ({ className, rating, showArrow = true, "data-testid": dataTestId = "review",...props }) => {
|
|
9937
|
+
const formatRating$1 = (rating$1) => {
|
|
9938
|
+
return rating$1.toFixed(1);
|
|
9939
|
+
};
|
|
9940
|
+
const ratingProcessed = formatRating$1(rating);
|
|
9941
|
+
const RatingNumber = ({ className: className$1, showArrow: showArrow$1 }) => /* @__PURE__ */ jsxs("div", {
|
|
9942
|
+
className: "relative",
|
|
9943
|
+
children: [/* @__PURE__ */ jsx("span", {
|
|
9944
|
+
className: cn("review-small-color review-small-number-color", className$1),
|
|
9945
|
+
children: ratingProcessed
|
|
9946
|
+
}), showArrow$1 && /* @__PURE__ */ jsx("div", {
|
|
9947
|
+
className: "absolute left-1/2 -translate-x-1/2 -bottom-[6px]",
|
|
9948
|
+
children: /* @__PURE__ */ jsx("div", { className: "w-0 h-0 border-l-[8px] border-l-transparent border-r-[8px] border-r-transparent border-t-[8px] review-small-arrow" })
|
|
9949
|
+
})]
|
|
9950
|
+
});
|
|
9951
|
+
return /* @__PURE__ */ jsx("div", {
|
|
9952
|
+
"data-component": "review",
|
|
9953
|
+
"data-testid": dataTestId,
|
|
9954
|
+
className: clsx(className, "flex flex-col w-fit"),
|
|
9955
|
+
...props,
|
|
9956
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
9957
|
+
className: "flex flex-row gap-2 review-small rounded-sm",
|
|
9958
|
+
children: /* @__PURE__ */ jsx("div", {
|
|
9959
|
+
className: "flex content-center items-center font-bold",
|
|
9960
|
+
children: /* @__PURE__ */ jsx(RatingNumber, {
|
|
9961
|
+
className: "px-1 rounded-xs",
|
|
9962
|
+
showArrow
|
|
9963
|
+
})
|
|
9964
|
+
})
|
|
9965
|
+
})
|
|
9966
|
+
});
|
|
9967
|
+
};
|
|
9968
|
+
|
|
9919
9969
|
//#endregion
|
|
9920
9970
|
//#region src/components/hero/index.tsx
|
|
9921
9971
|
const Hero = ({ className, sliderImages, topRightImage, bottomLeftImage, bottomRightImage, bottomRightOverlay, hotel, priceBoxPosition = "end",...props }) => /* @__PURE__ */ jsx("div", {
|
|
9922
9972
|
"data-component": "hero",
|
|
9923
|
-
className: clsx(className, "bg-white p-1 rounded-lg"),
|
|
9973
|
+
className: clsx(className, "bg-white p-1 rounded-lg hero-shadow"),
|
|
9924
9974
|
...props,
|
|
9925
9975
|
children: /* @__PURE__ */ jsxs("div", {
|
|
9926
9976
|
className: "flex flex-col md:flex-row",
|
|
9927
9977
|
children: [/* @__PURE__ */ jsxs("div", {
|
|
9928
9978
|
className: clsx("grid gap-1 md:aspect-[16/6] md:grid-cols-3 md:grid-rows-[2fr_1fr]", priceBoxPosition === "start" ? "order-2 md:order-2" : "order-1 md:order-1"),
|
|
9929
9979
|
children: [
|
|
9930
|
-
/* @__PURE__ */
|
|
9931
|
-
className: "md:col-span-2 md:row-span-2 overflow-hidden rounded-l-lg",
|
|
9932
|
-
children: /* @__PURE__ */ jsx(
|
|
9980
|
+
/* @__PURE__ */ jsxs("div", {
|
|
9981
|
+
className: "md:col-span-2 md:row-span-2 overflow-hidden rounded-l-lg relative",
|
|
9982
|
+
children: [/* @__PURE__ */ jsx(ReviewSmall, {
|
|
9983
|
+
className: "absolute right-4 top-4 z-50",
|
|
9984
|
+
rating: 9.3
|
|
9985
|
+
}), /* @__PURE__ */ jsx(Slider, {
|
|
9933
9986
|
className: "h-full max-h-[340px] md:h-full rounded-l-lg",
|
|
9934
9987
|
slides: sliderImages.map((src, index) => /* @__PURE__ */ jsx("img", {
|
|
9935
9988
|
src,
|
|
@@ -9940,7 +9993,7 @@ const Hero = ({ className, sliderImages, topRightImage, bottomLeftImage, bottomR
|
|
|
9940
9993
|
dotsPlacement: "inside",
|
|
9941
9994
|
options: { loop: true },
|
|
9942
9995
|
lazyLoad: true
|
|
9943
|
-
})
|
|
9996
|
+
})]
|
|
9944
9997
|
}),
|
|
9945
9998
|
/* @__PURE__ */ jsx("div", {
|
|
9946
9999
|
className: "hidden md:flex col-span-1 row-span-1 overflow-hidden",
|
|
@@ -10383,41 +10436,6 @@ const FlightSwitch = ({ className, leg, direction, onClassSelect,...props }) =>
|
|
|
10383
10436
|
});
|
|
10384
10437
|
};
|
|
10385
10438
|
|
|
10386
|
-
//#endregion
|
|
10387
|
-
//#region src/components/reviewSmall/index.tsx
|
|
10388
|
-
const ReviewSmall = ({ className, rating, showArrow = true, "data-testid": dataTestId = "review",...props }) => {
|
|
10389
|
-
const formatRating$1 = (rating$1) => {
|
|
10390
|
-
return rating$1.toFixed(1);
|
|
10391
|
-
};
|
|
10392
|
-
const ratingProcessed = formatRating$1(rating);
|
|
10393
|
-
const RatingNumber = ({ className: className$1, showArrow: showArrow$1 }) => /* @__PURE__ */ jsxs("div", {
|
|
10394
|
-
className: "relative",
|
|
10395
|
-
children: [/* @__PURE__ */ jsx("span", {
|
|
10396
|
-
className: cn("review-small-color review-small-number-color", className$1),
|
|
10397
|
-
children: ratingProcessed
|
|
10398
|
-
}), showArrow$1 && /* @__PURE__ */ jsx("div", {
|
|
10399
|
-
className: "absolute left-1/2 -translate-x-1/2 -bottom-[6px]",
|
|
10400
|
-
children: /* @__PURE__ */ jsx("div", { className: "w-0 h-0 border-l-[8px] border-l-transparent border-r-[8px] border-r-transparent border-t-[8px] review-small-arrow" })
|
|
10401
|
-
})]
|
|
10402
|
-
});
|
|
10403
|
-
return /* @__PURE__ */ jsx("div", {
|
|
10404
|
-
"data-component": "review",
|
|
10405
|
-
"data-testid": dataTestId,
|
|
10406
|
-
className: clsx(className, "flex flex-col w-fit"),
|
|
10407
|
-
...props,
|
|
10408
|
-
children: /* @__PURE__ */ jsx("div", {
|
|
10409
|
-
className: "flex flex-row gap-2 review-small rounded-sm",
|
|
10410
|
-
children: /* @__PURE__ */ jsx("div", {
|
|
10411
|
-
className: "flex content-center items-center font-bold",
|
|
10412
|
-
children: /* @__PURE__ */ jsx(RatingNumber, {
|
|
10413
|
-
className: "px-1 rounded-xs",
|
|
10414
|
-
showArrow
|
|
10415
|
-
})
|
|
10416
|
-
})
|
|
10417
|
-
})
|
|
10418
|
-
});
|
|
10419
|
-
};
|
|
10420
|
-
|
|
10421
10439
|
//#endregion
|
|
10422
10440
|
//#region src/components/giftCard/index.tsx
|
|
10423
10441
|
const setCurrencyValue = (value, showCurrencySymbol = true) => {
|
|
@@ -11293,7 +11311,7 @@ const SearchBlockButton = ({ className, label, labelOutside, icon, downIcon, onC
|
|
|
11293
11311
|
className: "searchBlockButtonLabel",
|
|
11294
11312
|
children: label
|
|
11295
11313
|
}), /* @__PURE__ */ jsxs("button", {
|
|
11296
|
-
className: clsx(className, "searchBlockButton flex flex-row items-center justify-between gap-2 px-2 py-2"),
|
|
11314
|
+
className: clsx(className, "searchBlockButton flex flex-row items-center justify-between gap-2 px-2 py-2 cursor-pointer border border-transparent hover:border-gray-300 transition-all"),
|
|
11297
11315
|
onClick,
|
|
11298
11316
|
...props,
|
|
11299
11317
|
children: [/* @__PURE__ */ jsxs("div", {
|
|
@@ -11326,7 +11344,7 @@ const SearchBlockButton = ({ className, label, labelOutside, icon, downIcon, onC
|
|
|
11326
11344
|
})]
|
|
11327
11345
|
})] });
|
|
11328
11346
|
};
|
|
11329
|
-
const SearchBlock = ({ className, searchBlockTitle, searchBlockForm, onClickFn, "data-testid": dataTestId = "book-module",...props }) => {
|
|
11347
|
+
const SearchBlock = ({ className, searchBlockTitle, searchBlockForm, loading, onClickFn, "data-testid": dataTestId = "book-module",...props }) => {
|
|
11330
11348
|
const brand = useBrand();
|
|
11331
11349
|
return /* @__PURE__ */ jsx("div", {
|
|
11332
11350
|
"data-component": "book-module",
|
|
@@ -11378,7 +11396,7 @@ const SearchBlock = ({ className, searchBlockTitle, searchBlockForm, onClickFn,
|
|
|
11378
11396
|
variant: `${brand === "prijsvrij" ? "primaryGlow" : "primary"}`,
|
|
11379
11397
|
className: `${brand === "dreizen" ? "mt-6" : "mt-2"}`,
|
|
11380
11398
|
onClick: onClickFn,
|
|
11381
|
-
icon: /* @__PURE__ */ jsx(IconArrowRight, {}),
|
|
11399
|
+
icon: loading ? /* @__PURE__ */ jsx(IconSun, { className: "animate-spin" }) : /* @__PURE__ */ jsx(IconArrowRight, {}),
|
|
11382
11400
|
iconRight: true,
|
|
11383
11401
|
children: "Zoek vakanties"
|
|
11384
11402
|
})
|
|
@@ -11486,5 +11504,5 @@ const RangeSlider = forwardRef(function RangeSlider$1({ className, min = 0, max
|
|
|
11486
11504
|
RangeSlider.displayName = "RangeSlider";
|
|
11487
11505
|
|
|
11488
11506
|
//#endregion
|
|
11489
|
-
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, ResultPageFilterBox, 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, withPvUi };
|
|
11507
|
+
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, ResultPageFilterBox, 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, TransportToggle, TruncatedText, UnorderedList, UnorderedListItem, UnstyledButton, Usp, ViewedAccomodations, WarningText, Weather, buttonVariants, getCSSVariable, setCSSVariable, useBrand, withPvUi };
|
|
11490
11508
|
//# sourceMappingURL=index.js.map
|