@mirai/core 0.4.22 → 0.4.23
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/components/Booking/__tests__/__snapshots__/Booking.test.js.snap +0 -65
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Information.test.js.snap +4 -4
- package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Menu.test.js.snap +24 -624
- package/build/components/Checkout/__tests__/__snapshots__/Checkout.test.js.snap +0 -32
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Confirmation.test.js.snap +270 -1362
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap +4 -4
- package/build/components/Rates/__tests__/__snapshots__/Rates.test.js.snap +1204 -2244
- package/build/components/Rates/components/Filters/__tests__/__snapshots__/FIlters.Button.test.js.snap +1 -2
- package/build/components/Rates/components/Filters/__tests__/__snapshots__/Filters.test.js.snap +1 -2
- package/build/components/__shared__/BookingDetails/__tests__/__snapshots__/BookingDetails.test.js.snap +9 -174
- package/build/components/__shared__/BookingSummary/_tests__/__snapshots__/BookingSummary.test.js.snap +8 -8
- package/build/components/__shared__/BookingTable/__tests__/__snapshots__/BookingTable.test.js.snap +1 -1
- package/build/components/__shared__/Payment/__tests__/__snapshots__/Payment.test.js.snap +3 -3
- package/build/components/__shared__/PriceBreakdown/__tests__/__snapshots__/PriceBreakdown.test.js.snap +5 -5
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
exports[`<Rates> <Filters.Button> renders 1`] = `
|
|
4
4
|
<DocumentFragment>
|
|
5
5
|
<ui-button
|
|
6
|
-
class="pressable button secondary"
|
|
6
|
+
class="pressable button squared secondary"
|
|
7
7
|
tabindex="0"
|
|
8
8
|
>
|
|
9
9
|
<ui-icon
|
|
@@ -27,7 +27,6 @@ exports[`<Rates> <Filters.Button> renders 1`] = `
|
|
|
27
27
|
/>
|
|
28
28
|
</svg>
|
|
29
29
|
</ui-icon>
|
|
30
|
-
common.label.filters
|
|
31
30
|
</ui-button>
|
|
32
31
|
</DocumentFragment>
|
|
33
32
|
`;
|
package/build/components/Rates/components/Filters/__tests__/__snapshots__/Filters.test.js.snap
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
exports[`<Rates> <Filters> renders 1`] = `
|
|
4
4
|
<DocumentFragment>
|
|
5
5
|
<ui-button
|
|
6
|
-
class="pressable button secondary"
|
|
6
|
+
class="pressable button squared secondary"
|
|
7
7
|
tabindex="0"
|
|
8
8
|
>
|
|
9
9
|
<ui-icon
|
|
@@ -27,7 +27,6 @@ exports[`<Rates> <Filters> renders 1`] = `
|
|
|
27
27
|
/>
|
|
28
28
|
</svg>
|
|
29
29
|
</ui-icon>
|
|
30
|
-
common.label.filters
|
|
31
30
|
</ui-button>
|
|
32
31
|
<ui-modal-overflow
|
|
33
32
|
class="pressable container overflow"
|
|
@@ -6,7 +6,7 @@ exports[`<BookingDetails> inherit:className 1`] = `
|
|
|
6
6
|
class="view mirai"
|
|
7
7
|
>
|
|
8
8
|
<ui-text
|
|
9
|
-
class="text bold
|
|
9
|
+
class="text bold paragraph"
|
|
10
10
|
>
|
|
11
11
|
user.label.booking_details
|
|
12
12
|
</ui-text>
|
|
@@ -175,39 +175,6 @@ exports[`<BookingDetails> inherit:className 1`] = `
|
|
|
175
175
|
</ui-view>
|
|
176
176
|
</ui-view>
|
|
177
177
|
</ui-view>
|
|
178
|
-
<ui-view
|
|
179
|
-
class="view wide"
|
|
180
|
-
>
|
|
181
|
-
<ui-button
|
|
182
|
-
class="pressable button transparent"
|
|
183
|
-
data-testid="button-more"
|
|
184
|
-
tabindex="0"
|
|
185
|
-
>
|
|
186
|
-
<ui-icon
|
|
187
|
-
class="icon headline-3"
|
|
188
|
-
>
|
|
189
|
-
<svg
|
|
190
|
-
fill="currentColor"
|
|
191
|
-
height="1em"
|
|
192
|
-
stroke="currentColor"
|
|
193
|
-
stroke-width="0"
|
|
194
|
-
viewBox="0 0 24 24"
|
|
195
|
-
width="1em"
|
|
196
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
197
|
-
>
|
|
198
|
-
<path
|
|
199
|
-
d="M24 24H0V0h24v24z"
|
|
200
|
-
fill="none"
|
|
201
|
-
opacity=".87"
|
|
202
|
-
/>
|
|
203
|
-
<path
|
|
204
|
-
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"
|
|
205
|
-
/>
|
|
206
|
-
</svg>
|
|
207
|
-
</ui-icon>
|
|
208
|
-
common.action.view_more
|
|
209
|
-
</ui-button>
|
|
210
|
-
</ui-view>
|
|
211
178
|
</ui-view>
|
|
212
179
|
</DocumentFragment>
|
|
213
180
|
`;
|
|
@@ -218,7 +185,7 @@ exports[`<BookingDetails> renders 1`] = `
|
|
|
218
185
|
class="view"
|
|
219
186
|
>
|
|
220
187
|
<ui-text
|
|
221
|
-
class="text bold
|
|
188
|
+
class="text bold paragraph"
|
|
222
189
|
>
|
|
223
190
|
user.label.booking_details
|
|
224
191
|
</ui-text>
|
|
@@ -387,39 +354,6 @@ exports[`<BookingDetails> renders 1`] = `
|
|
|
387
354
|
</ui-view>
|
|
388
355
|
</ui-view>
|
|
389
356
|
</ui-view>
|
|
390
|
-
<ui-view
|
|
391
|
-
class="view wide"
|
|
392
|
-
>
|
|
393
|
-
<ui-button
|
|
394
|
-
class="pressable button transparent"
|
|
395
|
-
data-testid="button-more"
|
|
396
|
-
tabindex="0"
|
|
397
|
-
>
|
|
398
|
-
<ui-icon
|
|
399
|
-
class="icon headline-3"
|
|
400
|
-
>
|
|
401
|
-
<svg
|
|
402
|
-
fill="currentColor"
|
|
403
|
-
height="1em"
|
|
404
|
-
stroke="currentColor"
|
|
405
|
-
stroke-width="0"
|
|
406
|
-
viewBox="0 0 24 24"
|
|
407
|
-
width="1em"
|
|
408
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
409
|
-
>
|
|
410
|
-
<path
|
|
411
|
-
d="M24 24H0V0h24v24z"
|
|
412
|
-
fill="none"
|
|
413
|
-
opacity=".87"
|
|
414
|
-
/>
|
|
415
|
-
<path
|
|
416
|
-
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"
|
|
417
|
-
/>
|
|
418
|
-
</svg>
|
|
419
|
-
</ui-icon>
|
|
420
|
-
common.action.view_more
|
|
421
|
-
</ui-button>
|
|
422
|
-
</ui-view>
|
|
423
357
|
</ui-view>
|
|
424
358
|
</DocumentFragment>
|
|
425
359
|
`;
|
|
@@ -431,7 +365,7 @@ exports[`<BookingDetails> testID 1`] = `
|
|
|
431
365
|
data-testid="mirai"
|
|
432
366
|
>
|
|
433
367
|
<ui-text
|
|
434
|
-
class="text bold
|
|
368
|
+
class="text bold paragraph"
|
|
435
369
|
>
|
|
436
370
|
user.label.booking_details
|
|
437
371
|
</ui-text>
|
|
@@ -600,39 +534,6 @@ exports[`<BookingDetails> testID 1`] = `
|
|
|
600
534
|
</ui-view>
|
|
601
535
|
</ui-view>
|
|
602
536
|
</ui-view>
|
|
603
|
-
<ui-view
|
|
604
|
-
class="view wide"
|
|
605
|
-
>
|
|
606
|
-
<ui-button
|
|
607
|
-
class="pressable button transparent"
|
|
608
|
-
data-testid="button-more"
|
|
609
|
-
tabindex="0"
|
|
610
|
-
>
|
|
611
|
-
<ui-icon
|
|
612
|
-
class="icon headline-3"
|
|
613
|
-
>
|
|
614
|
-
<svg
|
|
615
|
-
fill="currentColor"
|
|
616
|
-
height="1em"
|
|
617
|
-
stroke="currentColor"
|
|
618
|
-
stroke-width="0"
|
|
619
|
-
viewBox="0 0 24 24"
|
|
620
|
-
width="1em"
|
|
621
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
622
|
-
>
|
|
623
|
-
<path
|
|
624
|
-
d="M24 24H0V0h24v24z"
|
|
625
|
-
fill="none"
|
|
626
|
-
opacity=".87"
|
|
627
|
-
/>
|
|
628
|
-
<path
|
|
629
|
-
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"
|
|
630
|
-
/>
|
|
631
|
-
</svg>
|
|
632
|
-
</ui-icon>
|
|
633
|
-
common.action.view_more
|
|
634
|
-
</ui-button>
|
|
635
|
-
</ui-view>
|
|
636
537
|
</ui-view>
|
|
637
538
|
</DocumentFragment>
|
|
638
539
|
`;
|
|
@@ -643,7 +544,7 @@ exports[`<BookingDetails> with a store & expanded 1`] = `
|
|
|
643
544
|
class="view"
|
|
644
545
|
>
|
|
645
546
|
<ui-text
|
|
646
|
-
class="text bold
|
|
547
|
+
class="text bold paragraph"
|
|
647
548
|
>
|
|
648
549
|
user.label.booking_details
|
|
649
550
|
</ui-text>
|
|
@@ -1015,7 +916,7 @@ exports[`<BookingDetails> with a store & expanded 1`] = `
|
|
|
1015
916
|
class="view"
|
|
1016
917
|
>
|
|
1017
918
|
<ui-text
|
|
1018
|
-
class="text bold
|
|
919
|
+
class="text bold paragraph"
|
|
1019
920
|
>
|
|
1020
921
|
common.label.extras
|
|
1021
922
|
</ui-text>
|
|
@@ -1559,7 +1460,7 @@ exports[`<BookingDetails> with a store & expanded 1`] = `
|
|
|
1559
1460
|
class="view"
|
|
1560
1461
|
>
|
|
1561
1462
|
<ui-text
|
|
1562
|
-
class="text bold
|
|
1463
|
+
class="text bold paragraph"
|
|
1563
1464
|
>
|
|
1564
1465
|
common.label.extras
|
|
1565
1466
|
</ui-text>
|
|
@@ -1625,7 +1526,7 @@ exports[`<BookingDetails> with a store & expanded 1`] = `
|
|
|
1625
1526
|
class="view"
|
|
1626
1527
|
>
|
|
1627
1528
|
<ui-text
|
|
1628
|
-
class="text bold
|
|
1529
|
+
class="text bold paragraph"
|
|
1629
1530
|
>
|
|
1630
1531
|
user.label.booking_extras
|
|
1631
1532
|
</ui-text>
|
|
@@ -1936,7 +1837,7 @@ exports[`<BookingDetails> with a store (booking) 1`] = `
|
|
|
1936
1837
|
class="view"
|
|
1937
1838
|
>
|
|
1938
1839
|
<ui-text
|
|
1939
|
-
class="text bold
|
|
1840
|
+
class="text bold paragraph"
|
|
1940
1841
|
>
|
|
1941
1842
|
user.label.booking_details
|
|
1942
1843
|
</ui-text>
|
|
@@ -2105,39 +2006,6 @@ exports[`<BookingDetails> with a store (booking) 1`] = `
|
|
|
2105
2006
|
</ui-view>
|
|
2106
2007
|
</ui-view>
|
|
2107
2008
|
</ui-view>
|
|
2108
|
-
<ui-view
|
|
2109
|
-
class="view wide"
|
|
2110
|
-
>
|
|
2111
|
-
<ui-button
|
|
2112
|
-
class="pressable button transparent"
|
|
2113
|
-
data-testid="button-more"
|
|
2114
|
-
tabindex="0"
|
|
2115
|
-
>
|
|
2116
|
-
<ui-icon
|
|
2117
|
-
class="icon headline-3"
|
|
2118
|
-
>
|
|
2119
|
-
<svg
|
|
2120
|
-
fill="currentColor"
|
|
2121
|
-
height="1em"
|
|
2122
|
-
stroke="currentColor"
|
|
2123
|
-
stroke-width="0"
|
|
2124
|
-
viewBox="0 0 24 24"
|
|
2125
|
-
width="1em"
|
|
2126
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2127
|
-
>
|
|
2128
|
-
<path
|
|
2129
|
-
d="M24 24H0V0h24v24z"
|
|
2130
|
-
fill="none"
|
|
2131
|
-
opacity=".87"
|
|
2132
|
-
/>
|
|
2133
|
-
<path
|
|
2134
|
-
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"
|
|
2135
|
-
/>
|
|
2136
|
-
</svg>
|
|
2137
|
-
</ui-icon>
|
|
2138
|
-
common.action.view_more
|
|
2139
|
-
</ui-button>
|
|
2140
|
-
</ui-view>
|
|
2141
2009
|
</ui-view>
|
|
2142
2010
|
</DocumentFragment>
|
|
2143
2011
|
`;
|
|
@@ -2148,7 +2016,7 @@ exports[`<BookingDetails> with a store (checkout) 1`] = `
|
|
|
2148
2016
|
class="view"
|
|
2149
2017
|
>
|
|
2150
2018
|
<ui-text
|
|
2151
|
-
class="text bold
|
|
2019
|
+
class="text bold paragraph"
|
|
2152
2020
|
>
|
|
2153
2021
|
user.label.booking_details
|
|
2154
2022
|
</ui-text>
|
|
@@ -2317,39 +2185,6 @@ exports[`<BookingDetails> with a store (checkout) 1`] = `
|
|
|
2317
2185
|
</ui-view>
|
|
2318
2186
|
</ui-view>
|
|
2319
2187
|
</ui-view>
|
|
2320
|
-
<ui-view
|
|
2321
|
-
class="view wide"
|
|
2322
|
-
>
|
|
2323
|
-
<ui-button
|
|
2324
|
-
class="pressable button transparent"
|
|
2325
|
-
data-testid="button-more"
|
|
2326
|
-
tabindex="0"
|
|
2327
|
-
>
|
|
2328
|
-
<ui-icon
|
|
2329
|
-
class="icon headline-3"
|
|
2330
|
-
>
|
|
2331
|
-
<svg
|
|
2332
|
-
fill="currentColor"
|
|
2333
|
-
height="1em"
|
|
2334
|
-
stroke="currentColor"
|
|
2335
|
-
stroke-width="0"
|
|
2336
|
-
viewBox="0 0 24 24"
|
|
2337
|
-
width="1em"
|
|
2338
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
2339
|
-
>
|
|
2340
|
-
<path
|
|
2341
|
-
d="M24 24H0V0h24v24z"
|
|
2342
|
-
fill="none"
|
|
2343
|
-
opacity=".87"
|
|
2344
|
-
/>
|
|
2345
|
-
<path
|
|
2346
|
-
d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"
|
|
2347
|
-
/>
|
|
2348
|
-
</svg>
|
|
2349
|
-
</ui-icon>
|
|
2350
|
-
common.action.view_more
|
|
2351
|
-
</ui-button>
|
|
2352
|
-
</ui-view>
|
|
2353
2188
|
</ui-view>
|
|
2354
2189
|
</DocumentFragment>
|
|
2355
2190
|
`;
|
|
@@ -9,7 +9,7 @@ exports[`<BookingSummary> inherit:className 1`] = `
|
|
|
9
9
|
class="view"
|
|
10
10
|
>
|
|
11
11
|
<ui-text
|
|
12
|
-
class="text bold
|
|
12
|
+
class="text bold paragraph"
|
|
13
13
|
>
|
|
14
14
|
user.label.booking_summary
|
|
15
15
|
</ui-text>
|
|
@@ -109,7 +109,7 @@ exports[`<BookingSummary> inherit:className 1`] = `
|
|
|
109
109
|
class="view"
|
|
110
110
|
>
|
|
111
111
|
<ui-text
|
|
112
|
-
class="text bold
|
|
112
|
+
class="text bold paragraph"
|
|
113
113
|
>
|
|
114
114
|
user.label.price_summary
|
|
115
115
|
</ui-text>
|
|
@@ -187,7 +187,7 @@ exports[`<BookingSummary> renders 1`] = `
|
|
|
187
187
|
class="view"
|
|
188
188
|
>
|
|
189
189
|
<ui-text
|
|
190
|
-
class="text bold
|
|
190
|
+
class="text bold paragraph"
|
|
191
191
|
>
|
|
192
192
|
user.label.booking_summary
|
|
193
193
|
</ui-text>
|
|
@@ -287,7 +287,7 @@ exports[`<BookingSummary> renders 1`] = `
|
|
|
287
287
|
class="view"
|
|
288
288
|
>
|
|
289
289
|
<ui-text
|
|
290
|
-
class="text bold
|
|
290
|
+
class="text bold paragraph"
|
|
291
291
|
>
|
|
292
292
|
user.label.price_summary
|
|
293
293
|
</ui-text>
|
|
@@ -366,7 +366,7 @@ exports[`<BookingSummary> testID 1`] = `
|
|
|
366
366
|
class="view"
|
|
367
367
|
>
|
|
368
368
|
<ui-text
|
|
369
|
-
class="text bold
|
|
369
|
+
class="text bold paragraph"
|
|
370
370
|
>
|
|
371
371
|
user.label.booking_summary
|
|
372
372
|
</ui-text>
|
|
@@ -466,7 +466,7 @@ exports[`<BookingSummary> testID 1`] = `
|
|
|
466
466
|
class="view"
|
|
467
467
|
>
|
|
468
468
|
<ui-text
|
|
469
|
-
class="text bold
|
|
469
|
+
class="text bold paragraph"
|
|
470
470
|
>
|
|
471
471
|
user.label.price_summary
|
|
472
472
|
</ui-text>
|
|
@@ -544,7 +544,7 @@ exports[`<BookingSummary> with a store 1`] = `
|
|
|
544
544
|
class="view"
|
|
545
545
|
>
|
|
546
546
|
<ui-text
|
|
547
|
-
class="text bold
|
|
547
|
+
class="text bold paragraph"
|
|
548
548
|
>
|
|
549
549
|
user.label.booking_summary
|
|
550
550
|
</ui-text>
|
|
@@ -644,7 +644,7 @@ exports[`<BookingSummary> with a store 1`] = `
|
|
|
644
644
|
class="view"
|
|
645
645
|
>
|
|
646
646
|
<ui-text
|
|
647
|
-
class="text bold
|
|
647
|
+
class="text bold paragraph"
|
|
648
648
|
>
|
|
649
649
|
user.label.price_summary
|
|
650
650
|
</ui-text>
|
|
@@ -14,7 +14,7 @@ exports[`<Payment> inherit:className 1`] = `
|
|
|
14
14
|
disabled="true"
|
|
15
15
|
>
|
|
16
16
|
<ui-text
|
|
17
|
-
class="text bold
|
|
17
|
+
class="text bold paragraph"
|
|
18
18
|
data-testid="payments-text-CARD"
|
|
19
19
|
>
|
|
20
20
|
payments.label.card
|
|
@@ -190,7 +190,7 @@ exports[`<Payment> renders 1`] = `
|
|
|
190
190
|
disabled="true"
|
|
191
191
|
>
|
|
192
192
|
<ui-text
|
|
193
|
-
class="text bold
|
|
193
|
+
class="text bold paragraph"
|
|
194
194
|
data-testid="payments-text-CARD"
|
|
195
195
|
>
|
|
196
196
|
payments.label.card
|
|
@@ -651,7 +651,7 @@ exports[`<Payment> testID with one method 1`] = `
|
|
|
651
651
|
disabled="true"
|
|
652
652
|
>
|
|
653
653
|
<ui-text
|
|
654
|
-
class="text bold
|
|
654
|
+
class="text bold paragraph"
|
|
655
655
|
data-testid="mirai-text-CARD"
|
|
656
656
|
>
|
|
657
657
|
payments.label.card
|
|
@@ -6,7 +6,7 @@ exports[`<PriceBreakdown> inherit:className 1`] = `
|
|
|
6
6
|
class="view mirai"
|
|
7
7
|
>
|
|
8
8
|
<ui-text
|
|
9
|
-
class="text bold
|
|
9
|
+
class="text bold paragraph"
|
|
10
10
|
>
|
|
11
11
|
user.label.price_summary
|
|
12
12
|
</ui-text>
|
|
@@ -52,7 +52,7 @@ exports[`<PriceBreakdown> prop:children 1`] = `
|
|
|
52
52
|
class="view"
|
|
53
53
|
>
|
|
54
54
|
<ui-text
|
|
55
|
-
class="text bold
|
|
55
|
+
class="text bold paragraph"
|
|
56
56
|
>
|
|
57
57
|
user.label.price_summary
|
|
58
58
|
</ui-text>
|
|
@@ -99,7 +99,7 @@ exports[`<PriceBreakdown> prop:dataSource 1`] = `
|
|
|
99
99
|
class="view"
|
|
100
100
|
>
|
|
101
101
|
<ui-text
|
|
102
|
-
class="text bold
|
|
102
|
+
class="text bold paragraph"
|
|
103
103
|
>
|
|
104
104
|
user.label.price_summary
|
|
105
105
|
</ui-text>
|
|
@@ -249,7 +249,7 @@ exports[`<PriceBreakdown> renders 1`] = `
|
|
|
249
249
|
class="view"
|
|
250
250
|
>
|
|
251
251
|
<ui-text
|
|
252
|
-
class="text bold
|
|
252
|
+
class="text bold paragraph"
|
|
253
253
|
>
|
|
254
254
|
user.label.price_summary
|
|
255
255
|
</ui-text>
|
|
@@ -296,7 +296,7 @@ exports[`<PriceBreakdown> testID 1`] = `
|
|
|
296
296
|
data-testid="mirai"
|
|
297
297
|
>
|
|
298
298
|
<ui-text
|
|
299
|
-
class="text bold
|
|
299
|
+
class="text bold paragraph"
|
|
300
300
|
>
|
|
301
301
|
user.label.price_summary
|
|
302
302
|
</ui-text>
|