@tactics/toddle-styleguide 1.2.7 → 1.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App.tsx +5 -0
- package/index.d.ts +3 -1
- package/index.tsx +50 -46
- package/package.json +1 -1
- package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +628 -1810
- package/src/components/atoms/quick-message/__snapshots__/quick-message.test.js.snap +72 -1
- package/src/components/atoms/quick-message/quick-message.component.d.ts +2 -1
- package/src/components/atoms/quick-message/quick-message.component.tsx +3 -1
- package/src/components/atoms/quick-message/quick-message.preview.tsx +10 -1
- package/src/components/atoms/quick-message/quick-message.styles.d.ts +1 -1
- package/src/components/atoms/quick-message/quick-message.styles.js +4 -2
- package/src/components/atoms/quick-message/quick-message.test.js +38 -6
- package/src/components/atoms/text-input/text-input.component.tsx +6 -9
- package/src/components/atoms/text-input/text-input.preview.tsx +3 -3
- package/src/components/atoms/text-input/text-input.styles.d.ts +20 -44
- package/src/components/atoms/text-input/text-input.styles.js +7 -13
- package/src/components/molecules/button/button.styles.d.ts +17 -13
- package/src/components/molecules/day/day.component.tsx +17 -4
- package/src/components/molecules/day/day.styles.d.ts +27 -44
- package/src/components/molecules/day/day.styles.js +14 -17
- package/src/components/molecules/filter-tab/filter-tab.component.d.ts +3 -2
- package/src/components/molecules/filter-tab/filter-tab.component.tsx +9 -5
- package/src/components/molecules/filter-tab/filter-tab.preview.tsx +2 -2
- package/src/components/molecules/filter-tab/filter-tab.test.js +2 -2
- package/src/components/molecules/password-input/password-input.component.tsx +7 -9
- package/src/components/molecules/password-input/password-input.styles.d.ts +27 -26
- package/src/components/molecules/password-input/password-input.styles.js +6 -6
- package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +23 -13
- package/src/components/molecules/search-input/search.component.d.ts +7 -8
- package/src/components/molecules/search-input/search.component.tsx +19 -30
- package/src/components/molecules/search-input/search.preview.tsx +8 -6
- package/src/components/molecules/search-input/search.styles.d.ts +31 -30
- package/src/components/molecules/search-input/search.styles.js +14 -8
- package/src/components/molecules/search-input/search.test.js +3 -1
- package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +1 -5
- package/src/components/molecules/send-bubble/send-text-bubble.styles.d.ts +58 -74
- package/src/components/molecules/send-bubble/send-text-bubble.styles.js +2 -8
- package/src/components/molecules/timeline/timeline.styles.d.ts +40 -50
- package/src/components/molecules/timeline/timeline.styles.js +2 -2
- package/src/components/molecules/timestamp/timestamp.component.d.ts +2 -1
- package/src/components/molecules/timestamp/timestamp.component.tsx +4 -7
- package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +165 -14
- package/src/components/organisms/child-list-item/child-list-item.component.d.ts +2 -1
- package/src/components/organisms/child-list-item/child-list-item.component.tsx +24 -1
- package/src/components/organisms/child-list-item/child-list-item.preview.tsx +12 -0
- package/src/components/organisms/child-list-item/child-list-item.styles.d.ts +35 -41
- package/src/components/organisms/child-list-item/child-list-item.styles.js +2 -5
- package/src/components/organisms/child-list-item/child-list-item.test.js +9 -4
- package/src/components/organisms/child-list-item/components/child-list-tag.component.d.ts +6 -0
- package/src/components/organisms/child-list-item/components/child-list-tag.component.tsx +28 -0
- package/src/components/organisms/child-list-item/components/child-list-tag.styles.d.ts +10 -0
- package/src/components/organisms/child-list-item/components/child-list-tag.styles.js +16 -0
- package/src/components/organisms/day-select/day-select.preview.tsx +9 -5
- package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +143 -401
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.d.ts +4 -5
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +32 -59
- package/src/components/organisms/my-child-list-item/my-child-list-item.preview.tsx +37 -24
- package/src/components/organisms/my-child-list-item/my-child-list-item.styles.d.ts +32 -28
- package/src/components/organisms/my-child-list-item/my-child-list-item.styles.js +16 -12
- package/src/components/organisms/my-child-list-item/my-child-list-item.test.js +5 -22
- package/src/components/organisms/person-info-card/person-info-card.component.d.ts +2 -1
- package/src/components/organisms/person-info-card/person-info-card.component.tsx +3 -0
- package/src/components/organisms/tab-view/__snapshots__/tab-view.test.js.snap +421 -0
- package/src/components/organisms/tab-view/tab-view.component.d.ts +11 -0
- package/src/components/organisms/tab-view/tab-view.component.tsx +48 -0
- package/src/components/organisms/tab-view/tab-view.preview.d.ts +1 -0
- package/src/components/organisms/tab-view/tab-view.preview.tsx +36 -0
- package/src/components/organisms/tab-view/tab-view.styles.d.ts +10 -0
- package/src/components/organisms/tab-view/tab-view.styles.js +14 -0
- package/src/components/organisms/tab-view/tab-view.test.js +37 -0
- package/src/components/organisms/text-bubble/text-bubble.component.d.ts +2 -1
- package/src/components/organisms/text-bubble/text-bubble.component.tsx +3 -1
- package/src/components/organisms/text-bubble/text-bubble.preview.tsx +8 -4
- package/src/components/organisms/text-bubble/text-bubble.styles.d.ts +1 -0
- package/src/components/organisms/text-bubble/text-bubble.styles.js +2 -0
- package/src/components/templates/modal/components/fade-panel.component.tsx +1 -1
- package/src/components/templates/popover/components/modal/modal.component.d.ts +2 -1
- package/src/components/templates/popover/components/modal/modal.component.tsx +8 -2
- package/src/components/templates/popover/popover.component.d.ts +2 -1
- package/src/components/templates/popover/popover.component.tsx +3 -0
- package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.d.ts +4 -0
- package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.tsx +6 -0
- package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +10 -2
- package/src/utilities/toddle-datetime/toddle-datetime.class.tsx +31 -2
- package/src/utilities/toddle-datetime/toddle-datetime.preview.tsx +114 -84
- package/src/utilities/toddle-datetime/types/{duration-like.type.d.ts → duration.type.d.ts} +2 -0
- package/src/utilities/toddle-datetime/types/{duration-like.type.tsx → duration.type.tsx} +3 -0
- package/src/utilities/toddle-datetime/types/toddle-datetime.type.d.ts +1 -0
- package/src/utilities/toddle-datetime/types/toddle-datetime.type.tsx +8 -1
|
@@ -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
|
-
|
|
195
|
+
Augustus 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
|
|
481
|
+
accessibilityLabel=" Maandag 31 Juli 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-
|
|
518
|
+
testID="undefined.day_2023-07-31"
|
|
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
|
-
|
|
537
|
+
31
|
|
538
538
|
</Text>
|
|
539
539
|
<View
|
|
540
540
|
style={
|
|
@@ -561,7 +561,8 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
561
561
|
}
|
|
562
562
|
>
|
|
563
563
|
<View
|
|
564
|
-
accessibilityLabel=" Dinsdag
|
|
564
|
+
accessibilityLabel=" Dinsdag 1 Augustus 2023 "
|
|
565
|
+
accessibilityRole="button"
|
|
565
566
|
accessibilityState={
|
|
566
567
|
{
|
|
567
568
|
"busy": undefined,
|
|
@@ -598,7 +599,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
598
599
|
"width": 42,
|
|
599
600
|
}
|
|
600
601
|
}
|
|
601
|
-
testID="undefined.day_2023-
|
|
602
|
+
testID="undefined.day_2023-08-01"
|
|
602
603
|
>
|
|
603
604
|
<Text
|
|
604
605
|
allowFontScaling={false}
|
|
@@ -611,13 +612,10 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
611
612
|
"lineHeight": 22.4,
|
|
612
613
|
"marginTop": 4,
|
|
613
614
|
},
|
|
614
|
-
{
|
|
615
|
-
"color": "#9AA5B1",
|
|
616
|
-
},
|
|
617
615
|
]
|
|
618
616
|
}
|
|
619
617
|
>
|
|
620
|
-
|
|
618
|
+
1
|
|
621
619
|
</Text>
|
|
622
620
|
<View
|
|
623
621
|
style={
|
|
@@ -644,7 +642,8 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
644
642
|
}
|
|
645
643
|
>
|
|
646
644
|
<View
|
|
647
|
-
accessibilityLabel=" Woensdag
|
|
645
|
+
accessibilityLabel=" Woensdag 2 Augustus 2023 "
|
|
646
|
+
accessibilityRole="button"
|
|
648
647
|
accessibilityState={
|
|
649
648
|
{
|
|
650
649
|
"busy": undefined,
|
|
@@ -681,7 +680,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
681
680
|
"width": 42,
|
|
682
681
|
}
|
|
683
682
|
}
|
|
684
|
-
testID="undefined.day_2023-
|
|
683
|
+
testID="undefined.day_2023-08-02"
|
|
685
684
|
>
|
|
686
685
|
<Text
|
|
687
686
|
allowFontScaling={false}
|
|
@@ -694,13 +693,10 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
694
693
|
"lineHeight": 22.4,
|
|
695
694
|
"marginTop": 4,
|
|
696
695
|
},
|
|
697
|
-
{
|
|
698
|
-
"color": "#9AA5B1",
|
|
699
|
-
},
|
|
700
696
|
]
|
|
701
697
|
}
|
|
702
698
|
>
|
|
703
|
-
|
|
699
|
+
2
|
|
704
700
|
</Text>
|
|
705
701
|
<View
|
|
706
702
|
style={
|
|
@@ -727,7 +723,8 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
727
723
|
}
|
|
728
724
|
>
|
|
729
725
|
<View
|
|
730
|
-
accessibilityLabel=" Donderdag
|
|
726
|
+
accessibilityLabel=" Donderdag 3 Augustus 2023 "
|
|
727
|
+
accessibilityRole="button"
|
|
731
728
|
accessibilityState={
|
|
732
729
|
{
|
|
733
730
|
"busy": undefined,
|
|
@@ -764,7 +761,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
764
761
|
"width": 42,
|
|
765
762
|
}
|
|
766
763
|
}
|
|
767
|
-
testID="undefined.day_2023-
|
|
764
|
+
testID="undefined.day_2023-08-03"
|
|
768
765
|
>
|
|
769
766
|
<Text
|
|
770
767
|
allowFontScaling={false}
|
|
@@ -777,13 +774,10 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
777
774
|
"lineHeight": 22.4,
|
|
778
775
|
"marginTop": 4,
|
|
779
776
|
},
|
|
780
|
-
{
|
|
781
|
-
"color": "#9AA5B1",
|
|
782
|
-
},
|
|
783
777
|
]
|
|
784
778
|
}
|
|
785
779
|
>
|
|
786
|
-
|
|
780
|
+
3
|
|
787
781
|
</Text>
|
|
788
782
|
<View
|
|
789
783
|
style={
|
|
@@ -810,7 +804,8 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
810
804
|
}
|
|
811
805
|
>
|
|
812
806
|
<View
|
|
813
|
-
accessibilityLabel=" Vrijdag
|
|
807
|
+
accessibilityLabel="today Vrijdag 4 Augustus 2023 "
|
|
808
|
+
accessibilityRole="button"
|
|
814
809
|
accessibilityState={
|
|
815
810
|
{
|
|
816
811
|
"busy": undefined,
|
|
@@ -841,13 +836,17 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
841
836
|
style={
|
|
842
837
|
{
|
|
843
838
|
"alignItems": "center",
|
|
839
|
+
"borderColor": "#7B93DB",
|
|
840
|
+
"borderRadius": 21,
|
|
841
|
+
"borderStyle": "solid",
|
|
842
|
+
"borderWidth": 1,
|
|
844
843
|
"height": 42,
|
|
845
844
|
"justifyContent": "center",
|
|
846
845
|
"opacity": 1,
|
|
847
846
|
"width": 42,
|
|
848
847
|
}
|
|
849
848
|
}
|
|
850
|
-
testID="undefined.day_2023-
|
|
849
|
+
testID="undefined.day_2023-08-04"
|
|
851
850
|
>
|
|
852
851
|
<Text
|
|
853
852
|
allowFontScaling={false}
|
|
@@ -861,12 +860,12 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
861
860
|
"marginTop": 4,
|
|
862
861
|
},
|
|
863
862
|
{
|
|
864
|
-
"color": "#
|
|
863
|
+
"color": "#7B93DB",
|
|
865
864
|
},
|
|
866
865
|
]
|
|
867
866
|
}
|
|
868
867
|
>
|
|
869
|
-
|
|
868
|
+
4
|
|
870
869
|
</Text>
|
|
871
870
|
<View
|
|
872
871
|
style={
|
|
@@ -893,7 +892,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
893
892
|
}
|
|
894
893
|
>
|
|
895
894
|
<View
|
|
896
|
-
accessibilityLabel=" Zaterdag
|
|
895
|
+
accessibilityLabel=" Zaterdag 5 Augustus 2023 "
|
|
897
896
|
accessibilityRole="button"
|
|
898
897
|
accessibilityState={
|
|
899
898
|
{
|
|
@@ -931,7 +930,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
931
930
|
"width": 42,
|
|
932
931
|
}
|
|
933
932
|
}
|
|
934
|
-
testID="undefined.day_2023-
|
|
933
|
+
testID="undefined.day_2023-08-05"
|
|
935
934
|
>
|
|
936
935
|
<Text
|
|
937
936
|
allowFontScaling={false}
|
|
@@ -947,7 +946,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
947
946
|
]
|
|
948
947
|
}
|
|
949
948
|
>
|
|
950
|
-
|
|
949
|
+
5
|
|
951
950
|
</Text>
|
|
952
951
|
<View
|
|
953
952
|
style={
|
|
@@ -974,7 +973,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
974
973
|
}
|
|
975
974
|
>
|
|
976
975
|
<View
|
|
977
|
-
accessibilityLabel=" Zondag
|
|
976
|
+
accessibilityLabel=" Zondag 6 Augustus 2023 "
|
|
978
977
|
accessibilityRole="button"
|
|
979
978
|
accessibilityState={
|
|
980
979
|
{
|
|
@@ -1012,7 +1011,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1012
1011
|
"width": 42,
|
|
1013
1012
|
}
|
|
1014
1013
|
}
|
|
1015
|
-
testID="undefined.day_2023-
|
|
1014
|
+
testID="undefined.day_2023-08-06"
|
|
1016
1015
|
>
|
|
1017
1016
|
<Text
|
|
1018
1017
|
allowFontScaling={false}
|
|
@@ -1028,7 +1027,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1028
1027
|
]
|
|
1029
1028
|
}
|
|
1030
1029
|
>
|
|
1031
|
-
|
|
1030
|
+
6
|
|
1032
1031
|
</Text>
|
|
1033
1032
|
<View
|
|
1034
1033
|
style={
|
|
@@ -1065,7 +1064,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1065
1064
|
}
|
|
1066
1065
|
>
|
|
1067
1066
|
<View
|
|
1068
|
-
accessibilityLabel=" Maandag
|
|
1067
|
+
accessibilityLabel=" Maandag 7 Augustus 2023 "
|
|
1069
1068
|
accessibilityRole="button"
|
|
1070
1069
|
accessibilityState={
|
|
1071
1070
|
{
|
|
@@ -1103,7 +1102,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1103
1102
|
"width": 42,
|
|
1104
1103
|
}
|
|
1105
1104
|
}
|
|
1106
|
-
testID="undefined.day_2023-07
|
|
1105
|
+
testID="undefined.day_2023-08-07"
|
|
1107
1106
|
>
|
|
1108
1107
|
<Text
|
|
1109
1108
|
allowFontScaling={false}
|
|
@@ -1119,7 +1118,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1119
1118
|
]
|
|
1120
1119
|
}
|
|
1121
1120
|
>
|
|
1122
|
-
|
|
1121
|
+
7
|
|
1123
1122
|
</Text>
|
|
1124
1123
|
<View
|
|
1125
1124
|
style={
|
|
@@ -1146,7 +1145,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1146
1145
|
}
|
|
1147
1146
|
>
|
|
1148
1147
|
<View
|
|
1149
|
-
accessibilityLabel=" Dinsdag
|
|
1148
|
+
accessibilityLabel=" Dinsdag 8 Augustus 2023 "
|
|
1150
1149
|
accessibilityRole="button"
|
|
1151
1150
|
accessibilityState={
|
|
1152
1151
|
{
|
|
@@ -1184,7 +1183,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1184
1183
|
"width": 42,
|
|
1185
1184
|
}
|
|
1186
1185
|
}
|
|
1187
|
-
testID="undefined.day_2023-
|
|
1186
|
+
testID="undefined.day_2023-08-08"
|
|
1188
1187
|
>
|
|
1189
1188
|
<Text
|
|
1190
1189
|
allowFontScaling={false}
|
|
@@ -1200,7 +1199,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1200
1199
|
]
|
|
1201
1200
|
}
|
|
1202
1201
|
>
|
|
1203
|
-
|
|
1202
|
+
8
|
|
1204
1203
|
</Text>
|
|
1205
1204
|
<View
|
|
1206
1205
|
style={
|
|
@@ -1227,7 +1226,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1227
1226
|
}
|
|
1228
1227
|
>
|
|
1229
1228
|
<View
|
|
1230
|
-
accessibilityLabel=" Woensdag
|
|
1229
|
+
accessibilityLabel=" Woensdag 9 Augustus 2023 "
|
|
1231
1230
|
accessibilityRole="button"
|
|
1232
1231
|
accessibilityState={
|
|
1233
1232
|
{
|
|
@@ -1265,7 +1264,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1265
1264
|
"width": 42,
|
|
1266
1265
|
}
|
|
1267
1266
|
}
|
|
1268
|
-
testID="undefined.day_2023-
|
|
1267
|
+
testID="undefined.day_2023-08-09"
|
|
1269
1268
|
>
|
|
1270
1269
|
<Text
|
|
1271
1270
|
allowFontScaling={false}
|
|
@@ -1281,7 +1280,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1281
1280
|
]
|
|
1282
1281
|
}
|
|
1283
1282
|
>
|
|
1284
|
-
|
|
1283
|
+
9
|
|
1285
1284
|
</Text>
|
|
1286
1285
|
<View
|
|
1287
1286
|
style={
|
|
@@ -1308,7 +1307,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1308
1307
|
}
|
|
1309
1308
|
>
|
|
1310
1309
|
<View
|
|
1311
|
-
accessibilityLabel=" Donderdag
|
|
1310
|
+
accessibilityLabel=" Donderdag 10 Augustus 2023 "
|
|
1312
1311
|
accessibilityRole="button"
|
|
1313
1312
|
accessibilityState={
|
|
1314
1313
|
{
|
|
@@ -1346,7 +1345,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1346
1345
|
"width": 42,
|
|
1347
1346
|
}
|
|
1348
1347
|
}
|
|
1349
|
-
testID="undefined.day_2023-
|
|
1348
|
+
testID="undefined.day_2023-08-10"
|
|
1350
1349
|
>
|
|
1351
1350
|
<Text
|
|
1352
1351
|
allowFontScaling={false}
|
|
@@ -1362,7 +1361,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1362
1361
|
]
|
|
1363
1362
|
}
|
|
1364
1363
|
>
|
|
1365
|
-
|
|
1364
|
+
10
|
|
1366
1365
|
</Text>
|
|
1367
1366
|
<View
|
|
1368
1367
|
style={
|
|
@@ -1389,7 +1388,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1389
1388
|
}
|
|
1390
1389
|
>
|
|
1391
1390
|
<View
|
|
1392
|
-
accessibilityLabel=" Vrijdag
|
|
1391
|
+
accessibilityLabel=" Vrijdag 11 Augustus 2023 "
|
|
1393
1392
|
accessibilityRole="button"
|
|
1394
1393
|
accessibilityState={
|
|
1395
1394
|
{
|
|
@@ -1427,7 +1426,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1427
1426
|
"width": 42,
|
|
1428
1427
|
}
|
|
1429
1428
|
}
|
|
1430
|
-
testID="undefined.day_2023-
|
|
1429
|
+
testID="undefined.day_2023-08-11"
|
|
1431
1430
|
>
|
|
1432
1431
|
<Text
|
|
1433
1432
|
allowFontScaling={false}
|
|
@@ -1443,7 +1442,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1443
1442
|
]
|
|
1444
1443
|
}
|
|
1445
1444
|
>
|
|
1446
|
-
|
|
1445
|
+
11
|
|
1447
1446
|
</Text>
|
|
1448
1447
|
<View
|
|
1449
1448
|
style={
|
|
@@ -1470,7 +1469,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1470
1469
|
}
|
|
1471
1470
|
>
|
|
1472
1471
|
<View
|
|
1473
|
-
accessibilityLabel=" Zaterdag
|
|
1472
|
+
accessibilityLabel=" Zaterdag 12 Augustus 2023 "
|
|
1474
1473
|
accessibilityRole="button"
|
|
1475
1474
|
accessibilityState={
|
|
1476
1475
|
{
|
|
@@ -1508,7 +1507,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1508
1507
|
"width": 42,
|
|
1509
1508
|
}
|
|
1510
1509
|
}
|
|
1511
|
-
testID="undefined.day_2023-
|
|
1510
|
+
testID="undefined.day_2023-08-12"
|
|
1512
1511
|
>
|
|
1513
1512
|
<Text
|
|
1514
1513
|
allowFontScaling={false}
|
|
@@ -1524,7 +1523,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1524
1523
|
]
|
|
1525
1524
|
}
|
|
1526
1525
|
>
|
|
1527
|
-
|
|
1526
|
+
12
|
|
1528
1527
|
</Text>
|
|
1529
1528
|
<View
|
|
1530
1529
|
style={
|
|
@@ -1551,7 +1550,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1551
1550
|
}
|
|
1552
1551
|
>
|
|
1553
1552
|
<View
|
|
1554
|
-
accessibilityLabel=" Zondag
|
|
1553
|
+
accessibilityLabel=" Zondag 13 Augustus 2023 "
|
|
1555
1554
|
accessibilityRole="button"
|
|
1556
1555
|
accessibilityState={
|
|
1557
1556
|
{
|
|
@@ -1589,7 +1588,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1589
1588
|
"width": 42,
|
|
1590
1589
|
}
|
|
1591
1590
|
}
|
|
1592
|
-
testID="undefined.day_2023-
|
|
1591
|
+
testID="undefined.day_2023-08-13"
|
|
1593
1592
|
>
|
|
1594
1593
|
<Text
|
|
1595
1594
|
allowFontScaling={false}
|
|
@@ -1605,7 +1604,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1605
1604
|
]
|
|
1606
1605
|
}
|
|
1607
1606
|
>
|
|
1608
|
-
|
|
1607
|
+
13
|
|
1609
1608
|
</Text>
|
|
1610
1609
|
<View
|
|
1611
1610
|
style={
|
|
@@ -1642,7 +1641,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1642
1641
|
}
|
|
1643
1642
|
>
|
|
1644
1643
|
<View
|
|
1645
|
-
accessibilityLabel=" Maandag
|
|
1644
|
+
accessibilityLabel=" Maandag 14 Augustus 2023 "
|
|
1646
1645
|
accessibilityRole="button"
|
|
1647
1646
|
accessibilityState={
|
|
1648
1647
|
{
|
|
@@ -1680,7 +1679,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1680
1679
|
"width": 42,
|
|
1681
1680
|
}
|
|
1682
1681
|
}
|
|
1683
|
-
testID="undefined.day_2023-
|
|
1682
|
+
testID="undefined.day_2023-08-14"
|
|
1684
1683
|
>
|
|
1685
1684
|
<Text
|
|
1686
1685
|
allowFontScaling={false}
|
|
@@ -1696,7 +1695,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1696
1695
|
]
|
|
1697
1696
|
}
|
|
1698
1697
|
>
|
|
1699
|
-
|
|
1698
|
+
14
|
|
1700
1699
|
</Text>
|
|
1701
1700
|
<View
|
|
1702
1701
|
style={
|
|
@@ -1723,7 +1722,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1723
1722
|
}
|
|
1724
1723
|
>
|
|
1725
1724
|
<View
|
|
1726
|
-
accessibilityLabel=" Dinsdag
|
|
1725
|
+
accessibilityLabel=" Dinsdag 15 Augustus 2023 "
|
|
1727
1726
|
accessibilityRole="button"
|
|
1728
1727
|
accessibilityState={
|
|
1729
1728
|
{
|
|
@@ -1761,7 +1760,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1761
1760
|
"width": 42,
|
|
1762
1761
|
}
|
|
1763
1762
|
}
|
|
1764
|
-
testID="undefined.day_2023-
|
|
1763
|
+
testID="undefined.day_2023-08-15"
|
|
1765
1764
|
>
|
|
1766
1765
|
<Text
|
|
1767
1766
|
allowFontScaling={false}
|
|
@@ -1777,7 +1776,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1777
1776
|
]
|
|
1778
1777
|
}
|
|
1779
1778
|
>
|
|
1780
|
-
|
|
1779
|
+
15
|
|
1781
1780
|
</Text>
|
|
1782
1781
|
<View
|
|
1783
1782
|
style={
|
|
@@ -1804,7 +1803,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1804
1803
|
}
|
|
1805
1804
|
>
|
|
1806
1805
|
<View
|
|
1807
|
-
accessibilityLabel=" Woensdag
|
|
1806
|
+
accessibilityLabel=" Woensdag 16 Augustus 2023 "
|
|
1808
1807
|
accessibilityRole="button"
|
|
1809
1808
|
accessibilityState={
|
|
1810
1809
|
{
|
|
@@ -1842,7 +1841,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1842
1841
|
"width": 42,
|
|
1843
1842
|
}
|
|
1844
1843
|
}
|
|
1845
|
-
testID="undefined.day_2023-
|
|
1844
|
+
testID="undefined.day_2023-08-16"
|
|
1846
1845
|
>
|
|
1847
1846
|
<Text
|
|
1848
1847
|
allowFontScaling={false}
|
|
@@ -1858,7 +1857,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1858
1857
|
]
|
|
1859
1858
|
}
|
|
1860
1859
|
>
|
|
1861
|
-
|
|
1860
|
+
16
|
|
1862
1861
|
</Text>
|
|
1863
1862
|
<View
|
|
1864
1863
|
style={
|
|
@@ -1885,7 +1884,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1885
1884
|
}
|
|
1886
1885
|
>
|
|
1887
1886
|
<View
|
|
1888
|
-
accessibilityLabel=" Donderdag
|
|
1887
|
+
accessibilityLabel=" Donderdag 17 Augustus 2023 "
|
|
1889
1888
|
accessibilityRole="button"
|
|
1890
1889
|
accessibilityState={
|
|
1891
1890
|
{
|
|
@@ -1923,7 +1922,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1923
1922
|
"width": 42,
|
|
1924
1923
|
}
|
|
1925
1924
|
}
|
|
1926
|
-
testID="undefined.day_2023-
|
|
1925
|
+
testID="undefined.day_2023-08-17"
|
|
1927
1926
|
>
|
|
1928
1927
|
<Text
|
|
1929
1928
|
allowFontScaling={false}
|
|
@@ -1939,7 +1938,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1939
1938
|
]
|
|
1940
1939
|
}
|
|
1941
1940
|
>
|
|
1942
|
-
|
|
1941
|
+
17
|
|
1943
1942
|
</Text>
|
|
1944
1943
|
<View
|
|
1945
1944
|
style={
|
|
@@ -1966,7 +1965,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1966
1965
|
}
|
|
1967
1966
|
>
|
|
1968
1967
|
<View
|
|
1969
|
-
accessibilityLabel=" Vrijdag
|
|
1968
|
+
accessibilityLabel=" Vrijdag 18 Augustus 2023 "
|
|
1970
1969
|
accessibilityRole="button"
|
|
1971
1970
|
accessibilityState={
|
|
1972
1971
|
{
|
|
@@ -2004,7 +2003,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2004
2003
|
"width": 42,
|
|
2005
2004
|
}
|
|
2006
2005
|
}
|
|
2007
|
-
testID="undefined.day_2023-
|
|
2006
|
+
testID="undefined.day_2023-08-18"
|
|
2008
2007
|
>
|
|
2009
2008
|
<Text
|
|
2010
2009
|
allowFontScaling={false}
|
|
@@ -2020,7 +2019,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2020
2019
|
]
|
|
2021
2020
|
}
|
|
2022
2021
|
>
|
|
2023
|
-
|
|
2022
|
+
18
|
|
2024
2023
|
</Text>
|
|
2025
2024
|
<View
|
|
2026
2025
|
style={
|
|
@@ -2047,7 +2046,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2047
2046
|
}
|
|
2048
2047
|
>
|
|
2049
2048
|
<View
|
|
2050
|
-
accessibilityLabel=" Zaterdag
|
|
2049
|
+
accessibilityLabel=" Zaterdag 19 Augustus 2023 "
|
|
2051
2050
|
accessibilityRole="button"
|
|
2052
2051
|
accessibilityState={
|
|
2053
2052
|
{
|
|
@@ -2085,7 +2084,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2085
2084
|
"width": 42,
|
|
2086
2085
|
}
|
|
2087
2086
|
}
|
|
2088
|
-
testID="undefined.day_2023-
|
|
2087
|
+
testID="undefined.day_2023-08-19"
|
|
2089
2088
|
>
|
|
2090
2089
|
<Text
|
|
2091
2090
|
allowFontScaling={false}
|
|
@@ -2101,7 +2100,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2101
2100
|
]
|
|
2102
2101
|
}
|
|
2103
2102
|
>
|
|
2104
|
-
|
|
2103
|
+
19
|
|
2105
2104
|
</Text>
|
|
2106
2105
|
<View
|
|
2107
2106
|
style={
|
|
@@ -2128,7 +2127,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2128
2127
|
}
|
|
2129
2128
|
>
|
|
2130
2129
|
<View
|
|
2131
|
-
accessibilityLabel=" Zondag
|
|
2130
|
+
accessibilityLabel=" Zondag 20 Augustus 2023 "
|
|
2132
2131
|
accessibilityRole="button"
|
|
2133
2132
|
accessibilityState={
|
|
2134
2133
|
{
|
|
@@ -2166,7 +2165,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2166
2165
|
"width": 42,
|
|
2167
2166
|
}
|
|
2168
2167
|
}
|
|
2169
|
-
testID="undefined.day_2023-
|
|
2168
|
+
testID="undefined.day_2023-08-20"
|
|
2170
2169
|
>
|
|
2171
2170
|
<Text
|
|
2172
2171
|
allowFontScaling={false}
|
|
@@ -2182,7 +2181,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2182
2181
|
]
|
|
2183
2182
|
}
|
|
2184
2183
|
>
|
|
2185
|
-
|
|
2184
|
+
20
|
|
2186
2185
|
</Text>
|
|
2187
2186
|
<View
|
|
2188
2187
|
style={
|
|
@@ -2219,7 +2218,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2219
2218
|
}
|
|
2220
2219
|
>
|
|
2221
2220
|
<View
|
|
2222
|
-
accessibilityLabel=" Maandag
|
|
2221
|
+
accessibilityLabel=" Maandag 21 Augustus 2023 "
|
|
2223
2222
|
accessibilityRole="button"
|
|
2224
2223
|
accessibilityState={
|
|
2225
2224
|
{
|
|
@@ -2257,7 +2256,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2257
2256
|
"width": 42,
|
|
2258
2257
|
}
|
|
2259
2258
|
}
|
|
2260
|
-
testID="undefined.day_2023-
|
|
2259
|
+
testID="undefined.day_2023-08-21"
|
|
2261
2260
|
>
|
|
2262
2261
|
<Text
|
|
2263
2262
|
allowFontScaling={false}
|
|
@@ -2273,7 +2272,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2273
2272
|
]
|
|
2274
2273
|
}
|
|
2275
2274
|
>
|
|
2276
|
-
|
|
2275
|
+
21
|
|
2277
2276
|
</Text>
|
|
2278
2277
|
<View
|
|
2279
2278
|
style={
|
|
@@ -2300,7 +2299,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2300
2299
|
}
|
|
2301
2300
|
>
|
|
2302
2301
|
<View
|
|
2303
|
-
accessibilityLabel="
|
|
2302
|
+
accessibilityLabel=" Dinsdag 22 Augustus 2023 "
|
|
2304
2303
|
accessibilityRole="button"
|
|
2305
2304
|
accessibilityState={
|
|
2306
2305
|
{
|
|
@@ -2332,17 +2331,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2332
2331
|
style={
|
|
2333
2332
|
{
|
|
2334
2333
|
"alignItems": "center",
|
|
2335
|
-
"borderColor": "#7B93DB",
|
|
2336
|
-
"borderRadius": 21,
|
|
2337
|
-
"borderStyle": "solid",
|
|
2338
|
-
"borderWidth": 1,
|
|
2339
2334
|
"height": 42,
|
|
2340
2335
|
"justifyContent": "center",
|
|
2341
2336
|
"opacity": 1,
|
|
2342
2337
|
"width": 42,
|
|
2343
2338
|
}
|
|
2344
2339
|
}
|
|
2345
|
-
testID="undefined.day_2023-
|
|
2340
|
+
testID="undefined.day_2023-08-22"
|
|
2346
2341
|
>
|
|
2347
2342
|
<Text
|
|
2348
2343
|
allowFontScaling={false}
|
|
@@ -2355,13 +2350,10 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2355
2350
|
"lineHeight": 22.4,
|
|
2356
2351
|
"marginTop": 4,
|
|
2357
2352
|
},
|
|
2358
|
-
{
|
|
2359
|
-
"color": "#7B93DB",
|
|
2360
|
-
},
|
|
2361
2353
|
]
|
|
2362
2354
|
}
|
|
2363
2355
|
>
|
|
2364
|
-
|
|
2356
|
+
22
|
|
2365
2357
|
</Text>
|
|
2366
2358
|
<View
|
|
2367
2359
|
style={
|
|
@@ -2388,7 +2380,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2388
2380
|
}
|
|
2389
2381
|
>
|
|
2390
2382
|
<View
|
|
2391
|
-
accessibilityLabel=" Woensdag
|
|
2383
|
+
accessibilityLabel=" Woensdag 23 Augustus 2023 "
|
|
2392
2384
|
accessibilityRole="button"
|
|
2393
2385
|
accessibilityState={
|
|
2394
2386
|
{
|
|
@@ -2426,7 +2418,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2426
2418
|
"width": 42,
|
|
2427
2419
|
}
|
|
2428
2420
|
}
|
|
2429
|
-
testID="undefined.day_2023-
|
|
2421
|
+
testID="undefined.day_2023-08-23"
|
|
2430
2422
|
>
|
|
2431
2423
|
<Text
|
|
2432
2424
|
allowFontScaling={false}
|
|
@@ -2442,7 +2434,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2442
2434
|
]
|
|
2443
2435
|
}
|
|
2444
2436
|
>
|
|
2445
|
-
|
|
2437
|
+
23
|
|
2446
2438
|
</Text>
|
|
2447
2439
|
<View
|
|
2448
2440
|
style={
|
|
@@ -2469,7 +2461,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2469
2461
|
}
|
|
2470
2462
|
>
|
|
2471
2463
|
<View
|
|
2472
|
-
accessibilityLabel=" Donderdag
|
|
2464
|
+
accessibilityLabel=" Donderdag 24 Augustus 2023 "
|
|
2473
2465
|
accessibilityRole="button"
|
|
2474
2466
|
accessibilityState={
|
|
2475
2467
|
{
|
|
@@ -2507,7 +2499,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2507
2499
|
"width": 42,
|
|
2508
2500
|
}
|
|
2509
2501
|
}
|
|
2510
|
-
testID="undefined.day_2023-
|
|
2502
|
+
testID="undefined.day_2023-08-24"
|
|
2511
2503
|
>
|
|
2512
2504
|
<Text
|
|
2513
2505
|
allowFontScaling={false}
|
|
@@ -2523,7 +2515,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2523
2515
|
]
|
|
2524
2516
|
}
|
|
2525
2517
|
>
|
|
2526
|
-
|
|
2518
|
+
24
|
|
2527
2519
|
</Text>
|
|
2528
2520
|
<View
|
|
2529
2521
|
style={
|
|
@@ -2550,7 +2542,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2550
2542
|
}
|
|
2551
2543
|
>
|
|
2552
2544
|
<View
|
|
2553
|
-
accessibilityLabel=" Vrijdag
|
|
2545
|
+
accessibilityLabel=" Vrijdag 25 Augustus 2023 "
|
|
2554
2546
|
accessibilityRole="button"
|
|
2555
2547
|
accessibilityState={
|
|
2556
2548
|
{
|
|
@@ -2588,7 +2580,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2588
2580
|
"width": 42,
|
|
2589
2581
|
}
|
|
2590
2582
|
}
|
|
2591
|
-
testID="undefined.day_2023-
|
|
2583
|
+
testID="undefined.day_2023-08-25"
|
|
2592
2584
|
>
|
|
2593
2585
|
<Text
|
|
2594
2586
|
allowFontScaling={false}
|
|
@@ -2604,7 +2596,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2604
2596
|
]
|
|
2605
2597
|
}
|
|
2606
2598
|
>
|
|
2607
|
-
|
|
2599
|
+
25
|
|
2608
2600
|
</Text>
|
|
2609
2601
|
<View
|
|
2610
2602
|
style={
|
|
@@ -2631,7 +2623,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2631
2623
|
}
|
|
2632
2624
|
>
|
|
2633
2625
|
<View
|
|
2634
|
-
accessibilityLabel=" Zaterdag
|
|
2626
|
+
accessibilityLabel=" Zaterdag 26 Augustus 2023 "
|
|
2635
2627
|
accessibilityRole="button"
|
|
2636
2628
|
accessibilityState={
|
|
2637
2629
|
{
|
|
@@ -2669,7 +2661,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2669
2661
|
"width": 42,
|
|
2670
2662
|
}
|
|
2671
2663
|
}
|
|
2672
|
-
testID="undefined.day_2023-
|
|
2664
|
+
testID="undefined.day_2023-08-26"
|
|
2673
2665
|
>
|
|
2674
2666
|
<Text
|
|
2675
2667
|
allowFontScaling={false}
|
|
@@ -2685,7 +2677,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2685
2677
|
]
|
|
2686
2678
|
}
|
|
2687
2679
|
>
|
|
2688
|
-
|
|
2680
|
+
26
|
|
2689
2681
|
</Text>
|
|
2690
2682
|
<View
|
|
2691
2683
|
style={
|
|
@@ -2712,7 +2704,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2712
2704
|
}
|
|
2713
2705
|
>
|
|
2714
2706
|
<View
|
|
2715
|
-
accessibilityLabel=" Zondag
|
|
2707
|
+
accessibilityLabel=" Zondag 27 Augustus 2023 "
|
|
2716
2708
|
accessibilityRole="button"
|
|
2717
2709
|
accessibilityState={
|
|
2718
2710
|
{
|
|
@@ -2750,7 +2742,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2750
2742
|
"width": 42,
|
|
2751
2743
|
}
|
|
2752
2744
|
}
|
|
2753
|
-
testID="undefined.day_2023-
|
|
2745
|
+
testID="undefined.day_2023-08-27"
|
|
2754
2746
|
>
|
|
2755
2747
|
<Text
|
|
2756
2748
|
allowFontScaling={false}
|
|
@@ -2766,7 +2758,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2766
2758
|
]
|
|
2767
2759
|
}
|
|
2768
2760
|
>
|
|
2769
|
-
|
|
2761
|
+
27
|
|
2770
2762
|
</Text>
|
|
2771
2763
|
<View
|
|
2772
2764
|
style={
|
|
@@ -2803,7 +2795,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2803
2795
|
}
|
|
2804
2796
|
>
|
|
2805
2797
|
<View
|
|
2806
|
-
accessibilityLabel=" Maandag
|
|
2798
|
+
accessibilityLabel=" Maandag 28 Augustus 2023 "
|
|
2807
2799
|
accessibilityRole="button"
|
|
2808
2800
|
accessibilityState={
|
|
2809
2801
|
{
|
|
@@ -2841,7 +2833,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2841
2833
|
"width": 42,
|
|
2842
2834
|
}
|
|
2843
2835
|
}
|
|
2844
|
-
testID="undefined.day_2023-
|
|
2836
|
+
testID="undefined.day_2023-08-28"
|
|
2845
2837
|
>
|
|
2846
2838
|
<Text
|
|
2847
2839
|
allowFontScaling={false}
|
|
@@ -2857,7 +2849,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2857
2849
|
]
|
|
2858
2850
|
}
|
|
2859
2851
|
>
|
|
2860
|
-
|
|
2852
|
+
28
|
|
2861
2853
|
</Text>
|
|
2862
2854
|
<View
|
|
2863
2855
|
style={
|
|
@@ -2884,7 +2876,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2884
2876
|
}
|
|
2885
2877
|
>
|
|
2886
2878
|
<View
|
|
2887
|
-
accessibilityLabel=" Dinsdag
|
|
2879
|
+
accessibilityLabel=" Dinsdag 29 Augustus 2023 "
|
|
2888
2880
|
accessibilityRole="button"
|
|
2889
2881
|
accessibilityState={
|
|
2890
2882
|
{
|
|
@@ -2922,7 +2914,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2922
2914
|
"width": 42,
|
|
2923
2915
|
}
|
|
2924
2916
|
}
|
|
2925
|
-
testID="undefined.day_2023-
|
|
2917
|
+
testID="undefined.day_2023-08-29"
|
|
2926
2918
|
>
|
|
2927
2919
|
<Text
|
|
2928
2920
|
allowFontScaling={false}
|
|
@@ -2938,7 +2930,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2938
2930
|
]
|
|
2939
2931
|
}
|
|
2940
2932
|
>
|
|
2941
|
-
|
|
2933
|
+
29
|
|
2942
2934
|
</Text>
|
|
2943
2935
|
<View
|
|
2944
2936
|
style={
|
|
@@ -2965,7 +2957,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2965
2957
|
}
|
|
2966
2958
|
>
|
|
2967
2959
|
<View
|
|
2968
|
-
accessibilityLabel=" Woensdag
|
|
2960
|
+
accessibilityLabel=" Woensdag 30 Augustus 2023 "
|
|
2969
2961
|
accessibilityRole="button"
|
|
2970
2962
|
accessibilityState={
|
|
2971
2963
|
{
|
|
@@ -3003,7 +2995,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3003
2995
|
"width": 42,
|
|
3004
2996
|
}
|
|
3005
2997
|
}
|
|
3006
|
-
testID="undefined.day_2023-
|
|
2998
|
+
testID="undefined.day_2023-08-30"
|
|
3007
2999
|
>
|
|
3008
3000
|
<Text
|
|
3009
3001
|
allowFontScaling={false}
|
|
@@ -3019,7 +3011,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3019
3011
|
]
|
|
3020
3012
|
}
|
|
3021
3013
|
>
|
|
3022
|
-
|
|
3014
|
+
30
|
|
3023
3015
|
</Text>
|
|
3024
3016
|
<View
|
|
3025
3017
|
style={
|
|
@@ -3046,7 +3038,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3046
3038
|
}
|
|
3047
3039
|
>
|
|
3048
3040
|
<View
|
|
3049
|
-
accessibilityLabel=" Donderdag
|
|
3041
|
+
accessibilityLabel=" Donderdag 31 Augustus 2023 "
|
|
3050
3042
|
accessibilityRole="button"
|
|
3051
3043
|
accessibilityState={
|
|
3052
3044
|
{
|
|
@@ -3084,7 +3076,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3084
3076
|
"width": 42,
|
|
3085
3077
|
}
|
|
3086
3078
|
}
|
|
3087
|
-
testID="undefined.day_2023-
|
|
3079
|
+
testID="undefined.day_2023-08-31"
|
|
3088
3080
|
>
|
|
3089
3081
|
<Text
|
|
3090
3082
|
allowFontScaling={false}
|
|
@@ -3100,7 +3092,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3100
3092
|
]
|
|
3101
3093
|
}
|
|
3102
3094
|
>
|
|
3103
|
-
|
|
3095
|
+
31
|
|
3104
3096
|
</Text>
|
|
3105
3097
|
<View
|
|
3106
3098
|
style={
|
|
@@ -3127,8 +3119,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3127
3119
|
}
|
|
3128
3120
|
>
|
|
3129
3121
|
<View
|
|
3130
|
-
accessibilityLabel=" Vrijdag
|
|
3131
|
-
accessibilityRole="button"
|
|
3122
|
+
accessibilityLabel=" Vrijdag 1 September 2023 "
|
|
3132
3123
|
accessibilityState={
|
|
3133
3124
|
{
|
|
3134
3125
|
"busy": undefined,
|
|
@@ -3165,7 +3156,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3165
3156
|
"width": 42,
|
|
3166
3157
|
}
|
|
3167
3158
|
}
|
|
3168
|
-
testID="undefined.day_2023-
|
|
3159
|
+
testID="undefined.day_2023-09-01"
|
|
3169
3160
|
>
|
|
3170
3161
|
<Text
|
|
3171
3162
|
allowFontScaling={false}
|
|
@@ -3178,10 +3169,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3178
3169
|
"lineHeight": 22.4,
|
|
3179
3170
|
"marginTop": 4,
|
|
3180
3171
|
},
|
|
3172
|
+
{
|
|
3173
|
+
"color": "#9AA5B1",
|
|
3174
|
+
},
|
|
3181
3175
|
]
|
|
3182
3176
|
}
|
|
3183
3177
|
>
|
|
3184
|
-
|
|
3178
|
+
1
|
|
3185
3179
|
</Text>
|
|
3186
3180
|
<View
|
|
3187
3181
|
style={
|
|
@@ -3208,8 +3202,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3208
3202
|
}
|
|
3209
3203
|
>
|
|
3210
3204
|
<View
|
|
3211
|
-
accessibilityLabel=" Zaterdag
|
|
3212
|
-
accessibilityRole="button"
|
|
3205
|
+
accessibilityLabel=" Zaterdag 2 September 2023 "
|
|
3213
3206
|
accessibilityState={
|
|
3214
3207
|
{
|
|
3215
3208
|
"busy": undefined,
|
|
@@ -3246,7 +3239,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3246
3239
|
"width": 42,
|
|
3247
3240
|
}
|
|
3248
3241
|
}
|
|
3249
|
-
testID="undefined.day_2023-
|
|
3242
|
+
testID="undefined.day_2023-09-02"
|
|
3250
3243
|
>
|
|
3251
3244
|
<Text
|
|
3252
3245
|
allowFontScaling={false}
|
|
@@ -3259,10 +3252,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3259
3252
|
"lineHeight": 22.4,
|
|
3260
3253
|
"marginTop": 4,
|
|
3261
3254
|
},
|
|
3255
|
+
{
|
|
3256
|
+
"color": "#9AA5B1",
|
|
3257
|
+
},
|
|
3262
3258
|
]
|
|
3263
3259
|
}
|
|
3264
3260
|
>
|
|
3265
|
-
|
|
3261
|
+
2
|
|
3266
3262
|
</Text>
|
|
3267
3263
|
<View
|
|
3268
3264
|
style={
|
|
@@ -3289,8 +3285,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3289
3285
|
}
|
|
3290
3286
|
>
|
|
3291
3287
|
<View
|
|
3292
|
-
accessibilityLabel=" Zondag
|
|
3293
|
-
accessibilityRole="button"
|
|
3288
|
+
accessibilityLabel=" Zondag 3 September 2023 "
|
|
3294
3289
|
accessibilityState={
|
|
3295
3290
|
{
|
|
3296
3291
|
"busy": undefined,
|
|
@@ -3327,7 +3322,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3327
3322
|
"width": 42,
|
|
3328
3323
|
}
|
|
3329
3324
|
}
|
|
3330
|
-
testID="undefined.day_2023-
|
|
3325
|
+
testID="undefined.day_2023-09-03"
|
|
3331
3326
|
>
|
|
3332
3327
|
<Text
|
|
3333
3328
|
allowFontScaling={false}
|
|
@@ -3340,10 +3335,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3340
3335
|
"lineHeight": 22.4,
|
|
3341
3336
|
"marginTop": 4,
|
|
3342
3337
|
},
|
|
3338
|
+
{
|
|
3339
|
+
"color": "#9AA5B1",
|
|
3340
|
+
},
|
|
3343
3341
|
]
|
|
3344
3342
|
}
|
|
3345
3343
|
>
|
|
3346
|
-
|
|
3344
|
+
3
|
|
3347
3345
|
</Text>
|
|
3348
3346
|
<View
|
|
3349
3347
|
style={
|
|
@@ -3362,1651 +3360,471 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3362
3360
|
</View>
|
|
3363
3361
|
</View>
|
|
3364
3362
|
</View>
|
|
3363
|
+
</View>
|
|
3364
|
+
</View>
|
|
3365
|
+
</View>
|
|
3366
|
+
`;
|
|
3367
|
+
|
|
3368
|
+
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`] = `
|
|
3369
|
+
<View
|
|
3370
|
+
onMoveShouldSetResponder={[Function]}
|
|
3371
|
+
onMoveShouldSetResponderCapture={[Function]}
|
|
3372
|
+
onResponderEnd={[Function]}
|
|
3373
|
+
onResponderGrant={[Function]}
|
|
3374
|
+
onResponderMove={[Function]}
|
|
3375
|
+
onResponderReject={[Function]}
|
|
3376
|
+
onResponderRelease={[Function]}
|
|
3377
|
+
onResponderStart={[Function]}
|
|
3378
|
+
onResponderTerminate={[Function]}
|
|
3379
|
+
onResponderTerminationRequest={[Function]}
|
|
3380
|
+
onStartShouldSetResponder={[Function]}
|
|
3381
|
+
onStartShouldSetResponderCapture={[Function]}
|
|
3382
|
+
onSwipe={[Function]}
|
|
3383
|
+
>
|
|
3384
|
+
<View
|
|
3385
|
+
style={
|
|
3386
|
+
[
|
|
3387
|
+
{
|
|
3388
|
+
"backgroundColor": "white",
|
|
3389
|
+
"paddingLeft": 5,
|
|
3390
|
+
"paddingRight": 5,
|
|
3391
|
+
},
|
|
3392
|
+
undefined,
|
|
3393
|
+
]
|
|
3394
|
+
}
|
|
3395
|
+
>
|
|
3396
|
+
<View
|
|
3397
|
+
accessibilityActions={
|
|
3398
|
+
[
|
|
3399
|
+
{
|
|
3400
|
+
"label": "increment",
|
|
3401
|
+
"name": "increment",
|
|
3402
|
+
},
|
|
3403
|
+
{
|
|
3404
|
+
"label": "decrement",
|
|
3405
|
+
"name": "decrement",
|
|
3406
|
+
},
|
|
3407
|
+
]
|
|
3408
|
+
}
|
|
3409
|
+
accessibilityRole="adjustable"
|
|
3410
|
+
accessible={true}
|
|
3411
|
+
onAccessibilityAction={[Function]}
|
|
3412
|
+
testID="undefined.header"
|
|
3413
|
+
>
|
|
3365
3414
|
<View
|
|
3366
3415
|
style={
|
|
3367
|
-
|
|
3368
|
-
|
|
3369
|
-
|
|
3370
|
-
|
|
3371
|
-
|
|
3416
|
+
[
|
|
3417
|
+
{
|
|
3418
|
+
"alignItems": "center",
|
|
3419
|
+
"flexDirection": "row",
|
|
3420
|
+
"justifyContent": "space-between",
|
|
3421
|
+
"marginTop": 6,
|
|
3422
|
+
"paddingLeft": 10,
|
|
3423
|
+
"paddingRight": 10,
|
|
3424
|
+
},
|
|
3425
|
+
undefined,
|
|
3426
|
+
]
|
|
3372
3427
|
}
|
|
3373
3428
|
>
|
|
3374
3429
|
<View
|
|
3375
|
-
|
|
3430
|
+
accessibilityState={
|
|
3376
3431
|
{
|
|
3377
|
-
"
|
|
3378
|
-
"
|
|
3432
|
+
"busy": undefined,
|
|
3433
|
+
"checked": undefined,
|
|
3434
|
+
"disabled": undefined,
|
|
3435
|
+
"expanded": undefined,
|
|
3436
|
+
"selected": undefined,
|
|
3379
3437
|
}
|
|
3380
3438
|
}
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
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
|
-
}
|
|
3439
|
+
accessibilityValue={
|
|
3440
|
+
{
|
|
3441
|
+
"max": undefined,
|
|
3442
|
+
"min": undefined,
|
|
3443
|
+
"now": undefined,
|
|
3444
|
+
"text": undefined,
|
|
3401
3445
|
}
|
|
3402
|
-
|
|
3403
|
-
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
style={
|
|
3413
|
-
{
|
|
3414
|
-
"alignItems": "center",
|
|
3415
|
-
"height": 42,
|
|
3416
|
-
"justifyContent": "center",
|
|
3417
|
-
"opacity": 1,
|
|
3418
|
-
"width": 42,
|
|
3419
|
-
}
|
|
3446
|
+
}
|
|
3447
|
+
accessible={true}
|
|
3448
|
+
collapsable={false}
|
|
3449
|
+
focusable={true}
|
|
3450
|
+
hitSlop={
|
|
3451
|
+
{
|
|
3452
|
+
"bottom": 20,
|
|
3453
|
+
"left": 20,
|
|
3454
|
+
"right": 20,
|
|
3455
|
+
"top": 20,
|
|
3420
3456
|
}
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
"fontFamily": "SourceSansPro",
|
|
3430
|
-
"fontSize": 16,
|
|
3431
|
-
"lineHeight": 22.4,
|
|
3432
|
-
"marginTop": 4,
|
|
3433
|
-
},
|
|
3434
|
-
]
|
|
3435
|
-
}
|
|
3436
|
-
>
|
|
3437
|
-
31
|
|
3438
|
-
</Text>
|
|
3439
|
-
<View
|
|
3440
|
-
style={
|
|
3441
|
-
[
|
|
3442
|
-
{
|
|
3443
|
-
"borderRadius": 2,
|
|
3444
|
-
"height": 4,
|
|
3445
|
-
"marginHorizontal": 1,
|
|
3446
|
-
"marginTop": 1,
|
|
3447
|
-
"opacity": 0,
|
|
3448
|
-
"width": 4,
|
|
3449
|
-
},
|
|
3450
|
-
]
|
|
3451
|
-
}
|
|
3452
|
-
/>
|
|
3453
|
-
</View>
|
|
3454
|
-
</View>
|
|
3455
|
-
<View
|
|
3457
|
+
}
|
|
3458
|
+
onClick={[Function]}
|
|
3459
|
+
onResponderGrant={[Function]}
|
|
3460
|
+
onResponderMove={[Function]}
|
|
3461
|
+
onResponderRelease={[Function]}
|
|
3462
|
+
onResponderTerminate={[Function]}
|
|
3463
|
+
onResponderTerminationRequest={[Function]}
|
|
3464
|
+
onStartShouldSetResponder={[Function]}
|
|
3456
3465
|
style={
|
|
3457
3466
|
{
|
|
3458
|
-
"
|
|
3459
|
-
"
|
|
3467
|
+
"opacity": 1,
|
|
3468
|
+
"padding": 10,
|
|
3460
3469
|
}
|
|
3461
3470
|
}
|
|
3471
|
+
testID="undefined.header.leftArrow"
|
|
3462
3472
|
>
|
|
3463
|
-
<
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3473
|
-
}
|
|
3474
|
-
accessibilityValue={
|
|
3475
|
-
{
|
|
3476
|
-
"max": undefined,
|
|
3477
|
-
"min": undefined,
|
|
3478
|
-
"now": undefined,
|
|
3479
|
-
"text": undefined,
|
|
3480
|
-
}
|
|
3481
|
-
}
|
|
3482
|
-
accessible={true}
|
|
3483
|
-
collapsable={false}
|
|
3484
|
-
focusable={true}
|
|
3485
|
-
onClick={[Function]}
|
|
3486
|
-
onResponderGrant={[Function]}
|
|
3487
|
-
onResponderMove={[Function]}
|
|
3488
|
-
onResponderRelease={[Function]}
|
|
3489
|
-
onResponderTerminate={[Function]}
|
|
3490
|
-
onResponderTerminationRequest={[Function]}
|
|
3491
|
-
onStartShouldSetResponder={[Function]}
|
|
3473
|
+
<RNSVGSvgView
|
|
3474
|
+
align="xMidYMid"
|
|
3475
|
+
bbHeight="24"
|
|
3476
|
+
bbWidth="24"
|
|
3477
|
+
fill="none"
|
|
3478
|
+
focusable={false}
|
|
3479
|
+
height={24}
|
|
3480
|
+
meetOrSlice={0}
|
|
3481
|
+
minX={0}
|
|
3482
|
+
minY={0}
|
|
3492
3483
|
style={
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3484
|
+
[
|
|
3485
|
+
{
|
|
3486
|
+
"backgroundColor": "transparent",
|
|
3487
|
+
"borderWidth": 0,
|
|
3488
|
+
},
|
|
3489
|
+
{
|
|
3490
|
+
"flex": 0,
|
|
3491
|
+
"height": 24,
|
|
3492
|
+
"width": 24,
|
|
3493
|
+
},
|
|
3494
|
+
]
|
|
3500
3495
|
}
|
|
3501
|
-
|
|
3496
|
+
vbHeight={19}
|
|
3497
|
+
vbWidth={10}
|
|
3498
|
+
width={24}
|
|
3502
3499
|
>
|
|
3503
|
-
<
|
|
3504
|
-
|
|
3505
|
-
|
|
3500
|
+
<RNSVGGroup
|
|
3501
|
+
fill={null}
|
|
3502
|
+
propList={
|
|
3506
3503
|
[
|
|
3507
|
-
|
|
3508
|
-
"color": "#1F2933",
|
|
3509
|
-
"fontFamily": "SourceSansPro",
|
|
3510
|
-
"fontSize": 16,
|
|
3511
|
-
"lineHeight": 22.4,
|
|
3512
|
-
"marginTop": 4,
|
|
3513
|
-
},
|
|
3514
|
-
{
|
|
3515
|
-
"color": "#9AA5B1",
|
|
3516
|
-
},
|
|
3504
|
+
"fill",
|
|
3517
3505
|
]
|
|
3518
3506
|
}
|
|
3519
3507
|
>
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3508
|
+
<RNSVGPath
|
|
3509
|
+
d="M8.875 17.375L1 9.5L8.875 1.625"
|
|
3510
|
+
propList={
|
|
3511
|
+
[
|
|
3512
|
+
"stroke",
|
|
3513
|
+
"strokeWidth",
|
|
3514
|
+
"strokeLinecap",
|
|
3515
|
+
"strokeLinejoin",
|
|
3516
|
+
]
|
|
3517
|
+
}
|
|
3518
|
+
stroke={
|
|
3525
3519
|
{
|
|
3526
|
-
"
|
|
3527
|
-
"
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
</View>
|
|
3520
|
+
"payload": 4279837036,
|
|
3521
|
+
"type": 0,
|
|
3522
|
+
}
|
|
3523
|
+
}
|
|
3524
|
+
strokeLinecap={1}
|
|
3525
|
+
strokeLinejoin={1}
|
|
3526
|
+
strokeWidth="2"
|
|
3527
|
+
/>
|
|
3528
|
+
</RNSVGGroup>
|
|
3529
|
+
</RNSVGSvgView>
|
|
3537
3530
|
</View>
|
|
3538
3531
|
<View
|
|
3539
3532
|
style={
|
|
3540
3533
|
{
|
|
3541
3534
|
"alignItems": "center",
|
|
3542
|
-
"
|
|
3535
|
+
"backgroundColor": "#19216C",
|
|
3536
|
+
"borderRadius": 32,
|
|
3537
|
+
"flexDirection": "row",
|
|
3538
|
+
"height": 32,
|
|
3539
|
+
"justifyContent": "center",
|
|
3540
|
+
"paddingBottom": 4,
|
|
3541
|
+
"paddingLeft": 16,
|
|
3542
|
+
"paddingRight": 16,
|
|
3543
|
+
"paddingTop": 4,
|
|
3543
3544
|
}
|
|
3544
3545
|
}
|
|
3545
3546
|
>
|
|
3546
|
-
<
|
|
3547
|
-
|
|
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]}
|
|
3547
|
+
<Text
|
|
3548
|
+
allowFontScaling={false}
|
|
3575
3549
|
style={
|
|
3576
3550
|
{
|
|
3577
|
-
"
|
|
3578
|
-
"
|
|
3579
|
-
"
|
|
3580
|
-
"
|
|
3581
|
-
"
|
|
3551
|
+
"color": "#FFFFFF",
|
|
3552
|
+
"fontFamily": "SourceSansPro",
|
|
3553
|
+
"fontSize": 16,
|
|
3554
|
+
"lineHeight": 22.4,
|
|
3555
|
+
"margin": 0,
|
|
3582
3556
|
}
|
|
3583
3557
|
}
|
|
3584
|
-
testID="undefined.
|
|
3558
|
+
testID="undefined.header.title"
|
|
3585
3559
|
>
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
style={
|
|
3589
|
-
[
|
|
3590
|
-
{
|
|
3591
|
-
"color": "#1F2933",
|
|
3592
|
-
"fontFamily": "SourceSansPro",
|
|
3593
|
-
"fontSize": 16,
|
|
3594
|
-
"lineHeight": 22.4,
|
|
3595
|
-
"marginTop": 4,
|
|
3596
|
-
},
|
|
3597
|
-
{
|
|
3598
|
-
"color": "#9AA5B1",
|
|
3599
|
-
},
|
|
3600
|
-
]
|
|
3601
|
-
}
|
|
3602
|
-
>
|
|
3603
|
-
2
|
|
3604
|
-
</Text>
|
|
3605
|
-
<View
|
|
3606
|
-
style={
|
|
3607
|
-
[
|
|
3608
|
-
{
|
|
3609
|
-
"borderRadius": 2,
|
|
3610
|
-
"height": 4,
|
|
3611
|
-
"marginHorizontal": 1,
|
|
3612
|
-
"marginTop": 1,
|
|
3613
|
-
"opacity": 0,
|
|
3614
|
-
"width": 4,
|
|
3615
|
-
},
|
|
3616
|
-
]
|
|
3617
|
-
}
|
|
3618
|
-
/>
|
|
3619
|
-
</View>
|
|
3560
|
+
Augustus 2023
|
|
3561
|
+
</Text>
|
|
3620
3562
|
</View>
|
|
3621
3563
|
<View
|
|
3622
|
-
|
|
3564
|
+
accessibilityState={
|
|
3623
3565
|
{
|
|
3624
|
-
"
|
|
3625
|
-
"
|
|
3566
|
+
"busy": undefined,
|
|
3567
|
+
"checked": undefined,
|
|
3568
|
+
"disabled": undefined,
|
|
3569
|
+
"expanded": undefined,
|
|
3570
|
+
"selected": undefined,
|
|
3626
3571
|
}
|
|
3627
3572
|
}
|
|
3628
|
-
|
|
3629
|
-
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
|
|
3633
|
-
|
|
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
|
-
}
|
|
3573
|
+
accessibilityValue={
|
|
3574
|
+
{
|
|
3575
|
+
"max": undefined,
|
|
3576
|
+
"min": undefined,
|
|
3577
|
+
"now": undefined,
|
|
3578
|
+
"text": undefined,
|
|
3647
3579
|
}
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3658
|
-
style={
|
|
3659
|
-
{
|
|
3660
|
-
"alignItems": "center",
|
|
3661
|
-
"height": 42,
|
|
3662
|
-
"justifyContent": "center",
|
|
3663
|
-
"opacity": 1,
|
|
3664
|
-
"width": 42,
|
|
3665
|
-
}
|
|
3580
|
+
}
|
|
3581
|
+
accessible={true}
|
|
3582
|
+
collapsable={false}
|
|
3583
|
+
focusable={true}
|
|
3584
|
+
hitSlop={
|
|
3585
|
+
{
|
|
3586
|
+
"bottom": 20,
|
|
3587
|
+
"left": 20,
|
|
3588
|
+
"right": 20,
|
|
3589
|
+
"top": 20,
|
|
3666
3590
|
}
|
|
3667
|
-
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
|
|
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
|
|
3591
|
+
}
|
|
3592
|
+
onClick={[Function]}
|
|
3593
|
+
onResponderGrant={[Function]}
|
|
3594
|
+
onResponderMove={[Function]}
|
|
3595
|
+
onResponderRelease={[Function]}
|
|
3596
|
+
onResponderTerminate={[Function]}
|
|
3597
|
+
onResponderTerminationRequest={[Function]}
|
|
3598
|
+
onStartShouldSetResponder={[Function]}
|
|
3705
3599
|
style={
|
|
3706
3600
|
{
|
|
3707
|
-
"
|
|
3708
|
-
"
|
|
3601
|
+
"opacity": 1,
|
|
3602
|
+
"padding": 10,
|
|
3709
3603
|
}
|
|
3710
3604
|
}
|
|
3605
|
+
testID="undefined.header.rightArrow"
|
|
3711
3606
|
>
|
|
3712
|
-
<
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
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]}
|
|
3607
|
+
<RNSVGSvgView
|
|
3608
|
+
align="xMidYMid"
|
|
3609
|
+
bbHeight="24"
|
|
3610
|
+
bbWidth="24"
|
|
3611
|
+
fill="none"
|
|
3612
|
+
focusable={false}
|
|
3613
|
+
height={24}
|
|
3614
|
+
meetOrSlice={0}
|
|
3615
|
+
minX={0}
|
|
3616
|
+
minY={0}
|
|
3741
3617
|
style={
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3618
|
+
[
|
|
3619
|
+
{
|
|
3620
|
+
"backgroundColor": "transparent",
|
|
3621
|
+
"borderWidth": 0,
|
|
3622
|
+
},
|
|
3623
|
+
{
|
|
3624
|
+
"flex": 0,
|
|
3625
|
+
"height": 24,
|
|
3626
|
+
"width": 24,
|
|
3627
|
+
},
|
|
3628
|
+
]
|
|
3749
3629
|
}
|
|
3750
|
-
|
|
3630
|
+
vbHeight={19}
|
|
3631
|
+
vbWidth={11}
|
|
3632
|
+
width={24}
|
|
3751
3633
|
>
|
|
3752
|
-
<
|
|
3753
|
-
|
|
3754
|
-
|
|
3634
|
+
<RNSVGGroup
|
|
3635
|
+
fill={null}
|
|
3636
|
+
propList={
|
|
3755
3637
|
[
|
|
3756
|
-
|
|
3757
|
-
"color": "#1F2933",
|
|
3758
|
-
"fontFamily": "SourceSansPro",
|
|
3759
|
-
"fontSize": 16,
|
|
3760
|
-
"lineHeight": 22.4,
|
|
3761
|
-
"marginTop": 4,
|
|
3762
|
-
},
|
|
3763
|
-
{
|
|
3764
|
-
"color": "#9AA5B1",
|
|
3765
|
-
},
|
|
3638
|
+
"fill",
|
|
3766
3639
|
]
|
|
3767
3640
|
}
|
|
3768
3641
|
>
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3642
|
+
<RNSVGPath
|
|
3643
|
+
d="M1.75 1.625L9.33333 9.5L1.75 17.375"
|
|
3644
|
+
propList={
|
|
3645
|
+
[
|
|
3646
|
+
"stroke",
|
|
3647
|
+
"strokeWidth",
|
|
3648
|
+
"strokeLinecap",
|
|
3649
|
+
"strokeLinejoin",
|
|
3650
|
+
]
|
|
3651
|
+
}
|
|
3652
|
+
stroke={
|
|
3774
3653
|
{
|
|
3775
|
-
"
|
|
3776
|
-
"
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3783
|
-
|
|
3784
|
-
|
|
3785
|
-
</View>
|
|
3654
|
+
"payload": 4279837036,
|
|
3655
|
+
"type": 0,
|
|
3656
|
+
}
|
|
3657
|
+
}
|
|
3658
|
+
strokeLinecap={1}
|
|
3659
|
+
strokeLinejoin={1}
|
|
3660
|
+
strokeWidth="2"
|
|
3661
|
+
/>
|
|
3662
|
+
</RNSVGGroup>
|
|
3663
|
+
</RNSVGSvgView>
|
|
3786
3664
|
</View>
|
|
3787
|
-
|
|
3788
|
-
|
|
3665
|
+
</View>
|
|
3666
|
+
<View
|
|
3667
|
+
style={
|
|
3668
|
+
[
|
|
3789
3669
|
{
|
|
3790
|
-
"
|
|
3791
|
-
"
|
|
3792
|
-
|
|
3670
|
+
"flexDirection": "row",
|
|
3671
|
+
"justifyContent": "space-around",
|
|
3672
|
+
"marginTop": 32,
|
|
3673
|
+
},
|
|
3674
|
+
undefined,
|
|
3675
|
+
]
|
|
3676
|
+
}
|
|
3677
|
+
testID="undefined.header.dayNames"
|
|
3678
|
+
>
|
|
3679
|
+
<Text
|
|
3680
|
+
accessibilityLabel=""
|
|
3681
|
+
allowFontScaling={false}
|
|
3682
|
+
numberOfLines={1}
|
|
3683
|
+
style={
|
|
3684
|
+
[
|
|
3685
|
+
{
|
|
3686
|
+
"color": "#1F2933",
|
|
3687
|
+
"fontFamily": "SourceSansProBold",
|
|
3688
|
+
"fontSize": 16,
|
|
3689
|
+
"lineHeight": 22.4,
|
|
3690
|
+
"marginBottom": 24,
|
|
3691
|
+
"textAlign": "center",
|
|
3692
|
+
"width": 32,
|
|
3693
|
+
},
|
|
3694
|
+
]
|
|
3793
3695
|
}
|
|
3794
3696
|
>
|
|
3795
|
-
|
|
3796
|
-
|
|
3797
|
-
|
|
3798
|
-
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
"disabled": false,
|
|
3802
|
-
"expanded": undefined,
|
|
3803
|
-
"selected": undefined,
|
|
3804
|
-
}
|
|
3805
|
-
}
|
|
3806
|
-
accessibilityValue={
|
|
3807
|
-
{
|
|
3808
|
-
"max": undefined,
|
|
3809
|
-
"min": undefined,
|
|
3810
|
-
"now": undefined,
|
|
3811
|
-
"text": undefined,
|
|
3812
|
-
}
|
|
3813
|
-
}
|
|
3814
|
-
accessible={true}
|
|
3815
|
-
collapsable={false}
|
|
3816
|
-
focusable={true}
|
|
3817
|
-
onClick={[Function]}
|
|
3818
|
-
onResponderGrant={[Function]}
|
|
3819
|
-
onResponderMove={[Function]}
|
|
3820
|
-
onResponderRelease={[Function]}
|
|
3821
|
-
onResponderTerminate={[Function]}
|
|
3822
|
-
onResponderTerminationRequest={[Function]}
|
|
3823
|
-
onStartShouldSetResponder={[Function]}
|
|
3824
|
-
style={
|
|
3825
|
-
{
|
|
3826
|
-
"alignItems": "center",
|
|
3827
|
-
"height": 42,
|
|
3828
|
-
"justifyContent": "center",
|
|
3829
|
-
"opacity": 1,
|
|
3830
|
-
"width": 42,
|
|
3831
|
-
}
|
|
3832
|
-
}
|
|
3833
|
-
testID="undefined.day_2023-08-05"
|
|
3834
|
-
>
|
|
3835
|
-
<Text
|
|
3836
|
-
allowFontScaling={false}
|
|
3837
|
-
style={
|
|
3838
|
-
[
|
|
3839
|
-
{
|
|
3840
|
-
"color": "#1F2933",
|
|
3841
|
-
"fontFamily": "SourceSansPro",
|
|
3842
|
-
"fontSize": 16,
|
|
3843
|
-
"lineHeight": 22.4,
|
|
3844
|
-
"marginTop": 4,
|
|
3845
|
-
},
|
|
3846
|
-
{
|
|
3847
|
-
"color": "#9AA5B1",
|
|
3848
|
-
},
|
|
3849
|
-
]
|
|
3850
|
-
}
|
|
3851
|
-
>
|
|
3852
|
-
5
|
|
3853
|
-
</Text>
|
|
3854
|
-
<View
|
|
3855
|
-
style={
|
|
3856
|
-
[
|
|
3857
|
-
{
|
|
3858
|
-
"borderRadius": 2,
|
|
3859
|
-
"height": 4,
|
|
3860
|
-
"marginHorizontal": 1,
|
|
3861
|
-
"marginTop": 1,
|
|
3862
|
-
"opacity": 0,
|
|
3863
|
-
"width": 4,
|
|
3864
|
-
},
|
|
3865
|
-
]
|
|
3866
|
-
}
|
|
3867
|
-
/>
|
|
3868
|
-
</View>
|
|
3869
|
-
</View>
|
|
3870
|
-
<View
|
|
3871
|
-
style={
|
|
3872
|
-
{
|
|
3873
|
-
"alignItems": "center",
|
|
3874
|
-
"flex": 1,
|
|
3875
|
-
}
|
|
3876
|
-
}
|
|
3877
|
-
>
|
|
3878
|
-
<View
|
|
3879
|
-
accessibilityLabel=" Zondag 6 Augustus 2023 "
|
|
3880
|
-
accessibilityState={
|
|
3881
|
-
{
|
|
3882
|
-
"busy": undefined,
|
|
3883
|
-
"checked": undefined,
|
|
3884
|
-
"disabled": false,
|
|
3885
|
-
"expanded": undefined,
|
|
3886
|
-
"selected": undefined,
|
|
3887
|
-
}
|
|
3888
|
-
}
|
|
3889
|
-
accessibilityValue={
|
|
3890
|
-
{
|
|
3891
|
-
"max": undefined,
|
|
3892
|
-
"min": undefined,
|
|
3893
|
-
"now": undefined,
|
|
3894
|
-
"text": undefined,
|
|
3895
|
-
}
|
|
3896
|
-
}
|
|
3897
|
-
accessible={true}
|
|
3898
|
-
collapsable={false}
|
|
3899
|
-
focusable={true}
|
|
3900
|
-
onClick={[Function]}
|
|
3901
|
-
onResponderGrant={[Function]}
|
|
3902
|
-
onResponderMove={[Function]}
|
|
3903
|
-
onResponderRelease={[Function]}
|
|
3904
|
-
onResponderTerminate={[Function]}
|
|
3905
|
-
onResponderTerminationRequest={[Function]}
|
|
3906
|
-
onStartShouldSetResponder={[Function]}
|
|
3907
|
-
style={
|
|
3908
|
-
{
|
|
3909
|
-
"alignItems": "center",
|
|
3910
|
-
"height": 42,
|
|
3911
|
-
"justifyContent": "center",
|
|
3912
|
-
"opacity": 1,
|
|
3913
|
-
"width": 42,
|
|
3914
|
-
}
|
|
3915
|
-
}
|
|
3916
|
-
testID="undefined.day_2023-08-06"
|
|
3917
|
-
>
|
|
3918
|
-
<Text
|
|
3919
|
-
allowFontScaling={false}
|
|
3920
|
-
style={
|
|
3921
|
-
[
|
|
3922
|
-
{
|
|
3923
|
-
"color": "#1F2933",
|
|
3924
|
-
"fontFamily": "SourceSansPro",
|
|
3925
|
-
"fontSize": 16,
|
|
3926
|
-
"lineHeight": 22.4,
|
|
3927
|
-
"marginTop": 4,
|
|
3928
|
-
},
|
|
3929
|
-
{
|
|
3930
|
-
"color": "#9AA5B1",
|
|
3931
|
-
},
|
|
3932
|
-
]
|
|
3933
|
-
}
|
|
3934
|
-
>
|
|
3935
|
-
6
|
|
3936
|
-
</Text>
|
|
3937
|
-
<View
|
|
3938
|
-
style={
|
|
3939
|
-
[
|
|
3940
|
-
{
|
|
3941
|
-
"borderRadius": 2,
|
|
3942
|
-
"height": 4,
|
|
3943
|
-
"marginHorizontal": 1,
|
|
3944
|
-
"marginTop": 1,
|
|
3945
|
-
"opacity": 0,
|
|
3946
|
-
"width": 4,
|
|
3947
|
-
},
|
|
3948
|
-
]
|
|
3949
|
-
}
|
|
3950
|
-
/>
|
|
3951
|
-
</View>
|
|
3952
|
-
</View>
|
|
3953
|
-
</View>
|
|
3954
|
-
</View>
|
|
3955
|
-
</View>
|
|
3956
|
-
</View>
|
|
3957
|
-
`;
|
|
3958
|
-
|
|
3959
|
-
exports[`Test for the calendar component renders a calendar where you can select a day, and give a starting-, end-date for the calendar 1`] = `
|
|
3960
|
-
<View
|
|
3961
|
-
onMoveShouldSetResponder={[Function]}
|
|
3962
|
-
onMoveShouldSetResponderCapture={[Function]}
|
|
3963
|
-
onResponderEnd={[Function]}
|
|
3964
|
-
onResponderGrant={[Function]}
|
|
3965
|
-
onResponderMove={[Function]}
|
|
3966
|
-
onResponderReject={[Function]}
|
|
3967
|
-
onResponderRelease={[Function]}
|
|
3968
|
-
onResponderStart={[Function]}
|
|
3969
|
-
onResponderTerminate={[Function]}
|
|
3970
|
-
onResponderTerminationRequest={[Function]}
|
|
3971
|
-
onStartShouldSetResponder={[Function]}
|
|
3972
|
-
onStartShouldSetResponderCapture={[Function]}
|
|
3973
|
-
onSwipe={[Function]}
|
|
3974
|
-
>
|
|
3975
|
-
<View
|
|
3976
|
-
style={
|
|
3977
|
-
[
|
|
3978
|
-
{
|
|
3979
|
-
"backgroundColor": "white",
|
|
3980
|
-
"paddingLeft": 5,
|
|
3981
|
-
"paddingRight": 5,
|
|
3982
|
-
},
|
|
3983
|
-
undefined,
|
|
3984
|
-
]
|
|
3985
|
-
}
|
|
3986
|
-
>
|
|
3987
|
-
<View
|
|
3988
|
-
accessibilityActions={
|
|
3989
|
-
[
|
|
3990
|
-
{
|
|
3991
|
-
"label": "increment",
|
|
3992
|
-
"name": "increment",
|
|
3993
|
-
},
|
|
3994
|
-
{
|
|
3995
|
-
"label": "decrement",
|
|
3996
|
-
"name": "decrement",
|
|
3997
|
-
},
|
|
3998
|
-
]
|
|
3999
|
-
}
|
|
4000
|
-
accessibilityRole="adjustable"
|
|
4001
|
-
accessible={true}
|
|
4002
|
-
onAccessibilityAction={[Function]}
|
|
4003
|
-
testID="undefined.header"
|
|
4004
|
-
>
|
|
4005
|
-
<View
|
|
4006
|
-
style={
|
|
4007
|
-
[
|
|
4008
|
-
{
|
|
4009
|
-
"alignItems": "center",
|
|
4010
|
-
"flexDirection": "row",
|
|
4011
|
-
"justifyContent": "space-between",
|
|
4012
|
-
"marginTop": 6,
|
|
4013
|
-
"paddingLeft": 10,
|
|
4014
|
-
"paddingRight": 10,
|
|
4015
|
-
},
|
|
4016
|
-
undefined,
|
|
4017
|
-
]
|
|
4018
|
-
}
|
|
4019
|
-
>
|
|
4020
|
-
<View
|
|
4021
|
-
accessibilityState={
|
|
4022
|
-
{
|
|
4023
|
-
"busy": undefined,
|
|
4024
|
-
"checked": undefined,
|
|
4025
|
-
"disabled": undefined,
|
|
4026
|
-
"expanded": undefined,
|
|
4027
|
-
"selected": undefined,
|
|
4028
|
-
}
|
|
4029
|
-
}
|
|
4030
|
-
accessibilityValue={
|
|
4031
|
-
{
|
|
4032
|
-
"max": undefined,
|
|
4033
|
-
"min": undefined,
|
|
4034
|
-
"now": undefined,
|
|
4035
|
-
"text": undefined,
|
|
4036
|
-
}
|
|
4037
|
-
}
|
|
4038
|
-
accessible={true}
|
|
4039
|
-
collapsable={false}
|
|
4040
|
-
focusable={true}
|
|
4041
|
-
hitSlop={
|
|
4042
|
-
{
|
|
4043
|
-
"bottom": 20,
|
|
4044
|
-
"left": 20,
|
|
4045
|
-
"right": 20,
|
|
4046
|
-
"top": 20,
|
|
4047
|
-
}
|
|
4048
|
-
}
|
|
4049
|
-
onClick={[Function]}
|
|
4050
|
-
onResponderGrant={[Function]}
|
|
4051
|
-
onResponderMove={[Function]}
|
|
4052
|
-
onResponderRelease={[Function]}
|
|
4053
|
-
onResponderTerminate={[Function]}
|
|
4054
|
-
onResponderTerminationRequest={[Function]}
|
|
4055
|
-
onStartShouldSetResponder={[Function]}
|
|
4056
|
-
style={
|
|
4057
|
-
{
|
|
4058
|
-
"opacity": 1,
|
|
4059
|
-
"padding": 10,
|
|
4060
|
-
}
|
|
4061
|
-
}
|
|
4062
|
-
testID="undefined.header.leftArrow"
|
|
4063
|
-
>
|
|
4064
|
-
<RNSVGSvgView
|
|
4065
|
-
align="xMidYMid"
|
|
4066
|
-
bbHeight="24"
|
|
4067
|
-
bbWidth="24"
|
|
4068
|
-
fill="none"
|
|
4069
|
-
focusable={false}
|
|
4070
|
-
height={24}
|
|
4071
|
-
meetOrSlice={0}
|
|
4072
|
-
minX={0}
|
|
4073
|
-
minY={0}
|
|
4074
|
-
style={
|
|
4075
|
-
[
|
|
4076
|
-
{
|
|
4077
|
-
"backgroundColor": "transparent",
|
|
4078
|
-
"borderWidth": 0,
|
|
4079
|
-
},
|
|
4080
|
-
{
|
|
4081
|
-
"flex": 0,
|
|
4082
|
-
"height": 24,
|
|
4083
|
-
"width": 24,
|
|
4084
|
-
},
|
|
4085
|
-
]
|
|
4086
|
-
}
|
|
4087
|
-
vbHeight={19}
|
|
4088
|
-
vbWidth={10}
|
|
4089
|
-
width={24}
|
|
4090
|
-
>
|
|
4091
|
-
<RNSVGGroup
|
|
4092
|
-
fill={null}
|
|
4093
|
-
propList={
|
|
4094
|
-
[
|
|
4095
|
-
"fill",
|
|
4096
|
-
]
|
|
4097
|
-
}
|
|
4098
|
-
>
|
|
4099
|
-
<RNSVGPath
|
|
4100
|
-
d="M8.875 17.375L1 9.5L8.875 1.625"
|
|
4101
|
-
propList={
|
|
4102
|
-
[
|
|
4103
|
-
"stroke",
|
|
4104
|
-
"strokeWidth",
|
|
4105
|
-
"strokeLinecap",
|
|
4106
|
-
"strokeLinejoin",
|
|
4107
|
-
]
|
|
4108
|
-
}
|
|
4109
|
-
stroke={
|
|
4110
|
-
{
|
|
4111
|
-
"payload": 4279837036,
|
|
4112
|
-
"type": 0,
|
|
4113
|
-
}
|
|
4114
|
-
}
|
|
4115
|
-
strokeLinecap={1}
|
|
4116
|
-
strokeLinejoin={1}
|
|
4117
|
-
strokeWidth="2"
|
|
4118
|
-
/>
|
|
4119
|
-
</RNSVGGroup>
|
|
4120
|
-
</RNSVGSvgView>
|
|
4121
|
-
</View>
|
|
4122
|
-
<View
|
|
4123
|
-
style={
|
|
4124
|
-
{
|
|
4125
|
-
"alignItems": "center",
|
|
4126
|
-
"backgroundColor": "#19216C",
|
|
4127
|
-
"borderRadius": 32,
|
|
4128
|
-
"flexDirection": "row",
|
|
4129
|
-
"height": 32,
|
|
4130
|
-
"justifyContent": "center",
|
|
4131
|
-
"paddingBottom": 4,
|
|
4132
|
-
"paddingLeft": 16,
|
|
4133
|
-
"paddingRight": 16,
|
|
4134
|
-
"paddingTop": 4,
|
|
4135
|
-
}
|
|
4136
|
-
}
|
|
4137
|
-
>
|
|
4138
|
-
<Text
|
|
4139
|
-
allowFontScaling={false}
|
|
4140
|
-
style={
|
|
4141
|
-
{
|
|
4142
|
-
"color": "#FFFFFF",
|
|
4143
|
-
"fontFamily": "SourceSansPro",
|
|
4144
|
-
"fontSize": 16,
|
|
4145
|
-
"lineHeight": 22.4,
|
|
4146
|
-
"margin": 0,
|
|
4147
|
-
}
|
|
4148
|
-
}
|
|
4149
|
-
testID="undefined.header.title"
|
|
4150
|
-
>
|
|
4151
|
-
Juli 2023
|
|
4152
|
-
</Text>
|
|
4153
|
-
</View>
|
|
4154
|
-
<View
|
|
4155
|
-
accessibilityState={
|
|
4156
|
-
{
|
|
4157
|
-
"busy": undefined,
|
|
4158
|
-
"checked": undefined,
|
|
4159
|
-
"disabled": undefined,
|
|
4160
|
-
"expanded": undefined,
|
|
4161
|
-
"selected": undefined,
|
|
4162
|
-
}
|
|
4163
|
-
}
|
|
4164
|
-
accessibilityValue={
|
|
4165
|
-
{
|
|
4166
|
-
"max": undefined,
|
|
4167
|
-
"min": undefined,
|
|
4168
|
-
"now": undefined,
|
|
4169
|
-
"text": undefined,
|
|
4170
|
-
}
|
|
4171
|
-
}
|
|
4172
|
-
accessible={true}
|
|
4173
|
-
collapsable={false}
|
|
4174
|
-
focusable={true}
|
|
4175
|
-
hitSlop={
|
|
4176
|
-
{
|
|
4177
|
-
"bottom": 20,
|
|
4178
|
-
"left": 20,
|
|
4179
|
-
"right": 20,
|
|
4180
|
-
"top": 20,
|
|
4181
|
-
}
|
|
4182
|
-
}
|
|
4183
|
-
onClick={[Function]}
|
|
4184
|
-
onResponderGrant={[Function]}
|
|
4185
|
-
onResponderMove={[Function]}
|
|
4186
|
-
onResponderRelease={[Function]}
|
|
4187
|
-
onResponderTerminate={[Function]}
|
|
4188
|
-
onResponderTerminationRequest={[Function]}
|
|
4189
|
-
onStartShouldSetResponder={[Function]}
|
|
4190
|
-
style={
|
|
4191
|
-
{
|
|
4192
|
-
"opacity": 1,
|
|
4193
|
-
"padding": 10,
|
|
4194
|
-
}
|
|
4195
|
-
}
|
|
4196
|
-
testID="undefined.header.rightArrow"
|
|
4197
|
-
>
|
|
4198
|
-
<RNSVGSvgView
|
|
4199
|
-
align="xMidYMid"
|
|
4200
|
-
bbHeight="24"
|
|
4201
|
-
bbWidth="24"
|
|
4202
|
-
fill="none"
|
|
4203
|
-
focusable={false}
|
|
4204
|
-
height={24}
|
|
4205
|
-
meetOrSlice={0}
|
|
4206
|
-
minX={0}
|
|
4207
|
-
minY={0}
|
|
4208
|
-
style={
|
|
4209
|
-
[
|
|
4210
|
-
{
|
|
4211
|
-
"backgroundColor": "transparent",
|
|
4212
|
-
"borderWidth": 0,
|
|
4213
|
-
},
|
|
4214
|
-
{
|
|
4215
|
-
"flex": 0,
|
|
4216
|
-
"height": 24,
|
|
4217
|
-
"width": 24,
|
|
4218
|
-
},
|
|
4219
|
-
]
|
|
4220
|
-
}
|
|
4221
|
-
vbHeight={19}
|
|
4222
|
-
vbWidth={11}
|
|
4223
|
-
width={24}
|
|
4224
|
-
>
|
|
4225
|
-
<RNSVGGroup
|
|
4226
|
-
fill={null}
|
|
4227
|
-
propList={
|
|
4228
|
-
[
|
|
4229
|
-
"fill",
|
|
4230
|
-
]
|
|
4231
|
-
}
|
|
4232
|
-
>
|
|
4233
|
-
<RNSVGPath
|
|
4234
|
-
d="M1.75 1.625L9.33333 9.5L1.75 17.375"
|
|
4235
|
-
propList={
|
|
4236
|
-
[
|
|
4237
|
-
"stroke",
|
|
4238
|
-
"strokeWidth",
|
|
4239
|
-
"strokeLinecap",
|
|
4240
|
-
"strokeLinejoin",
|
|
4241
|
-
]
|
|
4242
|
-
}
|
|
4243
|
-
stroke={
|
|
4244
|
-
{
|
|
4245
|
-
"payload": 4279837036,
|
|
4246
|
-
"type": 0,
|
|
4247
|
-
}
|
|
4248
|
-
}
|
|
4249
|
-
strokeLinecap={1}
|
|
4250
|
-
strokeLinejoin={1}
|
|
4251
|
-
strokeWidth="2"
|
|
4252
|
-
/>
|
|
4253
|
-
</RNSVGGroup>
|
|
4254
|
-
</RNSVGSvgView>
|
|
4255
|
-
</View>
|
|
4256
|
-
</View>
|
|
4257
|
-
<View
|
|
4258
|
-
style={
|
|
4259
|
-
[
|
|
4260
|
-
{
|
|
4261
|
-
"flexDirection": "row",
|
|
4262
|
-
"justifyContent": "space-around",
|
|
4263
|
-
"marginTop": 32,
|
|
4264
|
-
},
|
|
4265
|
-
undefined,
|
|
4266
|
-
]
|
|
4267
|
-
}
|
|
4268
|
-
testID="undefined.header.dayNames"
|
|
4269
|
-
>
|
|
4270
|
-
<Text
|
|
4271
|
-
accessibilityLabel=""
|
|
4272
|
-
allowFontScaling={false}
|
|
4273
|
-
numberOfLines={1}
|
|
4274
|
-
style={
|
|
4275
|
-
[
|
|
4276
|
-
{
|
|
4277
|
-
"color": "#1F2933",
|
|
4278
|
-
"fontFamily": "SourceSansProBold",
|
|
4279
|
-
"fontSize": 16,
|
|
4280
|
-
"lineHeight": 22.4,
|
|
4281
|
-
"marginBottom": 24,
|
|
4282
|
-
"textAlign": "center",
|
|
4283
|
-
"width": 32,
|
|
4284
|
-
},
|
|
4285
|
-
]
|
|
4286
|
-
}
|
|
4287
|
-
>
|
|
4288
|
-
Ma
|
|
4289
|
-
</Text>
|
|
4290
|
-
<Text
|
|
4291
|
-
accessibilityLabel=""
|
|
4292
|
-
allowFontScaling={false}
|
|
4293
|
-
numberOfLines={1}
|
|
4294
|
-
style={
|
|
4295
|
-
[
|
|
4296
|
-
{
|
|
4297
|
-
"color": "#1F2933",
|
|
4298
|
-
"fontFamily": "SourceSansProBold",
|
|
4299
|
-
"fontSize": 16,
|
|
4300
|
-
"lineHeight": 22.4,
|
|
4301
|
-
"marginBottom": 24,
|
|
4302
|
-
"textAlign": "center",
|
|
4303
|
-
"width": 32,
|
|
4304
|
-
},
|
|
4305
|
-
]
|
|
4306
|
-
}
|
|
4307
|
-
>
|
|
4308
|
-
Di
|
|
4309
|
-
</Text>
|
|
4310
|
-
<Text
|
|
4311
|
-
accessibilityLabel=""
|
|
4312
|
-
allowFontScaling={false}
|
|
4313
|
-
numberOfLines={1}
|
|
4314
|
-
style={
|
|
4315
|
-
[
|
|
4316
|
-
{
|
|
4317
|
-
"color": "#1F2933",
|
|
4318
|
-
"fontFamily": "SourceSansProBold",
|
|
4319
|
-
"fontSize": 16,
|
|
4320
|
-
"lineHeight": 22.4,
|
|
4321
|
-
"marginBottom": 24,
|
|
4322
|
-
"textAlign": "center",
|
|
4323
|
-
"width": 32,
|
|
4324
|
-
},
|
|
4325
|
-
]
|
|
4326
|
-
}
|
|
4327
|
-
>
|
|
4328
|
-
Wo
|
|
4329
|
-
</Text>
|
|
4330
|
-
<Text
|
|
4331
|
-
accessibilityLabel=""
|
|
4332
|
-
allowFontScaling={false}
|
|
4333
|
-
numberOfLines={1}
|
|
4334
|
-
style={
|
|
4335
|
-
[
|
|
4336
|
-
{
|
|
4337
|
-
"color": "#1F2933",
|
|
4338
|
-
"fontFamily": "SourceSansProBold",
|
|
4339
|
-
"fontSize": 16,
|
|
4340
|
-
"lineHeight": 22.4,
|
|
4341
|
-
"marginBottom": 24,
|
|
4342
|
-
"textAlign": "center",
|
|
4343
|
-
"width": 32,
|
|
4344
|
-
},
|
|
4345
|
-
]
|
|
4346
|
-
}
|
|
4347
|
-
>
|
|
4348
|
-
Do
|
|
4349
|
-
</Text>
|
|
4350
|
-
<Text
|
|
4351
|
-
accessibilityLabel=""
|
|
4352
|
-
allowFontScaling={false}
|
|
4353
|
-
numberOfLines={1}
|
|
4354
|
-
style={
|
|
4355
|
-
[
|
|
4356
|
-
{
|
|
4357
|
-
"color": "#1F2933",
|
|
4358
|
-
"fontFamily": "SourceSansProBold",
|
|
4359
|
-
"fontSize": 16,
|
|
4360
|
-
"lineHeight": 22.4,
|
|
4361
|
-
"marginBottom": 24,
|
|
4362
|
-
"textAlign": "center",
|
|
4363
|
-
"width": 32,
|
|
4364
|
-
},
|
|
4365
|
-
]
|
|
4366
|
-
}
|
|
4367
|
-
>
|
|
4368
|
-
Vr
|
|
4369
|
-
</Text>
|
|
4370
|
-
<Text
|
|
4371
|
-
accessibilityLabel=""
|
|
4372
|
-
allowFontScaling={false}
|
|
4373
|
-
numberOfLines={1}
|
|
4374
|
-
style={
|
|
4375
|
-
[
|
|
4376
|
-
{
|
|
4377
|
-
"color": "#1F2933",
|
|
4378
|
-
"fontFamily": "SourceSansProBold",
|
|
4379
|
-
"fontSize": 16,
|
|
4380
|
-
"lineHeight": 22.4,
|
|
4381
|
-
"marginBottom": 24,
|
|
4382
|
-
"textAlign": "center",
|
|
4383
|
-
"width": 32,
|
|
4384
|
-
},
|
|
4385
|
-
]
|
|
4386
|
-
}
|
|
4387
|
-
>
|
|
4388
|
-
Za
|
|
4389
|
-
</Text>
|
|
4390
|
-
<Text
|
|
4391
|
-
accessibilityLabel=""
|
|
4392
|
-
allowFontScaling={false}
|
|
4393
|
-
numberOfLines={1}
|
|
4394
|
-
style={
|
|
4395
|
-
[
|
|
4396
|
-
{
|
|
4397
|
-
"color": "#1F2933",
|
|
4398
|
-
"fontFamily": "SourceSansProBold",
|
|
4399
|
-
"fontSize": 16,
|
|
4400
|
-
"lineHeight": 22.4,
|
|
4401
|
-
"marginBottom": 24,
|
|
4402
|
-
"textAlign": "center",
|
|
4403
|
-
"width": 32,
|
|
4404
|
-
},
|
|
4405
|
-
]
|
|
4406
|
-
}
|
|
4407
|
-
>
|
|
4408
|
-
Zo
|
|
4409
|
-
</Text>
|
|
4410
|
-
</View>
|
|
4411
|
-
</View>
|
|
4412
|
-
<View
|
|
4413
|
-
style={
|
|
4414
|
-
{
|
|
4415
|
-
"backgroundColor": "white",
|
|
4416
|
-
}
|
|
4417
|
-
}
|
|
4418
|
-
>
|
|
4419
|
-
<View
|
|
4420
|
-
style={
|
|
4421
|
-
{
|
|
4422
|
-
"flexDirection": "row",
|
|
4423
|
-
"justifyContent": "space-around",
|
|
4424
|
-
"marginVertical": 7,
|
|
4425
|
-
}
|
|
4426
|
-
}
|
|
4427
|
-
>
|
|
4428
|
-
<View
|
|
4429
|
-
style={
|
|
4430
|
-
{
|
|
4431
|
-
"alignItems": "center",
|
|
4432
|
-
"flex": 1,
|
|
4433
|
-
}
|
|
4434
|
-
}
|
|
4435
|
-
>
|
|
4436
|
-
<View
|
|
4437
|
-
accessibilityLabel=" Maandag 26 Juni 2023 "
|
|
4438
|
-
accessibilityState={
|
|
4439
|
-
{
|
|
4440
|
-
"busy": undefined,
|
|
4441
|
-
"checked": undefined,
|
|
4442
|
-
"disabled": false,
|
|
4443
|
-
"expanded": undefined,
|
|
4444
|
-
"selected": undefined,
|
|
4445
|
-
}
|
|
4446
|
-
}
|
|
4447
|
-
accessibilityValue={
|
|
4448
|
-
{
|
|
4449
|
-
"max": undefined,
|
|
4450
|
-
"min": undefined,
|
|
4451
|
-
"now": undefined,
|
|
4452
|
-
"text": undefined,
|
|
4453
|
-
}
|
|
4454
|
-
}
|
|
4455
|
-
accessible={true}
|
|
4456
|
-
collapsable={false}
|
|
4457
|
-
focusable={true}
|
|
4458
|
-
onClick={[Function]}
|
|
4459
|
-
onResponderGrant={[Function]}
|
|
4460
|
-
onResponderMove={[Function]}
|
|
4461
|
-
onResponderRelease={[Function]}
|
|
4462
|
-
onResponderTerminate={[Function]}
|
|
4463
|
-
onResponderTerminationRequest={[Function]}
|
|
4464
|
-
onStartShouldSetResponder={[Function]}
|
|
4465
|
-
style={
|
|
4466
|
-
{
|
|
4467
|
-
"alignItems": "center",
|
|
4468
|
-
"height": 42,
|
|
4469
|
-
"justifyContent": "center",
|
|
4470
|
-
"opacity": 1,
|
|
4471
|
-
"width": 42,
|
|
4472
|
-
}
|
|
4473
|
-
}
|
|
4474
|
-
testID="undefined.day_2023-06-26"
|
|
4475
|
-
>
|
|
4476
|
-
<Text
|
|
4477
|
-
allowFontScaling={false}
|
|
4478
|
-
style={
|
|
4479
|
-
[
|
|
4480
|
-
{
|
|
4481
|
-
"color": "#1F2933",
|
|
4482
|
-
"fontFamily": "SourceSansPro",
|
|
4483
|
-
"fontSize": 16,
|
|
4484
|
-
"lineHeight": 22.4,
|
|
4485
|
-
"marginTop": 4,
|
|
4486
|
-
},
|
|
4487
|
-
{
|
|
4488
|
-
"color": "#9AA5B1",
|
|
4489
|
-
},
|
|
4490
|
-
]
|
|
4491
|
-
}
|
|
4492
|
-
>
|
|
4493
|
-
26
|
|
4494
|
-
</Text>
|
|
4495
|
-
<View
|
|
4496
|
-
style={
|
|
4497
|
-
[
|
|
4498
|
-
{
|
|
4499
|
-
"borderRadius": 2,
|
|
4500
|
-
"height": 4,
|
|
4501
|
-
"marginHorizontal": 1,
|
|
4502
|
-
"marginTop": 1,
|
|
4503
|
-
"opacity": 0,
|
|
4504
|
-
"width": 4,
|
|
4505
|
-
},
|
|
4506
|
-
]
|
|
4507
|
-
}
|
|
4508
|
-
/>
|
|
4509
|
-
</View>
|
|
4510
|
-
</View>
|
|
4511
|
-
<View
|
|
4512
|
-
style={
|
|
4513
|
-
{
|
|
4514
|
-
"alignItems": "center",
|
|
4515
|
-
"flex": 1,
|
|
4516
|
-
}
|
|
4517
|
-
}
|
|
4518
|
-
>
|
|
4519
|
-
<View
|
|
4520
|
-
accessibilityLabel=" Dinsdag 27 Juni 2023 "
|
|
4521
|
-
accessibilityState={
|
|
4522
|
-
{
|
|
4523
|
-
"busy": undefined,
|
|
4524
|
-
"checked": undefined,
|
|
4525
|
-
"disabled": false,
|
|
4526
|
-
"expanded": undefined,
|
|
4527
|
-
"selected": undefined,
|
|
4528
|
-
}
|
|
4529
|
-
}
|
|
4530
|
-
accessibilityValue={
|
|
4531
|
-
{
|
|
4532
|
-
"max": undefined,
|
|
4533
|
-
"min": undefined,
|
|
4534
|
-
"now": undefined,
|
|
4535
|
-
"text": undefined,
|
|
4536
|
-
}
|
|
4537
|
-
}
|
|
4538
|
-
accessible={true}
|
|
4539
|
-
collapsable={false}
|
|
4540
|
-
focusable={true}
|
|
4541
|
-
onClick={[Function]}
|
|
4542
|
-
onResponderGrant={[Function]}
|
|
4543
|
-
onResponderMove={[Function]}
|
|
4544
|
-
onResponderRelease={[Function]}
|
|
4545
|
-
onResponderTerminate={[Function]}
|
|
4546
|
-
onResponderTerminationRequest={[Function]}
|
|
4547
|
-
onStartShouldSetResponder={[Function]}
|
|
4548
|
-
style={
|
|
4549
|
-
{
|
|
4550
|
-
"alignItems": "center",
|
|
4551
|
-
"height": 42,
|
|
4552
|
-
"justifyContent": "center",
|
|
4553
|
-
"opacity": 1,
|
|
4554
|
-
"width": 42,
|
|
4555
|
-
}
|
|
4556
|
-
}
|
|
4557
|
-
testID="undefined.day_2023-06-27"
|
|
4558
|
-
>
|
|
4559
|
-
<Text
|
|
4560
|
-
allowFontScaling={false}
|
|
4561
|
-
style={
|
|
4562
|
-
[
|
|
4563
|
-
{
|
|
4564
|
-
"color": "#1F2933",
|
|
4565
|
-
"fontFamily": "SourceSansPro",
|
|
4566
|
-
"fontSize": 16,
|
|
4567
|
-
"lineHeight": 22.4,
|
|
4568
|
-
"marginTop": 4,
|
|
4569
|
-
},
|
|
4570
|
-
{
|
|
4571
|
-
"color": "#9AA5B1",
|
|
4572
|
-
},
|
|
4573
|
-
]
|
|
4574
|
-
}
|
|
4575
|
-
>
|
|
4576
|
-
27
|
|
4577
|
-
</Text>
|
|
4578
|
-
<View
|
|
4579
|
-
style={
|
|
4580
|
-
[
|
|
4581
|
-
{
|
|
4582
|
-
"borderRadius": 2,
|
|
4583
|
-
"height": 4,
|
|
4584
|
-
"marginHorizontal": 1,
|
|
4585
|
-
"marginTop": 1,
|
|
4586
|
-
"opacity": 0,
|
|
4587
|
-
"width": 4,
|
|
4588
|
-
},
|
|
4589
|
-
]
|
|
4590
|
-
}
|
|
4591
|
-
/>
|
|
4592
|
-
</View>
|
|
4593
|
-
</View>
|
|
4594
|
-
<View
|
|
4595
|
-
style={
|
|
4596
|
-
{
|
|
4597
|
-
"alignItems": "center",
|
|
4598
|
-
"flex": 1,
|
|
4599
|
-
}
|
|
4600
|
-
}
|
|
4601
|
-
>
|
|
4602
|
-
<View
|
|
4603
|
-
accessibilityLabel=" Woensdag 28 Juni 2023 "
|
|
4604
|
-
accessibilityState={
|
|
4605
|
-
{
|
|
4606
|
-
"busy": undefined,
|
|
4607
|
-
"checked": undefined,
|
|
4608
|
-
"disabled": false,
|
|
4609
|
-
"expanded": undefined,
|
|
4610
|
-
"selected": undefined,
|
|
4611
|
-
}
|
|
4612
|
-
}
|
|
4613
|
-
accessibilityValue={
|
|
4614
|
-
{
|
|
4615
|
-
"max": undefined,
|
|
4616
|
-
"min": undefined,
|
|
4617
|
-
"now": undefined,
|
|
4618
|
-
"text": undefined,
|
|
4619
|
-
}
|
|
4620
|
-
}
|
|
4621
|
-
accessible={true}
|
|
4622
|
-
collapsable={false}
|
|
4623
|
-
focusable={true}
|
|
4624
|
-
onClick={[Function]}
|
|
4625
|
-
onResponderGrant={[Function]}
|
|
4626
|
-
onResponderMove={[Function]}
|
|
4627
|
-
onResponderRelease={[Function]}
|
|
4628
|
-
onResponderTerminate={[Function]}
|
|
4629
|
-
onResponderTerminationRequest={[Function]}
|
|
4630
|
-
onStartShouldSetResponder={[Function]}
|
|
4631
|
-
style={
|
|
4632
|
-
{
|
|
4633
|
-
"alignItems": "center",
|
|
4634
|
-
"height": 42,
|
|
4635
|
-
"justifyContent": "center",
|
|
4636
|
-
"opacity": 1,
|
|
4637
|
-
"width": 42,
|
|
4638
|
-
}
|
|
4639
|
-
}
|
|
4640
|
-
testID="undefined.day_2023-06-28"
|
|
4641
|
-
>
|
|
4642
|
-
<Text
|
|
4643
|
-
allowFontScaling={false}
|
|
4644
|
-
style={
|
|
4645
|
-
[
|
|
4646
|
-
{
|
|
4647
|
-
"color": "#1F2933",
|
|
4648
|
-
"fontFamily": "SourceSansPro",
|
|
4649
|
-
"fontSize": 16,
|
|
4650
|
-
"lineHeight": 22.4,
|
|
4651
|
-
"marginTop": 4,
|
|
4652
|
-
},
|
|
4653
|
-
{
|
|
4654
|
-
"color": "#9AA5B1",
|
|
4655
|
-
},
|
|
4656
|
-
]
|
|
4657
|
-
}
|
|
4658
|
-
>
|
|
4659
|
-
28
|
|
4660
|
-
</Text>
|
|
4661
|
-
<View
|
|
4662
|
-
style={
|
|
4663
|
-
[
|
|
4664
|
-
{
|
|
4665
|
-
"borderRadius": 2,
|
|
4666
|
-
"height": 4,
|
|
4667
|
-
"marginHorizontal": 1,
|
|
4668
|
-
"marginTop": 1,
|
|
4669
|
-
"opacity": 0,
|
|
4670
|
-
"width": 4,
|
|
4671
|
-
},
|
|
4672
|
-
]
|
|
4673
|
-
}
|
|
4674
|
-
/>
|
|
4675
|
-
</View>
|
|
4676
|
-
</View>
|
|
4677
|
-
<View
|
|
4678
|
-
style={
|
|
4679
|
-
{
|
|
4680
|
-
"alignItems": "center",
|
|
4681
|
-
"flex": 1,
|
|
4682
|
-
}
|
|
4683
|
-
}
|
|
4684
|
-
>
|
|
4685
|
-
<View
|
|
4686
|
-
accessibilityLabel=" Donderdag 29 Juni 2023 "
|
|
4687
|
-
accessibilityState={
|
|
4688
|
-
{
|
|
4689
|
-
"busy": undefined,
|
|
4690
|
-
"checked": undefined,
|
|
4691
|
-
"disabled": false,
|
|
4692
|
-
"expanded": undefined,
|
|
4693
|
-
"selected": undefined,
|
|
4694
|
-
}
|
|
4695
|
-
}
|
|
4696
|
-
accessibilityValue={
|
|
4697
|
-
{
|
|
4698
|
-
"max": undefined,
|
|
4699
|
-
"min": undefined,
|
|
4700
|
-
"now": undefined,
|
|
4701
|
-
"text": undefined,
|
|
4702
|
-
}
|
|
4703
|
-
}
|
|
4704
|
-
accessible={true}
|
|
4705
|
-
collapsable={false}
|
|
4706
|
-
focusable={true}
|
|
4707
|
-
onClick={[Function]}
|
|
4708
|
-
onResponderGrant={[Function]}
|
|
4709
|
-
onResponderMove={[Function]}
|
|
4710
|
-
onResponderRelease={[Function]}
|
|
4711
|
-
onResponderTerminate={[Function]}
|
|
4712
|
-
onResponderTerminationRequest={[Function]}
|
|
4713
|
-
onStartShouldSetResponder={[Function]}
|
|
4714
|
-
style={
|
|
4715
|
-
{
|
|
4716
|
-
"alignItems": "center",
|
|
4717
|
-
"height": 42,
|
|
4718
|
-
"justifyContent": "center",
|
|
4719
|
-
"opacity": 1,
|
|
4720
|
-
"width": 42,
|
|
4721
|
-
}
|
|
4722
|
-
}
|
|
4723
|
-
testID="undefined.day_2023-06-29"
|
|
4724
|
-
>
|
|
4725
|
-
<Text
|
|
4726
|
-
allowFontScaling={false}
|
|
4727
|
-
style={
|
|
4728
|
-
[
|
|
4729
|
-
{
|
|
4730
|
-
"color": "#1F2933",
|
|
4731
|
-
"fontFamily": "SourceSansPro",
|
|
4732
|
-
"fontSize": 16,
|
|
4733
|
-
"lineHeight": 22.4,
|
|
4734
|
-
"marginTop": 4,
|
|
4735
|
-
},
|
|
4736
|
-
{
|
|
4737
|
-
"color": "#9AA5B1",
|
|
4738
|
-
},
|
|
4739
|
-
]
|
|
4740
|
-
}
|
|
4741
|
-
>
|
|
4742
|
-
29
|
|
4743
|
-
</Text>
|
|
4744
|
-
<View
|
|
4745
|
-
style={
|
|
4746
|
-
[
|
|
4747
|
-
{
|
|
4748
|
-
"borderRadius": 2,
|
|
4749
|
-
"height": 4,
|
|
4750
|
-
"marginHorizontal": 1,
|
|
4751
|
-
"marginTop": 1,
|
|
4752
|
-
"opacity": 0,
|
|
4753
|
-
"width": 4,
|
|
4754
|
-
},
|
|
4755
|
-
]
|
|
4756
|
-
}
|
|
4757
|
-
/>
|
|
4758
|
-
</View>
|
|
4759
|
-
</View>
|
|
4760
|
-
<View
|
|
3697
|
+
Ma
|
|
3698
|
+
</Text>
|
|
3699
|
+
<Text
|
|
3700
|
+
accessibilityLabel=""
|
|
3701
|
+
allowFontScaling={false}
|
|
3702
|
+
numberOfLines={1}
|
|
4761
3703
|
style={
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
3704
|
+
[
|
|
3705
|
+
{
|
|
3706
|
+
"color": "#1F2933",
|
|
3707
|
+
"fontFamily": "SourceSansProBold",
|
|
3708
|
+
"fontSize": 16,
|
|
3709
|
+
"lineHeight": 22.4,
|
|
3710
|
+
"marginBottom": 24,
|
|
3711
|
+
"textAlign": "center",
|
|
3712
|
+
"width": 32,
|
|
3713
|
+
},
|
|
3714
|
+
]
|
|
4766
3715
|
}
|
|
4767
3716
|
>
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4773
|
-
|
|
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
|
|
3717
|
+
Di
|
|
3718
|
+
</Text>
|
|
3719
|
+
<Text
|
|
3720
|
+
accessibilityLabel=""
|
|
3721
|
+
allowFontScaling={false}
|
|
3722
|
+
numberOfLines={1}
|
|
4844
3723
|
style={
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
3724
|
+
[
|
|
3725
|
+
{
|
|
3726
|
+
"color": "#1F2933",
|
|
3727
|
+
"fontFamily": "SourceSansProBold",
|
|
3728
|
+
"fontSize": 16,
|
|
3729
|
+
"lineHeight": 22.4,
|
|
3730
|
+
"marginBottom": 24,
|
|
3731
|
+
"textAlign": "center",
|
|
3732
|
+
"width": 32,
|
|
3733
|
+
},
|
|
3734
|
+
]
|
|
4849
3735
|
}
|
|
4850
3736
|
>
|
|
4851
|
-
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4855
|
-
|
|
4856
|
-
|
|
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
|
|
3737
|
+
Wo
|
|
3738
|
+
</Text>
|
|
3739
|
+
<Text
|
|
3740
|
+
accessibilityLabel=""
|
|
3741
|
+
allowFontScaling={false}
|
|
3742
|
+
numberOfLines={1}
|
|
4927
3743
|
style={
|
|
4928
|
-
|
|
4929
|
-
|
|
4930
|
-
|
|
4931
|
-
|
|
3744
|
+
[
|
|
3745
|
+
{
|
|
3746
|
+
"color": "#1F2933",
|
|
3747
|
+
"fontFamily": "SourceSansProBold",
|
|
3748
|
+
"fontSize": 16,
|
|
3749
|
+
"lineHeight": 22.4,
|
|
3750
|
+
"marginBottom": 24,
|
|
3751
|
+
"textAlign": "center",
|
|
3752
|
+
"width": 32,
|
|
3753
|
+
},
|
|
3754
|
+
]
|
|
4932
3755
|
}
|
|
4933
3756
|
>
|
|
4934
|
-
|
|
4935
|
-
|
|
4936
|
-
|
|
3757
|
+
Do
|
|
3758
|
+
</Text>
|
|
3759
|
+
<Text
|
|
3760
|
+
accessibilityLabel=""
|
|
3761
|
+
allowFontScaling={false}
|
|
3762
|
+
numberOfLines={1}
|
|
3763
|
+
style={
|
|
3764
|
+
[
|
|
4937
3765
|
{
|
|
4938
|
-
"
|
|
4939
|
-
"
|
|
4940
|
-
"
|
|
4941
|
-
"
|
|
4942
|
-
"
|
|
4943
|
-
|
|
4944
|
-
|
|
4945
|
-
|
|
3766
|
+
"color": "#1F2933",
|
|
3767
|
+
"fontFamily": "SourceSansProBold",
|
|
3768
|
+
"fontSize": 16,
|
|
3769
|
+
"lineHeight": 22.4,
|
|
3770
|
+
"marginBottom": 24,
|
|
3771
|
+
"textAlign": "center",
|
|
3772
|
+
"width": 32,
|
|
3773
|
+
},
|
|
3774
|
+
]
|
|
3775
|
+
}
|
|
3776
|
+
>
|
|
3777
|
+
Vr
|
|
3778
|
+
</Text>
|
|
3779
|
+
<Text
|
|
3780
|
+
accessibilityLabel=""
|
|
3781
|
+
allowFontScaling={false}
|
|
3782
|
+
numberOfLines={1}
|
|
3783
|
+
style={
|
|
3784
|
+
[
|
|
4946
3785
|
{
|
|
4947
|
-
"
|
|
4948
|
-
"
|
|
4949
|
-
"
|
|
4950
|
-
"
|
|
4951
|
-
|
|
4952
|
-
|
|
4953
|
-
|
|
4954
|
-
|
|
4955
|
-
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4960
|
-
|
|
4961
|
-
|
|
4962
|
-
|
|
4963
|
-
|
|
3786
|
+
"color": "#1F2933",
|
|
3787
|
+
"fontFamily": "SourceSansProBold",
|
|
3788
|
+
"fontSize": 16,
|
|
3789
|
+
"lineHeight": 22.4,
|
|
3790
|
+
"marginBottom": 24,
|
|
3791
|
+
"textAlign": "center",
|
|
3792
|
+
"width": 32,
|
|
3793
|
+
},
|
|
3794
|
+
]
|
|
3795
|
+
}
|
|
3796
|
+
>
|
|
3797
|
+
Za
|
|
3798
|
+
</Text>
|
|
3799
|
+
<Text
|
|
3800
|
+
accessibilityLabel=""
|
|
3801
|
+
allowFontScaling={false}
|
|
3802
|
+
numberOfLines={1}
|
|
3803
|
+
style={
|
|
3804
|
+
[
|
|
4964
3805
|
{
|
|
4965
|
-
"
|
|
4966
|
-
"
|
|
4967
|
-
"
|
|
4968
|
-
"
|
|
4969
|
-
"
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
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>
|
|
3806
|
+
"color": "#1F2933",
|
|
3807
|
+
"fontFamily": "SourceSansProBold",
|
|
3808
|
+
"fontSize": 16,
|
|
3809
|
+
"lineHeight": 22.4,
|
|
3810
|
+
"marginBottom": 24,
|
|
3811
|
+
"textAlign": "center",
|
|
3812
|
+
"width": 32,
|
|
3813
|
+
},
|
|
3814
|
+
]
|
|
3815
|
+
}
|
|
3816
|
+
>
|
|
3817
|
+
Zo
|
|
3818
|
+
</Text>
|
|
5009
3819
|
</View>
|
|
3820
|
+
</View>
|
|
3821
|
+
<View
|
|
3822
|
+
style={
|
|
3823
|
+
{
|
|
3824
|
+
"backgroundColor": "white",
|
|
3825
|
+
}
|
|
3826
|
+
}
|
|
3827
|
+
>
|
|
5010
3828
|
<View
|
|
5011
3829
|
style={
|
|
5012
3830
|
{
|
|
@@ -5025,7 +3843,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5025
3843
|
}
|
|
5026
3844
|
>
|
|
5027
3845
|
<View
|
|
5028
|
-
accessibilityLabel=" Maandag
|
|
3846
|
+
accessibilityLabel=" Maandag 31 Juli 2023 "
|
|
5029
3847
|
accessibilityState={
|
|
5030
3848
|
{
|
|
5031
3849
|
"busy": undefined,
|
|
@@ -5062,7 +3880,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5062
3880
|
"width": 42,
|
|
5063
3881
|
}
|
|
5064
3882
|
}
|
|
5065
|
-
testID="undefined.day_2023-07-
|
|
3883
|
+
testID="undefined.day_2023-07-31"
|
|
5066
3884
|
>
|
|
5067
3885
|
<Text
|
|
5068
3886
|
allowFontScaling={false}
|
|
@@ -5081,7 +3899,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5081
3899
|
]
|
|
5082
3900
|
}
|
|
5083
3901
|
>
|
|
5084
|
-
|
|
3902
|
+
31
|
|
5085
3903
|
</Text>
|
|
5086
3904
|
<View
|
|
5087
3905
|
style={
|
|
@@ -5108,7 +3926,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5108
3926
|
}
|
|
5109
3927
|
>
|
|
5110
3928
|
<View
|
|
5111
|
-
accessibilityLabel=" Dinsdag
|
|
3929
|
+
accessibilityLabel=" Dinsdag 1 Augustus 2023 "
|
|
5112
3930
|
accessibilityState={
|
|
5113
3931
|
{
|
|
5114
3932
|
"busy": undefined,
|
|
@@ -5145,7 +3963,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5145
3963
|
"width": 42,
|
|
5146
3964
|
}
|
|
5147
3965
|
}
|
|
5148
|
-
testID="undefined.day_2023-
|
|
3966
|
+
testID="undefined.day_2023-08-01"
|
|
5149
3967
|
>
|
|
5150
3968
|
<Text
|
|
5151
3969
|
allowFontScaling={false}
|
|
@@ -5164,7 +3982,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5164
3982
|
]
|
|
5165
3983
|
}
|
|
5166
3984
|
>
|
|
5167
|
-
|
|
3985
|
+
1
|
|
5168
3986
|
</Text>
|
|
5169
3987
|
<View
|
|
5170
3988
|
style={
|
|
@@ -5191,7 +4009,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5191
4009
|
}
|
|
5192
4010
|
>
|
|
5193
4011
|
<View
|
|
5194
|
-
accessibilityLabel=" Woensdag
|
|
4012
|
+
accessibilityLabel=" Woensdag 2 Augustus 2023 "
|
|
5195
4013
|
accessibilityState={
|
|
5196
4014
|
{
|
|
5197
4015
|
"busy": undefined,
|
|
@@ -5228,7 +4046,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5228
4046
|
"width": 42,
|
|
5229
4047
|
}
|
|
5230
4048
|
}
|
|
5231
|
-
testID="undefined.day_2023-
|
|
4049
|
+
testID="undefined.day_2023-08-02"
|
|
5232
4050
|
>
|
|
5233
4051
|
<Text
|
|
5234
4052
|
allowFontScaling={false}
|
|
@@ -5247,7 +4065,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5247
4065
|
]
|
|
5248
4066
|
}
|
|
5249
4067
|
>
|
|
5250
|
-
|
|
4068
|
+
2
|
|
5251
4069
|
</Text>
|
|
5252
4070
|
<View
|
|
5253
4071
|
style={
|
|
@@ -5274,7 +4092,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5274
4092
|
}
|
|
5275
4093
|
>
|
|
5276
4094
|
<View
|
|
5277
|
-
accessibilityLabel=" Donderdag
|
|
4095
|
+
accessibilityLabel=" Donderdag 3 Augustus 2023 "
|
|
5278
4096
|
accessibilityState={
|
|
5279
4097
|
{
|
|
5280
4098
|
"busy": undefined,
|
|
@@ -5311,7 +4129,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5311
4129
|
"width": 42,
|
|
5312
4130
|
}
|
|
5313
4131
|
}
|
|
5314
|
-
testID="undefined.day_2023-
|
|
4132
|
+
testID="undefined.day_2023-08-03"
|
|
5315
4133
|
>
|
|
5316
4134
|
<Text
|
|
5317
4135
|
allowFontScaling={false}
|
|
@@ -5330,7 +4148,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5330
4148
|
]
|
|
5331
4149
|
}
|
|
5332
4150
|
>
|
|
5333
|
-
|
|
4151
|
+
3
|
|
5334
4152
|
</Text>
|
|
5335
4153
|
<View
|
|
5336
4154
|
style={
|
|
@@ -5357,7 +4175,8 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5357
4175
|
}
|
|
5358
4176
|
>
|
|
5359
4177
|
<View
|
|
5360
|
-
accessibilityLabel=" Vrijdag
|
|
4178
|
+
accessibilityLabel="today Vrijdag 4 Augustus 2023 "
|
|
4179
|
+
accessibilityRole="button"
|
|
5361
4180
|
accessibilityState={
|
|
5362
4181
|
{
|
|
5363
4182
|
"busy": undefined,
|
|
@@ -5388,13 +4207,17 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5388
4207
|
style={
|
|
5389
4208
|
{
|
|
5390
4209
|
"alignItems": "center",
|
|
4210
|
+
"borderColor": "#7B93DB",
|
|
4211
|
+
"borderRadius": 21,
|
|
4212
|
+
"borderStyle": "solid",
|
|
4213
|
+
"borderWidth": 1,
|
|
5391
4214
|
"height": 42,
|
|
5392
4215
|
"justifyContent": "center",
|
|
5393
4216
|
"opacity": 1,
|
|
5394
4217
|
"width": 42,
|
|
5395
4218
|
}
|
|
5396
4219
|
}
|
|
5397
|
-
testID="undefined.day_2023-
|
|
4220
|
+
testID="undefined.day_2023-08-04"
|
|
5398
4221
|
>
|
|
5399
4222
|
<Text
|
|
5400
4223
|
allowFontScaling={false}
|
|
@@ -5408,12 +4231,12 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5408
4231
|
"marginTop": 4,
|
|
5409
4232
|
},
|
|
5410
4233
|
{
|
|
5411
|
-
"color": "#
|
|
4234
|
+
"color": "#7B93DB",
|
|
5412
4235
|
},
|
|
5413
4236
|
]
|
|
5414
4237
|
}
|
|
5415
4238
|
>
|
|
5416
|
-
|
|
4239
|
+
4
|
|
5417
4240
|
</Text>
|
|
5418
4241
|
<View
|
|
5419
4242
|
style={
|
|
@@ -5440,7 +4263,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5440
4263
|
}
|
|
5441
4264
|
>
|
|
5442
4265
|
<View
|
|
5443
|
-
accessibilityLabel=" Zaterdag
|
|
4266
|
+
accessibilityLabel=" Zaterdag 5 Augustus 2023 "
|
|
5444
4267
|
accessibilityState={
|
|
5445
4268
|
{
|
|
5446
4269
|
"busy": undefined,
|
|
@@ -5477,7 +4300,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5477
4300
|
"width": 42,
|
|
5478
4301
|
}
|
|
5479
4302
|
}
|
|
5480
|
-
testID="undefined.day_2023-
|
|
4303
|
+
testID="undefined.day_2023-08-05"
|
|
5481
4304
|
>
|
|
5482
4305
|
<Text
|
|
5483
4306
|
allowFontScaling={false}
|
|
@@ -5496,7 +4319,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5496
4319
|
]
|
|
5497
4320
|
}
|
|
5498
4321
|
>
|
|
5499
|
-
|
|
4322
|
+
5
|
|
5500
4323
|
</Text>
|
|
5501
4324
|
<View
|
|
5502
4325
|
style={
|
|
@@ -5523,7 +4346,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5523
4346
|
}
|
|
5524
4347
|
>
|
|
5525
4348
|
<View
|
|
5526
|
-
accessibilityLabel=" Zondag
|
|
4349
|
+
accessibilityLabel=" Zondag 6 Augustus 2023 "
|
|
5527
4350
|
accessibilityState={
|
|
5528
4351
|
{
|
|
5529
4352
|
"busy": undefined,
|
|
@@ -5560,7 +4383,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5560
4383
|
"width": 42,
|
|
5561
4384
|
}
|
|
5562
4385
|
}
|
|
5563
|
-
testID="undefined.day_2023-
|
|
4386
|
+
testID="undefined.day_2023-08-06"
|
|
5564
4387
|
>
|
|
5565
4388
|
<Text
|
|
5566
4389
|
allowFontScaling={false}
|
|
@@ -5579,7 +4402,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5579
4402
|
]
|
|
5580
4403
|
}
|
|
5581
4404
|
>
|
|
5582
|
-
|
|
4405
|
+
6
|
|
5583
4406
|
</Text>
|
|
5584
4407
|
<View
|
|
5585
4408
|
style={
|
|
@@ -5616,7 +4439,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5616
4439
|
}
|
|
5617
4440
|
>
|
|
5618
4441
|
<View
|
|
5619
|
-
accessibilityLabel=" Maandag
|
|
4442
|
+
accessibilityLabel=" Maandag 7 Augustus 2023 "
|
|
5620
4443
|
accessibilityState={
|
|
5621
4444
|
{
|
|
5622
4445
|
"busy": undefined,
|
|
@@ -5653,7 +4476,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5653
4476
|
"width": 42,
|
|
5654
4477
|
}
|
|
5655
4478
|
}
|
|
5656
|
-
testID="undefined.day_2023-07
|
|
4479
|
+
testID="undefined.day_2023-08-07"
|
|
5657
4480
|
>
|
|
5658
4481
|
<Text
|
|
5659
4482
|
allowFontScaling={false}
|
|
@@ -5672,7 +4495,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5672
4495
|
]
|
|
5673
4496
|
}
|
|
5674
4497
|
>
|
|
5675
|
-
|
|
4498
|
+
7
|
|
5676
4499
|
</Text>
|
|
5677
4500
|
<View
|
|
5678
4501
|
style={
|
|
@@ -5699,7 +4522,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5699
4522
|
}
|
|
5700
4523
|
>
|
|
5701
4524
|
<View
|
|
5702
|
-
accessibilityLabel=" Dinsdag
|
|
4525
|
+
accessibilityLabel=" Dinsdag 8 Augustus 2023 "
|
|
5703
4526
|
accessibilityState={
|
|
5704
4527
|
{
|
|
5705
4528
|
"busy": undefined,
|
|
@@ -5736,7 +4559,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5736
4559
|
"width": 42,
|
|
5737
4560
|
}
|
|
5738
4561
|
}
|
|
5739
|
-
testID="undefined.day_2023-
|
|
4562
|
+
testID="undefined.day_2023-08-08"
|
|
5740
4563
|
>
|
|
5741
4564
|
<Text
|
|
5742
4565
|
allowFontScaling={false}
|
|
@@ -5755,7 +4578,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5755
4578
|
]
|
|
5756
4579
|
}
|
|
5757
4580
|
>
|
|
5758
|
-
|
|
4581
|
+
8
|
|
5759
4582
|
</Text>
|
|
5760
4583
|
<View
|
|
5761
4584
|
style={
|
|
@@ -5782,7 +4605,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5782
4605
|
}
|
|
5783
4606
|
>
|
|
5784
4607
|
<View
|
|
5785
|
-
accessibilityLabel=" Woensdag
|
|
4608
|
+
accessibilityLabel=" Woensdag 9 Augustus 2023 "
|
|
5786
4609
|
accessibilityState={
|
|
5787
4610
|
{
|
|
5788
4611
|
"busy": undefined,
|
|
@@ -5819,7 +4642,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5819
4642
|
"width": 42,
|
|
5820
4643
|
}
|
|
5821
4644
|
}
|
|
5822
|
-
testID="undefined.day_2023-
|
|
4645
|
+
testID="undefined.day_2023-08-09"
|
|
5823
4646
|
>
|
|
5824
4647
|
<Text
|
|
5825
4648
|
allowFontScaling={false}
|
|
@@ -5838,7 +4661,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5838
4661
|
]
|
|
5839
4662
|
}
|
|
5840
4663
|
>
|
|
5841
|
-
|
|
4664
|
+
9
|
|
5842
4665
|
</Text>
|
|
5843
4666
|
<View
|
|
5844
4667
|
style={
|
|
@@ -5865,7 +4688,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5865
4688
|
}
|
|
5866
4689
|
>
|
|
5867
4690
|
<View
|
|
5868
|
-
accessibilityLabel=" Donderdag
|
|
4691
|
+
accessibilityLabel=" Donderdag 10 Augustus 2023 "
|
|
5869
4692
|
accessibilityState={
|
|
5870
4693
|
{
|
|
5871
4694
|
"busy": undefined,
|
|
@@ -5902,7 +4725,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5902
4725
|
"width": 42,
|
|
5903
4726
|
}
|
|
5904
4727
|
}
|
|
5905
|
-
testID="undefined.day_2023-
|
|
4728
|
+
testID="undefined.day_2023-08-10"
|
|
5906
4729
|
>
|
|
5907
4730
|
<Text
|
|
5908
4731
|
allowFontScaling={false}
|
|
@@ -5921,7 +4744,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5921
4744
|
]
|
|
5922
4745
|
}
|
|
5923
4746
|
>
|
|
5924
|
-
|
|
4747
|
+
10
|
|
5925
4748
|
</Text>
|
|
5926
4749
|
<View
|
|
5927
4750
|
style={
|
|
@@ -5948,7 +4771,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5948
4771
|
}
|
|
5949
4772
|
>
|
|
5950
4773
|
<View
|
|
5951
|
-
accessibilityLabel=" Vrijdag
|
|
4774
|
+
accessibilityLabel=" Vrijdag 11 Augustus 2023 "
|
|
5952
4775
|
accessibilityState={
|
|
5953
4776
|
{
|
|
5954
4777
|
"busy": undefined,
|
|
@@ -5985,7 +4808,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5985
4808
|
"width": 42,
|
|
5986
4809
|
}
|
|
5987
4810
|
}
|
|
5988
|
-
testID="undefined.day_2023-
|
|
4811
|
+
testID="undefined.day_2023-08-11"
|
|
5989
4812
|
>
|
|
5990
4813
|
<Text
|
|
5991
4814
|
allowFontScaling={false}
|
|
@@ -6004,7 +4827,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6004
4827
|
]
|
|
6005
4828
|
}
|
|
6006
4829
|
>
|
|
6007
|
-
|
|
4830
|
+
11
|
|
6008
4831
|
</Text>
|
|
6009
4832
|
<View
|
|
6010
4833
|
style={
|
|
@@ -6031,7 +4854,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6031
4854
|
}
|
|
6032
4855
|
>
|
|
6033
4856
|
<View
|
|
6034
|
-
accessibilityLabel=" Zaterdag
|
|
4857
|
+
accessibilityLabel=" Zaterdag 12 Augustus 2023 "
|
|
6035
4858
|
accessibilityState={
|
|
6036
4859
|
{
|
|
6037
4860
|
"busy": undefined,
|
|
@@ -6068,7 +4891,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6068
4891
|
"width": 42,
|
|
6069
4892
|
}
|
|
6070
4893
|
}
|
|
6071
|
-
testID="undefined.day_2023-
|
|
4894
|
+
testID="undefined.day_2023-08-12"
|
|
6072
4895
|
>
|
|
6073
4896
|
<Text
|
|
6074
4897
|
allowFontScaling={false}
|
|
@@ -6087,7 +4910,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6087
4910
|
]
|
|
6088
4911
|
}
|
|
6089
4912
|
>
|
|
6090
|
-
|
|
4913
|
+
12
|
|
6091
4914
|
</Text>
|
|
6092
4915
|
<View
|
|
6093
4916
|
style={
|
|
@@ -6114,7 +4937,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6114
4937
|
}
|
|
6115
4938
|
>
|
|
6116
4939
|
<View
|
|
6117
|
-
accessibilityLabel=" Zondag
|
|
4940
|
+
accessibilityLabel=" Zondag 13 Augustus 2023 "
|
|
6118
4941
|
accessibilityState={
|
|
6119
4942
|
{
|
|
6120
4943
|
"busy": undefined,
|
|
@@ -6151,7 +4974,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6151
4974
|
"width": 42,
|
|
6152
4975
|
}
|
|
6153
4976
|
}
|
|
6154
|
-
testID="undefined.day_2023-
|
|
4977
|
+
testID="undefined.day_2023-08-13"
|
|
6155
4978
|
>
|
|
6156
4979
|
<Text
|
|
6157
4980
|
allowFontScaling={false}
|
|
@@ -6170,7 +4993,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6170
4993
|
]
|
|
6171
4994
|
}
|
|
6172
4995
|
>
|
|
6173
|
-
|
|
4996
|
+
13
|
|
6174
4997
|
</Text>
|
|
6175
4998
|
<View
|
|
6176
4999
|
style={
|
|
@@ -6207,7 +5030,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6207
5030
|
}
|
|
6208
5031
|
>
|
|
6209
5032
|
<View
|
|
6210
|
-
accessibilityLabel=" Maandag
|
|
5033
|
+
accessibilityLabel=" Maandag 14 Augustus 2023 "
|
|
6211
5034
|
accessibilityState={
|
|
6212
5035
|
{
|
|
6213
5036
|
"busy": undefined,
|
|
@@ -6244,7 +5067,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6244
5067
|
"width": 42,
|
|
6245
5068
|
}
|
|
6246
5069
|
}
|
|
6247
|
-
testID="undefined.day_2023-
|
|
5070
|
+
testID="undefined.day_2023-08-14"
|
|
6248
5071
|
>
|
|
6249
5072
|
<Text
|
|
6250
5073
|
allowFontScaling={false}
|
|
@@ -6263,7 +5086,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6263
5086
|
]
|
|
6264
5087
|
}
|
|
6265
5088
|
>
|
|
6266
|
-
|
|
5089
|
+
14
|
|
6267
5090
|
</Text>
|
|
6268
5091
|
<View
|
|
6269
5092
|
style={
|
|
@@ -6290,8 +5113,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6290
5113
|
}
|
|
6291
5114
|
>
|
|
6292
5115
|
<View
|
|
6293
|
-
accessibilityLabel="
|
|
6294
|
-
accessibilityRole="button"
|
|
5116
|
+
accessibilityLabel=" Dinsdag 15 Augustus 2023 "
|
|
6295
5117
|
accessibilityState={
|
|
6296
5118
|
{
|
|
6297
5119
|
"busy": undefined,
|
|
@@ -6322,17 +5144,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6322
5144
|
style={
|
|
6323
5145
|
{
|
|
6324
5146
|
"alignItems": "center",
|
|
6325
|
-
"borderColor": "#7B93DB",
|
|
6326
|
-
"borderRadius": 21,
|
|
6327
|
-
"borderStyle": "solid",
|
|
6328
|
-
"borderWidth": 1,
|
|
6329
5147
|
"height": 42,
|
|
6330
5148
|
"justifyContent": "center",
|
|
6331
5149
|
"opacity": 1,
|
|
6332
5150
|
"width": 42,
|
|
6333
5151
|
}
|
|
6334
5152
|
}
|
|
6335
|
-
testID="undefined.day_2023-
|
|
5153
|
+
testID="undefined.day_2023-08-15"
|
|
6336
5154
|
>
|
|
6337
5155
|
<Text
|
|
6338
5156
|
allowFontScaling={false}
|
|
@@ -6346,12 +5164,12 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6346
5164
|
"marginTop": 4,
|
|
6347
5165
|
},
|
|
6348
5166
|
{
|
|
6349
|
-
"color": "#
|
|
5167
|
+
"color": "#9AA5B1",
|
|
6350
5168
|
},
|
|
6351
5169
|
]
|
|
6352
5170
|
}
|
|
6353
5171
|
>
|
|
6354
|
-
|
|
5172
|
+
15
|
|
6355
5173
|
</Text>
|
|
6356
5174
|
<View
|
|
6357
5175
|
style={
|
|
@@ -6378,7 +5196,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6378
5196
|
}
|
|
6379
5197
|
>
|
|
6380
5198
|
<View
|
|
6381
|
-
accessibilityLabel=" Woensdag
|
|
5199
|
+
accessibilityLabel=" Woensdag 16 Augustus 2023 "
|
|
6382
5200
|
accessibilityState={
|
|
6383
5201
|
{
|
|
6384
5202
|
"busy": undefined,
|
|
@@ -6415,7 +5233,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6415
5233
|
"width": 42,
|
|
6416
5234
|
}
|
|
6417
5235
|
}
|
|
6418
|
-
testID="undefined.day_2023-
|
|
5236
|
+
testID="undefined.day_2023-08-16"
|
|
6419
5237
|
>
|
|
6420
5238
|
<Text
|
|
6421
5239
|
allowFontScaling={false}
|
|
@@ -6434,7 +5252,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6434
5252
|
]
|
|
6435
5253
|
}
|
|
6436
5254
|
>
|
|
6437
|
-
|
|
5255
|
+
16
|
|
6438
5256
|
</Text>
|
|
6439
5257
|
<View
|
|
6440
5258
|
style={
|
|
@@ -6461,7 +5279,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6461
5279
|
}
|
|
6462
5280
|
>
|
|
6463
5281
|
<View
|
|
6464
|
-
accessibilityLabel=" Donderdag
|
|
5282
|
+
accessibilityLabel=" Donderdag 17 Augustus 2023 "
|
|
6465
5283
|
accessibilityState={
|
|
6466
5284
|
{
|
|
6467
5285
|
"busy": undefined,
|
|
@@ -6498,7 +5316,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6498
5316
|
"width": 42,
|
|
6499
5317
|
}
|
|
6500
5318
|
}
|
|
6501
|
-
testID="undefined.day_2023-
|
|
5319
|
+
testID="undefined.day_2023-08-17"
|
|
6502
5320
|
>
|
|
6503
5321
|
<Text
|
|
6504
5322
|
allowFontScaling={false}
|
|
@@ -6517,7 +5335,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6517
5335
|
]
|
|
6518
5336
|
}
|
|
6519
5337
|
>
|
|
6520
|
-
|
|
5338
|
+
17
|
|
6521
5339
|
</Text>
|
|
6522
5340
|
<View
|
|
6523
5341
|
style={
|
|
@@ -6544,7 +5362,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6544
5362
|
}
|
|
6545
5363
|
>
|
|
6546
5364
|
<View
|
|
6547
|
-
accessibilityLabel=" Vrijdag
|
|
5365
|
+
accessibilityLabel=" Vrijdag 18 Augustus 2023 "
|
|
6548
5366
|
accessibilityState={
|
|
6549
5367
|
{
|
|
6550
5368
|
"busy": undefined,
|
|
@@ -6581,7 +5399,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6581
5399
|
"width": 42,
|
|
6582
5400
|
}
|
|
6583
5401
|
}
|
|
6584
|
-
testID="undefined.day_2023-
|
|
5402
|
+
testID="undefined.day_2023-08-18"
|
|
6585
5403
|
>
|
|
6586
5404
|
<Text
|
|
6587
5405
|
allowFontScaling={false}
|
|
@@ -6600,7 +5418,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6600
5418
|
]
|
|
6601
5419
|
}
|
|
6602
5420
|
>
|
|
6603
|
-
|
|
5421
|
+
18
|
|
6604
5422
|
</Text>
|
|
6605
5423
|
<View
|
|
6606
5424
|
style={
|
|
@@ -6627,7 +5445,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6627
5445
|
}
|
|
6628
5446
|
>
|
|
6629
5447
|
<View
|
|
6630
|
-
accessibilityLabel=" Zaterdag
|
|
5448
|
+
accessibilityLabel=" Zaterdag 19 Augustus 2023 "
|
|
6631
5449
|
accessibilityState={
|
|
6632
5450
|
{
|
|
6633
5451
|
"busy": undefined,
|
|
@@ -6664,7 +5482,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6664
5482
|
"width": 42,
|
|
6665
5483
|
}
|
|
6666
5484
|
}
|
|
6667
|
-
testID="undefined.day_2023-
|
|
5485
|
+
testID="undefined.day_2023-08-19"
|
|
6668
5486
|
>
|
|
6669
5487
|
<Text
|
|
6670
5488
|
allowFontScaling={false}
|
|
@@ -6683,7 +5501,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6683
5501
|
]
|
|
6684
5502
|
}
|
|
6685
5503
|
>
|
|
6686
|
-
|
|
5504
|
+
19
|
|
6687
5505
|
</Text>
|
|
6688
5506
|
<View
|
|
6689
5507
|
style={
|
|
@@ -6710,7 +5528,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6710
5528
|
}
|
|
6711
5529
|
>
|
|
6712
5530
|
<View
|
|
6713
|
-
accessibilityLabel=" Zondag
|
|
5531
|
+
accessibilityLabel=" Zondag 20 Augustus 2023 "
|
|
6714
5532
|
accessibilityState={
|
|
6715
5533
|
{
|
|
6716
5534
|
"busy": undefined,
|
|
@@ -6747,7 +5565,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6747
5565
|
"width": 42,
|
|
6748
5566
|
}
|
|
6749
5567
|
}
|
|
6750
|
-
testID="undefined.day_2023-
|
|
5568
|
+
testID="undefined.day_2023-08-20"
|
|
6751
5569
|
>
|
|
6752
5570
|
<Text
|
|
6753
5571
|
allowFontScaling={false}
|
|
@@ -6766,7 +5584,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6766
5584
|
]
|
|
6767
5585
|
}
|
|
6768
5586
|
>
|
|
6769
|
-
|
|
5587
|
+
20
|
|
6770
5588
|
</Text>
|
|
6771
5589
|
<View
|
|
6772
5590
|
style={
|
|
@@ -6803,7 +5621,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6803
5621
|
}
|
|
6804
5622
|
>
|
|
6805
5623
|
<View
|
|
6806
|
-
accessibilityLabel=" Maandag
|
|
5624
|
+
accessibilityLabel=" Maandag 21 Augustus 2023 "
|
|
6807
5625
|
accessibilityState={
|
|
6808
5626
|
{
|
|
6809
5627
|
"busy": undefined,
|
|
@@ -6840,7 +5658,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6840
5658
|
"width": 42,
|
|
6841
5659
|
}
|
|
6842
5660
|
}
|
|
6843
|
-
testID="undefined.day_2023-
|
|
5661
|
+
testID="undefined.day_2023-08-21"
|
|
6844
5662
|
>
|
|
6845
5663
|
<Text
|
|
6846
5664
|
allowFontScaling={false}
|
|
@@ -6859,7 +5677,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6859
5677
|
]
|
|
6860
5678
|
}
|
|
6861
5679
|
>
|
|
6862
|
-
|
|
5680
|
+
21
|
|
6863
5681
|
</Text>
|
|
6864
5682
|
<View
|
|
6865
5683
|
style={
|
|
@@ -6886,7 +5704,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6886
5704
|
}
|
|
6887
5705
|
>
|
|
6888
5706
|
<View
|
|
6889
|
-
accessibilityLabel=" Dinsdag
|
|
5707
|
+
accessibilityLabel=" Dinsdag 22 Augustus 2023 "
|
|
6890
5708
|
accessibilityState={
|
|
6891
5709
|
{
|
|
6892
5710
|
"busy": undefined,
|
|
@@ -6923,7 +5741,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6923
5741
|
"width": 42,
|
|
6924
5742
|
}
|
|
6925
5743
|
}
|
|
6926
|
-
testID="undefined.day_2023-
|
|
5744
|
+
testID="undefined.day_2023-08-22"
|
|
6927
5745
|
>
|
|
6928
5746
|
<Text
|
|
6929
5747
|
allowFontScaling={false}
|
|
@@ -6942,7 +5760,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6942
5760
|
]
|
|
6943
5761
|
}
|
|
6944
5762
|
>
|
|
6945
|
-
|
|
5763
|
+
22
|
|
6946
5764
|
</Text>
|
|
6947
5765
|
<View
|
|
6948
5766
|
style={
|
|
@@ -6969,7 +5787,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
6969
5787
|
}
|
|
6970
5788
|
>
|
|
6971
5789
|
<View
|
|
6972
|
-
accessibilityLabel=" Woensdag
|
|
5790
|
+
accessibilityLabel=" Woensdag 23 Augustus 2023 "
|
|
6973
5791
|
accessibilityState={
|
|
6974
5792
|
{
|
|
6975
5793
|
"busy": undefined,
|
|
@@ -7006,7 +5824,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7006
5824
|
"width": 42,
|
|
7007
5825
|
}
|
|
7008
5826
|
}
|
|
7009
|
-
testID="undefined.day_2023-
|
|
5827
|
+
testID="undefined.day_2023-08-23"
|
|
7010
5828
|
>
|
|
7011
5829
|
<Text
|
|
7012
5830
|
allowFontScaling={false}
|
|
@@ -7025,7 +5843,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7025
5843
|
]
|
|
7026
5844
|
}
|
|
7027
5845
|
>
|
|
7028
|
-
|
|
5846
|
+
23
|
|
7029
5847
|
</Text>
|
|
7030
5848
|
<View
|
|
7031
5849
|
style={
|
|
@@ -7052,7 +5870,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7052
5870
|
}
|
|
7053
5871
|
>
|
|
7054
5872
|
<View
|
|
7055
|
-
accessibilityLabel=" Donderdag
|
|
5873
|
+
accessibilityLabel=" Donderdag 24 Augustus 2023 "
|
|
7056
5874
|
accessibilityState={
|
|
7057
5875
|
{
|
|
7058
5876
|
"busy": undefined,
|
|
@@ -7089,7 +5907,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7089
5907
|
"width": 42,
|
|
7090
5908
|
}
|
|
7091
5909
|
}
|
|
7092
|
-
testID="undefined.day_2023-
|
|
5910
|
+
testID="undefined.day_2023-08-24"
|
|
7093
5911
|
>
|
|
7094
5912
|
<Text
|
|
7095
5913
|
allowFontScaling={false}
|
|
@@ -7108,7 +5926,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7108
5926
|
]
|
|
7109
5927
|
}
|
|
7110
5928
|
>
|
|
7111
|
-
|
|
5929
|
+
24
|
|
7112
5930
|
</Text>
|
|
7113
5931
|
<View
|
|
7114
5932
|
style={
|
|
@@ -7135,7 +5953,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7135
5953
|
}
|
|
7136
5954
|
>
|
|
7137
5955
|
<View
|
|
7138
|
-
accessibilityLabel=" Vrijdag
|
|
5956
|
+
accessibilityLabel=" Vrijdag 25 Augustus 2023 "
|
|
7139
5957
|
accessibilityState={
|
|
7140
5958
|
{
|
|
7141
5959
|
"busy": undefined,
|
|
@@ -7172,7 +5990,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7172
5990
|
"width": 42,
|
|
7173
5991
|
}
|
|
7174
5992
|
}
|
|
7175
|
-
testID="undefined.day_2023-
|
|
5993
|
+
testID="undefined.day_2023-08-25"
|
|
7176
5994
|
>
|
|
7177
5995
|
<Text
|
|
7178
5996
|
allowFontScaling={false}
|
|
@@ -7191,7 +6009,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7191
6009
|
]
|
|
7192
6010
|
}
|
|
7193
6011
|
>
|
|
7194
|
-
|
|
6012
|
+
25
|
|
7195
6013
|
</Text>
|
|
7196
6014
|
<View
|
|
7197
6015
|
style={
|
|
@@ -7218,7 +6036,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7218
6036
|
}
|
|
7219
6037
|
>
|
|
7220
6038
|
<View
|
|
7221
|
-
accessibilityLabel=" Zaterdag
|
|
6039
|
+
accessibilityLabel=" Zaterdag 26 Augustus 2023 "
|
|
7222
6040
|
accessibilityState={
|
|
7223
6041
|
{
|
|
7224
6042
|
"busy": undefined,
|
|
@@ -7255,7 +6073,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7255
6073
|
"width": 42,
|
|
7256
6074
|
}
|
|
7257
6075
|
}
|
|
7258
|
-
testID="undefined.day_2023-
|
|
6076
|
+
testID="undefined.day_2023-08-26"
|
|
7259
6077
|
>
|
|
7260
6078
|
<Text
|
|
7261
6079
|
allowFontScaling={false}
|
|
@@ -7274,7 +6092,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7274
6092
|
]
|
|
7275
6093
|
}
|
|
7276
6094
|
>
|
|
7277
|
-
|
|
6095
|
+
26
|
|
7278
6096
|
</Text>
|
|
7279
6097
|
<View
|
|
7280
6098
|
style={
|
|
@@ -7301,7 +6119,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7301
6119
|
}
|
|
7302
6120
|
>
|
|
7303
6121
|
<View
|
|
7304
|
-
accessibilityLabel=" Zondag
|
|
6122
|
+
accessibilityLabel=" Zondag 27 Augustus 2023 "
|
|
7305
6123
|
accessibilityState={
|
|
7306
6124
|
{
|
|
7307
6125
|
"busy": undefined,
|
|
@@ -7338,7 +6156,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7338
6156
|
"width": 42,
|
|
7339
6157
|
}
|
|
7340
6158
|
}
|
|
7341
|
-
testID="undefined.day_2023-
|
|
6159
|
+
testID="undefined.day_2023-08-27"
|
|
7342
6160
|
>
|
|
7343
6161
|
<Text
|
|
7344
6162
|
allowFontScaling={false}
|
|
@@ -7357,7 +6175,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7357
6175
|
]
|
|
7358
6176
|
}
|
|
7359
6177
|
>
|
|
7360
|
-
|
|
6178
|
+
27
|
|
7361
6179
|
</Text>
|
|
7362
6180
|
<View
|
|
7363
6181
|
style={
|
|
@@ -7394,7 +6212,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7394
6212
|
}
|
|
7395
6213
|
>
|
|
7396
6214
|
<View
|
|
7397
|
-
accessibilityLabel=" Maandag
|
|
6215
|
+
accessibilityLabel=" Maandag 28 Augustus 2023 "
|
|
7398
6216
|
accessibilityState={
|
|
7399
6217
|
{
|
|
7400
6218
|
"busy": undefined,
|
|
@@ -7431,7 +6249,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7431
6249
|
"width": 42,
|
|
7432
6250
|
}
|
|
7433
6251
|
}
|
|
7434
|
-
testID="undefined.day_2023-
|
|
6252
|
+
testID="undefined.day_2023-08-28"
|
|
7435
6253
|
>
|
|
7436
6254
|
<Text
|
|
7437
6255
|
allowFontScaling={false}
|
|
@@ -7450,7 +6268,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7450
6268
|
]
|
|
7451
6269
|
}
|
|
7452
6270
|
>
|
|
7453
|
-
|
|
6271
|
+
28
|
|
7454
6272
|
</Text>
|
|
7455
6273
|
<View
|
|
7456
6274
|
style={
|
|
@@ -7477,7 +6295,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7477
6295
|
}
|
|
7478
6296
|
>
|
|
7479
6297
|
<View
|
|
7480
|
-
accessibilityLabel=" Dinsdag
|
|
6298
|
+
accessibilityLabel=" Dinsdag 29 Augustus 2023 "
|
|
7481
6299
|
accessibilityState={
|
|
7482
6300
|
{
|
|
7483
6301
|
"busy": undefined,
|
|
@@ -7514,7 +6332,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7514
6332
|
"width": 42,
|
|
7515
6333
|
}
|
|
7516
6334
|
}
|
|
7517
|
-
testID="undefined.day_2023-08-
|
|
6335
|
+
testID="undefined.day_2023-08-29"
|
|
7518
6336
|
>
|
|
7519
6337
|
<Text
|
|
7520
6338
|
allowFontScaling={false}
|
|
@@ -7533,7 +6351,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7533
6351
|
]
|
|
7534
6352
|
}
|
|
7535
6353
|
>
|
|
7536
|
-
|
|
6354
|
+
29
|
|
7537
6355
|
</Text>
|
|
7538
6356
|
<View
|
|
7539
6357
|
style={
|
|
@@ -7560,7 +6378,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7560
6378
|
}
|
|
7561
6379
|
>
|
|
7562
6380
|
<View
|
|
7563
|
-
accessibilityLabel=" Woensdag
|
|
6381
|
+
accessibilityLabel=" Woensdag 30 Augustus 2023 "
|
|
7564
6382
|
accessibilityState={
|
|
7565
6383
|
{
|
|
7566
6384
|
"busy": undefined,
|
|
@@ -7597,7 +6415,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7597
6415
|
"width": 42,
|
|
7598
6416
|
}
|
|
7599
6417
|
}
|
|
7600
|
-
testID="undefined.day_2023-08-
|
|
6418
|
+
testID="undefined.day_2023-08-30"
|
|
7601
6419
|
>
|
|
7602
6420
|
<Text
|
|
7603
6421
|
allowFontScaling={false}
|
|
@@ -7616,7 +6434,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7616
6434
|
]
|
|
7617
6435
|
}
|
|
7618
6436
|
>
|
|
7619
|
-
|
|
6437
|
+
30
|
|
7620
6438
|
</Text>
|
|
7621
6439
|
<View
|
|
7622
6440
|
style={
|
|
@@ -7643,7 +6461,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7643
6461
|
}
|
|
7644
6462
|
>
|
|
7645
6463
|
<View
|
|
7646
|
-
accessibilityLabel=" Donderdag
|
|
6464
|
+
accessibilityLabel=" Donderdag 31 Augustus 2023 "
|
|
7647
6465
|
accessibilityState={
|
|
7648
6466
|
{
|
|
7649
6467
|
"busy": undefined,
|
|
@@ -7680,7 +6498,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7680
6498
|
"width": 42,
|
|
7681
6499
|
}
|
|
7682
6500
|
}
|
|
7683
|
-
testID="undefined.day_2023-08-
|
|
6501
|
+
testID="undefined.day_2023-08-31"
|
|
7684
6502
|
>
|
|
7685
6503
|
<Text
|
|
7686
6504
|
allowFontScaling={false}
|
|
@@ -7699,7 +6517,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7699
6517
|
]
|
|
7700
6518
|
}
|
|
7701
6519
|
>
|
|
7702
|
-
|
|
6520
|
+
31
|
|
7703
6521
|
</Text>
|
|
7704
6522
|
<View
|
|
7705
6523
|
style={
|
|
@@ -7726,7 +6544,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7726
6544
|
}
|
|
7727
6545
|
>
|
|
7728
6546
|
<View
|
|
7729
|
-
accessibilityLabel=" Vrijdag
|
|
6547
|
+
accessibilityLabel=" Vrijdag 1 September 2023 "
|
|
7730
6548
|
accessibilityState={
|
|
7731
6549
|
{
|
|
7732
6550
|
"busy": undefined,
|
|
@@ -7763,7 +6581,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7763
6581
|
"width": 42,
|
|
7764
6582
|
}
|
|
7765
6583
|
}
|
|
7766
|
-
testID="undefined.day_2023-
|
|
6584
|
+
testID="undefined.day_2023-09-01"
|
|
7767
6585
|
>
|
|
7768
6586
|
<Text
|
|
7769
6587
|
allowFontScaling={false}
|
|
@@ -7782,7 +6600,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7782
6600
|
]
|
|
7783
6601
|
}
|
|
7784
6602
|
>
|
|
7785
|
-
|
|
6603
|
+
1
|
|
7786
6604
|
</Text>
|
|
7787
6605
|
<View
|
|
7788
6606
|
style={
|
|
@@ -7809,7 +6627,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7809
6627
|
}
|
|
7810
6628
|
>
|
|
7811
6629
|
<View
|
|
7812
|
-
accessibilityLabel=" Zaterdag
|
|
6630
|
+
accessibilityLabel=" Zaterdag 2 September 2023 "
|
|
7813
6631
|
accessibilityState={
|
|
7814
6632
|
{
|
|
7815
6633
|
"busy": undefined,
|
|
@@ -7846,7 +6664,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7846
6664
|
"width": 42,
|
|
7847
6665
|
}
|
|
7848
6666
|
}
|
|
7849
|
-
testID="undefined.day_2023-
|
|
6667
|
+
testID="undefined.day_2023-09-02"
|
|
7850
6668
|
>
|
|
7851
6669
|
<Text
|
|
7852
6670
|
allowFontScaling={false}
|
|
@@ -7865,7 +6683,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7865
6683
|
]
|
|
7866
6684
|
}
|
|
7867
6685
|
>
|
|
7868
|
-
|
|
6686
|
+
2
|
|
7869
6687
|
</Text>
|
|
7870
6688
|
<View
|
|
7871
6689
|
style={
|
|
@@ -7892,7 +6710,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7892
6710
|
}
|
|
7893
6711
|
>
|
|
7894
6712
|
<View
|
|
7895
|
-
accessibilityLabel=" Zondag
|
|
6713
|
+
accessibilityLabel=" Zondag 3 September 2023 "
|
|
7896
6714
|
accessibilityState={
|
|
7897
6715
|
{
|
|
7898
6716
|
"busy": undefined,
|
|
@@ -7929,7 +6747,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7929
6747
|
"width": 42,
|
|
7930
6748
|
}
|
|
7931
6749
|
}
|
|
7932
|
-
testID="undefined.day_2023-
|
|
6750
|
+
testID="undefined.day_2023-09-03"
|
|
7933
6751
|
>
|
|
7934
6752
|
<Text
|
|
7935
6753
|
allowFontScaling={false}
|
|
@@ -7948,7 +6766,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
7948
6766
|
]
|
|
7949
6767
|
}
|
|
7950
6768
|
>
|
|
7951
|
-
|
|
6769
|
+
3
|
|
7952
6770
|
</Text>
|
|
7953
6771
|
<View
|
|
7954
6772
|
style={
|