@mirai/core 0.4.17 → 0.4.19
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/README.md +259 -90
- package/__tests__/BookingQuery/workflows/login.workflow.js +2 -2
- package/__tests__/Checkout/workflows/form.workflow.js +8 -8
- package/__tests__/Deals/__mocks__/deals-success.json +739 -0
- package/__tests__/checkout.spec.jsx +10 -0
- package/__tests__/deals.spec.js +7 -0
- package/build/components/BannerLoyalty/BannerLoyalty.js +70 -63
- package/build/components/BannerLoyalty/BannerLoyalty.js.map +1 -1
- package/build/components/BannerLoyalty/BannerLoyalty.l10n.js +7 -1
- package/build/components/BannerLoyalty/BannerLoyalty.l10n.js.map +1 -1
- package/build/components/BannerLoyalty/BannerLoyalty.module.css +55 -30
- package/build/components/BannerLoyalty/BannerLoyalty.skeleton.js +27 -29
- package/build/components/BannerLoyalty/BannerLoyalty.skeleton.js.map +1 -1
- package/build/components/BannerLoyalty/__tests__/__snapshots__/BannerLoyalty.skeleton.test.js.snap +183 -186
- package/build/components/BannerLoyalty/__tests__/__snapshots__/BannerLoyalty.test.js.snap +61 -62
- package/build/components/Booking/Booking.module.css +3 -3
- package/build/components/Booking/__tests__/__snapshots__/Booking.test.js.snap +10 -10
- package/build/components/BookingQuery/__tests__/__snapshots__/BookingQuery.test.js.snap +12 -12
- package/build/components/ButtonFinder/__tests__/__snapshots__/ButtonFinder.test.js.snap +25 -15
- package/build/components/Chat/Chat.module.css +0 -2
- package/build/components/Chat/__tests__/__snapshots__/Chat.test.js.snap +4 -4
- package/build/components/Checkout/Checkout.module.css +3 -3
- package/build/components/Checkout/__tests__/__snapshots__/Checkout.test.js.snap +16 -16
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap +20 -20
- package/build/components/Deals/__tests__/__snapshots__/Deals.Calendar.test.js.snap +3 -3
- package/build/components/Deals/__tests__/__snapshots__/Deals.test.js.snap +12 -12
- package/build/components/Finder/Finder.compact.js +20 -20
- package/build/components/Finder/Finder.compact.js.map +1 -1
- package/build/components/Finder/Finder.js +3 -3
- package/build/components/Finder/Finder.js.map +1 -1
- package/build/components/Finder/Finder.module.css +30 -8
- package/build/components/Finder/__tests__/__snapshots__/Finder.test.js.snap +68 -42
- package/build/components/Finder/components/Calendar/Calendar.module.css +1 -1
- package/build/components/Finder/components/Calendar/__tests__/__snapshots__/Calendar.test.js.snap +9 -9
- package/build/components/Finder/components/Places/Places.js +24 -6
- package/build/components/Finder/components/Places/Places.js.map +1 -1
- package/build/components/Finder/components/Places/Places.module.css +27 -2
- package/build/components/Finder/components/Places/__tests__/__snapshots__/Places.test.js.snap +5 -9
- package/build/components/Finder/components/Places/helpers/calcColumns.js +1 -1
- package/build/components/Finder/components/Places/helpers/calcColumns.js.map +1 -1
- package/build/components/Header/Header.js +6 -4
- package/build/components/Header/Header.js.map +1 -1
- package/build/components/Header/__tests__/__snapshots__/Header.test.js.snap +3 -3
- package/build/components/Header/components/BookingProcess/BookingProcess.module.css +9 -5
- package/build/components/Rates/Rates.Header.js +8 -11
- package/build/components/Rates/Rates.Header.js.map +1 -1
- package/build/components/Rates/Rates.RoomSelector.js +1 -1
- package/build/components/Rates/Rates.RoomSelector.js.map +1 -1
- package/build/components/Rates/Rates.Skeleton.js +2 -3
- package/build/components/Rates/Rates.Skeleton.js.map +1 -1
- package/build/components/Rates/Rates.Unavailability.js +2 -1
- package/build/components/Rates/Rates.Unavailability.js.map +1 -1
- package/build/components/Rates/Rates.js +13 -16
- package/build/components/Rates/Rates.js.map +1 -1
- package/build/components/Rates/Rates.module.css +16 -7
- package/build/components/Rates/__tests__/__snapshots__/Rates.Header.test.js.snap +1 -8
- package/build/components/Rates/__tests__/__snapshots__/Rates.test.js.snap +8042 -6319
- package/build/components/Rates/components/CardHotel/CardHotel.js +34 -13
- package/build/components/Rates/components/CardHotel/CardHotel.js.map +1 -1
- package/build/components/Rates/components/CardHotel/CardHotel.l10n.js +3 -0
- package/build/components/Rates/components/CardHotel/CardHotel.l10n.js.map +1 -1
- package/build/components/Rates/components/CardHotel/CardHotel.module.css +19 -2
- package/build/components/Rates/components/CardHotel/__tests__/__snapshots__/CardHotel.test.js.snap +51 -35
- package/build/components/Rates/components/Filters/Filters.Button.js +3 -4
- package/build/components/Rates/components/Filters/Filters.Button.js.map +1 -1
- package/build/components/Rates/components/Filters/Filters.js +2 -1
- package/build/components/Rates/components/Filters/Filters.js.map +1 -1
- package/build/components/Rates/components/Filters/Filters.module.css +23 -1
- package/build/components/Rates/components/Filters/__tests__/__snapshots__/Filters.test.js.snap +1 -1
- package/build/components/Rates/components/Item/Item.Preview.js +25 -9
- package/build/components/Rates/components/Item/Item.Preview.js.map +1 -1
- package/build/components/Rates/components/Item/Item.Rates.js +8 -5
- package/build/components/Rates/components/Item/Item.Rates.js.map +1 -1
- package/build/components/Rates/components/Item/Item.js +31 -2
- package/build/components/Rates/components/Item/Item.js.map +1 -1
- package/build/components/Rates/components/Item/Item.module.css +4 -0
- package/build/components/Rates/components/Item/__tests__/__snapshots__/Item.Preview.test.js.snap +1 -1
- package/build/components/Rates/components/Item/__tests__/__snapshots__/Item.test.js.snap +1 -1
- package/build/components/Rates/components/Item/components/Amenities/Amenities.module.css +2 -9
- package/build/components/Rates/components/Item/components/ModalCancellationInfo/ModalCancellationInfo.module.css +3 -7
- package/build/components/Rates/components/Item/components/ModalInfo/ModalInfo.module.css +5 -5
- package/build/components/Rates/components/Item/components/ModalInfo/__tests__/__snapshots__/ModalInfo.test.js.snap +2 -2
- package/build/components/Rates/components/Item/components/ModalOfferInfo/ModalOfferInfo.js +2 -15
- package/build/components/Rates/components/Item/components/ModalOfferInfo/ModalOfferInfo.js.map +1 -1
- package/build/components/Rates/components/Item/components/ModalOfferInfo/ModalOfferInfo.module.css +3 -7
- package/build/components/Rates/components/Item/components/ModalUrl/ModalUrl.module.css +6 -6
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.js +1 -1
- package/build/components/Rates/components/Item/components/RateDetails/RateDetails.js.map +1 -1
- package/build/components/Rates/components/Item/components/Slider/Slider.js +1 -1
- package/build/components/Rates/components/Item/components/Slider/Slider.js.map +1 -1
- package/build/components/Rates/components/Item/components/Slider/__tests__/__snapshots__/Slider.test.js.snap +1 -1
- package/build/components/Rates/components/ModalClubRate/ModalClubRate.js +6 -4
- package/build/components/Rates/components/ModalClubRate/ModalClubRate.js.map +1 -1
- package/build/components/Rates/components/ModalClubRate/ModalClubRate.module.css +4 -0
- package/build/components/Rates/components/ModalClubRate/__tests__/__snapshots__/ModalClubRate.test.js.snap +4 -4
- package/build/components/Rates/components/ModalExtras/ModalExtras.module.css +1 -1
- package/build/components/Rates/components/ModalExtras/__tests__/__snapshots__/ModalExtras.test.js.snap +1 -1
- package/build/components/Signup/Signup.module.css +1 -1
- package/build/components/Signup/__tests__/__snapshots__/Signup.test.js.snap +6 -6
- package/build/components/__shared__/BookingSummary/BookingSummary.module.css +3 -3
- package/build/components/__shared__/Card/Card.module.css +16 -15
- package/build/components/__shared__/Field/Field.js +3 -1
- package/build/components/__shared__/Field/Field.js.map +1 -1
- package/build/components/__shared__/Field/Field.module.css +11 -1
- package/build/components/__shared__/FieldOccupation/FieldOccupation.js +3 -6
- package/build/components/__shared__/FieldOccupation/FieldOccupation.js.map +1 -1
- package/build/components/__shared__/FieldOccupation/__tests__/__snapshots__/FieldOccupation.test.js.snap +18 -17
- package/build/components/__shared__/FieldPromocode/FieldPromocode.js +6 -3
- package/build/components/__shared__/FieldPromocode/FieldPromocode.js.map +1 -1
- package/build/components/__shared__/Footer/__tests__/__snapshots__/Footer.test.js.snap +8 -8
- package/build/components/__shared__/Occupation/Occupation.js +6 -4
- package/build/components/__shared__/Occupation/Occupation.js.map +1 -1
- package/build/components/__shared__/Occupation/Occupation.module.css +11 -11
- package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap +44 -44
- package/build/components/__shared__/Payment/__tests__/__snapshots__/Payment.test.js.snap +10 -10
- package/build/components/__shared__/Payment/components/Card/__tests__/__snapshots__/Card.test.js.snap +12 -12
- package/build/components/__shared__/PriceBreakdown/PriceBreakdown.module.css +3 -3
- package/build/components/helpers/ICON.AMENITIES.js +2 -2
- package/build/components/helpers/ICON.AMENITIES.js.map +1 -1
- package/build/components/helpers/__tests__/__snapshots__/parseHtml.test.js.snap +8 -8
- package/build/components/index.js +0 -2
- package/build/components/index.js.map +1 -1
- package/build/contexts/PerformanceManager/PerformanceManager.js +11 -4
- package/build/contexts/PerformanceManager/PerformanceManager.js.map +1 -1
- package/build/contexts/PerformanceManager/helpers/getConsentMode.js +4 -3
- package/build/contexts/PerformanceManager/helpers/getConsentMode.js.map +1 -1
- package/build/helpers/consolidateStore.js +4 -2
- package/build/helpers/consolidateStore.js.map +1 -1
- package/build/theme.css +44 -5
- package/package.json +1 -1
- package/public/App.Container.jsx +1 -1
- package/public/performance/index.html +159 -0
- package/build/components/Chat/Chat.theme.module.css +0 -49
- package/build/components/__shared__/FieldOccupation/FieldOccupation.module.css +0 -5
package/build/components/BannerLoyalty/__tests__/__snapshots__/BannerLoyalty.skeleton.test.js.snap
CHANGED
|
@@ -3,94 +3,93 @@
|
|
|
3
3
|
exports[`<BannerLoyalty>.skeleton inherit:className 1`] = `
|
|
4
4
|
<DocumentFragment>
|
|
5
5
|
<ui-view
|
|
6
|
-
class="view
|
|
7
|
-
style="align-items: stretch;"
|
|
6
|
+
class="view mirai"
|
|
8
7
|
>
|
|
9
8
|
<ui-view
|
|
10
|
-
class="view"
|
|
11
|
-
style="
|
|
9
|
+
class="view row"
|
|
10
|
+
style="justify-content: space-between; padding: 1rem;"
|
|
12
11
|
>
|
|
13
|
-
<ui-
|
|
14
|
-
class="
|
|
12
|
+
<ui-view
|
|
13
|
+
class="view"
|
|
14
|
+
style="gap: 0.25rem;"
|
|
15
15
|
>
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
<ui-text
|
|
17
|
+
class="text headline-1"
|
|
18
|
+
>
|
|
19
|
+
Banner Loyalty
|
|
20
|
+
</ui-text>
|
|
21
|
+
<ui-text
|
|
22
|
+
class="text paragraph"
|
|
23
|
+
>
|
|
24
|
+
Choose CLUB MEMBER rate, join and enjoy Web Bonus, special benefits for members!
|
|
25
|
+
</ui-text>
|
|
26
|
+
</ui-view>
|
|
18
27
|
<ui-text
|
|
19
28
|
class="text paragraph"
|
|
20
29
|
>
|
|
21
|
-
|
|
30
|
+
See loyalty benefits CHECK
|
|
22
31
|
</ui-text>
|
|
23
32
|
</ui-view>
|
|
24
33
|
<ui-view
|
|
25
|
-
class="view"
|
|
26
|
-
style="gap:
|
|
34
|
+
class="view row wide"
|
|
35
|
+
style="gap: 4rem; padding: 1.5rem 1rem;"
|
|
27
36
|
>
|
|
28
37
|
<ui-view
|
|
29
|
-
class="view row
|
|
30
|
-
style="gap:
|
|
38
|
+
class="view row"
|
|
39
|
+
style="gap: 1rem;"
|
|
31
40
|
>
|
|
32
41
|
<ui-view
|
|
33
42
|
class="view"
|
|
34
|
-
style="
|
|
43
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
44
|
+
/>
|
|
45
|
+
<ui-text
|
|
46
|
+
class="text action"
|
|
35
47
|
>
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
5$ reward on your web bookings guaranteed
|
|
44
|
-
</ui-text>
|
|
45
|
-
</ui-view>
|
|
48
|
+
5$ reward on your web bookings guaranteed
|
|
49
|
+
</ui-text>
|
|
50
|
+
</ui-view>
|
|
51
|
+
<ui-view
|
|
52
|
+
class="view row"
|
|
53
|
+
style="gap: 1rem;"
|
|
54
|
+
>
|
|
46
55
|
<ui-view
|
|
47
56
|
class="view"
|
|
48
|
-
style="
|
|
57
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
58
|
+
/>
|
|
59
|
+
<ui-text
|
|
60
|
+
class="text action"
|
|
49
61
|
>
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
5$ reward on your web bookings guaranteed
|
|
58
|
-
</ui-text>
|
|
59
|
-
</ui-view>
|
|
62
|
+
5$ reward on your web bookings guaranteed
|
|
63
|
+
</ui-text>
|
|
64
|
+
</ui-view>
|
|
65
|
+
<ui-view
|
|
66
|
+
class="view row"
|
|
67
|
+
style="gap: 1rem;"
|
|
68
|
+
>
|
|
60
69
|
<ui-view
|
|
61
70
|
class="view"
|
|
62
|
-
style="
|
|
71
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
72
|
+
/>
|
|
73
|
+
<ui-text
|
|
74
|
+
class="text action"
|
|
63
75
|
>
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
5$ reward on your web bookings guaranteed
|
|
72
|
-
</ui-text>
|
|
73
|
-
</ui-view>
|
|
76
|
+
5$ reward on your web bookings guaranteed
|
|
77
|
+
</ui-text>
|
|
78
|
+
</ui-view>
|
|
79
|
+
<ui-view
|
|
80
|
+
class="view row"
|
|
81
|
+
style="gap: 1rem;"
|
|
82
|
+
>
|
|
74
83
|
<ui-view
|
|
75
84
|
class="view"
|
|
76
|
-
style="
|
|
85
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
86
|
+
/>
|
|
87
|
+
<ui-text
|
|
88
|
+
class="text action"
|
|
77
89
|
>
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
style="height: 2rem; width: 2rem;"
|
|
81
|
-
/>
|
|
82
|
-
<ui-text
|
|
83
|
-
class="text action"
|
|
84
|
-
>
|
|
85
|
-
5$ reward on your web bookings guaranteed
|
|
86
|
-
</ui-text>
|
|
87
|
-
</ui-view>
|
|
90
|
+
5$ reward on your web bookings guaranteed
|
|
91
|
+
</ui-text>
|
|
88
92
|
</ui-view>
|
|
89
|
-
<ui-text
|
|
90
|
-
class="text action"
|
|
91
|
-
>
|
|
92
|
-
You will be able to login or sign up in the next step of the booking process. More information
|
|
93
|
-
</ui-text>
|
|
94
93
|
</ui-view>
|
|
95
94
|
</ui-view>
|
|
96
95
|
</DocumentFragment>
|
|
@@ -99,94 +98,93 @@ exports[`<BannerLoyalty>.skeleton inherit:className 1`] = `
|
|
|
99
98
|
exports[`<BannerLoyalty>.skeleton renders 1`] = `
|
|
100
99
|
<DocumentFragment>
|
|
101
100
|
<ui-view
|
|
102
|
-
class="view
|
|
103
|
-
style="align-items: stretch;"
|
|
101
|
+
class="view"
|
|
104
102
|
>
|
|
105
103
|
<ui-view
|
|
106
|
-
class="view"
|
|
107
|
-
style="
|
|
104
|
+
class="view row"
|
|
105
|
+
style="justify-content: space-between; padding: 1rem;"
|
|
108
106
|
>
|
|
109
|
-
<ui-
|
|
110
|
-
class="
|
|
107
|
+
<ui-view
|
|
108
|
+
class="view"
|
|
109
|
+
style="gap: 0.25rem;"
|
|
111
110
|
>
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
<ui-text
|
|
112
|
+
class="text headline-1"
|
|
113
|
+
>
|
|
114
|
+
Banner Loyalty
|
|
115
|
+
</ui-text>
|
|
116
|
+
<ui-text
|
|
117
|
+
class="text paragraph"
|
|
118
|
+
>
|
|
119
|
+
Choose CLUB MEMBER rate, join and enjoy Web Bonus, special benefits for members!
|
|
120
|
+
</ui-text>
|
|
121
|
+
</ui-view>
|
|
114
122
|
<ui-text
|
|
115
123
|
class="text paragraph"
|
|
116
124
|
>
|
|
117
|
-
|
|
125
|
+
See loyalty benefits CHECK
|
|
118
126
|
</ui-text>
|
|
119
127
|
</ui-view>
|
|
120
128
|
<ui-view
|
|
121
|
-
class="view"
|
|
122
|
-
style="gap:
|
|
129
|
+
class="view row wide"
|
|
130
|
+
style="gap: 4rem; padding: 1.5rem 1rem;"
|
|
123
131
|
>
|
|
124
132
|
<ui-view
|
|
125
|
-
class="view row
|
|
126
|
-
style="gap:
|
|
133
|
+
class="view row"
|
|
134
|
+
style="gap: 1rem;"
|
|
127
135
|
>
|
|
128
136
|
<ui-view
|
|
129
137
|
class="view"
|
|
130
|
-
style="
|
|
138
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
139
|
+
/>
|
|
140
|
+
<ui-text
|
|
141
|
+
class="text action"
|
|
131
142
|
>
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
5$ reward on your web bookings guaranteed
|
|
140
|
-
</ui-text>
|
|
141
|
-
</ui-view>
|
|
143
|
+
5$ reward on your web bookings guaranteed
|
|
144
|
+
</ui-text>
|
|
145
|
+
</ui-view>
|
|
146
|
+
<ui-view
|
|
147
|
+
class="view row"
|
|
148
|
+
style="gap: 1rem;"
|
|
149
|
+
>
|
|
142
150
|
<ui-view
|
|
143
151
|
class="view"
|
|
144
|
-
style="
|
|
152
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
153
|
+
/>
|
|
154
|
+
<ui-text
|
|
155
|
+
class="text action"
|
|
145
156
|
>
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
5$ reward on your web bookings guaranteed
|
|
154
|
-
</ui-text>
|
|
155
|
-
</ui-view>
|
|
157
|
+
5$ reward on your web bookings guaranteed
|
|
158
|
+
</ui-text>
|
|
159
|
+
</ui-view>
|
|
160
|
+
<ui-view
|
|
161
|
+
class="view row"
|
|
162
|
+
style="gap: 1rem;"
|
|
163
|
+
>
|
|
156
164
|
<ui-view
|
|
157
165
|
class="view"
|
|
158
|
-
style="
|
|
166
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
167
|
+
/>
|
|
168
|
+
<ui-text
|
|
169
|
+
class="text action"
|
|
159
170
|
>
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
5$ reward on your web bookings guaranteed
|
|
168
|
-
</ui-text>
|
|
169
|
-
</ui-view>
|
|
171
|
+
5$ reward on your web bookings guaranteed
|
|
172
|
+
</ui-text>
|
|
173
|
+
</ui-view>
|
|
174
|
+
<ui-view
|
|
175
|
+
class="view row"
|
|
176
|
+
style="gap: 1rem;"
|
|
177
|
+
>
|
|
170
178
|
<ui-view
|
|
171
179
|
class="view"
|
|
172
|
-
style="
|
|
180
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
181
|
+
/>
|
|
182
|
+
<ui-text
|
|
183
|
+
class="text action"
|
|
173
184
|
>
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
style="height: 2rem; width: 2rem;"
|
|
177
|
-
/>
|
|
178
|
-
<ui-text
|
|
179
|
-
class="text action"
|
|
180
|
-
>
|
|
181
|
-
5$ reward on your web bookings guaranteed
|
|
182
|
-
</ui-text>
|
|
183
|
-
</ui-view>
|
|
185
|
+
5$ reward on your web bookings guaranteed
|
|
186
|
+
</ui-text>
|
|
184
187
|
</ui-view>
|
|
185
|
-
<ui-text
|
|
186
|
-
class="text action"
|
|
187
|
-
>
|
|
188
|
-
You will be able to login or sign up in the next step of the booking process. More information
|
|
189
|
-
</ui-text>
|
|
190
188
|
</ui-view>
|
|
191
189
|
</ui-view>
|
|
192
190
|
</DocumentFragment>
|
|
@@ -195,95 +193,94 @@ exports[`<BannerLoyalty>.skeleton renders 1`] = `
|
|
|
195
193
|
exports[`<BannerLoyalty>.skeleton testID 1`] = `
|
|
196
194
|
<DocumentFragment>
|
|
197
195
|
<ui-view
|
|
198
|
-
class="view
|
|
196
|
+
class="view"
|
|
199
197
|
data-testid="mirai"
|
|
200
|
-
style="align-items: stretch;"
|
|
201
198
|
>
|
|
202
199
|
<ui-view
|
|
203
|
-
class="view"
|
|
204
|
-
style="
|
|
200
|
+
class="view row"
|
|
201
|
+
style="justify-content: space-between; padding: 1rem;"
|
|
205
202
|
>
|
|
206
|
-
<ui-
|
|
207
|
-
class="
|
|
203
|
+
<ui-view
|
|
204
|
+
class="view"
|
|
205
|
+
style="gap: 0.25rem;"
|
|
208
206
|
>
|
|
209
|
-
|
|
210
|
-
|
|
207
|
+
<ui-text
|
|
208
|
+
class="text headline-1"
|
|
209
|
+
>
|
|
210
|
+
Banner Loyalty
|
|
211
|
+
</ui-text>
|
|
212
|
+
<ui-text
|
|
213
|
+
class="text paragraph"
|
|
214
|
+
>
|
|
215
|
+
Choose CLUB MEMBER rate, join and enjoy Web Bonus, special benefits for members!
|
|
216
|
+
</ui-text>
|
|
217
|
+
</ui-view>
|
|
211
218
|
<ui-text
|
|
212
219
|
class="text paragraph"
|
|
213
220
|
>
|
|
214
|
-
|
|
221
|
+
See loyalty benefits CHECK
|
|
215
222
|
</ui-text>
|
|
216
223
|
</ui-view>
|
|
217
224
|
<ui-view
|
|
218
|
-
class="view"
|
|
219
|
-
style="gap:
|
|
225
|
+
class="view row wide"
|
|
226
|
+
style="gap: 4rem; padding: 1.5rem 1rem;"
|
|
220
227
|
>
|
|
221
228
|
<ui-view
|
|
222
|
-
class="view row
|
|
223
|
-
style="gap:
|
|
229
|
+
class="view row"
|
|
230
|
+
style="gap: 1rem;"
|
|
224
231
|
>
|
|
225
232
|
<ui-view
|
|
226
233
|
class="view"
|
|
227
|
-
style="
|
|
234
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
235
|
+
/>
|
|
236
|
+
<ui-text
|
|
237
|
+
class="text action"
|
|
228
238
|
>
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
5$ reward on your web bookings guaranteed
|
|
237
|
-
</ui-text>
|
|
238
|
-
</ui-view>
|
|
239
|
+
5$ reward on your web bookings guaranteed
|
|
240
|
+
</ui-text>
|
|
241
|
+
</ui-view>
|
|
242
|
+
<ui-view
|
|
243
|
+
class="view row"
|
|
244
|
+
style="gap: 1rem;"
|
|
245
|
+
>
|
|
239
246
|
<ui-view
|
|
240
247
|
class="view"
|
|
241
|
-
style="
|
|
248
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
249
|
+
/>
|
|
250
|
+
<ui-text
|
|
251
|
+
class="text action"
|
|
242
252
|
>
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
5$ reward on your web bookings guaranteed
|
|
251
|
-
</ui-text>
|
|
252
|
-
</ui-view>
|
|
253
|
+
5$ reward on your web bookings guaranteed
|
|
254
|
+
</ui-text>
|
|
255
|
+
</ui-view>
|
|
256
|
+
<ui-view
|
|
257
|
+
class="view row"
|
|
258
|
+
style="gap: 1rem;"
|
|
259
|
+
>
|
|
253
260
|
<ui-view
|
|
254
261
|
class="view"
|
|
255
|
-
style="
|
|
262
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
263
|
+
/>
|
|
264
|
+
<ui-text
|
|
265
|
+
class="text action"
|
|
256
266
|
>
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
5$ reward on your web bookings guaranteed
|
|
265
|
-
</ui-text>
|
|
266
|
-
</ui-view>
|
|
267
|
+
5$ reward on your web bookings guaranteed
|
|
268
|
+
</ui-text>
|
|
269
|
+
</ui-view>
|
|
270
|
+
<ui-view
|
|
271
|
+
class="view row"
|
|
272
|
+
style="gap: 1rem;"
|
|
273
|
+
>
|
|
267
274
|
<ui-view
|
|
268
275
|
class="view"
|
|
269
|
-
style="
|
|
276
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
277
|
+
/>
|
|
278
|
+
<ui-text
|
|
279
|
+
class="text action"
|
|
270
280
|
>
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
style="height: 2rem; width: 2rem;"
|
|
274
|
-
/>
|
|
275
|
-
<ui-text
|
|
276
|
-
class="text action"
|
|
277
|
-
>
|
|
278
|
-
5$ reward on your web bookings guaranteed
|
|
279
|
-
</ui-text>
|
|
280
|
-
</ui-view>
|
|
281
|
+
5$ reward on your web bookings guaranteed
|
|
282
|
+
</ui-text>
|
|
281
283
|
</ui-view>
|
|
282
|
-
<ui-text
|
|
283
|
-
class="text action"
|
|
284
|
-
>
|
|
285
|
-
You will be able to login or sign up in the next step of the booking process. More information
|
|
286
|
-
</ui-text>
|
|
287
284
|
</ui-view>
|
|
288
285
|
</ui-view>
|
|
289
286
|
</DocumentFragment>
|
|
@@ -5,94 +5,93 @@ exports[`<BannerLoyalty> inherit:className 1`] = `<DocumentFragment />`;
|
|
|
5
5
|
exports[`<BannerLoyalty> prop:skeleton 1`] = `
|
|
6
6
|
<DocumentFragment>
|
|
7
7
|
<ui-view
|
|
8
|
-
class="view
|
|
9
|
-
style="align-items: stretch;"
|
|
8
|
+
class="view"
|
|
10
9
|
>
|
|
11
10
|
<ui-view
|
|
12
|
-
class="view"
|
|
13
|
-
style="
|
|
11
|
+
class="view row"
|
|
12
|
+
style="justify-content: space-between; padding: 1rem;"
|
|
14
13
|
>
|
|
15
|
-
<ui-
|
|
16
|
-
class="
|
|
14
|
+
<ui-view
|
|
15
|
+
class="view"
|
|
16
|
+
style="gap: 0.25rem;"
|
|
17
17
|
>
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
<ui-text
|
|
19
|
+
class="text headline-1"
|
|
20
|
+
>
|
|
21
|
+
Banner Loyalty
|
|
22
|
+
</ui-text>
|
|
23
|
+
<ui-text
|
|
24
|
+
class="text paragraph"
|
|
25
|
+
>
|
|
26
|
+
Choose CLUB MEMBER rate, join and enjoy Web Bonus, special benefits for members!
|
|
27
|
+
</ui-text>
|
|
28
|
+
</ui-view>
|
|
20
29
|
<ui-text
|
|
21
30
|
class="text paragraph"
|
|
22
31
|
>
|
|
23
|
-
|
|
32
|
+
See loyalty benefits CHECK
|
|
24
33
|
</ui-text>
|
|
25
34
|
</ui-view>
|
|
26
35
|
<ui-view
|
|
27
|
-
class="view"
|
|
28
|
-
style="gap:
|
|
36
|
+
class="view row wide"
|
|
37
|
+
style="gap: 4rem; padding: 1.5rem 1rem;"
|
|
29
38
|
>
|
|
30
39
|
<ui-view
|
|
31
|
-
class="view row
|
|
32
|
-
style="gap:
|
|
40
|
+
class="view row"
|
|
41
|
+
style="gap: 1rem;"
|
|
33
42
|
>
|
|
34
43
|
<ui-view
|
|
35
44
|
class="view"
|
|
36
|
-
style="
|
|
45
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
46
|
+
/>
|
|
47
|
+
<ui-text
|
|
48
|
+
class="text action"
|
|
37
49
|
>
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
5$ reward on your web bookings guaranteed
|
|
46
|
-
</ui-text>
|
|
47
|
-
</ui-view>
|
|
50
|
+
5$ reward on your web bookings guaranteed
|
|
51
|
+
</ui-text>
|
|
52
|
+
</ui-view>
|
|
53
|
+
<ui-view
|
|
54
|
+
class="view row"
|
|
55
|
+
style="gap: 1rem;"
|
|
56
|
+
>
|
|
48
57
|
<ui-view
|
|
49
58
|
class="view"
|
|
50
|
-
style="
|
|
59
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
60
|
+
/>
|
|
61
|
+
<ui-text
|
|
62
|
+
class="text action"
|
|
51
63
|
>
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
5$ reward on your web bookings guaranteed
|
|
60
|
-
</ui-text>
|
|
61
|
-
</ui-view>
|
|
64
|
+
5$ reward on your web bookings guaranteed
|
|
65
|
+
</ui-text>
|
|
66
|
+
</ui-view>
|
|
67
|
+
<ui-view
|
|
68
|
+
class="view row"
|
|
69
|
+
style="gap: 1rem;"
|
|
70
|
+
>
|
|
62
71
|
<ui-view
|
|
63
72
|
class="view"
|
|
64
|
-
style="
|
|
73
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
74
|
+
/>
|
|
75
|
+
<ui-text
|
|
76
|
+
class="text action"
|
|
65
77
|
>
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
5$ reward on your web bookings guaranteed
|
|
74
|
-
</ui-text>
|
|
75
|
-
</ui-view>
|
|
78
|
+
5$ reward on your web bookings guaranteed
|
|
79
|
+
</ui-text>
|
|
80
|
+
</ui-view>
|
|
81
|
+
<ui-view
|
|
82
|
+
class="view row"
|
|
83
|
+
style="gap: 1rem;"
|
|
84
|
+
>
|
|
76
85
|
<ui-view
|
|
77
86
|
class="view"
|
|
78
|
-
style="
|
|
87
|
+
style="min-height: 2rem; min-width: 2rem;"
|
|
88
|
+
/>
|
|
89
|
+
<ui-text
|
|
90
|
+
class="text action"
|
|
79
91
|
>
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
style="height: 2rem; width: 2rem;"
|
|
83
|
-
/>
|
|
84
|
-
<ui-text
|
|
85
|
-
class="text action"
|
|
86
|
-
>
|
|
87
|
-
5$ reward on your web bookings guaranteed
|
|
88
|
-
</ui-text>
|
|
89
|
-
</ui-view>
|
|
92
|
+
5$ reward on your web bookings guaranteed
|
|
93
|
+
</ui-text>
|
|
90
94
|
</ui-view>
|
|
91
|
-
<ui-text
|
|
92
|
-
class="text action"
|
|
93
|
-
>
|
|
94
|
-
You will be able to login or sign up in the next step of the booking process. More information
|
|
95
|
-
</ui-text>
|
|
96
95
|
</ui-view>
|
|
97
96
|
</ui-view>
|
|
98
97
|
</DocumentFragment>
|
|
@@ -134,8 +134,8 @@ body {
|
|
|
134
134
|
}
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
-
/*
|
|
138
|
-
@media only screen and (max-width:
|
|
137
|
+
/* M */
|
|
138
|
+
@media only screen and (min-width: 481px) and (max-width: 1179px) {
|
|
139
139
|
/* -- <Menu> -------------------------------------------------------------- */
|
|
140
140
|
.menu {
|
|
141
141
|
border-top: solid 1px var(--mirai-ui-content-border);
|
|
@@ -149,7 +149,7 @@ body {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
/* L */
|
|
152
|
-
@media only screen and (min-width:
|
|
152
|
+
@media only screen and (min-width: 1180px) {
|
|
153
153
|
.content > .side {
|
|
154
154
|
max-width: calc(var(--mirai-ui-breakpoint-S) - var(--mirai-ui-space-M) * 4);
|
|
155
155
|
position: sticky;
|