@mirai/core 0.4.16 → 0.4.18
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/contexts/PerformanceManager/providers/analytics/bookingCancel.js +2 -1
- package/build/contexts/PerformanceManager/providers/analytics/bookingCancel.js.map +1 -1
- package/build/contexts/PerformanceManager/providers/analytics/helpers/parseItems.js +12 -5
- package/build/contexts/PerformanceManager/providers/analytics/helpers/parseItems.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/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
|
@@ -256,7 +256,7 @@ exports[`<Booking> inherit:className 1`] = `
|
|
|
256
256
|
common.label.all_rights_reserved
|
|
257
257
|
</ui-text>
|
|
258
258
|
</ui-view>
|
|
259
|
-
<a
|
|
259
|
+
<ui-a
|
|
260
260
|
class="pressable action small"
|
|
261
261
|
href="https://www.mirai.com/"
|
|
262
262
|
tabindex="0"
|
|
@@ -267,7 +267,7 @@ exports[`<Booking> inherit:className 1`] = `
|
|
|
267
267
|
>
|
|
268
268
|
mirai
|
|
269
269
|
</ui-text>
|
|
270
|
-
</a>
|
|
270
|
+
</ui-a>
|
|
271
271
|
</ui-view>
|
|
272
272
|
</ui-view>
|
|
273
273
|
</DocumentFragment>
|
|
@@ -529,7 +529,7 @@ exports[`<Booking> prop:skeleton 1`] = `
|
|
|
529
529
|
common.label.all_rights_reserved
|
|
530
530
|
</ui-text>
|
|
531
531
|
</ui-view>
|
|
532
|
-
<a
|
|
532
|
+
<ui-a
|
|
533
533
|
class="pressable action small"
|
|
534
534
|
href="https://www.mirai.com/"
|
|
535
535
|
tabindex="0"
|
|
@@ -540,7 +540,7 @@ exports[`<Booking> prop:skeleton 1`] = `
|
|
|
540
540
|
>
|
|
541
541
|
mirai
|
|
542
542
|
</ui-text>
|
|
543
|
-
</a>
|
|
543
|
+
</ui-a>
|
|
544
544
|
</ui-view>
|
|
545
545
|
</ui-view>
|
|
546
546
|
</DocumentFragment>
|
|
@@ -802,7 +802,7 @@ exports[`<Booking> renders 1`] = `
|
|
|
802
802
|
common.label.all_rights_reserved
|
|
803
803
|
</ui-text>
|
|
804
804
|
</ui-view>
|
|
805
|
-
<a
|
|
805
|
+
<ui-a
|
|
806
806
|
class="pressable action small"
|
|
807
807
|
href="https://www.mirai.com/"
|
|
808
808
|
tabindex="0"
|
|
@@ -813,7 +813,7 @@ exports[`<Booking> renders 1`] = `
|
|
|
813
813
|
>
|
|
814
814
|
mirai
|
|
815
815
|
</ui-text>
|
|
816
|
-
</a>
|
|
816
|
+
</ui-a>
|
|
817
817
|
</ui-view>
|
|
818
818
|
</ui-view>
|
|
819
819
|
</DocumentFragment>
|
|
@@ -1076,7 +1076,7 @@ exports[`<Booking> testID 1`] = `
|
|
|
1076
1076
|
common.label.all_rights_reserved
|
|
1077
1077
|
</ui-text>
|
|
1078
1078
|
</ui-view>
|
|
1079
|
-
<a
|
|
1079
|
+
<ui-a
|
|
1080
1080
|
class="pressable action small"
|
|
1081
1081
|
href="https://www.mirai.com/"
|
|
1082
1082
|
tabindex="0"
|
|
@@ -1087,7 +1087,7 @@ exports[`<Booking> testID 1`] = `
|
|
|
1087
1087
|
>
|
|
1088
1088
|
mirai
|
|
1089
1089
|
</ui-text>
|
|
1090
|
-
</a>
|
|
1090
|
+
</ui-a>
|
|
1091
1091
|
</ui-view>
|
|
1092
1092
|
</ui-view>
|
|
1093
1093
|
</DocumentFragment>
|
|
@@ -1349,7 +1349,7 @@ exports[`<Booking> with a store 1`] = `
|
|
|
1349
1349
|
common.label.all_rights_reserved
|
|
1350
1350
|
</ui-text>
|
|
1351
1351
|
</ui-view>
|
|
1352
|
-
<a
|
|
1352
|
+
<ui-a
|
|
1353
1353
|
class="pressable action small"
|
|
1354
1354
|
href="https://www.mirai.com/"
|
|
1355
1355
|
tabindex="0"
|
|
@@ -1360,7 +1360,7 @@ exports[`<Booking> with a store 1`] = `
|
|
|
1360
1360
|
>
|
|
1361
1361
|
mirai
|
|
1362
1362
|
</ui-text>
|
|
1363
|
-
</a>
|
|
1363
|
+
</ui-a>
|
|
1364
1364
|
</ui-view>
|
|
1365
1365
|
</ui-view>
|
|
1366
1366
|
</DocumentFragment>
|
|
@@ -55,7 +55,7 @@ exports[`<BookingQuery> Using ghost feature renders 1`] = `
|
|
|
55
55
|
</ui-icon>
|
|
56
56
|
</ui-button>
|
|
57
57
|
</ui-view>
|
|
58
|
-
<form>
|
|
58
|
+
<ui-form>
|
|
59
59
|
<ui-text
|
|
60
60
|
class="text paragraph"
|
|
61
61
|
>
|
|
@@ -167,7 +167,7 @@ exports[`<BookingQuery> Using ghost feature renders 1`] = `
|
|
|
167
167
|
>
|
|
168
168
|
common.label.reservation_code_description
|
|
169
169
|
</ui-text>
|
|
170
|
-
</form>
|
|
170
|
+
</ui-form>
|
|
171
171
|
</ui-modal>
|
|
172
172
|
</ui-modal-overflow>
|
|
173
173
|
</DocumentFragment>
|
|
@@ -228,7 +228,7 @@ exports[`<BookingQuery> Using ghost feature with a store using ghost feature 1`]
|
|
|
228
228
|
</ui-icon>
|
|
229
229
|
</ui-button>
|
|
230
230
|
</ui-view>
|
|
231
|
-
<form>
|
|
231
|
+
<ui-form>
|
|
232
232
|
<ui-text
|
|
233
233
|
class="text paragraph"
|
|
234
234
|
>
|
|
@@ -340,7 +340,7 @@ exports[`<BookingQuery> Using ghost feature with a store using ghost feature 1`]
|
|
|
340
340
|
>
|
|
341
341
|
common.label.reservation_code_description
|
|
342
342
|
</ui-text>
|
|
343
|
-
</form>
|
|
343
|
+
</ui-form>
|
|
344
344
|
</ui-modal>
|
|
345
345
|
</ui-modal-overflow>
|
|
346
346
|
</DocumentFragment>
|
|
@@ -401,7 +401,7 @@ exports[`<BookingQuery> inherit:className 1`] = `
|
|
|
401
401
|
</ui-icon>
|
|
402
402
|
</ui-button>
|
|
403
403
|
</ui-view>
|
|
404
|
-
<form>
|
|
404
|
+
<ui-form>
|
|
405
405
|
<ui-text
|
|
406
406
|
class="text paragraph"
|
|
407
407
|
>
|
|
@@ -513,7 +513,7 @@ exports[`<BookingQuery> inherit:className 1`] = `
|
|
|
513
513
|
>
|
|
514
514
|
common.label.reservation_code_description
|
|
515
515
|
</ui-text>
|
|
516
|
-
</form>
|
|
516
|
+
</ui-form>
|
|
517
517
|
</ui-modal>
|
|
518
518
|
</ui-modal-overflow>
|
|
519
519
|
</DocumentFragment>
|
|
@@ -574,7 +574,7 @@ exports[`<BookingQuery> renders 1`] = `
|
|
|
574
574
|
</ui-icon>
|
|
575
575
|
</ui-button>
|
|
576
576
|
</ui-view>
|
|
577
|
-
<form>
|
|
577
|
+
<ui-form>
|
|
578
578
|
<ui-text
|
|
579
579
|
class="text paragraph"
|
|
580
580
|
>
|
|
@@ -686,7 +686,7 @@ exports[`<BookingQuery> renders 1`] = `
|
|
|
686
686
|
>
|
|
687
687
|
common.label.reservation_code_description
|
|
688
688
|
</ui-text>
|
|
689
|
-
</form>
|
|
689
|
+
</ui-form>
|
|
690
690
|
</ui-modal>
|
|
691
691
|
</ui-modal-overflow>
|
|
692
692
|
</DocumentFragment>
|
|
@@ -751,7 +751,7 @@ exports[`<BookingQuery> testID 1`] = `
|
|
|
751
751
|
</ui-icon>
|
|
752
752
|
</ui-button>
|
|
753
753
|
</ui-view>
|
|
754
|
-
<form
|
|
754
|
+
<ui-form
|
|
755
755
|
data-testid="mirai"
|
|
756
756
|
>
|
|
757
757
|
<ui-text
|
|
@@ -868,7 +868,7 @@ exports[`<BookingQuery> testID 1`] = `
|
|
|
868
868
|
>
|
|
869
869
|
common.label.reservation_code_description
|
|
870
870
|
</ui-text>
|
|
871
|
-
</form>
|
|
871
|
+
</ui-form>
|
|
872
872
|
</ui-modal>
|
|
873
873
|
</ui-modal-overflow>
|
|
874
874
|
</DocumentFragment>
|
|
@@ -929,7 +929,7 @@ exports[`<BookingQuery> with a store 1`] = `
|
|
|
929
929
|
</ui-icon>
|
|
930
930
|
</ui-button>
|
|
931
931
|
</ui-view>
|
|
932
|
-
<form>
|
|
932
|
+
<ui-form>
|
|
933
933
|
<ui-text
|
|
934
934
|
class="text paragraph"
|
|
935
935
|
>
|
|
@@ -1041,7 +1041,7 @@ exports[`<BookingQuery> with a store 1`] = `
|
|
|
1041
1041
|
>
|
|
1042
1042
|
common.label.reservation_code_description
|
|
1043
1043
|
</ui-text>
|
|
1044
|
-
</form>
|
|
1044
|
+
</ui-form>
|
|
1045
1045
|
</ui-modal>
|
|
1046
1046
|
</ui-modal-overflow>
|
|
1047
1047
|
</DocumentFragment>
|
|
@@ -119,7 +119,7 @@ exports[`<ButtonFinder> inherit:className 1`] = `
|
|
|
119
119
|
class="view calendar"
|
|
120
120
|
>
|
|
121
121
|
<ui-scrollview
|
|
122
|
-
class="scrollview snap horizontal scrollview"
|
|
122
|
+
class="scrollview snap horizontal notIndicator scrollview"
|
|
123
123
|
>
|
|
124
124
|
<ui-calendar-month
|
|
125
125
|
class="view month"
|
|
@@ -1338,6 +1338,7 @@ exports[`<ButtonFinder> inherit:className 1`] = `
|
|
|
1338
1338
|
>
|
|
1339
1339
|
<ui-pressable
|
|
1340
1340
|
class="pressable"
|
|
1341
|
+
datasource="[object Object],[object Object]"
|
|
1341
1342
|
tabindex="0"
|
|
1342
1343
|
>
|
|
1343
1344
|
<ui-icon
|
|
@@ -1390,9 +1391,10 @@ exports[`<ButtonFinder> inherit:className 1`] = `
|
|
|
1390
1391
|
<ui-view
|
|
1391
1392
|
centered="true"
|
|
1392
1393
|
class="view"
|
|
1394
|
+
hasplaces="false"
|
|
1393
1395
|
>
|
|
1394
1396
|
<ui-scrollview
|
|
1395
|
-
class="scrollview vertical"
|
|
1397
|
+
class="scrollview vertical notIndicator"
|
|
1396
1398
|
>
|
|
1397
1399
|
<ui-view
|
|
1398
1400
|
class="view wide"
|
|
@@ -1401,7 +1403,7 @@ exports[`<ButtonFinder> inherit:className 1`] = `
|
|
|
1401
1403
|
class="view row"
|
|
1402
1404
|
>
|
|
1403
1405
|
<ui-text
|
|
1404
|
-
class="text action"
|
|
1406
|
+
class="text bold action"
|
|
1405
1407
|
>
|
|
1406
1408
|
finder.label.place_type_count.room
|
|
1407
1409
|
</ui-text>
|
|
@@ -1786,7 +1788,7 @@ exports[`<ButtonFinder> prop:ghost 1`] = `
|
|
|
1786
1788
|
class="view calendar"
|
|
1787
1789
|
>
|
|
1788
1790
|
<ui-scrollview
|
|
1789
|
-
class="scrollview snap horizontal scrollview"
|
|
1791
|
+
class="scrollview snap horizontal notIndicator scrollview"
|
|
1790
1792
|
>
|
|
1791
1793
|
<ui-calendar-month
|
|
1792
1794
|
class="view month"
|
|
@@ -3005,6 +3007,7 @@ exports[`<ButtonFinder> prop:ghost 1`] = `
|
|
|
3005
3007
|
>
|
|
3006
3008
|
<ui-pressable
|
|
3007
3009
|
class="pressable"
|
|
3010
|
+
datasource="[object Object],[object Object]"
|
|
3008
3011
|
tabindex="0"
|
|
3009
3012
|
>
|
|
3010
3013
|
<ui-icon
|
|
@@ -3057,9 +3060,10 @@ exports[`<ButtonFinder> prop:ghost 1`] = `
|
|
|
3057
3060
|
<ui-view
|
|
3058
3061
|
centered="true"
|
|
3059
3062
|
class="view"
|
|
3063
|
+
hasplaces="false"
|
|
3060
3064
|
>
|
|
3061
3065
|
<ui-scrollview
|
|
3062
|
-
class="scrollview vertical"
|
|
3066
|
+
class="scrollview vertical notIndicator"
|
|
3063
3067
|
>
|
|
3064
3068
|
<ui-view
|
|
3065
3069
|
class="view wide"
|
|
@@ -3068,7 +3072,7 @@ exports[`<ButtonFinder> prop:ghost 1`] = `
|
|
|
3068
3072
|
class="view row"
|
|
3069
3073
|
>
|
|
3070
3074
|
<ui-text
|
|
3071
|
-
class="text action"
|
|
3075
|
+
class="text bold action"
|
|
3072
3076
|
>
|
|
3073
3077
|
finder.label.place_type_count.room
|
|
3074
3078
|
</ui-text>
|
|
@@ -3449,7 +3453,7 @@ exports[`<ButtonFinder> prop:text 1`] = `
|
|
|
3449
3453
|
class="view calendar"
|
|
3450
3454
|
>
|
|
3451
3455
|
<ui-scrollview
|
|
3452
|
-
class="scrollview snap horizontal scrollview"
|
|
3456
|
+
class="scrollview snap horizontal notIndicator scrollview"
|
|
3453
3457
|
>
|
|
3454
3458
|
<ui-calendar-month
|
|
3455
3459
|
class="view month"
|
|
@@ -4668,6 +4672,7 @@ exports[`<ButtonFinder> prop:text 1`] = `
|
|
|
4668
4672
|
>
|
|
4669
4673
|
<ui-pressable
|
|
4670
4674
|
class="pressable"
|
|
4675
|
+
datasource="[object Object],[object Object]"
|
|
4671
4676
|
tabindex="0"
|
|
4672
4677
|
>
|
|
4673
4678
|
<ui-icon
|
|
@@ -4720,9 +4725,10 @@ exports[`<ButtonFinder> prop:text 1`] = `
|
|
|
4720
4725
|
<ui-view
|
|
4721
4726
|
centered="true"
|
|
4722
4727
|
class="view"
|
|
4728
|
+
hasplaces="false"
|
|
4723
4729
|
>
|
|
4724
4730
|
<ui-scrollview
|
|
4725
|
-
class="scrollview vertical"
|
|
4731
|
+
class="scrollview vertical notIndicator"
|
|
4726
4732
|
>
|
|
4727
4733
|
<ui-view
|
|
4728
4734
|
class="view wide"
|
|
@@ -4731,7 +4737,7 @@ exports[`<ButtonFinder> prop:text 1`] = `
|
|
|
4731
4737
|
class="view row"
|
|
4732
4738
|
>
|
|
4733
4739
|
<ui-text
|
|
4734
|
-
class="text action"
|
|
4740
|
+
class="text bold action"
|
|
4735
4741
|
>
|
|
4736
4742
|
finder.label.place_type_count.room
|
|
4737
4743
|
</ui-text>
|
|
@@ -5112,7 +5118,7 @@ exports[`<ButtonFinder> renders 1`] = `
|
|
|
5112
5118
|
class="view calendar"
|
|
5113
5119
|
>
|
|
5114
5120
|
<ui-scrollview
|
|
5115
|
-
class="scrollview snap horizontal scrollview"
|
|
5121
|
+
class="scrollview snap horizontal notIndicator scrollview"
|
|
5116
5122
|
>
|
|
5117
5123
|
<ui-calendar-month
|
|
5118
5124
|
class="view month"
|
|
@@ -6331,6 +6337,7 @@ exports[`<ButtonFinder> renders 1`] = `
|
|
|
6331
6337
|
>
|
|
6332
6338
|
<ui-pressable
|
|
6333
6339
|
class="pressable"
|
|
6340
|
+
datasource="[object Object],[object Object]"
|
|
6334
6341
|
tabindex="0"
|
|
6335
6342
|
>
|
|
6336
6343
|
<ui-icon
|
|
@@ -6383,9 +6390,10 @@ exports[`<ButtonFinder> renders 1`] = `
|
|
|
6383
6390
|
<ui-view
|
|
6384
6391
|
centered="true"
|
|
6385
6392
|
class="view"
|
|
6393
|
+
hasplaces="false"
|
|
6386
6394
|
>
|
|
6387
6395
|
<ui-scrollview
|
|
6388
|
-
class="scrollview vertical"
|
|
6396
|
+
class="scrollview vertical notIndicator"
|
|
6389
6397
|
>
|
|
6390
6398
|
<ui-view
|
|
6391
6399
|
class="view wide"
|
|
@@ -6394,7 +6402,7 @@ exports[`<ButtonFinder> renders 1`] = `
|
|
|
6394
6402
|
class="view row"
|
|
6395
6403
|
>
|
|
6396
6404
|
<ui-text
|
|
6397
|
-
class="text action"
|
|
6405
|
+
class="text bold action"
|
|
6398
6406
|
>
|
|
6399
6407
|
finder.label.place_type_count.room
|
|
6400
6408
|
</ui-text>
|
|
@@ -6775,7 +6783,7 @@ exports[`<ButtonFinder> testID 1`] = `
|
|
|
6775
6783
|
class="view calendar"
|
|
6776
6784
|
>
|
|
6777
6785
|
<ui-scrollview
|
|
6778
|
-
class="scrollview snap horizontal scrollview"
|
|
6786
|
+
class="scrollview snap horizontal notIndicator scrollview"
|
|
6779
6787
|
>
|
|
6780
6788
|
<ui-calendar-month
|
|
6781
6789
|
class="view month"
|
|
@@ -7994,6 +8002,7 @@ exports[`<ButtonFinder> testID 1`] = `
|
|
|
7994
8002
|
>
|
|
7995
8003
|
<ui-pressable
|
|
7996
8004
|
class="pressable"
|
|
8005
|
+
datasource="[object Object],[object Object]"
|
|
7997
8006
|
tabindex="0"
|
|
7998
8007
|
>
|
|
7999
8008
|
<ui-icon
|
|
@@ -8046,9 +8055,10 @@ exports[`<ButtonFinder> testID 1`] = `
|
|
|
8046
8055
|
<ui-view
|
|
8047
8056
|
centered="true"
|
|
8048
8057
|
class="view"
|
|
8058
|
+
hasplaces="false"
|
|
8049
8059
|
>
|
|
8050
8060
|
<ui-scrollview
|
|
8051
|
-
class="scrollview vertical"
|
|
8061
|
+
class="scrollview vertical notIndicator"
|
|
8052
8062
|
>
|
|
8053
8063
|
<ui-view
|
|
8054
8064
|
class="view wide"
|
|
@@ -8057,7 +8067,7 @@ exports[`<ButtonFinder> testID 1`] = `
|
|
|
8057
8067
|
class="view row"
|
|
8058
8068
|
>
|
|
8059
8069
|
<ui-text
|
|
8060
|
-
class="text action"
|
|
8070
|
+
class="text bold action"
|
|
8061
8071
|
>
|
|
8062
8072
|
finder.label.place_type_count.room
|
|
8063
8073
|
</ui-text>
|
|
@@ -79,7 +79,7 @@ exports[`<Chat> applies the correct classes based on props 1`] = `
|
|
|
79
79
|
</ui-view>
|
|
80
80
|
</ui-view>
|
|
81
81
|
<ui-scrollview
|
|
82
|
-
class="scrollview vertical"
|
|
82
|
+
class="scrollview vertical notIndicator"
|
|
83
83
|
>
|
|
84
84
|
<ui-view
|
|
85
85
|
class="view wide"
|
|
@@ -237,7 +237,7 @@ exports[`<Chat> inherit:className 1`] = `
|
|
|
237
237
|
</ui-view>
|
|
238
238
|
</ui-view>
|
|
239
239
|
<ui-scrollview
|
|
240
|
-
class="scrollview vertical"
|
|
240
|
+
class="scrollview vertical notIndicator"
|
|
241
241
|
>
|
|
242
242
|
<ui-view
|
|
243
243
|
class="view wide"
|
|
@@ -395,7 +395,7 @@ exports[`<Chat> renders 1`] = `
|
|
|
395
395
|
</ui-view>
|
|
396
396
|
</ui-view>
|
|
397
397
|
<ui-scrollview
|
|
398
|
-
class="scrollview vertical"
|
|
398
|
+
class="scrollview vertical notIndicator"
|
|
399
399
|
>
|
|
400
400
|
<ui-view
|
|
401
401
|
class="view wide"
|
|
@@ -554,7 +554,7 @@ exports[`<Chat> testID 1`] = `
|
|
|
554
554
|
</ui-view>
|
|
555
555
|
</ui-view>
|
|
556
556
|
<ui-scrollview
|
|
557
|
-
class="scrollview vertical"
|
|
557
|
+
class="scrollview vertical notIndicator"
|
|
558
558
|
>
|
|
559
559
|
<ui-view
|
|
560
560
|
class="view wide"
|
|
@@ -103,8 +103,8 @@ body {
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
/*
|
|
107
|
-
@media only screen and (max-width:
|
|
106
|
+
/* M */
|
|
107
|
+
@media only screen and (min-width: 481px) and (max-width: 1179px) {
|
|
108
108
|
.content {
|
|
109
109
|
flex-direction: column;
|
|
110
110
|
}
|
|
@@ -127,7 +127,7 @@ body {
|
|
|
127
127
|
}
|
|
128
128
|
|
|
129
129
|
/* L */
|
|
130
|
-
@media only screen and (min-width:
|
|
130
|
+
@media only screen and (min-width: 1180px) {
|
|
131
131
|
.modal {
|
|
132
132
|
max-width: calc(var(--mirai-ui-breakpoint-M) * 0.9);
|
|
133
133
|
}
|
|
@@ -239,7 +239,7 @@ exports[`<Checkout> Test A/B variant A 1`] = `
|
|
|
239
239
|
common.label.all_rights_reserved
|
|
240
240
|
</ui-text>
|
|
241
241
|
</ui-view>
|
|
242
|
-
<a
|
|
242
|
+
<ui-a
|
|
243
243
|
class="pressable action small"
|
|
244
244
|
href="https://www.mirai.com/"
|
|
245
245
|
tabindex="0"
|
|
@@ -250,7 +250,7 @@ exports[`<Checkout> Test A/B variant A 1`] = `
|
|
|
250
250
|
>
|
|
251
251
|
mirai
|
|
252
252
|
</ui-text>
|
|
253
|
-
</a>
|
|
253
|
+
</ui-a>
|
|
254
254
|
</ui-view>
|
|
255
255
|
</ui-view>
|
|
256
256
|
</DocumentFragment>
|
|
@@ -495,7 +495,7 @@ exports[`<Checkout> Test A/B variant B 1`] = `
|
|
|
495
495
|
common.label.all_rights_reserved
|
|
496
496
|
</ui-text>
|
|
497
497
|
</ui-view>
|
|
498
|
-
<a
|
|
498
|
+
<ui-a
|
|
499
499
|
class="pressable action small"
|
|
500
500
|
href="https://www.mirai.com/"
|
|
501
501
|
tabindex="0"
|
|
@@ -506,7 +506,7 @@ exports[`<Checkout> Test A/B variant B 1`] = `
|
|
|
506
506
|
>
|
|
507
507
|
mirai
|
|
508
508
|
</ui-text>
|
|
509
|
-
</a>
|
|
509
|
+
</ui-a>
|
|
510
510
|
</ui-view>
|
|
511
511
|
</ui-view>
|
|
512
512
|
</DocumentFragment>
|
|
@@ -751,7 +751,7 @@ exports[`<Checkout> inherit:className 1`] = `
|
|
|
751
751
|
common.label.all_rights_reserved
|
|
752
752
|
</ui-text>
|
|
753
753
|
</ui-view>
|
|
754
|
-
<a
|
|
754
|
+
<ui-a
|
|
755
755
|
class="pressable action small"
|
|
756
756
|
href="https://www.mirai.com/"
|
|
757
757
|
tabindex="0"
|
|
@@ -762,7 +762,7 @@ exports[`<Checkout> inherit:className 1`] = `
|
|
|
762
762
|
>
|
|
763
763
|
mirai
|
|
764
764
|
</ui-text>
|
|
765
|
-
</a>
|
|
765
|
+
</ui-a>
|
|
766
766
|
</ui-view>
|
|
767
767
|
</ui-view>
|
|
768
768
|
</DocumentFragment>
|
|
@@ -1007,7 +1007,7 @@ exports[`<Checkout> prop:session (false) 1`] = `
|
|
|
1007
1007
|
common.label.all_rights_reserved
|
|
1008
1008
|
</ui-text>
|
|
1009
1009
|
</ui-view>
|
|
1010
|
-
<a
|
|
1010
|
+
<ui-a
|
|
1011
1011
|
class="pressable action small"
|
|
1012
1012
|
href="https://www.mirai.com/"
|
|
1013
1013
|
tabindex="0"
|
|
@@ -1018,7 +1018,7 @@ exports[`<Checkout> prop:session (false) 1`] = `
|
|
|
1018
1018
|
>
|
|
1019
1019
|
mirai
|
|
1020
1020
|
</ui-text>
|
|
1021
|
-
</a>
|
|
1021
|
+
</ui-a>
|
|
1022
1022
|
</ui-view>
|
|
1023
1023
|
</ui-view>
|
|
1024
1024
|
</DocumentFragment>
|
|
@@ -1263,7 +1263,7 @@ exports[`<Checkout> prop:skeleton 1`] = `
|
|
|
1263
1263
|
common.label.all_rights_reserved
|
|
1264
1264
|
</ui-text>
|
|
1265
1265
|
</ui-view>
|
|
1266
|
-
<a
|
|
1266
|
+
<ui-a
|
|
1267
1267
|
class="pressable action small"
|
|
1268
1268
|
href="https://www.mirai.com/"
|
|
1269
1269
|
tabindex="0"
|
|
@@ -1274,7 +1274,7 @@ exports[`<Checkout> prop:skeleton 1`] = `
|
|
|
1274
1274
|
>
|
|
1275
1275
|
mirai
|
|
1276
1276
|
</ui-text>
|
|
1277
|
-
</a>
|
|
1277
|
+
</ui-a>
|
|
1278
1278
|
</ui-view>
|
|
1279
1279
|
</ui-view>
|
|
1280
1280
|
</DocumentFragment>
|
|
@@ -1519,7 +1519,7 @@ exports[`<Checkout> renders 1`] = `
|
|
|
1519
1519
|
common.label.all_rights_reserved
|
|
1520
1520
|
</ui-text>
|
|
1521
1521
|
</ui-view>
|
|
1522
|
-
<a
|
|
1522
|
+
<ui-a
|
|
1523
1523
|
class="pressable action small"
|
|
1524
1524
|
href="https://www.mirai.com/"
|
|
1525
1525
|
tabindex="0"
|
|
@@ -1530,7 +1530,7 @@ exports[`<Checkout> renders 1`] = `
|
|
|
1530
1530
|
>
|
|
1531
1531
|
mirai
|
|
1532
1532
|
</ui-text>
|
|
1533
|
-
</a>
|
|
1533
|
+
</ui-a>
|
|
1534
1534
|
</ui-view>
|
|
1535
1535
|
</ui-view>
|
|
1536
1536
|
</DocumentFragment>
|
|
@@ -1776,7 +1776,7 @@ exports[`<Checkout> testID 1`] = `
|
|
|
1776
1776
|
common.label.all_rights_reserved
|
|
1777
1777
|
</ui-text>
|
|
1778
1778
|
</ui-view>
|
|
1779
|
-
<a
|
|
1779
|
+
<ui-a
|
|
1780
1780
|
class="pressable action small"
|
|
1781
1781
|
href="https://www.mirai.com/"
|
|
1782
1782
|
tabindex="0"
|
|
@@ -1787,7 +1787,7 @@ exports[`<Checkout> testID 1`] = `
|
|
|
1787
1787
|
>
|
|
1788
1788
|
mirai
|
|
1789
1789
|
</ui-text>
|
|
1790
|
-
</a>
|
|
1790
|
+
</ui-a>
|
|
1791
1791
|
</ui-view>
|
|
1792
1792
|
</ui-view>
|
|
1793
1793
|
</DocumentFragment>
|
|
@@ -2032,7 +2032,7 @@ exports[`<Checkout> with a store 1`] = `
|
|
|
2032
2032
|
common.label.all_rights_reserved
|
|
2033
2033
|
</ui-text>
|
|
2034
2034
|
</ui-view>
|
|
2035
|
-
<a
|
|
2035
|
+
<ui-a
|
|
2036
2036
|
class="pressable action small"
|
|
2037
2037
|
href="https://www.mirai.com/"
|
|
2038
2038
|
tabindex="0"
|
|
@@ -2043,7 +2043,7 @@ exports[`<Checkout> with a store 1`] = `
|
|
|
2043
2043
|
>
|
|
2044
2044
|
mirai
|
|
2045
2045
|
</ui-text>
|
|
2046
|
-
</a>
|
|
2046
|
+
</ui-a>
|
|
2047
2047
|
</ui-view>
|
|
2048
2048
|
</ui-view>
|
|
2049
2049
|
</DocumentFragment>
|