@mirai/core 0.3.363 → 0.3.365
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/Core.js +3 -5
- package/build/Core.js.map +1 -1
- 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/helpers/getContents.js +16 -0
- package/build/helpers/getContents.js.map +1 -0
- package/build/helpers/index.js +22 -0
- package/build/helpers/index.js.map +1 -1
- package/build/theme.css +2 -0
- package/package.json +1 -1
- package/public/App.jsx +1 -1
|
@@ -76,6 +76,7 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
76
76
|
</ui-view>
|
|
77
77
|
<ui-input-number
|
|
78
78
|
class="view row inputNumber"
|
|
79
|
+
data-testid="group-0"
|
|
79
80
|
>
|
|
80
81
|
<ui-view
|
|
81
82
|
class="view texts"
|
|
@@ -91,8 +92,9 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
91
92
|
common.label.age_from
|
|
92
93
|
</ui-text>
|
|
93
94
|
</ui-view>
|
|
94
|
-
<button
|
|
95
|
+
<ui-button
|
|
95
96
|
class="pressable button small squared secondary"
|
|
97
|
+
data-testid="group-0-button-min"
|
|
96
98
|
tabindex="0"
|
|
97
99
|
>
|
|
98
100
|
<ui-icon
|
|
@@ -116,14 +118,15 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
116
118
|
/>
|
|
117
119
|
</svg>
|
|
118
120
|
</ui-icon>
|
|
119
|
-
</button>
|
|
121
|
+
</ui-button>
|
|
120
122
|
<ui-text
|
|
121
123
|
class="text paragraph value"
|
|
122
124
|
>
|
|
123
125
|
2
|
|
124
126
|
</ui-text>
|
|
125
|
-
<button
|
|
127
|
+
<ui-button
|
|
126
128
|
class="pressable button small squared secondary"
|
|
129
|
+
data-testid="group-0-button-max"
|
|
127
130
|
tabindex="0"
|
|
128
131
|
>
|
|
129
132
|
<ui-icon
|
|
@@ -147,10 +150,11 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
147
150
|
/>
|
|
148
151
|
</svg>
|
|
149
152
|
</ui-icon>
|
|
150
|
-
</button>
|
|
153
|
+
</ui-button>
|
|
151
154
|
</ui-input-number>
|
|
152
155
|
<ui-input-number
|
|
153
156
|
class="view row inputNumber"
|
|
157
|
+
data-testid="group-1"
|
|
154
158
|
>
|
|
155
159
|
<ui-view
|
|
156
160
|
class="view texts"
|
|
@@ -172,9 +176,10 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
172
176
|
to
|
|
173
177
|
</ui-text>
|
|
174
178
|
</ui-view>
|
|
175
|
-
<button
|
|
179
|
+
<ui-button
|
|
176
180
|
class="pressable disabled button small squared disabled"
|
|
177
|
-
|
|
181
|
+
data-testid="group-1-button-min"
|
|
182
|
+
disabled="true"
|
|
178
183
|
>
|
|
179
184
|
<ui-icon
|
|
180
185
|
class="icon headline-3"
|
|
@@ -197,14 +202,15 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
197
202
|
/>
|
|
198
203
|
</svg>
|
|
199
204
|
</ui-icon>
|
|
200
|
-
</button>
|
|
205
|
+
</ui-button>
|
|
201
206
|
<ui-text
|
|
202
207
|
class="text paragraph value"
|
|
203
208
|
>
|
|
204
209
|
0
|
|
205
210
|
</ui-text>
|
|
206
|
-
<button
|
|
211
|
+
<ui-button
|
|
207
212
|
class="pressable button small squared secondary"
|
|
213
|
+
data-testid="group-1-button-max"
|
|
208
214
|
tabindex="0"
|
|
209
215
|
>
|
|
210
216
|
<ui-icon
|
|
@@ -228,19 +234,19 @@ exports[`component:<FieldOccupation> inherit:className 1`] = `
|
|
|
228
234
|
/>
|
|
229
235
|
</svg>
|
|
230
236
|
</ui-icon>
|
|
231
|
-
</button>
|
|
237
|
+
</ui-button>
|
|
232
238
|
</ui-input-number>
|
|
233
239
|
</ui-view>
|
|
234
240
|
</ui-scrollview>
|
|
235
241
|
<ui-view
|
|
236
242
|
class="view row"
|
|
237
243
|
>
|
|
238
|
-
<button
|
|
244
|
+
<ui-button
|
|
239
245
|
class="pressable button secondary"
|
|
240
246
|
tabindex="0"
|
|
241
247
|
>
|
|
242
248
|
finder.action.add_place_type.room
|
|
243
|
-
</button>
|
|
249
|
+
</ui-button>
|
|
244
250
|
</ui-view>
|
|
245
251
|
</ui-view>
|
|
246
252
|
</ui-layer-content>
|
|
@@ -281,6 +287,7 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
281
287
|
</ui-view>
|
|
282
288
|
<ui-input-number
|
|
283
289
|
class="view row inputNumber"
|
|
290
|
+
data-testid="group-0"
|
|
284
291
|
>
|
|
285
292
|
<ui-view
|
|
286
293
|
class="view texts"
|
|
@@ -296,8 +303,9 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
296
303
|
common.label.age_from
|
|
297
304
|
</ui-text>
|
|
298
305
|
</ui-view>
|
|
299
|
-
<button
|
|
306
|
+
<ui-button
|
|
300
307
|
class="pressable button small squared secondary"
|
|
308
|
+
data-testid="group-0-button-min"
|
|
301
309
|
tabindex="0"
|
|
302
310
|
>
|
|
303
311
|
<ui-icon
|
|
@@ -321,14 +329,15 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
321
329
|
/>
|
|
322
330
|
</svg>
|
|
323
331
|
</ui-icon>
|
|
324
|
-
</button>
|
|
332
|
+
</ui-button>
|
|
325
333
|
<ui-text
|
|
326
334
|
class="text paragraph value"
|
|
327
335
|
>
|
|
328
336
|
2
|
|
329
337
|
</ui-text>
|
|
330
|
-
<button
|
|
338
|
+
<ui-button
|
|
331
339
|
class="pressable button small squared secondary"
|
|
340
|
+
data-testid="group-0-button-max"
|
|
332
341
|
tabindex="0"
|
|
333
342
|
>
|
|
334
343
|
<ui-icon
|
|
@@ -352,10 +361,11 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
352
361
|
/>
|
|
353
362
|
</svg>
|
|
354
363
|
</ui-icon>
|
|
355
|
-
</button>
|
|
364
|
+
</ui-button>
|
|
356
365
|
</ui-input-number>
|
|
357
366
|
<ui-input-number
|
|
358
367
|
class="view row inputNumber"
|
|
368
|
+
data-testid="group-1"
|
|
359
369
|
>
|
|
360
370
|
<ui-view
|
|
361
371
|
class="view texts"
|
|
@@ -377,9 +387,10 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
377
387
|
to
|
|
378
388
|
</ui-text>
|
|
379
389
|
</ui-view>
|
|
380
|
-
<button
|
|
390
|
+
<ui-button
|
|
381
391
|
class="pressable disabled button small squared disabled"
|
|
382
|
-
|
|
392
|
+
data-testid="group-1-button-min"
|
|
393
|
+
disabled="true"
|
|
383
394
|
>
|
|
384
395
|
<ui-icon
|
|
385
396
|
class="icon headline-3"
|
|
@@ -402,14 +413,15 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
402
413
|
/>
|
|
403
414
|
</svg>
|
|
404
415
|
</ui-icon>
|
|
405
|
-
</button>
|
|
416
|
+
</ui-button>
|
|
406
417
|
<ui-text
|
|
407
418
|
class="text paragraph value"
|
|
408
419
|
>
|
|
409
420
|
0
|
|
410
421
|
</ui-text>
|
|
411
|
-
<button
|
|
422
|
+
<ui-button
|
|
412
423
|
class="pressable button small squared secondary"
|
|
424
|
+
data-testid="group-1-button-max"
|
|
413
425
|
tabindex="0"
|
|
414
426
|
>
|
|
415
427
|
<ui-icon
|
|
@@ -433,19 +445,19 @@ exports[`component:<FieldOccupation> prop:compacted 1`] = `
|
|
|
433
445
|
/>
|
|
434
446
|
</svg>
|
|
435
447
|
</ui-icon>
|
|
436
|
-
</button>
|
|
448
|
+
</ui-button>
|
|
437
449
|
</ui-input-number>
|
|
438
450
|
</ui-view>
|
|
439
451
|
</ui-scrollview>
|
|
440
452
|
<ui-view
|
|
441
453
|
class="view row"
|
|
442
454
|
>
|
|
443
|
-
<button
|
|
455
|
+
<ui-button
|
|
444
456
|
class="pressable button secondary"
|
|
445
457
|
tabindex="0"
|
|
446
458
|
>
|
|
447
459
|
finder.action.add_place_type.room
|
|
448
|
-
</button>
|
|
460
|
+
</ui-button>
|
|
449
461
|
</ui-view>
|
|
450
462
|
</ui-view>
|
|
451
463
|
</ui-layer-content>
|
|
@@ -534,6 +546,7 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
534
546
|
</ui-view>
|
|
535
547
|
<ui-input-number
|
|
536
548
|
class="view row inputNumber"
|
|
549
|
+
data-testid="group-0"
|
|
537
550
|
>
|
|
538
551
|
<ui-view
|
|
539
552
|
class="view texts"
|
|
@@ -549,8 +562,9 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
549
562
|
common.label.age_from
|
|
550
563
|
</ui-text>
|
|
551
564
|
</ui-view>
|
|
552
|
-
<button
|
|
565
|
+
<ui-button
|
|
553
566
|
class="pressable button small squared secondary"
|
|
567
|
+
data-testid="group-0-button-min"
|
|
554
568
|
tabindex="0"
|
|
555
569
|
>
|
|
556
570
|
<ui-icon
|
|
@@ -574,14 +588,15 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
574
588
|
/>
|
|
575
589
|
</svg>
|
|
576
590
|
</ui-icon>
|
|
577
|
-
</button>
|
|
591
|
+
</ui-button>
|
|
578
592
|
<ui-text
|
|
579
593
|
class="text paragraph value"
|
|
580
594
|
>
|
|
581
595
|
2
|
|
582
596
|
</ui-text>
|
|
583
|
-
<button
|
|
597
|
+
<ui-button
|
|
584
598
|
class="pressable button small squared secondary"
|
|
599
|
+
data-testid="group-0-button-max"
|
|
585
600
|
tabindex="0"
|
|
586
601
|
>
|
|
587
602
|
<ui-icon
|
|
@@ -605,10 +620,11 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
605
620
|
/>
|
|
606
621
|
</svg>
|
|
607
622
|
</ui-icon>
|
|
608
|
-
</button>
|
|
623
|
+
</ui-button>
|
|
609
624
|
</ui-input-number>
|
|
610
625
|
<ui-input-number
|
|
611
626
|
class="view row inputNumber"
|
|
627
|
+
data-testid="group-1"
|
|
612
628
|
>
|
|
613
629
|
<ui-view
|
|
614
630
|
class="view texts"
|
|
@@ -630,9 +646,10 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
630
646
|
to
|
|
631
647
|
</ui-text>
|
|
632
648
|
</ui-view>
|
|
633
|
-
<button
|
|
649
|
+
<ui-button
|
|
634
650
|
class="pressable disabled button small squared disabled"
|
|
635
|
-
|
|
651
|
+
data-testid="group-1-button-min"
|
|
652
|
+
disabled="true"
|
|
636
653
|
>
|
|
637
654
|
<ui-icon
|
|
638
655
|
class="icon headline-3"
|
|
@@ -655,14 +672,15 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
655
672
|
/>
|
|
656
673
|
</svg>
|
|
657
674
|
</ui-icon>
|
|
658
|
-
</button>
|
|
675
|
+
</ui-button>
|
|
659
676
|
<ui-text
|
|
660
677
|
class="text paragraph value"
|
|
661
678
|
>
|
|
662
679
|
0
|
|
663
680
|
</ui-text>
|
|
664
|
-
<button
|
|
681
|
+
<ui-button
|
|
665
682
|
class="pressable button small squared secondary"
|
|
683
|
+
data-testid="group-1-button-max"
|
|
666
684
|
tabindex="0"
|
|
667
685
|
>
|
|
668
686
|
<ui-icon
|
|
@@ -686,7 +704,7 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
686
704
|
/>
|
|
687
705
|
</svg>
|
|
688
706
|
</ui-icon>
|
|
689
|
-
</button>
|
|
707
|
+
</ui-button>
|
|
690
708
|
</ui-input-number>
|
|
691
709
|
</ui-view>
|
|
692
710
|
<ui-view
|
|
@@ -709,6 +727,7 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
709
727
|
</ui-view>
|
|
710
728
|
<ui-input-number
|
|
711
729
|
class="view row inputNumber"
|
|
730
|
+
data-testid="group-0"
|
|
712
731
|
>
|
|
713
732
|
<ui-view
|
|
714
733
|
class="view texts"
|
|
@@ -724,8 +743,9 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
724
743
|
common.label.age_from
|
|
725
744
|
</ui-text>
|
|
726
745
|
</ui-view>
|
|
727
|
-
<button
|
|
746
|
+
<ui-button
|
|
728
747
|
class="pressable button small squared secondary"
|
|
748
|
+
data-testid="group-0-button-min"
|
|
729
749
|
tabindex="0"
|
|
730
750
|
>
|
|
731
751
|
<ui-icon
|
|
@@ -749,14 +769,15 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
749
769
|
/>
|
|
750
770
|
</svg>
|
|
751
771
|
</ui-icon>
|
|
752
|
-
</button>
|
|
772
|
+
</ui-button>
|
|
753
773
|
<ui-text
|
|
754
774
|
class="text paragraph value"
|
|
755
775
|
>
|
|
756
776
|
2
|
|
757
777
|
</ui-text>
|
|
758
|
-
<button
|
|
778
|
+
<ui-button
|
|
759
779
|
class="pressable button small squared secondary"
|
|
780
|
+
data-testid="group-0-button-max"
|
|
760
781
|
tabindex="0"
|
|
761
782
|
>
|
|
762
783
|
<ui-icon
|
|
@@ -780,10 +801,11 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
780
801
|
/>
|
|
781
802
|
</svg>
|
|
782
803
|
</ui-icon>
|
|
783
|
-
</button>
|
|
804
|
+
</ui-button>
|
|
784
805
|
</ui-input-number>
|
|
785
806
|
<ui-input-number
|
|
786
807
|
class="view row inputNumber"
|
|
808
|
+
data-testid="group-1"
|
|
787
809
|
>
|
|
788
810
|
<ui-view
|
|
789
811
|
class="view texts"
|
|
@@ -805,9 +827,10 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
805
827
|
to
|
|
806
828
|
</ui-text>
|
|
807
829
|
</ui-view>
|
|
808
|
-
<button
|
|
830
|
+
<ui-button
|
|
809
831
|
class="pressable disabled button small squared disabled"
|
|
810
|
-
|
|
832
|
+
data-testid="group-1-button-min"
|
|
833
|
+
disabled="true"
|
|
811
834
|
>
|
|
812
835
|
<ui-icon
|
|
813
836
|
class="icon headline-3"
|
|
@@ -830,14 +853,15 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
830
853
|
/>
|
|
831
854
|
</svg>
|
|
832
855
|
</ui-icon>
|
|
833
|
-
</button>
|
|
856
|
+
</ui-button>
|
|
834
857
|
<ui-text
|
|
835
858
|
class="text paragraph value"
|
|
836
859
|
>
|
|
837
860
|
0
|
|
838
861
|
</ui-text>
|
|
839
|
-
<button
|
|
862
|
+
<ui-button
|
|
840
863
|
class="pressable button small squared secondary"
|
|
864
|
+
data-testid="group-1-button-max"
|
|
841
865
|
tabindex="0"
|
|
842
866
|
>
|
|
843
867
|
<ui-icon
|
|
@@ -861,19 +885,19 @@ exports[`component:<FieldOccupation> prop:minRooms 1`] = `
|
|
|
861
885
|
/>
|
|
862
886
|
</svg>
|
|
863
887
|
</ui-icon>
|
|
864
|
-
</button>
|
|
888
|
+
</ui-button>
|
|
865
889
|
</ui-input-number>
|
|
866
890
|
</ui-view>
|
|
867
891
|
</ui-scrollview>
|
|
868
892
|
<ui-view
|
|
869
893
|
class="view row"
|
|
870
894
|
>
|
|
871
|
-
<button
|
|
895
|
+
<ui-button
|
|
872
896
|
class="pressable button secondary"
|
|
873
897
|
tabindex="0"
|
|
874
898
|
>
|
|
875
899
|
finder.action.add_place_type.room
|
|
876
|
-
</button>
|
|
900
|
+
</ui-button>
|
|
877
901
|
</ui-view>
|
|
878
902
|
</ui-view>
|
|
879
903
|
</ui-layer-content>
|
|
@@ -968,6 +992,7 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
968
992
|
</ui-view>
|
|
969
993
|
<ui-input-number
|
|
970
994
|
class="view row inputNumber"
|
|
995
|
+
data-testid="group-0"
|
|
971
996
|
>
|
|
972
997
|
<ui-view
|
|
973
998
|
class="view texts"
|
|
@@ -983,8 +1008,9 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
983
1008
|
common.label.age_from
|
|
984
1009
|
</ui-text>
|
|
985
1010
|
</ui-view>
|
|
986
|
-
<button
|
|
1011
|
+
<ui-button
|
|
987
1012
|
class="pressable button small squared secondary"
|
|
1013
|
+
data-testid="group-0-button-min"
|
|
988
1014
|
tabindex="0"
|
|
989
1015
|
>
|
|
990
1016
|
<ui-icon
|
|
@@ -1008,14 +1034,15 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
1008
1034
|
/>
|
|
1009
1035
|
</svg>
|
|
1010
1036
|
</ui-icon>
|
|
1011
|
-
</button>
|
|
1037
|
+
</ui-button>
|
|
1012
1038
|
<ui-text
|
|
1013
1039
|
class="text paragraph value"
|
|
1014
1040
|
>
|
|
1015
1041
|
2
|
|
1016
1042
|
</ui-text>
|
|
1017
|
-
<button
|
|
1043
|
+
<ui-button
|
|
1018
1044
|
class="pressable button small squared secondary"
|
|
1045
|
+
data-testid="group-0-button-max"
|
|
1019
1046
|
tabindex="0"
|
|
1020
1047
|
>
|
|
1021
1048
|
<ui-icon
|
|
@@ -1039,10 +1066,11 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
1039
1066
|
/>
|
|
1040
1067
|
</svg>
|
|
1041
1068
|
</ui-icon>
|
|
1042
|
-
</button>
|
|
1069
|
+
</ui-button>
|
|
1043
1070
|
</ui-input-number>
|
|
1044
1071
|
<ui-input-number
|
|
1045
1072
|
class="view row inputNumber"
|
|
1073
|
+
data-testid="group-1"
|
|
1046
1074
|
>
|
|
1047
1075
|
<ui-view
|
|
1048
1076
|
class="view texts"
|
|
@@ -1064,8 +1092,9 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
1064
1092
|
to
|
|
1065
1093
|
</ui-text>
|
|
1066
1094
|
</ui-view>
|
|
1067
|
-
<button
|
|
1095
|
+
<ui-button
|
|
1068
1096
|
class="pressable button small squared secondary"
|
|
1097
|
+
data-testid="group-1-button-min"
|
|
1069
1098
|
tabindex="0"
|
|
1070
1099
|
>
|
|
1071
1100
|
<ui-icon
|
|
@@ -1089,14 +1118,15 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
1089
1118
|
/>
|
|
1090
1119
|
</svg>
|
|
1091
1120
|
</ui-icon>
|
|
1092
|
-
</button>
|
|
1121
|
+
</ui-button>
|
|
1093
1122
|
<ui-text
|
|
1094
1123
|
class="text paragraph value"
|
|
1095
1124
|
>
|
|
1096
1125
|
1
|
|
1097
1126
|
</ui-text>
|
|
1098
|
-
<button
|
|
1127
|
+
<ui-button
|
|
1099
1128
|
class="pressable button small squared secondary"
|
|
1129
|
+
data-testid="group-1-button-max"
|
|
1100
1130
|
tabindex="0"
|
|
1101
1131
|
>
|
|
1102
1132
|
<ui-icon
|
|
@@ -1120,7 +1150,7 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
1120
1150
|
/>
|
|
1121
1151
|
</svg>
|
|
1122
1152
|
</ui-icon>
|
|
1123
|
-
</button>
|
|
1153
|
+
</ui-button>
|
|
1124
1154
|
</ui-input-number>
|
|
1125
1155
|
<ui-view
|
|
1126
1156
|
class="view"
|
|
@@ -1274,12 +1304,12 @@ exports[`component:<FieldOccupation> prop:value 1`] = `
|
|
|
1274
1304
|
<ui-view
|
|
1275
1305
|
class="view row"
|
|
1276
1306
|
>
|
|
1277
|
-
<button
|
|
1307
|
+
<ui-button
|
|
1278
1308
|
class="pressable button secondary"
|
|
1279
1309
|
tabindex="0"
|
|
1280
1310
|
>
|
|
1281
1311
|
finder.action.add_place_type.room
|
|
1282
|
-
</button>
|
|
1312
|
+
</ui-button>
|
|
1283
1313
|
</ui-view>
|
|
1284
1314
|
</ui-view>
|
|
1285
1315
|
</ui-layer-content>
|
|
@@ -1362,6 +1392,7 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1362
1392
|
</ui-view>
|
|
1363
1393
|
<ui-input-number
|
|
1364
1394
|
class="view row inputNumber"
|
|
1395
|
+
data-testid="group-0"
|
|
1365
1396
|
>
|
|
1366
1397
|
<ui-view
|
|
1367
1398
|
class="view texts"
|
|
@@ -1377,8 +1408,9 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1377
1408
|
common.label.age_from
|
|
1378
1409
|
</ui-text>
|
|
1379
1410
|
</ui-view>
|
|
1380
|
-
<button
|
|
1411
|
+
<ui-button
|
|
1381
1412
|
class="pressable button small squared secondary"
|
|
1413
|
+
data-testid="group-0-button-min"
|
|
1382
1414
|
tabindex="0"
|
|
1383
1415
|
>
|
|
1384
1416
|
<ui-icon
|
|
@@ -1402,14 +1434,15 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1402
1434
|
/>
|
|
1403
1435
|
</svg>
|
|
1404
1436
|
</ui-icon>
|
|
1405
|
-
</button>
|
|
1437
|
+
</ui-button>
|
|
1406
1438
|
<ui-text
|
|
1407
1439
|
class="text paragraph value"
|
|
1408
1440
|
>
|
|
1409
1441
|
2
|
|
1410
1442
|
</ui-text>
|
|
1411
|
-
<button
|
|
1443
|
+
<ui-button
|
|
1412
1444
|
class="pressable button small squared secondary"
|
|
1445
|
+
data-testid="group-0-button-max"
|
|
1413
1446
|
tabindex="0"
|
|
1414
1447
|
>
|
|
1415
1448
|
<ui-icon
|
|
@@ -1433,10 +1466,11 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1433
1466
|
/>
|
|
1434
1467
|
</svg>
|
|
1435
1468
|
</ui-icon>
|
|
1436
|
-
</button>
|
|
1469
|
+
</ui-button>
|
|
1437
1470
|
</ui-input-number>
|
|
1438
1471
|
<ui-input-number
|
|
1439
1472
|
class="view row inputNumber"
|
|
1473
|
+
data-testid="group-1"
|
|
1440
1474
|
>
|
|
1441
1475
|
<ui-view
|
|
1442
1476
|
class="view texts"
|
|
@@ -1458,9 +1492,10 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1458
1492
|
to
|
|
1459
1493
|
</ui-text>
|
|
1460
1494
|
</ui-view>
|
|
1461
|
-
<button
|
|
1495
|
+
<ui-button
|
|
1462
1496
|
class="pressable disabled button small squared disabled"
|
|
1463
|
-
|
|
1497
|
+
data-testid="group-1-button-min"
|
|
1498
|
+
disabled="true"
|
|
1464
1499
|
>
|
|
1465
1500
|
<ui-icon
|
|
1466
1501
|
class="icon headline-3"
|
|
@@ -1483,14 +1518,15 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1483
1518
|
/>
|
|
1484
1519
|
</svg>
|
|
1485
1520
|
</ui-icon>
|
|
1486
|
-
</button>
|
|
1521
|
+
</ui-button>
|
|
1487
1522
|
<ui-text
|
|
1488
1523
|
class="text paragraph value"
|
|
1489
1524
|
>
|
|
1490
1525
|
0
|
|
1491
1526
|
</ui-text>
|
|
1492
|
-
<button
|
|
1527
|
+
<ui-button
|
|
1493
1528
|
class="pressable button small squared secondary"
|
|
1529
|
+
data-testid="group-1-button-max"
|
|
1494
1530
|
tabindex="0"
|
|
1495
1531
|
>
|
|
1496
1532
|
<ui-icon
|
|
@@ -1514,19 +1550,19 @@ exports[`component:<FieldOccupation> prop:visible 1`] = `
|
|
|
1514
1550
|
/>
|
|
1515
1551
|
</svg>
|
|
1516
1552
|
</ui-icon>
|
|
1517
|
-
</button>
|
|
1553
|
+
</ui-button>
|
|
1518
1554
|
</ui-input-number>
|
|
1519
1555
|
</ui-view>
|
|
1520
1556
|
</ui-scrollview>
|
|
1521
1557
|
<ui-view
|
|
1522
1558
|
class="view row"
|
|
1523
1559
|
>
|
|
1524
|
-
<button
|
|
1560
|
+
<ui-button
|
|
1525
1561
|
class="pressable button secondary"
|
|
1526
1562
|
tabindex="0"
|
|
1527
1563
|
>
|
|
1528
1564
|
finder.action.add_place_type.room
|
|
1529
|
-
</button>
|
|
1565
|
+
</ui-button>
|
|
1530
1566
|
</ui-view>
|
|
1531
1567
|
</ui-view>
|
|
1532
1568
|
</ui-layer-content>
|
|
@@ -1626,6 +1662,7 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1626
1662
|
</ui-view>
|
|
1627
1663
|
<ui-input-number
|
|
1628
1664
|
class="view row inputNumber"
|
|
1665
|
+
data-testid="group-0"
|
|
1629
1666
|
>
|
|
1630
1667
|
<ui-view
|
|
1631
1668
|
class="view texts"
|
|
@@ -1641,8 +1678,9 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1641
1678
|
common.label.age_from
|
|
1642
1679
|
</ui-text>
|
|
1643
1680
|
</ui-view>
|
|
1644
|
-
<button
|
|
1681
|
+
<ui-button
|
|
1645
1682
|
class="pressable button small squared secondary"
|
|
1683
|
+
data-testid="group-0-button-min"
|
|
1646
1684
|
tabindex="0"
|
|
1647
1685
|
>
|
|
1648
1686
|
<ui-icon
|
|
@@ -1666,14 +1704,15 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1666
1704
|
/>
|
|
1667
1705
|
</svg>
|
|
1668
1706
|
</ui-icon>
|
|
1669
|
-
</button>
|
|
1707
|
+
</ui-button>
|
|
1670
1708
|
<ui-text
|
|
1671
1709
|
class="text paragraph value"
|
|
1672
1710
|
>
|
|
1673
1711
|
2
|
|
1674
1712
|
</ui-text>
|
|
1675
|
-
<button
|
|
1713
|
+
<ui-button
|
|
1676
1714
|
class="pressable button small squared secondary"
|
|
1715
|
+
data-testid="group-0-button-max"
|
|
1677
1716
|
tabindex="0"
|
|
1678
1717
|
>
|
|
1679
1718
|
<ui-icon
|
|
@@ -1697,10 +1736,11 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1697
1736
|
/>
|
|
1698
1737
|
</svg>
|
|
1699
1738
|
</ui-icon>
|
|
1700
|
-
</button>
|
|
1739
|
+
</ui-button>
|
|
1701
1740
|
</ui-input-number>
|
|
1702
1741
|
<ui-input-number
|
|
1703
1742
|
class="view row inputNumber"
|
|
1743
|
+
data-testid="group-1"
|
|
1704
1744
|
>
|
|
1705
1745
|
<ui-view
|
|
1706
1746
|
class="view texts"
|
|
@@ -1722,9 +1762,10 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1722
1762
|
to
|
|
1723
1763
|
</ui-text>
|
|
1724
1764
|
</ui-view>
|
|
1725
|
-
<button
|
|
1765
|
+
<ui-button
|
|
1726
1766
|
class="pressable disabled button small squared disabled"
|
|
1727
|
-
|
|
1767
|
+
data-testid="group-1-button-min"
|
|
1768
|
+
disabled="true"
|
|
1728
1769
|
>
|
|
1729
1770
|
<ui-icon
|
|
1730
1771
|
class="icon headline-3"
|
|
@@ -1747,14 +1788,15 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1747
1788
|
/>
|
|
1748
1789
|
</svg>
|
|
1749
1790
|
</ui-icon>
|
|
1750
|
-
</button>
|
|
1791
|
+
</ui-button>
|
|
1751
1792
|
<ui-text
|
|
1752
1793
|
class="text paragraph value"
|
|
1753
1794
|
>
|
|
1754
1795
|
0
|
|
1755
1796
|
</ui-text>
|
|
1756
|
-
<button
|
|
1797
|
+
<ui-button
|
|
1757
1798
|
class="pressable button small squared secondary"
|
|
1799
|
+
data-testid="group-1-button-max"
|
|
1758
1800
|
tabindex="0"
|
|
1759
1801
|
>
|
|
1760
1802
|
<ui-icon
|
|
@@ -1778,19 +1820,19 @@ exports[`component:<FieldOccupation> prop:warning 1`] = `
|
|
|
1778
1820
|
/>
|
|
1779
1821
|
</svg>
|
|
1780
1822
|
</ui-icon>
|
|
1781
|
-
</button>
|
|
1823
|
+
</ui-button>
|
|
1782
1824
|
</ui-input-number>
|
|
1783
1825
|
</ui-view>
|
|
1784
1826
|
</ui-scrollview>
|
|
1785
1827
|
<ui-view
|
|
1786
1828
|
class="view row"
|
|
1787
1829
|
>
|
|
1788
|
-
<button
|
|
1830
|
+
<ui-button
|
|
1789
1831
|
class="pressable button secondary"
|
|
1790
1832
|
tabindex="0"
|
|
1791
1833
|
>
|
|
1792
1834
|
finder.action.add_place_type.room
|
|
1793
|
-
</button>
|
|
1835
|
+
</ui-button>
|
|
1794
1836
|
</ui-view>
|
|
1795
1837
|
</ui-view>
|
|
1796
1838
|
</ui-layer-content>
|
|
@@ -1873,6 +1915,7 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
1873
1915
|
</ui-view>
|
|
1874
1916
|
<ui-input-number
|
|
1875
1917
|
class="view row inputNumber"
|
|
1918
|
+
data-testid="group-0"
|
|
1876
1919
|
>
|
|
1877
1920
|
<ui-view
|
|
1878
1921
|
class="view texts"
|
|
@@ -1888,8 +1931,9 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
1888
1931
|
common.label.age_from
|
|
1889
1932
|
</ui-text>
|
|
1890
1933
|
</ui-view>
|
|
1891
|
-
<button
|
|
1934
|
+
<ui-button
|
|
1892
1935
|
class="pressable button small squared secondary"
|
|
1936
|
+
data-testid="group-0-button-min"
|
|
1893
1937
|
tabindex="0"
|
|
1894
1938
|
>
|
|
1895
1939
|
<ui-icon
|
|
@@ -1913,14 +1957,15 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
1913
1957
|
/>
|
|
1914
1958
|
</svg>
|
|
1915
1959
|
</ui-icon>
|
|
1916
|
-
</button>
|
|
1960
|
+
</ui-button>
|
|
1917
1961
|
<ui-text
|
|
1918
1962
|
class="text paragraph value"
|
|
1919
1963
|
>
|
|
1920
1964
|
2
|
|
1921
1965
|
</ui-text>
|
|
1922
|
-
<button
|
|
1966
|
+
<ui-button
|
|
1923
1967
|
class="pressable button small squared secondary"
|
|
1968
|
+
data-testid="group-0-button-max"
|
|
1924
1969
|
tabindex="0"
|
|
1925
1970
|
>
|
|
1926
1971
|
<ui-icon
|
|
@@ -1944,10 +1989,11 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
1944
1989
|
/>
|
|
1945
1990
|
</svg>
|
|
1946
1991
|
</ui-icon>
|
|
1947
|
-
</button>
|
|
1992
|
+
</ui-button>
|
|
1948
1993
|
</ui-input-number>
|
|
1949
1994
|
<ui-input-number
|
|
1950
1995
|
class="view row inputNumber"
|
|
1996
|
+
data-testid="group-1"
|
|
1951
1997
|
>
|
|
1952
1998
|
<ui-view
|
|
1953
1999
|
class="view texts"
|
|
@@ -1969,9 +2015,10 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
1969
2015
|
to
|
|
1970
2016
|
</ui-text>
|
|
1971
2017
|
</ui-view>
|
|
1972
|
-
<button
|
|
2018
|
+
<ui-button
|
|
1973
2019
|
class="pressable disabled button small squared disabled"
|
|
1974
|
-
|
|
2020
|
+
data-testid="group-1-button-min"
|
|
2021
|
+
disabled="true"
|
|
1975
2022
|
>
|
|
1976
2023
|
<ui-icon
|
|
1977
2024
|
class="icon headline-3"
|
|
@@ -1994,14 +2041,15 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
1994
2041
|
/>
|
|
1995
2042
|
</svg>
|
|
1996
2043
|
</ui-icon>
|
|
1997
|
-
</button>
|
|
2044
|
+
</ui-button>
|
|
1998
2045
|
<ui-text
|
|
1999
2046
|
class="text paragraph value"
|
|
2000
2047
|
>
|
|
2001
2048
|
0
|
|
2002
2049
|
</ui-text>
|
|
2003
|
-
<button
|
|
2050
|
+
<ui-button
|
|
2004
2051
|
class="pressable button small squared secondary"
|
|
2052
|
+
data-testid="group-1-button-max"
|
|
2005
2053
|
tabindex="0"
|
|
2006
2054
|
>
|
|
2007
2055
|
<ui-icon
|
|
@@ -2025,19 +2073,19 @@ exports[`component:<FieldOccupation> renders 1`] = `
|
|
|
2025
2073
|
/>
|
|
2026
2074
|
</svg>
|
|
2027
2075
|
</ui-icon>
|
|
2028
|
-
</button>
|
|
2076
|
+
</ui-button>
|
|
2029
2077
|
</ui-input-number>
|
|
2030
2078
|
</ui-view>
|
|
2031
2079
|
</ui-scrollview>
|
|
2032
2080
|
<ui-view
|
|
2033
2081
|
class="view row"
|
|
2034
2082
|
>
|
|
2035
|
-
<button
|
|
2083
|
+
<ui-button
|
|
2036
2084
|
class="pressable button secondary"
|
|
2037
2085
|
tabindex="0"
|
|
2038
2086
|
>
|
|
2039
2087
|
finder.action.add_place_type.room
|
|
2040
|
-
</button>
|
|
2088
|
+
</ui-button>
|
|
2041
2089
|
</ui-view>
|
|
2042
2090
|
</ui-view>
|
|
2043
2091
|
</ui-layer-content>
|
|
@@ -2122,6 +2170,7 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2122
2170
|
</ui-view>
|
|
2123
2171
|
<ui-input-number
|
|
2124
2172
|
class="view row inputNumber"
|
|
2173
|
+
data-testid="group-0"
|
|
2125
2174
|
>
|
|
2126
2175
|
<ui-view
|
|
2127
2176
|
class="view texts"
|
|
@@ -2137,8 +2186,9 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2137
2186
|
common.label.age_from
|
|
2138
2187
|
</ui-text>
|
|
2139
2188
|
</ui-view>
|
|
2140
|
-
<button
|
|
2189
|
+
<ui-button
|
|
2141
2190
|
class="pressable button small squared secondary"
|
|
2191
|
+
data-testid="group-0-button-min"
|
|
2142
2192
|
tabindex="0"
|
|
2143
2193
|
>
|
|
2144
2194
|
<ui-icon
|
|
@@ -2162,14 +2212,15 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2162
2212
|
/>
|
|
2163
2213
|
</svg>
|
|
2164
2214
|
</ui-icon>
|
|
2165
|
-
</button>
|
|
2215
|
+
</ui-button>
|
|
2166
2216
|
<ui-text
|
|
2167
2217
|
class="text paragraph value"
|
|
2168
2218
|
>
|
|
2169
2219
|
2
|
|
2170
2220
|
</ui-text>
|
|
2171
|
-
<button
|
|
2221
|
+
<ui-button
|
|
2172
2222
|
class="pressable button small squared secondary"
|
|
2223
|
+
data-testid="group-0-button-max"
|
|
2173
2224
|
tabindex="0"
|
|
2174
2225
|
>
|
|
2175
2226
|
<ui-icon
|
|
@@ -2193,10 +2244,11 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2193
2244
|
/>
|
|
2194
2245
|
</svg>
|
|
2195
2246
|
</ui-icon>
|
|
2196
|
-
</button>
|
|
2247
|
+
</ui-button>
|
|
2197
2248
|
</ui-input-number>
|
|
2198
2249
|
<ui-input-number
|
|
2199
2250
|
class="view row inputNumber"
|
|
2251
|
+
data-testid="group-1"
|
|
2200
2252
|
>
|
|
2201
2253
|
<ui-view
|
|
2202
2254
|
class="view texts"
|
|
@@ -2218,9 +2270,10 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2218
2270
|
to
|
|
2219
2271
|
</ui-text>
|
|
2220
2272
|
</ui-view>
|
|
2221
|
-
<button
|
|
2273
|
+
<ui-button
|
|
2222
2274
|
class="pressable disabled button small squared disabled"
|
|
2223
|
-
|
|
2275
|
+
data-testid="group-1-button-min"
|
|
2276
|
+
disabled="true"
|
|
2224
2277
|
>
|
|
2225
2278
|
<ui-icon
|
|
2226
2279
|
class="icon headline-3"
|
|
@@ -2243,14 +2296,15 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2243
2296
|
/>
|
|
2244
2297
|
</svg>
|
|
2245
2298
|
</ui-icon>
|
|
2246
|
-
</button>
|
|
2299
|
+
</ui-button>
|
|
2247
2300
|
<ui-text
|
|
2248
2301
|
class="text paragraph value"
|
|
2249
2302
|
>
|
|
2250
2303
|
0
|
|
2251
2304
|
</ui-text>
|
|
2252
|
-
<button
|
|
2305
|
+
<ui-button
|
|
2253
2306
|
class="pressable button small squared secondary"
|
|
2307
|
+
data-testid="group-1-button-max"
|
|
2254
2308
|
tabindex="0"
|
|
2255
2309
|
>
|
|
2256
2310
|
<ui-icon
|
|
@@ -2274,20 +2328,20 @@ exports[`component:<FieldOccupation> testID 1`] = `
|
|
|
2274
2328
|
/>
|
|
2275
2329
|
</svg>
|
|
2276
2330
|
</ui-icon>
|
|
2277
|
-
</button>
|
|
2331
|
+
</ui-button>
|
|
2278
2332
|
</ui-input-number>
|
|
2279
2333
|
</ui-view>
|
|
2280
2334
|
</ui-scrollview>
|
|
2281
2335
|
<ui-view
|
|
2282
2336
|
class="view row"
|
|
2283
2337
|
>
|
|
2284
|
-
<button
|
|
2338
|
+
<ui-button
|
|
2285
2339
|
class="pressable button secondary"
|
|
2286
2340
|
data-testid="mirai-add-room"
|
|
2287
2341
|
tabindex="0"
|
|
2288
2342
|
>
|
|
2289
2343
|
finder.action.add_place_type.room
|
|
2290
|
-
</button>
|
|
2344
|
+
</ui-button>
|
|
2291
2345
|
</ui-view>
|
|
2292
2346
|
</ui-view>
|
|
2293
2347
|
</ui-layer-content>
|