@mirai/core 0.3.363 → 0.3.364
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/partials/__tests__/__snapshots__/Booking.Modal.test.js.snap +24 -24
- package/build/components/BookingQuery/__tests__/__snapshots__/BookingQuery.test.js.snap +30 -30
- package/build/components/Chat/components/Input/__tests__/__snapshots__/Input.test.jsx.snap +9 -9
- package/build/components/Chat/components/InputRich/__tests__/__snapshots__/InputRich.test.jsx.snap +17 -17
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Confirmation.test.js.snap +30 -24
- package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap +8 -8
- package/build/components/Deals/__tests__/__snapshots__/Deals.Calendar.test.js.snap +6 -6
- package/build/components/Deals/__tests__/__snapshots__/Deals.test.js.snap +95 -70
- package/build/components/Finder/Finder.compact.js +1 -1
- package/build/components/Finder/Finder.compact.js.map +1 -1
- package/build/components/Finder/Finder.js +1 -0
- package/build/components/Finder/Finder.js.map +1 -1
- package/build/components/Finder/Finder.module.css +21 -10
- package/build/components/Finder/__tests__/__snapshots__/Finder.test.js.snap +294 -210
- package/build/components/Finder/components/Calendar/__tests__/__snapshots__/Calendar.test.js.snap +18 -18
- package/build/components/Rates/Rates.js +1 -1
- package/build/components/Rates/Rates.js.map +1 -1
- package/build/components/Rates/components/Filters/Filters.module.css +4 -0
- package/build/components/Rates/components/ModalExtras/ModalExtras.js +0 -1
- package/build/components/Rates/components/ModalExtras/ModalExtras.js.map +1 -1
- package/build/components/Session/__tests__/__snapshots__/Session.test.js.snap +33 -33
- package/build/components/Signup/__tests__/__snapshots__/Signup.test.js.snap +9 -6
- package/build/components/__shared__/BookingDetails/__tests__/__snapshots__/BookingDetails.test.js.snap +10 -10
- package/build/components/__shared__/BookingTerms/__tests__/__snapshots__/BookingTerms.test.js.snap +8 -8
- package/build/components/__shared__/ButtonMore/__tests__/__snapshots__/ButtonMore.test.js.snap +6 -6
- package/build/components/__shared__/ButtonPayment/__tests__/__snapshots__/ButtonPayment.test.js.snap +17 -17
- package/build/components/__shared__/ButtonPayment/components/FormCheckout/__tests__/__snapshots__/FormCheckout.test.js.snap +9 -9
- package/build/components/__shared__/ButtonPayment/components/FormPaycomet/__tests__/__snapshots__/FormPaycomet.test.js.snap +3 -2
- package/build/components/__shared__/Field/__tests__/__snapshots__/Field.test.js.snap +32 -32
- package/build/components/__shared__/FieldOccupation/FieldOccupation.js +3 -0
- package/build/components/__shared__/FieldOccupation/FieldOccupation.js.map +1 -1
- package/build/components/__shared__/FieldOccupation/__tests__/__snapshots__/FieldOccupation.test.js.snap +150 -96
- package/build/components/__shared__/Occupation/Occupation.Group.js +4 -2
- package/build/components/__shared__/Occupation/Occupation.Group.js.map +1 -1
- package/build/components/__shared__/Occupation/Occupation.js +2 -1
- package/build/components/__shared__/Occupation/Occupation.js.map +1 -1
- package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap +258 -168
- package/build/theme.css +2 -0
- package/package.json +1 -1
|
@@ -26,7 +26,7 @@ exports[`component:<Session> Using ghost feature renders 1`] = `
|
|
|
26
26
|
>
|
|
27
27
|
user.label.title_session
|
|
28
28
|
</ui-text>
|
|
29
|
-
<button
|
|
29
|
+
<ui-button
|
|
30
30
|
class="pressable button small squared transparent button"
|
|
31
31
|
tabindex="0"
|
|
32
32
|
>
|
|
@@ -51,7 +51,7 @@ exports[`component:<Session> Using ghost feature renders 1`] = `
|
|
|
51
51
|
/>
|
|
52
52
|
</svg>
|
|
53
53
|
</ui-icon>
|
|
54
|
-
</button>
|
|
54
|
+
</ui-button>
|
|
55
55
|
</ui-view>
|
|
56
56
|
<ui-scrollview
|
|
57
57
|
class="scrollview snap vertical"
|
|
@@ -159,9 +159,9 @@ exports[`component:<Session> Using ghost feature renders 1`] = `
|
|
|
159
159
|
user.action.reset
|
|
160
160
|
</ui-action>
|
|
161
161
|
</ui-view>
|
|
162
|
-
<button
|
|
162
|
+
<ui-button
|
|
163
163
|
class="pressable disabled button large disabled wide"
|
|
164
|
-
disabled=""
|
|
164
|
+
disabled="true"
|
|
165
165
|
type="submit"
|
|
166
166
|
>
|
|
167
167
|
<ui-view
|
|
@@ -176,14 +176,14 @@ exports[`component:<Session> Using ghost feature renders 1`] = `
|
|
|
176
176
|
>
|
|
177
177
|
common.action.login
|
|
178
178
|
</ui-view>
|
|
179
|
-
</button>
|
|
179
|
+
</ui-button>
|
|
180
180
|
</form>
|
|
181
|
-
<button
|
|
181
|
+
<ui-button
|
|
182
182
|
class="pressable button large transparent"
|
|
183
183
|
tabindex="0"
|
|
184
184
|
>
|
|
185
185
|
user.action.signup
|
|
186
|
-
</button>
|
|
186
|
+
</ui-button>
|
|
187
187
|
</ui-view>
|
|
188
188
|
</ui-view>
|
|
189
189
|
</ui-scrollview>
|
|
@@ -280,7 +280,7 @@ exports[`component:<Session> inherit:className 1`] = `
|
|
|
280
280
|
>
|
|
281
281
|
user.label.title_session
|
|
282
282
|
</ui-text>
|
|
283
|
-
<button
|
|
283
|
+
<ui-button
|
|
284
284
|
class="pressable button small squared transparent button"
|
|
285
285
|
tabindex="0"
|
|
286
286
|
>
|
|
@@ -305,7 +305,7 @@ exports[`component:<Session> inherit:className 1`] = `
|
|
|
305
305
|
/>
|
|
306
306
|
</svg>
|
|
307
307
|
</ui-icon>
|
|
308
|
-
</button>
|
|
308
|
+
</ui-button>
|
|
309
309
|
</ui-view>
|
|
310
310
|
<ui-scrollview
|
|
311
311
|
class="scrollview snap vertical"
|
|
@@ -413,9 +413,9 @@ exports[`component:<Session> inherit:className 1`] = `
|
|
|
413
413
|
user.action.reset
|
|
414
414
|
</ui-action>
|
|
415
415
|
</ui-view>
|
|
416
|
-
<button
|
|
416
|
+
<ui-button
|
|
417
417
|
class="pressable disabled button large disabled wide"
|
|
418
|
-
disabled=""
|
|
418
|
+
disabled="true"
|
|
419
419
|
type="submit"
|
|
420
420
|
>
|
|
421
421
|
<ui-view
|
|
@@ -430,14 +430,14 @@ exports[`component:<Session> inherit:className 1`] = `
|
|
|
430
430
|
>
|
|
431
431
|
common.action.login
|
|
432
432
|
</ui-view>
|
|
433
|
-
</button>
|
|
433
|
+
</ui-button>
|
|
434
434
|
</form>
|
|
435
|
-
<button
|
|
435
|
+
<ui-button
|
|
436
436
|
class="pressable button large transparent"
|
|
437
437
|
tabindex="0"
|
|
438
438
|
>
|
|
439
439
|
user.action.signup
|
|
440
|
-
</button>
|
|
440
|
+
</ui-button>
|
|
441
441
|
</ui-view>
|
|
442
442
|
</ui-view>
|
|
443
443
|
</ui-scrollview>
|
|
@@ -502,7 +502,7 @@ exports[`component:<Session> renders 1`] = `
|
|
|
502
502
|
>
|
|
503
503
|
user.label.title_session
|
|
504
504
|
</ui-text>
|
|
505
|
-
<button
|
|
505
|
+
<ui-button
|
|
506
506
|
class="pressable button small squared transparent button"
|
|
507
507
|
tabindex="0"
|
|
508
508
|
>
|
|
@@ -527,7 +527,7 @@ exports[`component:<Session> renders 1`] = `
|
|
|
527
527
|
/>
|
|
528
528
|
</svg>
|
|
529
529
|
</ui-icon>
|
|
530
|
-
</button>
|
|
530
|
+
</ui-button>
|
|
531
531
|
</ui-view>
|
|
532
532
|
<ui-scrollview
|
|
533
533
|
class="scrollview snap vertical"
|
|
@@ -635,9 +635,9 @@ exports[`component:<Session> renders 1`] = `
|
|
|
635
635
|
user.action.reset
|
|
636
636
|
</ui-action>
|
|
637
637
|
</ui-view>
|
|
638
|
-
<button
|
|
638
|
+
<ui-button
|
|
639
639
|
class="pressable disabled button large disabled wide"
|
|
640
|
-
disabled=""
|
|
640
|
+
disabled="true"
|
|
641
641
|
type="submit"
|
|
642
642
|
>
|
|
643
643
|
<ui-view
|
|
@@ -652,14 +652,14 @@ exports[`component:<Session> renders 1`] = `
|
|
|
652
652
|
>
|
|
653
653
|
common.action.login
|
|
654
654
|
</ui-view>
|
|
655
|
-
</button>
|
|
655
|
+
</ui-button>
|
|
656
656
|
</form>
|
|
657
|
-
<button
|
|
657
|
+
<ui-button
|
|
658
658
|
class="pressable button large transparent"
|
|
659
659
|
tabindex="0"
|
|
660
660
|
>
|
|
661
661
|
user.action.signup
|
|
662
|
-
</button>
|
|
662
|
+
</ui-button>
|
|
663
663
|
</ui-view>
|
|
664
664
|
</ui-view>
|
|
665
665
|
</ui-scrollview>
|
|
@@ -724,7 +724,7 @@ exports[`component:<Session> testID 1`] = `
|
|
|
724
724
|
>
|
|
725
725
|
user.label.title_session
|
|
726
726
|
</ui-text>
|
|
727
|
-
<button
|
|
727
|
+
<ui-button
|
|
728
728
|
class="pressable button small squared transparent button"
|
|
729
729
|
tabindex="0"
|
|
730
730
|
>
|
|
@@ -749,7 +749,7 @@ exports[`component:<Session> testID 1`] = `
|
|
|
749
749
|
/>
|
|
750
750
|
</svg>
|
|
751
751
|
</ui-icon>
|
|
752
|
-
</button>
|
|
752
|
+
</ui-button>
|
|
753
753
|
</ui-view>
|
|
754
754
|
<ui-scrollview
|
|
755
755
|
class="scrollview snap vertical"
|
|
@@ -859,9 +859,9 @@ exports[`component:<Session> testID 1`] = `
|
|
|
859
859
|
user.action.reset
|
|
860
860
|
</ui-action>
|
|
861
861
|
</ui-view>
|
|
862
|
-
<button
|
|
862
|
+
<ui-button
|
|
863
863
|
class="pressable disabled button large disabled wide"
|
|
864
|
-
disabled=""
|
|
864
|
+
disabled="true"
|
|
865
865
|
type="submit"
|
|
866
866
|
>
|
|
867
867
|
<ui-view
|
|
@@ -876,14 +876,14 @@ exports[`component:<Session> testID 1`] = `
|
|
|
876
876
|
>
|
|
877
877
|
common.action.login
|
|
878
878
|
</ui-view>
|
|
879
|
-
</button>
|
|
879
|
+
</ui-button>
|
|
880
880
|
</form>
|
|
881
|
-
<button
|
|
881
|
+
<ui-button
|
|
882
882
|
class="pressable button large transparent"
|
|
883
883
|
tabindex="0"
|
|
884
884
|
>
|
|
885
885
|
user.action.signup
|
|
886
|
-
</button>
|
|
886
|
+
</ui-button>
|
|
887
887
|
</ui-view>
|
|
888
888
|
</ui-view>
|
|
889
889
|
</ui-scrollview>
|
|
@@ -993,7 +993,7 @@ exports[`component:<Session> with mode finishing signup 1`] = `
|
|
|
993
993
|
>
|
|
994
994
|
user.label.title_session
|
|
995
995
|
</ui-text>
|
|
996
|
-
<button
|
|
996
|
+
<ui-button
|
|
997
997
|
class="pressable button small squared transparent button"
|
|
998
998
|
tabindex="0"
|
|
999
999
|
>
|
|
@@ -1018,7 +1018,7 @@ exports[`component:<Session> with mode finishing signup 1`] = `
|
|
|
1018
1018
|
/>
|
|
1019
1019
|
</svg>
|
|
1020
1020
|
</ui-icon>
|
|
1021
|
-
</button>
|
|
1021
|
+
</ui-button>
|
|
1022
1022
|
</ui-view>
|
|
1023
1023
|
<ui-scrollview
|
|
1024
1024
|
class="scrollview snap vertical"
|
|
@@ -1170,9 +1170,9 @@ exports[`component:<Session> with mode finishing signup 1`] = `
|
|
|
1170
1170
|
user.action.reset
|
|
1171
1171
|
</ui-action>
|
|
1172
1172
|
</ui-view>
|
|
1173
|
-
<button
|
|
1173
|
+
<ui-button
|
|
1174
1174
|
class="pressable disabled button large disabled wide"
|
|
1175
|
-
disabled=""
|
|
1175
|
+
disabled="true"
|
|
1176
1176
|
type="submit"
|
|
1177
1177
|
>
|
|
1178
1178
|
<ui-view
|
|
@@ -1187,7 +1187,7 @@ exports[`component:<Session> with mode finishing signup 1`] = `
|
|
|
1187
1187
|
>
|
|
1188
1188
|
common.action.login
|
|
1189
1189
|
</ui-view>
|
|
1190
|
-
</button>
|
|
1190
|
+
</ui-button>
|
|
1191
1191
|
</form>
|
|
1192
1192
|
</ui-view>
|
|
1193
1193
|
</ui-view>
|
|
@@ -340,8 +340,9 @@ exports[`component:<Signup> inherit:className 1`] = `
|
|
|
340
340
|
</span>
|
|
341
341
|
</ui-label>
|
|
342
342
|
</ui-input-option>
|
|
343
|
-
<button
|
|
343
|
+
<ui-button
|
|
344
344
|
class="pressable button large wide"
|
|
345
|
+
disabled="false"
|
|
345
346
|
tabindex="0"
|
|
346
347
|
>
|
|
347
348
|
<ui-view
|
|
@@ -356,7 +357,7 @@ exports[`component:<Signup> inherit:className 1`] = `
|
|
|
356
357
|
>
|
|
357
358
|
user.action.signup
|
|
358
359
|
</ui-view>
|
|
359
|
-
</button>
|
|
360
|
+
</ui-button>
|
|
360
361
|
</form>
|
|
361
362
|
</ui-view>
|
|
362
363
|
</DocumentFragment>
|
|
@@ -700,8 +701,9 @@ exports[`component:<Signup> renders 1`] = `
|
|
|
700
701
|
</span>
|
|
701
702
|
</ui-label>
|
|
702
703
|
</ui-input-option>
|
|
703
|
-
<button
|
|
704
|
+
<ui-button
|
|
704
705
|
class="pressable button large wide"
|
|
706
|
+
disabled="false"
|
|
705
707
|
tabindex="0"
|
|
706
708
|
>
|
|
707
709
|
<ui-view
|
|
@@ -716,7 +718,7 @@ exports[`component:<Signup> renders 1`] = `
|
|
|
716
718
|
>
|
|
717
719
|
user.action.signup
|
|
718
720
|
</ui-view>
|
|
719
|
-
</button>
|
|
721
|
+
</ui-button>
|
|
720
722
|
</form>
|
|
721
723
|
</ui-view>
|
|
722
724
|
</DocumentFragment>
|
|
@@ -1062,8 +1064,9 @@ exports[`component:<Signup> testID 1`] = `
|
|
|
1062
1064
|
</span>
|
|
1063
1065
|
</ui-label>
|
|
1064
1066
|
</ui-input-option>
|
|
1065
|
-
<button
|
|
1067
|
+
<ui-button
|
|
1066
1068
|
class="pressable button large wide"
|
|
1069
|
+
disabled="false"
|
|
1067
1070
|
tabindex="0"
|
|
1068
1071
|
>
|
|
1069
1072
|
<ui-view
|
|
@@ -1078,7 +1081,7 @@ exports[`component:<Signup> testID 1`] = `
|
|
|
1078
1081
|
>
|
|
1079
1082
|
user.action.signup
|
|
1080
1083
|
</ui-view>
|
|
1081
|
-
</button>
|
|
1084
|
+
</ui-button>
|
|
1082
1085
|
</form>
|
|
1083
1086
|
</ui-view>
|
|
1084
1087
|
</DocumentFragment>
|
|
@@ -178,7 +178,7 @@ exports[`component:<BookingDetails> inherit:className 1`] = `
|
|
|
178
178
|
<ui-view
|
|
179
179
|
class="view wide"
|
|
180
180
|
>
|
|
181
|
-
<button
|
|
181
|
+
<ui-button
|
|
182
182
|
class="pressable button transparent"
|
|
183
183
|
tabindex="0"
|
|
184
184
|
>
|
|
@@ -205,7 +205,7 @@ exports[`component:<BookingDetails> inherit:className 1`] = `
|
|
|
205
205
|
</svg>
|
|
206
206
|
</ui-icon>
|
|
207
207
|
common.action.view_more
|
|
208
|
-
</button>
|
|
208
|
+
</ui-button>
|
|
209
209
|
</ui-view>
|
|
210
210
|
</ui-view>
|
|
211
211
|
</DocumentFragment>
|
|
@@ -389,7 +389,7 @@ exports[`component:<BookingDetails> renders 1`] = `
|
|
|
389
389
|
<ui-view
|
|
390
390
|
class="view wide"
|
|
391
391
|
>
|
|
392
|
-
<button
|
|
392
|
+
<ui-button
|
|
393
393
|
class="pressable button transparent"
|
|
394
394
|
tabindex="0"
|
|
395
395
|
>
|
|
@@ -416,7 +416,7 @@ exports[`component:<BookingDetails> renders 1`] = `
|
|
|
416
416
|
</svg>
|
|
417
417
|
</ui-icon>
|
|
418
418
|
common.action.view_more
|
|
419
|
-
</button>
|
|
419
|
+
</ui-button>
|
|
420
420
|
</ui-view>
|
|
421
421
|
</ui-view>
|
|
422
422
|
</DocumentFragment>
|
|
@@ -601,7 +601,7 @@ exports[`component:<BookingDetails> testID 1`] = `
|
|
|
601
601
|
<ui-view
|
|
602
602
|
class="view wide"
|
|
603
603
|
>
|
|
604
|
-
<button
|
|
604
|
+
<ui-button
|
|
605
605
|
class="pressable button transparent"
|
|
606
606
|
tabindex="0"
|
|
607
607
|
>
|
|
@@ -628,7 +628,7 @@ exports[`component:<BookingDetails> testID 1`] = `
|
|
|
628
628
|
</svg>
|
|
629
629
|
</ui-icon>
|
|
630
630
|
common.action.view_more
|
|
631
|
-
</button>
|
|
631
|
+
</ui-button>
|
|
632
632
|
</ui-view>
|
|
633
633
|
</ui-view>
|
|
634
634
|
</DocumentFragment>
|
|
@@ -2105,7 +2105,7 @@ exports[`component:<BookingDetails> with a store (booking) 1`] = `
|
|
|
2105
2105
|
<ui-view
|
|
2106
2106
|
class="view wide"
|
|
2107
2107
|
>
|
|
2108
|
-
<button
|
|
2108
|
+
<ui-button
|
|
2109
2109
|
class="pressable button transparent"
|
|
2110
2110
|
tabindex="0"
|
|
2111
2111
|
>
|
|
@@ -2132,7 +2132,7 @@ exports[`component:<BookingDetails> with a store (booking) 1`] = `
|
|
|
2132
2132
|
</svg>
|
|
2133
2133
|
</ui-icon>
|
|
2134
2134
|
common.action.view_more
|
|
2135
|
-
</button>
|
|
2135
|
+
</ui-button>
|
|
2136
2136
|
</ui-view>
|
|
2137
2137
|
</ui-view>
|
|
2138
2138
|
</DocumentFragment>
|
|
@@ -2316,7 +2316,7 @@ exports[`component:<BookingDetails> with a store (checkout) 1`] = `
|
|
|
2316
2316
|
<ui-view
|
|
2317
2317
|
class="view wide"
|
|
2318
2318
|
>
|
|
2319
|
-
<button
|
|
2319
|
+
<ui-button
|
|
2320
2320
|
class="pressable button transparent"
|
|
2321
2321
|
tabindex="0"
|
|
2322
2322
|
>
|
|
@@ -2343,7 +2343,7 @@ exports[`component:<BookingDetails> with a store (checkout) 1`] = `
|
|
|
2343
2343
|
</svg>
|
|
2344
2344
|
</ui-icon>
|
|
2345
2345
|
common.action.view_more
|
|
2346
|
-
</button>
|
|
2346
|
+
</ui-button>
|
|
2347
2347
|
</ui-view>
|
|
2348
2348
|
</ui-view>
|
|
2349
2349
|
</DocumentFragment>
|
package/build/components/__shared__/BookingTerms/__tests__/__snapshots__/BookingTerms.test.js.snap
CHANGED
|
@@ -70,7 +70,7 @@ exports[`component:<BookingTerms> inherit:className 1`] = `
|
|
|
70
70
|
>
|
|
71
71
|
common.label.cancellation_policy
|
|
72
72
|
</ui-text>
|
|
73
|
-
<button
|
|
73
|
+
<ui-button
|
|
74
74
|
class="pressable button small squared transparent button"
|
|
75
75
|
tabindex="0"
|
|
76
76
|
>
|
|
@@ -95,7 +95,7 @@ exports[`component:<BookingTerms> inherit:className 1`] = `
|
|
|
95
95
|
/>
|
|
96
96
|
</svg>
|
|
97
97
|
</ui-icon>
|
|
98
|
-
</button>
|
|
98
|
+
</ui-button>
|
|
99
99
|
</ui-view>
|
|
100
100
|
<ui-text
|
|
101
101
|
class="text paragraph"
|
|
@@ -182,7 +182,7 @@ exports[`component:<BookingTerms> renders 1`] = `
|
|
|
182
182
|
>
|
|
183
183
|
common.label.cancellation_policy
|
|
184
184
|
</ui-text>
|
|
185
|
-
<button
|
|
185
|
+
<ui-button
|
|
186
186
|
class="pressable button small squared transparent button"
|
|
187
187
|
tabindex="0"
|
|
188
188
|
>
|
|
@@ -207,7 +207,7 @@ exports[`component:<BookingTerms> renders 1`] = `
|
|
|
207
207
|
/>
|
|
208
208
|
</svg>
|
|
209
209
|
</ui-icon>
|
|
210
|
-
</button>
|
|
210
|
+
</ui-button>
|
|
211
211
|
</ui-view>
|
|
212
212
|
<ui-text
|
|
213
213
|
class="text paragraph"
|
|
@@ -295,7 +295,7 @@ exports[`component:<BookingTerms> testID 1`] = `
|
|
|
295
295
|
>
|
|
296
296
|
common.label.cancellation_policy
|
|
297
297
|
</ui-text>
|
|
298
|
-
<button
|
|
298
|
+
<ui-button
|
|
299
299
|
class="pressable button small squared transparent button"
|
|
300
300
|
tabindex="0"
|
|
301
301
|
>
|
|
@@ -320,7 +320,7 @@ exports[`component:<BookingTerms> testID 1`] = `
|
|
|
320
320
|
/>
|
|
321
321
|
</svg>
|
|
322
322
|
</ui-icon>
|
|
323
|
-
</button>
|
|
323
|
+
</ui-button>
|
|
324
324
|
</ui-view>
|
|
325
325
|
<ui-text
|
|
326
326
|
class="text paragraph"
|
|
@@ -407,7 +407,7 @@ exports[`component:<BookingTerms> with a store 1`] = `
|
|
|
407
407
|
>
|
|
408
408
|
common.label.cancellation_policy
|
|
409
409
|
</ui-text>
|
|
410
|
-
<button
|
|
410
|
+
<ui-button
|
|
411
411
|
class="pressable button small squared transparent button"
|
|
412
412
|
tabindex="0"
|
|
413
413
|
>
|
|
@@ -432,7 +432,7 @@ exports[`component:<BookingTerms> with a store 1`] = `
|
|
|
432
432
|
/>
|
|
433
433
|
</svg>
|
|
434
434
|
</ui-icon>
|
|
435
|
-
</button>
|
|
435
|
+
</ui-button>
|
|
436
436
|
</ui-view>
|
|
437
437
|
<ui-text
|
|
438
438
|
class="text paragraph"
|
package/build/components/__shared__/ButtonMore/__tests__/__snapshots__/ButtonMore.test.js.snap
CHANGED
|
@@ -5,7 +5,7 @@ exports[`component:<ButtonMore> inherit:className 1`] = `
|
|
|
5
5
|
<ui-view
|
|
6
6
|
class="view wide mirai"
|
|
7
7
|
>
|
|
8
|
-
<button
|
|
8
|
+
<ui-button
|
|
9
9
|
class="pressable button transparent"
|
|
10
10
|
tabindex="0"
|
|
11
11
|
>
|
|
@@ -32,7 +32,7 @@ exports[`component:<ButtonMore> inherit:className 1`] = `
|
|
|
32
32
|
</svg>
|
|
33
33
|
</ui-icon>
|
|
34
34
|
common.action.view_more
|
|
35
|
-
</button>
|
|
35
|
+
</ui-button>
|
|
36
36
|
</ui-view>
|
|
37
37
|
</DocumentFragment>
|
|
38
38
|
`;
|
|
@@ -42,7 +42,7 @@ exports[`component:<ButtonMore> renders 1`] = `
|
|
|
42
42
|
<ui-view
|
|
43
43
|
class="view wide"
|
|
44
44
|
>
|
|
45
|
-
<button
|
|
45
|
+
<ui-button
|
|
46
46
|
class="pressable button transparent"
|
|
47
47
|
tabindex="0"
|
|
48
48
|
>
|
|
@@ -69,7 +69,7 @@ exports[`component:<ButtonMore> renders 1`] = `
|
|
|
69
69
|
</svg>
|
|
70
70
|
</ui-icon>
|
|
71
71
|
common.action.view_more
|
|
72
|
-
</button>
|
|
72
|
+
</ui-button>
|
|
73
73
|
</ui-view>
|
|
74
74
|
</DocumentFragment>
|
|
75
75
|
`;
|
|
@@ -79,7 +79,7 @@ exports[`component:<ButtonMore> testID 1`] = `
|
|
|
79
79
|
<ui-view
|
|
80
80
|
class="view wide"
|
|
81
81
|
>
|
|
82
|
-
<button
|
|
82
|
+
<ui-button
|
|
83
83
|
class="pressable button transparent"
|
|
84
84
|
data-testid="mirai"
|
|
85
85
|
tabindex="0"
|
|
@@ -107,7 +107,7 @@ exports[`component:<ButtonMore> testID 1`] = `
|
|
|
107
107
|
</svg>
|
|
108
108
|
</ui-icon>
|
|
109
109
|
common.action.view_more
|
|
110
|
-
</button>
|
|
110
|
+
</ui-button>
|
|
111
111
|
</ui-view>
|
|
112
112
|
</DocumentFragment>
|
|
113
113
|
`;
|
package/build/components/__shared__/ButtonPayment/__tests__/__snapshots__/ButtonPayment.test.js.snap
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`component:<ButtonPayment> inherit:className 1`] = `
|
|
4
4
|
<DocumentFragment>
|
|
5
|
-
<button
|
|
5
|
+
<ui-button
|
|
6
6
|
class="pressable button mirai"
|
|
7
7
|
tabindex="0"
|
|
8
8
|
>
|
|
9
9
|
payments.action.pay_now
|
|
10
|
-
</button>
|
|
10
|
+
</ui-button>
|
|
11
11
|
<ui-modal-overflow
|
|
12
12
|
class="pressable container overflow"
|
|
13
13
|
style="height: 768px;"
|
|
@@ -19,7 +19,7 @@ exports[`component:<ButtonPayment> inherit:className 1`] = `
|
|
|
19
19
|
<ui-view
|
|
20
20
|
class="view row header hideBack"
|
|
21
21
|
>
|
|
22
|
-
<button
|
|
22
|
+
<ui-button
|
|
23
23
|
class="pressable button small squared transparent button"
|
|
24
24
|
tabindex="0"
|
|
25
25
|
>
|
|
@@ -44,7 +44,7 @@ exports[`component:<ButtonPayment> inherit:className 1`] = `
|
|
|
44
44
|
/>
|
|
45
45
|
</svg>
|
|
46
46
|
</ui-icon>
|
|
47
|
-
</button>
|
|
47
|
+
</ui-button>
|
|
48
48
|
</ui-view>
|
|
49
49
|
</ui-modal>
|
|
50
50
|
</ui-modal-overflow>
|
|
@@ -53,12 +53,12 @@ exports[`component:<ButtonPayment> inherit:className 1`] = `
|
|
|
53
53
|
|
|
54
54
|
exports[`component:<ButtonPayment> renders 1`] = `
|
|
55
55
|
<DocumentFragment>
|
|
56
|
-
<button
|
|
56
|
+
<ui-button
|
|
57
57
|
class="pressable button"
|
|
58
58
|
tabindex="0"
|
|
59
59
|
>
|
|
60
60
|
payments.action.pay_now
|
|
61
|
-
</button>
|
|
61
|
+
</ui-button>
|
|
62
62
|
<ui-modal-overflow
|
|
63
63
|
class="pressable container overflow"
|
|
64
64
|
style="height: 768px;"
|
|
@@ -70,7 +70,7 @@ exports[`component:<ButtonPayment> renders 1`] = `
|
|
|
70
70
|
<ui-view
|
|
71
71
|
class="view row header hideBack"
|
|
72
72
|
>
|
|
73
|
-
<button
|
|
73
|
+
<ui-button
|
|
74
74
|
class="pressable button small squared transparent button"
|
|
75
75
|
tabindex="0"
|
|
76
76
|
>
|
|
@@ -95,7 +95,7 @@ exports[`component:<ButtonPayment> renders 1`] = `
|
|
|
95
95
|
/>
|
|
96
96
|
</svg>
|
|
97
97
|
</ui-icon>
|
|
98
|
-
</button>
|
|
98
|
+
</ui-button>
|
|
99
99
|
</ui-view>
|
|
100
100
|
</ui-modal>
|
|
101
101
|
</ui-modal-overflow>
|
|
@@ -104,13 +104,13 @@ exports[`component:<ButtonPayment> renders 1`] = `
|
|
|
104
104
|
|
|
105
105
|
exports[`component:<ButtonPayment> testID 1`] = `
|
|
106
106
|
<DocumentFragment>
|
|
107
|
-
<button
|
|
107
|
+
<ui-button
|
|
108
108
|
class="pressable button"
|
|
109
109
|
data-testid="mirai"
|
|
110
110
|
tabindex="0"
|
|
111
111
|
>
|
|
112
112
|
payments.action.pay_now
|
|
113
|
-
</button>
|
|
113
|
+
</ui-button>
|
|
114
114
|
<ui-modal-overflow
|
|
115
115
|
class="pressable container overflow"
|
|
116
116
|
style="height: 768px;"
|
|
@@ -122,7 +122,7 @@ exports[`component:<ButtonPayment> testID 1`] = `
|
|
|
122
122
|
<ui-view
|
|
123
123
|
class="view row header hideBack"
|
|
124
124
|
>
|
|
125
|
-
<button
|
|
125
|
+
<ui-button
|
|
126
126
|
class="pressable button small squared transparent button"
|
|
127
127
|
tabindex="0"
|
|
128
128
|
>
|
|
@@ -147,7 +147,7 @@ exports[`component:<ButtonPayment> testID 1`] = `
|
|
|
147
147
|
/>
|
|
148
148
|
</svg>
|
|
149
149
|
</ui-icon>
|
|
150
|
-
</button>
|
|
150
|
+
</ui-button>
|
|
151
151
|
</ui-view>
|
|
152
152
|
</ui-modal>
|
|
153
153
|
</ui-modal-overflow>
|
|
@@ -156,12 +156,12 @@ exports[`component:<ButtonPayment> testID 1`] = `
|
|
|
156
156
|
|
|
157
157
|
exports[`component:<ButtonPayment> using some inherit <Button> properties 1`] = `
|
|
158
158
|
<DocumentFragment>
|
|
159
|
-
<button
|
|
159
|
+
<ui-button
|
|
160
160
|
class="pressable disabled button large disabled"
|
|
161
|
-
disabled=""
|
|
161
|
+
disabled="true"
|
|
162
162
|
>
|
|
163
163
|
Pay Now
|
|
164
|
-
</button>
|
|
164
|
+
</ui-button>
|
|
165
165
|
<ui-modal-overflow
|
|
166
166
|
class="pressable container overflow"
|
|
167
167
|
style="height: 768px;"
|
|
@@ -173,7 +173,7 @@ exports[`component:<ButtonPayment> using some inherit <Button> properties 1`] =
|
|
|
173
173
|
<ui-view
|
|
174
174
|
class="view row header hideBack"
|
|
175
175
|
>
|
|
176
|
-
<button
|
|
176
|
+
<ui-button
|
|
177
177
|
class="pressable button small squared transparent button"
|
|
178
178
|
tabindex="0"
|
|
179
179
|
>
|
|
@@ -198,7 +198,7 @@ exports[`component:<ButtonPayment> using some inherit <Button> properties 1`] =
|
|
|
198
198
|
/>
|
|
199
199
|
</svg>
|
|
200
200
|
</ui-icon>
|
|
201
|
-
</button>
|
|
201
|
+
</ui-button>
|
|
202
202
|
</ui-view>
|
|
203
203
|
</ui-modal>
|
|
204
204
|
</ui-modal-overflow>
|
|
@@ -97,9 +97,9 @@ exports[`component:<FormCheckout> inherit:className 1`] = `
|
|
|
97
97
|
</ui-view>
|
|
98
98
|
</ui-view>
|
|
99
99
|
</ui-view>
|
|
100
|
-
<button
|
|
100
|
+
<ui-button
|
|
101
101
|
class="pressable disabled button large disabled wide"
|
|
102
|
-
disabled=""
|
|
102
|
+
disabled="true"
|
|
103
103
|
>
|
|
104
104
|
<ui-view
|
|
105
105
|
class="view busyContainer"
|
|
@@ -113,7 +113,7 @@ exports[`component:<FormCheckout> inherit:className 1`] = `
|
|
|
113
113
|
>
|
|
114
114
|
payments.action.pay
|
|
115
115
|
</ui-view>
|
|
116
|
-
</button>
|
|
116
|
+
</ui-button>
|
|
117
117
|
</ui-view>
|
|
118
118
|
</DocumentFragment>
|
|
119
119
|
`;
|
|
@@ -215,9 +215,9 @@ exports[`component:<FormCheckout> renders 1`] = `
|
|
|
215
215
|
</ui-view>
|
|
216
216
|
</ui-view>
|
|
217
217
|
</ui-view>
|
|
218
|
-
<button
|
|
218
|
+
<ui-button
|
|
219
219
|
class="pressable disabled button large disabled wide"
|
|
220
|
-
disabled=""
|
|
220
|
+
disabled="true"
|
|
221
221
|
>
|
|
222
222
|
<ui-view
|
|
223
223
|
class="view busyContainer"
|
|
@@ -231,7 +231,7 @@ exports[`component:<FormCheckout> renders 1`] = `
|
|
|
231
231
|
>
|
|
232
232
|
payments.action.pay
|
|
233
233
|
</ui-view>
|
|
234
|
-
</button>
|
|
234
|
+
</ui-button>
|
|
235
235
|
</ui-view>
|
|
236
236
|
</DocumentFragment>
|
|
237
237
|
`;
|
|
@@ -334,9 +334,9 @@ exports[`component:<FormCheckout> testID 1`] = `
|
|
|
334
334
|
</ui-view>
|
|
335
335
|
</ui-view>
|
|
336
336
|
</ui-view>
|
|
337
|
-
<button
|
|
337
|
+
<ui-button
|
|
338
338
|
class="pressable disabled button large disabled wide"
|
|
339
|
-
disabled=""
|
|
339
|
+
disabled="true"
|
|
340
340
|
>
|
|
341
341
|
<ui-view
|
|
342
342
|
class="view busyContainer"
|
|
@@ -350,7 +350,7 @@ exports[`component:<FormCheckout> testID 1`] = `
|
|
|
350
350
|
>
|
|
351
351
|
payments.action.pay
|
|
352
352
|
</ui-view>
|
|
353
|
-
</button>
|
|
353
|
+
</ui-button>
|
|
354
354
|
</ui-view>
|
|
355
355
|
</DocumentFragment>
|
|
356
356
|
`;
|