@tactics/toddle-styleguide 1.2.2 → 1.2.4

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 (56) hide show
  1. package/App.tsx +196 -183
  2. package/index.d.ts +3 -2
  3. package/index.tsx +4 -2
  4. package/package.json +5 -1
  5. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +1776 -596
  6. package/src/components/atoms/calendar/calendar.component.tsx +8 -6
  7. package/src/components/molecules/avatar/__snapshots__/avatar.test.js.snap +70 -62
  8. package/src/components/molecules/avatar/avatar.component.d.ts +2 -1
  9. package/src/components/molecules/avatar/avatar.component.tsx +22 -11
  10. package/src/components/molecules/avatar/avatar.preview.tsx +58 -44
  11. package/src/components/molecules/avatar/avatar.styles.d.ts +54 -15
  12. package/src/components/molecules/avatar/avatar.styles.js +33 -5
  13. package/src/components/molecules/calendar-select/calendar-select.component.d.ts +2 -2
  14. package/src/components/molecules/calendar-select/calendar-select.component.tsx +4 -14
  15. package/src/components/molecules/calendar-select/calendar-select.preview.tsx +9 -22
  16. package/src/components/molecules/date-input/date-input.preview.tsx +25 -23
  17. package/src/components/molecules/time-picker/__snapshots__/time-picker.test.js.snap +2241 -0
  18. package/src/components/molecules/time-picker/time-picker.component.d.ts +8 -0
  19. package/src/components/molecules/time-picker/time-picker.component.tsx +91 -0
  20. package/src/components/molecules/time-picker/time-picker.preview.d.ts +1 -0
  21. package/src/components/molecules/time-picker/time-picker.preview.tsx +110 -0
  22. package/src/components/molecules/time-picker/time-picker.styles.d.ts +27 -0
  23. package/src/components/molecules/time-picker/time-picker.styles.js +31 -0
  24. package/src/components/molecules/time-picker/time-picker.test.js +18 -0
  25. package/src/components/molecules/time-tracker/time-tracker.test.js +0 -1
  26. package/src/components/molecules/timeline/__snapshots__/timeline.test.js.snap +47 -39
  27. package/src/components/molecules/timeline/timeline.component.d.ts +2 -2
  28. package/src/components/molecules/timeline/timeline.component.tsx +27 -120
  29. package/src/components/molecules/timeline/timeline.preview.tsx +9 -20
  30. package/src/components/molecules/timeline/timeline.styles.d.ts +58 -40
  31. package/src/components/molecules/timeline/timeline.styles.js +24 -17
  32. package/src/components/molecules/timeline/timeline.test.js +3 -3
  33. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +174 -162
  34. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +70 -127
  35. package/src/components/organisms/contact-item/contact-item.component.tsx +10 -9
  36. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +97 -89
  37. package/src/components/organisms/person-info-card/__snapshots__/person-info-card.test.js.snap +233 -209
  38. package/src/components/templates/modal/components/fade-panel.component.d.ts +2 -1
  39. package/src/components/templates/modal/components/fade-panel.component.tsx +8 -2
  40. package/src/components/templates/modal/modal.component.d.ts +2 -1
  41. package/src/components/templates/modal/modal.component.tsx +4 -3
  42. package/src/components/templates/modal/modal.styles.d.ts +3 -6
  43. package/src/components/templates/modal/modal.styles.js +3 -3
  44. package/src/components/templates/popover/components/modal/modal.component.tsx +0 -3
  45. package/src/components/templates/popover/components/modal/modal.styles.d.ts +2 -1
  46. package/src/components/templates/popover/components/modal/modal.styles.js +2 -2
  47. package/src/components/templates/popover/popover.component.tsx +27 -14
  48. package/src/components/templates/popover/popover.preview.tsx +63 -97
  49. package/src/components/templates/popover/popover.styles.d.ts +1 -1
  50. package/src/components/templates/popover/popover.styles.js +3 -1
  51. package/src/theme/provider/parent.theme.d.ts +4 -1
  52. package/src/theme/provider/parent.theme.ts +4 -1
  53. package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +3 -2
  54. package/src/utilities/toddle-datetime/toddle-datetime.class.tsx +9 -2
  55. package/src/utilities/toddle-datetime/toddle-datetime.preview.tsx +15 -1
  56. package/src/utilities/toddle-datetime/toddle-datetime.test.js +10 -0
@@ -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
- April 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 27 Maart 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-03-27"
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
- 27
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 28 Maart 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-03-28"
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
- 28
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 29 Maart 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-03-29"
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
- 29
703
+ 28
704
704
  </Text>
705
705
  <View
706
706
  style={
@@ -727,7 +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 30 Maart 2023 "
730
+ accessibilityLabel=" Donderdag 29 Juni 2023 "
731
731
  accessibilityState={
732
732
  {
733
733
  "busy": undefined,
@@ -764,7 +764,7 @@ exports[`Test for the calendar component renders a calendar where you can select
764
764
  "width": 42,
765
765
  }
766
766
  }
767
- testID="undefined.day_2023-03-30"
767
+ testID="undefined.day_2023-06-29"
768
768
  >
769
769
  <Text
770
770
  allowFontScaling={false}
@@ -783,7 +783,7 @@ exports[`Test for the calendar component renders a calendar where you can select
783
783
  ]
784
784
  }
785
785
  >
786
- 30
786
+ 29
787
787
  </Text>
788
788
  <View
789
789
  style={
@@ -810,7 +810,7 @@ exports[`Test for the calendar component renders a calendar where you can select
810
810
  }
811
811
  >
812
812
  <View
813
- accessibilityLabel=" Vrijdag 31 Maart 2023 "
813
+ accessibilityLabel=" Vrijdag 30 Juni 2023 "
814
814
  accessibilityState={
815
815
  {
816
816
  "busy": undefined,
@@ -847,7 +847,7 @@ exports[`Test for the calendar component renders a calendar where you can select
847
847
  "width": 42,
848
848
  }
849
849
  }
850
- testID="undefined.day_2023-03-31"
850
+ testID="undefined.day_2023-06-30"
851
851
  >
852
852
  <Text
853
853
  allowFontScaling={false}
@@ -866,7 +866,7 @@ exports[`Test for the calendar component renders a calendar where you can select
866
866
  ]
867
867
  }
868
868
  >
869
- 31
869
+ 30
870
870
  </Text>
871
871
  <View
872
872
  style={
@@ -893,7 +893,7 @@ exports[`Test for the calendar component renders a calendar where you can select
893
893
  }
894
894
  >
895
895
  <View
896
- accessibilityLabel=" Zaterdag 1 April 2023 "
896
+ accessibilityLabel=" Zaterdag 1 Juli 2023 "
897
897
  accessibilityRole="button"
898
898
  accessibilityState={
899
899
  {
@@ -931,7 +931,7 @@ exports[`Test for the calendar component renders a calendar where you can select
931
931
  "width": 42,
932
932
  }
933
933
  }
934
- testID="undefined.day_2023-04-01"
934
+ testID="undefined.day_2023-07-01"
935
935
  >
936
936
  <Text
937
937
  allowFontScaling={false}
@@ -974,7 +974,7 @@ exports[`Test for the calendar component renders a calendar where you can select
974
974
  }
975
975
  >
976
976
  <View
977
- accessibilityLabel=" Zondag 2 April 2023 "
977
+ accessibilityLabel=" Zondag 2 Juli 2023 "
978
978
  accessibilityRole="button"
979
979
  accessibilityState={
980
980
  {
@@ -1012,7 +1012,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1012
1012
  "width": 42,
1013
1013
  }
1014
1014
  }
1015
- testID="undefined.day_2023-04-02"
1015
+ testID="undefined.day_2023-07-02"
1016
1016
  >
1017
1017
  <Text
1018
1018
  allowFontScaling={false}
@@ -1065,7 +1065,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1065
1065
  }
1066
1066
  >
1067
1067
  <View
1068
- accessibilityLabel=" Maandag 3 April 2023 "
1068
+ accessibilityLabel=" Maandag 3 Juli 2023 "
1069
1069
  accessibilityRole="button"
1070
1070
  accessibilityState={
1071
1071
  {
@@ -1103,7 +1103,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1103
1103
  "width": 42,
1104
1104
  }
1105
1105
  }
1106
- testID="undefined.day_2023-04-03"
1106
+ testID="undefined.day_2023-07-03"
1107
1107
  >
1108
1108
  <Text
1109
1109
  allowFontScaling={false}
@@ -1146,7 +1146,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1146
1146
  }
1147
1147
  >
1148
1148
  <View
1149
- accessibilityLabel="today Dinsdag 4 April 2023 "
1149
+ accessibilityLabel=" Dinsdag 4 Juli 2023 "
1150
1150
  accessibilityRole="button"
1151
1151
  accessibilityState={
1152
1152
  {
@@ -1178,17 +1178,13 @@ exports[`Test for the calendar component renders a calendar where you can select
1178
1178
  style={
1179
1179
  {
1180
1180
  "alignItems": "center",
1181
- "borderColor": "#7B93DB",
1182
- "borderRadius": 21,
1183
- "borderStyle": "solid",
1184
- "borderWidth": 1,
1185
1181
  "height": 42,
1186
1182
  "justifyContent": "center",
1187
1183
  "opacity": 1,
1188
1184
  "width": 42,
1189
1185
  }
1190
1186
  }
1191
- testID="undefined.day_2023-04-04"
1187
+ testID="undefined.day_2023-07-04"
1192
1188
  >
1193
1189
  <Text
1194
1190
  allowFontScaling={false}
@@ -1201,9 +1197,6 @@ exports[`Test for the calendar component renders a calendar where you can select
1201
1197
  "lineHeight": 22.4,
1202
1198
  "marginTop": 4,
1203
1199
  },
1204
- {
1205
- "color": "#7B93DB",
1206
- },
1207
1200
  ]
1208
1201
  }
1209
1202
  >
@@ -1234,7 +1227,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1234
1227
  }
1235
1228
  >
1236
1229
  <View
1237
- accessibilityLabel=" Woensdag 5 April 2023 "
1230
+ accessibilityLabel=" Woensdag 5 Juli 2023 "
1238
1231
  accessibilityRole="button"
1239
1232
  accessibilityState={
1240
1233
  {
@@ -1272,7 +1265,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1272
1265
  "width": 42,
1273
1266
  }
1274
1267
  }
1275
- testID="undefined.day_2023-04-05"
1268
+ testID="undefined.day_2023-07-05"
1276
1269
  >
1277
1270
  <Text
1278
1271
  allowFontScaling={false}
@@ -1315,7 +1308,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1315
1308
  }
1316
1309
  >
1317
1310
  <View
1318
- accessibilityLabel=" Donderdag 6 April 2023 "
1311
+ accessibilityLabel=" Donderdag 6 Juli 2023 "
1319
1312
  accessibilityRole="button"
1320
1313
  accessibilityState={
1321
1314
  {
@@ -1353,7 +1346,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1353
1346
  "width": 42,
1354
1347
  }
1355
1348
  }
1356
- testID="undefined.day_2023-04-06"
1349
+ testID="undefined.day_2023-07-06"
1357
1350
  >
1358
1351
  <Text
1359
1352
  allowFontScaling={false}
@@ -1396,7 +1389,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1396
1389
  }
1397
1390
  >
1398
1391
  <View
1399
- accessibilityLabel=" Vrijdag 7 April 2023 "
1392
+ accessibilityLabel="today Vrijdag 7 Juli 2023 "
1400
1393
  accessibilityRole="button"
1401
1394
  accessibilityState={
1402
1395
  {
@@ -1428,13 +1421,17 @@ exports[`Test for the calendar component renders a calendar where you can select
1428
1421
  style={
1429
1422
  {
1430
1423
  "alignItems": "center",
1424
+ "borderColor": "#7B93DB",
1425
+ "borderRadius": 21,
1426
+ "borderStyle": "solid",
1427
+ "borderWidth": 1,
1431
1428
  "height": 42,
1432
1429
  "justifyContent": "center",
1433
1430
  "opacity": 1,
1434
1431
  "width": 42,
1435
1432
  }
1436
1433
  }
1437
- testID="undefined.day_2023-04-07"
1434
+ testID="undefined.day_2023-07-07"
1438
1435
  >
1439
1436
  <Text
1440
1437
  allowFontScaling={false}
@@ -1447,6 +1444,9 @@ exports[`Test for the calendar component renders a calendar where you can select
1447
1444
  "lineHeight": 22.4,
1448
1445
  "marginTop": 4,
1449
1446
  },
1447
+ {
1448
+ "color": "#7B93DB",
1449
+ },
1450
1450
  ]
1451
1451
  }
1452
1452
  >
@@ -1477,7 +1477,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1477
1477
  }
1478
1478
  >
1479
1479
  <View
1480
- accessibilityLabel=" Zaterdag 8 April 2023 "
1480
+ accessibilityLabel=" Zaterdag 8 Juli 2023 "
1481
1481
  accessibilityRole="button"
1482
1482
  accessibilityState={
1483
1483
  {
@@ -1515,7 +1515,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1515
1515
  "width": 42,
1516
1516
  }
1517
1517
  }
1518
- testID="undefined.day_2023-04-08"
1518
+ testID="undefined.day_2023-07-08"
1519
1519
  >
1520
1520
  <Text
1521
1521
  allowFontScaling={false}
@@ -1558,7 +1558,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1558
1558
  }
1559
1559
  >
1560
1560
  <View
1561
- accessibilityLabel=" Zondag 9 April 2023 "
1561
+ accessibilityLabel=" Zondag 9 Juli 2023 "
1562
1562
  accessibilityRole="button"
1563
1563
  accessibilityState={
1564
1564
  {
@@ -1596,7 +1596,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1596
1596
  "width": 42,
1597
1597
  }
1598
1598
  }
1599
- testID="undefined.day_2023-04-09"
1599
+ testID="undefined.day_2023-07-09"
1600
1600
  >
1601
1601
  <Text
1602
1602
  allowFontScaling={false}
@@ -1649,7 +1649,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1649
1649
  }
1650
1650
  >
1651
1651
  <View
1652
- accessibilityLabel=" Maandag 10 April 2023 "
1652
+ accessibilityLabel=" Maandag 10 Juli 2023 "
1653
1653
  accessibilityRole="button"
1654
1654
  accessibilityState={
1655
1655
  {
@@ -1687,7 +1687,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1687
1687
  "width": 42,
1688
1688
  }
1689
1689
  }
1690
- testID="undefined.day_2023-04-10"
1690
+ testID="undefined.day_2023-07-10"
1691
1691
  >
1692
1692
  <Text
1693
1693
  allowFontScaling={false}
@@ -1730,7 +1730,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1730
1730
  }
1731
1731
  >
1732
1732
  <View
1733
- accessibilityLabel=" Dinsdag 11 April 2023 "
1733
+ accessibilityLabel=" Dinsdag 11 Juli 2023 "
1734
1734
  accessibilityRole="button"
1735
1735
  accessibilityState={
1736
1736
  {
@@ -1768,7 +1768,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1768
1768
  "width": 42,
1769
1769
  }
1770
1770
  }
1771
- testID="undefined.day_2023-04-11"
1771
+ testID="undefined.day_2023-07-11"
1772
1772
  >
1773
1773
  <Text
1774
1774
  allowFontScaling={false}
@@ -1811,7 +1811,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1811
1811
  }
1812
1812
  >
1813
1813
  <View
1814
- accessibilityLabel=" Woensdag 12 April 2023 "
1814
+ accessibilityLabel=" Woensdag 12 Juli 2023 "
1815
1815
  accessibilityRole="button"
1816
1816
  accessibilityState={
1817
1817
  {
@@ -1849,7 +1849,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1849
1849
  "width": 42,
1850
1850
  }
1851
1851
  }
1852
- testID="undefined.day_2023-04-12"
1852
+ testID="undefined.day_2023-07-12"
1853
1853
  >
1854
1854
  <Text
1855
1855
  allowFontScaling={false}
@@ -1892,7 +1892,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1892
1892
  }
1893
1893
  >
1894
1894
  <View
1895
- accessibilityLabel=" Donderdag 13 April 2023 "
1895
+ accessibilityLabel=" Donderdag 13 Juli 2023 "
1896
1896
  accessibilityRole="button"
1897
1897
  accessibilityState={
1898
1898
  {
@@ -1930,7 +1930,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1930
1930
  "width": 42,
1931
1931
  }
1932
1932
  }
1933
- testID="undefined.day_2023-04-13"
1933
+ testID="undefined.day_2023-07-13"
1934
1934
  >
1935
1935
  <Text
1936
1936
  allowFontScaling={false}
@@ -1973,7 +1973,7 @@ exports[`Test for the calendar component renders a calendar where you can select
1973
1973
  }
1974
1974
  >
1975
1975
  <View
1976
- accessibilityLabel=" Vrijdag 14 April 2023 "
1976
+ accessibilityLabel=" Vrijdag 14 Juli 2023 "
1977
1977
  accessibilityRole="button"
1978
1978
  accessibilityState={
1979
1979
  {
@@ -2011,7 +2011,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2011
2011
  "width": 42,
2012
2012
  }
2013
2013
  }
2014
- testID="undefined.day_2023-04-14"
2014
+ testID="undefined.day_2023-07-14"
2015
2015
  >
2016
2016
  <Text
2017
2017
  allowFontScaling={false}
@@ -2054,7 +2054,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2054
2054
  }
2055
2055
  >
2056
2056
  <View
2057
- accessibilityLabel=" Zaterdag 15 April 2023 "
2057
+ accessibilityLabel=" Zaterdag 15 Juli 2023 "
2058
2058
  accessibilityRole="button"
2059
2059
  accessibilityState={
2060
2060
  {
@@ -2092,7 +2092,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2092
2092
  "width": 42,
2093
2093
  }
2094
2094
  }
2095
- testID="undefined.day_2023-04-15"
2095
+ testID="undefined.day_2023-07-15"
2096
2096
  >
2097
2097
  <Text
2098
2098
  allowFontScaling={false}
@@ -2135,7 +2135,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2135
2135
  }
2136
2136
  >
2137
2137
  <View
2138
- accessibilityLabel=" Zondag 16 April 2023 "
2138
+ accessibilityLabel=" Zondag 16 Juli 2023 "
2139
2139
  accessibilityRole="button"
2140
2140
  accessibilityState={
2141
2141
  {
@@ -2173,7 +2173,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2173
2173
  "width": 42,
2174
2174
  }
2175
2175
  }
2176
- testID="undefined.day_2023-04-16"
2176
+ testID="undefined.day_2023-07-16"
2177
2177
  >
2178
2178
  <Text
2179
2179
  allowFontScaling={false}
@@ -2226,7 +2226,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2226
2226
  }
2227
2227
  >
2228
2228
  <View
2229
- accessibilityLabel=" Maandag 17 April 2023 "
2229
+ accessibilityLabel=" Maandag 17 Juli 2023 "
2230
2230
  accessibilityRole="button"
2231
2231
  accessibilityState={
2232
2232
  {
@@ -2264,7 +2264,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2264
2264
  "width": 42,
2265
2265
  }
2266
2266
  }
2267
- testID="undefined.day_2023-04-17"
2267
+ testID="undefined.day_2023-07-17"
2268
2268
  >
2269
2269
  <Text
2270
2270
  allowFontScaling={false}
@@ -2307,7 +2307,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2307
2307
  }
2308
2308
  >
2309
2309
  <View
2310
- accessibilityLabel=" Dinsdag 18 April 2023 "
2310
+ accessibilityLabel=" Dinsdag 18 Juli 2023 "
2311
2311
  accessibilityRole="button"
2312
2312
  accessibilityState={
2313
2313
  {
@@ -2345,7 +2345,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2345
2345
  "width": 42,
2346
2346
  }
2347
2347
  }
2348
- testID="undefined.day_2023-04-18"
2348
+ testID="undefined.day_2023-07-18"
2349
2349
  >
2350
2350
  <Text
2351
2351
  allowFontScaling={false}
@@ -2388,7 +2388,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2388
2388
  }
2389
2389
  >
2390
2390
  <View
2391
- accessibilityLabel=" Woensdag 19 April 2023 "
2391
+ accessibilityLabel=" Woensdag 19 Juli 2023 "
2392
2392
  accessibilityRole="button"
2393
2393
  accessibilityState={
2394
2394
  {
@@ -2426,7 +2426,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2426
2426
  "width": 42,
2427
2427
  }
2428
2428
  }
2429
- testID="undefined.day_2023-04-19"
2429
+ testID="undefined.day_2023-07-19"
2430
2430
  >
2431
2431
  <Text
2432
2432
  allowFontScaling={false}
@@ -2469,7 +2469,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2469
2469
  }
2470
2470
  >
2471
2471
  <View
2472
- accessibilityLabel=" Donderdag 20 April 2023 "
2472
+ accessibilityLabel=" Donderdag 20 Juli 2023 "
2473
2473
  accessibilityRole="button"
2474
2474
  accessibilityState={
2475
2475
  {
@@ -2507,7 +2507,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2507
2507
  "width": 42,
2508
2508
  }
2509
2509
  }
2510
- testID="undefined.day_2023-04-20"
2510
+ testID="undefined.day_2023-07-20"
2511
2511
  >
2512
2512
  <Text
2513
2513
  allowFontScaling={false}
@@ -2550,7 +2550,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2550
2550
  }
2551
2551
  >
2552
2552
  <View
2553
- accessibilityLabel=" Vrijdag 21 April 2023 "
2553
+ accessibilityLabel=" Vrijdag 21 Juli 2023 "
2554
2554
  accessibilityRole="button"
2555
2555
  accessibilityState={
2556
2556
  {
@@ -2588,7 +2588,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2588
2588
  "width": 42,
2589
2589
  }
2590
2590
  }
2591
- testID="undefined.day_2023-04-21"
2591
+ testID="undefined.day_2023-07-21"
2592
2592
  >
2593
2593
  <Text
2594
2594
  allowFontScaling={false}
@@ -2631,7 +2631,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2631
2631
  }
2632
2632
  >
2633
2633
  <View
2634
- accessibilityLabel=" Zaterdag 22 April 2023 "
2634
+ accessibilityLabel=" Zaterdag 22 Juli 2023 "
2635
2635
  accessibilityRole="button"
2636
2636
  accessibilityState={
2637
2637
  {
@@ -2669,7 +2669,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2669
2669
  "width": 42,
2670
2670
  }
2671
2671
  }
2672
- testID="undefined.day_2023-04-22"
2672
+ testID="undefined.day_2023-07-22"
2673
2673
  >
2674
2674
  <Text
2675
2675
  allowFontScaling={false}
@@ -2712,7 +2712,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2712
2712
  }
2713
2713
  >
2714
2714
  <View
2715
- accessibilityLabel=" Zondag 23 April 2023 "
2715
+ accessibilityLabel=" Zondag 23 Juli 2023 "
2716
2716
  accessibilityRole="button"
2717
2717
  accessibilityState={
2718
2718
  {
@@ -2750,7 +2750,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2750
2750
  "width": 42,
2751
2751
  }
2752
2752
  }
2753
- testID="undefined.day_2023-04-23"
2753
+ testID="undefined.day_2023-07-23"
2754
2754
  >
2755
2755
  <Text
2756
2756
  allowFontScaling={false}
@@ -2803,7 +2803,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2803
2803
  }
2804
2804
  >
2805
2805
  <View
2806
- accessibilityLabel=" Maandag 24 April 2023 "
2806
+ accessibilityLabel=" Maandag 24 Juli 2023 "
2807
2807
  accessibilityRole="button"
2808
2808
  accessibilityState={
2809
2809
  {
@@ -2841,7 +2841,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2841
2841
  "width": 42,
2842
2842
  }
2843
2843
  }
2844
- testID="undefined.day_2023-04-24"
2844
+ testID="undefined.day_2023-07-24"
2845
2845
  >
2846
2846
  <Text
2847
2847
  allowFontScaling={false}
@@ -2884,7 +2884,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2884
2884
  }
2885
2885
  >
2886
2886
  <View
2887
- accessibilityLabel=" Dinsdag 25 April 2023 "
2887
+ accessibilityLabel=" Dinsdag 25 Juli 2023 "
2888
2888
  accessibilityRole="button"
2889
2889
  accessibilityState={
2890
2890
  {
@@ -2922,7 +2922,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2922
2922
  "width": 42,
2923
2923
  }
2924
2924
  }
2925
- testID="undefined.day_2023-04-25"
2925
+ testID="undefined.day_2023-07-25"
2926
2926
  >
2927
2927
  <Text
2928
2928
  allowFontScaling={false}
@@ -2965,7 +2965,7 @@ exports[`Test for the calendar component renders a calendar where you can select
2965
2965
  }
2966
2966
  >
2967
2967
  <View
2968
- accessibilityLabel=" Woensdag 26 April 2023 "
2968
+ accessibilityLabel=" Woensdag 26 Juli 2023 "
2969
2969
  accessibilityRole="button"
2970
2970
  accessibilityState={
2971
2971
  {
@@ -3003,7 +3003,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3003
3003
  "width": 42,
3004
3004
  }
3005
3005
  }
3006
- testID="undefined.day_2023-04-26"
3006
+ testID="undefined.day_2023-07-26"
3007
3007
  >
3008
3008
  <Text
3009
3009
  allowFontScaling={false}
@@ -3046,7 +3046,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3046
3046
  }
3047
3047
  >
3048
3048
  <View
3049
- accessibilityLabel=" Donderdag 27 April 2023 "
3049
+ accessibilityLabel=" Donderdag 27 Juli 2023 "
3050
3050
  accessibilityRole="button"
3051
3051
  accessibilityState={
3052
3052
  {
@@ -3084,7 +3084,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3084
3084
  "width": 42,
3085
3085
  }
3086
3086
  }
3087
- testID="undefined.day_2023-04-27"
3087
+ testID="undefined.day_2023-07-27"
3088
3088
  >
3089
3089
  <Text
3090
3090
  allowFontScaling={false}
@@ -3127,7 +3127,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3127
3127
  }
3128
3128
  >
3129
3129
  <View
3130
- accessibilityLabel=" Vrijdag 28 April 2023 "
3130
+ accessibilityLabel=" Vrijdag 28 Juli 2023 "
3131
3131
  accessibilityRole="button"
3132
3132
  accessibilityState={
3133
3133
  {
@@ -3165,7 +3165,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3165
3165
  "width": 42,
3166
3166
  }
3167
3167
  }
3168
- testID="undefined.day_2023-04-28"
3168
+ testID="undefined.day_2023-07-28"
3169
3169
  >
3170
3170
  <Text
3171
3171
  allowFontScaling={false}
@@ -3208,7 +3208,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3208
3208
  }
3209
3209
  >
3210
3210
  <View
3211
- accessibilityLabel=" Zaterdag 29 April 2023 "
3211
+ accessibilityLabel=" Zaterdag 29 Juli 2023 "
3212
3212
  accessibilityRole="button"
3213
3213
  accessibilityState={
3214
3214
  {
@@ -3246,7 +3246,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3246
3246
  "width": 42,
3247
3247
  }
3248
3248
  }
3249
- testID="undefined.day_2023-04-29"
3249
+ testID="undefined.day_2023-07-29"
3250
3250
  >
3251
3251
  <Text
3252
3252
  allowFontScaling={false}
@@ -3289,7 +3289,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3289
3289
  }
3290
3290
  >
3291
3291
  <View
3292
- accessibilityLabel=" Zondag 30 April 2023 "
3292
+ accessibilityLabel=" Zondag 30 Juli 2023 "
3293
3293
  accessibilityRole="button"
3294
3294
  accessibilityState={
3295
3295
  {
@@ -3327,7 +3327,7 @@ exports[`Test for the calendar component renders a calendar where you can select
3327
3327
  "width": 42,
3328
3328
  }
3329
3329
  }
3330
- testID="undefined.day_2023-04-30"
3330
+ testID="undefined.day_2023-07-30"
3331
3331
  >
3332
3332
  <Text
3333
3333
  allowFontScaling={false}
@@ -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}
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]}
3485
3412
  style={
3486
- [
3487
- {
3488
- "backgroundColor": "transparent",
3489
- "borderWidth": 0,
3490
- },
3491
- {
3492
- "flex": 0,
3493
- "height": 24,
3494
- "width": 24,
3495
- },
3496
- ]
3413
+ {
3414
+ "alignItems": "center",
3415
+ "height": 42,
3416
+ "justifyContent": "center",
3417
+ "opacity": 1,
3418
+ "width": 42,
3419
+ }
3497
3420
  }
3498
- vbHeight={19}
3499
- vbWidth={10}
3500
- width={24}
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}
3551
- style={
3552
- {
3553
- "color": "#FFFFFF",
3554
- "fontFamily": "SourceSansPro",
3555
- "fontSize": 16,
3556
- "lineHeight": 22.4,
3557
- "margin": 0,
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,
3558
3472
  }
3559
3473
  }
3560
- testID="undefined.header.title"
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]}
3492
+ style={
3493
+ {
3494
+ "alignItems": "center",
3495
+ "height": 42,
3496
+ "justifyContent": "center",
3497
+ "opacity": 1,
3498
+ "width": 42,
3499
+ }
3500
+ }
3501
+ testID="undefined.day_2023-08-01"
3561
3502
  >
3562
- April 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}
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
+ }
3556
+ }
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]}
3619
3575
  style={
3620
- [
3621
- {
3622
- "backgroundColor": "transparent",
3623
- "borderWidth": 0,
3624
- },
3625
- {
3626
- "flex": 0,
3627
- "height": 24,
3628
- "width": 24,
3629
- },
3630
- ]
3576
+ {
3577
+ "alignItems": "center",
3578
+ "height": 42,
3579
+ "justifyContent": "center",
3580
+ "opacity": 1,
3581
+ "width": 42,
3582
+ }
3631
3583
  }
3632
- vbHeight={19}
3633
- vbWidth={11}
3634
- width={24}
3584
+ testID="undefined.day_2023-08-02"
3635
3585
  >
3636
- <RNSVGGroup
3637
- fill={null}
3638
- propList={
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",
3623
+ {
3624
+ "alignItems": "center",
3625
+ "flex": 1,
3626
+ }
3627
+ }
3628
+ >
3629
+ <View
3630
+ accessibilityLabel=" Donderdag 3 Augustus 2023 "
3631
+ accessibilityState={
3632
+ {
3633
+ "busy": undefined,
3634
+ "checked": undefined,
3635
+ "disabled": false,
3636
+ "expanded": undefined,
3637
+ "selected": undefined,
3638
+ }
3639
+ }
3640
+ accessibilityValue={
3641
+ {
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
+ }
3710
+ }
3711
+ >
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",
3694
4403
  "width": 32,
3695
4404
  },
3696
4405
  ]
3697
4406
  }
3698
4407
  >
3699
- Ma
3700
- </Text>
3701
- <Text
3702
- accessibilityLabel=""
3703
- allowFontScaling={false}
3704
- numberOfLines={1}
3705
- style={
3706
- [
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={
3707
4688
  {
3708
- "color": "#1F2933",
3709
- "fontFamily": "SourceSansProBold",
3710
- "fontSize": 16,
3711
- "lineHeight": 22.4,
3712
- "marginBottom": 24,
3713
- "textAlign": "center",
3714
- "width": 32,
3715
- },
3716
- ]
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
+ }
3717
4766
  }
3718
4767
  >
3719
- Di
3720
- </Text>
3721
- <Text
3722
- accessibilityLabel=""
3723
- allowFontScaling={false}
3724
- numberOfLines={1}
3725
- style={
3726
- [
4768
+ <View
4769
+ accessibilityLabel=" Vrijdag 30 Juni 2023 "
4770
+ accessibilityState={
3727
4771
  {
3728
- "color": "#1F2933",
3729
- "fontFamily": "SourceSansProBold",
3730
- "fontSize": 16,
3731
- "lineHeight": 22.4,
3732
- "marginBottom": 24,
3733
- "textAlign": "center",
3734
- "width": 32,
3735
- },
3736
- ]
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
+ }
3737
4849
  }
3738
4850
  >
3739
- Wo
3740
- </Text>
3741
- <Text
3742
- accessibilityLabel=""
3743
- allowFontScaling={false}
3744
- numberOfLines={1}
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 27 Maart 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-03-27"
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
- 27
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 28 Maart 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-03-28"
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
- 28
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 29 Maart 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-03-29"
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
- 29
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 30 Maart 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-03-30"
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
- 30
5333
+ 6
4154
5334
  </Text>
4155
5335
  <View
4156
5336
  style={
@@ -4177,7 +5357,8 @@ exports[`Test for the calendar component renders a calendar where you can select
4177
5357
  }
4178
5358
  >
4179
5359
  <View
4180
- accessibilityLabel=" Vrijdag 31 Maart 2023 "
5360
+ accessibilityLabel="today Vrijdag 7 Juli 2023 "
5361
+ accessibilityRole="button"
4181
5362
  accessibilityState={
4182
5363
  {
4183
5364
  "busy": undefined,
@@ -4208,13 +5389,17 @@ exports[`Test for the calendar component renders a calendar where you can select
4208
5389
  style={
4209
5390
  {
4210
5391
  "alignItems": "center",
5392
+ "borderColor": "#7B93DB",
5393
+ "borderRadius": 21,
5394
+ "borderStyle": "solid",
5395
+ "borderWidth": 1,
4211
5396
  "height": 42,
4212
5397
  "justifyContent": "center",
4213
5398
  "opacity": 1,
4214
5399
  "width": 42,
4215
5400
  }
4216
5401
  }
4217
- testID="undefined.day_2023-03-31"
5402
+ testID="undefined.day_2023-07-07"
4218
5403
  >
4219
5404
  <Text
4220
5405
  allowFontScaling={false}
@@ -4228,12 +5413,12 @@ exports[`Test for the calendar component renders a calendar where you can select
4228
5413
  "marginTop": 4,
4229
5414
  },
4230
5415
  {
4231
- "color": "#9AA5B1",
5416
+ "color": "#7B93DB",
4232
5417
  },
4233
5418
  ]
4234
5419
  }
4235
5420
  >
4236
- 31
5421
+ 7
4237
5422
  </Text>
4238
5423
  <View
4239
5424
  style={
@@ -4260,7 +5445,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4260
5445
  }
4261
5446
  >
4262
5447
  <View
4263
- accessibilityLabel=" Zaterdag 1 April 2023 "
5448
+ accessibilityLabel=" Zaterdag 8 Juli 2023 "
4264
5449
  accessibilityState={
4265
5450
  {
4266
5451
  "busy": undefined,
@@ -4297,7 +5482,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4297
5482
  "width": 42,
4298
5483
  }
4299
5484
  }
4300
- testID="undefined.day_2023-04-01"
5485
+ testID="undefined.day_2023-07-08"
4301
5486
  >
4302
5487
  <Text
4303
5488
  allowFontScaling={false}
@@ -4316,7 +5501,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4316
5501
  ]
4317
5502
  }
4318
5503
  >
4319
- 1
5504
+ 8
4320
5505
  </Text>
4321
5506
  <View
4322
5507
  style={
@@ -4343,7 +5528,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4343
5528
  }
4344
5529
  >
4345
5530
  <View
4346
- accessibilityLabel=" Zondag 2 April 2023 "
5531
+ accessibilityLabel=" Zondag 9 Juli 2023 "
4347
5532
  accessibilityState={
4348
5533
  {
4349
5534
  "busy": undefined,
@@ -4380,7 +5565,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4380
5565
  "width": 42,
4381
5566
  }
4382
5567
  }
4383
- testID="undefined.day_2023-04-02"
5568
+ testID="undefined.day_2023-07-09"
4384
5569
  >
4385
5570
  <Text
4386
5571
  allowFontScaling={false}
@@ -4399,7 +5584,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4399
5584
  ]
4400
5585
  }
4401
5586
  >
4402
- 2
5587
+ 9
4403
5588
  </Text>
4404
5589
  <View
4405
5590
  style={
@@ -4436,7 +5621,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4436
5621
  }
4437
5622
  >
4438
5623
  <View
4439
- accessibilityLabel=" Maandag 3 April 2023 "
5624
+ accessibilityLabel=" Maandag 10 Juli 2023 "
4440
5625
  accessibilityState={
4441
5626
  {
4442
5627
  "busy": undefined,
@@ -4473,7 +5658,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4473
5658
  "width": 42,
4474
5659
  }
4475
5660
  }
4476
- testID="undefined.day_2023-04-03"
5661
+ testID="undefined.day_2023-07-10"
4477
5662
  >
4478
5663
  <Text
4479
5664
  allowFontScaling={false}
@@ -4492,7 +5677,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4492
5677
  ]
4493
5678
  }
4494
5679
  >
4495
- 3
5680
+ 10
4496
5681
  </Text>
4497
5682
  <View
4498
5683
  style={
@@ -4519,8 +5704,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4519
5704
  }
4520
5705
  >
4521
5706
  <View
4522
- accessibilityLabel="today Dinsdag 4 April 2023 "
4523
- accessibilityRole="button"
5707
+ accessibilityLabel=" Dinsdag 11 Juli 2023 "
4524
5708
  accessibilityState={
4525
5709
  {
4526
5710
  "busy": undefined,
@@ -4551,17 +5735,13 @@ exports[`Test for the calendar component renders a calendar where you can select
4551
5735
  style={
4552
5736
  {
4553
5737
  "alignItems": "center",
4554
- "borderColor": "#7B93DB",
4555
- "borderRadius": 21,
4556
- "borderStyle": "solid",
4557
- "borderWidth": 1,
4558
5738
  "height": 42,
4559
5739
  "justifyContent": "center",
4560
5740
  "opacity": 1,
4561
5741
  "width": 42,
4562
5742
  }
4563
5743
  }
4564
- testID="undefined.day_2023-04-04"
5744
+ testID="undefined.day_2023-07-11"
4565
5745
  >
4566
5746
  <Text
4567
5747
  allowFontScaling={false}
@@ -4575,12 +5755,12 @@ exports[`Test for the calendar component renders a calendar where you can select
4575
5755
  "marginTop": 4,
4576
5756
  },
4577
5757
  {
4578
- "color": "#7B93DB",
5758
+ "color": "#9AA5B1",
4579
5759
  },
4580
5760
  ]
4581
5761
  }
4582
5762
  >
4583
- 4
5763
+ 11
4584
5764
  </Text>
4585
5765
  <View
4586
5766
  style={
@@ -4607,7 +5787,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4607
5787
  }
4608
5788
  >
4609
5789
  <View
4610
- accessibilityLabel=" Woensdag 5 April 2023 "
5790
+ accessibilityLabel=" Woensdag 12 Juli 2023 "
4611
5791
  accessibilityState={
4612
5792
  {
4613
5793
  "busy": undefined,
@@ -4644,7 +5824,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4644
5824
  "width": 42,
4645
5825
  }
4646
5826
  }
4647
- testID="undefined.day_2023-04-05"
5827
+ testID="undefined.day_2023-07-12"
4648
5828
  >
4649
5829
  <Text
4650
5830
  allowFontScaling={false}
@@ -4663,7 +5843,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4663
5843
  ]
4664
5844
  }
4665
5845
  >
4666
- 5
5846
+ 12
4667
5847
  </Text>
4668
5848
  <View
4669
5849
  style={
@@ -4690,7 +5870,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4690
5870
  }
4691
5871
  >
4692
5872
  <View
4693
- accessibilityLabel=" Donderdag 6 April 2023 "
5873
+ accessibilityLabel=" Donderdag 13 Juli 2023 "
4694
5874
  accessibilityState={
4695
5875
  {
4696
5876
  "busy": undefined,
@@ -4727,7 +5907,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4727
5907
  "width": 42,
4728
5908
  }
4729
5909
  }
4730
- testID="undefined.day_2023-04-06"
5910
+ testID="undefined.day_2023-07-13"
4731
5911
  >
4732
5912
  <Text
4733
5913
  allowFontScaling={false}
@@ -4746,7 +5926,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4746
5926
  ]
4747
5927
  }
4748
5928
  >
4749
- 6
5929
+ 13
4750
5930
  </Text>
4751
5931
  <View
4752
5932
  style={
@@ -4773,7 +5953,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4773
5953
  }
4774
5954
  >
4775
5955
  <View
4776
- accessibilityLabel=" Vrijdag 7 April 2023 "
5956
+ accessibilityLabel=" Vrijdag 14 Juli 2023 "
4777
5957
  accessibilityState={
4778
5958
  {
4779
5959
  "busy": undefined,
@@ -4810,7 +5990,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4810
5990
  "width": 42,
4811
5991
  }
4812
5992
  }
4813
- testID="undefined.day_2023-04-07"
5993
+ testID="undefined.day_2023-07-14"
4814
5994
  >
4815
5995
  <Text
4816
5996
  allowFontScaling={false}
@@ -4829,7 +6009,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4829
6009
  ]
4830
6010
  }
4831
6011
  >
4832
- 7
6012
+ 14
4833
6013
  </Text>
4834
6014
  <View
4835
6015
  style={
@@ -4856,7 +6036,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4856
6036
  }
4857
6037
  >
4858
6038
  <View
4859
- accessibilityLabel=" Zaterdag 8 April 2023 "
6039
+ accessibilityLabel=" Zaterdag 15 Juli 2023 "
4860
6040
  accessibilityState={
4861
6041
  {
4862
6042
  "busy": undefined,
@@ -4893,7 +6073,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4893
6073
  "width": 42,
4894
6074
  }
4895
6075
  }
4896
- testID="undefined.day_2023-04-08"
6076
+ testID="undefined.day_2023-07-15"
4897
6077
  >
4898
6078
  <Text
4899
6079
  allowFontScaling={false}
@@ -4912,7 +6092,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4912
6092
  ]
4913
6093
  }
4914
6094
  >
4915
- 8
6095
+ 15
4916
6096
  </Text>
4917
6097
  <View
4918
6098
  style={
@@ -4939,7 +6119,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4939
6119
  }
4940
6120
  >
4941
6121
  <View
4942
- accessibilityLabel=" Zondag 9 April 2023 "
6122
+ accessibilityLabel=" Zondag 16 Juli 2023 "
4943
6123
  accessibilityState={
4944
6124
  {
4945
6125
  "busy": undefined,
@@ -4976,7 +6156,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4976
6156
  "width": 42,
4977
6157
  }
4978
6158
  }
4979
- testID="undefined.day_2023-04-09"
6159
+ testID="undefined.day_2023-07-16"
4980
6160
  >
4981
6161
  <Text
4982
6162
  allowFontScaling={false}
@@ -4995,7 +6175,7 @@ exports[`Test for the calendar component renders a calendar where you can select
4995
6175
  ]
4996
6176
  }
4997
6177
  >
4998
- 9
6178
+ 16
4999
6179
  </Text>
5000
6180
  <View
5001
6181
  style={
@@ -5032,7 +6212,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5032
6212
  }
5033
6213
  >
5034
6214
  <View
5035
- accessibilityLabel=" Maandag 10 April 2023 "
6215
+ accessibilityLabel=" Maandag 17 Juli 2023 "
5036
6216
  accessibilityState={
5037
6217
  {
5038
6218
  "busy": undefined,
@@ -5069,7 +6249,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5069
6249
  "width": 42,
5070
6250
  }
5071
6251
  }
5072
- testID="undefined.day_2023-04-10"
6252
+ testID="undefined.day_2023-07-17"
5073
6253
  >
5074
6254
  <Text
5075
6255
  allowFontScaling={false}
@@ -5088,7 +6268,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5088
6268
  ]
5089
6269
  }
5090
6270
  >
5091
- 10
6271
+ 17
5092
6272
  </Text>
5093
6273
  <View
5094
6274
  style={
@@ -5115,7 +6295,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5115
6295
  }
5116
6296
  >
5117
6297
  <View
5118
- accessibilityLabel=" Dinsdag 11 April 2023 "
6298
+ accessibilityLabel=" Dinsdag 18 Juli 2023 "
5119
6299
  accessibilityState={
5120
6300
  {
5121
6301
  "busy": undefined,
@@ -5152,7 +6332,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5152
6332
  "width": 42,
5153
6333
  }
5154
6334
  }
5155
- testID="undefined.day_2023-04-11"
6335
+ testID="undefined.day_2023-07-18"
5156
6336
  >
5157
6337
  <Text
5158
6338
  allowFontScaling={false}
@@ -5171,7 +6351,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5171
6351
  ]
5172
6352
  }
5173
6353
  >
5174
- 11
6354
+ 18
5175
6355
  </Text>
5176
6356
  <View
5177
6357
  style={
@@ -5198,7 +6378,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5198
6378
  }
5199
6379
  >
5200
6380
  <View
5201
- accessibilityLabel=" Woensdag 12 April 2023 "
6381
+ accessibilityLabel=" Woensdag 19 Juli 2023 "
5202
6382
  accessibilityState={
5203
6383
  {
5204
6384
  "busy": undefined,
@@ -5235,7 +6415,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5235
6415
  "width": 42,
5236
6416
  }
5237
6417
  }
5238
- testID="undefined.day_2023-04-12"
6418
+ testID="undefined.day_2023-07-19"
5239
6419
  >
5240
6420
  <Text
5241
6421
  allowFontScaling={false}
@@ -5254,7 +6434,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5254
6434
  ]
5255
6435
  }
5256
6436
  >
5257
- 12
6437
+ 19
5258
6438
  </Text>
5259
6439
  <View
5260
6440
  style={
@@ -5281,7 +6461,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5281
6461
  }
5282
6462
  >
5283
6463
  <View
5284
- accessibilityLabel=" Donderdag 13 April 2023 "
6464
+ accessibilityLabel=" Donderdag 20 Juli 2023 "
5285
6465
  accessibilityState={
5286
6466
  {
5287
6467
  "busy": undefined,
@@ -5318,7 +6498,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5318
6498
  "width": 42,
5319
6499
  }
5320
6500
  }
5321
- testID="undefined.day_2023-04-13"
6501
+ testID="undefined.day_2023-07-20"
5322
6502
  >
5323
6503
  <Text
5324
6504
  allowFontScaling={false}
@@ -5337,7 +6517,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5337
6517
  ]
5338
6518
  }
5339
6519
  >
5340
- 13
6520
+ 20
5341
6521
  </Text>
5342
6522
  <View
5343
6523
  style={
@@ -5364,7 +6544,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5364
6544
  }
5365
6545
  >
5366
6546
  <View
5367
- accessibilityLabel=" Vrijdag 14 April 2023 "
6547
+ accessibilityLabel=" Vrijdag 21 Juli 2023 "
5368
6548
  accessibilityState={
5369
6549
  {
5370
6550
  "busy": undefined,
@@ -5401,7 +6581,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5401
6581
  "width": 42,
5402
6582
  }
5403
6583
  }
5404
- testID="undefined.day_2023-04-14"
6584
+ testID="undefined.day_2023-07-21"
5405
6585
  >
5406
6586
  <Text
5407
6587
  allowFontScaling={false}
@@ -5420,7 +6600,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5420
6600
  ]
5421
6601
  }
5422
6602
  >
5423
- 14
6603
+ 21
5424
6604
  </Text>
5425
6605
  <View
5426
6606
  style={
@@ -5447,7 +6627,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5447
6627
  }
5448
6628
  >
5449
6629
  <View
5450
- accessibilityLabel=" Zaterdag 15 April 2023 "
6630
+ accessibilityLabel=" Zaterdag 22 Juli 2023 "
5451
6631
  accessibilityState={
5452
6632
  {
5453
6633
  "busy": undefined,
@@ -5484,7 +6664,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5484
6664
  "width": 42,
5485
6665
  }
5486
6666
  }
5487
- testID="undefined.day_2023-04-15"
6667
+ testID="undefined.day_2023-07-22"
5488
6668
  >
5489
6669
  <Text
5490
6670
  allowFontScaling={false}
@@ -5503,7 +6683,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5503
6683
  ]
5504
6684
  }
5505
6685
  >
5506
- 15
6686
+ 22
5507
6687
  </Text>
5508
6688
  <View
5509
6689
  style={
@@ -5530,7 +6710,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5530
6710
  }
5531
6711
  >
5532
6712
  <View
5533
- accessibilityLabel=" Zondag 16 April 2023 "
6713
+ accessibilityLabel=" Zondag 23 Juli 2023 "
5534
6714
  accessibilityState={
5535
6715
  {
5536
6716
  "busy": undefined,
@@ -5567,7 +6747,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5567
6747
  "width": 42,
5568
6748
  }
5569
6749
  }
5570
- testID="undefined.day_2023-04-16"
6750
+ testID="undefined.day_2023-07-23"
5571
6751
  >
5572
6752
  <Text
5573
6753
  allowFontScaling={false}
@@ -5586,7 +6766,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5586
6766
  ]
5587
6767
  }
5588
6768
  >
5589
- 16
6769
+ 23
5590
6770
  </Text>
5591
6771
  <View
5592
6772
  style={
@@ -5623,7 +6803,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5623
6803
  }
5624
6804
  >
5625
6805
  <View
5626
- accessibilityLabel=" Maandag 17 April 2023 "
6806
+ accessibilityLabel=" Maandag 24 Juli 2023 "
5627
6807
  accessibilityState={
5628
6808
  {
5629
6809
  "busy": undefined,
@@ -5660,7 +6840,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5660
6840
  "width": 42,
5661
6841
  }
5662
6842
  }
5663
- testID="undefined.day_2023-04-17"
6843
+ testID="undefined.day_2023-07-24"
5664
6844
  >
5665
6845
  <Text
5666
6846
  allowFontScaling={false}
@@ -5679,7 +6859,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5679
6859
  ]
5680
6860
  }
5681
6861
  >
5682
- 17
6862
+ 24
5683
6863
  </Text>
5684
6864
  <View
5685
6865
  style={
@@ -5706,7 +6886,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5706
6886
  }
5707
6887
  >
5708
6888
  <View
5709
- accessibilityLabel=" Dinsdag 18 April 2023 "
6889
+ accessibilityLabel=" Dinsdag 25 Juli 2023 "
5710
6890
  accessibilityState={
5711
6891
  {
5712
6892
  "busy": undefined,
@@ -5743,7 +6923,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5743
6923
  "width": 42,
5744
6924
  }
5745
6925
  }
5746
- testID="undefined.day_2023-04-18"
6926
+ testID="undefined.day_2023-07-25"
5747
6927
  >
5748
6928
  <Text
5749
6929
  allowFontScaling={false}
@@ -5762,7 +6942,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5762
6942
  ]
5763
6943
  }
5764
6944
  >
5765
- 18
6945
+ 25
5766
6946
  </Text>
5767
6947
  <View
5768
6948
  style={
@@ -5789,7 +6969,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5789
6969
  }
5790
6970
  >
5791
6971
  <View
5792
- accessibilityLabel=" Woensdag 19 April 2023 "
6972
+ accessibilityLabel=" Woensdag 26 Juli 2023 "
5793
6973
  accessibilityState={
5794
6974
  {
5795
6975
  "busy": undefined,
@@ -5826,7 +7006,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5826
7006
  "width": 42,
5827
7007
  }
5828
7008
  }
5829
- testID="undefined.day_2023-04-19"
7009
+ testID="undefined.day_2023-07-26"
5830
7010
  >
5831
7011
  <Text
5832
7012
  allowFontScaling={false}
@@ -5845,7 +7025,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5845
7025
  ]
5846
7026
  }
5847
7027
  >
5848
- 19
7028
+ 26
5849
7029
  </Text>
5850
7030
  <View
5851
7031
  style={
@@ -5872,7 +7052,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5872
7052
  }
5873
7053
  >
5874
7054
  <View
5875
- accessibilityLabel=" Donderdag 20 April 2023 "
7055
+ accessibilityLabel=" Donderdag 27 Juli 2023 "
5876
7056
  accessibilityState={
5877
7057
  {
5878
7058
  "busy": undefined,
@@ -5909,7 +7089,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5909
7089
  "width": 42,
5910
7090
  }
5911
7091
  }
5912
- testID="undefined.day_2023-04-20"
7092
+ testID="undefined.day_2023-07-27"
5913
7093
  >
5914
7094
  <Text
5915
7095
  allowFontScaling={false}
@@ -5928,7 +7108,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5928
7108
  ]
5929
7109
  }
5930
7110
  >
5931
- 20
7111
+ 27
5932
7112
  </Text>
5933
7113
  <View
5934
7114
  style={
@@ -5955,7 +7135,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5955
7135
  }
5956
7136
  >
5957
7137
  <View
5958
- accessibilityLabel=" Vrijdag 21 April 2023 "
7138
+ accessibilityLabel=" Vrijdag 28 Juli 2023 "
5959
7139
  accessibilityState={
5960
7140
  {
5961
7141
  "busy": undefined,
@@ -5992,7 +7172,7 @@ exports[`Test for the calendar component renders a calendar where you can select
5992
7172
  "width": 42,
5993
7173
  }
5994
7174
  }
5995
- testID="undefined.day_2023-04-21"
7175
+ testID="undefined.day_2023-07-28"
5996
7176
  >
5997
7177
  <Text
5998
7178
  allowFontScaling={false}
@@ -6011,7 +7191,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6011
7191
  ]
6012
7192
  }
6013
7193
  >
6014
- 21
7194
+ 28
6015
7195
  </Text>
6016
7196
  <View
6017
7197
  style={
@@ -6038,7 +7218,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6038
7218
  }
6039
7219
  >
6040
7220
  <View
6041
- accessibilityLabel=" Zaterdag 22 April 2023 "
7221
+ accessibilityLabel=" Zaterdag 29 Juli 2023 "
6042
7222
  accessibilityState={
6043
7223
  {
6044
7224
  "busy": undefined,
@@ -6075,7 +7255,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6075
7255
  "width": 42,
6076
7256
  }
6077
7257
  }
6078
- testID="undefined.day_2023-04-22"
7258
+ testID="undefined.day_2023-07-29"
6079
7259
  >
6080
7260
  <Text
6081
7261
  allowFontScaling={false}
@@ -6094,7 +7274,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6094
7274
  ]
6095
7275
  }
6096
7276
  >
6097
- 22
7277
+ 29
6098
7278
  </Text>
6099
7279
  <View
6100
7280
  style={
@@ -6121,7 +7301,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6121
7301
  }
6122
7302
  >
6123
7303
  <View
6124
- accessibilityLabel=" Zondag 23 April 2023 "
7304
+ accessibilityLabel=" Zondag 30 Juli 2023 "
6125
7305
  accessibilityState={
6126
7306
  {
6127
7307
  "busy": undefined,
@@ -6158,7 +7338,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6158
7338
  "width": 42,
6159
7339
  }
6160
7340
  }
6161
- testID="undefined.day_2023-04-23"
7341
+ testID="undefined.day_2023-07-30"
6162
7342
  >
6163
7343
  <Text
6164
7344
  allowFontScaling={false}
@@ -6177,7 +7357,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6177
7357
  ]
6178
7358
  }
6179
7359
  >
6180
- 23
7360
+ 30
6181
7361
  </Text>
6182
7362
  <View
6183
7363
  style={
@@ -6214,7 +7394,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6214
7394
  }
6215
7395
  >
6216
7396
  <View
6217
- accessibilityLabel=" Maandag 24 April 2023 "
7397
+ accessibilityLabel=" Maandag 31 Juli 2023 "
6218
7398
  accessibilityState={
6219
7399
  {
6220
7400
  "busy": undefined,
@@ -6251,7 +7431,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6251
7431
  "width": 42,
6252
7432
  }
6253
7433
  }
6254
- testID="undefined.day_2023-04-24"
7434
+ testID="undefined.day_2023-07-31"
6255
7435
  >
6256
7436
  <Text
6257
7437
  allowFontScaling={false}
@@ -6270,7 +7450,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6270
7450
  ]
6271
7451
  }
6272
7452
  >
6273
- 24
7453
+ 31
6274
7454
  </Text>
6275
7455
  <View
6276
7456
  style={
@@ -6297,7 +7477,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6297
7477
  }
6298
7478
  >
6299
7479
  <View
6300
- accessibilityLabel=" Dinsdag 25 April 2023 "
7480
+ accessibilityLabel=" Dinsdag 1 Augustus 2023 "
6301
7481
  accessibilityState={
6302
7482
  {
6303
7483
  "busy": undefined,
@@ -6334,7 +7514,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6334
7514
  "width": 42,
6335
7515
  }
6336
7516
  }
6337
- testID="undefined.day_2023-04-25"
7517
+ testID="undefined.day_2023-08-01"
6338
7518
  >
6339
7519
  <Text
6340
7520
  allowFontScaling={false}
@@ -6353,7 +7533,7 @@ exports[`Test for the calendar component renders a calendar where you can select
6353
7533
  ]
6354
7534
  }
6355
7535
  >
6356
- 25
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 26 April 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-04-26"
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
- 26
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 27 April 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-04-27"
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
- 27
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 28 April 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-04-28"
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
- 28
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 29 April 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-04-29"
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
- 29
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 30 April 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-04-30"
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
- 30
7951
+ 6
6772
7952
  </Text>
6773
7953
  <View
6774
7954
  style={