@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.
Files changed (46) hide show
  1. package/build/Core.js +3 -5
  2. package/build/Core.js.map +1 -1
  3. package/build/components/Booking/partials/__tests__/__snapshots__/Booking.Modal.test.js.snap +24 -24
  4. package/build/components/BookingQuery/__tests__/__snapshots__/BookingQuery.test.js.snap +30 -30
  5. package/build/components/Chat/components/Input/__tests__/__snapshots__/Input.test.jsx.snap +9 -9
  6. package/build/components/Chat/components/InputRich/__tests__/__snapshots__/InputRich.test.jsx.snap +17 -17
  7. package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Confirmation.test.js.snap +30 -24
  8. package/build/components/Checkout/partials/__tests__/__snapshots__/Checkout.Form.test.js.snap +8 -8
  9. package/build/components/Deals/__tests__/__snapshots__/Deals.Calendar.test.js.snap +6 -6
  10. package/build/components/Deals/__tests__/__snapshots__/Deals.test.js.snap +95 -70
  11. package/build/components/Finder/Finder.compact.js +1 -1
  12. package/build/components/Finder/Finder.compact.js.map +1 -1
  13. package/build/components/Finder/Finder.js +1 -0
  14. package/build/components/Finder/Finder.js.map +1 -1
  15. package/build/components/Finder/Finder.module.css +21 -10
  16. package/build/components/Finder/__tests__/__snapshots__/Finder.test.js.snap +294 -210
  17. package/build/components/Finder/components/Calendar/__tests__/__snapshots__/Calendar.test.js.snap +18 -18
  18. package/build/components/Rates/Rates.js +1 -1
  19. package/build/components/Rates/Rates.js.map +1 -1
  20. package/build/components/Rates/components/Filters/Filters.module.css +4 -0
  21. package/build/components/Rates/components/ModalExtras/ModalExtras.js +0 -1
  22. package/build/components/Rates/components/ModalExtras/ModalExtras.js.map +1 -1
  23. package/build/components/Session/__tests__/__snapshots__/Session.test.js.snap +33 -33
  24. package/build/components/Signup/__tests__/__snapshots__/Signup.test.js.snap +9 -6
  25. package/build/components/__shared__/BookingDetails/__tests__/__snapshots__/BookingDetails.test.js.snap +10 -10
  26. package/build/components/__shared__/BookingTerms/__tests__/__snapshots__/BookingTerms.test.js.snap +8 -8
  27. package/build/components/__shared__/ButtonMore/__tests__/__snapshots__/ButtonMore.test.js.snap +6 -6
  28. package/build/components/__shared__/ButtonPayment/__tests__/__snapshots__/ButtonPayment.test.js.snap +17 -17
  29. package/build/components/__shared__/ButtonPayment/components/FormCheckout/__tests__/__snapshots__/FormCheckout.test.js.snap +9 -9
  30. package/build/components/__shared__/ButtonPayment/components/FormPaycomet/__tests__/__snapshots__/FormPaycomet.test.js.snap +3 -2
  31. package/build/components/__shared__/Field/__tests__/__snapshots__/Field.test.js.snap +32 -32
  32. package/build/components/__shared__/FieldOccupation/FieldOccupation.js +3 -0
  33. package/build/components/__shared__/FieldOccupation/FieldOccupation.js.map +1 -1
  34. package/build/components/__shared__/FieldOccupation/__tests__/__snapshots__/FieldOccupation.test.js.snap +150 -96
  35. package/build/components/__shared__/Occupation/Occupation.Group.js +4 -2
  36. package/build/components/__shared__/Occupation/Occupation.Group.js.map +1 -1
  37. package/build/components/__shared__/Occupation/Occupation.js +2 -1
  38. package/build/components/__shared__/Occupation/Occupation.js.map +1 -1
  39. package/build/components/__shared__/Occupation/__tests__/__snapshots__/Occupation.test.js.snap +258 -168
  40. package/build/helpers/getContents.js +16 -0
  41. package/build/helpers/getContents.js.map +1 -0
  42. package/build/helpers/index.js +22 -0
  43. package/build/helpers/index.js.map +1 -1
  44. package/build/theme.css +2 -0
  45. package/package.json +1 -1
  46. package/public/App.jsx +1 -1
@@ -65,6 +65,7 @@ exports[` 1`] = `
65
65
  </ui-view>
66
66
  <ui-input-number
67
67
  class="view row inputNumber"
68
+ data-testid="group-0"
68
69
  >
69
70
  <ui-view
70
71
  class="view texts"
@@ -80,9 +81,10 @@ exports[` 1`] = `
80
81
  common.label.age_from
81
82
  </ui-text>
82
83
  </ui-view>
83
- <button
84
+ <ui-button
84
85
  class="pressable disabled button small squared disabled"
85
- disabled=""
86
+ data-testid="group-0-button-min"
87
+ disabled="true"
86
88
  >
87
89
  <ui-icon
88
90
  class="icon headline-3"
@@ -105,14 +107,15 @@ exports[` 1`] = `
105
107
  />
106
108
  </svg>
107
109
  </ui-icon>
108
- </button>
110
+ </ui-button>
109
111
  <ui-text
110
112
  class="text paragraph value"
111
113
  >
112
114
  2
113
115
  </ui-text>
114
- <button
116
+ <ui-button
115
117
  class="pressable button small squared secondary"
118
+ data-testid="group-0-button-max"
116
119
  tabindex="0"
117
120
  >
118
121
  <ui-icon
@@ -136,10 +139,11 @@ exports[` 1`] = `
136
139
  />
137
140
  </svg>
138
141
  </ui-icon>
139
- </button>
142
+ </ui-button>
140
143
  </ui-input-number>
141
144
  <ui-input-number
142
145
  class="view row inputNumber"
146
+ data-testid="group-1"
143
147
  >
144
148
  <ui-view
145
149
  class="view texts"
@@ -161,8 +165,9 @@ exports[` 1`] = `
161
165
  to
162
166
  </ui-text>
163
167
  </ui-view>
164
- <button
168
+ <ui-button
165
169
  class="pressable button small squared secondary"
170
+ data-testid="group-1-button-min"
166
171
  tabindex="0"
167
172
  >
168
173
  <ui-icon
@@ -186,15 +191,16 @@ exports[` 1`] = `
186
191
  />
187
192
  </svg>
188
193
  </ui-icon>
189
- </button>
194
+ </ui-button>
190
195
  <ui-text
191
196
  class="text paragraph value"
192
197
  >
193
198
  2
194
199
  </ui-text>
195
- <button
200
+ <ui-button
196
201
  class="pressable disabled button small squared disabled"
197
- disabled=""
202
+ data-testid="group-1-button-max"
203
+ disabled="true"
198
204
  >
199
205
  <ui-icon
200
206
  class="icon headline-3"
@@ -217,7 +223,7 @@ exports[` 1`] = `
217
223
  />
218
224
  </svg>
219
225
  </ui-icon>
220
- </button>
226
+ </ui-button>
221
227
  </ui-input-number>
222
228
  <ui-view
223
229
  class="view"
@@ -527,6 +533,7 @@ exports[` 1`] = `
527
533
  </ui-view>
528
534
  <ui-input-number
529
535
  class="view row inputNumber"
536
+ data-testid="group-0"
530
537
  >
531
538
  <ui-view
532
539
  class="view texts"
@@ -542,9 +549,10 @@ exports[` 1`] = `
542
549
  common.label.age_from
543
550
  </ui-text>
544
551
  </ui-view>
545
- <button
552
+ <ui-button
546
553
  class="pressable disabled button small squared disabled"
547
- disabled=""
554
+ data-testid="group-0-button-min"
555
+ disabled="true"
548
556
  >
549
557
  <ui-icon
550
558
  class="icon headline-3"
@@ -567,14 +575,15 @@ exports[` 1`] = `
567
575
  />
568
576
  </svg>
569
577
  </ui-icon>
570
- </button>
578
+ </ui-button>
571
579
  <ui-text
572
580
  class="text paragraph value"
573
581
  >
574
582
  2
575
583
  </ui-text>
576
- <button
584
+ <ui-button
577
585
  class="pressable button small squared secondary"
586
+ data-testid="group-0-button-max"
578
587
  tabindex="0"
579
588
  >
580
589
  <ui-icon
@@ -598,10 +607,11 @@ exports[` 1`] = `
598
607
  />
599
608
  </svg>
600
609
  </ui-icon>
601
- </button>
610
+ </ui-button>
602
611
  </ui-input-number>
603
612
  <ui-input-number
604
613
  class="view row inputNumber"
614
+ data-testid="group-1"
605
615
  >
606
616
  <ui-view
607
617
  class="view texts"
@@ -623,9 +633,10 @@ exports[` 1`] = `
623
633
  to
624
634
  </ui-text>
625
635
  </ui-view>
626
- <button
636
+ <ui-button
627
637
  class="pressable disabled button small squared disabled"
628
- disabled=""
638
+ data-testid="group-1-button-min"
639
+ disabled="true"
629
640
  >
630
641
  <ui-icon
631
642
  class="icon headline-3"
@@ -648,14 +659,15 @@ exports[` 1`] = `
648
659
  />
649
660
  </svg>
650
661
  </ui-icon>
651
- </button>
662
+ </ui-button>
652
663
  <ui-text
653
664
  class="text paragraph value"
654
665
  >
655
666
  0
656
667
  </ui-text>
657
- <button
668
+ <ui-button
658
669
  class="pressable button small squared secondary"
670
+ data-testid="group-1-button-max"
659
671
  tabindex="0"
660
672
  >
661
673
  <ui-icon
@@ -679,19 +691,19 @@ exports[` 1`] = `
679
691
  />
680
692
  </svg>
681
693
  </ui-icon>
682
- </button>
694
+ </ui-button>
683
695
  </ui-input-number>
684
696
  </ui-view>
685
697
  </ui-scrollview>
686
698
  <ui-view
687
699
  class="view row"
688
700
  >
689
- <button
701
+ <ui-button
690
702
  class="pressable button secondary"
691
703
  tabindex="0"
692
704
  >
693
705
  finder.action.add_place_type.room
694
- </button>
706
+ </ui-button>
695
707
  </ui-view>
696
708
  </ui-view>
697
709
  </DocumentFragment>
@@ -727,6 +739,7 @@ exports[`component:<Occupation> adding a new room 1`] = `
727
739
  </ui-view>
728
740
  <ui-input-number
729
741
  class="view row inputNumber"
742
+ data-testid="group-0"
730
743
  >
731
744
  <ui-view
732
745
  class="view texts"
@@ -742,9 +755,10 @@ exports[`component:<Occupation> adding a new room 1`] = `
742
755
  common.label.age_from
743
756
  </ui-text>
744
757
  </ui-view>
745
- <button
758
+ <ui-button
746
759
  class="pressable disabled button small squared disabled"
747
- disabled=""
760
+ data-testid="group-0-button-min"
761
+ disabled="true"
748
762
  >
749
763
  <ui-icon
750
764
  class="icon headline-3"
@@ -767,14 +781,15 @@ exports[`component:<Occupation> adding a new room 1`] = `
767
781
  />
768
782
  </svg>
769
783
  </ui-icon>
770
- </button>
784
+ </ui-button>
771
785
  <ui-text
772
786
  class="text paragraph value"
773
787
  >
774
788
  2
775
789
  </ui-text>
776
- <button
790
+ <ui-button
777
791
  class="pressable button small squared secondary"
792
+ data-testid="group-0-button-max"
778
793
  tabindex="0"
779
794
  >
780
795
  <ui-icon
@@ -798,10 +813,11 @@ exports[`component:<Occupation> adding a new room 1`] = `
798
813
  />
799
814
  </svg>
800
815
  </ui-icon>
801
- </button>
816
+ </ui-button>
802
817
  </ui-input-number>
803
818
  <ui-input-number
804
819
  class="view row inputNumber"
820
+ data-testid="group-1"
805
821
  >
806
822
  <ui-view
807
823
  class="view texts"
@@ -823,9 +839,10 @@ exports[`component:<Occupation> adding a new room 1`] = `
823
839
  to
824
840
  </ui-text>
825
841
  </ui-view>
826
- <button
842
+ <ui-button
827
843
  class="pressable disabled button small squared disabled"
828
- disabled=""
844
+ data-testid="group-1-button-min"
845
+ disabled="true"
829
846
  >
830
847
  <ui-icon
831
848
  class="icon headline-3"
@@ -848,14 +865,15 @@ exports[`component:<Occupation> adding a new room 1`] = `
848
865
  />
849
866
  </svg>
850
867
  </ui-icon>
851
- </button>
868
+ </ui-button>
852
869
  <ui-text
853
870
  class="text paragraph value"
854
871
  >
855
872
  0
856
873
  </ui-text>
857
- <button
874
+ <ui-button
858
875
  class="pressable button small squared secondary"
876
+ data-testid="group-1-button-max"
859
877
  tabindex="0"
860
878
  >
861
879
  <ui-icon
@@ -879,20 +897,20 @@ exports[`component:<Occupation> adding a new room 1`] = `
879
897
  />
880
898
  </svg>
881
899
  </ui-icon>
882
- </button>
900
+ </ui-button>
883
901
  </ui-input-number>
884
902
  </ui-view>
885
903
  </ui-scrollview>
886
904
  <ui-view
887
905
  class="view row"
888
906
  >
889
- <button
907
+ <ui-button
890
908
  class="pressable button secondary"
891
909
  data-testid="occupation-add-room"
892
910
  tabindex="0"
893
911
  >
894
912
  finder.action.add_place_type.room
895
- </button>
913
+ </ui-button>
896
914
  </ui-view>
897
915
  </ui-view>
898
916
  </DocumentFragment>
@@ -927,6 +945,7 @@ exports[`component:<Occupation> inherit:className 1`] = `
927
945
  </ui-view>
928
946
  <ui-input-number
929
947
  class="view row inputNumber"
948
+ data-testid="group-0"
930
949
  >
931
950
  <ui-view
932
951
  class="view texts"
@@ -942,9 +961,10 @@ exports[`component:<Occupation> inherit:className 1`] = `
942
961
  common.label.age_from
943
962
  </ui-text>
944
963
  </ui-view>
945
- <button
964
+ <ui-button
946
965
  class="pressable disabled button small squared disabled"
947
- disabled=""
966
+ data-testid="group-0-button-min"
967
+ disabled="true"
948
968
  >
949
969
  <ui-icon
950
970
  class="icon headline-3"
@@ -967,14 +987,15 @@ exports[`component:<Occupation> inherit:className 1`] = `
967
987
  />
968
988
  </svg>
969
989
  </ui-icon>
970
- </button>
990
+ </ui-button>
971
991
  <ui-text
972
992
  class="text paragraph value"
973
993
  >
974
994
  2
975
995
  </ui-text>
976
- <button
996
+ <ui-button
977
997
  class="pressable button small squared secondary"
998
+ data-testid="group-0-button-max"
978
999
  tabindex="0"
979
1000
  >
980
1001
  <ui-icon
@@ -998,10 +1019,11 @@ exports[`component:<Occupation> inherit:className 1`] = `
998
1019
  />
999
1020
  </svg>
1000
1021
  </ui-icon>
1001
- </button>
1022
+ </ui-button>
1002
1023
  </ui-input-number>
1003
1024
  <ui-input-number
1004
1025
  class="view row inputNumber"
1026
+ data-testid="group-1"
1005
1027
  >
1006
1028
  <ui-view
1007
1029
  class="view texts"
@@ -1023,9 +1045,10 @@ exports[`component:<Occupation> inherit:className 1`] = `
1023
1045
  to
1024
1046
  </ui-text>
1025
1047
  </ui-view>
1026
- <button
1048
+ <ui-button
1027
1049
  class="pressable disabled button small squared disabled"
1028
- disabled=""
1050
+ data-testid="group-1-button-min"
1051
+ disabled="true"
1029
1052
  >
1030
1053
  <ui-icon
1031
1054
  class="icon headline-3"
@@ -1048,14 +1071,15 @@ exports[`component:<Occupation> inherit:className 1`] = `
1048
1071
  />
1049
1072
  </svg>
1050
1073
  </ui-icon>
1051
- </button>
1074
+ </ui-button>
1052
1075
  <ui-text
1053
1076
  class="text paragraph value"
1054
1077
  >
1055
1078
  0
1056
1079
  </ui-text>
1057
- <button
1080
+ <ui-button
1058
1081
  class="pressable button small squared secondary"
1082
+ data-testid="group-1-button-max"
1059
1083
  tabindex="0"
1060
1084
  >
1061
1085
  <ui-icon
@@ -1079,19 +1103,19 @@ exports[`component:<Occupation> inherit:className 1`] = `
1079
1103
  />
1080
1104
  </svg>
1081
1105
  </ui-icon>
1082
- </button>
1106
+ </ui-button>
1083
1107
  </ui-input-number>
1084
1108
  </ui-view>
1085
1109
  </ui-scrollview>
1086
1110
  <ui-view
1087
1111
  class="view row"
1088
1112
  >
1089
- <button
1113
+ <ui-button
1090
1114
  class="pressable button secondary"
1091
1115
  tabindex="0"
1092
1116
  >
1093
1117
  finder.action.add_place_type.room
1094
- </button>
1118
+ </ui-button>
1095
1119
  </ui-view>
1096
1120
  </ui-view>
1097
1121
  </DocumentFragment>
@@ -1126,6 +1150,7 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
1126
1150
  </ui-view>
1127
1151
  <ui-input-number
1128
1152
  class="view row inputNumber"
1153
+ data-testid="group-0"
1129
1154
  >
1130
1155
  <ui-view
1131
1156
  class="view texts"
@@ -1141,9 +1166,10 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
1141
1166
  common.label.age_from
1142
1167
  </ui-text>
1143
1168
  </ui-view>
1144
- <button
1169
+ <ui-button
1145
1170
  class="pressable disabled button small squared disabled"
1146
- disabled=""
1171
+ data-testid="group-0-button-min"
1172
+ disabled="true"
1147
1173
  >
1148
1174
  <ui-icon
1149
1175
  class="icon headline-3"
@@ -1166,14 +1192,15 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
1166
1192
  />
1167
1193
  </svg>
1168
1194
  </ui-icon>
1169
- </button>
1195
+ </ui-button>
1170
1196
  <ui-text
1171
1197
  class="text paragraph value"
1172
1198
  >
1173
1199
  2
1174
1200
  </ui-text>
1175
- <button
1201
+ <ui-button
1176
1202
  class="pressable button small squared secondary"
1203
+ data-testid="group-0-button-max"
1177
1204
  tabindex="0"
1178
1205
  >
1179
1206
  <ui-icon
@@ -1197,10 +1224,11 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
1197
1224
  />
1198
1225
  </svg>
1199
1226
  </ui-icon>
1200
- </button>
1227
+ </ui-button>
1201
1228
  </ui-input-number>
1202
1229
  <ui-input-number
1203
1230
  class="view row inputNumber"
1231
+ data-testid="group-1"
1204
1232
  >
1205
1233
  <ui-view
1206
1234
  class="view texts"
@@ -1222,9 +1250,10 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
1222
1250
  to
1223
1251
  </ui-text>
1224
1252
  </ui-view>
1225
- <button
1253
+ <ui-button
1226
1254
  class="pressable disabled button small squared disabled"
1227
- disabled=""
1255
+ data-testid="group-1-button-min"
1256
+ disabled="true"
1228
1257
  >
1229
1258
  <ui-icon
1230
1259
  class="icon headline-3"
@@ -1247,14 +1276,15 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
1247
1276
  />
1248
1277
  </svg>
1249
1278
  </ui-icon>
1250
- </button>
1279
+ </ui-button>
1251
1280
  <ui-text
1252
1281
  class="text paragraph value"
1253
1282
  >
1254
1283
  0
1255
1284
  </ui-text>
1256
- <button
1285
+ <ui-button
1257
1286
  class="pressable button small squared secondary"
1287
+ data-testid="group-1-button-max"
1258
1288
  tabindex="0"
1259
1289
  >
1260
1290
  <ui-icon
@@ -1278,19 +1308,19 @@ exports[`component:<Occupation> prop:dataSource 1`] = `
1278
1308
  />
1279
1309
  </svg>
1280
1310
  </ui-icon>
1281
- </button>
1311
+ </ui-button>
1282
1312
  </ui-input-number>
1283
1313
  </ui-view>
1284
1314
  </ui-scrollview>
1285
1315
  <ui-view
1286
1316
  class="view row"
1287
1317
  >
1288
- <button
1318
+ <ui-button
1289
1319
  class="pressable button secondary"
1290
1320
  tabindex="0"
1291
1321
  >
1292
1322
  finder.action.add_place_type.room
1293
- </button>
1323
+ </ui-button>
1294
1324
  </ui-view>
1295
1325
  </ui-view>
1296
1326
  </DocumentFragment>
@@ -1324,6 +1354,7 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
1324
1354
  </ui-view>
1325
1355
  <ui-input-number
1326
1356
  class="view row inputNumber"
1357
+ data-testid="group-0"
1327
1358
  >
1328
1359
  <ui-view
1329
1360
  class="view texts"
@@ -1339,8 +1370,9 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
1339
1370
  common.label.age_from
1340
1371
  </ui-text>
1341
1372
  </ui-view>
1342
- <button
1373
+ <ui-button
1343
1374
  class="pressable button small squared secondary"
1375
+ data-testid="group-0-button-min"
1344
1376
  tabindex="0"
1345
1377
  >
1346
1378
  <ui-icon
@@ -1364,14 +1396,15 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
1364
1396
  />
1365
1397
  </svg>
1366
1398
  </ui-icon>
1367
- </button>
1399
+ </ui-button>
1368
1400
  <ui-text
1369
1401
  class="text paragraph value"
1370
1402
  >
1371
1403
  2
1372
1404
  </ui-text>
1373
- <button
1405
+ <ui-button
1374
1406
  class="pressable button small squared secondary"
1407
+ data-testid="group-0-button-max"
1375
1408
  tabindex="0"
1376
1409
  >
1377
1410
  <ui-icon
@@ -1395,10 +1428,11 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
1395
1428
  />
1396
1429
  </svg>
1397
1430
  </ui-icon>
1398
- </button>
1431
+ </ui-button>
1399
1432
  </ui-input-number>
1400
1433
  <ui-input-number
1401
1434
  class="view row inputNumber"
1435
+ data-testid="group-1"
1402
1436
  >
1403
1437
  <ui-view
1404
1438
  class="view texts"
@@ -1420,9 +1454,10 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
1420
1454
  to
1421
1455
  </ui-text>
1422
1456
  </ui-view>
1423
- <button
1457
+ <ui-button
1424
1458
  class="pressable disabled button small squared disabled"
1425
- disabled=""
1459
+ data-testid="group-1-button-min"
1460
+ disabled="true"
1426
1461
  >
1427
1462
  <ui-icon
1428
1463
  class="icon headline-3"
@@ -1445,14 +1480,15 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
1445
1480
  />
1446
1481
  </svg>
1447
1482
  </ui-icon>
1448
- </button>
1483
+ </ui-button>
1449
1484
  <ui-text
1450
1485
  class="text paragraph value"
1451
1486
  >
1452
1487
  0
1453
1488
  </ui-text>
1454
- <button
1489
+ <ui-button
1455
1490
  class="pressable button small squared secondary"
1491
+ data-testid="group-1-button-max"
1456
1492
  tabindex="0"
1457
1493
  >
1458
1494
  <ui-icon
@@ -1476,19 +1512,19 @@ exports[`component:<Occupation> prop:maxRooms 1`] = `
1476
1512
  />
1477
1513
  </svg>
1478
1514
  </ui-icon>
1479
- </button>
1515
+ </ui-button>
1480
1516
  </ui-input-number>
1481
1517
  </ui-view>
1482
1518
  </ui-scrollview>
1483
1519
  <ui-view
1484
1520
  class="view row"
1485
1521
  >
1486
- <button
1522
+ <ui-button
1487
1523
  class="pressable disabled button disabled"
1488
- disabled=""
1524
+ disabled="true"
1489
1525
  >
1490
1526
  finder.action.add_place_type.room
1491
- </button>
1527
+ </ui-button>
1492
1528
  </ui-view>
1493
1529
  </ui-view>
1494
1530
  </DocumentFragment>
@@ -1522,6 +1558,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1522
1558
  </ui-view>
1523
1559
  <ui-input-number
1524
1560
  class="view row inputNumber"
1561
+ data-testid="group-0"
1525
1562
  >
1526
1563
  <ui-view
1527
1564
  class="view texts"
@@ -1537,8 +1574,9 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1537
1574
  common.label.age_from
1538
1575
  </ui-text>
1539
1576
  </ui-view>
1540
- <button
1577
+ <ui-button
1541
1578
  class="pressable button small squared secondary"
1579
+ data-testid="group-0-button-min"
1542
1580
  tabindex="0"
1543
1581
  >
1544
1582
  <ui-icon
@@ -1562,14 +1600,15 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1562
1600
  />
1563
1601
  </svg>
1564
1602
  </ui-icon>
1565
- </button>
1603
+ </ui-button>
1566
1604
  <ui-text
1567
1605
  class="text paragraph value"
1568
1606
  >
1569
1607
  2
1570
1608
  </ui-text>
1571
- <button
1609
+ <ui-button
1572
1610
  class="pressable button small squared secondary"
1611
+ data-testid="group-0-button-max"
1573
1612
  tabindex="0"
1574
1613
  >
1575
1614
  <ui-icon
@@ -1593,10 +1632,11 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1593
1632
  />
1594
1633
  </svg>
1595
1634
  </ui-icon>
1596
- </button>
1635
+ </ui-button>
1597
1636
  </ui-input-number>
1598
1637
  <ui-input-number
1599
1638
  class="view row inputNumber"
1639
+ data-testid="group-1"
1600
1640
  >
1601
1641
  <ui-view
1602
1642
  class="view texts"
@@ -1618,9 +1658,10 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1618
1658
  to
1619
1659
  </ui-text>
1620
1660
  </ui-view>
1621
- <button
1661
+ <ui-button
1622
1662
  class="pressable disabled button small squared disabled"
1623
- disabled=""
1663
+ data-testid="group-1-button-min"
1664
+ disabled="true"
1624
1665
  >
1625
1666
  <ui-icon
1626
1667
  class="icon headline-3"
@@ -1643,14 +1684,15 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1643
1684
  />
1644
1685
  </svg>
1645
1686
  </ui-icon>
1646
- </button>
1687
+ </ui-button>
1647
1688
  <ui-text
1648
1689
  class="text paragraph value"
1649
1690
  >
1650
1691
  0
1651
1692
  </ui-text>
1652
- <button
1693
+ <ui-button
1653
1694
  class="pressable button small squared secondary"
1695
+ data-testid="group-1-button-max"
1654
1696
  tabindex="0"
1655
1697
  >
1656
1698
  <ui-icon
@@ -1674,7 +1716,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1674
1716
  />
1675
1717
  </svg>
1676
1718
  </ui-icon>
1677
- </button>
1719
+ </ui-button>
1678
1720
  </ui-input-number>
1679
1721
  </ui-view>
1680
1722
  <ui-view
@@ -1697,6 +1739,7 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1697
1739
  </ui-view>
1698
1740
  <ui-input-number
1699
1741
  class="view row inputNumber"
1742
+ data-testid="group-0"
1700
1743
  >
1701
1744
  <ui-view
1702
1745
  class="view texts"
@@ -1712,8 +1755,9 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1712
1755
  common.label.age_from
1713
1756
  </ui-text>
1714
1757
  </ui-view>
1715
- <button
1758
+ <ui-button
1716
1759
  class="pressable button small squared secondary"
1760
+ data-testid="group-0-button-min"
1717
1761
  tabindex="0"
1718
1762
  >
1719
1763
  <ui-icon
@@ -1737,14 +1781,15 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1737
1781
  />
1738
1782
  </svg>
1739
1783
  </ui-icon>
1740
- </button>
1784
+ </ui-button>
1741
1785
  <ui-text
1742
1786
  class="text paragraph value"
1743
1787
  >
1744
1788
  2
1745
1789
  </ui-text>
1746
- <button
1790
+ <ui-button
1747
1791
  class="pressable button small squared secondary"
1792
+ data-testid="group-0-button-max"
1748
1793
  tabindex="0"
1749
1794
  >
1750
1795
  <ui-icon
@@ -1768,10 +1813,11 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1768
1813
  />
1769
1814
  </svg>
1770
1815
  </ui-icon>
1771
- </button>
1816
+ </ui-button>
1772
1817
  </ui-input-number>
1773
1818
  <ui-input-number
1774
1819
  class="view row inputNumber"
1820
+ data-testid="group-1"
1775
1821
  >
1776
1822
  <ui-view
1777
1823
  class="view texts"
@@ -1793,9 +1839,10 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1793
1839
  to
1794
1840
  </ui-text>
1795
1841
  </ui-view>
1796
- <button
1842
+ <ui-button
1797
1843
  class="pressable disabled button small squared disabled"
1798
- disabled=""
1844
+ data-testid="group-1-button-min"
1845
+ disabled="true"
1799
1846
  >
1800
1847
  <ui-icon
1801
1848
  class="icon headline-3"
@@ -1818,14 +1865,15 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1818
1865
  />
1819
1866
  </svg>
1820
1867
  </ui-icon>
1821
- </button>
1868
+ </ui-button>
1822
1869
  <ui-text
1823
1870
  class="text paragraph value"
1824
1871
  >
1825
1872
  0
1826
1873
  </ui-text>
1827
- <button
1874
+ <ui-button
1828
1875
  class="pressable button small squared secondary"
1876
+ data-testid="group-1-button-max"
1829
1877
  tabindex="0"
1830
1878
  >
1831
1879
  <ui-icon
@@ -1849,19 +1897,19 @@ exports[`component:<Occupation> prop:minRooms 1`] = `
1849
1897
  />
1850
1898
  </svg>
1851
1899
  </ui-icon>
1852
- </button>
1900
+ </ui-button>
1853
1901
  </ui-input-number>
1854
1902
  </ui-view>
1855
1903
  </ui-scrollview>
1856
1904
  <ui-view
1857
1905
  class="view row"
1858
1906
  >
1859
- <button
1907
+ <ui-button
1860
1908
  class="pressable button secondary"
1861
1909
  tabindex="0"
1862
1910
  >
1863
1911
  finder.action.add_place_type.room
1864
- </button>
1912
+ </ui-button>
1865
1913
  </ui-view>
1866
1914
  </ui-view>
1867
1915
  </DocumentFragment>
@@ -1895,6 +1943,7 @@ exports[`component:<Occupation> prop:text 1`] = `
1895
1943
  </ui-view>
1896
1944
  <ui-input-number
1897
1945
  class="view row inputNumber"
1946
+ data-testid="group-0"
1898
1947
  >
1899
1948
  <ui-view
1900
1949
  class="view texts"
@@ -1910,8 +1959,9 @@ exports[`component:<Occupation> prop:text 1`] = `
1910
1959
  common.label.age_from
1911
1960
  </ui-text>
1912
1961
  </ui-view>
1913
- <button
1962
+ <ui-button
1914
1963
  class="pressable button small squared secondary"
1964
+ data-testid="group-0-button-min"
1915
1965
  tabindex="0"
1916
1966
  >
1917
1967
  <ui-icon
@@ -1935,14 +1985,15 @@ exports[`component:<Occupation> prop:text 1`] = `
1935
1985
  />
1936
1986
  </svg>
1937
1987
  </ui-icon>
1938
- </button>
1988
+ </ui-button>
1939
1989
  <ui-text
1940
1990
  class="text paragraph value"
1941
1991
  >
1942
1992
  2
1943
1993
  </ui-text>
1944
- <button
1994
+ <ui-button
1945
1995
  class="pressable button small squared secondary"
1996
+ data-testid="group-0-button-max"
1946
1997
  tabindex="0"
1947
1998
  >
1948
1999
  <ui-icon
@@ -1966,10 +2017,11 @@ exports[`component:<Occupation> prop:text 1`] = `
1966
2017
  />
1967
2018
  </svg>
1968
2019
  </ui-icon>
1969
- </button>
2020
+ </ui-button>
1970
2021
  </ui-input-number>
1971
2022
  <ui-input-number
1972
2023
  class="view row inputNumber"
2024
+ data-testid="group-1"
1973
2025
  >
1974
2026
  <ui-view
1975
2027
  class="view texts"
@@ -1991,9 +2043,10 @@ exports[`component:<Occupation> prop:text 1`] = `
1991
2043
  to
1992
2044
  </ui-text>
1993
2045
  </ui-view>
1994
- <button
2046
+ <ui-button
1995
2047
  class="pressable disabled button small squared disabled"
1996
- disabled=""
2048
+ data-testid="group-1-button-min"
2049
+ disabled="true"
1997
2050
  >
1998
2051
  <ui-icon
1999
2052
  class="icon headline-3"
@@ -2016,14 +2069,15 @@ exports[`component:<Occupation> prop:text 1`] = `
2016
2069
  />
2017
2070
  </svg>
2018
2071
  </ui-icon>
2019
- </button>
2072
+ </ui-button>
2020
2073
  <ui-text
2021
2074
  class="text paragraph value"
2022
2075
  >
2023
2076
  0
2024
2077
  </ui-text>
2025
- <button
2078
+ <ui-button
2026
2079
  class="pressable button small squared secondary"
2080
+ data-testid="group-1-button-max"
2027
2081
  tabindex="0"
2028
2082
  >
2029
2083
  <ui-icon
@@ -2047,19 +2101,19 @@ exports[`component:<Occupation> prop:text 1`] = `
2047
2101
  />
2048
2102
  </svg>
2049
2103
  </ui-icon>
2050
- </button>
2104
+ </ui-button>
2051
2105
  </ui-input-number>
2052
2106
  </ui-view>
2053
2107
  </ui-scrollview>
2054
2108
  <ui-view
2055
2109
  class="view row"
2056
2110
  >
2057
- <button
2111
+ <ui-button
2058
2112
  class="pressable button secondary"
2059
2113
  tabindex="0"
2060
2114
  >
2061
2115
  finder.action.add_place_type.room
2062
- </button>
2116
+ </ui-button>
2063
2117
  </ui-view>
2064
2118
  </ui-view>
2065
2119
  </DocumentFragment>
@@ -2140,6 +2194,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2140
2194
  </ui-view>
2141
2195
  <ui-input-number
2142
2196
  class="view row inputNumber"
2197
+ data-testid="group-0"
2143
2198
  >
2144
2199
  <ui-view
2145
2200
  class="view texts"
@@ -2155,9 +2210,10 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2155
2210
  common.label.age_from
2156
2211
  </ui-text>
2157
2212
  </ui-view>
2158
- <button
2213
+ <ui-button
2159
2214
  class="pressable disabled button small squared disabled"
2160
- disabled=""
2215
+ data-testid="group-0-button-min"
2216
+ disabled="true"
2161
2217
  >
2162
2218
  <ui-icon
2163
2219
  class="icon headline-3"
@@ -2180,14 +2236,15 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2180
2236
  />
2181
2237
  </svg>
2182
2238
  </ui-icon>
2183
- </button>
2239
+ </ui-button>
2184
2240
  <ui-text
2185
2241
  class="text paragraph value"
2186
2242
  >
2187
2243
  2
2188
2244
  </ui-text>
2189
- <button
2245
+ <ui-button
2190
2246
  class="pressable button small squared secondary"
2247
+ data-testid="group-0-button-max"
2191
2248
  tabindex="0"
2192
2249
  >
2193
2250
  <ui-icon
@@ -2211,10 +2268,11 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2211
2268
  />
2212
2269
  </svg>
2213
2270
  </ui-icon>
2214
- </button>
2271
+ </ui-button>
2215
2272
  </ui-input-number>
2216
2273
  <ui-input-number
2217
2274
  class="view row inputNumber"
2275
+ data-testid="group-1"
2218
2276
  >
2219
2277
  <ui-view
2220
2278
  class="view texts"
@@ -2236,8 +2294,9 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2236
2294
  to
2237
2295
  </ui-text>
2238
2296
  </ui-view>
2239
- <button
2297
+ <ui-button
2240
2298
  class="pressable button small squared secondary"
2299
+ data-testid="group-1-button-min"
2241
2300
  tabindex="0"
2242
2301
  >
2243
2302
  <ui-icon
@@ -2261,15 +2320,16 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2261
2320
  />
2262
2321
  </svg>
2263
2322
  </ui-icon>
2264
- </button>
2323
+ </ui-button>
2265
2324
  <ui-text
2266
2325
  class="text paragraph value"
2267
2326
  >
2268
2327
  2
2269
2328
  </ui-text>
2270
- <button
2329
+ <ui-button
2271
2330
  class="pressable disabled button small squared disabled"
2272
- disabled=""
2331
+ data-testid="group-1-button-max"
2332
+ disabled="true"
2273
2333
  >
2274
2334
  <ui-icon
2275
2335
  class="icon headline-3"
@@ -2292,7 +2352,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2292
2352
  />
2293
2353
  </svg>
2294
2354
  </ui-icon>
2295
- </button>
2355
+ </ui-button>
2296
2356
  </ui-input-number>
2297
2357
  <ui-view
2298
2358
  class="view"
@@ -2602,6 +2662,7 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2602
2662
  </ui-view>
2603
2663
  <ui-input-number
2604
2664
  class="view row inputNumber"
2665
+ data-testid="group-0"
2605
2666
  >
2606
2667
  <ui-view
2607
2668
  class="view texts"
@@ -2617,9 +2678,10 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2617
2678
  common.label.age_from
2618
2679
  </ui-text>
2619
2680
  </ui-view>
2620
- <button
2681
+ <ui-button
2621
2682
  class="pressable disabled button small squared disabled"
2622
- disabled=""
2683
+ data-testid="group-0-button-min"
2684
+ disabled="true"
2623
2685
  >
2624
2686
  <ui-icon
2625
2687
  class="icon headline-3"
@@ -2642,14 +2704,15 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2642
2704
  />
2643
2705
  </svg>
2644
2706
  </ui-icon>
2645
- </button>
2707
+ </ui-button>
2646
2708
  <ui-text
2647
2709
  class="text paragraph value"
2648
2710
  >
2649
2711
  2
2650
2712
  </ui-text>
2651
- <button
2713
+ <ui-button
2652
2714
  class="pressable button small squared secondary"
2715
+ data-testid="group-0-button-max"
2653
2716
  tabindex="0"
2654
2717
  >
2655
2718
  <ui-icon
@@ -2673,10 +2736,11 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2673
2736
  />
2674
2737
  </svg>
2675
2738
  </ui-icon>
2676
- </button>
2739
+ </ui-button>
2677
2740
  </ui-input-number>
2678
2741
  <ui-input-number
2679
2742
  class="view row inputNumber"
2743
+ data-testid="group-1"
2680
2744
  >
2681
2745
  <ui-view
2682
2746
  class="view texts"
@@ -2698,9 +2762,10 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2698
2762
  to
2699
2763
  </ui-text>
2700
2764
  </ui-view>
2701
- <button
2765
+ <ui-button
2702
2766
  class="pressable disabled button small squared disabled"
2703
- disabled=""
2767
+ data-testid="group-1-button-min"
2768
+ disabled="true"
2704
2769
  >
2705
2770
  <ui-icon
2706
2771
  class="icon headline-3"
@@ -2723,14 +2788,15 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2723
2788
  />
2724
2789
  </svg>
2725
2790
  </ui-icon>
2726
- </button>
2791
+ </ui-button>
2727
2792
  <ui-text
2728
2793
  class="text paragraph value"
2729
2794
  >
2730
2795
  0
2731
2796
  </ui-text>
2732
- <button
2797
+ <ui-button
2733
2798
  class="pressable button small squared secondary"
2799
+ data-testid="group-1-button-max"
2734
2800
  tabindex="0"
2735
2801
  >
2736
2802
  <ui-icon
@@ -2754,19 +2820,19 @@ exports[`component:<Occupation> prop:value prop:error 1`] = `
2754
2820
  />
2755
2821
  </svg>
2756
2822
  </ui-icon>
2757
- </button>
2823
+ </ui-button>
2758
2824
  </ui-input-number>
2759
2825
  </ui-view>
2760
2826
  </ui-scrollview>
2761
2827
  <ui-view
2762
2828
  class="view row"
2763
2829
  >
2764
- <button
2830
+ <ui-button
2765
2831
  class="pressable button secondary"
2766
2832
  tabindex="0"
2767
2833
  >
2768
2834
  finder.action.add_place_type.room
2769
- </button>
2835
+ </ui-button>
2770
2836
  </ui-view>
2771
2837
  </ui-view>
2772
2838
  </DocumentFragment>
@@ -2809,6 +2875,7 @@ exports[`component:<Occupation> removing a room 1`] = `
2809
2875
  </ui-view>
2810
2876
  <ui-input-number
2811
2877
  class="view row inputNumber"
2878
+ data-testid="group-0"
2812
2879
  >
2813
2880
  <ui-view
2814
2881
  class="view texts"
@@ -2824,9 +2891,10 @@ exports[`component:<Occupation> removing a room 1`] = `
2824
2891
  common.label.age_from
2825
2892
  </ui-text>
2826
2893
  </ui-view>
2827
- <button
2894
+ <ui-button
2828
2895
  class="pressable disabled button small squared disabled"
2829
- disabled=""
2896
+ data-testid="group-0-button-min"
2897
+ disabled="true"
2830
2898
  >
2831
2899
  <ui-icon
2832
2900
  class="icon headline-3"
@@ -2849,14 +2917,15 @@ exports[`component:<Occupation> removing a room 1`] = `
2849
2917
  />
2850
2918
  </svg>
2851
2919
  </ui-icon>
2852
- </button>
2920
+ </ui-button>
2853
2921
  <ui-text
2854
2922
  class="text paragraph value"
2855
2923
  >
2856
2924
  2
2857
2925
  </ui-text>
2858
- <button
2926
+ <ui-button
2859
2927
  class="pressable button small squared secondary"
2928
+ data-testid="group-0-button-max"
2860
2929
  tabindex="0"
2861
2930
  >
2862
2931
  <ui-icon
@@ -2880,10 +2949,11 @@ exports[`component:<Occupation> removing a room 1`] = `
2880
2949
  />
2881
2950
  </svg>
2882
2951
  </ui-icon>
2883
- </button>
2952
+ </ui-button>
2884
2953
  </ui-input-number>
2885
2954
  <ui-input-number
2886
2955
  class="view row inputNumber"
2956
+ data-testid="group-1"
2887
2957
  >
2888
2958
  <ui-view
2889
2959
  class="view texts"
@@ -2905,8 +2975,9 @@ exports[`component:<Occupation> removing a room 1`] = `
2905
2975
  to
2906
2976
  </ui-text>
2907
2977
  </ui-view>
2908
- <button
2978
+ <ui-button
2909
2979
  class="pressable button small squared secondary"
2980
+ data-testid="group-1-button-min"
2910
2981
  tabindex="0"
2911
2982
  >
2912
2983
  <ui-icon
@@ -2930,15 +3001,16 @@ exports[`component:<Occupation> removing a room 1`] = `
2930
3001
  />
2931
3002
  </svg>
2932
3003
  </ui-icon>
2933
- </button>
3004
+ </ui-button>
2934
3005
  <ui-text
2935
3006
  class="text paragraph value"
2936
3007
  >
2937
3008
  2
2938
3009
  </ui-text>
2939
- <button
3010
+ <ui-button
2940
3011
  class="pressable disabled button small squared disabled"
2941
- disabled=""
3012
+ data-testid="group-1-button-max"
3013
+ disabled="true"
2942
3014
  >
2943
3015
  <ui-icon
2944
3016
  class="icon headline-3"
@@ -2961,7 +3033,7 @@ exports[`component:<Occupation> removing a room 1`] = `
2961
3033
  />
2962
3034
  </svg>
2963
3035
  </ui-icon>
2964
- </button>
3036
+ </ui-button>
2965
3037
  </ui-input-number>
2966
3038
  <ui-view
2967
3039
  class="view"
@@ -3272,6 +3344,7 @@ exports[`component:<Occupation> removing a room 1`] = `
3272
3344
  </ui-view>
3273
3345
  <ui-input-number
3274
3346
  class="view row inputNumber"
3347
+ data-testid="group-0"
3275
3348
  >
3276
3349
  <ui-view
3277
3350
  class="view texts"
@@ -3287,9 +3360,10 @@ exports[`component:<Occupation> removing a room 1`] = `
3287
3360
  common.label.age_from
3288
3361
  </ui-text>
3289
3362
  </ui-view>
3290
- <button
3363
+ <ui-button
3291
3364
  class="pressable disabled button small squared disabled"
3292
- disabled=""
3365
+ data-testid="group-0-button-min"
3366
+ disabled="true"
3293
3367
  >
3294
3368
  <ui-icon
3295
3369
  class="icon headline-3"
@@ -3312,14 +3386,15 @@ exports[`component:<Occupation> removing a room 1`] = `
3312
3386
  />
3313
3387
  </svg>
3314
3388
  </ui-icon>
3315
- </button>
3389
+ </ui-button>
3316
3390
  <ui-text
3317
3391
  class="text paragraph value"
3318
3392
  >
3319
3393
  2
3320
3394
  </ui-text>
3321
- <button
3395
+ <ui-button
3322
3396
  class="pressable button small squared secondary"
3397
+ data-testid="group-0-button-max"
3323
3398
  tabindex="0"
3324
3399
  >
3325
3400
  <ui-icon
@@ -3343,10 +3418,11 @@ exports[`component:<Occupation> removing a room 1`] = `
3343
3418
  />
3344
3419
  </svg>
3345
3420
  </ui-icon>
3346
- </button>
3421
+ </ui-button>
3347
3422
  </ui-input-number>
3348
3423
  <ui-input-number
3349
3424
  class="view row inputNumber"
3425
+ data-testid="group-1"
3350
3426
  >
3351
3427
  <ui-view
3352
3428
  class="view texts"
@@ -3368,9 +3444,10 @@ exports[`component:<Occupation> removing a room 1`] = `
3368
3444
  to
3369
3445
  </ui-text>
3370
3446
  </ui-view>
3371
- <button
3447
+ <ui-button
3372
3448
  class="pressable disabled button small squared disabled"
3373
- disabled=""
3449
+ data-testid="group-1-button-min"
3450
+ disabled="true"
3374
3451
  >
3375
3452
  <ui-icon
3376
3453
  class="icon headline-3"
@@ -3393,14 +3470,15 @@ exports[`component:<Occupation> removing a room 1`] = `
3393
3470
  />
3394
3471
  </svg>
3395
3472
  </ui-icon>
3396
- </button>
3473
+ </ui-button>
3397
3474
  <ui-text
3398
3475
  class="text paragraph value"
3399
3476
  >
3400
3477
  0
3401
3478
  </ui-text>
3402
- <button
3479
+ <ui-button
3403
3480
  class="pressable button small squared secondary"
3481
+ data-testid="group-1-button-max"
3404
3482
  tabindex="0"
3405
3483
  >
3406
3484
  <ui-icon
@@ -3424,20 +3502,20 @@ exports[`component:<Occupation> removing a room 1`] = `
3424
3502
  />
3425
3503
  </svg>
3426
3504
  </ui-icon>
3427
- </button>
3505
+ </ui-button>
3428
3506
  </ui-input-number>
3429
3507
  </ui-view>
3430
3508
  </ui-scrollview>
3431
3509
  <ui-view
3432
3510
  class="view row"
3433
3511
  >
3434
- <button
3512
+ <ui-button
3435
3513
  class="pressable button secondary"
3436
3514
  data-testid="occupation-add-room"
3437
3515
  tabindex="0"
3438
3516
  >
3439
3517
  finder.action.add_place_type.room
3440
- </button>
3518
+ </ui-button>
3441
3519
  </ui-view>
3442
3520
  </ui-view>
3443
3521
  </DocumentFragment>
@@ -3472,6 +3550,7 @@ exports[`component:<Occupation> renders 1`] = `
3472
3550
  </ui-view>
3473
3551
  <ui-input-number
3474
3552
  class="view row inputNumber"
3553
+ data-testid="group-0"
3475
3554
  >
3476
3555
  <ui-view
3477
3556
  class="view texts"
@@ -3487,8 +3566,9 @@ exports[`component:<Occupation> renders 1`] = `
3487
3566
  common.label.age_from
3488
3567
  </ui-text>
3489
3568
  </ui-view>
3490
- <button
3569
+ <ui-button
3491
3570
  class="pressable button small squared secondary"
3571
+ data-testid="group-0-button-min"
3492
3572
  tabindex="0"
3493
3573
  >
3494
3574
  <ui-icon
@@ -3512,14 +3592,15 @@ exports[`component:<Occupation> renders 1`] = `
3512
3592
  />
3513
3593
  </svg>
3514
3594
  </ui-icon>
3515
- </button>
3595
+ </ui-button>
3516
3596
  <ui-text
3517
3597
  class="text paragraph value"
3518
3598
  >
3519
3599
  2
3520
3600
  </ui-text>
3521
- <button
3601
+ <ui-button
3522
3602
  class="pressable button small squared secondary"
3603
+ data-testid="group-0-button-max"
3523
3604
  tabindex="0"
3524
3605
  >
3525
3606
  <ui-icon
@@ -3543,10 +3624,11 @@ exports[`component:<Occupation> renders 1`] = `
3543
3624
  />
3544
3625
  </svg>
3545
3626
  </ui-icon>
3546
- </button>
3627
+ </ui-button>
3547
3628
  </ui-input-number>
3548
3629
  <ui-input-number
3549
3630
  class="view row inputNumber"
3631
+ data-testid="group-1"
3550
3632
  >
3551
3633
  <ui-view
3552
3634
  class="view texts"
@@ -3568,9 +3650,10 @@ exports[`component:<Occupation> renders 1`] = `
3568
3650
  to
3569
3651
  </ui-text>
3570
3652
  </ui-view>
3571
- <button
3653
+ <ui-button
3572
3654
  class="pressable disabled button small squared disabled"
3573
- disabled=""
3655
+ data-testid="group-1-button-min"
3656
+ disabled="true"
3574
3657
  >
3575
3658
  <ui-icon
3576
3659
  class="icon headline-3"
@@ -3593,14 +3676,15 @@ exports[`component:<Occupation> renders 1`] = `
3593
3676
  />
3594
3677
  </svg>
3595
3678
  </ui-icon>
3596
- </button>
3679
+ </ui-button>
3597
3680
  <ui-text
3598
3681
  class="text paragraph value"
3599
3682
  >
3600
3683
  0
3601
3684
  </ui-text>
3602
- <button
3685
+ <ui-button
3603
3686
  class="pressable button small squared secondary"
3687
+ data-testid="group-1-button-max"
3604
3688
  tabindex="0"
3605
3689
  >
3606
3690
  <ui-icon
@@ -3624,19 +3708,19 @@ exports[`component:<Occupation> renders 1`] = `
3624
3708
  />
3625
3709
  </svg>
3626
3710
  </ui-icon>
3627
- </button>
3711
+ </ui-button>
3628
3712
  </ui-input-number>
3629
3713
  </ui-view>
3630
3714
  </ui-scrollview>
3631
3715
  <ui-view
3632
3716
  class="view row"
3633
3717
  >
3634
- <button
3718
+ <ui-button
3635
3719
  class="pressable button secondary"
3636
3720
  tabindex="0"
3637
3721
  >
3638
3722
  finder.action.add_place_type.room
3639
- </button>
3723
+ </ui-button>
3640
3724
  </ui-view>
3641
3725
  </ui-view>
3642
3726
  </DocumentFragment>
@@ -3672,6 +3756,7 @@ exports[`component:<Occupation> testID 1`] = `
3672
3756
  </ui-view>
3673
3757
  <ui-input-number
3674
3758
  class="view row inputNumber"
3759
+ data-testid="group-0"
3675
3760
  >
3676
3761
  <ui-view
3677
3762
  class="view texts"
@@ -3687,9 +3772,10 @@ exports[`component:<Occupation> testID 1`] = `
3687
3772
  common.label.age_from
3688
3773
  </ui-text>
3689
3774
  </ui-view>
3690
- <button
3775
+ <ui-button
3691
3776
  class="pressable disabled button small squared disabled"
3692
- disabled=""
3777
+ data-testid="group-0-button-min"
3778
+ disabled="true"
3693
3779
  >
3694
3780
  <ui-icon
3695
3781
  class="icon headline-3"
@@ -3712,14 +3798,15 @@ exports[`component:<Occupation> testID 1`] = `
3712
3798
  />
3713
3799
  </svg>
3714
3800
  </ui-icon>
3715
- </button>
3801
+ </ui-button>
3716
3802
  <ui-text
3717
3803
  class="text paragraph value"
3718
3804
  >
3719
3805
  2
3720
3806
  </ui-text>
3721
- <button
3807
+ <ui-button
3722
3808
  class="pressable button small squared secondary"
3809
+ data-testid="group-0-button-max"
3723
3810
  tabindex="0"
3724
3811
  >
3725
3812
  <ui-icon
@@ -3743,10 +3830,11 @@ exports[`component:<Occupation> testID 1`] = `
3743
3830
  />
3744
3831
  </svg>
3745
3832
  </ui-icon>
3746
- </button>
3833
+ </ui-button>
3747
3834
  </ui-input-number>
3748
3835
  <ui-input-number
3749
3836
  class="view row inputNumber"
3837
+ data-testid="group-1"
3750
3838
  >
3751
3839
  <ui-view
3752
3840
  class="view texts"
@@ -3768,9 +3856,10 @@ exports[`component:<Occupation> testID 1`] = `
3768
3856
  to
3769
3857
  </ui-text>
3770
3858
  </ui-view>
3771
- <button
3859
+ <ui-button
3772
3860
  class="pressable disabled button small squared disabled"
3773
- disabled=""
3861
+ data-testid="group-1-button-min"
3862
+ disabled="true"
3774
3863
  >
3775
3864
  <ui-icon
3776
3865
  class="icon headline-3"
@@ -3793,14 +3882,15 @@ exports[`component:<Occupation> testID 1`] = `
3793
3882
  />
3794
3883
  </svg>
3795
3884
  </ui-icon>
3796
- </button>
3885
+ </ui-button>
3797
3886
  <ui-text
3798
3887
  class="text paragraph value"
3799
3888
  >
3800
3889
  0
3801
3890
  </ui-text>
3802
- <button
3891
+ <ui-button
3803
3892
  class="pressable button small squared secondary"
3893
+ data-testid="group-1-button-max"
3804
3894
  tabindex="0"
3805
3895
  >
3806
3896
  <ui-icon
@@ -3824,20 +3914,20 @@ exports[`component:<Occupation> testID 1`] = `
3824
3914
  />
3825
3915
  </svg>
3826
3916
  </ui-icon>
3827
- </button>
3917
+ </ui-button>
3828
3918
  </ui-input-number>
3829
3919
  </ui-view>
3830
3920
  </ui-scrollview>
3831
3921
  <ui-view
3832
3922
  class="view row"
3833
3923
  >
3834
- <button
3924
+ <ui-button
3835
3925
  class="pressable button secondary"
3836
3926
  data-testid="mirai-add-room"
3837
3927
  tabindex="0"
3838
3928
  >
3839
3929
  finder.action.add_place_type.room
3840
- </button>
3930
+ </ui-button>
3841
3931
  </ui-view>
3842
3932
  </ui-view>
3843
3933
  </DocumentFragment>