-
+
{name}
({paymentTerm})
@@ -59,6 +60,13 @@ export default function FlexibilityOption({
handleSelectRate(rate)
}
+ function togglePopover() {
+ console.log("Toggle Popover called")
+ setIsPopoverOpen((prevState) => !prevState)
+ }
+
+ console.log(isPopoverOpen)
+
return (
)
diff --git a/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx b/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx
index 5b0c65489..93dc20ab4 100644
--- a/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx
+++ b/components/HotelReservation/SelectRate/RoomSelection/RoomCard/index.tsx
@@ -88,25 +88,30 @@ export default function RoomCard({
: `${roomSize?.min}-${roomSize?.max}`}
m²
- {roomConfiguration.roomTypeCode && (
-
- )}
+
+ {roomConfiguration.roomTypeCode && (
+
+ )}
+
{roomConfiguration.roomType}
+ {/* Out of scope for now
{descriptions?.short}
+ */}
+
+ {intl.formatMessage({
+ id: "Breakfast selection in next step.",
+ })}
+
-
- {intl.formatMessage({
- id: "Breakfast selection in next step.",
- })}
-
+
{Object.entries(rates).map(([key, rate]) => (
diff --git a/components/Icons/icon.module.css b/components/Icons/icon.module.css
index 68ace50b3..1782e9b77 100644
--- a/components/Icons/icon.module.css
+++ b/components/Icons/icon.module.css
@@ -62,6 +62,11 @@
fill: var(--UI-Text-Medium-contrast);
}
+.uiTextPlaceholder,
+.uiTextPlaceholder * {
+ fill: var(--UI-Text-Placeholder);
+}
+
.blue,
.blue * {
fill: var(--UI-Input-Controls-Fill-Selected);
diff --git a/components/Icons/variants.ts b/components/Icons/variants.ts
index 09d69364f..24c3531c3 100644
--- a/components/Icons/variants.ts
+++ b/components/Icons/variants.ts
@@ -20,6 +20,7 @@ const config = {
white: styles.white,
uiTextHighContrast: styles.uiTextHighContrast,
uiTextMediumContrast: styles.uiTextMediumContrast,
+ uiTextPlaceholder: styles.uiTextPlaceholder,
disabled: styles.disabled,
},
},