@mirai/core 0.3.175 → 0.3.176
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/.env +7 -4
- package/build/components/Booking/Booking.js +1 -1
- package/build/components/Booking/Booking.js.map +1 -1
- package/build/components/Booking/Booking.l10n.js +0 -15
- package/build/components/Booking/Booking.l10n.js.map +1 -1
- package/build/components/Booking/Booking.module.css +0 -9
- package/build/components/Booking/components/Hotelverse/Hotelverse.js +1 -1
- package/build/components/Booking/components/Hotelverse/Hotelverse.js.map +1 -1
- package/build/components/Booking/partials/index.js +2 -13
- package/build/components/Booking/partials/index.js.map +1 -1
- package/build/components/Chat/Chat.constants.js +28 -0
- package/build/components/Chat/Chat.constants.js.map +1 -0
- package/build/components/Chat/Chat.js +231 -0
- package/build/components/Chat/Chat.js.map +1 -0
- package/build/components/Chat/Chat.l10n.js +24 -0
- package/build/components/Chat/Chat.l10n.js.map +1 -0
- package/build/components/Chat/Chat.module.css +90 -0
- package/build/components/Chat/Chat.theme.module.css +49 -0
- package/build/components/Chat/components/Avatar/Avatar.js +68 -0
- package/build/components/Chat/components/Avatar/Avatar.js.map +1 -0
- package/build/components/Chat/components/Avatar/Avatar.module.css +81 -0
- package/build/components/Chat/components/Avatar/__tests__/__snapshots__/Avatar.test.jsx.snap +97 -0
- package/build/components/Chat/components/Avatar/index.js +17 -0
- package/build/components/Chat/components/Avatar/index.js.map +1 -0
- package/build/components/Chat/components/Input/Input.js +72 -0
- package/build/components/Chat/components/Input/Input.js.map +1 -0
- package/build/components/Chat/components/Input/Input.l10n.js +15 -0
- package/build/components/Chat/components/Input/Input.l10n.js.map +1 -0
- package/build/components/Chat/components/Input/Input.module.css +19 -0
- package/build/components/Chat/components/Input/__tests__/__snapshots__/Input.test.jsx.snap +175 -0
- package/build/components/Chat/components/Input/index.js +17 -0
- package/build/components/Chat/components/Input/index.js.map +1 -0
- package/build/components/Chat/components/InputRich/InputRich.List.js +52 -0
- package/build/components/Chat/components/InputRich/InputRich.List.js.map +1 -0
- package/build/components/Chat/components/InputRich/InputRich.js +182 -0
- package/build/components/Chat/components/InputRich/InputRich.js.map +1 -0
- package/build/components/Chat/components/InputRich/InputRich.l10n.js +12 -0
- package/build/components/Chat/components/InputRich/InputRich.l10n.js.map +1 -0
- package/build/components/Chat/components/InputRich/InputRich.module.css +73 -0
- package/build/components/Chat/components/InputRich/__tests__/__snapshots__/InputRich.test.jsx.snap +275 -0
- package/build/components/Chat/components/InputRich/helpers/getVerboseList.js +20 -0
- package/build/components/Chat/components/InputRich/helpers/getVerboseList.js.map +1 -0
- package/build/components/Chat/components/InputRich/helpers/getVerboseOccupation.js +27 -0
- package/build/components/Chat/components/InputRich/helpers/getVerboseOccupation.js.map +1 -0
- package/build/components/Chat/components/InputRich/helpers/index.js +28 -0
- package/build/components/Chat/components/InputRich/helpers/index.js.map +1 -0
- package/build/components/Chat/components/InputRich/index.js +17 -0
- package/build/components/Chat/components/InputRich/index.js.map +1 -0
- package/build/components/Chat/components/Message/Message.constants.js +18 -0
- package/build/components/Chat/components/Message/Message.constants.js.map +1 -0
- package/build/components/Chat/components/Message/Message.js +104 -0
- package/build/components/Chat/components/Message/Message.js.map +1 -0
- package/build/components/Chat/components/Message/Message.module.css +126 -0
- package/build/components/Chat/components/Message/__tests__/__snapshots__/Message.test.jsx.snap +211 -0
- package/build/components/Chat/components/Message/components/Booking.js +63 -0
- package/build/components/Chat/components/Message/components/Booking.js.map +1 -0
- package/build/components/Chat/components/Message/components/Card.js +67 -0
- package/build/components/Chat/components/Message/components/Card.js.map +1 -0
- package/build/components/Chat/components/Message/components/Card.module.css +41 -0
- package/build/components/Chat/components/Message/components/Environment.js +58 -0
- package/build/components/Chat/components/Message/components/Environment.js.map +1 -0
- package/build/components/Chat/components/Message/components/Environment.module.css +22 -0
- package/build/components/Chat/components/Message/components/index.js +39 -0
- package/build/components/Chat/components/Message/components/index.js.map +1 -0
- package/build/components/Chat/components/Message/helpers/getActionIcon.js +13 -0
- package/build/components/Chat/components/Message/helpers/getActionIcon.js.map +1 -0
- package/build/components/Chat/components/Message/helpers/getTime.js +28 -0
- package/build/components/Chat/components/Message/helpers/getTime.js.map +1 -0
- package/build/components/Chat/components/Message/helpers/index.js +28 -0
- package/build/components/Chat/components/Message/helpers/index.js.map +1 -0
- package/build/components/Chat/components/Message/index.js +17 -0
- package/build/components/Chat/components/Message/index.js.map +1 -0
- package/build/components/Chat/components/Message/intents/BookingQuery.js +66 -0
- package/build/components/Chat/components/Message/intents/BookingQuery.js.map +1 -0
- package/build/components/Chat/components/Message/intents/HotelInfo.js +73 -0
- package/build/components/Chat/components/Message/intents/HotelInfo.js.map +1 -0
- package/build/components/Chat/components/Message/intents/Offers.js +57 -0
- package/build/components/Chat/components/Message/intents/Offers.js.map +1 -0
- package/build/components/Chat/components/Message/intents/Unknown.js +67 -0
- package/build/components/Chat/components/Message/intents/Unknown.js.map +1 -0
- package/build/components/Chat/components/Message/intents/index.js +50 -0
- package/build/components/Chat/components/Message/intents/index.js.map +1 -0
- package/build/components/Chat/components/Offline/Offline.js +22 -0
- package/build/components/Chat/components/Offline/Offline.js.map +1 -0
- package/build/components/Chat/components/Offline/Offline.module.css +3 -0
- package/build/components/Chat/components/Offline/index.js +17 -0
- package/build/components/Chat/components/Offline/index.js.map +1 -0
- package/build/components/Chat/components/index.js +61 -0
- package/build/components/Chat/components/index.js.map +1 -0
- package/build/components/Chat/helpers/getVerboseDate.js +18 -0
- package/build/components/Chat/helpers/getVerboseDate.js.map +1 -0
- package/build/components/Chat/helpers/index.js +17 -0
- package/build/components/Chat/helpers/index.js.map +1 -0
- package/build/components/Chat/index.js +17 -0
- package/build/components/Chat/index.js.map +1 -0
- package/build/components/Checkout/Checkout.js +20 -5
- package/build/components/Checkout/Checkout.js.map +1 -1
- package/build/components/Checkout/Checkout.module.css +14 -0
- package/build/components/Checkout/helpers/getFieldProps.js +3 -1
- package/build/components/Checkout/helpers/getFieldProps.js.map +1 -1
- package/build/components/Checkout/partials/Checkout.Confirmation.js +11 -7
- package/build/components/Checkout/partials/Checkout.Confirmation.js.map +1 -1
- package/build/components/Checkout/partials/Checkout.Form.js +23 -4
- package/build/components/Checkout/partials/Checkout.Form.js.map +1 -1
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap +932 -16
- package/build/components/Profile/components/Settings/Settings.Account.js +26 -8
- package/build/components/Profile/components/Settings/Settings.Account.js.map +1 -1
- package/build/components/Profile/components/Settings/Settings.module.css +4 -0
- package/build/components/Rates/Rates.constants.js +1 -0
- package/build/components/Rates/Rates.constants.js.map +1 -1
- package/build/components/Rates/Rates.js +2 -0
- package/build/components/Rates/Rates.js.map +1 -1
- package/build/components/Rates/components/Hotelverse/Hotelverse.js +1 -1
- package/build/components/Rates/components/Hotelverse/Hotelverse.js.map +1 -1
- package/build/components/Rates/components/Item/components/Features/Features.js +27 -2
- package/build/components/Rates/components/Item/components/Features/Features.js.map +1 -1
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js +5 -1
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.js.map +1 -1
- package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.js +1 -1
- package/build/components/Rates/components/Item/components/ModalRateInfo/ModalRateInfo.js.map +1 -1
- package/build/components/Signup/Signup.js +24 -6
- package/build/components/Signup/Signup.js.map +1 -1
- package/build/components/Signup/Signup.module.css +4 -0
- package/build/components/Signup/__tests__/__snapshots__/Signup.test.js.snap +24 -9
- package/build/components/{Booking/partials/Booking.Others.js → __shared__/BookingTerms/BookingTerms.js} +17 -18
- package/build/components/__shared__/BookingTerms/BookingTerms.js.map +1 -0
- package/build/components/__shared__/BookingTerms/BookingTerms.l10n.js +27 -0
- package/build/components/__shared__/BookingTerms/BookingTerms.l10n.js.map +1 -0
- package/build/components/__shared__/BookingTerms/BookingTerms.module.css +42 -0
- package/build/components/{Booking/partials/__tests__/__snapshots__/Booking.Others.test.js.snap → __shared__/BookingTerms/__tests__/__snapshots__/BookingTerms.test.js.snap} +4 -8
- package/build/components/__shared__/BookingTerms/index.js +17 -0
- package/build/components/__shared__/BookingTerms/index.js.map +1 -0
- package/build/components/__shared__/NotificationRequiredFields/NotificationRequiredFields.js +52 -0
- package/build/components/__shared__/NotificationRequiredFields/NotificationRequiredFields.js.map +1 -0
- package/build/components/__shared__/NotificationRequiredFields/NotificationRequiredFields.l10n.js +62 -0
- package/build/components/__shared__/NotificationRequiredFields/NotificationRequiredFields.l10n.js.map +1 -0
- package/build/components/__shared__/NotificationRequiredFields/NotificationRequiredFields.module.css +8 -0
- package/build/components/__shared__/NotificationRequiredFields/index.js +17 -0
- package/build/components/__shared__/NotificationRequiredFields/index.js.map +1 -0
- package/build/components/__shared__/Payment/Payment.js +1 -1
- package/build/components/__shared__/Payment/Payment.js.map +1 -1
- package/build/components/__shared__/Payment/__tests__/__snapshots__/Payment.test.js.snap +302 -8
- package/build/components/__shared__/Payment/components/Card/Card.js +4 -0
- package/build/components/__shared__/Payment/components/Card/Card.js.map +1 -1
- package/build/components/__shared__/Payment/components/Card/__tests__/__snapshots__/Card.test.js.snap +23 -0
- package/build/components/__shared__/Payment/components/Card/helpers/formatValues.js +2 -0
- package/build/components/__shared__/Payment/components/Card/helpers/formatValues.js.map +1 -1
- package/build/components/__shared__/Payment/components/PCI/PCI.constants.js +1 -2
- package/build/components/__shared__/Payment/components/PCI/PCI.constants.js.map +1 -1
- package/build/components/__shared__/Payment/components/PCI/PCI.js +59 -56
- package/build/components/__shared__/Payment/components/PCI/PCI.js.map +1 -1
- package/build/components/__shared__/Payment/components/PCI/__tests__/__snapshots__/PCI.test.js.snap +15 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/formatValues.js +2 -0
- package/build/components/__shared__/Payment/components/PCI/helpers/formatValues.js.map +1 -1
- package/build/components/__shared__/Payment/helpers/formatExpire.js +15 -0
- package/build/components/__shared__/Payment/helpers/formatExpire.js.map +1 -0
- package/build/components/__shared__/Payment/helpers/index.js +11 -0
- package/build/components/__shared__/Payment/helpers/index.js.map +1 -1
- package/build/components/__shared__/index.js +22 -0
- package/build/components/__shared__/index.js.map +1 -1
- package/build/components/helpers/ICON.js +13 -0
- package/build/components/helpers/ICON.js.map +1 -1
- package/build/components/index.js +2 -0
- package/build/components/index.js.map +1 -1
- package/build/services/Lisa/action.js +28 -0
- package/build/services/Lisa/action.js.map +1 -0
- package/build/services/Lisa/index.js +17 -0
- package/build/services/Lisa/index.js.map +1 -0
- package/build/services/Lisa/message.js +26 -0
- package/build/services/Lisa/message.js.map +1 -0
- package/build/services/Lisa/status.js +13 -0
- package/build/services/Lisa/status.js.map +1 -0
- package/build/services/Lisa/welcome.js +25 -0
- package/build/services/Lisa/welcome.js.map +1 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response-cancel-types.json +21 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response-no-taxes-no-local.json +6 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response-no-taxes.json +4 -0
- package/build/services/Rates/__tests__/__mocks__/rates-response.json +6 -0
- package/build/services/Rates/extras.js +1 -1
- package/build/services/Rates/extras.js.map +1 -1
- package/build/services/Rates/helpers/getItems.js +1 -1
- package/build/services/Rates/helpers/getItems.js.map +1 -1
- package/build/services/Rates/helpers/parseBoards.js +1 -0
- package/build/services/Rates/helpers/parseBoards.js.map +1 -1
- package/build/services/index.js +11 -0
- package/build/services/index.js.map +1 -1
- package/package.json +1 -1
- package/public/App.Container.jsx +2 -0
- package/build/components/Booking/partials/Booking.Others.js.map +0 -1
package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap
CHANGED
|
@@ -39,6 +39,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
39
39
|
</span>
|
|
40
40
|
<input
|
|
41
41
|
class="input input withLabel"
|
|
42
|
+
id="checkout-firstName"
|
|
42
43
|
name="firstName"
|
|
43
44
|
required=""
|
|
44
45
|
type="text"
|
|
@@ -68,6 +69,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
68
69
|
</span>
|
|
69
70
|
<input
|
|
70
71
|
class="input input withLabel"
|
|
72
|
+
id="checkout-lastName"
|
|
71
73
|
name="lastName"
|
|
72
74
|
required=""
|
|
73
75
|
type="text"
|
|
@@ -97,6 +99,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
97
99
|
</span>
|
|
98
100
|
<input
|
|
99
101
|
class="input input withLabel"
|
|
102
|
+
id="checkout-email"
|
|
100
103
|
name="email"
|
|
101
104
|
required=""
|
|
102
105
|
type="email"
|
|
@@ -124,6 +127,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
124
127
|
</span>
|
|
125
128
|
<select
|
|
126
129
|
class="select empty input prefix withLabel empty"
|
|
130
|
+
id="checkout-phone"
|
|
127
131
|
name="phone-prefix"
|
|
128
132
|
required=""
|
|
129
133
|
>
|
|
@@ -1208,6 +1212,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1208
1212
|
</span>
|
|
1209
1213
|
<input
|
|
1210
1214
|
class="input input withLabel"
|
|
1215
|
+
id="checkout-phone"
|
|
1211
1216
|
maxlength="12"
|
|
1212
1217
|
name="phone-phone"
|
|
1213
1218
|
required=""
|
|
@@ -1234,6 +1239,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1234
1239
|
</span>
|
|
1235
1240
|
<input
|
|
1236
1241
|
class="input input withLabel"
|
|
1242
|
+
id="checkout-company"
|
|
1237
1243
|
name="company"
|
|
1238
1244
|
type="text"
|
|
1239
1245
|
value=""
|
|
@@ -1257,6 +1263,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1257
1263
|
</span>
|
|
1258
1264
|
<textarea
|
|
1259
1265
|
class="input input withLabel multiLine"
|
|
1266
|
+
id="checkout-comments"
|
|
1260
1267
|
name="comments"
|
|
1261
1268
|
/>
|
|
1262
1269
|
</div>
|
|
@@ -1270,6 +1277,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1270
1277
|
<span
|
|
1271
1278
|
class="text small"
|
|
1272
1279
|
hint=""
|
|
1280
|
+
id="checkout-undefined"
|
|
1273
1281
|
label="undefined"
|
|
1274
1282
|
name="undefined"
|
|
1275
1283
|
>
|
|
@@ -1278,6 +1286,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1278
1286
|
<div
|
|
1279
1287
|
class="pressable inputOption"
|
|
1280
1288
|
hint=""
|
|
1289
|
+
id="checkout-hotel_future_offers"
|
|
1281
1290
|
>
|
|
1282
1291
|
<div
|
|
1283
1292
|
class="checkbox"
|
|
@@ -1298,6 +1307,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1298
1307
|
<div
|
|
1299
1308
|
class="pressable inputOption"
|
|
1300
1309
|
hint=""
|
|
1310
|
+
id="checkout-joinClub"
|
|
1301
1311
|
>
|
|
1302
1312
|
<div
|
|
1303
1313
|
class="checkbox"
|
|
@@ -1318,6 +1328,7 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1318
1328
|
<div
|
|
1319
1329
|
class="pressable inputOption"
|
|
1320
1330
|
hint=""
|
|
1331
|
+
id="checkout-privacyPolicy"
|
|
1321
1332
|
>
|
|
1322
1333
|
<div
|
|
1323
1334
|
class="checkbox"
|
|
@@ -1348,12 +1359,14 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1348
1359
|
class="view"
|
|
1349
1360
|
>
|
|
1350
1361
|
<div
|
|
1351
|
-
class="pressable"
|
|
1362
|
+
class="pressable disabled"
|
|
1363
|
+
disabled=""
|
|
1352
1364
|
>
|
|
1353
1365
|
<div
|
|
1354
1366
|
class="radio"
|
|
1355
1367
|
>
|
|
1356
1368
|
<input
|
|
1369
|
+
checked=""
|
|
1357
1370
|
class="input"
|
|
1358
1371
|
name="method"
|
|
1359
1372
|
type="radio"
|
|
@@ -1363,11 +1376,11 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1363
1376
|
class="checkmark"
|
|
1364
1377
|
/>
|
|
1365
1378
|
</div>
|
|
1366
|
-
<
|
|
1367
|
-
class="text bold
|
|
1379
|
+
<h3
|
|
1380
|
+
class="text bold headline-3"
|
|
1368
1381
|
>
|
|
1369
1382
|
payments.label.card
|
|
1370
|
-
</
|
|
1383
|
+
</h3>
|
|
1371
1384
|
<img
|
|
1372
1385
|
alt="VISA"
|
|
1373
1386
|
class="view"
|
|
@@ -1379,6 +1392,110 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1379
1392
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
1380
1393
|
/>
|
|
1381
1394
|
</div>
|
|
1395
|
+
<div
|
|
1396
|
+
class="view"
|
|
1397
|
+
>
|
|
1398
|
+
<fieldset
|
|
1399
|
+
autocomplete="off"
|
|
1400
|
+
>
|
|
1401
|
+
<div
|
|
1402
|
+
class="view inputContainer"
|
|
1403
|
+
>
|
|
1404
|
+
<div
|
|
1405
|
+
class="view row inputBorder"
|
|
1406
|
+
>
|
|
1407
|
+
<div
|
|
1408
|
+
class="view wide content"
|
|
1409
|
+
>
|
|
1410
|
+
<span
|
|
1411
|
+
class="text paragraph text label"
|
|
1412
|
+
>
|
|
1413
|
+
payments.label.card_number
|
|
1414
|
+
<span
|
|
1415
|
+
class="required"
|
|
1416
|
+
>
|
|
1417
|
+
*
|
|
1418
|
+
</span>
|
|
1419
|
+
</span>
|
|
1420
|
+
<input
|
|
1421
|
+
class="input input withLabel"
|
|
1422
|
+
id="checkout-card"
|
|
1423
|
+
maxlength="19"
|
|
1424
|
+
name="card"
|
|
1425
|
+
placeholder="0000 0000 0000 0000"
|
|
1426
|
+
required=""
|
|
1427
|
+
type="text"
|
|
1428
|
+
value=""
|
|
1429
|
+
/>
|
|
1430
|
+
</div>
|
|
1431
|
+
</div>
|
|
1432
|
+
</div>
|
|
1433
|
+
<div
|
|
1434
|
+
class="view inputContainer"
|
|
1435
|
+
>
|
|
1436
|
+
<div
|
|
1437
|
+
class="view row inputBorder"
|
|
1438
|
+
>
|
|
1439
|
+
<div
|
|
1440
|
+
class="view wide content"
|
|
1441
|
+
>
|
|
1442
|
+
<span
|
|
1443
|
+
class="text paragraph text label"
|
|
1444
|
+
>
|
|
1445
|
+
payments.label.card_name
|
|
1446
|
+
<span
|
|
1447
|
+
class="required"
|
|
1448
|
+
>
|
|
1449
|
+
*
|
|
1450
|
+
</span>
|
|
1451
|
+
</span>
|
|
1452
|
+
<input
|
|
1453
|
+
class="input input withLabel"
|
|
1454
|
+
id="checkout-name"
|
|
1455
|
+
maxlength="100"
|
|
1456
|
+
minlength="3"
|
|
1457
|
+
name="name"
|
|
1458
|
+
required=""
|
|
1459
|
+
type="text"
|
|
1460
|
+
value=""
|
|
1461
|
+
/>
|
|
1462
|
+
</div>
|
|
1463
|
+
</div>
|
|
1464
|
+
</div>
|
|
1465
|
+
<div
|
|
1466
|
+
class="view inputContainer"
|
|
1467
|
+
>
|
|
1468
|
+
<div
|
|
1469
|
+
class="view row inputBorder"
|
|
1470
|
+
>
|
|
1471
|
+
<div
|
|
1472
|
+
class="view wide content"
|
|
1473
|
+
>
|
|
1474
|
+
<span
|
|
1475
|
+
class="text paragraph text label"
|
|
1476
|
+
>
|
|
1477
|
+
payments.label.expiration
|
|
1478
|
+
<span
|
|
1479
|
+
class="required"
|
|
1480
|
+
>
|
|
1481
|
+
*
|
|
1482
|
+
</span>
|
|
1483
|
+
</span>
|
|
1484
|
+
<input
|
|
1485
|
+
class="input input withLabel"
|
|
1486
|
+
id="checkout-expire"
|
|
1487
|
+
maxlength="5"
|
|
1488
|
+
name="expire"
|
|
1489
|
+
placeholder="payments.label.month_format/payments.label.year_format"
|
|
1490
|
+
required=""
|
|
1491
|
+
type="inputDate"
|
|
1492
|
+
value=""
|
|
1493
|
+
/>
|
|
1494
|
+
</div>
|
|
1495
|
+
</div>
|
|
1496
|
+
</div>
|
|
1497
|
+
</fieldset>
|
|
1498
|
+
</div>
|
|
1382
1499
|
</div>
|
|
1383
1500
|
<div
|
|
1384
1501
|
class="view"
|
|
@@ -1412,6 +1529,118 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1412
1529
|
</div>
|
|
1413
1530
|
</div>
|
|
1414
1531
|
</div>
|
|
1532
|
+
<div
|
|
1533
|
+
class="pressable container overflow"
|
|
1534
|
+
style="height: 768px;"
|
|
1535
|
+
>
|
|
1536
|
+
<div
|
|
1537
|
+
class="view fit modal"
|
|
1538
|
+
>
|
|
1539
|
+
<div
|
|
1540
|
+
class="view row header hideBack"
|
|
1541
|
+
>
|
|
1542
|
+
<button
|
|
1543
|
+
class="pressable button small squared transparent button"
|
|
1544
|
+
>
|
|
1545
|
+
<span
|
|
1546
|
+
class="icon headline-3 icon"
|
|
1547
|
+
>
|
|
1548
|
+
<svg
|
|
1549
|
+
fill="currentColor"
|
|
1550
|
+
height="1em"
|
|
1551
|
+
stroke="currentColor"
|
|
1552
|
+
stroke-width="0"
|
|
1553
|
+
viewBox="0 0 24 24"
|
|
1554
|
+
width="1em"
|
|
1555
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
1556
|
+
>
|
|
1557
|
+
<path
|
|
1558
|
+
d="M0 0h24v24H0V0z"
|
|
1559
|
+
fill="none"
|
|
1560
|
+
/>
|
|
1561
|
+
<path
|
|
1562
|
+
d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
|
|
1563
|
+
/>
|
|
1564
|
+
</svg>
|
|
1565
|
+
</span>
|
|
1566
|
+
</button>
|
|
1567
|
+
</div>
|
|
1568
|
+
<div
|
|
1569
|
+
class="scrollview vertical notIndicator"
|
|
1570
|
+
>
|
|
1571
|
+
<div
|
|
1572
|
+
class="view"
|
|
1573
|
+
>
|
|
1574
|
+
<div
|
|
1575
|
+
class="view"
|
|
1576
|
+
>
|
|
1577
|
+
<span
|
|
1578
|
+
class="text bold small"
|
|
1579
|
+
>
|
|
1580
|
+
common.label.payment_terms
|
|
1581
|
+
</span>
|
|
1582
|
+
<span
|
|
1583
|
+
class="text small"
|
|
1584
|
+
>
|
|
1585
|
+
Prepago de 100%: Tarjeta de crédito o Amazon Pay
|
|
1586
|
+
</span>
|
|
1587
|
+
</div>
|
|
1588
|
+
<div
|
|
1589
|
+
class="view"
|
|
1590
|
+
>
|
|
1591
|
+
<span
|
|
1592
|
+
class="text bold small"
|
|
1593
|
+
>
|
|
1594
|
+
common.label.cancellation_policy
|
|
1595
|
+
</span>
|
|
1596
|
+
<span
|
|
1597
|
+
class="text small"
|
|
1598
|
+
>
|
|
1599
|
+
Para que la reserva quede confirmada, es necesario el cobro por anticipado del 100% de toda la estancia reservada. Recibirá un cargo en su tarjeta por dicho importe. Sólo entonces su confirmación tendrá validez. El importe no será devuelto bajo ninguna circunstancia.
|
|
1600
|
+
</span>
|
|
1601
|
+
</div>
|
|
1602
|
+
<div
|
|
1603
|
+
class="view"
|
|
1604
|
+
>
|
|
1605
|
+
<span
|
|
1606
|
+
class="text bold small"
|
|
1607
|
+
>
|
|
1608
|
+
common.label.others_terms
|
|
1609
|
+
</span>
|
|
1610
|
+
<span
|
|
1611
|
+
class="text small"
|
|
1612
|
+
>
|
|
1613
|
+
<span
|
|
1614
|
+
class="text small wide"
|
|
1615
|
+
>
|
|
1616
|
+
Check- in a partir de las 15.00h.
|
|
1617
|
+
</span>
|
|
1618
|
+
<span
|
|
1619
|
+
class="text small wide"
|
|
1620
|
+
>
|
|
1621
|
+
Check - out hasta las 12.00h.
|
|
1622
|
+
</span>
|
|
1623
|
+
<span
|
|
1624
|
+
class="text small wide"
|
|
1625
|
+
>
|
|
1626
|
+
Los niños de 3 a 12 años podrán acceder a las instalaciones dedicadas a su uso y disfrute.
|
|
1627
|
+
</span>
|
|
1628
|
+
<span
|
|
1629
|
+
class="text small wide"
|
|
1630
|
+
>
|
|
1631
|
+
En caso de alojarse con bebés, éstos no incluyen régimen alguno.
|
|
1632
|
+
</span>
|
|
1633
|
+
<span
|
|
1634
|
+
class="text small wide"
|
|
1635
|
+
>
|
|
1636
|
+
Acceso spa infantil para bebés 8.50€ al día.
|
|
1637
|
+
</span>
|
|
1638
|
+
</span>
|
|
1639
|
+
</div>
|
|
1640
|
+
</div>
|
|
1641
|
+
</div>
|
|
1642
|
+
</div>
|
|
1643
|
+
</div>
|
|
1415
1644
|
</DocumentFragment>
|
|
1416
1645
|
`;
|
|
1417
1646
|
|
|
@@ -1454,6 +1683,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
1454
1683
|
</span>
|
|
1455
1684
|
<input
|
|
1456
1685
|
class="input input withLabel"
|
|
1686
|
+
id="checkout-firstName"
|
|
1457
1687
|
name="firstName"
|
|
1458
1688
|
required=""
|
|
1459
1689
|
type="text"
|
|
@@ -1483,6 +1713,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
1483
1713
|
</span>
|
|
1484
1714
|
<input
|
|
1485
1715
|
class="input input withLabel"
|
|
1716
|
+
id="checkout-lastName"
|
|
1486
1717
|
name="lastName"
|
|
1487
1718
|
required=""
|
|
1488
1719
|
type="text"
|
|
@@ -1512,6 +1743,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
1512
1743
|
</span>
|
|
1513
1744
|
<input
|
|
1514
1745
|
class="input input withLabel"
|
|
1746
|
+
id="checkout-email"
|
|
1515
1747
|
name="email"
|
|
1516
1748
|
required=""
|
|
1517
1749
|
type="email"
|
|
@@ -1539,6 +1771,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
1539
1771
|
</span>
|
|
1540
1772
|
<select
|
|
1541
1773
|
class="select empty input prefix withLabel empty"
|
|
1774
|
+
id="checkout-phone"
|
|
1542
1775
|
name="phone-prefix"
|
|
1543
1776
|
required=""
|
|
1544
1777
|
>
|
|
@@ -2623,6 +2856,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2623
2856
|
</span>
|
|
2624
2857
|
<input
|
|
2625
2858
|
class="input input withLabel"
|
|
2859
|
+
id="checkout-phone"
|
|
2626
2860
|
maxlength="12"
|
|
2627
2861
|
name="phone-phone"
|
|
2628
2862
|
required=""
|
|
@@ -2649,6 +2883,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2649
2883
|
</span>
|
|
2650
2884
|
<input
|
|
2651
2885
|
class="input input withLabel"
|
|
2886
|
+
id="checkout-company"
|
|
2652
2887
|
name="company"
|
|
2653
2888
|
type="text"
|
|
2654
2889
|
value=""
|
|
@@ -2672,6 +2907,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2672
2907
|
</span>
|
|
2673
2908
|
<textarea
|
|
2674
2909
|
class="input input withLabel multiLine"
|
|
2910
|
+
id="checkout-comments"
|
|
2675
2911
|
name="comments"
|
|
2676
2912
|
/>
|
|
2677
2913
|
</div>
|
|
@@ -2685,6 +2921,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2685
2921
|
<span
|
|
2686
2922
|
class="text small"
|
|
2687
2923
|
hint=""
|
|
2924
|
+
id="checkout-undefined"
|
|
2688
2925
|
label="undefined"
|
|
2689
2926
|
name="undefined"
|
|
2690
2927
|
>
|
|
@@ -2693,6 +2930,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2693
2930
|
<div
|
|
2694
2931
|
class="pressable inputOption"
|
|
2695
2932
|
hint=""
|
|
2933
|
+
id="checkout-hotel_future_offers"
|
|
2696
2934
|
>
|
|
2697
2935
|
<div
|
|
2698
2936
|
class="checkbox"
|
|
@@ -2713,6 +2951,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2713
2951
|
<div
|
|
2714
2952
|
class="pressable inputOption"
|
|
2715
2953
|
hint=""
|
|
2954
|
+
id="checkout-joinClub"
|
|
2716
2955
|
>
|
|
2717
2956
|
<div
|
|
2718
2957
|
class="checkbox"
|
|
@@ -2733,6 +2972,7 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2733
2972
|
<div
|
|
2734
2973
|
class="pressable inputOption"
|
|
2735
2974
|
hint=""
|
|
2975
|
+
id="checkout-privacyPolicy"
|
|
2736
2976
|
>
|
|
2737
2977
|
<div
|
|
2738
2978
|
class="checkbox"
|
|
@@ -2763,12 +3003,14 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2763
3003
|
class="view"
|
|
2764
3004
|
>
|
|
2765
3005
|
<div
|
|
2766
|
-
class="pressable"
|
|
3006
|
+
class="pressable disabled"
|
|
3007
|
+
disabled=""
|
|
2767
3008
|
>
|
|
2768
3009
|
<div
|
|
2769
3010
|
class="radio"
|
|
2770
3011
|
>
|
|
2771
3012
|
<input
|
|
3013
|
+
checked=""
|
|
2772
3014
|
class="input"
|
|
2773
3015
|
name="method"
|
|
2774
3016
|
type="radio"
|
|
@@ -2778,11 +3020,11 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2778
3020
|
class="checkmark"
|
|
2779
3021
|
/>
|
|
2780
3022
|
</div>
|
|
2781
|
-
<
|
|
2782
|
-
class="text bold
|
|
3023
|
+
<h3
|
|
3024
|
+
class="text bold headline-3"
|
|
2783
3025
|
>
|
|
2784
3026
|
payments.label.card
|
|
2785
|
-
</
|
|
3027
|
+
</h3>
|
|
2786
3028
|
<img
|
|
2787
3029
|
alt="VISA"
|
|
2788
3030
|
class="view"
|
|
@@ -2794,6 +3036,110 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2794
3036
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
2795
3037
|
/>
|
|
2796
3038
|
</div>
|
|
3039
|
+
<div
|
|
3040
|
+
class="view"
|
|
3041
|
+
>
|
|
3042
|
+
<fieldset
|
|
3043
|
+
autocomplete="off"
|
|
3044
|
+
>
|
|
3045
|
+
<div
|
|
3046
|
+
class="view inputContainer"
|
|
3047
|
+
>
|
|
3048
|
+
<div
|
|
3049
|
+
class="view row inputBorder"
|
|
3050
|
+
>
|
|
3051
|
+
<div
|
|
3052
|
+
class="view wide content"
|
|
3053
|
+
>
|
|
3054
|
+
<span
|
|
3055
|
+
class="text paragraph text label"
|
|
3056
|
+
>
|
|
3057
|
+
payments.label.card_number
|
|
3058
|
+
<span
|
|
3059
|
+
class="required"
|
|
3060
|
+
>
|
|
3061
|
+
*
|
|
3062
|
+
</span>
|
|
3063
|
+
</span>
|
|
3064
|
+
<input
|
|
3065
|
+
class="input input withLabel"
|
|
3066
|
+
id="checkout-card"
|
|
3067
|
+
maxlength="19"
|
|
3068
|
+
name="card"
|
|
3069
|
+
placeholder="0000 0000 0000 0000"
|
|
3070
|
+
required=""
|
|
3071
|
+
type="text"
|
|
3072
|
+
value=""
|
|
3073
|
+
/>
|
|
3074
|
+
</div>
|
|
3075
|
+
</div>
|
|
3076
|
+
</div>
|
|
3077
|
+
<div
|
|
3078
|
+
class="view inputContainer"
|
|
3079
|
+
>
|
|
3080
|
+
<div
|
|
3081
|
+
class="view row inputBorder"
|
|
3082
|
+
>
|
|
3083
|
+
<div
|
|
3084
|
+
class="view wide content"
|
|
3085
|
+
>
|
|
3086
|
+
<span
|
|
3087
|
+
class="text paragraph text label"
|
|
3088
|
+
>
|
|
3089
|
+
payments.label.card_name
|
|
3090
|
+
<span
|
|
3091
|
+
class="required"
|
|
3092
|
+
>
|
|
3093
|
+
*
|
|
3094
|
+
</span>
|
|
3095
|
+
</span>
|
|
3096
|
+
<input
|
|
3097
|
+
class="input input withLabel"
|
|
3098
|
+
id="checkout-name"
|
|
3099
|
+
maxlength="100"
|
|
3100
|
+
minlength="3"
|
|
3101
|
+
name="name"
|
|
3102
|
+
required=""
|
|
3103
|
+
type="text"
|
|
3104
|
+
value=""
|
|
3105
|
+
/>
|
|
3106
|
+
</div>
|
|
3107
|
+
</div>
|
|
3108
|
+
</div>
|
|
3109
|
+
<div
|
|
3110
|
+
class="view inputContainer"
|
|
3111
|
+
>
|
|
3112
|
+
<div
|
|
3113
|
+
class="view row inputBorder"
|
|
3114
|
+
>
|
|
3115
|
+
<div
|
|
3116
|
+
class="view wide content"
|
|
3117
|
+
>
|
|
3118
|
+
<span
|
|
3119
|
+
class="text paragraph text label"
|
|
3120
|
+
>
|
|
3121
|
+
payments.label.expiration
|
|
3122
|
+
<span
|
|
3123
|
+
class="required"
|
|
3124
|
+
>
|
|
3125
|
+
*
|
|
3126
|
+
</span>
|
|
3127
|
+
</span>
|
|
3128
|
+
<input
|
|
3129
|
+
class="input input withLabel"
|
|
3130
|
+
id="checkout-expire"
|
|
3131
|
+
maxlength="5"
|
|
3132
|
+
name="expire"
|
|
3133
|
+
placeholder="payments.label.month_format/payments.label.year_format"
|
|
3134
|
+
required=""
|
|
3135
|
+
type="inputDate"
|
|
3136
|
+
value=""
|
|
3137
|
+
/>
|
|
3138
|
+
</div>
|
|
3139
|
+
</div>
|
|
3140
|
+
</div>
|
|
3141
|
+
</fieldset>
|
|
3142
|
+
</div>
|
|
2797
3143
|
</div>
|
|
2798
3144
|
<div
|
|
2799
3145
|
class="view"
|
|
@@ -2827,6 +3173,118 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2827
3173
|
</div>
|
|
2828
3174
|
</div>
|
|
2829
3175
|
</div>
|
|
3176
|
+
<div
|
|
3177
|
+
class="pressable container overflow"
|
|
3178
|
+
style="height: 768px;"
|
|
3179
|
+
>
|
|
3180
|
+
<div
|
|
3181
|
+
class="view fit modal"
|
|
3182
|
+
>
|
|
3183
|
+
<div
|
|
3184
|
+
class="view row header hideBack"
|
|
3185
|
+
>
|
|
3186
|
+
<button
|
|
3187
|
+
class="pressable button small squared transparent button"
|
|
3188
|
+
>
|
|
3189
|
+
<span
|
|
3190
|
+
class="icon headline-3 icon"
|
|
3191
|
+
>
|
|
3192
|
+
<svg
|
|
3193
|
+
fill="currentColor"
|
|
3194
|
+
height="1em"
|
|
3195
|
+
stroke="currentColor"
|
|
3196
|
+
stroke-width="0"
|
|
3197
|
+
viewBox="0 0 24 24"
|
|
3198
|
+
width="1em"
|
|
3199
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
3200
|
+
>
|
|
3201
|
+
<path
|
|
3202
|
+
d="M0 0h24v24H0V0z"
|
|
3203
|
+
fill="none"
|
|
3204
|
+
/>
|
|
3205
|
+
<path
|
|
3206
|
+
d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
|
|
3207
|
+
/>
|
|
3208
|
+
</svg>
|
|
3209
|
+
</span>
|
|
3210
|
+
</button>
|
|
3211
|
+
</div>
|
|
3212
|
+
<div
|
|
3213
|
+
class="scrollview vertical notIndicator"
|
|
3214
|
+
>
|
|
3215
|
+
<div
|
|
3216
|
+
class="view"
|
|
3217
|
+
>
|
|
3218
|
+
<div
|
|
3219
|
+
class="view"
|
|
3220
|
+
>
|
|
3221
|
+
<span
|
|
3222
|
+
class="text bold small"
|
|
3223
|
+
>
|
|
3224
|
+
common.label.payment_terms
|
|
3225
|
+
</span>
|
|
3226
|
+
<span
|
|
3227
|
+
class="text small"
|
|
3228
|
+
>
|
|
3229
|
+
Prepago de 100%: Tarjeta de crédito o Amazon Pay
|
|
3230
|
+
</span>
|
|
3231
|
+
</div>
|
|
3232
|
+
<div
|
|
3233
|
+
class="view"
|
|
3234
|
+
>
|
|
3235
|
+
<span
|
|
3236
|
+
class="text bold small"
|
|
3237
|
+
>
|
|
3238
|
+
common.label.cancellation_policy
|
|
3239
|
+
</span>
|
|
3240
|
+
<span
|
|
3241
|
+
class="text small"
|
|
3242
|
+
>
|
|
3243
|
+
Para que la reserva quede confirmada, es necesario el cobro por anticipado del 100% de toda la estancia reservada. Recibirá un cargo en su tarjeta por dicho importe. Sólo entonces su confirmación tendrá validez. El importe no será devuelto bajo ninguna circunstancia.
|
|
3244
|
+
</span>
|
|
3245
|
+
</div>
|
|
3246
|
+
<div
|
|
3247
|
+
class="view"
|
|
3248
|
+
>
|
|
3249
|
+
<span
|
|
3250
|
+
class="text bold small"
|
|
3251
|
+
>
|
|
3252
|
+
common.label.others_terms
|
|
3253
|
+
</span>
|
|
3254
|
+
<span
|
|
3255
|
+
class="text small"
|
|
3256
|
+
>
|
|
3257
|
+
<span
|
|
3258
|
+
class="text small wide"
|
|
3259
|
+
>
|
|
3260
|
+
Check- in a partir de las 15.00h.
|
|
3261
|
+
</span>
|
|
3262
|
+
<span
|
|
3263
|
+
class="text small wide"
|
|
3264
|
+
>
|
|
3265
|
+
Check - out hasta las 12.00h.
|
|
3266
|
+
</span>
|
|
3267
|
+
<span
|
|
3268
|
+
class="text small wide"
|
|
3269
|
+
>
|
|
3270
|
+
Los niños de 3 a 12 años podrán acceder a las instalaciones dedicadas a su uso y disfrute.
|
|
3271
|
+
</span>
|
|
3272
|
+
<span
|
|
3273
|
+
class="text small wide"
|
|
3274
|
+
>
|
|
3275
|
+
En caso de alojarse con bebés, éstos no incluyen régimen alguno.
|
|
3276
|
+
</span>
|
|
3277
|
+
<span
|
|
3278
|
+
class="text small wide"
|
|
3279
|
+
>
|
|
3280
|
+
Acceso spa infantil para bebés 8.50€ al día.
|
|
3281
|
+
</span>
|
|
3282
|
+
</span>
|
|
3283
|
+
</div>
|
|
3284
|
+
</div>
|
|
3285
|
+
</div>
|
|
3286
|
+
</div>
|
|
3287
|
+
</div>
|
|
2830
3288
|
</DocumentFragment>
|
|
2831
3289
|
`;
|
|
2832
3290
|
|
|
@@ -2870,6 +3328,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
2870
3328
|
</span>
|
|
2871
3329
|
<input
|
|
2872
3330
|
class="input input withLabel"
|
|
3331
|
+
id="checkout-firstName"
|
|
2873
3332
|
name="firstName"
|
|
2874
3333
|
required=""
|
|
2875
3334
|
type="text"
|
|
@@ -2899,6 +3358,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
2899
3358
|
</span>
|
|
2900
3359
|
<input
|
|
2901
3360
|
class="input input withLabel"
|
|
3361
|
+
id="checkout-lastName"
|
|
2902
3362
|
name="lastName"
|
|
2903
3363
|
required=""
|
|
2904
3364
|
type="text"
|
|
@@ -2928,6 +3388,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
2928
3388
|
</span>
|
|
2929
3389
|
<input
|
|
2930
3390
|
class="input input withLabel"
|
|
3391
|
+
id="checkout-email"
|
|
2931
3392
|
name="email"
|
|
2932
3393
|
required=""
|
|
2933
3394
|
type="email"
|
|
@@ -2955,6 +3416,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
2955
3416
|
</span>
|
|
2956
3417
|
<select
|
|
2957
3418
|
class="select empty input prefix withLabel empty"
|
|
3419
|
+
id="checkout-phone"
|
|
2958
3420
|
name="phone-prefix"
|
|
2959
3421
|
required=""
|
|
2960
3422
|
>
|
|
@@ -4039,6 +4501,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4039
4501
|
</span>
|
|
4040
4502
|
<input
|
|
4041
4503
|
class="input input withLabel"
|
|
4504
|
+
id="checkout-phone"
|
|
4042
4505
|
maxlength="12"
|
|
4043
4506
|
name="phone-phone"
|
|
4044
4507
|
required=""
|
|
@@ -4065,6 +4528,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4065
4528
|
</span>
|
|
4066
4529
|
<input
|
|
4067
4530
|
class="input input withLabel"
|
|
4531
|
+
id="checkout-company"
|
|
4068
4532
|
name="company"
|
|
4069
4533
|
type="text"
|
|
4070
4534
|
value=""
|
|
@@ -4088,6 +4552,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4088
4552
|
</span>
|
|
4089
4553
|
<textarea
|
|
4090
4554
|
class="input input withLabel multiLine"
|
|
4555
|
+
id="checkout-comments"
|
|
4091
4556
|
name="comments"
|
|
4092
4557
|
/>
|
|
4093
4558
|
</div>
|
|
@@ -4101,6 +4566,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4101
4566
|
<span
|
|
4102
4567
|
class="text small"
|
|
4103
4568
|
hint=""
|
|
4569
|
+
id="checkout-undefined"
|
|
4104
4570
|
label="undefined"
|
|
4105
4571
|
name="undefined"
|
|
4106
4572
|
>
|
|
@@ -4109,6 +4575,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4109
4575
|
<div
|
|
4110
4576
|
class="pressable inputOption"
|
|
4111
4577
|
hint=""
|
|
4578
|
+
id="checkout-hotel_future_offers"
|
|
4112
4579
|
>
|
|
4113
4580
|
<div
|
|
4114
4581
|
class="checkbox"
|
|
@@ -4129,6 +4596,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4129
4596
|
<div
|
|
4130
4597
|
class="pressable inputOption"
|
|
4131
4598
|
hint=""
|
|
4599
|
+
id="checkout-joinClub"
|
|
4132
4600
|
>
|
|
4133
4601
|
<div
|
|
4134
4602
|
class="checkbox"
|
|
@@ -4149,6 +4617,7 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4149
4617
|
<div
|
|
4150
4618
|
class="pressable inputOption"
|
|
4151
4619
|
hint=""
|
|
4620
|
+
id="checkout-privacyPolicy"
|
|
4152
4621
|
>
|
|
4153
4622
|
<div
|
|
4154
4623
|
class="checkbox"
|
|
@@ -4179,12 +4648,14 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4179
4648
|
class="view"
|
|
4180
4649
|
>
|
|
4181
4650
|
<div
|
|
4182
|
-
class="pressable"
|
|
4651
|
+
class="pressable disabled"
|
|
4652
|
+
disabled=""
|
|
4183
4653
|
>
|
|
4184
4654
|
<div
|
|
4185
4655
|
class="radio"
|
|
4186
4656
|
>
|
|
4187
4657
|
<input
|
|
4658
|
+
checked=""
|
|
4188
4659
|
class="input"
|
|
4189
4660
|
name="method"
|
|
4190
4661
|
type="radio"
|
|
@@ -4194,11 +4665,11 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4194
4665
|
class="checkmark"
|
|
4195
4666
|
/>
|
|
4196
4667
|
</div>
|
|
4197
|
-
<
|
|
4198
|
-
class="text bold
|
|
4668
|
+
<h3
|
|
4669
|
+
class="text bold headline-3"
|
|
4199
4670
|
>
|
|
4200
4671
|
payments.label.card
|
|
4201
|
-
</
|
|
4672
|
+
</h3>
|
|
4202
4673
|
<img
|
|
4203
4674
|
alt="VISA"
|
|
4204
4675
|
class="view"
|
|
@@ -4210,6 +4681,110 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4210
4681
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
4211
4682
|
/>
|
|
4212
4683
|
</div>
|
|
4684
|
+
<div
|
|
4685
|
+
class="view"
|
|
4686
|
+
>
|
|
4687
|
+
<fieldset
|
|
4688
|
+
autocomplete="off"
|
|
4689
|
+
>
|
|
4690
|
+
<div
|
|
4691
|
+
class="view inputContainer"
|
|
4692
|
+
>
|
|
4693
|
+
<div
|
|
4694
|
+
class="view row inputBorder"
|
|
4695
|
+
>
|
|
4696
|
+
<div
|
|
4697
|
+
class="view wide content"
|
|
4698
|
+
>
|
|
4699
|
+
<span
|
|
4700
|
+
class="text paragraph text label"
|
|
4701
|
+
>
|
|
4702
|
+
payments.label.card_number
|
|
4703
|
+
<span
|
|
4704
|
+
class="required"
|
|
4705
|
+
>
|
|
4706
|
+
*
|
|
4707
|
+
</span>
|
|
4708
|
+
</span>
|
|
4709
|
+
<input
|
|
4710
|
+
class="input input withLabel"
|
|
4711
|
+
id="checkout-card"
|
|
4712
|
+
maxlength="19"
|
|
4713
|
+
name="card"
|
|
4714
|
+
placeholder="0000 0000 0000 0000"
|
|
4715
|
+
required=""
|
|
4716
|
+
type="text"
|
|
4717
|
+
value=""
|
|
4718
|
+
/>
|
|
4719
|
+
</div>
|
|
4720
|
+
</div>
|
|
4721
|
+
</div>
|
|
4722
|
+
<div
|
|
4723
|
+
class="view inputContainer"
|
|
4724
|
+
>
|
|
4725
|
+
<div
|
|
4726
|
+
class="view row inputBorder"
|
|
4727
|
+
>
|
|
4728
|
+
<div
|
|
4729
|
+
class="view wide content"
|
|
4730
|
+
>
|
|
4731
|
+
<span
|
|
4732
|
+
class="text paragraph text label"
|
|
4733
|
+
>
|
|
4734
|
+
payments.label.card_name
|
|
4735
|
+
<span
|
|
4736
|
+
class="required"
|
|
4737
|
+
>
|
|
4738
|
+
*
|
|
4739
|
+
</span>
|
|
4740
|
+
</span>
|
|
4741
|
+
<input
|
|
4742
|
+
class="input input withLabel"
|
|
4743
|
+
id="checkout-name"
|
|
4744
|
+
maxlength="100"
|
|
4745
|
+
minlength="3"
|
|
4746
|
+
name="name"
|
|
4747
|
+
required=""
|
|
4748
|
+
type="text"
|
|
4749
|
+
value=""
|
|
4750
|
+
/>
|
|
4751
|
+
</div>
|
|
4752
|
+
</div>
|
|
4753
|
+
</div>
|
|
4754
|
+
<div
|
|
4755
|
+
class="view inputContainer"
|
|
4756
|
+
>
|
|
4757
|
+
<div
|
|
4758
|
+
class="view row inputBorder"
|
|
4759
|
+
>
|
|
4760
|
+
<div
|
|
4761
|
+
class="view wide content"
|
|
4762
|
+
>
|
|
4763
|
+
<span
|
|
4764
|
+
class="text paragraph text label"
|
|
4765
|
+
>
|
|
4766
|
+
payments.label.expiration
|
|
4767
|
+
<span
|
|
4768
|
+
class="required"
|
|
4769
|
+
>
|
|
4770
|
+
*
|
|
4771
|
+
</span>
|
|
4772
|
+
</span>
|
|
4773
|
+
<input
|
|
4774
|
+
class="input input withLabel"
|
|
4775
|
+
id="checkout-expire"
|
|
4776
|
+
maxlength="5"
|
|
4777
|
+
name="expire"
|
|
4778
|
+
placeholder="payments.label.month_format/payments.label.year_format"
|
|
4779
|
+
required=""
|
|
4780
|
+
type="inputDate"
|
|
4781
|
+
value=""
|
|
4782
|
+
/>
|
|
4783
|
+
</div>
|
|
4784
|
+
</div>
|
|
4785
|
+
</div>
|
|
4786
|
+
</fieldset>
|
|
4787
|
+
</div>
|
|
4213
4788
|
</div>
|
|
4214
4789
|
<div
|
|
4215
4790
|
class="view"
|
|
@@ -4243,6 +4818,118 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4243
4818
|
</div>
|
|
4244
4819
|
</div>
|
|
4245
4820
|
</div>
|
|
4821
|
+
<div
|
|
4822
|
+
class="pressable container overflow"
|
|
4823
|
+
style="height: 768px;"
|
|
4824
|
+
>
|
|
4825
|
+
<div
|
|
4826
|
+
class="view fit modal"
|
|
4827
|
+
>
|
|
4828
|
+
<div
|
|
4829
|
+
class="view row header hideBack"
|
|
4830
|
+
>
|
|
4831
|
+
<button
|
|
4832
|
+
class="pressable button small squared transparent button"
|
|
4833
|
+
>
|
|
4834
|
+
<span
|
|
4835
|
+
class="icon headline-3 icon"
|
|
4836
|
+
>
|
|
4837
|
+
<svg
|
|
4838
|
+
fill="currentColor"
|
|
4839
|
+
height="1em"
|
|
4840
|
+
stroke="currentColor"
|
|
4841
|
+
stroke-width="0"
|
|
4842
|
+
viewBox="0 0 24 24"
|
|
4843
|
+
width="1em"
|
|
4844
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4845
|
+
>
|
|
4846
|
+
<path
|
|
4847
|
+
d="M0 0h24v24H0V0z"
|
|
4848
|
+
fill="none"
|
|
4849
|
+
/>
|
|
4850
|
+
<path
|
|
4851
|
+
d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
|
|
4852
|
+
/>
|
|
4853
|
+
</svg>
|
|
4854
|
+
</span>
|
|
4855
|
+
</button>
|
|
4856
|
+
</div>
|
|
4857
|
+
<div
|
|
4858
|
+
class="scrollview vertical notIndicator"
|
|
4859
|
+
>
|
|
4860
|
+
<div
|
|
4861
|
+
class="view"
|
|
4862
|
+
>
|
|
4863
|
+
<div
|
|
4864
|
+
class="view"
|
|
4865
|
+
>
|
|
4866
|
+
<span
|
|
4867
|
+
class="text bold small"
|
|
4868
|
+
>
|
|
4869
|
+
common.label.payment_terms
|
|
4870
|
+
</span>
|
|
4871
|
+
<span
|
|
4872
|
+
class="text small"
|
|
4873
|
+
>
|
|
4874
|
+
Prepago de 100%: Tarjeta de crédito o Amazon Pay
|
|
4875
|
+
</span>
|
|
4876
|
+
</div>
|
|
4877
|
+
<div
|
|
4878
|
+
class="view"
|
|
4879
|
+
>
|
|
4880
|
+
<span
|
|
4881
|
+
class="text bold small"
|
|
4882
|
+
>
|
|
4883
|
+
common.label.cancellation_policy
|
|
4884
|
+
</span>
|
|
4885
|
+
<span
|
|
4886
|
+
class="text small"
|
|
4887
|
+
>
|
|
4888
|
+
Para que la reserva quede confirmada, es necesario el cobro por anticipado del 100% de toda la estancia reservada. Recibirá un cargo en su tarjeta por dicho importe. Sólo entonces su confirmación tendrá validez. El importe no será devuelto bajo ninguna circunstancia.
|
|
4889
|
+
</span>
|
|
4890
|
+
</div>
|
|
4891
|
+
<div
|
|
4892
|
+
class="view"
|
|
4893
|
+
>
|
|
4894
|
+
<span
|
|
4895
|
+
class="text bold small"
|
|
4896
|
+
>
|
|
4897
|
+
common.label.others_terms
|
|
4898
|
+
</span>
|
|
4899
|
+
<span
|
|
4900
|
+
class="text small"
|
|
4901
|
+
>
|
|
4902
|
+
<span
|
|
4903
|
+
class="text small wide"
|
|
4904
|
+
>
|
|
4905
|
+
Check- in a partir de las 15.00h.
|
|
4906
|
+
</span>
|
|
4907
|
+
<span
|
|
4908
|
+
class="text small wide"
|
|
4909
|
+
>
|
|
4910
|
+
Check - out hasta las 12.00h.
|
|
4911
|
+
</span>
|
|
4912
|
+
<span
|
|
4913
|
+
class="text small wide"
|
|
4914
|
+
>
|
|
4915
|
+
Los niños de 3 a 12 años podrán acceder a las instalaciones dedicadas a su uso y disfrute.
|
|
4916
|
+
</span>
|
|
4917
|
+
<span
|
|
4918
|
+
class="text small wide"
|
|
4919
|
+
>
|
|
4920
|
+
En caso de alojarse con bebés, éstos no incluyen régimen alguno.
|
|
4921
|
+
</span>
|
|
4922
|
+
<span
|
|
4923
|
+
class="text small wide"
|
|
4924
|
+
>
|
|
4925
|
+
Acceso spa infantil para bebés 8.50€ al día.
|
|
4926
|
+
</span>
|
|
4927
|
+
</span>
|
|
4928
|
+
</div>
|
|
4929
|
+
</div>
|
|
4930
|
+
</div>
|
|
4931
|
+
</div>
|
|
4932
|
+
</div>
|
|
4246
4933
|
</DocumentFragment>
|
|
4247
4934
|
`;
|
|
4248
4935
|
|
|
@@ -4285,6 +4972,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
4285
4972
|
</span>
|
|
4286
4973
|
<input
|
|
4287
4974
|
class="input input withLabel"
|
|
4975
|
+
id="checkout-firstName"
|
|
4288
4976
|
name="firstName"
|
|
4289
4977
|
required=""
|
|
4290
4978
|
type="text"
|
|
@@ -4314,6 +5002,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
4314
5002
|
</span>
|
|
4315
5003
|
<input
|
|
4316
5004
|
class="input input withLabel"
|
|
5005
|
+
id="checkout-lastName"
|
|
4317
5006
|
name="lastName"
|
|
4318
5007
|
required=""
|
|
4319
5008
|
type="text"
|
|
@@ -4343,6 +5032,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
4343
5032
|
</span>
|
|
4344
5033
|
<input
|
|
4345
5034
|
class="input input withLabel"
|
|
5035
|
+
id="checkout-email"
|
|
4346
5036
|
name="email"
|
|
4347
5037
|
required=""
|
|
4348
5038
|
type="email"
|
|
@@ -4370,6 +5060,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
4370
5060
|
</span>
|
|
4371
5061
|
<select
|
|
4372
5062
|
class="select empty input prefix withLabel empty"
|
|
5063
|
+
id="checkout-phone"
|
|
4373
5064
|
name="phone-prefix"
|
|
4374
5065
|
required=""
|
|
4375
5066
|
>
|
|
@@ -5454,6 +6145,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5454
6145
|
</span>
|
|
5455
6146
|
<input
|
|
5456
6147
|
class="input input withLabel"
|
|
6148
|
+
id="checkout-phone"
|
|
5457
6149
|
maxlength="12"
|
|
5458
6150
|
name="phone-phone"
|
|
5459
6151
|
required=""
|
|
@@ -5480,6 +6172,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5480
6172
|
</span>
|
|
5481
6173
|
<input
|
|
5482
6174
|
class="input input withLabel"
|
|
6175
|
+
id="checkout-company"
|
|
5483
6176
|
name="company"
|
|
5484
6177
|
type="text"
|
|
5485
6178
|
value=""
|
|
@@ -5503,6 +6196,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5503
6196
|
</span>
|
|
5504
6197
|
<textarea
|
|
5505
6198
|
class="input input withLabel multiLine"
|
|
6199
|
+
id="checkout-comments"
|
|
5506
6200
|
name="comments"
|
|
5507
6201
|
/>
|
|
5508
6202
|
</div>
|
|
@@ -5516,6 +6210,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5516
6210
|
<span
|
|
5517
6211
|
class="text small"
|
|
5518
6212
|
hint=""
|
|
6213
|
+
id="checkout-undefined"
|
|
5519
6214
|
label="undefined"
|
|
5520
6215
|
name="undefined"
|
|
5521
6216
|
>
|
|
@@ -5524,6 +6219,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5524
6219
|
<div
|
|
5525
6220
|
class="pressable inputOption"
|
|
5526
6221
|
hint=""
|
|
6222
|
+
id="checkout-hotel_future_offers"
|
|
5527
6223
|
>
|
|
5528
6224
|
<div
|
|
5529
6225
|
class="checkbox"
|
|
@@ -5544,6 +6240,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5544
6240
|
<div
|
|
5545
6241
|
class="pressable inputOption"
|
|
5546
6242
|
hint=""
|
|
6243
|
+
id="checkout-joinClub"
|
|
5547
6244
|
>
|
|
5548
6245
|
<div
|
|
5549
6246
|
class="checkbox"
|
|
@@ -5564,6 +6261,7 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5564
6261
|
<div
|
|
5565
6262
|
class="pressable inputOption"
|
|
5566
6263
|
hint=""
|
|
6264
|
+
id="checkout-privacyPolicy"
|
|
5567
6265
|
>
|
|
5568
6266
|
<div
|
|
5569
6267
|
class="checkbox"
|
|
@@ -5594,12 +6292,14 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5594
6292
|
class="view"
|
|
5595
6293
|
>
|
|
5596
6294
|
<div
|
|
5597
|
-
class="pressable"
|
|
6295
|
+
class="pressable disabled"
|
|
6296
|
+
disabled=""
|
|
5598
6297
|
>
|
|
5599
6298
|
<div
|
|
5600
6299
|
class="radio"
|
|
5601
6300
|
>
|
|
5602
6301
|
<input
|
|
6302
|
+
checked=""
|
|
5603
6303
|
class="input"
|
|
5604
6304
|
name="method"
|
|
5605
6305
|
type="radio"
|
|
@@ -5609,11 +6309,11 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5609
6309
|
class="checkmark"
|
|
5610
6310
|
/>
|
|
5611
6311
|
</div>
|
|
5612
|
-
<
|
|
5613
|
-
class="text bold
|
|
6312
|
+
<h3
|
|
6313
|
+
class="text bold headline-3"
|
|
5614
6314
|
>
|
|
5615
6315
|
payments.label.card
|
|
5616
|
-
</
|
|
6316
|
+
</h3>
|
|
5617
6317
|
<img
|
|
5618
6318
|
alt="VISA"
|
|
5619
6319
|
class="view"
|
|
@@ -5625,6 +6325,110 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5625
6325
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
5626
6326
|
/>
|
|
5627
6327
|
</div>
|
|
6328
|
+
<div
|
|
6329
|
+
class="view"
|
|
6330
|
+
>
|
|
6331
|
+
<fieldset
|
|
6332
|
+
autocomplete="off"
|
|
6333
|
+
>
|
|
6334
|
+
<div
|
|
6335
|
+
class="view inputContainer"
|
|
6336
|
+
>
|
|
6337
|
+
<div
|
|
6338
|
+
class="view row inputBorder"
|
|
6339
|
+
>
|
|
6340
|
+
<div
|
|
6341
|
+
class="view wide content"
|
|
6342
|
+
>
|
|
6343
|
+
<span
|
|
6344
|
+
class="text paragraph text label"
|
|
6345
|
+
>
|
|
6346
|
+
payments.label.card_number
|
|
6347
|
+
<span
|
|
6348
|
+
class="required"
|
|
6349
|
+
>
|
|
6350
|
+
*
|
|
6351
|
+
</span>
|
|
6352
|
+
</span>
|
|
6353
|
+
<input
|
|
6354
|
+
class="input input withLabel"
|
|
6355
|
+
id="checkout-card"
|
|
6356
|
+
maxlength="19"
|
|
6357
|
+
name="card"
|
|
6358
|
+
placeholder="0000 0000 0000 0000"
|
|
6359
|
+
required=""
|
|
6360
|
+
type="text"
|
|
6361
|
+
value=""
|
|
6362
|
+
/>
|
|
6363
|
+
</div>
|
|
6364
|
+
</div>
|
|
6365
|
+
</div>
|
|
6366
|
+
<div
|
|
6367
|
+
class="view inputContainer"
|
|
6368
|
+
>
|
|
6369
|
+
<div
|
|
6370
|
+
class="view row inputBorder"
|
|
6371
|
+
>
|
|
6372
|
+
<div
|
|
6373
|
+
class="view wide content"
|
|
6374
|
+
>
|
|
6375
|
+
<span
|
|
6376
|
+
class="text paragraph text label"
|
|
6377
|
+
>
|
|
6378
|
+
payments.label.card_name
|
|
6379
|
+
<span
|
|
6380
|
+
class="required"
|
|
6381
|
+
>
|
|
6382
|
+
*
|
|
6383
|
+
</span>
|
|
6384
|
+
</span>
|
|
6385
|
+
<input
|
|
6386
|
+
class="input input withLabel"
|
|
6387
|
+
id="checkout-name"
|
|
6388
|
+
maxlength="100"
|
|
6389
|
+
minlength="3"
|
|
6390
|
+
name="name"
|
|
6391
|
+
required=""
|
|
6392
|
+
type="text"
|
|
6393
|
+
value=""
|
|
6394
|
+
/>
|
|
6395
|
+
</div>
|
|
6396
|
+
</div>
|
|
6397
|
+
</div>
|
|
6398
|
+
<div
|
|
6399
|
+
class="view inputContainer"
|
|
6400
|
+
>
|
|
6401
|
+
<div
|
|
6402
|
+
class="view row inputBorder"
|
|
6403
|
+
>
|
|
6404
|
+
<div
|
|
6405
|
+
class="view wide content"
|
|
6406
|
+
>
|
|
6407
|
+
<span
|
|
6408
|
+
class="text paragraph text label"
|
|
6409
|
+
>
|
|
6410
|
+
payments.label.expiration
|
|
6411
|
+
<span
|
|
6412
|
+
class="required"
|
|
6413
|
+
>
|
|
6414
|
+
*
|
|
6415
|
+
</span>
|
|
6416
|
+
</span>
|
|
6417
|
+
<input
|
|
6418
|
+
class="input input withLabel"
|
|
6419
|
+
id="checkout-expire"
|
|
6420
|
+
maxlength="5"
|
|
6421
|
+
name="expire"
|
|
6422
|
+
placeholder="payments.label.month_format/payments.label.year_format"
|
|
6423
|
+
required=""
|
|
6424
|
+
type="inputDate"
|
|
6425
|
+
value=""
|
|
6426
|
+
/>
|
|
6427
|
+
</div>
|
|
6428
|
+
</div>
|
|
6429
|
+
</div>
|
|
6430
|
+
</fieldset>
|
|
6431
|
+
</div>
|
|
5628
6432
|
</div>
|
|
5629
6433
|
<div
|
|
5630
6434
|
class="view"
|
|
@@ -5658,5 +6462,117 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5658
6462
|
</div>
|
|
5659
6463
|
</div>
|
|
5660
6464
|
</div>
|
|
6465
|
+
<div
|
|
6466
|
+
class="pressable container overflow"
|
|
6467
|
+
style="height: 768px;"
|
|
6468
|
+
>
|
|
6469
|
+
<div
|
|
6470
|
+
class="view fit modal"
|
|
6471
|
+
>
|
|
6472
|
+
<div
|
|
6473
|
+
class="view row header hideBack"
|
|
6474
|
+
>
|
|
6475
|
+
<button
|
|
6476
|
+
class="pressable button small squared transparent button"
|
|
6477
|
+
>
|
|
6478
|
+
<span
|
|
6479
|
+
class="icon headline-3 icon"
|
|
6480
|
+
>
|
|
6481
|
+
<svg
|
|
6482
|
+
fill="currentColor"
|
|
6483
|
+
height="1em"
|
|
6484
|
+
stroke="currentColor"
|
|
6485
|
+
stroke-width="0"
|
|
6486
|
+
viewBox="0 0 24 24"
|
|
6487
|
+
width="1em"
|
|
6488
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6489
|
+
>
|
|
6490
|
+
<path
|
|
6491
|
+
d="M0 0h24v24H0V0z"
|
|
6492
|
+
fill="none"
|
|
6493
|
+
/>
|
|
6494
|
+
<path
|
|
6495
|
+
d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"
|
|
6496
|
+
/>
|
|
6497
|
+
</svg>
|
|
6498
|
+
</span>
|
|
6499
|
+
</button>
|
|
6500
|
+
</div>
|
|
6501
|
+
<div
|
|
6502
|
+
class="scrollview vertical notIndicator"
|
|
6503
|
+
>
|
|
6504
|
+
<div
|
|
6505
|
+
class="view"
|
|
6506
|
+
>
|
|
6507
|
+
<div
|
|
6508
|
+
class="view"
|
|
6509
|
+
>
|
|
6510
|
+
<span
|
|
6511
|
+
class="text bold small"
|
|
6512
|
+
>
|
|
6513
|
+
common.label.payment_terms
|
|
6514
|
+
</span>
|
|
6515
|
+
<span
|
|
6516
|
+
class="text small"
|
|
6517
|
+
>
|
|
6518
|
+
Prepago de 100%: Tarjeta de crédito o Amazon Pay
|
|
6519
|
+
</span>
|
|
6520
|
+
</div>
|
|
6521
|
+
<div
|
|
6522
|
+
class="view"
|
|
6523
|
+
>
|
|
6524
|
+
<span
|
|
6525
|
+
class="text bold small"
|
|
6526
|
+
>
|
|
6527
|
+
common.label.cancellation_policy
|
|
6528
|
+
</span>
|
|
6529
|
+
<span
|
|
6530
|
+
class="text small"
|
|
6531
|
+
>
|
|
6532
|
+
Para que la reserva quede confirmada, es necesario el cobro por anticipado del 100% de toda la estancia reservada. Recibirá un cargo en su tarjeta por dicho importe. Sólo entonces su confirmación tendrá validez. El importe no será devuelto bajo ninguna circunstancia.
|
|
6533
|
+
</span>
|
|
6534
|
+
</div>
|
|
6535
|
+
<div
|
|
6536
|
+
class="view"
|
|
6537
|
+
>
|
|
6538
|
+
<span
|
|
6539
|
+
class="text bold small"
|
|
6540
|
+
>
|
|
6541
|
+
common.label.others_terms
|
|
6542
|
+
</span>
|
|
6543
|
+
<span
|
|
6544
|
+
class="text small"
|
|
6545
|
+
>
|
|
6546
|
+
<span
|
|
6547
|
+
class="text small wide"
|
|
6548
|
+
>
|
|
6549
|
+
Check- in a partir de las 15.00h.
|
|
6550
|
+
</span>
|
|
6551
|
+
<span
|
|
6552
|
+
class="text small wide"
|
|
6553
|
+
>
|
|
6554
|
+
Check - out hasta las 12.00h.
|
|
6555
|
+
</span>
|
|
6556
|
+
<span
|
|
6557
|
+
class="text small wide"
|
|
6558
|
+
>
|
|
6559
|
+
Los niños de 3 a 12 años podrán acceder a las instalaciones dedicadas a su uso y disfrute.
|
|
6560
|
+
</span>
|
|
6561
|
+
<span
|
|
6562
|
+
class="text small wide"
|
|
6563
|
+
>
|
|
6564
|
+
En caso de alojarse con bebés, éstos no incluyen régimen alguno.
|
|
6565
|
+
</span>
|
|
6566
|
+
<span
|
|
6567
|
+
class="text small wide"
|
|
6568
|
+
>
|
|
6569
|
+
Acceso spa infantil para bebés 8.50€ al día.
|
|
6570
|
+
</span>
|
|
6571
|
+
</span>
|
|
6572
|
+
</div>
|
|
6573
|
+
</div>
|
|
6574
|
+
</div>
|
|
6575
|
+
</div>
|
|
6576
|
+
</div>
|
|
5661
6577
|
</DocumentFragment>
|
|
5662
6578
|
`;
|