@mirai/core 0.3.306 → 0.3.307
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/build/Core.Notifications.module.css +2 -10
- package/build/components/BannerLoyalty/BannerLoyalty.module.css +2 -2
- package/build/components/Booking/Booking.module.css +2 -2
- package/build/components/Booking/__tests__/__snapshots__/Booking.test.js.snap +10 -15
- package/build/components/Booking/components/Field/Field.module.css +2 -2
- package/build/components/Booking/partials/Booking.Payment.js +16 -0
- package/build/components/Booking/partials/Booking.Payment.js.map +1 -1
- package/build/components/Chat/Chat.module.css +2 -2
- package/build/components/Checkout/Checkout.module.css +2 -2
- package/build/components/Checkout/__tests__/__snapshots__/Checkout.test.js.snap +16 -24
- package/build/components/Deals/Deals.module.css +2 -2
- package/build/components/Finder/Finder.module.css +2 -2
- package/build/components/Finder/components/Calendar/Calendar.module.css +1 -1
- package/build/components/Finder/components/Places/Places.module.css +2 -2
- package/build/components/Header/Header.js +2 -1
- package/build/components/Header/Header.js.map +1 -1
- package/build/components/Header/Header.module.css +2 -2
- package/build/components/Header/components/BookingProcess/BookingProcess.module.css +2 -2
- package/build/components/Profile/components/Bookings/Bookings.module.css +2 -2
- package/build/components/Profile/components/Settings/Settings.module.css +2 -2
- package/build/components/Rates/Rates.Skeleton.js +3 -2
- package/build/components/Rates/Rates.Skeleton.js.map +1 -1
- package/build/components/Rates/Rates.module.css +2 -2
- package/build/components/Rates/components/CardHotel/CardHotel.module.css +2 -2
- package/build/components/Rates/components/ClubRate/ClubRate.module.css +2 -2
- package/build/components/Rates/components/Hotelverse/Hotelverse.module.css +1 -1
- package/build/components/Rates/components/Item/Item.Preview.js +3 -1
- package/build/components/Rates/components/Item/Item.Preview.js.map +1 -1
- package/build/components/Rates/components/Item/Item.module.css +2 -2
- package/build/components/Rates/components/Item/components/Option/Option.module.css +2 -2
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.module.css +2 -2
- package/build/components/Rates/components/Item/components/TooltipDates/TooltipDates.module.css +2 -2
- package/build/components/Rates/components/ModalExtras/ModalExtras.module.css +2 -2
- package/build/components/Session/Session.module.css +2 -2
- package/build/components/Signup/Signup.module.css +2 -2
- package/build/components/__shared__/BookingDates/BookingDates.module.css +1 -1
- package/build/components/__shared__/BookingTable/BookingTable.module.css +2 -2
- package/build/components/__shared__/Countdown/Countdown.js +3 -3
- package/build/components/__shared__/Countdown/Countdown.js.map +1 -1
- package/build/components/__shared__/Field/Field.module.css +2 -2
- package/build/components/__shared__/FieldOccupation/FieldOccupation.module.css +1 -1
- package/build/components/__shared__/FieldPromocode/FieldPromocode.module.css +2 -2
- package/build/components/__shared__/Footer/Footer.js +7 -3
- package/build/components/__shared__/Footer/Footer.js.map +1 -1
- package/build/components/__shared__/Footer/Footer.module.css +11 -2
- package/build/components/__shared__/Footer/__tests__/__snapshots__/Footer.test.js.snap +53 -8
- package/build/components/__shared__/Occupation/Occupation.module.css +2 -2
- package/package.json +1 -1
- package/public/App.module.css +1 -1
- package/public/routes/routes.module.css +1 -1
|
@@ -47,6 +47,15 @@
|
|
|
47
47
|
text-decoration: none;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
+
.powered,
|
|
51
|
+
.powered * {
|
|
52
|
+
transition: color var(--mirai-ui-motion-expand) var(--mirai-ui-motion-easing);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.powered:hover {
|
|
56
|
+
color: var(--mirai-ui-content) !important;
|
|
57
|
+
}
|
|
58
|
+
|
|
50
59
|
.powered:hover .mirai {
|
|
51
60
|
color: #de1223;
|
|
52
61
|
}
|
|
@@ -56,7 +65,7 @@
|
|
|
56
65
|
}
|
|
57
66
|
|
|
58
67
|
/* S */
|
|
59
|
-
@media only screen and (max-width:
|
|
68
|
+
@media only screen and (max-width: 480px) {
|
|
60
69
|
.content {
|
|
61
70
|
gap: var(--mirai-ui-space-M);
|
|
62
71
|
padding: var(--mirai-ui-space-M);
|
|
@@ -64,7 +73,7 @@
|
|
|
64
73
|
}
|
|
65
74
|
|
|
66
75
|
/* M & L */
|
|
67
|
-
@media only screen and (min-width:
|
|
76
|
+
@media only screen and (min-width: 481px) {
|
|
68
77
|
.content {
|
|
69
78
|
padding: var(--mirai-ui-space-M) 0;
|
|
70
79
|
}
|
|
@@ -17,9 +17,56 @@ exports[`component:<Footer> inherit:className 1`] = `
|
|
|
17
17
|
© 2024
|
|
18
18
|
<button
|
|
19
19
|
class="pressable action inline small"
|
|
20
|
+
/>
|
|
21
|
+
.
|
|
22
|
+
</span>
|
|
23
|
+
<span
|
|
24
|
+
class="text light small"
|
|
25
|
+
>
|
|
26
|
+
common.label.all
|
|
27
|
+
<span
|
|
28
|
+
style="text-decoration: underline;"
|
|
20
29
|
>
|
|
21
|
-
|
|
22
|
-
</
|
|
30
|
+
rights
|
|
31
|
+
</span>
|
|
32
|
+
reserved
|
|
33
|
+
</span>
|
|
34
|
+
</div>
|
|
35
|
+
<a
|
|
36
|
+
class="pressable action inline small"
|
|
37
|
+
href="https://www.mirai.com/"
|
|
38
|
+
>
|
|
39
|
+
Powered by
|
|
40
|
+
<span
|
|
41
|
+
class="text bold light paragraph"
|
|
42
|
+
>
|
|
43
|
+
mirai
|
|
44
|
+
</span>
|
|
45
|
+
</a>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
</DocumentFragment>
|
|
49
|
+
`;
|
|
50
|
+
|
|
51
|
+
exports[`component:<Footer> prop:logo 1`] = `
|
|
52
|
+
<DocumentFragment>
|
|
53
|
+
<div
|
|
54
|
+
class="view row"
|
|
55
|
+
>
|
|
56
|
+
<div
|
|
57
|
+
class="view row"
|
|
58
|
+
>
|
|
59
|
+
<div
|
|
60
|
+
class="view row"
|
|
61
|
+
>
|
|
62
|
+
<span
|
|
63
|
+
class="text light small"
|
|
64
|
+
>
|
|
65
|
+
© 2024
|
|
66
|
+
<button
|
|
67
|
+
class="pressable action inline small"
|
|
68
|
+
/>
|
|
69
|
+
.
|
|
23
70
|
</span>
|
|
24
71
|
<span
|
|
25
72
|
class="text light small"
|
|
@@ -66,9 +113,8 @@ exports[`component:<Footer> renders 1`] = `
|
|
|
66
113
|
© 2024
|
|
67
114
|
<button
|
|
68
115
|
class="pressable action inline small"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
</button>
|
|
116
|
+
/>
|
|
117
|
+
.
|
|
72
118
|
</span>
|
|
73
119
|
<span
|
|
74
120
|
class="text light small"
|
|
@@ -116,9 +162,8 @@ exports[`component:<Footer> testID 1`] = `
|
|
|
116
162
|
© 2024
|
|
117
163
|
<button
|
|
118
164
|
class="pressable action inline small"
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
</button>
|
|
165
|
+
/>
|
|
166
|
+
.
|
|
122
167
|
</span>
|
|
123
168
|
<span
|
|
124
169
|
class="text light small"
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
align-self: flex-start;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
@media only screen and (max-width:
|
|
95
|
+
@media only screen and (max-width: 480px) {
|
|
96
96
|
.container {
|
|
97
97
|
max-height: var(--mirai-finder-modal-content-max-height);
|
|
98
98
|
}
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
@media only screen and (min-width:
|
|
105
|
+
@media only screen and (min-width: 481px) {
|
|
106
106
|
.container {
|
|
107
107
|
width: var(--mirai-occupation-width);
|
|
108
108
|
}
|
package/package.json
CHANGED
package/public/App.module.css
CHANGED