@tactics/toddle-styleguide 1.2.3 → 1.2.5

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 (77) hide show
  1. package/App.tsx +202 -191
  2. package/index.d.ts +2 -1
  3. package/index.tsx +2 -0
  4. package/package.json +2 -2
  5. package/src/components/atoms/backdrop/backdrop.component.d.ts +2 -1
  6. package/src/components/atoms/backdrop/backdrop.component.tsx +8 -2
  7. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +1821 -641
  8. package/src/components/atoms/text-input/text-input.component.d.ts +4 -5
  9. package/src/components/atoms/text-input/text-input.component.tsx +9 -13
  10. package/src/components/atoms/text-input/text-input.preview.tsx +5 -5
  11. package/src/components/atoms/text-input/text-input.test.js +4 -4
  12. package/src/components/molecules/avatar/__snapshots__/avatar.test.js.snap +70 -62
  13. package/src/components/molecules/avatar/avatar.component.d.ts +2 -1
  14. package/src/components/molecules/avatar/avatar.component.tsx +22 -11
  15. package/src/components/molecules/avatar/avatar.preview.tsx +58 -44
  16. package/src/components/molecules/avatar/avatar.styles.d.ts +54 -15
  17. package/src/components/molecules/avatar/avatar.styles.js +33 -5
  18. package/src/components/molecules/button/__snapshots__/button.test.js.snap +144 -0
  19. package/src/components/molecules/button/button.component.d.ts +6 -4
  20. package/src/components/molecules/button/button.component.tsx +30 -9
  21. package/src/components/molecules/button/button.preview.tsx +16 -1
  22. package/src/components/molecules/button/button.styles.d.ts +13 -16
  23. package/src/components/molecules/button/button.styles.js +2 -4
  24. package/src/components/molecules/button/button.test.js +12 -0
  25. package/src/components/molecules/date-input/date-input.preview.tsx +25 -23
  26. package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +4 -0
  27. package/src/components/molecules/message-input/message-input.component.d.ts +4 -6
  28. package/src/components/molecules/message-input/message-input.component.tsx +10 -12
  29. package/src/components/molecules/message-input/message-input.preview.tsx +28 -15
  30. package/src/components/molecules/password-input/password-input.component.d.ts +4 -6
  31. package/src/components/molecules/password-input/password-input.component.tsx +11 -15
  32. package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +263 -420
  33. package/src/components/molecules/swipe/swipe.component.d.ts +4 -4
  34. package/src/components/molecules/swipe/swipe.component.tsx +47 -20
  35. package/src/components/molecules/swipe/swipe.preview.tsx +111 -51
  36. package/src/components/molecules/swipe/swipe.styles.d.ts +28 -0
  37. package/src/components/molecules/swipe/swipe.styles.js +32 -0
  38. package/src/components/molecules/swipe/swipe.test.js +1 -1
  39. package/src/components/molecules/tag/__snapshots__/tag.test.js.snap +10 -10
  40. package/src/components/molecules/tag/tag.component.d.ts +3 -8
  41. package/src/components/molecules/tag/tag.component.tsx +7 -13
  42. package/src/components/molecules/tag/tag.preview.tsx +22 -19
  43. package/src/components/molecules/tag/tag.styles.js +4 -2
  44. package/src/components/molecules/tag/tag.test.js +10 -2
  45. package/src/components/molecules/time-picker/__snapshots__/time-picker.test.js.snap +1868 -1776
  46. package/src/components/molecules/time-picker/time-picker.component.tsx +49 -23
  47. package/src/components/molecules/time-picker/time-picker.preview.tsx +5 -4
  48. package/src/components/molecules/time-picker/time-picker.styles.d.ts +16 -4
  49. package/src/components/molecules/time-picker/time-picker.styles.js +18 -6
  50. package/src/components/molecules/timestamp/__snapshots__/timestamp.test.js.snap +1 -1
  51. package/src/components/molecules/timestamp/timestamp.component.tsx +0 -2
  52. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +174 -162
  53. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +70 -127
  54. package/src/components/organisms/contact-item/contact-item.component.tsx +10 -9
  55. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +97 -89
  56. package/src/components/organisms/person-info-card/__snapshots__/person-info-card.test.js.snap +233 -209
  57. package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +7 -7
  58. package/src/components/templates/modal/modal.component.tsx +0 -1
  59. package/src/components/templates/popover/components/modal/modal.component.tsx +0 -1
  60. package/src/components/templates/popover/components/modal/modal.styles.d.ts +2 -1
  61. package/src/components/templates/popover/components/modal/modal.styles.js +2 -2
  62. package/src/components/templates/popover/popover.component.tsx +27 -14
  63. package/src/components/templates/popover/popover.preview.tsx +63 -97
  64. package/src/components/templates/popover/popover.styles.d.ts +1 -1
  65. package/src/components/templates/popover/popover.styles.js +3 -1
  66. package/src/components/templates/popover-action/popover-action.component.d.ts +8 -0
  67. package/src/components/templates/popover-action/popover-action.component.tsx +119 -0
  68. package/src/components/templates/popover-action/popover-action.preview.d.ts +1 -0
  69. package/src/components/templates/popover-action/popover-action.preview.tsx +142 -0
  70. package/src/components/templates/popover-action/popover-action.styles.d.ts +26 -0
  71. package/src/components/templates/popover-action/popover-action.styles.js +31 -0
  72. package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +5 -0
  73. package/src/utilities/toddle-datetime/toddle-datetime.class.tsx +23 -0
  74. package/src/utilities/toddle-datetime/toddle-datetime.preview.tsx +15 -1
  75. package/src/utilities/toddle-datetime/toddle-datetime.test.js +10 -0
  76. package/src/components/molecules/swipe/Swipe.styles.d.ts +0 -7
  77. package/src/components/molecules/swipe/Swipe.styles.js +0 -10
@@ -192,7 +192,7 @@ exports[`Test for the calendar component renders a calendar where you can select
192
192
  }
193
193
  testID="undefined.header.title"
194
194
  >
195
- Juni 2023
195
+ Juli 2023
196
196
  </Text>
197
197
  </View>
198
198
  <View
@@ -478,7 +478,7 @@ exports[`Test for the calendar component renders a calendar where you can select
478
478
  }
479
479
  >
480
480
  <View
481
- accessibilityLabel=" Maandag 29 Mei 2023 "
481
+ accessibilityLabel=" Maandag 26 Juni 2023 "
482
482
  accessibilityState={
483
483
  {
484
484
  "busy": undefined,
@@ -515,7 +515,7 @@ exports[`Test for the calendar component renders a calendar where you can select
515
515
  "width": 42,
516
516
  }
517
517
  }
518
- testID="undefined.day_2023-05-29"
518
+ testID="undefined.day_2023-06-26"
519
519
  >
520
520
  <Text
521
521
  allowFontScaling={false}
@@ -534,7 +534,7 @@ exports[`Test for the calendar component renders a calendar where you can select
534
534
  ]
535
535
  }
536
536
  >
537
- 29
537
+ 26
538
538
  </Text>
539
539
  <View
540
540
  style={
@@ -561,7 +561,7 @@ exports[`Test for the calendar component renders a calendar where you can select
561
561
  }
562
562
  >
563
563
  <View
564
- accessibilityLabel=" Dinsdag 30 Mei 2023 "
564
+ accessibilityLabel=" Dinsdag 27 Juni 2023 "
565
565
  accessibilityState={
566
566
  {
567
567
  "busy": undefined,
@@ -598,7 +598,7 @@ exports[`Test for the calendar component renders a calendar where you can select
598
598
  "width": 42,
599
599
  }
600
600
  }
601
- testID="undefined.day_2023-05-30"
601
+ testID="undefined.day_2023-06-27"
602
602
  >
603
603
  <Text
604
604
  allowFontScaling={false}
@@ -617,7 +617,7 @@ exports[`Test for the calendar component renders a calendar where you can select
617
617
  ]
618
618
  }
619
619
  >
620
- 30
620
+ 27
621
621
  </Text>
622
622
  <View
623
623
  style={
@@ -644,7 +644,7 @@ exports[`Test for the calendar component renders a calendar where you can select
644
644
  }
645
645
  >
646
646
  <View
647
- accessibilityLabel=" Woensdag 31 Mei 2023 "
647
+ accessibilityLabel=" Woensdag 28 Juni 2023 "
648
648
  accessibilityState={
649
649
  {
650
650
  "busy": undefined,
@@ -681,7 +681,7 @@ exports[`Test for the calendar component renders a calendar where you can select
681
681
  "width": 42,
682
682
  }
683
683
  }
684
- testID="undefined.day_2023-05-31"
684
+ testID="undefined.day_2023-06-28"
685
685
  >
686
686
  <Text
687
687
  allowFontScaling={false}
@@ -700,7 +700,7 @@ exports[`Test for the calendar component renders a calendar where you can select
700
700
  ]
701
701
  }
702
702
  >
703
- 31
703
+ 28
704
704
  </Text>
705
705
  <View
706
706
  style={
@@ -727,8 +727,7 @@ exports[`Test for the calendar component renders a calendar where you can select
727
727
  }
728
728
  >
729
729
  <View
730
- accessibilityLabel=" Donderdag 1 Juni 2023 "
731
- accessibilityRole="button"
730
+ accessibilityLabel=" Donderdag 29 Juni 2023 "
732
731
  accessibilityState={
733
732
  {
734
733
  "busy": undefined,
@@ -765,7 +764,7 @@ exports[`Test for the calendar component renders a calendar where you can select
765
764
  "width": 42,
766
765
  }
767
766
  }
768
- testID="undefined.day_2023-06-01"
767
+ testID="undefined.day_2023-06-29"
769
768
  >
770
769
  <Text
771
770
  allowFontScaling={false}
@@ -778,10 +777,13 @@ exports[`Test for the calendar component renders a calendar where you can select
778
777
  "lineHeight": 22.4,
779
778
  "marginTop": 4,
780
779
  },
780
+ {
781
+ "color": "#9AA5B1",
782
+ },
781
783
  ]
782
784
  }
783
785
  >
784
- 1
786
+ 29
785
787
  </Text>
786
788
  <View
787
789
  style={
@@ -808,8 +810,7 @@ exports[`Test for the calendar component renders a calendar where you can select
808
810
  }
809
811
  >
810
812
  <View
811
- accessibilityLabel=" Vrijdag 2 Juni 2023 "
812
- accessibilityRole="button"
813
+ accessibilityLabel=" Vrijdag 30 Juni 2023 "
813
814
  accessibilityState={
814
815
  {
815
816
  "busy": undefined,
@@ -846,7 +847,7 @@ exports[`Test for the calendar component renders a calendar where you can select
846
847
  "width": 42,
847
848
  }
848
849
  }
849
- testID="undefined.day_2023-06-02"
850
+ testID="undefined.day_2023-06-30"
850
851
  >
851
852
  <Text
852
853
  allowFontScaling={false}
@@ -859,10 +860,13 @@ exports[`Test for the calendar component renders a calendar where you can select
859
860
  "lineHeight": 22.4,
860
861
  "marginTop": 4,
861
862
  },
863
+ {
864
+ "color": "#9AA5B1",
865
+ },
862
866
  ]
863
867
  }
864
868
  >
865
- 2
869
+ 30
866
870
  </Text>
867
871
  <View
868
872
  style={
@@ -889,7 +893,7 @@ exports[`Test for the calendar component renders a calendar where you can select
889
893
  }
890
894
  >
891
895
  <View
892
- accessibilityLabel=" Zaterdag 3 Juni 2023 "
896
+ accessibilityLabel=" Zaterdag 1 Juli 2023 "
893
897
  accessibilityRole="button"
894
898
  accessibilityState={
895
899
  {
@@ -927,7 +931,7 @@ exports[`Test for the calendar component renders a calendar where you can select
927
931
  "width": 42,
928
932
  }
929
933
  }
930
- testID="undefined.day_2023-06-03"
934
+ testID="undefined.day_2023-07-01"
931
935
  >
932
936
  <Text
933
937
  allowFontScaling={false}
@@ -943,7 +947,7 @@ exports[`Test for the calendar component renders a calendar where you can select
943
947
  ]
944
948
  }
945
949
  >
946
- 3
950
+ 1
947
951
  </Text>
948
952
  <View
949
953
  style={
@@ -970,7 +974,7 @@ exports[`Test for the calendar component renders a calendar where you can select
970
974
  }
971
975
  >
972
976
  <View
973
- accessibilityLabel=" Zondag 4 Juni 2023 "
977
+ accessibilityLabel=" Zondag 2 Juli 2023 "
974
978
  accessibilityRole="button"
975
979
  accessibilityState={
976
980
  {
@@ -1008,7 +1012,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1008
1012
  "width": 42,
1009
1013
  }
1010
1014
  }
1011
- testID="undefined.day_2023-06-04"
1015
+ testID="undefined.day_2023-07-02"
1012
1016
  >
1013
1017
  <Text
1014
1018
  allowFontScaling={false}
@@ -1024,7 +1028,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1024
1028
  ]
1025
1029
  }
1026
1030
  >
1027
- 4
1031
+ 2
1028
1032
  </Text>
1029
1033
  <View
1030
1034
  style={
@@ -1061,7 +1065,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1061
1065
  }
1062
1066
  >
1063
1067
  <View
1064
- accessibilityLabel=" Maandag 5 Juni 2023 "
1068
+ accessibilityLabel=" Maandag 3 Juli 2023 "
1065
1069
  accessibilityRole="button"
1066
1070
  accessibilityState={
1067
1071
  {
@@ -1099,7 +1103,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1099
1103
  "width": 42,
1100
1104
  }
1101
1105
  }
1102
- testID="undefined.day_2023-06-05"
1106
+ testID="undefined.day_2023-07-03"
1103
1107
  >
1104
1108
  <Text
1105
1109
  allowFontScaling={false}
@@ -1115,7 +1119,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1115
1119
  ]
1116
1120
  }
1117
1121
  >
1118
- 5
1122
+ 3
1119
1123
  </Text>
1120
1124
  <View
1121
1125
  style={
@@ -1142,7 +1146,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1142
1146
  }
1143
1147
  >
1144
1148
  <View
1145
- accessibilityLabel=" Dinsdag 6 Juni 2023 "
1149
+ accessibilityLabel=" Dinsdag 4 Juli 2023 "
1146
1150
  accessibilityRole="button"
1147
1151
  accessibilityState={
1148
1152
  {
@@ -1180,7 +1184,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1180
1184
  "width": 42,
1181
1185
  }
1182
1186
  }
1183
- testID="undefined.day_2023-06-06"
1187
+ testID="undefined.day_2023-07-04"
1184
1188
  >
1185
1189
  <Text
1186
1190
  allowFontScaling={false}
@@ -1196,7 +1200,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1196
1200
  ]
1197
1201
  }
1198
1202
  >
1199
- 6
1203
+ 4
1200
1204
  </Text>
1201
1205
  <View
1202
1206
  style={
@@ -1223,7 +1227,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1223
1227
  }
1224
1228
  >
1225
1229
  <View
1226
- accessibilityLabel=" Woensdag 7 Juni 2023 "
1230
+ accessibilityLabel=" Woensdag 5 Juli 2023 "
1227
1231
  accessibilityRole="button"
1228
1232
  accessibilityState={
1229
1233
  {
@@ -1261,7 +1265,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1261
1265
  "width": 42,
1262
1266
  }
1263
1267
  }
1264
- testID="undefined.day_2023-06-07"
1268
+ testID="undefined.day_2023-07-05"
1265
1269
  >
1266
1270
  <Text
1267
1271
  allowFontScaling={false}
@@ -1277,7 +1281,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1277
1281
  ]
1278
1282
  }
1279
1283
  >
1280
- 7
1284
+ 5
1281
1285
  </Text>
1282
1286
  <View
1283
1287
  style={
@@ -1304,7 +1308,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1304
1308
  }
1305
1309
  >
1306
1310
  <View
1307
- accessibilityLabel=" Donderdag 8 Juni 2023 "
1311
+ accessibilityLabel=" Donderdag 6 Juli 2023 "
1308
1312
  accessibilityRole="button"
1309
1313
  accessibilityState={
1310
1314
  {
@@ -1342,7 +1346,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1342
1346
  "width": 42,
1343
1347
  }
1344
1348
  }
1345
- testID="undefined.day_2023-06-08"
1349
+ testID="undefined.day_2023-07-06"
1346
1350
  >
1347
1351
  <Text
1348
1352
  allowFontScaling={false}
@@ -1358,7 +1362,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1358
1362
  ]
1359
1363
  }
1360
1364
  >
1361
- 8
1365
+ 6
1362
1366
  </Text>
1363
1367
  <View
1364
1368
  style={
@@ -1385,7 +1389,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1385
1389
  }
1386
1390
  >
1387
1391
  <View
1388
- accessibilityLabel=" Vrijdag 9 Juni 2023 "
1392
+ accessibilityLabel=" Vrijdag 7 Juli 2023 "
1389
1393
  accessibilityRole="button"
1390
1394
  accessibilityState={
1391
1395
  {
@@ -1423,7 +1427,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1423
1427
  "width": 42,
1424
1428
  }
1425
1429
  }
1426
- testID="undefined.day_2023-06-09"
1430
+ testID="undefined.day_2023-07-07"
1427
1431
  >
1428
1432
  <Text
1429
1433
  allowFontScaling={false}
@@ -1439,7 +1443,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1439
1443
  ]
1440
1444
  }
1441
1445
  >
1442
- 9
1446
+ 7
1443
1447
  </Text>
1444
1448
  <View
1445
1449
  style={
@@ -1466,7 +1470,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1466
1470
  }
1467
1471
  >
1468
1472
  <View
1469
- accessibilityLabel=" Zaterdag 10 Juni 2023 "
1473
+ accessibilityLabel=" Zaterdag 8 Juli 2023 "
1470
1474
  accessibilityRole="button"
1471
1475
  accessibilityState={
1472
1476
  {
@@ -1504,7 +1508,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1504
1508
  "width": 42,
1505
1509
  }
1506
1510
  }
1507
- testID="undefined.day_2023-06-10"
1511
+ testID="undefined.day_2023-07-08"
1508
1512
  >
1509
1513
  <Text
1510
1514
  allowFontScaling={false}
@@ -1520,7 +1524,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1520
1524
  ]
1521
1525
  }
1522
1526
  >
1523
- 10
1527
+ 8
1524
1528
  </Text>
1525
1529
  <View
1526
1530
  style={
@@ -1547,7 +1551,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1547
1551
  }
1548
1552
  >
1549
1553
  <View
1550
- accessibilityLabel=" Zondag 11 Juni 2023 "
1554
+ accessibilityLabel=" Zondag 9 Juli 2023 "
1551
1555
  accessibilityRole="button"
1552
1556
  accessibilityState={
1553
1557
  {
@@ -1585,7 +1589,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1585
1589
  "width": 42,
1586
1590
  }
1587
1591
  }
1588
- testID="undefined.day_2023-06-11"
1592
+ testID="undefined.day_2023-07-09"
1589
1593
  >
1590
1594
  <Text
1591
1595
  allowFontScaling={false}
@@ -1601,7 +1605,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1601
1605
  ]
1602
1606
  }
1603
1607
  >
1604
- 11
1608
+ 9
1605
1609
  </Text>
1606
1610
  <View
1607
1611
  style={
@@ -1638,7 +1642,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1638
1642
  }
1639
1643
  >
1640
1644
  <View
1641
- accessibilityLabel=" Maandag 12 Juni 2023 "
1645
+ accessibilityLabel=" Maandag 10 Juli 2023 "
1642
1646
  accessibilityRole="button"
1643
1647
  accessibilityState={
1644
1648
  {
@@ -1676,7 +1680,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1676
1680
  "width": 42,
1677
1681
  }
1678
1682
  }
1679
- testID="undefined.day_2023-06-12"
1683
+ testID="undefined.day_2023-07-10"
1680
1684
  >
1681
1685
  <Text
1682
1686
  allowFontScaling={false}
@@ -1692,7 +1696,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1692
1696
  ]
1693
1697
  }
1694
1698
  >
1695
- 12
1699
+ 10
1696
1700
  </Text>
1697
1701
  <View
1698
1702
  style={
@@ -1719,7 +1723,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1719
1723
  }
1720
1724
  >
1721
1725
  <View
1722
- accessibilityLabel=" Dinsdag 13 Juni 2023 "
1726
+ accessibilityLabel=" Dinsdag 11 Juli 2023 "
1723
1727
  accessibilityRole="button"
1724
1728
  accessibilityState={
1725
1729
  {
@@ -1757,7 +1761,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1757
1761
  "width": 42,
1758
1762
  }
1759
1763
  }
1760
- testID="undefined.day_2023-06-13"
1764
+ testID="undefined.day_2023-07-11"
1761
1765
  >
1762
1766
  <Text
1763
1767
  allowFontScaling={false}
@@ -1773,7 +1777,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1773
1777
  ]
1774
1778
  }
1775
1779
  >
1776
- 13
1780
+ 11
1777
1781
  </Text>
1778
1782
  <View
1779
1783
  style={
@@ -1800,7 +1804,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1800
1804
  }
1801
1805
  >
1802
1806
  <View
1803
- accessibilityLabel=" Woensdag 14 Juni 2023 "
1807
+ accessibilityLabel="today Woensdag 12 Juli 2023 "
1804
1808
  accessibilityRole="button"
1805
1809
  accessibilityState={
1806
1810
  {
@@ -1832,13 +1836,17 @@ exports[`Test for the calendar component renders a calendar where you can select
1832
1836
  style={
1833
1837
  {
1834
1838
  "alignItems": "center",
1839
+ "borderColor": "#7B93DB",
1840
+ "borderRadius": 21,
1841
+ "borderStyle": "solid",
1842
+ "borderWidth": 1,
1835
1843
  "height": 42,
1836
1844
  "justifyContent": "center",
1837
1845
  "opacity": 1,
1838
1846
  "width": 42,
1839
1847
  }
1840
1848
  }
1841
- testID="undefined.day_2023-06-14"
1849
+ testID="undefined.day_2023-07-12"
1842
1850
  >
1843
1851
  <Text
1844
1852
  allowFontScaling={false}
@@ -1851,10 +1859,13 @@ exports[`Test for the calendar component renders a calendar where you can select
1851
1859
  "lineHeight": 22.4,
1852
1860
  "marginTop": 4,
1853
1861
  },
1862
+ {
1863
+ "color": "#7B93DB",
1864
+ },
1854
1865
  ]
1855
1866
  }
1856
1867
  >
1857
- 14
1868
+ 12
1858
1869
  </Text>
1859
1870
  <View
1860
1871
  style={
@@ -1881,7 +1892,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1881
1892
  }
1882
1893
  >
1883
1894
  <View
1884
- accessibilityLabel=" Donderdag 15 Juni 2023 "
1895
+ accessibilityLabel=" Donderdag 13 Juli 2023 "
1885
1896
  accessibilityRole="button"
1886
1897
  accessibilityState={
1887
1898
  {
@@ -1919,7 +1930,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1919
1930
  "width": 42,
1920
1931
  }
1921
1932
  }
1922
- testID="undefined.day_2023-06-15"
1933
+ testID="undefined.day_2023-07-13"
1923
1934
  >
1924
1935
  <Text
1925
1936
  allowFontScaling={false}
@@ -1935,7 +1946,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1935
1946
  ]
1936
1947
  }
1937
1948
  >
1938
- 15
1949
+ 13
1939
1950
  </Text>
1940
1951
  <View
1941
1952
  style={
@@ -1962,7 +1973,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1962
1973
  }
1963
1974
  >
1964
1975
  <View
1965
- accessibilityLabel=" Vrijdag 16 Juni 2023 "
1976
+ accessibilityLabel=" Vrijdag 14 Juli 2023 "
1966
1977
  accessibilityRole="button"
1967
1978
  accessibilityState={
1968
1979
  {
@@ -2000,7 +2011,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2000
2011
  "width": 42,
2001
2012
  }
2002
2013
  }
2003
- testID="undefined.day_2023-06-16"
2014
+ testID="undefined.day_2023-07-14"
2004
2015
  >
2005
2016
  <Text
2006
2017
  allowFontScaling={false}
@@ -2016,7 +2027,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2016
2027
  ]
2017
2028
  }
2018
2029
  >
2019
- 16
2030
+ 14
2020
2031
  </Text>
2021
2032
  <View
2022
2033
  style={
@@ -2043,7 +2054,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2043
2054
  }
2044
2055
  >
2045
2056
  <View
2046
- accessibilityLabel=" Zaterdag 17 Juni 2023 "
2057
+ accessibilityLabel=" Zaterdag 15 Juli 2023 "
2047
2058
  accessibilityRole="button"
2048
2059
  accessibilityState={
2049
2060
  {
@@ -2081,7 +2092,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2081
2092
  "width": 42,
2082
2093
  }
2083
2094
  }
2084
- testID="undefined.day_2023-06-17"
2095
+ testID="undefined.day_2023-07-15"
2085
2096
  >
2086
2097
  <Text
2087
2098
  allowFontScaling={false}
@@ -2097,7 +2108,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2097
2108
  ]
2098
2109
  }
2099
2110
  >
2100
- 17
2111
+ 15
2101
2112
  </Text>
2102
2113
  <View
2103
2114
  style={
@@ -2124,7 +2135,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2124
2135
  }
2125
2136
  >
2126
2137
  <View
2127
- accessibilityLabel=" Zondag 18 Juni 2023 "
2138
+ accessibilityLabel=" Zondag 16 Juli 2023 "
2128
2139
  accessibilityRole="button"
2129
2140
  accessibilityState={
2130
2141
  {
@@ -2162,7 +2173,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2162
2173
  "width": 42,
2163
2174
  }
2164
2175
  }
2165
- testID="undefined.day_2023-06-18"
2176
+ testID="undefined.day_2023-07-16"
2166
2177
  >
2167
2178
  <Text
2168
2179
  allowFontScaling={false}
@@ -2178,7 +2189,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2178
2189
  ]
2179
2190
  }
2180
2191
  >
2181
- 18
2192
+ 16
2182
2193
  </Text>
2183
2194
  <View
2184
2195
  style={
@@ -2215,7 +2226,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2215
2226
  }
2216
2227
  >
2217
2228
  <View
2218
- accessibilityLabel=" Maandag 19 Juni 2023 "
2229
+ accessibilityLabel=" Maandag 17 Juli 2023 "
2219
2230
  accessibilityRole="button"
2220
2231
  accessibilityState={
2221
2232
  {
@@ -2253,7 +2264,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2253
2264
  "width": 42,
2254
2265
  }
2255
2266
  }
2256
- testID="undefined.day_2023-06-19"
2267
+ testID="undefined.day_2023-07-17"
2257
2268
  >
2258
2269
  <Text
2259
2270
  allowFontScaling={false}
@@ -2269,7 +2280,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2269
2280
  ]
2270
2281
  }
2271
2282
  >
2272
- 19
2283
+ 17
2273
2284
  </Text>
2274
2285
  <View
2275
2286
  style={
@@ -2296,7 +2307,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2296
2307
  }
2297
2308
  >
2298
2309
  <View
2299
- accessibilityLabel=" Dinsdag 20 Juni 2023 "
2310
+ accessibilityLabel=" Dinsdag 18 Juli 2023 "
2300
2311
  accessibilityRole="button"
2301
2312
  accessibilityState={
2302
2313
  {
@@ -2334,7 +2345,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2334
2345
  "width": 42,
2335
2346
  }
2336
2347
  }
2337
- testID="undefined.day_2023-06-20"
2348
+ testID="undefined.day_2023-07-18"
2338
2349
  >
2339
2350
  <Text
2340
2351
  allowFontScaling={false}
@@ -2350,7 +2361,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2350
2361
  ]
2351
2362
  }
2352
2363
  >
2353
- 20
2364
+ 18
2354
2365
  </Text>
2355
2366
  <View
2356
2367
  style={
@@ -2377,7 +2388,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2377
2388
  }
2378
2389
  >
2379
2390
  <View
2380
- accessibilityLabel=" Woensdag 21 Juni 2023 "
2391
+ accessibilityLabel=" Woensdag 19 Juli 2023 "
2381
2392
  accessibilityRole="button"
2382
2393
  accessibilityState={
2383
2394
  {
@@ -2415,7 +2426,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2415
2426
  "width": 42,
2416
2427
  }
2417
2428
  }
2418
- testID="undefined.day_2023-06-21"
2429
+ testID="undefined.day_2023-07-19"
2419
2430
  >
2420
2431
  <Text
2421
2432
  allowFontScaling={false}
@@ -2431,7 +2442,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2431
2442
  ]
2432
2443
  }
2433
2444
  >
2434
- 21
2445
+ 19
2435
2446
  </Text>
2436
2447
  <View
2437
2448
  style={
@@ -2458,7 +2469,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2458
2469
  }
2459
2470
  >
2460
2471
  <View
2461
- accessibilityLabel=" Donderdag 22 Juni 2023 "
2472
+ accessibilityLabel=" Donderdag 20 Juli 2023 "
2462
2473
  accessibilityRole="button"
2463
2474
  accessibilityState={
2464
2475
  {
@@ -2496,7 +2507,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2496
2507
  "width": 42,
2497
2508
  }
2498
2509
  }
2499
- testID="undefined.day_2023-06-22"
2510
+ testID="undefined.day_2023-07-20"
2500
2511
  >
2501
2512
  <Text
2502
2513
  allowFontScaling={false}
@@ -2512,7 +2523,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2512
2523
  ]
2513
2524
  }
2514
2525
  >
2515
- 22
2526
+ 20
2516
2527
  </Text>
2517
2528
  <View
2518
2529
  style={
@@ -2539,7 +2550,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2539
2550
  }
2540
2551
  >
2541
2552
  <View
2542
- accessibilityLabel=" Vrijdag 23 Juni 2023 "
2553
+ accessibilityLabel=" Vrijdag 21 Juli 2023 "
2543
2554
  accessibilityRole="button"
2544
2555
  accessibilityState={
2545
2556
  {
@@ -2577,7 +2588,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2577
2588
  "width": 42,
2578
2589
  }
2579
2590
  }
2580
- testID="undefined.day_2023-06-23"
2591
+ testID="undefined.day_2023-07-21"
2581
2592
  >
2582
2593
  <Text
2583
2594
  allowFontScaling={false}
@@ -2593,7 +2604,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2593
2604
  ]
2594
2605
  }
2595
2606
  >
2596
- 23
2607
+ 21
2597
2608
  </Text>
2598
2609
  <View
2599
2610
  style={
@@ -2620,7 +2631,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2620
2631
  }
2621
2632
  >
2622
2633
  <View
2623
- accessibilityLabel=" Zaterdag 24 Juni 2023 "
2634
+ accessibilityLabel=" Zaterdag 22 Juli 2023 "
2624
2635
  accessibilityRole="button"
2625
2636
  accessibilityState={
2626
2637
  {
@@ -2658,7 +2669,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2658
2669
  "width": 42,
2659
2670
  }
2660
2671
  }
2661
- testID="undefined.day_2023-06-24"
2672
+ testID="undefined.day_2023-07-22"
2662
2673
  >
2663
2674
  <Text
2664
2675
  allowFontScaling={false}
@@ -2674,7 +2685,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2674
2685
  ]
2675
2686
  }
2676
2687
  >
2677
- 24
2688
+ 22
2678
2689
  </Text>
2679
2690
  <View
2680
2691
  style={
@@ -2701,7 +2712,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2701
2712
  }
2702
2713
  >
2703
2714
  <View
2704
- accessibilityLabel=" Zondag 25 Juni 2023 "
2715
+ accessibilityLabel=" Zondag 23 Juli 2023 "
2705
2716
  accessibilityRole="button"
2706
2717
  accessibilityState={
2707
2718
  {
@@ -2739,7 +2750,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2739
2750
  "width": 42,
2740
2751
  }
2741
2752
  }
2742
- testID="undefined.day_2023-06-25"
2753
+ testID="undefined.day_2023-07-23"
2743
2754
  >
2744
2755
  <Text
2745
2756
  allowFontScaling={false}
@@ -2755,7 +2766,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2755
2766
  ]
2756
2767
  }
2757
2768
  >
2758
- 25
2769
+ 23
2759
2770
  </Text>
2760
2771
  <View
2761
2772
  style={
@@ -2792,7 +2803,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2792
2803
  }
2793
2804
  >
2794
2805
  <View
2795
- accessibilityLabel=" Maandag 26 Juni 2023 "
2806
+ accessibilityLabel=" Maandag 24 Juli 2023 "
2796
2807
  accessibilityRole="button"
2797
2808
  accessibilityState={
2798
2809
  {
@@ -2830,7 +2841,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2830
2841
  "width": 42,
2831
2842
  }
2832
2843
  }
2833
- testID="undefined.day_2023-06-26"
2844
+ testID="undefined.day_2023-07-24"
2834
2845
  >
2835
2846
  <Text
2836
2847
  allowFontScaling={false}
@@ -2846,7 +2857,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2846
2857
  ]
2847
2858
  }
2848
2859
  >
2849
- 26
2860
+ 24
2850
2861
  </Text>
2851
2862
  <View
2852
2863
  style={
@@ -2873,7 +2884,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2873
2884
  }
2874
2885
  >
2875
2886
  <View
2876
- accessibilityLabel="today Dinsdag 27 Juni 2023 "
2887
+ accessibilityLabel=" Dinsdag 25 Juli 2023 "
2877
2888
  accessibilityRole="button"
2878
2889
  accessibilityState={
2879
2890
  {
@@ -2905,17 +2916,13 @@ exports[`Test for the calendar component renders a calendar where you can select
2905
2916
  style={
2906
2917
  {
2907
2918
  "alignItems": "center",
2908
- "borderColor": "#7B93DB",
2909
- "borderRadius": 21,
2910
- "borderStyle": "solid",
2911
- "borderWidth": 1,
2912
2919
  "height": 42,
2913
2920
  "justifyContent": "center",
2914
2921
  "opacity": 1,
2915
2922
  "width": 42,
2916
2923
  }
2917
2924
  }
2918
- testID="undefined.day_2023-06-27"
2925
+ testID="undefined.day_2023-07-25"
2919
2926
  >
2920
2927
  <Text
2921
2928
  allowFontScaling={false}
@@ -2928,13 +2935,10 @@ exports[`Test for the calendar component renders a calendar where you can select
2928
2935
  "lineHeight": 22.4,
2929
2936
  "marginTop": 4,
2930
2937
  },
2931
- {
2932
- "color": "#7B93DB",
2933
- },
2934
2938
  ]
2935
2939
  }
2936
2940
  >
2937
- 27
2941
+ 25
2938
2942
  </Text>
2939
2943
  <View
2940
2944
  style={
@@ -2961,7 +2965,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2961
2965
  }
2962
2966
  >
2963
2967
  <View
2964
- accessibilityLabel=" Woensdag 28 Juni 2023 "
2968
+ accessibilityLabel=" Woensdag 26 Juli 2023 "
2965
2969
  accessibilityRole="button"
2966
2970
  accessibilityState={
2967
2971
  {
@@ -2999,7 +3003,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2999
3003
  "width": 42,
3000
3004
  }
3001
3005
  }
3002
- testID="undefined.day_2023-06-28"
3006
+ testID="undefined.day_2023-07-26"
3003
3007
  >
3004
3008
  <Text
3005
3009
  allowFontScaling={false}
@@ -3015,7 +3019,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3015
3019
  ]
3016
3020
  }
3017
3021
  >
3018
- 28
3022
+ 26
3019
3023
  </Text>
3020
3024
  <View
3021
3025
  style={
@@ -3042,7 +3046,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3042
3046
  }
3043
3047
  >
3044
3048
  <View
3045
- accessibilityLabel=" Donderdag 29 Juni 2023 "
3049
+ accessibilityLabel=" Donderdag 27 Juli 2023 "
3046
3050
  accessibilityRole="button"
3047
3051
  accessibilityState={
3048
3052
  {
@@ -3080,7 +3084,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3080
3084
  "width": 42,
3081
3085
  }
3082
3086
  }
3083
- testID="undefined.day_2023-06-29"
3087
+ testID="undefined.day_2023-07-27"
3084
3088
  >
3085
3089
  <Text
3086
3090
  allowFontScaling={false}
@@ -3096,7 +3100,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3096
3100
  ]
3097
3101
  }
3098
3102
  >
3099
- 29
3103
+ 27
3100
3104
  </Text>
3101
3105
  <View
3102
3106
  style={
@@ -3123,7 +3127,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3123
3127
  }
3124
3128
  >
3125
3129
  <View
3126
- accessibilityLabel=" Vrijdag 30 Juni 2023 "
3130
+ accessibilityLabel=" Vrijdag 28 Juli 2023 "
3127
3131
  accessibilityRole="button"
3128
3132
  accessibilityState={
3129
3133
  {
@@ -3161,7 +3165,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3161
3165
  "width": 42,
3162
3166
  }
3163
3167
  }
3164
- testID="undefined.day_2023-06-30"
3168
+ testID="undefined.day_2023-07-28"
3165
3169
  >
3166
3170
  <Text
3167
3171
  allowFontScaling={false}
@@ -3177,7 +3181,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3177
3181
  ]
3178
3182
  }
3179
3183
  >
3180
- 30
3184
+ 28
3181
3185
  </Text>
3182
3186
  <View
3183
3187
  style={
@@ -3204,7 +3208,8 @@ exports[`Test for the calendar component renders a calendar where you can select
3204
3208
  }
3205
3209
  >
3206
3210
  <View
3207
- accessibilityLabel=" Zaterdag 1 Juli 2023 "
3211
+ accessibilityLabel=" Zaterdag 29 Juli 2023 "
3212
+ accessibilityRole="button"
3208
3213
  accessibilityState={
3209
3214
  {
3210
3215
  "busy": undefined,
@@ -3241,7 +3246,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3241
3246
  "width": 42,
3242
3247
  }
3243
3248
  }
3244
- testID="undefined.day_2023-07-01"
3249
+ testID="undefined.day_2023-07-29"
3245
3250
  >
3246
3251
  <Text
3247
3252
  allowFontScaling={false}
@@ -3254,13 +3259,10 @@ exports[`Test for the calendar component renders a calendar where you can select
3254
3259
  "lineHeight": 22.4,
3255
3260
  "marginTop": 4,
3256
3261
  },
3257
- {
3258
- "color": "#9AA5B1",
3259
- },
3260
3262
  ]
3261
3263
  }
3262
3264
  >
3263
- 1
3265
+ 29
3264
3266
  </Text>
3265
3267
  <View
3266
3268
  style={
@@ -3287,7 +3289,8 @@ exports[`Test for the calendar component renders a calendar where you can select
3287
3289
  }
3288
3290
  >
3289
3291
  <View
3290
- accessibilityLabel=" Zondag 2 Juli 2023 "
3292
+ accessibilityLabel=" Zondag 30 Juli 2023 "
3293
+ accessibilityRole="button"
3291
3294
  accessibilityState={
3292
3295
  {
3293
3296
  "busy": undefined,
@@ -3324,7 +3327,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3324
3327
  "width": 42,
3325
3328
  }
3326
3329
  }
3327
- testID="undefined.day_2023-07-02"
3330
+ testID="undefined.day_2023-07-30"
3328
3331
  >
3329
3332
  <Text
3330
3333
  allowFontScaling={false}
@@ -3337,13 +3340,10 @@ exports[`Test for the calendar component renders a calendar where you can select
3337
3340
  "lineHeight": 22.4,
3338
3341
  "marginTop": 4,
3339
3342
  },
3340
- {
3341
- "color": "#9AA5B1",
3342
- },
3343
3343
  ]
3344
3344
  }
3345
3345
  >
3346
- 2
3346
+ 30
3347
3347
  </Text>
3348
3348
  <View
3349
3349
  style={
@@ -3362,471 +3362,1651 @@ exports[`Test for the calendar component renders a calendar where you can select
3362
3362
  </View>
3363
3363
  </View>
3364
3364
  </View>
3365
- </View>
3366
- </View>
3367
- </View>
3368
- `;
3369
-
3370
- exports[`Test for the calendar component renders a calendar where you can select a day, and give a starting-, end-date for the calendar 1`] = `
3371
- <View
3372
- onMoveShouldSetResponder={[Function]}
3373
- onMoveShouldSetResponderCapture={[Function]}
3374
- onResponderEnd={[Function]}
3375
- onResponderGrant={[Function]}
3376
- onResponderMove={[Function]}
3377
- onResponderReject={[Function]}
3378
- onResponderRelease={[Function]}
3379
- onResponderStart={[Function]}
3380
- onResponderTerminate={[Function]}
3381
- onResponderTerminationRequest={[Function]}
3382
- onStartShouldSetResponder={[Function]}
3383
- onStartShouldSetResponderCapture={[Function]}
3384
- onSwipe={[Function]}
3385
- >
3386
- <View
3387
- style={
3388
- [
3389
- {
3390
- "backgroundColor": "white",
3391
- "paddingLeft": 5,
3392
- "paddingRight": 5,
3393
- },
3394
- undefined,
3395
- ]
3396
- }
3397
- >
3398
- <View
3399
- accessibilityActions={
3400
- [
3401
- {
3402
- "label": "increment",
3403
- "name": "increment",
3404
- },
3405
- {
3406
- "label": "decrement",
3407
- "name": "decrement",
3408
- },
3409
- ]
3410
- }
3411
- accessibilityRole="adjustable"
3412
- accessible={true}
3413
- onAccessibilityAction={[Function]}
3414
- testID="undefined.header"
3415
- >
3416
3365
  <View
3417
3366
  style={
3418
- [
3419
- {
3420
- "alignItems": "center",
3421
- "flexDirection": "row",
3422
- "justifyContent": "space-between",
3423
- "marginTop": 6,
3424
- "paddingLeft": 10,
3425
- "paddingRight": 10,
3426
- },
3427
- undefined,
3428
- ]
3367
+ {
3368
+ "flexDirection": "row",
3369
+ "justifyContent": "space-around",
3370
+ "marginVertical": 7,
3371
+ }
3429
3372
  }
3430
3373
  >
3431
3374
  <View
3432
- accessibilityState={
3433
- {
3434
- "busy": undefined,
3435
- "checked": undefined,
3436
- "disabled": undefined,
3437
- "expanded": undefined,
3438
- "selected": undefined,
3439
- }
3440
- }
3441
- accessibilityValue={
3442
- {
3443
- "max": undefined,
3444
- "min": undefined,
3445
- "now": undefined,
3446
- "text": undefined,
3447
- }
3448
- }
3449
- accessible={true}
3450
- collapsable={false}
3451
- focusable={true}
3452
- hitSlop={
3453
- {
3454
- "bottom": 20,
3455
- "left": 20,
3456
- "right": 20,
3457
- "top": 20,
3458
- }
3459
- }
3460
- onClick={[Function]}
3461
- onResponderGrant={[Function]}
3462
- onResponderMove={[Function]}
3463
- onResponderRelease={[Function]}
3464
- onResponderTerminate={[Function]}
3465
- onResponderTerminationRequest={[Function]}
3466
- onStartShouldSetResponder={[Function]}
3467
3375
  style={
3468
3376
  {
3469
- "opacity": 1,
3470
- "padding": 10,
3377
+ "alignItems": "center",
3378
+ "flex": 1,
3471
3379
  }
3472
3380
  }
3473
- testID="undefined.header.leftArrow"
3474
3381
  >
3475
- <RNSVGSvgView
3476
- align="xMidYMid"
3477
- bbHeight="24"
3478
- bbWidth="24"
3479
- fill="none"
3480
- focusable={false}
3481
- height={24}
3482
- meetOrSlice={0}
3483
- minX={0}
3484
- minY={0}
3485
- style={
3486
- [
3487
- {
3488
- "backgroundColor": "transparent",
3489
- "borderWidth": 0,
3490
- },
3491
- {
3492
- "flex": 0,
3493
- "height": 24,
3494
- "width": 24,
3495
- },
3496
- ]
3497
- }
3498
- vbHeight={19}
3499
- vbWidth={10}
3500
- width={24}
3382
+ <View
3383
+ accessibilityLabel=" Maandag 31 Juli 2023 "
3384
+ accessibilityRole="button"
3385
+ accessibilityState={
3386
+ {
3387
+ "busy": undefined,
3388
+ "checked": undefined,
3389
+ "disabled": false,
3390
+ "expanded": undefined,
3391
+ "selected": undefined,
3392
+ }
3393
+ }
3394
+ accessibilityValue={
3395
+ {
3396
+ "max": undefined,
3397
+ "min": undefined,
3398
+ "now": undefined,
3399
+ "text": undefined,
3400
+ }
3401
+ }
3402
+ accessible={true}
3403
+ collapsable={false}
3404
+ focusable={true}
3405
+ onClick={[Function]}
3406
+ onResponderGrant={[Function]}
3407
+ onResponderMove={[Function]}
3408
+ onResponderRelease={[Function]}
3409
+ onResponderTerminate={[Function]}
3410
+ onResponderTerminationRequest={[Function]}
3411
+ onStartShouldSetResponder={[Function]}
3412
+ style={
3413
+ {
3414
+ "alignItems": "center",
3415
+ "height": 42,
3416
+ "justifyContent": "center",
3417
+ "opacity": 1,
3418
+ "width": 42,
3419
+ }
3420
+ }
3421
+ testID="undefined.day_2023-07-31"
3501
3422
  >
3502
- <RNSVGGroup
3503
- fill={null}
3504
- propList={
3423
+ <Text
3424
+ allowFontScaling={false}
3425
+ style={
3505
3426
  [
3506
- "fill",
3427
+ {
3428
+ "color": "#1F2933",
3429
+ "fontFamily": "SourceSansPro",
3430
+ "fontSize": 16,
3431
+ "lineHeight": 22.4,
3432
+ "marginTop": 4,
3433
+ },
3507
3434
  ]
3508
3435
  }
3509
3436
  >
3510
- <RNSVGPath
3511
- d="M8.875 17.375L1 9.5L8.875 1.625"
3512
- propList={
3513
- [
3514
- "stroke",
3515
- "strokeWidth",
3516
- "strokeLinecap",
3517
- "strokeLinejoin",
3518
- ]
3519
- }
3520
- stroke={
3437
+ 31
3438
+ </Text>
3439
+ <View
3440
+ style={
3441
+ [
3521
3442
  {
3522
- "payload": 4279837036,
3523
- "type": 0,
3524
- }
3525
- }
3526
- strokeLinecap={1}
3527
- strokeLinejoin={1}
3528
- strokeWidth="2"
3529
- />
3530
- </RNSVGGroup>
3531
- </RNSVGSvgView>
3443
+ "borderRadius": 2,
3444
+ "height": 4,
3445
+ "marginHorizontal": 1,
3446
+ "marginTop": 1,
3447
+ "opacity": 0,
3448
+ "width": 4,
3449
+ },
3450
+ ]
3451
+ }
3452
+ />
3453
+ </View>
3532
3454
  </View>
3533
3455
  <View
3534
3456
  style={
3535
3457
  {
3536
3458
  "alignItems": "center",
3537
- "backgroundColor": "#19216C",
3538
- "borderRadius": 32,
3539
- "flexDirection": "row",
3540
- "height": 32,
3541
- "justifyContent": "center",
3542
- "paddingBottom": 4,
3543
- "paddingLeft": 16,
3544
- "paddingRight": 16,
3545
- "paddingTop": 4,
3459
+ "flex": 1,
3546
3460
  }
3547
3461
  }
3548
3462
  >
3549
- <Text
3550
- allowFontScaling={false}
3463
+ <View
3464
+ accessibilityLabel=" Dinsdag 1 Augustus 2023 "
3465
+ accessibilityState={
3466
+ {
3467
+ "busy": undefined,
3468
+ "checked": undefined,
3469
+ "disabled": false,
3470
+ "expanded": undefined,
3471
+ "selected": undefined,
3472
+ }
3473
+ }
3474
+ accessibilityValue={
3475
+ {
3476
+ "max": undefined,
3477
+ "min": undefined,
3478
+ "now": undefined,
3479
+ "text": undefined,
3480
+ }
3481
+ }
3482
+ accessible={true}
3483
+ collapsable={false}
3484
+ focusable={true}
3485
+ onClick={[Function]}
3486
+ onResponderGrant={[Function]}
3487
+ onResponderMove={[Function]}
3488
+ onResponderRelease={[Function]}
3489
+ onResponderTerminate={[Function]}
3490
+ onResponderTerminationRequest={[Function]}
3491
+ onStartShouldSetResponder={[Function]}
3551
3492
  style={
3552
3493
  {
3553
- "color": "#FFFFFF",
3554
- "fontFamily": "SourceSansPro",
3555
- "fontSize": 16,
3556
- "lineHeight": 22.4,
3557
- "margin": 0,
3494
+ "alignItems": "center",
3495
+ "height": 42,
3496
+ "justifyContent": "center",
3497
+ "opacity": 1,
3498
+ "width": 42,
3558
3499
  }
3559
3500
  }
3560
- testID="undefined.header.title"
3501
+ testID="undefined.day_2023-08-01"
3561
3502
  >
3562
- Juni 2023
3563
- </Text>
3503
+ <Text
3504
+ allowFontScaling={false}
3505
+ style={
3506
+ [
3507
+ {
3508
+ "color": "#1F2933",
3509
+ "fontFamily": "SourceSansPro",
3510
+ "fontSize": 16,
3511
+ "lineHeight": 22.4,
3512
+ "marginTop": 4,
3513
+ },
3514
+ {
3515
+ "color": "#9AA5B1",
3516
+ },
3517
+ ]
3518
+ }
3519
+ >
3520
+ 1
3521
+ </Text>
3522
+ <View
3523
+ style={
3524
+ [
3525
+ {
3526
+ "borderRadius": 2,
3527
+ "height": 4,
3528
+ "marginHorizontal": 1,
3529
+ "marginTop": 1,
3530
+ "opacity": 0,
3531
+ "width": 4,
3532
+ },
3533
+ ]
3534
+ }
3535
+ />
3536
+ </View>
3564
3537
  </View>
3565
3538
  <View
3566
- accessibilityState={
3567
- {
3568
- "busy": undefined,
3569
- "checked": undefined,
3570
- "disabled": undefined,
3571
- "expanded": undefined,
3572
- "selected": undefined,
3573
- }
3574
- }
3575
- accessibilityValue={
3576
- {
3577
- "max": undefined,
3578
- "min": undefined,
3579
- "now": undefined,
3580
- "text": undefined,
3581
- }
3582
- }
3583
- accessible={true}
3584
- collapsable={false}
3585
- focusable={true}
3586
- hitSlop={
3587
- {
3588
- "bottom": 20,
3589
- "left": 20,
3590
- "right": 20,
3591
- "top": 20,
3592
- }
3593
- }
3594
- onClick={[Function]}
3595
- onResponderGrant={[Function]}
3596
- onResponderMove={[Function]}
3597
- onResponderRelease={[Function]}
3598
- onResponderTerminate={[Function]}
3599
- onResponderTerminationRequest={[Function]}
3600
- onStartShouldSetResponder={[Function]}
3601
3539
  style={
3602
3540
  {
3603
- "opacity": 1,
3604
- "padding": 10,
3541
+ "alignItems": "center",
3542
+ "flex": 1,
3605
3543
  }
3606
3544
  }
3607
- testID="undefined.header.rightArrow"
3608
3545
  >
3609
- <RNSVGSvgView
3610
- align="xMidYMid"
3611
- bbHeight="24"
3612
- bbWidth="24"
3613
- fill="none"
3614
- focusable={false}
3615
- height={24}
3616
- meetOrSlice={0}
3617
- minX={0}
3618
- minY={0}
3619
- style={
3620
- [
3621
- {
3622
- "backgroundColor": "transparent",
3623
- "borderWidth": 0,
3624
- },
3625
- {
3626
- "flex": 0,
3627
- "height": 24,
3628
- "width": 24,
3629
- },
3630
- ]
3546
+ <View
3547
+ accessibilityLabel=" Woensdag 2 Augustus 2023 "
3548
+ accessibilityState={
3549
+ {
3550
+ "busy": undefined,
3551
+ "checked": undefined,
3552
+ "disabled": false,
3553
+ "expanded": undefined,
3554
+ "selected": undefined,
3555
+ }
3631
3556
  }
3632
- vbHeight={19}
3633
- vbWidth={11}
3634
- width={24}
3635
- >
3636
- <RNSVGGroup
3637
- fill={null}
3638
- propList={
3557
+ accessibilityValue={
3558
+ {
3559
+ "max": undefined,
3560
+ "min": undefined,
3561
+ "now": undefined,
3562
+ "text": undefined,
3563
+ }
3564
+ }
3565
+ accessible={true}
3566
+ collapsable={false}
3567
+ focusable={true}
3568
+ onClick={[Function]}
3569
+ onResponderGrant={[Function]}
3570
+ onResponderMove={[Function]}
3571
+ onResponderRelease={[Function]}
3572
+ onResponderTerminate={[Function]}
3573
+ onResponderTerminationRequest={[Function]}
3574
+ onStartShouldSetResponder={[Function]}
3575
+ style={
3576
+ {
3577
+ "alignItems": "center",
3578
+ "height": 42,
3579
+ "justifyContent": "center",
3580
+ "opacity": 1,
3581
+ "width": 42,
3582
+ }
3583
+ }
3584
+ testID="undefined.day_2023-08-02"
3585
+ >
3586
+ <Text
3587
+ allowFontScaling={false}
3588
+ style={
3639
3589
  [
3640
- "fill",
3590
+ {
3591
+ "color": "#1F2933",
3592
+ "fontFamily": "SourceSansPro",
3593
+ "fontSize": 16,
3594
+ "lineHeight": 22.4,
3595
+ "marginTop": 4,
3596
+ },
3597
+ {
3598
+ "color": "#9AA5B1",
3599
+ },
3641
3600
  ]
3642
3601
  }
3643
3602
  >
3644
- <RNSVGPath
3645
- d="M1.75 1.625L9.33333 9.5L1.75 17.375"
3646
- propList={
3647
- [
3648
- "stroke",
3649
- "strokeWidth",
3650
- "strokeLinecap",
3651
- "strokeLinejoin",
3652
- ]
3653
- }
3654
- stroke={
3603
+ 2
3604
+ </Text>
3605
+ <View
3606
+ style={
3607
+ [
3655
3608
  {
3656
- "payload": 4279837036,
3657
- "type": 0,
3658
- }
3659
- }
3660
- strokeLinecap={1}
3661
- strokeLinejoin={1}
3662
- strokeWidth="2"
3663
- />
3664
- </RNSVGGroup>
3665
- </RNSVGSvgView>
3609
+ "borderRadius": 2,
3610
+ "height": 4,
3611
+ "marginHorizontal": 1,
3612
+ "marginTop": 1,
3613
+ "opacity": 0,
3614
+ "width": 4,
3615
+ },
3616
+ ]
3617
+ }
3618
+ />
3619
+ </View>
3666
3620
  </View>
3667
- </View>
3668
- <View
3669
- style={
3670
- [
3671
- {
3672
- "flexDirection": "row",
3673
- "justifyContent": "space-around",
3674
- "marginTop": 32,
3675
- },
3676
- undefined,
3677
- ]
3678
- }
3679
- testID="undefined.header.dayNames"
3680
- >
3681
- <Text
3682
- accessibilityLabel=""
3683
- allowFontScaling={false}
3684
- numberOfLines={1}
3621
+ <View
3685
3622
  style={
3686
- [
3687
- {
3688
- "color": "#1F2933",
3689
- "fontFamily": "SourceSansProBold",
3690
- "fontSize": 16,
3691
- "lineHeight": 22.4,
3692
- "marginBottom": 24,
3693
- "textAlign": "center",
3694
- "width": 32,
3695
- },
3696
- ]
3623
+ {
3624
+ "alignItems": "center",
3625
+ "flex": 1,
3626
+ }
3697
3627
  }
3698
3628
  >
3699
- Ma
3700
- </Text>
3701
- <Text
3702
- accessibilityLabel=""
3703
- allowFontScaling={false}
3704
- numberOfLines={1}
3705
- style={
3706
- [
3629
+ <View
3630
+ accessibilityLabel=" Donderdag 3 Augustus 2023 "
3631
+ accessibilityState={
3707
3632
  {
3708
- "color": "#1F2933",
3709
- "fontFamily": "SourceSansProBold",
3710
- "fontSize": 16,
3711
- "lineHeight": 22.4,
3712
- "marginBottom": 24,
3713
- "textAlign": "center",
3714
- "width": 32,
3715
- },
3716
- ]
3717
- }
3718
- >
3719
- Di
3720
- </Text>
3721
- <Text
3722
- accessibilityLabel=""
3723
- allowFontScaling={false}
3724
- numberOfLines={1}
3725
- style={
3726
- [
3633
+ "busy": undefined,
3634
+ "checked": undefined,
3635
+ "disabled": false,
3636
+ "expanded": undefined,
3637
+ "selected": undefined,
3638
+ }
3639
+ }
3640
+ accessibilityValue={
3727
3641
  {
3728
- "color": "#1F2933",
3729
- "fontFamily": "SourceSansProBold",
3730
- "fontSize": 16,
3731
- "lineHeight": 22.4,
3732
- "marginBottom": 24,
3733
- "textAlign": "center",
3734
- "width": 32,
3735
- },
3736
- ]
3642
+ "max": undefined,
3643
+ "min": undefined,
3644
+ "now": undefined,
3645
+ "text": undefined,
3646
+ }
3647
+ }
3648
+ accessible={true}
3649
+ collapsable={false}
3650
+ focusable={true}
3651
+ onClick={[Function]}
3652
+ onResponderGrant={[Function]}
3653
+ onResponderMove={[Function]}
3654
+ onResponderRelease={[Function]}
3655
+ onResponderTerminate={[Function]}
3656
+ onResponderTerminationRequest={[Function]}
3657
+ onStartShouldSetResponder={[Function]}
3658
+ style={
3659
+ {
3660
+ "alignItems": "center",
3661
+ "height": 42,
3662
+ "justifyContent": "center",
3663
+ "opacity": 1,
3664
+ "width": 42,
3665
+ }
3666
+ }
3667
+ testID="undefined.day_2023-08-03"
3668
+ >
3669
+ <Text
3670
+ allowFontScaling={false}
3671
+ style={
3672
+ [
3673
+ {
3674
+ "color": "#1F2933",
3675
+ "fontFamily": "SourceSansPro",
3676
+ "fontSize": 16,
3677
+ "lineHeight": 22.4,
3678
+ "marginTop": 4,
3679
+ },
3680
+ {
3681
+ "color": "#9AA5B1",
3682
+ },
3683
+ ]
3684
+ }
3685
+ >
3686
+ 3
3687
+ </Text>
3688
+ <View
3689
+ style={
3690
+ [
3691
+ {
3692
+ "borderRadius": 2,
3693
+ "height": 4,
3694
+ "marginHorizontal": 1,
3695
+ "marginTop": 1,
3696
+ "opacity": 0,
3697
+ "width": 4,
3698
+ },
3699
+ ]
3700
+ }
3701
+ />
3702
+ </View>
3703
+ </View>
3704
+ <View
3705
+ style={
3706
+ {
3707
+ "alignItems": "center",
3708
+ "flex": 1,
3709
+ }
3737
3710
  }
3738
3711
  >
3739
- Wo
3740
- </Text>
3741
- <Text
3742
- accessibilityLabel=""
3743
- allowFontScaling={false}
3744
- numberOfLines={1}
3712
+ <View
3713
+ accessibilityLabel=" Vrijdag 4 Augustus 2023 "
3714
+ accessibilityState={
3715
+ {
3716
+ "busy": undefined,
3717
+ "checked": undefined,
3718
+ "disabled": false,
3719
+ "expanded": undefined,
3720
+ "selected": undefined,
3721
+ }
3722
+ }
3723
+ accessibilityValue={
3724
+ {
3725
+ "max": undefined,
3726
+ "min": undefined,
3727
+ "now": undefined,
3728
+ "text": undefined,
3729
+ }
3730
+ }
3731
+ accessible={true}
3732
+ collapsable={false}
3733
+ focusable={true}
3734
+ onClick={[Function]}
3735
+ onResponderGrant={[Function]}
3736
+ onResponderMove={[Function]}
3737
+ onResponderRelease={[Function]}
3738
+ onResponderTerminate={[Function]}
3739
+ onResponderTerminationRequest={[Function]}
3740
+ onStartShouldSetResponder={[Function]}
3741
+ style={
3742
+ {
3743
+ "alignItems": "center",
3744
+ "height": 42,
3745
+ "justifyContent": "center",
3746
+ "opacity": 1,
3747
+ "width": 42,
3748
+ }
3749
+ }
3750
+ testID="undefined.day_2023-08-04"
3751
+ >
3752
+ <Text
3753
+ allowFontScaling={false}
3754
+ style={
3755
+ [
3756
+ {
3757
+ "color": "#1F2933",
3758
+ "fontFamily": "SourceSansPro",
3759
+ "fontSize": 16,
3760
+ "lineHeight": 22.4,
3761
+ "marginTop": 4,
3762
+ },
3763
+ {
3764
+ "color": "#9AA5B1",
3765
+ },
3766
+ ]
3767
+ }
3768
+ >
3769
+ 4
3770
+ </Text>
3771
+ <View
3772
+ style={
3773
+ [
3774
+ {
3775
+ "borderRadius": 2,
3776
+ "height": 4,
3777
+ "marginHorizontal": 1,
3778
+ "marginTop": 1,
3779
+ "opacity": 0,
3780
+ "width": 4,
3781
+ },
3782
+ ]
3783
+ }
3784
+ />
3785
+ </View>
3786
+ </View>
3787
+ <View
3788
+ style={
3789
+ {
3790
+ "alignItems": "center",
3791
+ "flex": 1,
3792
+ }
3793
+ }
3794
+ >
3795
+ <View
3796
+ accessibilityLabel=" Zaterdag 5 Augustus 2023 "
3797
+ accessibilityState={
3798
+ {
3799
+ "busy": undefined,
3800
+ "checked": undefined,
3801
+ "disabled": false,
3802
+ "expanded": undefined,
3803
+ "selected": undefined,
3804
+ }
3805
+ }
3806
+ accessibilityValue={
3807
+ {
3808
+ "max": undefined,
3809
+ "min": undefined,
3810
+ "now": undefined,
3811
+ "text": undefined,
3812
+ }
3813
+ }
3814
+ accessible={true}
3815
+ collapsable={false}
3816
+ focusable={true}
3817
+ onClick={[Function]}
3818
+ onResponderGrant={[Function]}
3819
+ onResponderMove={[Function]}
3820
+ onResponderRelease={[Function]}
3821
+ onResponderTerminate={[Function]}
3822
+ onResponderTerminationRequest={[Function]}
3823
+ onStartShouldSetResponder={[Function]}
3824
+ style={
3825
+ {
3826
+ "alignItems": "center",
3827
+ "height": 42,
3828
+ "justifyContent": "center",
3829
+ "opacity": 1,
3830
+ "width": 42,
3831
+ }
3832
+ }
3833
+ testID="undefined.day_2023-08-05"
3834
+ >
3835
+ <Text
3836
+ allowFontScaling={false}
3837
+ style={
3838
+ [
3839
+ {
3840
+ "color": "#1F2933",
3841
+ "fontFamily": "SourceSansPro",
3842
+ "fontSize": 16,
3843
+ "lineHeight": 22.4,
3844
+ "marginTop": 4,
3845
+ },
3846
+ {
3847
+ "color": "#9AA5B1",
3848
+ },
3849
+ ]
3850
+ }
3851
+ >
3852
+ 5
3853
+ </Text>
3854
+ <View
3855
+ style={
3856
+ [
3857
+ {
3858
+ "borderRadius": 2,
3859
+ "height": 4,
3860
+ "marginHorizontal": 1,
3861
+ "marginTop": 1,
3862
+ "opacity": 0,
3863
+ "width": 4,
3864
+ },
3865
+ ]
3866
+ }
3867
+ />
3868
+ </View>
3869
+ </View>
3870
+ <View
3871
+ style={
3872
+ {
3873
+ "alignItems": "center",
3874
+ "flex": 1,
3875
+ }
3876
+ }
3877
+ >
3878
+ <View
3879
+ accessibilityLabel=" Zondag 6 Augustus 2023 "
3880
+ accessibilityState={
3881
+ {
3882
+ "busy": undefined,
3883
+ "checked": undefined,
3884
+ "disabled": false,
3885
+ "expanded": undefined,
3886
+ "selected": undefined,
3887
+ }
3888
+ }
3889
+ accessibilityValue={
3890
+ {
3891
+ "max": undefined,
3892
+ "min": undefined,
3893
+ "now": undefined,
3894
+ "text": undefined,
3895
+ }
3896
+ }
3897
+ accessible={true}
3898
+ collapsable={false}
3899
+ focusable={true}
3900
+ onClick={[Function]}
3901
+ onResponderGrant={[Function]}
3902
+ onResponderMove={[Function]}
3903
+ onResponderRelease={[Function]}
3904
+ onResponderTerminate={[Function]}
3905
+ onResponderTerminationRequest={[Function]}
3906
+ onStartShouldSetResponder={[Function]}
3907
+ style={
3908
+ {
3909
+ "alignItems": "center",
3910
+ "height": 42,
3911
+ "justifyContent": "center",
3912
+ "opacity": 1,
3913
+ "width": 42,
3914
+ }
3915
+ }
3916
+ testID="undefined.day_2023-08-06"
3917
+ >
3918
+ <Text
3919
+ allowFontScaling={false}
3920
+ style={
3921
+ [
3922
+ {
3923
+ "color": "#1F2933",
3924
+ "fontFamily": "SourceSansPro",
3925
+ "fontSize": 16,
3926
+ "lineHeight": 22.4,
3927
+ "marginTop": 4,
3928
+ },
3929
+ {
3930
+ "color": "#9AA5B1",
3931
+ },
3932
+ ]
3933
+ }
3934
+ >
3935
+ 6
3936
+ </Text>
3937
+ <View
3938
+ style={
3939
+ [
3940
+ {
3941
+ "borderRadius": 2,
3942
+ "height": 4,
3943
+ "marginHorizontal": 1,
3944
+ "marginTop": 1,
3945
+ "opacity": 0,
3946
+ "width": 4,
3947
+ },
3948
+ ]
3949
+ }
3950
+ />
3951
+ </View>
3952
+ </View>
3953
+ </View>
3954
+ </View>
3955
+ </View>
3956
+ </View>
3957
+ `;
3958
+
3959
+ exports[`Test for the calendar component renders a calendar where you can select a day, and give a starting-, end-date for the calendar 1`] = `
3960
+ <View
3961
+ onMoveShouldSetResponder={[Function]}
3962
+ onMoveShouldSetResponderCapture={[Function]}
3963
+ onResponderEnd={[Function]}
3964
+ onResponderGrant={[Function]}
3965
+ onResponderMove={[Function]}
3966
+ onResponderReject={[Function]}
3967
+ onResponderRelease={[Function]}
3968
+ onResponderStart={[Function]}
3969
+ onResponderTerminate={[Function]}
3970
+ onResponderTerminationRequest={[Function]}
3971
+ onStartShouldSetResponder={[Function]}
3972
+ onStartShouldSetResponderCapture={[Function]}
3973
+ onSwipe={[Function]}
3974
+ >
3975
+ <View
3976
+ style={
3977
+ [
3978
+ {
3979
+ "backgroundColor": "white",
3980
+ "paddingLeft": 5,
3981
+ "paddingRight": 5,
3982
+ },
3983
+ undefined,
3984
+ ]
3985
+ }
3986
+ >
3987
+ <View
3988
+ accessibilityActions={
3989
+ [
3990
+ {
3991
+ "label": "increment",
3992
+ "name": "increment",
3993
+ },
3994
+ {
3995
+ "label": "decrement",
3996
+ "name": "decrement",
3997
+ },
3998
+ ]
3999
+ }
4000
+ accessibilityRole="adjustable"
4001
+ accessible={true}
4002
+ onAccessibilityAction={[Function]}
4003
+ testID="undefined.header"
4004
+ >
4005
+ <View
4006
+ style={
4007
+ [
4008
+ {
4009
+ "alignItems": "center",
4010
+ "flexDirection": "row",
4011
+ "justifyContent": "space-between",
4012
+ "marginTop": 6,
4013
+ "paddingLeft": 10,
4014
+ "paddingRight": 10,
4015
+ },
4016
+ undefined,
4017
+ ]
4018
+ }
4019
+ >
4020
+ <View
4021
+ accessibilityState={
4022
+ {
4023
+ "busy": undefined,
4024
+ "checked": undefined,
4025
+ "disabled": undefined,
4026
+ "expanded": undefined,
4027
+ "selected": undefined,
4028
+ }
4029
+ }
4030
+ accessibilityValue={
4031
+ {
4032
+ "max": undefined,
4033
+ "min": undefined,
4034
+ "now": undefined,
4035
+ "text": undefined,
4036
+ }
4037
+ }
4038
+ accessible={true}
4039
+ collapsable={false}
4040
+ focusable={true}
4041
+ hitSlop={
4042
+ {
4043
+ "bottom": 20,
4044
+ "left": 20,
4045
+ "right": 20,
4046
+ "top": 20,
4047
+ }
4048
+ }
4049
+ onClick={[Function]}
4050
+ onResponderGrant={[Function]}
4051
+ onResponderMove={[Function]}
4052
+ onResponderRelease={[Function]}
4053
+ onResponderTerminate={[Function]}
4054
+ onResponderTerminationRequest={[Function]}
4055
+ onStartShouldSetResponder={[Function]}
4056
+ style={
4057
+ {
4058
+ "opacity": 1,
4059
+ "padding": 10,
4060
+ }
4061
+ }
4062
+ testID="undefined.header.leftArrow"
4063
+ >
4064
+ <RNSVGSvgView
4065
+ align="xMidYMid"
4066
+ bbHeight="24"
4067
+ bbWidth="24"
4068
+ fill="none"
4069
+ focusable={false}
4070
+ height={24}
4071
+ meetOrSlice={0}
4072
+ minX={0}
4073
+ minY={0}
4074
+ style={
4075
+ [
4076
+ {
4077
+ "backgroundColor": "transparent",
4078
+ "borderWidth": 0,
4079
+ },
4080
+ {
4081
+ "flex": 0,
4082
+ "height": 24,
4083
+ "width": 24,
4084
+ },
4085
+ ]
4086
+ }
4087
+ vbHeight={19}
4088
+ vbWidth={10}
4089
+ width={24}
4090
+ >
4091
+ <RNSVGGroup
4092
+ fill={null}
4093
+ propList={
4094
+ [
4095
+ "fill",
4096
+ ]
4097
+ }
4098
+ >
4099
+ <RNSVGPath
4100
+ d="M8.875 17.375L1 9.5L8.875 1.625"
4101
+ propList={
4102
+ [
4103
+ "stroke",
4104
+ "strokeWidth",
4105
+ "strokeLinecap",
4106
+ "strokeLinejoin",
4107
+ ]
4108
+ }
4109
+ stroke={
4110
+ {
4111
+ "payload": 4279837036,
4112
+ "type": 0,
4113
+ }
4114
+ }
4115
+ strokeLinecap={1}
4116
+ strokeLinejoin={1}
4117
+ strokeWidth="2"
4118
+ />
4119
+ </RNSVGGroup>
4120
+ </RNSVGSvgView>
4121
+ </View>
4122
+ <View
4123
+ style={
4124
+ {
4125
+ "alignItems": "center",
4126
+ "backgroundColor": "#19216C",
4127
+ "borderRadius": 32,
4128
+ "flexDirection": "row",
4129
+ "height": 32,
4130
+ "justifyContent": "center",
4131
+ "paddingBottom": 4,
4132
+ "paddingLeft": 16,
4133
+ "paddingRight": 16,
4134
+ "paddingTop": 4,
4135
+ }
4136
+ }
4137
+ >
4138
+ <Text
4139
+ allowFontScaling={false}
4140
+ style={
4141
+ {
4142
+ "color": "#FFFFFF",
4143
+ "fontFamily": "SourceSansPro",
4144
+ "fontSize": 16,
4145
+ "lineHeight": 22.4,
4146
+ "margin": 0,
4147
+ }
4148
+ }
4149
+ testID="undefined.header.title"
4150
+ >
4151
+ Juli 2023
4152
+ </Text>
4153
+ </View>
4154
+ <View
4155
+ accessibilityState={
4156
+ {
4157
+ "busy": undefined,
4158
+ "checked": undefined,
4159
+ "disabled": undefined,
4160
+ "expanded": undefined,
4161
+ "selected": undefined,
4162
+ }
4163
+ }
4164
+ accessibilityValue={
4165
+ {
4166
+ "max": undefined,
4167
+ "min": undefined,
4168
+ "now": undefined,
4169
+ "text": undefined,
4170
+ }
4171
+ }
4172
+ accessible={true}
4173
+ collapsable={false}
4174
+ focusable={true}
4175
+ hitSlop={
4176
+ {
4177
+ "bottom": 20,
4178
+ "left": 20,
4179
+ "right": 20,
4180
+ "top": 20,
4181
+ }
4182
+ }
4183
+ onClick={[Function]}
4184
+ onResponderGrant={[Function]}
4185
+ onResponderMove={[Function]}
4186
+ onResponderRelease={[Function]}
4187
+ onResponderTerminate={[Function]}
4188
+ onResponderTerminationRequest={[Function]}
4189
+ onStartShouldSetResponder={[Function]}
4190
+ style={
4191
+ {
4192
+ "opacity": 1,
4193
+ "padding": 10,
4194
+ }
4195
+ }
4196
+ testID="undefined.header.rightArrow"
4197
+ >
4198
+ <RNSVGSvgView
4199
+ align="xMidYMid"
4200
+ bbHeight="24"
4201
+ bbWidth="24"
4202
+ fill="none"
4203
+ focusable={false}
4204
+ height={24}
4205
+ meetOrSlice={0}
4206
+ minX={0}
4207
+ minY={0}
4208
+ style={
4209
+ [
4210
+ {
4211
+ "backgroundColor": "transparent",
4212
+ "borderWidth": 0,
4213
+ },
4214
+ {
4215
+ "flex": 0,
4216
+ "height": 24,
4217
+ "width": 24,
4218
+ },
4219
+ ]
4220
+ }
4221
+ vbHeight={19}
4222
+ vbWidth={11}
4223
+ width={24}
4224
+ >
4225
+ <RNSVGGroup
4226
+ fill={null}
4227
+ propList={
4228
+ [
4229
+ "fill",
4230
+ ]
4231
+ }
4232
+ >
4233
+ <RNSVGPath
4234
+ d="M1.75 1.625L9.33333 9.5L1.75 17.375"
4235
+ propList={
4236
+ [
4237
+ "stroke",
4238
+ "strokeWidth",
4239
+ "strokeLinecap",
4240
+ "strokeLinejoin",
4241
+ ]
4242
+ }
4243
+ stroke={
4244
+ {
4245
+ "payload": 4279837036,
4246
+ "type": 0,
4247
+ }
4248
+ }
4249
+ strokeLinecap={1}
4250
+ strokeLinejoin={1}
4251
+ strokeWidth="2"
4252
+ />
4253
+ </RNSVGGroup>
4254
+ </RNSVGSvgView>
4255
+ </View>
4256
+ </View>
4257
+ <View
4258
+ style={
4259
+ [
4260
+ {
4261
+ "flexDirection": "row",
4262
+ "justifyContent": "space-around",
4263
+ "marginTop": 32,
4264
+ },
4265
+ undefined,
4266
+ ]
4267
+ }
4268
+ testID="undefined.header.dayNames"
4269
+ >
4270
+ <Text
4271
+ accessibilityLabel=""
4272
+ allowFontScaling={false}
4273
+ numberOfLines={1}
4274
+ style={
4275
+ [
4276
+ {
4277
+ "color": "#1F2933",
4278
+ "fontFamily": "SourceSansProBold",
4279
+ "fontSize": 16,
4280
+ "lineHeight": 22.4,
4281
+ "marginBottom": 24,
4282
+ "textAlign": "center",
4283
+ "width": 32,
4284
+ },
4285
+ ]
4286
+ }
4287
+ >
4288
+ Ma
4289
+ </Text>
4290
+ <Text
4291
+ accessibilityLabel=""
4292
+ allowFontScaling={false}
4293
+ numberOfLines={1}
4294
+ style={
4295
+ [
4296
+ {
4297
+ "color": "#1F2933",
4298
+ "fontFamily": "SourceSansProBold",
4299
+ "fontSize": 16,
4300
+ "lineHeight": 22.4,
4301
+ "marginBottom": 24,
4302
+ "textAlign": "center",
4303
+ "width": 32,
4304
+ },
4305
+ ]
4306
+ }
4307
+ >
4308
+ Di
4309
+ </Text>
4310
+ <Text
4311
+ accessibilityLabel=""
4312
+ allowFontScaling={false}
4313
+ numberOfLines={1}
4314
+ style={
4315
+ [
4316
+ {
4317
+ "color": "#1F2933",
4318
+ "fontFamily": "SourceSansProBold",
4319
+ "fontSize": 16,
4320
+ "lineHeight": 22.4,
4321
+ "marginBottom": 24,
4322
+ "textAlign": "center",
4323
+ "width": 32,
4324
+ },
4325
+ ]
4326
+ }
4327
+ >
4328
+ Wo
4329
+ </Text>
4330
+ <Text
4331
+ accessibilityLabel=""
4332
+ allowFontScaling={false}
4333
+ numberOfLines={1}
4334
+ style={
4335
+ [
4336
+ {
4337
+ "color": "#1F2933",
4338
+ "fontFamily": "SourceSansProBold",
4339
+ "fontSize": 16,
4340
+ "lineHeight": 22.4,
4341
+ "marginBottom": 24,
4342
+ "textAlign": "center",
4343
+ "width": 32,
4344
+ },
4345
+ ]
4346
+ }
4347
+ >
4348
+ Do
4349
+ </Text>
4350
+ <Text
4351
+ accessibilityLabel=""
4352
+ allowFontScaling={false}
4353
+ numberOfLines={1}
4354
+ style={
4355
+ [
4356
+ {
4357
+ "color": "#1F2933",
4358
+ "fontFamily": "SourceSansProBold",
4359
+ "fontSize": 16,
4360
+ "lineHeight": 22.4,
4361
+ "marginBottom": 24,
4362
+ "textAlign": "center",
4363
+ "width": 32,
4364
+ },
4365
+ ]
4366
+ }
4367
+ >
4368
+ Vr
4369
+ </Text>
4370
+ <Text
4371
+ accessibilityLabel=""
4372
+ allowFontScaling={false}
4373
+ numberOfLines={1}
4374
+ style={
4375
+ [
4376
+ {
4377
+ "color": "#1F2933",
4378
+ "fontFamily": "SourceSansProBold",
4379
+ "fontSize": 16,
4380
+ "lineHeight": 22.4,
4381
+ "marginBottom": 24,
4382
+ "textAlign": "center",
4383
+ "width": 32,
4384
+ },
4385
+ ]
4386
+ }
4387
+ >
4388
+ Za
4389
+ </Text>
4390
+ <Text
4391
+ accessibilityLabel=""
4392
+ allowFontScaling={false}
4393
+ numberOfLines={1}
4394
+ style={
4395
+ [
4396
+ {
4397
+ "color": "#1F2933",
4398
+ "fontFamily": "SourceSansProBold",
4399
+ "fontSize": 16,
4400
+ "lineHeight": 22.4,
4401
+ "marginBottom": 24,
4402
+ "textAlign": "center",
4403
+ "width": 32,
4404
+ },
4405
+ ]
4406
+ }
4407
+ >
4408
+ Zo
4409
+ </Text>
4410
+ </View>
4411
+ </View>
4412
+ <View
4413
+ style={
4414
+ {
4415
+ "backgroundColor": "white",
4416
+ }
4417
+ }
4418
+ >
4419
+ <View
4420
+ style={
4421
+ {
4422
+ "flexDirection": "row",
4423
+ "justifyContent": "space-around",
4424
+ "marginVertical": 7,
4425
+ }
4426
+ }
4427
+ >
4428
+ <View
4429
+ style={
4430
+ {
4431
+ "alignItems": "center",
4432
+ "flex": 1,
4433
+ }
4434
+ }
4435
+ >
4436
+ <View
4437
+ accessibilityLabel=" Maandag 26 Juni 2023 "
4438
+ accessibilityState={
4439
+ {
4440
+ "busy": undefined,
4441
+ "checked": undefined,
4442
+ "disabled": false,
4443
+ "expanded": undefined,
4444
+ "selected": undefined,
4445
+ }
4446
+ }
4447
+ accessibilityValue={
4448
+ {
4449
+ "max": undefined,
4450
+ "min": undefined,
4451
+ "now": undefined,
4452
+ "text": undefined,
4453
+ }
4454
+ }
4455
+ accessible={true}
4456
+ collapsable={false}
4457
+ focusable={true}
4458
+ onClick={[Function]}
4459
+ onResponderGrant={[Function]}
4460
+ onResponderMove={[Function]}
4461
+ onResponderRelease={[Function]}
4462
+ onResponderTerminate={[Function]}
4463
+ onResponderTerminationRequest={[Function]}
4464
+ onStartShouldSetResponder={[Function]}
4465
+ style={
4466
+ {
4467
+ "alignItems": "center",
4468
+ "height": 42,
4469
+ "justifyContent": "center",
4470
+ "opacity": 1,
4471
+ "width": 42,
4472
+ }
4473
+ }
4474
+ testID="undefined.day_2023-06-26"
4475
+ >
4476
+ <Text
4477
+ allowFontScaling={false}
4478
+ style={
4479
+ [
4480
+ {
4481
+ "color": "#1F2933",
4482
+ "fontFamily": "SourceSansPro",
4483
+ "fontSize": 16,
4484
+ "lineHeight": 22.4,
4485
+ "marginTop": 4,
4486
+ },
4487
+ {
4488
+ "color": "#9AA5B1",
4489
+ },
4490
+ ]
4491
+ }
4492
+ >
4493
+ 26
4494
+ </Text>
4495
+ <View
4496
+ style={
4497
+ [
4498
+ {
4499
+ "borderRadius": 2,
4500
+ "height": 4,
4501
+ "marginHorizontal": 1,
4502
+ "marginTop": 1,
4503
+ "opacity": 0,
4504
+ "width": 4,
4505
+ },
4506
+ ]
4507
+ }
4508
+ />
4509
+ </View>
4510
+ </View>
4511
+ <View
4512
+ style={
4513
+ {
4514
+ "alignItems": "center",
4515
+ "flex": 1,
4516
+ }
4517
+ }
4518
+ >
4519
+ <View
4520
+ accessibilityLabel=" Dinsdag 27 Juni 2023 "
4521
+ accessibilityState={
4522
+ {
4523
+ "busy": undefined,
4524
+ "checked": undefined,
4525
+ "disabled": false,
4526
+ "expanded": undefined,
4527
+ "selected": undefined,
4528
+ }
4529
+ }
4530
+ accessibilityValue={
4531
+ {
4532
+ "max": undefined,
4533
+ "min": undefined,
4534
+ "now": undefined,
4535
+ "text": undefined,
4536
+ }
4537
+ }
4538
+ accessible={true}
4539
+ collapsable={false}
4540
+ focusable={true}
4541
+ onClick={[Function]}
4542
+ onResponderGrant={[Function]}
4543
+ onResponderMove={[Function]}
4544
+ onResponderRelease={[Function]}
4545
+ onResponderTerminate={[Function]}
4546
+ onResponderTerminationRequest={[Function]}
4547
+ onStartShouldSetResponder={[Function]}
4548
+ style={
4549
+ {
4550
+ "alignItems": "center",
4551
+ "height": 42,
4552
+ "justifyContent": "center",
4553
+ "opacity": 1,
4554
+ "width": 42,
4555
+ }
4556
+ }
4557
+ testID="undefined.day_2023-06-27"
4558
+ >
4559
+ <Text
4560
+ allowFontScaling={false}
4561
+ style={
4562
+ [
4563
+ {
4564
+ "color": "#1F2933",
4565
+ "fontFamily": "SourceSansPro",
4566
+ "fontSize": 16,
4567
+ "lineHeight": 22.4,
4568
+ "marginTop": 4,
4569
+ },
4570
+ {
4571
+ "color": "#9AA5B1",
4572
+ },
4573
+ ]
4574
+ }
4575
+ >
4576
+ 27
4577
+ </Text>
4578
+ <View
4579
+ style={
4580
+ [
4581
+ {
4582
+ "borderRadius": 2,
4583
+ "height": 4,
4584
+ "marginHorizontal": 1,
4585
+ "marginTop": 1,
4586
+ "opacity": 0,
4587
+ "width": 4,
4588
+ },
4589
+ ]
4590
+ }
4591
+ />
4592
+ </View>
4593
+ </View>
4594
+ <View
4595
+ style={
4596
+ {
4597
+ "alignItems": "center",
4598
+ "flex": 1,
4599
+ }
4600
+ }
4601
+ >
4602
+ <View
4603
+ accessibilityLabel=" Woensdag 28 Juni 2023 "
4604
+ accessibilityState={
4605
+ {
4606
+ "busy": undefined,
4607
+ "checked": undefined,
4608
+ "disabled": false,
4609
+ "expanded": undefined,
4610
+ "selected": undefined,
4611
+ }
4612
+ }
4613
+ accessibilityValue={
4614
+ {
4615
+ "max": undefined,
4616
+ "min": undefined,
4617
+ "now": undefined,
4618
+ "text": undefined,
4619
+ }
4620
+ }
4621
+ accessible={true}
4622
+ collapsable={false}
4623
+ focusable={true}
4624
+ onClick={[Function]}
4625
+ onResponderGrant={[Function]}
4626
+ onResponderMove={[Function]}
4627
+ onResponderRelease={[Function]}
4628
+ onResponderTerminate={[Function]}
4629
+ onResponderTerminationRequest={[Function]}
4630
+ onStartShouldSetResponder={[Function]}
4631
+ style={
4632
+ {
4633
+ "alignItems": "center",
4634
+ "height": 42,
4635
+ "justifyContent": "center",
4636
+ "opacity": 1,
4637
+ "width": 42,
4638
+ }
4639
+ }
4640
+ testID="undefined.day_2023-06-28"
4641
+ >
4642
+ <Text
4643
+ allowFontScaling={false}
4644
+ style={
4645
+ [
4646
+ {
4647
+ "color": "#1F2933",
4648
+ "fontFamily": "SourceSansPro",
4649
+ "fontSize": 16,
4650
+ "lineHeight": 22.4,
4651
+ "marginTop": 4,
4652
+ },
4653
+ {
4654
+ "color": "#9AA5B1",
4655
+ },
4656
+ ]
4657
+ }
4658
+ >
4659
+ 28
4660
+ </Text>
4661
+ <View
4662
+ style={
4663
+ [
4664
+ {
4665
+ "borderRadius": 2,
4666
+ "height": 4,
4667
+ "marginHorizontal": 1,
4668
+ "marginTop": 1,
4669
+ "opacity": 0,
4670
+ "width": 4,
4671
+ },
4672
+ ]
4673
+ }
4674
+ />
4675
+ </View>
4676
+ </View>
4677
+ <View
4678
+ style={
4679
+ {
4680
+ "alignItems": "center",
4681
+ "flex": 1,
4682
+ }
4683
+ }
4684
+ >
4685
+ <View
4686
+ accessibilityLabel=" Donderdag 29 Juni 2023 "
4687
+ accessibilityState={
4688
+ {
4689
+ "busy": undefined,
4690
+ "checked": undefined,
4691
+ "disabled": false,
4692
+ "expanded": undefined,
4693
+ "selected": undefined,
4694
+ }
4695
+ }
4696
+ accessibilityValue={
4697
+ {
4698
+ "max": undefined,
4699
+ "min": undefined,
4700
+ "now": undefined,
4701
+ "text": undefined,
4702
+ }
4703
+ }
4704
+ accessible={true}
4705
+ collapsable={false}
4706
+ focusable={true}
4707
+ onClick={[Function]}
4708
+ onResponderGrant={[Function]}
4709
+ onResponderMove={[Function]}
4710
+ onResponderRelease={[Function]}
4711
+ onResponderTerminate={[Function]}
4712
+ onResponderTerminationRequest={[Function]}
4713
+ onStartShouldSetResponder={[Function]}
4714
+ style={
4715
+ {
4716
+ "alignItems": "center",
4717
+ "height": 42,
4718
+ "justifyContent": "center",
4719
+ "opacity": 1,
4720
+ "width": 42,
4721
+ }
4722
+ }
4723
+ testID="undefined.day_2023-06-29"
4724
+ >
4725
+ <Text
4726
+ allowFontScaling={false}
4727
+ style={
4728
+ [
4729
+ {
4730
+ "color": "#1F2933",
4731
+ "fontFamily": "SourceSansPro",
4732
+ "fontSize": 16,
4733
+ "lineHeight": 22.4,
4734
+ "marginTop": 4,
4735
+ },
4736
+ {
4737
+ "color": "#9AA5B1",
4738
+ },
4739
+ ]
4740
+ }
4741
+ >
4742
+ 29
4743
+ </Text>
4744
+ <View
4745
+ style={
4746
+ [
4747
+ {
4748
+ "borderRadius": 2,
4749
+ "height": 4,
4750
+ "marginHorizontal": 1,
4751
+ "marginTop": 1,
4752
+ "opacity": 0,
4753
+ "width": 4,
4754
+ },
4755
+ ]
4756
+ }
4757
+ />
4758
+ </View>
4759
+ </View>
4760
+ <View
4761
+ style={
4762
+ {
4763
+ "alignItems": "center",
4764
+ "flex": 1,
4765
+ }
4766
+ }
4767
+ >
4768
+ <View
4769
+ accessibilityLabel=" Vrijdag 30 Juni 2023 "
4770
+ accessibilityState={
4771
+ {
4772
+ "busy": undefined,
4773
+ "checked": undefined,
4774
+ "disabled": false,
4775
+ "expanded": undefined,
4776
+ "selected": undefined,
4777
+ }
4778
+ }
4779
+ accessibilityValue={
4780
+ {
4781
+ "max": undefined,
4782
+ "min": undefined,
4783
+ "now": undefined,
4784
+ "text": undefined,
4785
+ }
4786
+ }
4787
+ accessible={true}
4788
+ collapsable={false}
4789
+ focusable={true}
4790
+ onClick={[Function]}
4791
+ onResponderGrant={[Function]}
4792
+ onResponderMove={[Function]}
4793
+ onResponderRelease={[Function]}
4794
+ onResponderTerminate={[Function]}
4795
+ onResponderTerminationRequest={[Function]}
4796
+ onStartShouldSetResponder={[Function]}
4797
+ style={
4798
+ {
4799
+ "alignItems": "center",
4800
+ "height": 42,
4801
+ "justifyContent": "center",
4802
+ "opacity": 1,
4803
+ "width": 42,
4804
+ }
4805
+ }
4806
+ testID="undefined.day_2023-06-30"
4807
+ >
4808
+ <Text
4809
+ allowFontScaling={false}
4810
+ style={
4811
+ [
4812
+ {
4813
+ "color": "#1F2933",
4814
+ "fontFamily": "SourceSansPro",
4815
+ "fontSize": 16,
4816
+ "lineHeight": 22.4,
4817
+ "marginTop": 4,
4818
+ },
4819
+ {
4820
+ "color": "#9AA5B1",
4821
+ },
4822
+ ]
4823
+ }
4824
+ >
4825
+ 30
4826
+ </Text>
4827
+ <View
4828
+ style={
4829
+ [
4830
+ {
4831
+ "borderRadius": 2,
4832
+ "height": 4,
4833
+ "marginHorizontal": 1,
4834
+ "marginTop": 1,
4835
+ "opacity": 0,
4836
+ "width": 4,
4837
+ },
4838
+ ]
4839
+ }
4840
+ />
4841
+ </View>
4842
+ </View>
4843
+ <View
4844
+ style={
4845
+ {
4846
+ "alignItems": "center",
4847
+ "flex": 1,
4848
+ }
4849
+ }
4850
+ >
4851
+ <View
4852
+ accessibilityLabel=" Zaterdag 1 Juli 2023 "
4853
+ accessibilityState={
4854
+ {
4855
+ "busy": undefined,
4856
+ "checked": undefined,
4857
+ "disabled": false,
4858
+ "expanded": undefined,
4859
+ "selected": undefined,
4860
+ }
4861
+ }
4862
+ accessibilityValue={
4863
+ {
4864
+ "max": undefined,
4865
+ "min": undefined,
4866
+ "now": undefined,
4867
+ "text": undefined,
4868
+ }
4869
+ }
4870
+ accessible={true}
4871
+ collapsable={false}
4872
+ focusable={true}
4873
+ onClick={[Function]}
4874
+ onResponderGrant={[Function]}
4875
+ onResponderMove={[Function]}
4876
+ onResponderRelease={[Function]}
4877
+ onResponderTerminate={[Function]}
4878
+ onResponderTerminationRequest={[Function]}
4879
+ onStartShouldSetResponder={[Function]}
4880
+ style={
4881
+ {
4882
+ "alignItems": "center",
4883
+ "height": 42,
4884
+ "justifyContent": "center",
4885
+ "opacity": 1,
4886
+ "width": 42,
4887
+ }
4888
+ }
4889
+ testID="undefined.day_2023-07-01"
4890
+ >
4891
+ <Text
4892
+ allowFontScaling={false}
4893
+ style={
4894
+ [
4895
+ {
4896
+ "color": "#1F2933",
4897
+ "fontFamily": "SourceSansPro",
4898
+ "fontSize": 16,
4899
+ "lineHeight": 22.4,
4900
+ "marginTop": 4,
4901
+ },
4902
+ {
4903
+ "color": "#9AA5B1",
4904
+ },
4905
+ ]
4906
+ }
4907
+ >
4908
+ 1
4909
+ </Text>
4910
+ <View
4911
+ style={
4912
+ [
4913
+ {
4914
+ "borderRadius": 2,
4915
+ "height": 4,
4916
+ "marginHorizontal": 1,
4917
+ "marginTop": 1,
4918
+ "opacity": 0,
4919
+ "width": 4,
4920
+ },
4921
+ ]
4922
+ }
4923
+ />
4924
+ </View>
4925
+ </View>
4926
+ <View
3745
4927
  style={
3746
- [
3747
- {
3748
- "color": "#1F2933",
3749
- "fontFamily": "SourceSansProBold",
3750
- "fontSize": 16,
3751
- "lineHeight": 22.4,
3752
- "marginBottom": 24,
3753
- "textAlign": "center",
3754
- "width": 32,
3755
- },
3756
- ]
4928
+ {
4929
+ "alignItems": "center",
4930
+ "flex": 1,
4931
+ }
3757
4932
  }
3758
4933
  >
3759
- Do
3760
- </Text>
3761
- <Text
3762
- accessibilityLabel=""
3763
- allowFontScaling={false}
3764
- numberOfLines={1}
3765
- style={
3766
- [
4934
+ <View
4935
+ accessibilityLabel=" Zondag 2 Juli 2023 "
4936
+ accessibilityState={
3767
4937
  {
3768
- "color": "#1F2933",
3769
- "fontFamily": "SourceSansProBold",
3770
- "fontSize": 16,
3771
- "lineHeight": 22.4,
3772
- "marginBottom": 24,
3773
- "textAlign": "center",
3774
- "width": 32,
3775
- },
3776
- ]
3777
- }
3778
- >
3779
- Vr
3780
- </Text>
3781
- <Text
3782
- accessibilityLabel=""
3783
- allowFontScaling={false}
3784
- numberOfLines={1}
3785
- style={
3786
- [
4938
+ "busy": undefined,
4939
+ "checked": undefined,
4940
+ "disabled": false,
4941
+ "expanded": undefined,
4942
+ "selected": undefined,
4943
+ }
4944
+ }
4945
+ accessibilityValue={
3787
4946
  {
3788
- "color": "#1F2933",
3789
- "fontFamily": "SourceSansProBold",
3790
- "fontSize": 16,
3791
- "lineHeight": 22.4,
3792
- "marginBottom": 24,
3793
- "textAlign": "center",
3794
- "width": 32,
3795
- },
3796
- ]
3797
- }
3798
- >
3799
- Za
3800
- </Text>
3801
- <Text
3802
- accessibilityLabel=""
3803
- allowFontScaling={false}
3804
- numberOfLines={1}
3805
- style={
3806
- [
4947
+ "max": undefined,
4948
+ "min": undefined,
4949
+ "now": undefined,
4950
+ "text": undefined,
4951
+ }
4952
+ }
4953
+ accessible={true}
4954
+ collapsable={false}
4955
+ focusable={true}
4956
+ onClick={[Function]}
4957
+ onResponderGrant={[Function]}
4958
+ onResponderMove={[Function]}
4959
+ onResponderRelease={[Function]}
4960
+ onResponderTerminate={[Function]}
4961
+ onResponderTerminationRequest={[Function]}
4962
+ onStartShouldSetResponder={[Function]}
4963
+ style={
3807
4964
  {
3808
- "color": "#1F2933",
3809
- "fontFamily": "SourceSansProBold",
3810
- "fontSize": 16,
3811
- "lineHeight": 22.4,
3812
- "marginBottom": 24,
3813
- "textAlign": "center",
3814
- "width": 32,
3815
- },
3816
- ]
3817
- }
3818
- >
3819
- Zo
3820
- </Text>
4965
+ "alignItems": "center",
4966
+ "height": 42,
4967
+ "justifyContent": "center",
4968
+ "opacity": 1,
4969
+ "width": 42,
4970
+ }
4971
+ }
4972
+ testID="undefined.day_2023-07-02"
4973
+ >
4974
+ <Text
4975
+ allowFontScaling={false}
4976
+ style={
4977
+ [
4978
+ {
4979
+ "color": "#1F2933",
4980
+ "fontFamily": "SourceSansPro",
4981
+ "fontSize": 16,
4982
+ "lineHeight": 22.4,
4983
+ "marginTop": 4,
4984
+ },
4985
+ {
4986
+ "color": "#9AA5B1",
4987
+ },
4988
+ ]
4989
+ }
4990
+ >
4991
+ 2
4992
+ </Text>
4993
+ <View
4994
+ style={
4995
+ [
4996
+ {
4997
+ "borderRadius": 2,
4998
+ "height": 4,
4999
+ "marginHorizontal": 1,
5000
+ "marginTop": 1,
5001
+ "opacity": 0,
5002
+ "width": 4,
5003
+ },
5004
+ ]
5005
+ }
5006
+ />
5007
+ </View>
5008
+ </View>
3821
5009
  </View>
3822
- </View>
3823
- <View
3824
- style={
3825
- {
3826
- "backgroundColor": "white",
3827
- }
3828
- }
3829
- >
3830
5010
  <View
3831
5011
  style={
3832
5012
  {
@@ -3845,7 +5025,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3845
5025
  }
3846
5026
  >
3847
5027
  <View
3848
- accessibilityLabel=" Maandag 29 Mei 2023 "
5028
+ accessibilityLabel=" Maandag 3 Juli 2023 "
3849
5029
  accessibilityState={
3850
5030
  {
3851
5031
  "busy": undefined,
@@ -3882,7 +5062,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3882
5062
  "width": 42,
3883
5063
  }
3884
5064
  }
3885
- testID="undefined.day_2023-05-29"
5065
+ testID="undefined.day_2023-07-03"
3886
5066
  >
3887
5067
  <Text
3888
5068
  allowFontScaling={false}
@@ -3901,7 +5081,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3901
5081
  ]
3902
5082
  }
3903
5083
  >
3904
- 29
5084
+ 3
3905
5085
  </Text>
3906
5086
  <View
3907
5087
  style={
@@ -3928,7 +5108,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3928
5108
  }
3929
5109
  >
3930
5110
  <View
3931
- accessibilityLabel=" Dinsdag 30 Mei 2023 "
5111
+ accessibilityLabel=" Dinsdag 4 Juli 2023 "
3932
5112
  accessibilityState={
3933
5113
  {
3934
5114
  "busy": undefined,
@@ -3965,7 +5145,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3965
5145
  "width": 42,
3966
5146
  }
3967
5147
  }
3968
- testID="undefined.day_2023-05-30"
5148
+ testID="undefined.day_2023-07-04"
3969
5149
  >
3970
5150
  <Text
3971
5151
  allowFontScaling={false}
@@ -3984,7 +5164,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3984
5164
  ]
3985
5165
  }
3986
5166
  >
3987
- 30
5167
+ 4
3988
5168
  </Text>
3989
5169
  <View
3990
5170
  style={
@@ -4011,7 +5191,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4011
5191
  }
4012
5192
  >
4013
5193
  <View
4014
- accessibilityLabel=" Woensdag 31 Mei 2023 "
5194
+ accessibilityLabel=" Woensdag 5 Juli 2023 "
4015
5195
  accessibilityState={
4016
5196
  {
4017
5197
  "busy": undefined,
@@ -4048,7 +5228,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4048
5228
  "width": 42,
4049
5229
  }
4050
5230
  }
4051
- testID="undefined.day_2023-05-31"
5231
+ testID="undefined.day_2023-07-05"
4052
5232
  >
4053
5233
  <Text
4054
5234
  allowFontScaling={false}
@@ -4067,7 +5247,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4067
5247
  ]
4068
5248
  }
4069
5249
  >
4070
- 31
5250
+ 5
4071
5251
  </Text>
4072
5252
  <View
4073
5253
  style={
@@ -4094,7 +5274,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4094
5274
  }
4095
5275
  >
4096
5276
  <View
4097
- accessibilityLabel=" Donderdag 1 Juni 2023 "
5277
+ accessibilityLabel=" Donderdag 6 Juli 2023 "
4098
5278
  accessibilityState={
4099
5279
  {
4100
5280
  "busy": undefined,
@@ -4131,7 +5311,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4131
5311
  "width": 42,
4132
5312
  }
4133
5313
  }
4134
- testID="undefined.day_2023-06-01"
5314
+ testID="undefined.day_2023-07-06"
4135
5315
  >
4136
5316
  <Text
4137
5317
  allowFontScaling={false}
@@ -4150,7 +5330,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4150
5330
  ]
4151
5331
  }
4152
5332
  >
4153
- 1
5333
+ 6
4154
5334
  </Text>
4155
5335
  <View
4156
5336
  style={
@@ -4177,7 +5357,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4177
5357
  }
4178
5358
  >
4179
5359
  <View
4180
- accessibilityLabel=" Vrijdag 2 Juni 2023 "
5360
+ accessibilityLabel=" Vrijdag 7 Juli 2023 "
4181
5361
  accessibilityState={
4182
5362
  {
4183
5363
  "busy": undefined,
@@ -4214,7 +5394,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4214
5394
  "width": 42,
4215
5395
  }
4216
5396
  }
4217
- testID="undefined.day_2023-06-02"
5397
+ testID="undefined.day_2023-07-07"
4218
5398
  >
4219
5399
  <Text
4220
5400
  allowFontScaling={false}
@@ -4233,7 +5413,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4233
5413
  ]
4234
5414
  }
4235
5415
  >
4236
- 2
5416
+ 7
4237
5417
  </Text>
4238
5418
  <View
4239
5419
  style={
@@ -4260,7 +5440,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4260
5440
  }
4261
5441
  >
4262
5442
  <View
4263
- accessibilityLabel=" Zaterdag 3 Juni 2023 "
5443
+ accessibilityLabel=" Zaterdag 8 Juli 2023 "
4264
5444
  accessibilityState={
4265
5445
  {
4266
5446
  "busy": undefined,
@@ -4297,7 +5477,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4297
5477
  "width": 42,
4298
5478
  }
4299
5479
  }
4300
- testID="undefined.day_2023-06-03"
5480
+ testID="undefined.day_2023-07-08"
4301
5481
  >
4302
5482
  <Text
4303
5483
  allowFontScaling={false}
@@ -4316,7 +5496,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4316
5496
  ]
4317
5497
  }
4318
5498
  >
4319
- 3
5499
+ 8
4320
5500
  </Text>
4321
5501
  <View
4322
5502
  style={
@@ -4343,7 +5523,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4343
5523
  }
4344
5524
  >
4345
5525
  <View
4346
- accessibilityLabel=" Zondag 4 Juni 2023 "
5526
+ accessibilityLabel=" Zondag 9 Juli 2023 "
4347
5527
  accessibilityState={
4348
5528
  {
4349
5529
  "busy": undefined,
@@ -4380,7 +5560,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4380
5560
  "width": 42,
4381
5561
  }
4382
5562
  }
4383
- testID="undefined.day_2023-06-04"
5563
+ testID="undefined.day_2023-07-09"
4384
5564
  >
4385
5565
  <Text
4386
5566
  allowFontScaling={false}
@@ -4399,7 +5579,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4399
5579
  ]
4400
5580
  }
4401
5581
  >
4402
- 4
5582
+ 9
4403
5583
  </Text>
4404
5584
  <View
4405
5585
  style={
@@ -4436,7 +5616,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4436
5616
  }
4437
5617
  >
4438
5618
  <View
4439
- accessibilityLabel=" Maandag 5 Juni 2023 "
5619
+ accessibilityLabel=" Maandag 10 Juli 2023 "
4440
5620
  accessibilityState={
4441
5621
  {
4442
5622
  "busy": undefined,
@@ -4473,7 +5653,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4473
5653
  "width": 42,
4474
5654
  }
4475
5655
  }
4476
- testID="undefined.day_2023-06-05"
5656
+ testID="undefined.day_2023-07-10"
4477
5657
  >
4478
5658
  <Text
4479
5659
  allowFontScaling={false}
@@ -4492,7 +5672,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4492
5672
  ]
4493
5673
  }
4494
5674
  >
4495
- 5
5675
+ 10
4496
5676
  </Text>
4497
5677
  <View
4498
5678
  style={
@@ -4519,7 +5699,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4519
5699
  }
4520
5700
  >
4521
5701
  <View
4522
- accessibilityLabel=" Dinsdag 6 Juni 2023 "
5702
+ accessibilityLabel=" Dinsdag 11 Juli 2023 "
4523
5703
  accessibilityState={
4524
5704
  {
4525
5705
  "busy": undefined,
@@ -4556,7 +5736,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4556
5736
  "width": 42,
4557
5737
  }
4558
5738
  }
4559
- testID="undefined.day_2023-06-06"
5739
+ testID="undefined.day_2023-07-11"
4560
5740
  >
4561
5741
  <Text
4562
5742
  allowFontScaling={false}
@@ -4575,7 +5755,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4575
5755
  ]
4576
5756
  }
4577
5757
  >
4578
- 6
5758
+ 11
4579
5759
  </Text>
4580
5760
  <View
4581
5761
  style={
@@ -4602,7 +5782,8 @@ exports[`Test for the calendar component renders a calendar where you can select
4602
5782
  }
4603
5783
  >
4604
5784
  <View
4605
- accessibilityLabel=" Woensdag 7 Juni 2023 "
5785
+ accessibilityLabel="today Woensdag 12 Juli 2023 "
5786
+ accessibilityRole="button"
4606
5787
  accessibilityState={
4607
5788
  {
4608
5789
  "busy": undefined,
@@ -4633,13 +5814,17 @@ exports[`Test for the calendar component renders a calendar where you can select
4633
5814
  style={
4634
5815
  {
4635
5816
  "alignItems": "center",
5817
+ "borderColor": "#7B93DB",
5818
+ "borderRadius": 21,
5819
+ "borderStyle": "solid",
5820
+ "borderWidth": 1,
4636
5821
  "height": 42,
4637
5822
  "justifyContent": "center",
4638
5823
  "opacity": 1,
4639
5824
  "width": 42,
4640
5825
  }
4641
5826
  }
4642
- testID="undefined.day_2023-06-07"
5827
+ testID="undefined.day_2023-07-12"
4643
5828
  >
4644
5829
  <Text
4645
5830
  allowFontScaling={false}
@@ -4653,12 +5838,12 @@ exports[`Test for the calendar component renders a calendar where you can select
4653
5838
  "marginTop": 4,
4654
5839
  },
4655
5840
  {
4656
- "color": "#9AA5B1",
5841
+ "color": "#7B93DB",
4657
5842
  },
4658
5843
  ]
4659
5844
  }
4660
5845
  >
4661
- 7
5846
+ 12
4662
5847
  </Text>
4663
5848
  <View
4664
5849
  style={
@@ -4685,7 +5870,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4685
5870
  }
4686
5871
  >
4687
5872
  <View
4688
- accessibilityLabel=" Donderdag 8 Juni 2023 "
5873
+ accessibilityLabel=" Donderdag 13 Juli 2023 "
4689
5874
  accessibilityState={
4690
5875
  {
4691
5876
  "busy": undefined,
@@ -4722,7 +5907,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4722
5907
  "width": 42,
4723
5908
  }
4724
5909
  }
4725
- testID="undefined.day_2023-06-08"
5910
+ testID="undefined.day_2023-07-13"
4726
5911
  >
4727
5912
  <Text
4728
5913
  allowFontScaling={false}
@@ -4741,7 +5926,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4741
5926
  ]
4742
5927
  }
4743
5928
  >
4744
- 8
5929
+ 13
4745
5930
  </Text>
4746
5931
  <View
4747
5932
  style={
@@ -4768,7 +5953,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4768
5953
  }
4769
5954
  >
4770
5955
  <View
4771
- accessibilityLabel=" Vrijdag 9 Juni 2023 "
5956
+ accessibilityLabel=" Vrijdag 14 Juli 2023 "
4772
5957
  accessibilityState={
4773
5958
  {
4774
5959
  "busy": undefined,
@@ -4805,7 +5990,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4805
5990
  "width": 42,
4806
5991
  }
4807
5992
  }
4808
- testID="undefined.day_2023-06-09"
5993
+ testID="undefined.day_2023-07-14"
4809
5994
  >
4810
5995
  <Text
4811
5996
  allowFontScaling={false}
@@ -4824,7 +6009,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4824
6009
  ]
4825
6010
  }
4826
6011
  >
4827
- 9
6012
+ 14
4828
6013
  </Text>
4829
6014
  <View
4830
6015
  style={
@@ -4851,7 +6036,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4851
6036
  }
4852
6037
  >
4853
6038
  <View
4854
- accessibilityLabel=" Zaterdag 10 Juni 2023 "
6039
+ accessibilityLabel=" Zaterdag 15 Juli 2023 "
4855
6040
  accessibilityState={
4856
6041
  {
4857
6042
  "busy": undefined,
@@ -4888,7 +6073,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4888
6073
  "width": 42,
4889
6074
  }
4890
6075
  }
4891
- testID="undefined.day_2023-06-10"
6076
+ testID="undefined.day_2023-07-15"
4892
6077
  >
4893
6078
  <Text
4894
6079
  allowFontScaling={false}
@@ -4907,7 +6092,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4907
6092
  ]
4908
6093
  }
4909
6094
  >
4910
- 10
6095
+ 15
4911
6096
  </Text>
4912
6097
  <View
4913
6098
  style={
@@ -4934,7 +6119,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4934
6119
  }
4935
6120
  >
4936
6121
  <View
4937
- accessibilityLabel=" Zondag 11 Juni 2023 "
6122
+ accessibilityLabel=" Zondag 16 Juli 2023 "
4938
6123
  accessibilityState={
4939
6124
  {
4940
6125
  "busy": undefined,
@@ -4971,7 +6156,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4971
6156
  "width": 42,
4972
6157
  }
4973
6158
  }
4974
- testID="undefined.day_2023-06-11"
6159
+ testID="undefined.day_2023-07-16"
4975
6160
  >
4976
6161
  <Text
4977
6162
  allowFontScaling={false}
@@ -4990,7 +6175,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4990
6175
  ]
4991
6176
  }
4992
6177
  >
4993
- 11
6178
+ 16
4994
6179
  </Text>
4995
6180
  <View
4996
6181
  style={
@@ -5027,7 +6212,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5027
6212
  }
5028
6213
  >
5029
6214
  <View
5030
- accessibilityLabel=" Maandag 12 Juni 2023 "
6215
+ accessibilityLabel=" Maandag 17 Juli 2023 "
5031
6216
  accessibilityState={
5032
6217
  {
5033
6218
  "busy": undefined,
@@ -5064,7 +6249,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5064
6249
  "width": 42,
5065
6250
  }
5066
6251
  }
5067
- testID="undefined.day_2023-06-12"
6252
+ testID="undefined.day_2023-07-17"
5068
6253
  >
5069
6254
  <Text
5070
6255
  allowFontScaling={false}
@@ -5083,7 +6268,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5083
6268
  ]
5084
6269
  }
5085
6270
  >
5086
- 12
6271
+ 17
5087
6272
  </Text>
5088
6273
  <View
5089
6274
  style={
@@ -5110,7 +6295,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5110
6295
  }
5111
6296
  >
5112
6297
  <View
5113
- accessibilityLabel=" Dinsdag 13 Juni 2023 "
6298
+ accessibilityLabel=" Dinsdag 18 Juli 2023 "
5114
6299
  accessibilityState={
5115
6300
  {
5116
6301
  "busy": undefined,
@@ -5147,7 +6332,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5147
6332
  "width": 42,
5148
6333
  }
5149
6334
  }
5150
- testID="undefined.day_2023-06-13"
6335
+ testID="undefined.day_2023-07-18"
5151
6336
  >
5152
6337
  <Text
5153
6338
  allowFontScaling={false}
@@ -5166,7 +6351,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5166
6351
  ]
5167
6352
  }
5168
6353
  >
5169
- 13
6354
+ 18
5170
6355
  </Text>
5171
6356
  <View
5172
6357
  style={
@@ -5193,7 +6378,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5193
6378
  }
5194
6379
  >
5195
6380
  <View
5196
- accessibilityLabel=" Woensdag 14 Juni 2023 "
6381
+ accessibilityLabel=" Woensdag 19 Juli 2023 "
5197
6382
  accessibilityState={
5198
6383
  {
5199
6384
  "busy": undefined,
@@ -5230,7 +6415,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5230
6415
  "width": 42,
5231
6416
  }
5232
6417
  }
5233
- testID="undefined.day_2023-06-14"
6418
+ testID="undefined.day_2023-07-19"
5234
6419
  >
5235
6420
  <Text
5236
6421
  allowFontScaling={false}
@@ -5249,7 +6434,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5249
6434
  ]
5250
6435
  }
5251
6436
  >
5252
- 14
6437
+ 19
5253
6438
  </Text>
5254
6439
  <View
5255
6440
  style={
@@ -5276,7 +6461,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5276
6461
  }
5277
6462
  >
5278
6463
  <View
5279
- accessibilityLabel=" Donderdag 15 Juni 2023 "
6464
+ accessibilityLabel=" Donderdag 20 Juli 2023 "
5280
6465
  accessibilityState={
5281
6466
  {
5282
6467
  "busy": undefined,
@@ -5313,7 +6498,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5313
6498
  "width": 42,
5314
6499
  }
5315
6500
  }
5316
- testID="undefined.day_2023-06-15"
6501
+ testID="undefined.day_2023-07-20"
5317
6502
  >
5318
6503
  <Text
5319
6504
  allowFontScaling={false}
@@ -5332,7 +6517,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5332
6517
  ]
5333
6518
  }
5334
6519
  >
5335
- 15
6520
+ 20
5336
6521
  </Text>
5337
6522
  <View
5338
6523
  style={
@@ -5359,7 +6544,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5359
6544
  }
5360
6545
  >
5361
6546
  <View
5362
- accessibilityLabel=" Vrijdag 16 Juni 2023 "
6547
+ accessibilityLabel=" Vrijdag 21 Juli 2023 "
5363
6548
  accessibilityState={
5364
6549
  {
5365
6550
  "busy": undefined,
@@ -5396,7 +6581,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5396
6581
  "width": 42,
5397
6582
  }
5398
6583
  }
5399
- testID="undefined.day_2023-06-16"
6584
+ testID="undefined.day_2023-07-21"
5400
6585
  >
5401
6586
  <Text
5402
6587
  allowFontScaling={false}
@@ -5415,7 +6600,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5415
6600
  ]
5416
6601
  }
5417
6602
  >
5418
- 16
6603
+ 21
5419
6604
  </Text>
5420
6605
  <View
5421
6606
  style={
@@ -5442,7 +6627,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5442
6627
  }
5443
6628
  >
5444
6629
  <View
5445
- accessibilityLabel=" Zaterdag 17 Juni 2023 "
6630
+ accessibilityLabel=" Zaterdag 22 Juli 2023 "
5446
6631
  accessibilityState={
5447
6632
  {
5448
6633
  "busy": undefined,
@@ -5479,7 +6664,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5479
6664
  "width": 42,
5480
6665
  }
5481
6666
  }
5482
- testID="undefined.day_2023-06-17"
6667
+ testID="undefined.day_2023-07-22"
5483
6668
  >
5484
6669
  <Text
5485
6670
  allowFontScaling={false}
@@ -5498,7 +6683,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5498
6683
  ]
5499
6684
  }
5500
6685
  >
5501
- 17
6686
+ 22
5502
6687
  </Text>
5503
6688
  <View
5504
6689
  style={
@@ -5525,7 +6710,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5525
6710
  }
5526
6711
  >
5527
6712
  <View
5528
- accessibilityLabel=" Zondag 18 Juni 2023 "
6713
+ accessibilityLabel=" Zondag 23 Juli 2023 "
5529
6714
  accessibilityState={
5530
6715
  {
5531
6716
  "busy": undefined,
@@ -5562,7 +6747,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5562
6747
  "width": 42,
5563
6748
  }
5564
6749
  }
5565
- testID="undefined.day_2023-06-18"
6750
+ testID="undefined.day_2023-07-23"
5566
6751
  >
5567
6752
  <Text
5568
6753
  allowFontScaling={false}
@@ -5581,7 +6766,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5581
6766
  ]
5582
6767
  }
5583
6768
  >
5584
- 18
6769
+ 23
5585
6770
  </Text>
5586
6771
  <View
5587
6772
  style={
@@ -5618,7 +6803,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5618
6803
  }
5619
6804
  >
5620
6805
  <View
5621
- accessibilityLabel=" Maandag 19 Juni 2023 "
6806
+ accessibilityLabel=" Maandag 24 Juli 2023 "
5622
6807
  accessibilityState={
5623
6808
  {
5624
6809
  "busy": undefined,
@@ -5655,7 +6840,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5655
6840
  "width": 42,
5656
6841
  }
5657
6842
  }
5658
- testID="undefined.day_2023-06-19"
6843
+ testID="undefined.day_2023-07-24"
5659
6844
  >
5660
6845
  <Text
5661
6846
  allowFontScaling={false}
@@ -5674,7 +6859,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5674
6859
  ]
5675
6860
  }
5676
6861
  >
5677
- 19
6862
+ 24
5678
6863
  </Text>
5679
6864
  <View
5680
6865
  style={
@@ -5701,7 +6886,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5701
6886
  }
5702
6887
  >
5703
6888
  <View
5704
- accessibilityLabel=" Dinsdag 20 Juni 2023 "
6889
+ accessibilityLabel=" Dinsdag 25 Juli 2023 "
5705
6890
  accessibilityState={
5706
6891
  {
5707
6892
  "busy": undefined,
@@ -5738,7 +6923,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5738
6923
  "width": 42,
5739
6924
  }
5740
6925
  }
5741
- testID="undefined.day_2023-06-20"
6926
+ testID="undefined.day_2023-07-25"
5742
6927
  >
5743
6928
  <Text
5744
6929
  allowFontScaling={false}
@@ -5757,7 +6942,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5757
6942
  ]
5758
6943
  }
5759
6944
  >
5760
- 20
6945
+ 25
5761
6946
  </Text>
5762
6947
  <View
5763
6948
  style={
@@ -5784,7 +6969,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5784
6969
  }
5785
6970
  >
5786
6971
  <View
5787
- accessibilityLabel=" Woensdag 21 Juni 2023 "
6972
+ accessibilityLabel=" Woensdag 26 Juli 2023 "
5788
6973
  accessibilityState={
5789
6974
  {
5790
6975
  "busy": undefined,
@@ -5821,7 +7006,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5821
7006
  "width": 42,
5822
7007
  }
5823
7008
  }
5824
- testID="undefined.day_2023-06-21"
7009
+ testID="undefined.day_2023-07-26"
5825
7010
  >
5826
7011
  <Text
5827
7012
  allowFontScaling={false}
@@ -5840,7 +7025,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5840
7025
  ]
5841
7026
  }
5842
7027
  >
5843
- 21
7028
+ 26
5844
7029
  </Text>
5845
7030
  <View
5846
7031
  style={
@@ -5867,7 +7052,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5867
7052
  }
5868
7053
  >
5869
7054
  <View
5870
- accessibilityLabel=" Donderdag 22 Juni 2023 "
7055
+ accessibilityLabel=" Donderdag 27 Juli 2023 "
5871
7056
  accessibilityState={
5872
7057
  {
5873
7058
  "busy": undefined,
@@ -5904,7 +7089,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5904
7089
  "width": 42,
5905
7090
  }
5906
7091
  }
5907
- testID="undefined.day_2023-06-22"
7092
+ testID="undefined.day_2023-07-27"
5908
7093
  >
5909
7094
  <Text
5910
7095
  allowFontScaling={false}
@@ -5923,7 +7108,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5923
7108
  ]
5924
7109
  }
5925
7110
  >
5926
- 22
7111
+ 27
5927
7112
  </Text>
5928
7113
  <View
5929
7114
  style={
@@ -5950,7 +7135,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5950
7135
  }
5951
7136
  >
5952
7137
  <View
5953
- accessibilityLabel=" Vrijdag 23 Juni 2023 "
7138
+ accessibilityLabel=" Vrijdag 28 Juli 2023 "
5954
7139
  accessibilityState={
5955
7140
  {
5956
7141
  "busy": undefined,
@@ -5987,7 +7172,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5987
7172
  "width": 42,
5988
7173
  }
5989
7174
  }
5990
- testID="undefined.day_2023-06-23"
7175
+ testID="undefined.day_2023-07-28"
5991
7176
  >
5992
7177
  <Text
5993
7178
  allowFontScaling={false}
@@ -6006,7 +7191,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6006
7191
  ]
6007
7192
  }
6008
7193
  >
6009
- 23
7194
+ 28
6010
7195
  </Text>
6011
7196
  <View
6012
7197
  style={
@@ -6033,7 +7218,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6033
7218
  }
6034
7219
  >
6035
7220
  <View
6036
- accessibilityLabel=" Zaterdag 24 Juni 2023 "
7221
+ accessibilityLabel=" Zaterdag 29 Juli 2023 "
6037
7222
  accessibilityState={
6038
7223
  {
6039
7224
  "busy": undefined,
@@ -6070,7 +7255,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6070
7255
  "width": 42,
6071
7256
  }
6072
7257
  }
6073
- testID="undefined.day_2023-06-24"
7258
+ testID="undefined.day_2023-07-29"
6074
7259
  >
6075
7260
  <Text
6076
7261
  allowFontScaling={false}
@@ -6089,7 +7274,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6089
7274
  ]
6090
7275
  }
6091
7276
  >
6092
- 24
7277
+ 29
6093
7278
  </Text>
6094
7279
  <View
6095
7280
  style={
@@ -6116,7 +7301,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6116
7301
  }
6117
7302
  >
6118
7303
  <View
6119
- accessibilityLabel=" Zondag 25 Juni 2023 "
7304
+ accessibilityLabel=" Zondag 30 Juli 2023 "
6120
7305
  accessibilityState={
6121
7306
  {
6122
7307
  "busy": undefined,
@@ -6153,7 +7338,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6153
7338
  "width": 42,
6154
7339
  }
6155
7340
  }
6156
- testID="undefined.day_2023-06-25"
7341
+ testID="undefined.day_2023-07-30"
6157
7342
  >
6158
7343
  <Text
6159
7344
  allowFontScaling={false}
@@ -6172,7 +7357,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6172
7357
  ]
6173
7358
  }
6174
7359
  >
6175
- 25
7360
+ 30
6176
7361
  </Text>
6177
7362
  <View
6178
7363
  style={
@@ -6209,7 +7394,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6209
7394
  }
6210
7395
  >
6211
7396
  <View
6212
- accessibilityLabel=" Maandag 26 Juni 2023 "
7397
+ accessibilityLabel=" Maandag 31 Juli 2023 "
6213
7398
  accessibilityState={
6214
7399
  {
6215
7400
  "busy": undefined,
@@ -6246,7 +7431,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6246
7431
  "width": 42,
6247
7432
  }
6248
7433
  }
6249
- testID="undefined.day_2023-06-26"
7434
+ testID="undefined.day_2023-07-31"
6250
7435
  >
6251
7436
  <Text
6252
7437
  allowFontScaling={false}
@@ -6265,7 +7450,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6265
7450
  ]
6266
7451
  }
6267
7452
  >
6268
- 26
7453
+ 31
6269
7454
  </Text>
6270
7455
  <View
6271
7456
  style={
@@ -6292,8 +7477,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6292
7477
  }
6293
7478
  >
6294
7479
  <View
6295
- accessibilityLabel="today Dinsdag 27 Juni 2023 "
6296
- accessibilityRole="button"
7480
+ accessibilityLabel=" Dinsdag 1 Augustus 2023 "
6297
7481
  accessibilityState={
6298
7482
  {
6299
7483
  "busy": undefined,
@@ -6324,17 +7508,13 @@ exports[`Test for the calendar component renders a calendar where you can select
6324
7508
  style={
6325
7509
  {
6326
7510
  "alignItems": "center",
6327
- "borderColor": "#7B93DB",
6328
- "borderRadius": 21,
6329
- "borderStyle": "solid",
6330
- "borderWidth": 1,
6331
7511
  "height": 42,
6332
7512
  "justifyContent": "center",
6333
7513
  "opacity": 1,
6334
7514
  "width": 42,
6335
7515
  }
6336
7516
  }
6337
- testID="undefined.day_2023-06-27"
7517
+ testID="undefined.day_2023-08-01"
6338
7518
  >
6339
7519
  <Text
6340
7520
  allowFontScaling={false}
@@ -6348,12 +7528,12 @@ exports[`Test for the calendar component renders a calendar where you can select
6348
7528
  "marginTop": 4,
6349
7529
  },
6350
7530
  {
6351
- "color": "#7B93DB",
7531
+ "color": "#9AA5B1",
6352
7532
  },
6353
7533
  ]
6354
7534
  }
6355
7535
  >
6356
- 27
7536
+ 1
6357
7537
  </Text>
6358
7538
  <View
6359
7539
  style={
@@ -6380,7 +7560,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6380
7560
  }
6381
7561
  >
6382
7562
  <View
6383
- accessibilityLabel=" Woensdag 28 Juni 2023 "
7563
+ accessibilityLabel=" Woensdag 2 Augustus 2023 "
6384
7564
  accessibilityState={
6385
7565
  {
6386
7566
  "busy": undefined,
@@ -6417,7 +7597,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6417
7597
  "width": 42,
6418
7598
  }
6419
7599
  }
6420
- testID="undefined.day_2023-06-28"
7600
+ testID="undefined.day_2023-08-02"
6421
7601
  >
6422
7602
  <Text
6423
7603
  allowFontScaling={false}
@@ -6436,7 +7616,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6436
7616
  ]
6437
7617
  }
6438
7618
  >
6439
- 28
7619
+ 2
6440
7620
  </Text>
6441
7621
  <View
6442
7622
  style={
@@ -6463,7 +7643,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6463
7643
  }
6464
7644
  >
6465
7645
  <View
6466
- accessibilityLabel=" Donderdag 29 Juni 2023 "
7646
+ accessibilityLabel=" Donderdag 3 Augustus 2023 "
6467
7647
  accessibilityState={
6468
7648
  {
6469
7649
  "busy": undefined,
@@ -6500,7 +7680,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6500
7680
  "width": 42,
6501
7681
  }
6502
7682
  }
6503
- testID="undefined.day_2023-06-29"
7683
+ testID="undefined.day_2023-08-03"
6504
7684
  >
6505
7685
  <Text
6506
7686
  allowFontScaling={false}
@@ -6519,7 +7699,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6519
7699
  ]
6520
7700
  }
6521
7701
  >
6522
- 29
7702
+ 3
6523
7703
  </Text>
6524
7704
  <View
6525
7705
  style={
@@ -6546,7 +7726,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6546
7726
  }
6547
7727
  >
6548
7728
  <View
6549
- accessibilityLabel=" Vrijdag 30 Juni 2023 "
7729
+ accessibilityLabel=" Vrijdag 4 Augustus 2023 "
6550
7730
  accessibilityState={
6551
7731
  {
6552
7732
  "busy": undefined,
@@ -6583,7 +7763,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6583
7763
  "width": 42,
6584
7764
  }
6585
7765
  }
6586
- testID="undefined.day_2023-06-30"
7766
+ testID="undefined.day_2023-08-04"
6587
7767
  >
6588
7768
  <Text
6589
7769
  allowFontScaling={false}
@@ -6602,7 +7782,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6602
7782
  ]
6603
7783
  }
6604
7784
  >
6605
- 30
7785
+ 4
6606
7786
  </Text>
6607
7787
  <View
6608
7788
  style={
@@ -6629,7 +7809,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6629
7809
  }
6630
7810
  >
6631
7811
  <View
6632
- accessibilityLabel=" Zaterdag 1 Juli 2023 "
7812
+ accessibilityLabel=" Zaterdag 5 Augustus 2023 "
6633
7813
  accessibilityState={
6634
7814
  {
6635
7815
  "busy": undefined,
@@ -6666,7 +7846,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6666
7846
  "width": 42,
6667
7847
  }
6668
7848
  }
6669
- testID="undefined.day_2023-07-01"
7849
+ testID="undefined.day_2023-08-05"
6670
7850
  >
6671
7851
  <Text
6672
7852
  allowFontScaling={false}
@@ -6685,7 +7865,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6685
7865
  ]
6686
7866
  }
6687
7867
  >
6688
- 1
7868
+ 5
6689
7869
  </Text>
6690
7870
  <View
6691
7871
  style={
@@ -6712,7 +7892,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6712
7892
  }
6713
7893
  >
6714
7894
  <View
6715
- accessibilityLabel=" Zondag 2 Juli 2023 "
7895
+ accessibilityLabel=" Zondag 6 Augustus 2023 "
6716
7896
  accessibilityState={
6717
7897
  {
6718
7898
  "busy": undefined,
@@ -6749,7 +7929,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6749
7929
  "width": 42,
6750
7930
  }
6751
7931
  }
6752
- testID="undefined.day_2023-07-02"
7932
+ testID="undefined.day_2023-08-06"
6753
7933
  >
6754
7934
  <Text
6755
7935
  allowFontScaling={false}
@@ -6768,7 +7948,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6768
7948
  ]
6769
7949
  }
6770
7950
  >
6771
- 2
7951
+ 6
6772
7952
  </Text>
6773
7953
  <View
6774
7954
  style={