@qite/tide-booking-component 0.0.2-preview.72 → 0.0.2-preview.73

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.
@@ -10666,6 +10666,13 @@ var Sidebar = function (_a) {
10666
10666
  ? void 0
10667
10667
  : option.accommodationName,
10668
10668
  isOnRequest
10669
+ ? " (".concat(translations.SIDEBAR.ON_REQUEST, ")")
10670
+ : "",
10671
+ (
10672
+ option === null || option === void 0
10673
+ ? void 0
10674
+ : option.isOnRequest
10675
+ )
10669
10676
  ? " (".concat(translations.SIDEBAR.ON_REQUEST, ")")
10670
10677
  : ""
10671
10678
  ),
@@ -10592,6 +10592,13 @@ var Sidebar = function (_a) {
10592
10592
  ? void 0
10593
10593
  : option.accommodationName,
10594
10594
  isOnRequest
10595
+ ? " (".concat(translations.SIDEBAR.ON_REQUEST, ")")
10596
+ : "",
10597
+ (
10598
+ option === null || option === void 0
10599
+ ? void 0
10600
+ : option.isOnRequest
10601
+ )
10595
10602
  ? " (".concat(translations.SIDEBAR.ON_REQUEST, ")")
10596
10603
  : ""
10597
10604
  ),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-booking-component",
3
- "version": "0.0.2-preview.72",
3
+ "version": "0.0.2-preview.73",
4
4
  "description": "React BookingWizard component for Tide",
5
5
  "main": "build/build-cjs/index.js",
6
6
  "module": "build/build-esm/index.js",
@@ -66,6 +66,6 @@
66
66
  "uuid": "^8.3.2"
67
67
  },
68
68
  "dependencies": {
69
- "@qite/tide-client": "1.0.94"
69
+ "@qite/tide-client": "1.0.95"
70
70
  }
71
71
  }
@@ -149,6 +149,9 @@ const Sidebar: React.FC<SidebarProps> = ({
149
149
  {isOnRequest
150
150
  ? ` (${translations.SIDEBAR.ON_REQUEST})`
151
151
  : ""}
152
+ {option?.isOnRequest
153
+ ? ` (${translations.SIDEBAR.ON_REQUEST})`
154
+ : ""}
152
155
  </div>
153
156
  <div className="pricing-summary__value">
154
157
  {option?.price && formatPrice(option?.price)}