@mirai/core 0.3.170 → 0.3.172
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 +1 -2
- package/build/components/Checkout/Checkout.js.map +1 -1
- package/build/components/Checkout/Checkout.module.css +10 -0
- package/build/components/Checkout/helpers/getFieldProps.js +2 -1
- package/build/components/Checkout/helpers/getFieldProps.js.map +1 -1
- package/build/components/Checkout/partials/Checkout.Form.js +17 -2
- package/build/components/Checkout/partials/Checkout.Form.js.map +1 -1
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap +888 -16
- 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/{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__/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 +290 -8
- 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__/index.js +11 -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
|
@@ -1359,12 +1359,14 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1359
1359
|
class="view"
|
|
1360
1360
|
>
|
|
1361
1361
|
<div
|
|
1362
|
-
class="pressable"
|
|
1362
|
+
class="pressable disabled"
|
|
1363
|
+
disabled=""
|
|
1363
1364
|
>
|
|
1364
1365
|
<div
|
|
1365
1366
|
class="radio"
|
|
1366
1367
|
>
|
|
1367
1368
|
<input
|
|
1369
|
+
checked=""
|
|
1368
1370
|
class="input"
|
|
1369
1371
|
name="method"
|
|
1370
1372
|
type="radio"
|
|
@@ -1374,11 +1376,11 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1374
1376
|
class="checkmark"
|
|
1375
1377
|
/>
|
|
1376
1378
|
</div>
|
|
1377
|
-
<
|
|
1378
|
-
class="text bold
|
|
1379
|
+
<h3
|
|
1380
|
+
class="text bold headline-3"
|
|
1379
1381
|
>
|
|
1380
1382
|
payments.label.card
|
|
1381
|
-
</
|
|
1383
|
+
</h3>
|
|
1382
1384
|
<img
|
|
1383
1385
|
alt="VISA"
|
|
1384
1386
|
class="view"
|
|
@@ -1390,6 +1392,110 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1390
1392
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
1391
1393
|
/>
|
|
1392
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>
|
|
1393
1499
|
</div>
|
|
1394
1500
|
<div
|
|
1395
1501
|
class="view"
|
|
@@ -1423,6 +1529,118 @@ exports[`component:<Checkout> partial:<Form> inherit:className 1`] = `
|
|
|
1423
1529
|
</div>
|
|
1424
1530
|
</div>
|
|
1425
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>
|
|
1426
1644
|
</DocumentFragment>
|
|
1427
1645
|
`;
|
|
1428
1646
|
|
|
@@ -2785,12 +3003,14 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2785
3003
|
class="view"
|
|
2786
3004
|
>
|
|
2787
3005
|
<div
|
|
2788
|
-
class="pressable"
|
|
3006
|
+
class="pressable disabled"
|
|
3007
|
+
disabled=""
|
|
2789
3008
|
>
|
|
2790
3009
|
<div
|
|
2791
3010
|
class="radio"
|
|
2792
3011
|
>
|
|
2793
3012
|
<input
|
|
3013
|
+
checked=""
|
|
2794
3014
|
class="input"
|
|
2795
3015
|
name="method"
|
|
2796
3016
|
type="radio"
|
|
@@ -2800,11 +3020,11 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2800
3020
|
class="checkmark"
|
|
2801
3021
|
/>
|
|
2802
3022
|
</div>
|
|
2803
|
-
<
|
|
2804
|
-
class="text bold
|
|
3023
|
+
<h3
|
|
3024
|
+
class="text bold headline-3"
|
|
2805
3025
|
>
|
|
2806
3026
|
payments.label.card
|
|
2807
|
-
</
|
|
3027
|
+
</h3>
|
|
2808
3028
|
<img
|
|
2809
3029
|
alt="VISA"
|
|
2810
3030
|
class="view"
|
|
@@ -2816,6 +3036,110 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2816
3036
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
2817
3037
|
/>
|
|
2818
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>
|
|
2819
3143
|
</div>
|
|
2820
3144
|
<div
|
|
2821
3145
|
class="view"
|
|
@@ -2849,6 +3173,118 @@ exports[`component:<Checkout> partial:<Form> renders 1`] = `
|
|
|
2849
3173
|
</div>
|
|
2850
3174
|
</div>
|
|
2851
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>
|
|
2852
3288
|
</DocumentFragment>
|
|
2853
3289
|
`;
|
|
2854
3290
|
|
|
@@ -4212,12 +4648,14 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4212
4648
|
class="view"
|
|
4213
4649
|
>
|
|
4214
4650
|
<div
|
|
4215
|
-
class="pressable"
|
|
4651
|
+
class="pressable disabled"
|
|
4652
|
+
disabled=""
|
|
4216
4653
|
>
|
|
4217
4654
|
<div
|
|
4218
4655
|
class="radio"
|
|
4219
4656
|
>
|
|
4220
4657
|
<input
|
|
4658
|
+
checked=""
|
|
4221
4659
|
class="input"
|
|
4222
4660
|
name="method"
|
|
4223
4661
|
type="radio"
|
|
@@ -4227,11 +4665,11 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4227
4665
|
class="checkmark"
|
|
4228
4666
|
/>
|
|
4229
4667
|
</div>
|
|
4230
|
-
<
|
|
4231
|
-
class="text bold
|
|
4668
|
+
<h3
|
|
4669
|
+
class="text bold headline-3"
|
|
4232
4670
|
>
|
|
4233
4671
|
payments.label.card
|
|
4234
|
-
</
|
|
4672
|
+
</h3>
|
|
4235
4673
|
<img
|
|
4236
4674
|
alt="VISA"
|
|
4237
4675
|
class="view"
|
|
@@ -4243,6 +4681,110 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4243
4681
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
4244
4682
|
/>
|
|
4245
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>
|
|
4246
4788
|
</div>
|
|
4247
4789
|
<div
|
|
4248
4790
|
class="view"
|
|
@@ -4276,6 +4818,118 @@ exports[`component:<Checkout> partial:<Form> testID 1`] = `
|
|
|
4276
4818
|
</div>
|
|
4277
4819
|
</div>
|
|
4278
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>
|
|
4279
4933
|
</DocumentFragment>
|
|
4280
4934
|
`;
|
|
4281
4935
|
|
|
@@ -5638,12 +6292,14 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5638
6292
|
class="view"
|
|
5639
6293
|
>
|
|
5640
6294
|
<div
|
|
5641
|
-
class="pressable"
|
|
6295
|
+
class="pressable disabled"
|
|
6296
|
+
disabled=""
|
|
5642
6297
|
>
|
|
5643
6298
|
<div
|
|
5644
6299
|
class="radio"
|
|
5645
6300
|
>
|
|
5646
6301
|
<input
|
|
6302
|
+
checked=""
|
|
5647
6303
|
class="input"
|
|
5648
6304
|
name="method"
|
|
5649
6305
|
type="radio"
|
|
@@ -5653,11 +6309,11 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5653
6309
|
class="checkmark"
|
|
5654
6310
|
/>
|
|
5655
6311
|
</div>
|
|
5656
|
-
<
|
|
5657
|
-
class="text bold
|
|
6312
|
+
<h3
|
|
6313
|
+
class="text bold headline-3"
|
|
5658
6314
|
>
|
|
5659
6315
|
payments.label.card
|
|
5660
|
-
</
|
|
6316
|
+
</h3>
|
|
5661
6317
|
<img
|
|
5662
6318
|
alt="VISA"
|
|
5663
6319
|
class="view"
|
|
@@ -5669,6 +6325,110 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5669
6325
|
src="https://static.mirai.com/payments/images/cards/mastercard.png"
|
|
5670
6326
|
/>
|
|
5671
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>
|
|
5672
6432
|
</div>
|
|
5673
6433
|
<div
|
|
5674
6434
|
class="view"
|
|
@@ -5702,5 +6462,117 @@ exports[`component:<Checkout> partial:<Form> with a store 1`] = `
|
|
|
5702
6462
|
</div>
|
|
5703
6463
|
</div>
|
|
5704
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>
|
|
5705
6577
|
</DocumentFragment>
|
|
5706
6578
|
`;
|