@tactics/toddle-styleguide 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/App.tsx +42 -9
- package/index.d.ts +16 -7
- package/index.tsx +59 -40
- package/jest.config.js +2 -0
- package/package.json +4 -4
- package/src/components/atoms/avatar/avatar.component.d.ts +7 -7
- package/src/components/atoms/blocked-message/__snapshots__/blocked-message.test.js.snap +87 -0
- package/src/components/atoms/blocked-message/blocked-message.component.d.ts +7 -0
- package/src/components/atoms/blocked-message/blocked-message.component.tsx +23 -0
- package/src/components/atoms/blocked-message/blocked-message.preview.d.ts +1 -0
- package/src/components/atoms/blocked-message/blocked-message.preview.tsx +23 -0
- package/src/components/atoms/blocked-message/blocked-message.styles.d.ts +22 -0
- package/src/components/atoms/blocked-message/blocked-message.styles.js +25 -0
- package/src/components/atoms/blocked-message/blocked-message.test.js +12 -0
- package/src/components/atoms/button/button.component.d.ts +11 -6
- package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +1691 -613
- package/src/components/atoms/calendar/calendar.component.d.ts +11 -6
- package/src/components/atoms/calendar/calendar.test.js +4 -2
- package/src/components/atoms/calendar-select/__snapshots__/calendar-select.test.js.snap +247 -0
- package/src/components/atoms/calendar-select/calendar-select.component.d.ts +10 -0
- package/src/components/atoms/calendar-select/calendar-select.component.tsx +56 -0
- package/src/components/atoms/calendar-select/calendar-select.preview.d.ts +1 -0
- package/src/components/atoms/calendar-select/calendar-select.preview.tsx +17 -0
- package/src/components/atoms/calendar-select/calendar-select.styles.d.ts +24 -0
- package/src/components/atoms/calendar-select/calendar-select.styles.js +30 -0
- package/src/components/atoms/calendar-select/calendar-select.test.js +20 -0
- package/src/components/atoms/cancel-link/cancel-link.component.d.ts +4 -4
- package/src/components/atoms/check-switch/check-switch.component.d.ts +3 -3
- package/src/components/atoms/checkbox/checkbox.component.d.ts +9 -5
- package/src/components/atoms/child-list-item/child-list-item.component.d.ts +28 -16
- package/src/components/atoms/contact-item/contact-item.component.d.ts +13 -7
- package/src/components/atoms/contact-role/__snapshots__/contact-role.test.js.snap +75 -0
- package/src/components/atoms/contact-role/contact-role.component.d.ts +9 -0
- package/src/components/atoms/contact-role/contact-role.component.tsx +22 -0
- package/src/components/atoms/contact-role/contact-role.preview.d.ts +1 -0
- package/src/components/atoms/contact-role/contact-role.preview.tsx +17 -0
- package/src/components/atoms/contact-role/contact-role.styles.d.ts +19 -0
- package/src/components/atoms/contact-role/contact-role.styles.js +20 -0
- package/src/components/atoms/contact-role/contact-role.test.js +18 -0
- package/src/components/atoms/date-input/__snapshots__/date-input.test.js.snap +1 -1
- package/src/components/atoms/date-input/date-input.component.d.ts +7 -4
- package/src/components/atoms/date-input/date-input.test.js +3 -1
- package/src/components/atoms/day-select/components/day/day.component.d.ts +6 -6
- package/src/components/atoms/day-select/components/day/day.component.tsx +1 -1
- package/src/components/atoms/day-select/components/day/day.styles.d.ts +43 -36
- package/src/components/atoms/day-select/components/day/day.styles.js +3 -0
- package/src/components/atoms/day-select/day-select.component.d.ts +10 -6
- package/src/components/atoms/day-select/day-select.component.tsx +17 -14
- package/src/components/atoms/day-select/day-select.styles.d.ts +8 -8
- package/src/components/atoms/department_logo/__snapshots__/department-logo.test.js.snap +16 -0
- package/src/components/atoms/department_logo/department-logo.component.d.ts +7 -0
- package/src/components/atoms/department_logo/department-logo.component.tsx +17 -0
- package/src/components/atoms/department_logo/department-logo.preview.d.ts +1 -0
- package/src/components/atoms/department_logo/department-logo.preview.tsx +11 -0
- package/src/components/atoms/department_logo/department-logo.styles.d.ts +8 -0
- package/src/components/atoms/department_logo/department-logo.styles.js +11 -0
- package/src/components/atoms/department_logo/department-logo.test.js +12 -0
- package/src/components/atoms/filter-range/filter-range.component.d.ts +14 -7
- package/src/components/atoms/filter-tab/__snapshots__/filter-tab.test.js.snap +8 -2
- package/src/components/atoms/filter-tab/filter-tab.component.d.ts +9 -5
- package/src/components/atoms/filter-tab/filter-tab.component.tsx +3 -1
- package/src/components/atoms/filter-tab/filter-tab.preview.tsx +48 -5
- package/src/components/atoms/filter-tab/filter-tab.styles.js +6 -3
- package/src/components/atoms/filter-tab/filter-tab.test.js +6 -2
- package/src/components/atoms/form-actions/form-action.component.d.ts +4 -4
- package/src/components/atoms/image-bubble/image-bubble.component.d.ts +9 -6
- package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +0 -1
- package/src/components/atoms/increment-input/increment-input.component.d.ts +6 -3
- package/src/components/atoms/increment-input/increment-input.styles.js +0 -1
- package/src/components/atoms/info/info.component.d.ts +4 -4
- package/src/components/atoms/logo/logo.component.d.ts +4 -4
- package/src/components/atoms/pill/pill.component.d.ts +5 -5
- package/src/components/atoms/popover/components/backdrop/backdrop.component.d.ts +3 -3
- package/src/components/atoms/popover/components/foreground/foreground.component.d.ts +4 -4
- package/src/components/atoms/popover/components/modal/close/close.component.d.ts +4 -4
- package/src/components/atoms/popover/components/modal/heading/heading.component.d.ts +4 -4
- package/src/components/atoms/popover/components/modal/modal.component.d.ts +15 -8
- package/src/components/atoms/popover/components/modal/scroll-content/scroll-content.component.d.ts +5 -3
- package/src/components/atoms/popover/popover.component.d.ts +13 -7
- package/src/components/atoms/pressable-icon/pressable-icon.component.d.ts +10 -5
- package/src/components/atoms/quick-filter/quick-filter.component.d.ts +14 -8
- package/src/components/atoms/search/__snapshots__/search.test.js.snap +87 -0
- package/src/components/atoms/search/search.component.d.ts +12 -0
- package/src/components/atoms/search/search.component.tsx +32 -0
- package/src/components/atoms/search/search.preview.d.ts +1 -0
- package/src/components/atoms/search/search.preview.tsx +18 -0
- package/src/components/atoms/search/search.styles.d.ts +21 -0
- package/src/components/atoms/search/search.styles.js +26 -0
- package/src/components/atoms/search/search.test.js +20 -0
- package/src/components/atoms/select-list-item/__snapshots__/select-list-item.test.js.snap +2 -0
- package/src/components/atoms/select-list-item/select-list-item.component.d.ts +13 -7
- package/src/components/atoms/select-list-item/select-list-item.styles.js +1 -0
- package/src/components/atoms/select-picker/select-picker.component.d.ts +13 -8
- package/src/components/atoms/snackbar/snackbar.component.d.ts +5 -5
- package/src/components/atoms/swipe/swipe.component.d.ts +3 -3
- package/src/components/atoms/tag/tag.component.d.ts +13 -8
- package/src/components/atoms/text-bubble/text-bubble.component.d.ts +6 -6
- package/src/components/atoms/text-input/text-input.component.d.ts +10 -6
- package/src/components/atoms/text-input/text-input.preview.d.ts +1 -1
- package/src/components/atoms/time-tracker/time-tracker.component.d.ts +8 -5
- package/src/components/atoms/timeline/timeline.component.d.ts +6 -3
- package/src/components/atoms/wide-button/__snapshots__/wide-button.test.js.snap +93 -2
- package/src/components/atoms/wide-button/wide-button.component.d.ts +11 -5
- package/src/components/atoms/wide-button/wide-button.component.tsx +8 -2
- package/src/components/atoms/wide-button/wide-button.preview.tsx +10 -0
- package/src/components/atoms/wide-button/wide-button.styles.d.ts +3 -7
- package/src/components/atoms/wide-button/wide-button.styles.js +4 -2
- package/src/components/atoms/wide-button/wide-button.test.js +14 -0
- package/src/context/theme.context.d.ts +42 -42
- package/src/icons/index.d.ts +103 -51
- package/src/icons/outline/calendar/calendar.icon.d.ts +2 -2
- package/src/icons/outline/chat/chat.icon.d.ts +2 -2
- package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +2 -2
- package/src/icons/outline/check-circle/check-circle.icon.d.ts +2 -2
- package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +2 -2
- package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +2 -2
- package/src/icons/outline/clock/clock.icon.d.ts +2 -2
- package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +2 -2
- package/src/icons/outline/cross/cross.icon.d.ts +2 -2
- package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +2 -2
- package/src/icons/outline/document-text/document-text.icon.d.ts +2 -2
- package/src/icons/outline/exclamation/exclamation.icon.d.ts +2 -2
- package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +2 -2
- package/src/icons/outline/eye/eye.icon.d.ts +2 -2
- package/src/icons/outline/filter/filter.icon.d.ts +2 -2
- package/src/icons/outline/information-circle/information-circle.icon.d.ts +2 -2
- package/src/icons/outline/logout/logout.icon.d.ts +2 -2
- package/src/icons/outline/mail/mail.icon.d.ts +2 -2
- package/src/icons/outline/mail-open/mail-open.icon.d.ts +2 -2
- package/src/icons/outline/menu/menu.icon.d.ts +2 -2
- package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +2 -2
- package/src/icons/outline/office-building/office-building.icon.d.ts +2 -2
- package/src/icons/outline/outline.d.ts +95 -39
- package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +2 -2
- package/src/icons/outline/paperclip/paperclip.icon.d.ts +2 -2
- package/src/icons/outline/pencil/pencil.icon.d.ts +2 -2
- package/src/icons/outline/phone/phone.icon.d.ts +2 -2
- package/src/icons/outline/plus/plus.icon.d.ts +2 -2
- package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +2 -2
- package/src/icons/outline/qrcode/qrcode.icon.d.ts +2 -2
- package/src/icons/outline/refresh/refresh.icon.d.ts +2 -2
- package/src/icons/outline/search/search.icon.d.ts +2 -2
- package/src/icons/outline/selector/selector.icon.d.ts +2 -2
- package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +2 -2
- package/src/icons/outline/status-online/status-online.icon.d.ts +2 -2
- package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +2 -2
- package/src/icons/outline/trash/trash.icon.d.ts +2 -2
- package/src/icons/outline/user/user.icon.d.ts +2 -2
- package/src/icons/outline/user-group/user-group.icon.d.ts +2 -2
- package/src/icons/outline/users/users.icon.d.ts +2 -2
- package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +2 -2
- package/src/icons/solid/clock/clock-solid.icon.d.ts +2 -2
- package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +2 -2
- package/src/icons/solid/pencil/pencil-solid.icon.d.ts +2 -2
- package/src/icons/solid/phone/phone-solid.icon.d.ts +2 -2
- package/src/icons/solid/refresh/refresh-solid.icon.d.ts +2 -2
- package/src/icons/solid/solid.d.ts +18 -8
- package/src/icons/solid/status-online/status-online-solid.icon.d.ts +2 -2
- package/src/icons/solid/trash/trash-solid.icon.d.ts +2 -2
- package/src/models/initials.model.d.ts +5 -5
- package/src/theme/font/font.d.ts +70 -70
- package/src/theme/font/index.d.ts +3 -3
- package/src/theme/provider/index.d.ts +3 -3
- package/src/theme/provider/parent.theme.d.ts +40 -40
- package/src/theme/provider/staff-member.theme.d.ts +40 -40
- package/src/theme/scale/index.d.ts +10 -10
- package/src/types/bubble-alignment.enum.d.ts +2 -2
- package/src/types/icontype.type.d.ts +1 -1
- package/src/types/keyboard-types.enum.d.ts +7 -7
- package/src/types/size.enum.d.ts +3 -3
- package/src/types/visual-state.enum.d.ts +4 -4
- package/src/util/date.d.ts +1 -1
|
@@ -170,7 +170,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
170
170
|
}
|
|
171
171
|
testID="undefined.header.title"
|
|
172
172
|
>
|
|
173
|
-
|
|
173
|
+
Januari 2023
|
|
174
174
|
</Text>
|
|
175
175
|
</View>
|
|
176
176
|
<View
|
|
@@ -434,7 +434,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
434
434
|
}
|
|
435
435
|
>
|
|
436
436
|
<View
|
|
437
|
-
accessibilityLabel=" Maandag
|
|
437
|
+
accessibilityLabel=" Maandag 26 December 2022 "
|
|
438
438
|
accessibilityState={
|
|
439
439
|
{
|
|
440
440
|
"disabled": false,
|
|
@@ -459,7 +459,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
459
459
|
"width": 42,
|
|
460
460
|
}
|
|
461
461
|
}
|
|
462
|
-
testID="undefined.day_2022-
|
|
462
|
+
testID="undefined.day_2022-12-26"
|
|
463
463
|
>
|
|
464
464
|
<Text
|
|
465
465
|
allowFontScaling={false}
|
|
@@ -478,7 +478,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
478
478
|
]
|
|
479
479
|
}
|
|
480
480
|
>
|
|
481
|
-
|
|
481
|
+
26
|
|
482
482
|
</Text>
|
|
483
483
|
<View
|
|
484
484
|
style={
|
|
@@ -505,7 +505,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
505
505
|
}
|
|
506
506
|
>
|
|
507
507
|
<View
|
|
508
|
-
accessibilityLabel=" Dinsdag
|
|
508
|
+
accessibilityLabel=" Dinsdag 27 December 2022 "
|
|
509
509
|
accessibilityState={
|
|
510
510
|
{
|
|
511
511
|
"disabled": false,
|
|
@@ -530,7 +530,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
530
530
|
"width": 42,
|
|
531
531
|
}
|
|
532
532
|
}
|
|
533
|
-
testID="undefined.day_2022-
|
|
533
|
+
testID="undefined.day_2022-12-27"
|
|
534
534
|
>
|
|
535
535
|
<Text
|
|
536
536
|
allowFontScaling={false}
|
|
@@ -549,7 +549,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
549
549
|
]
|
|
550
550
|
}
|
|
551
551
|
>
|
|
552
|
-
|
|
552
|
+
27
|
|
553
553
|
</Text>
|
|
554
554
|
<View
|
|
555
555
|
style={
|
|
@@ -576,7 +576,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
576
576
|
}
|
|
577
577
|
>
|
|
578
578
|
<View
|
|
579
|
-
accessibilityLabel=" Woensdag
|
|
579
|
+
accessibilityLabel=" Woensdag 28 December 2022 "
|
|
580
580
|
accessibilityState={
|
|
581
581
|
{
|
|
582
582
|
"disabled": false,
|
|
@@ -601,7 +601,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
601
601
|
"width": 42,
|
|
602
602
|
}
|
|
603
603
|
}
|
|
604
|
-
testID="undefined.day_2022-
|
|
604
|
+
testID="undefined.day_2022-12-28"
|
|
605
605
|
>
|
|
606
606
|
<Text
|
|
607
607
|
allowFontScaling={false}
|
|
@@ -620,7 +620,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
620
620
|
]
|
|
621
621
|
}
|
|
622
622
|
>
|
|
623
|
-
|
|
623
|
+
28
|
|
624
624
|
</Text>
|
|
625
625
|
<View
|
|
626
626
|
style={
|
|
@@ -647,8 +647,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
647
647
|
}
|
|
648
648
|
>
|
|
649
649
|
<View
|
|
650
|
-
accessibilityLabel=" Donderdag
|
|
651
|
-
accessibilityRole="button"
|
|
650
|
+
accessibilityLabel=" Donderdag 29 December 2022 "
|
|
652
651
|
accessibilityState={
|
|
653
652
|
{
|
|
654
653
|
"disabled": false,
|
|
@@ -673,7 +672,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
673
672
|
"width": 42,
|
|
674
673
|
}
|
|
675
674
|
}
|
|
676
|
-
testID="undefined.day_2022-12-
|
|
675
|
+
testID="undefined.day_2022-12-29"
|
|
677
676
|
>
|
|
678
677
|
<Text
|
|
679
678
|
allowFontScaling={false}
|
|
@@ -686,10 +685,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
686
685
|
"lineHeight": 22.4,
|
|
687
686
|
"marginTop": 4,
|
|
688
687
|
},
|
|
688
|
+
{
|
|
689
|
+
"color": "#9AA5B1",
|
|
690
|
+
},
|
|
689
691
|
]
|
|
690
692
|
}
|
|
691
693
|
>
|
|
692
|
-
|
|
694
|
+
29
|
|
693
695
|
</Text>
|
|
694
696
|
<View
|
|
695
697
|
style={
|
|
@@ -716,8 +718,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
716
718
|
}
|
|
717
719
|
>
|
|
718
720
|
<View
|
|
719
|
-
accessibilityLabel=" Vrijdag
|
|
720
|
-
accessibilityRole="button"
|
|
721
|
+
accessibilityLabel=" Vrijdag 30 December 2022 "
|
|
721
722
|
accessibilityState={
|
|
722
723
|
{
|
|
723
724
|
"disabled": false,
|
|
@@ -742,7 +743,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
742
743
|
"width": 42,
|
|
743
744
|
}
|
|
744
745
|
}
|
|
745
|
-
testID="undefined.day_2022-12-
|
|
746
|
+
testID="undefined.day_2022-12-30"
|
|
746
747
|
>
|
|
747
748
|
<Text
|
|
748
749
|
allowFontScaling={false}
|
|
@@ -755,10 +756,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
755
756
|
"lineHeight": 22.4,
|
|
756
757
|
"marginTop": 4,
|
|
757
758
|
},
|
|
759
|
+
{
|
|
760
|
+
"color": "#9AA5B1",
|
|
761
|
+
},
|
|
758
762
|
]
|
|
759
763
|
}
|
|
760
764
|
>
|
|
761
|
-
|
|
765
|
+
30
|
|
762
766
|
</Text>
|
|
763
767
|
<View
|
|
764
768
|
style={
|
|
@@ -785,8 +789,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
785
789
|
}
|
|
786
790
|
>
|
|
787
791
|
<View
|
|
788
|
-
accessibilityLabel=" Zaterdag
|
|
789
|
-
accessibilityRole="button"
|
|
792
|
+
accessibilityLabel=" Zaterdag 31 December 2022 "
|
|
790
793
|
accessibilityState={
|
|
791
794
|
{
|
|
792
795
|
"disabled": false,
|
|
@@ -811,7 +814,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
811
814
|
"width": 42,
|
|
812
815
|
}
|
|
813
816
|
}
|
|
814
|
-
testID="undefined.day_2022-12-
|
|
817
|
+
testID="undefined.day_2022-12-31"
|
|
815
818
|
>
|
|
816
819
|
<Text
|
|
817
820
|
allowFontScaling={false}
|
|
@@ -824,10 +827,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
824
827
|
"lineHeight": 22.4,
|
|
825
828
|
"marginTop": 4,
|
|
826
829
|
},
|
|
830
|
+
{
|
|
831
|
+
"color": "#9AA5B1",
|
|
832
|
+
},
|
|
827
833
|
]
|
|
828
834
|
}
|
|
829
835
|
>
|
|
830
|
-
|
|
836
|
+
31
|
|
831
837
|
</Text>
|
|
832
838
|
<View
|
|
833
839
|
style={
|
|
@@ -854,7 +860,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
854
860
|
}
|
|
855
861
|
>
|
|
856
862
|
<View
|
|
857
|
-
accessibilityLabel=" Zondag
|
|
863
|
+
accessibilityLabel=" Zondag 1 Januari 2023 "
|
|
858
864
|
accessibilityRole="button"
|
|
859
865
|
accessibilityState={
|
|
860
866
|
{
|
|
@@ -880,7 +886,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
880
886
|
"width": 42,
|
|
881
887
|
}
|
|
882
888
|
}
|
|
883
|
-
testID="undefined.
|
|
889
|
+
testID="undefined.day_2023-01-01"
|
|
884
890
|
>
|
|
885
891
|
<Text
|
|
886
892
|
allowFontScaling={false}
|
|
@@ -896,7 +902,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
896
902
|
]
|
|
897
903
|
}
|
|
898
904
|
>
|
|
899
|
-
|
|
905
|
+
1
|
|
900
906
|
</Text>
|
|
901
907
|
<View
|
|
902
908
|
style={
|
|
@@ -933,7 +939,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
933
939
|
}
|
|
934
940
|
>
|
|
935
941
|
<View
|
|
936
|
-
accessibilityLabel=" Maandag
|
|
942
|
+
accessibilityLabel=" Maandag 2 Januari 2023 "
|
|
937
943
|
accessibilityRole="button"
|
|
938
944
|
accessibilityState={
|
|
939
945
|
{
|
|
@@ -959,7 +965,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
959
965
|
"width": 42,
|
|
960
966
|
}
|
|
961
967
|
}
|
|
962
|
-
testID="undefined.
|
|
968
|
+
testID="undefined.day_2023-01-02"
|
|
963
969
|
>
|
|
964
970
|
<Text
|
|
965
971
|
allowFontScaling={false}
|
|
@@ -975,7 +981,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
975
981
|
]
|
|
976
982
|
}
|
|
977
983
|
>
|
|
978
|
-
|
|
984
|
+
2
|
|
979
985
|
</Text>
|
|
980
986
|
<View
|
|
981
987
|
style={
|
|
@@ -1002,7 +1008,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1002
1008
|
}
|
|
1003
1009
|
>
|
|
1004
1010
|
<View
|
|
1005
|
-
accessibilityLabel=" Dinsdag
|
|
1011
|
+
accessibilityLabel=" Dinsdag 3 Januari 2023 "
|
|
1006
1012
|
accessibilityRole="button"
|
|
1007
1013
|
accessibilityState={
|
|
1008
1014
|
{
|
|
@@ -1028,7 +1034,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1028
1034
|
"width": 42,
|
|
1029
1035
|
}
|
|
1030
1036
|
}
|
|
1031
|
-
testID="undefined.
|
|
1037
|
+
testID="undefined.day_2023-01-03"
|
|
1032
1038
|
>
|
|
1033
1039
|
<Text
|
|
1034
1040
|
allowFontScaling={false}
|
|
@@ -1044,7 +1050,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1044
1050
|
]
|
|
1045
1051
|
}
|
|
1046
1052
|
>
|
|
1047
|
-
|
|
1053
|
+
3
|
|
1048
1054
|
</Text>
|
|
1049
1055
|
<View
|
|
1050
1056
|
style={
|
|
@@ -1071,7 +1077,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1071
1077
|
}
|
|
1072
1078
|
>
|
|
1073
1079
|
<View
|
|
1074
|
-
accessibilityLabel=" Woensdag
|
|
1080
|
+
accessibilityLabel=" Woensdag 4 Januari 2023 "
|
|
1075
1081
|
accessibilityRole="button"
|
|
1076
1082
|
accessibilityState={
|
|
1077
1083
|
{
|
|
@@ -1097,7 +1103,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1097
1103
|
"width": 42,
|
|
1098
1104
|
}
|
|
1099
1105
|
}
|
|
1100
|
-
testID="undefined.
|
|
1106
|
+
testID="undefined.day_2023-01-04"
|
|
1101
1107
|
>
|
|
1102
1108
|
<Text
|
|
1103
1109
|
allowFontScaling={false}
|
|
@@ -1113,7 +1119,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1113
1119
|
]
|
|
1114
1120
|
}
|
|
1115
1121
|
>
|
|
1116
|
-
|
|
1122
|
+
4
|
|
1117
1123
|
</Text>
|
|
1118
1124
|
<View
|
|
1119
1125
|
style={
|
|
@@ -1140,7 +1146,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1140
1146
|
}
|
|
1141
1147
|
>
|
|
1142
1148
|
<View
|
|
1143
|
-
accessibilityLabel=" Donderdag
|
|
1149
|
+
accessibilityLabel=" Donderdag 5 Januari 2023 "
|
|
1144
1150
|
accessibilityRole="button"
|
|
1145
1151
|
accessibilityState={
|
|
1146
1152
|
{
|
|
@@ -1166,7 +1172,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1166
1172
|
"width": 42,
|
|
1167
1173
|
}
|
|
1168
1174
|
}
|
|
1169
|
-
testID="undefined.
|
|
1175
|
+
testID="undefined.day_2023-01-05"
|
|
1170
1176
|
>
|
|
1171
1177
|
<Text
|
|
1172
1178
|
allowFontScaling={false}
|
|
@@ -1182,7 +1188,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1182
1188
|
]
|
|
1183
1189
|
}
|
|
1184
1190
|
>
|
|
1185
|
-
|
|
1191
|
+
5
|
|
1186
1192
|
</Text>
|
|
1187
1193
|
<View
|
|
1188
1194
|
style={
|
|
@@ -1209,7 +1215,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1209
1215
|
}
|
|
1210
1216
|
>
|
|
1211
1217
|
<View
|
|
1212
|
-
accessibilityLabel=" Vrijdag
|
|
1218
|
+
accessibilityLabel=" Vrijdag 6 Januari 2023 "
|
|
1213
1219
|
accessibilityRole="button"
|
|
1214
1220
|
accessibilityState={
|
|
1215
1221
|
{
|
|
@@ -1235,7 +1241,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1235
1241
|
"width": 42,
|
|
1236
1242
|
}
|
|
1237
1243
|
}
|
|
1238
|
-
testID="undefined.
|
|
1244
|
+
testID="undefined.day_2023-01-06"
|
|
1239
1245
|
>
|
|
1240
1246
|
<Text
|
|
1241
1247
|
allowFontScaling={false}
|
|
@@ -1251,7 +1257,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1251
1257
|
]
|
|
1252
1258
|
}
|
|
1253
1259
|
>
|
|
1254
|
-
|
|
1260
|
+
6
|
|
1255
1261
|
</Text>
|
|
1256
1262
|
<View
|
|
1257
1263
|
style={
|
|
@@ -1278,7 +1284,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1278
1284
|
}
|
|
1279
1285
|
>
|
|
1280
1286
|
<View
|
|
1281
|
-
accessibilityLabel=" Zaterdag
|
|
1287
|
+
accessibilityLabel=" Zaterdag 7 Januari 2023 "
|
|
1282
1288
|
accessibilityRole="button"
|
|
1283
1289
|
accessibilityState={
|
|
1284
1290
|
{
|
|
@@ -1304,7 +1310,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1304
1310
|
"width": 42,
|
|
1305
1311
|
}
|
|
1306
1312
|
}
|
|
1307
|
-
testID="undefined.
|
|
1313
|
+
testID="undefined.day_2023-01-07"
|
|
1308
1314
|
>
|
|
1309
1315
|
<Text
|
|
1310
1316
|
allowFontScaling={false}
|
|
@@ -1320,7 +1326,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1320
1326
|
]
|
|
1321
1327
|
}
|
|
1322
1328
|
>
|
|
1323
|
-
|
|
1329
|
+
7
|
|
1324
1330
|
</Text>
|
|
1325
1331
|
<View
|
|
1326
1332
|
style={
|
|
@@ -1347,7 +1353,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1347
1353
|
}
|
|
1348
1354
|
>
|
|
1349
1355
|
<View
|
|
1350
|
-
accessibilityLabel=" Zondag
|
|
1356
|
+
accessibilityLabel=" Zondag 8 Januari 2023 "
|
|
1351
1357
|
accessibilityRole="button"
|
|
1352
1358
|
accessibilityState={
|
|
1353
1359
|
{
|
|
@@ -1373,7 +1379,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1373
1379
|
"width": 42,
|
|
1374
1380
|
}
|
|
1375
1381
|
}
|
|
1376
|
-
testID="undefined.
|
|
1382
|
+
testID="undefined.day_2023-01-08"
|
|
1377
1383
|
>
|
|
1378
1384
|
<Text
|
|
1379
1385
|
allowFontScaling={false}
|
|
@@ -1389,7 +1395,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1389
1395
|
]
|
|
1390
1396
|
}
|
|
1391
1397
|
>
|
|
1392
|
-
|
|
1398
|
+
8
|
|
1393
1399
|
</Text>
|
|
1394
1400
|
<View
|
|
1395
1401
|
style={
|
|
@@ -1426,7 +1432,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1426
1432
|
}
|
|
1427
1433
|
>
|
|
1428
1434
|
<View
|
|
1429
|
-
accessibilityLabel=" Maandag
|
|
1435
|
+
accessibilityLabel=" Maandag 9 Januari 2023 "
|
|
1430
1436
|
accessibilityRole="button"
|
|
1431
1437
|
accessibilityState={
|
|
1432
1438
|
{
|
|
@@ -1452,7 +1458,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1452
1458
|
"width": 42,
|
|
1453
1459
|
}
|
|
1454
1460
|
}
|
|
1455
|
-
testID="undefined.
|
|
1461
|
+
testID="undefined.day_2023-01-09"
|
|
1456
1462
|
>
|
|
1457
1463
|
<Text
|
|
1458
1464
|
allowFontScaling={false}
|
|
@@ -1468,7 +1474,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1468
1474
|
]
|
|
1469
1475
|
}
|
|
1470
1476
|
>
|
|
1471
|
-
|
|
1477
|
+
9
|
|
1472
1478
|
</Text>
|
|
1473
1479
|
<View
|
|
1474
1480
|
style={
|
|
@@ -1495,7 +1501,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1495
1501
|
}
|
|
1496
1502
|
>
|
|
1497
1503
|
<View
|
|
1498
|
-
accessibilityLabel=" Dinsdag
|
|
1504
|
+
accessibilityLabel="today Dinsdag 10 Januari 2023 "
|
|
1499
1505
|
accessibilityRole="button"
|
|
1500
1506
|
accessibilityState={
|
|
1501
1507
|
{
|
|
@@ -1515,13 +1521,17 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1515
1521
|
style={
|
|
1516
1522
|
{
|
|
1517
1523
|
"alignItems": "center",
|
|
1524
|
+
"borderColor": "#7B93DB",
|
|
1525
|
+
"borderRadius": 21,
|
|
1526
|
+
"borderStyle": "solid",
|
|
1527
|
+
"borderWidth": 1,
|
|
1518
1528
|
"height": 42,
|
|
1519
1529
|
"justifyContent": "center",
|
|
1520
1530
|
"opacity": 1,
|
|
1521
1531
|
"width": 42,
|
|
1522
1532
|
}
|
|
1523
1533
|
}
|
|
1524
|
-
testID="undefined.
|
|
1534
|
+
testID="undefined.day_2023-01-10"
|
|
1525
1535
|
>
|
|
1526
1536
|
<Text
|
|
1527
1537
|
allowFontScaling={false}
|
|
@@ -1534,10 +1544,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1534
1544
|
"lineHeight": 22.4,
|
|
1535
1545
|
"marginTop": 4,
|
|
1536
1546
|
},
|
|
1547
|
+
{
|
|
1548
|
+
"color": "#7B93DB",
|
|
1549
|
+
},
|
|
1537
1550
|
]
|
|
1538
1551
|
}
|
|
1539
1552
|
>
|
|
1540
|
-
|
|
1553
|
+
10
|
|
1541
1554
|
</Text>
|
|
1542
1555
|
<View
|
|
1543
1556
|
style={
|
|
@@ -1564,7 +1577,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1564
1577
|
}
|
|
1565
1578
|
>
|
|
1566
1579
|
<View
|
|
1567
|
-
accessibilityLabel=" Woensdag
|
|
1580
|
+
accessibilityLabel=" Woensdag 11 Januari 2023 "
|
|
1568
1581
|
accessibilityRole="button"
|
|
1569
1582
|
accessibilityState={
|
|
1570
1583
|
{
|
|
@@ -1590,7 +1603,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1590
1603
|
"width": 42,
|
|
1591
1604
|
}
|
|
1592
1605
|
}
|
|
1593
|
-
testID="undefined.
|
|
1606
|
+
testID="undefined.day_2023-01-11"
|
|
1594
1607
|
>
|
|
1595
1608
|
<Text
|
|
1596
1609
|
allowFontScaling={false}
|
|
@@ -1606,7 +1619,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1606
1619
|
]
|
|
1607
1620
|
}
|
|
1608
1621
|
>
|
|
1609
|
-
|
|
1622
|
+
11
|
|
1610
1623
|
</Text>
|
|
1611
1624
|
<View
|
|
1612
1625
|
style={
|
|
@@ -1633,7 +1646,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1633
1646
|
}
|
|
1634
1647
|
>
|
|
1635
1648
|
<View
|
|
1636
|
-
accessibilityLabel=" Donderdag
|
|
1649
|
+
accessibilityLabel=" Donderdag 12 Januari 2023 "
|
|
1637
1650
|
accessibilityRole="button"
|
|
1638
1651
|
accessibilityState={
|
|
1639
1652
|
{
|
|
@@ -1659,7 +1672,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1659
1672
|
"width": 42,
|
|
1660
1673
|
}
|
|
1661
1674
|
}
|
|
1662
|
-
testID="undefined.
|
|
1675
|
+
testID="undefined.day_2023-01-12"
|
|
1663
1676
|
>
|
|
1664
1677
|
<Text
|
|
1665
1678
|
allowFontScaling={false}
|
|
@@ -1675,7 +1688,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1675
1688
|
]
|
|
1676
1689
|
}
|
|
1677
1690
|
>
|
|
1678
|
-
|
|
1691
|
+
12
|
|
1679
1692
|
</Text>
|
|
1680
1693
|
<View
|
|
1681
1694
|
style={
|
|
@@ -1702,7 +1715,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1702
1715
|
}
|
|
1703
1716
|
>
|
|
1704
1717
|
<View
|
|
1705
|
-
accessibilityLabel=" Vrijdag
|
|
1718
|
+
accessibilityLabel=" Vrijdag 13 Januari 2023 "
|
|
1706
1719
|
accessibilityRole="button"
|
|
1707
1720
|
accessibilityState={
|
|
1708
1721
|
{
|
|
@@ -1728,7 +1741,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1728
1741
|
"width": 42,
|
|
1729
1742
|
}
|
|
1730
1743
|
}
|
|
1731
|
-
testID="undefined.
|
|
1744
|
+
testID="undefined.day_2023-01-13"
|
|
1732
1745
|
>
|
|
1733
1746
|
<Text
|
|
1734
1747
|
allowFontScaling={false}
|
|
@@ -1744,7 +1757,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1744
1757
|
]
|
|
1745
1758
|
}
|
|
1746
1759
|
>
|
|
1747
|
-
|
|
1760
|
+
13
|
|
1748
1761
|
</Text>
|
|
1749
1762
|
<View
|
|
1750
1763
|
style={
|
|
@@ -1771,7 +1784,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1771
1784
|
}
|
|
1772
1785
|
>
|
|
1773
1786
|
<View
|
|
1774
|
-
accessibilityLabel=" Zaterdag
|
|
1787
|
+
accessibilityLabel=" Zaterdag 14 Januari 2023 "
|
|
1775
1788
|
accessibilityRole="button"
|
|
1776
1789
|
accessibilityState={
|
|
1777
1790
|
{
|
|
@@ -1797,7 +1810,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1797
1810
|
"width": 42,
|
|
1798
1811
|
}
|
|
1799
1812
|
}
|
|
1800
|
-
testID="undefined.
|
|
1813
|
+
testID="undefined.day_2023-01-14"
|
|
1801
1814
|
>
|
|
1802
1815
|
<Text
|
|
1803
1816
|
allowFontScaling={false}
|
|
@@ -1813,7 +1826,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1813
1826
|
]
|
|
1814
1827
|
}
|
|
1815
1828
|
>
|
|
1816
|
-
|
|
1829
|
+
14
|
|
1817
1830
|
</Text>
|
|
1818
1831
|
<View
|
|
1819
1832
|
style={
|
|
@@ -1840,7 +1853,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1840
1853
|
}
|
|
1841
1854
|
>
|
|
1842
1855
|
<View
|
|
1843
|
-
accessibilityLabel=" Zondag
|
|
1856
|
+
accessibilityLabel=" Zondag 15 Januari 2023 "
|
|
1844
1857
|
accessibilityRole="button"
|
|
1845
1858
|
accessibilityState={
|
|
1846
1859
|
{
|
|
@@ -1866,7 +1879,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1866
1879
|
"width": 42,
|
|
1867
1880
|
}
|
|
1868
1881
|
}
|
|
1869
|
-
testID="undefined.
|
|
1882
|
+
testID="undefined.day_2023-01-15"
|
|
1870
1883
|
>
|
|
1871
1884
|
<Text
|
|
1872
1885
|
allowFontScaling={false}
|
|
@@ -1882,7 +1895,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1882
1895
|
]
|
|
1883
1896
|
}
|
|
1884
1897
|
>
|
|
1885
|
-
|
|
1898
|
+
15
|
|
1886
1899
|
</Text>
|
|
1887
1900
|
<View
|
|
1888
1901
|
style={
|
|
@@ -1919,7 +1932,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1919
1932
|
}
|
|
1920
1933
|
>
|
|
1921
1934
|
<View
|
|
1922
|
-
accessibilityLabel=" Maandag
|
|
1935
|
+
accessibilityLabel=" Maandag 16 Januari 2023 "
|
|
1923
1936
|
accessibilityRole="button"
|
|
1924
1937
|
accessibilityState={
|
|
1925
1938
|
{
|
|
@@ -1945,7 +1958,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1945
1958
|
"width": 42,
|
|
1946
1959
|
}
|
|
1947
1960
|
}
|
|
1948
|
-
testID="undefined.
|
|
1961
|
+
testID="undefined.day_2023-01-16"
|
|
1949
1962
|
>
|
|
1950
1963
|
<Text
|
|
1951
1964
|
allowFontScaling={false}
|
|
@@ -1961,7 +1974,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1961
1974
|
]
|
|
1962
1975
|
}
|
|
1963
1976
|
>
|
|
1964
|
-
|
|
1977
|
+
16
|
|
1965
1978
|
</Text>
|
|
1966
1979
|
<View
|
|
1967
1980
|
style={
|
|
@@ -1988,7 +2001,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
1988
2001
|
}
|
|
1989
2002
|
>
|
|
1990
2003
|
<View
|
|
1991
|
-
accessibilityLabel=" Dinsdag
|
|
2004
|
+
accessibilityLabel=" Dinsdag 17 Januari 2023 "
|
|
1992
2005
|
accessibilityRole="button"
|
|
1993
2006
|
accessibilityState={
|
|
1994
2007
|
{
|
|
@@ -2014,7 +2027,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2014
2027
|
"width": 42,
|
|
2015
2028
|
}
|
|
2016
2029
|
}
|
|
2017
|
-
testID="undefined.
|
|
2030
|
+
testID="undefined.day_2023-01-17"
|
|
2018
2031
|
>
|
|
2019
2032
|
<Text
|
|
2020
2033
|
allowFontScaling={false}
|
|
@@ -2030,7 +2043,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2030
2043
|
]
|
|
2031
2044
|
}
|
|
2032
2045
|
>
|
|
2033
|
-
|
|
2046
|
+
17
|
|
2034
2047
|
</Text>
|
|
2035
2048
|
<View
|
|
2036
2049
|
style={
|
|
@@ -2057,7 +2070,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2057
2070
|
}
|
|
2058
2071
|
>
|
|
2059
2072
|
<View
|
|
2060
|
-
accessibilityLabel=" Woensdag
|
|
2073
|
+
accessibilityLabel=" Woensdag 18 Januari 2023 "
|
|
2061
2074
|
accessibilityRole="button"
|
|
2062
2075
|
accessibilityState={
|
|
2063
2076
|
{
|
|
@@ -2083,7 +2096,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2083
2096
|
"width": 42,
|
|
2084
2097
|
}
|
|
2085
2098
|
}
|
|
2086
|
-
testID="undefined.
|
|
2099
|
+
testID="undefined.day_2023-01-18"
|
|
2087
2100
|
>
|
|
2088
2101
|
<Text
|
|
2089
2102
|
allowFontScaling={false}
|
|
@@ -2099,7 +2112,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2099
2112
|
]
|
|
2100
2113
|
}
|
|
2101
2114
|
>
|
|
2102
|
-
|
|
2115
|
+
18
|
|
2103
2116
|
</Text>
|
|
2104
2117
|
<View
|
|
2105
2118
|
style={
|
|
@@ -2126,7 +2139,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2126
2139
|
}
|
|
2127
2140
|
>
|
|
2128
2141
|
<View
|
|
2129
|
-
accessibilityLabel=" Donderdag
|
|
2142
|
+
accessibilityLabel=" Donderdag 19 Januari 2023 "
|
|
2130
2143
|
accessibilityRole="button"
|
|
2131
2144
|
accessibilityState={
|
|
2132
2145
|
{
|
|
@@ -2152,7 +2165,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2152
2165
|
"width": 42,
|
|
2153
2166
|
}
|
|
2154
2167
|
}
|
|
2155
|
-
testID="undefined.
|
|
2168
|
+
testID="undefined.day_2023-01-19"
|
|
2156
2169
|
>
|
|
2157
2170
|
<Text
|
|
2158
2171
|
allowFontScaling={false}
|
|
@@ -2168,7 +2181,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2168
2181
|
]
|
|
2169
2182
|
}
|
|
2170
2183
|
>
|
|
2171
|
-
|
|
2184
|
+
19
|
|
2172
2185
|
</Text>
|
|
2173
2186
|
<View
|
|
2174
2187
|
style={
|
|
@@ -2195,7 +2208,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2195
2208
|
}
|
|
2196
2209
|
>
|
|
2197
2210
|
<View
|
|
2198
|
-
accessibilityLabel=" Vrijdag
|
|
2211
|
+
accessibilityLabel=" Vrijdag 20 Januari 2023 "
|
|
2199
2212
|
accessibilityRole="button"
|
|
2200
2213
|
accessibilityState={
|
|
2201
2214
|
{
|
|
@@ -2221,7 +2234,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2221
2234
|
"width": 42,
|
|
2222
2235
|
}
|
|
2223
2236
|
}
|
|
2224
|
-
testID="undefined.
|
|
2237
|
+
testID="undefined.day_2023-01-20"
|
|
2225
2238
|
>
|
|
2226
2239
|
<Text
|
|
2227
2240
|
allowFontScaling={false}
|
|
@@ -2237,7 +2250,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2237
2250
|
]
|
|
2238
2251
|
}
|
|
2239
2252
|
>
|
|
2240
|
-
|
|
2253
|
+
20
|
|
2241
2254
|
</Text>
|
|
2242
2255
|
<View
|
|
2243
2256
|
style={
|
|
@@ -2264,7 +2277,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2264
2277
|
}
|
|
2265
2278
|
>
|
|
2266
2279
|
<View
|
|
2267
|
-
accessibilityLabel=" Zaterdag
|
|
2280
|
+
accessibilityLabel=" Zaterdag 21 Januari 2023 "
|
|
2268
2281
|
accessibilityRole="button"
|
|
2269
2282
|
accessibilityState={
|
|
2270
2283
|
{
|
|
@@ -2290,7 +2303,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2290
2303
|
"width": 42,
|
|
2291
2304
|
}
|
|
2292
2305
|
}
|
|
2293
|
-
testID="undefined.
|
|
2306
|
+
testID="undefined.day_2023-01-21"
|
|
2294
2307
|
>
|
|
2295
2308
|
<Text
|
|
2296
2309
|
allowFontScaling={false}
|
|
@@ -2306,7 +2319,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2306
2319
|
]
|
|
2307
2320
|
}
|
|
2308
2321
|
>
|
|
2309
|
-
|
|
2322
|
+
21
|
|
2310
2323
|
</Text>
|
|
2311
2324
|
<View
|
|
2312
2325
|
style={
|
|
@@ -2333,7 +2346,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2333
2346
|
}
|
|
2334
2347
|
>
|
|
2335
2348
|
<View
|
|
2336
|
-
accessibilityLabel=" Zondag
|
|
2349
|
+
accessibilityLabel=" Zondag 22 Januari 2023 "
|
|
2337
2350
|
accessibilityRole="button"
|
|
2338
2351
|
accessibilityState={
|
|
2339
2352
|
{
|
|
@@ -2359,7 +2372,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2359
2372
|
"width": 42,
|
|
2360
2373
|
}
|
|
2361
2374
|
}
|
|
2362
|
-
testID="undefined.
|
|
2375
|
+
testID="undefined.day_2023-01-22"
|
|
2363
2376
|
>
|
|
2364
2377
|
<Text
|
|
2365
2378
|
allowFontScaling={false}
|
|
@@ -2375,7 +2388,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2375
2388
|
]
|
|
2376
2389
|
}
|
|
2377
2390
|
>
|
|
2378
|
-
|
|
2391
|
+
22
|
|
2379
2392
|
</Text>
|
|
2380
2393
|
<View
|
|
2381
2394
|
style={
|
|
@@ -2412,7 +2425,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2412
2425
|
}
|
|
2413
2426
|
>
|
|
2414
2427
|
<View
|
|
2415
|
-
accessibilityLabel="
|
|
2428
|
+
accessibilityLabel=" Maandag 23 Januari 2023 "
|
|
2416
2429
|
accessibilityRole="button"
|
|
2417
2430
|
accessibilityState={
|
|
2418
2431
|
{
|
|
@@ -2432,15 +2445,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2432
2445
|
style={
|
|
2433
2446
|
{
|
|
2434
2447
|
"alignItems": "center",
|
|
2435
|
-
"backgroundColor": "#7B93DB",
|
|
2436
|
-
"borderRadius": 21,
|
|
2437
2448
|
"height": 42,
|
|
2438
2449
|
"justifyContent": "center",
|
|
2439
2450
|
"opacity": 1,
|
|
2440
2451
|
"width": 42,
|
|
2441
2452
|
}
|
|
2442
2453
|
}
|
|
2443
|
-
testID="undefined.
|
|
2454
|
+
testID="undefined.day_2023-01-23"
|
|
2444
2455
|
>
|
|
2445
2456
|
<Text
|
|
2446
2457
|
allowFontScaling={false}
|
|
@@ -2453,13 +2464,10 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2453
2464
|
"lineHeight": 22.4,
|
|
2454
2465
|
"marginTop": 4,
|
|
2455
2466
|
},
|
|
2456
|
-
{
|
|
2457
|
-
"color": "#FFFFFF",
|
|
2458
|
-
},
|
|
2459
2467
|
]
|
|
2460
2468
|
}
|
|
2461
2469
|
>
|
|
2462
|
-
|
|
2470
|
+
23
|
|
2463
2471
|
</Text>
|
|
2464
2472
|
<View
|
|
2465
2473
|
style={
|
|
@@ -2486,7 +2494,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2486
2494
|
}
|
|
2487
2495
|
>
|
|
2488
2496
|
<View
|
|
2489
|
-
accessibilityLabel=" Dinsdag
|
|
2497
|
+
accessibilityLabel=" Dinsdag 24 Januari 2023 "
|
|
2490
2498
|
accessibilityRole="button"
|
|
2491
2499
|
accessibilityState={
|
|
2492
2500
|
{
|
|
@@ -2512,7 +2520,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2512
2520
|
"width": 42,
|
|
2513
2521
|
}
|
|
2514
2522
|
}
|
|
2515
|
-
testID="undefined.
|
|
2523
|
+
testID="undefined.day_2023-01-24"
|
|
2516
2524
|
>
|
|
2517
2525
|
<Text
|
|
2518
2526
|
allowFontScaling={false}
|
|
@@ -2528,7 +2536,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2528
2536
|
]
|
|
2529
2537
|
}
|
|
2530
2538
|
>
|
|
2531
|
-
|
|
2539
|
+
24
|
|
2532
2540
|
</Text>
|
|
2533
2541
|
<View
|
|
2534
2542
|
style={
|
|
@@ -2555,7 +2563,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2555
2563
|
}
|
|
2556
2564
|
>
|
|
2557
2565
|
<View
|
|
2558
|
-
accessibilityLabel=" Woensdag
|
|
2566
|
+
accessibilityLabel=" Woensdag 25 Januari 2023 "
|
|
2559
2567
|
accessibilityRole="button"
|
|
2560
2568
|
accessibilityState={
|
|
2561
2569
|
{
|
|
@@ -2581,7 +2589,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2581
2589
|
"width": 42,
|
|
2582
2590
|
}
|
|
2583
2591
|
}
|
|
2584
|
-
testID="undefined.
|
|
2592
|
+
testID="undefined.day_2023-01-25"
|
|
2585
2593
|
>
|
|
2586
2594
|
<Text
|
|
2587
2595
|
allowFontScaling={false}
|
|
@@ -2597,7 +2605,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2597
2605
|
]
|
|
2598
2606
|
}
|
|
2599
2607
|
>
|
|
2600
|
-
|
|
2608
|
+
25
|
|
2601
2609
|
</Text>
|
|
2602
2610
|
<View
|
|
2603
2611
|
style={
|
|
@@ -2624,7 +2632,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2624
2632
|
}
|
|
2625
2633
|
>
|
|
2626
2634
|
<View
|
|
2627
|
-
accessibilityLabel=" Donderdag
|
|
2635
|
+
accessibilityLabel=" Donderdag 26 Januari 2023 "
|
|
2628
2636
|
accessibilityRole="button"
|
|
2629
2637
|
accessibilityState={
|
|
2630
2638
|
{
|
|
@@ -2650,7 +2658,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2650
2658
|
"width": 42,
|
|
2651
2659
|
}
|
|
2652
2660
|
}
|
|
2653
|
-
testID="undefined.
|
|
2661
|
+
testID="undefined.day_2023-01-26"
|
|
2654
2662
|
>
|
|
2655
2663
|
<Text
|
|
2656
2664
|
allowFontScaling={false}
|
|
@@ -2666,7 +2674,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2666
2674
|
]
|
|
2667
2675
|
}
|
|
2668
2676
|
>
|
|
2669
|
-
|
|
2677
|
+
26
|
|
2670
2678
|
</Text>
|
|
2671
2679
|
<View
|
|
2672
2680
|
style={
|
|
@@ -2693,7 +2701,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2693
2701
|
}
|
|
2694
2702
|
>
|
|
2695
2703
|
<View
|
|
2696
|
-
accessibilityLabel=" Vrijdag
|
|
2704
|
+
accessibilityLabel=" Vrijdag 27 Januari 2023 "
|
|
2697
2705
|
accessibilityRole="button"
|
|
2698
2706
|
accessibilityState={
|
|
2699
2707
|
{
|
|
@@ -2719,7 +2727,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2719
2727
|
"width": 42,
|
|
2720
2728
|
}
|
|
2721
2729
|
}
|
|
2722
|
-
testID="undefined.
|
|
2730
|
+
testID="undefined.day_2023-01-27"
|
|
2723
2731
|
>
|
|
2724
2732
|
<Text
|
|
2725
2733
|
allowFontScaling={false}
|
|
@@ -2735,7 +2743,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2735
2743
|
]
|
|
2736
2744
|
}
|
|
2737
2745
|
>
|
|
2738
|
-
|
|
2746
|
+
27
|
|
2739
2747
|
</Text>
|
|
2740
2748
|
<View
|
|
2741
2749
|
style={
|
|
@@ -2762,7 +2770,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2762
2770
|
}
|
|
2763
2771
|
>
|
|
2764
2772
|
<View
|
|
2765
|
-
accessibilityLabel=" Zaterdag
|
|
2773
|
+
accessibilityLabel=" Zaterdag 28 Januari 2023 "
|
|
2766
2774
|
accessibilityRole="button"
|
|
2767
2775
|
accessibilityState={
|
|
2768
2776
|
{
|
|
@@ -2788,7 +2796,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2788
2796
|
"width": 42,
|
|
2789
2797
|
}
|
|
2790
2798
|
}
|
|
2791
|
-
testID="undefined.
|
|
2799
|
+
testID="undefined.day_2023-01-28"
|
|
2792
2800
|
>
|
|
2793
2801
|
<Text
|
|
2794
2802
|
allowFontScaling={false}
|
|
@@ -2804,7 +2812,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2804
2812
|
]
|
|
2805
2813
|
}
|
|
2806
2814
|
>
|
|
2807
|
-
|
|
2815
|
+
28
|
|
2808
2816
|
</Text>
|
|
2809
2817
|
<View
|
|
2810
2818
|
style={
|
|
@@ -2831,7 +2839,8 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2831
2839
|
}
|
|
2832
2840
|
>
|
|
2833
2841
|
<View
|
|
2834
|
-
accessibilityLabel=" Zondag
|
|
2842
|
+
accessibilityLabel=" Zondag 29 Januari 2023 "
|
|
2843
|
+
accessibilityRole="button"
|
|
2835
2844
|
accessibilityState={
|
|
2836
2845
|
{
|
|
2837
2846
|
"disabled": false,
|
|
@@ -2856,7 +2865,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2856
2865
|
"width": 42,
|
|
2857
2866
|
}
|
|
2858
2867
|
}
|
|
2859
|
-
testID="undefined.day_2023-01-
|
|
2868
|
+
testID="undefined.day_2023-01-29"
|
|
2860
2869
|
>
|
|
2861
2870
|
<Text
|
|
2862
2871
|
allowFontScaling={false}
|
|
@@ -2869,13 +2878,10 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2869
2878
|
"lineHeight": 22.4,
|
|
2870
2879
|
"marginTop": 4,
|
|
2871
2880
|
},
|
|
2872
|
-
{
|
|
2873
|
-
"color": "#9AA5B1",
|
|
2874
|
-
},
|
|
2875
2881
|
]
|
|
2876
2882
|
}
|
|
2877
2883
|
>
|
|
2878
|
-
|
|
2884
|
+
29
|
|
2879
2885
|
</Text>
|
|
2880
2886
|
<View
|
|
2881
2887
|
style={
|
|
@@ -2894,427 +2900,1437 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
2894
2900
|
</View>
|
|
2895
2901
|
</View>
|
|
2896
2902
|
</View>
|
|
2897
|
-
</View>
|
|
2898
|
-
</View>
|
|
2899
|
-
</View>
|
|
2900
|
-
`;
|
|
2901
|
-
|
|
2902
|
-
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`] = `
|
|
2903
|
-
<View
|
|
2904
|
-
onMoveShouldSetResponder={[Function]}
|
|
2905
|
-
onMoveShouldSetResponderCapture={[Function]}
|
|
2906
|
-
onResponderEnd={[Function]}
|
|
2907
|
-
onResponderGrant={[Function]}
|
|
2908
|
-
onResponderMove={[Function]}
|
|
2909
|
-
onResponderReject={[Function]}
|
|
2910
|
-
onResponderRelease={[Function]}
|
|
2911
|
-
onResponderStart={[Function]}
|
|
2912
|
-
onResponderTerminate={[Function]}
|
|
2913
|
-
onResponderTerminationRequest={[Function]}
|
|
2914
|
-
onStartShouldSetResponder={[Function]}
|
|
2915
|
-
onStartShouldSetResponderCapture={[Function]}
|
|
2916
|
-
onSwipe={[Function]}
|
|
2917
|
-
>
|
|
2918
|
-
<View
|
|
2919
|
-
style={
|
|
2920
|
-
[
|
|
2921
|
-
{
|
|
2922
|
-
"backgroundColor": "white",
|
|
2923
|
-
"paddingLeft": 5,
|
|
2924
|
-
"paddingRight": 5,
|
|
2925
|
-
},
|
|
2926
|
-
undefined,
|
|
2927
|
-
]
|
|
2928
|
-
}
|
|
2929
|
-
>
|
|
2930
|
-
<View
|
|
2931
|
-
accessibilityActions={
|
|
2932
|
-
[
|
|
2933
|
-
{
|
|
2934
|
-
"label": "increment",
|
|
2935
|
-
"name": "increment",
|
|
2936
|
-
},
|
|
2937
|
-
{
|
|
2938
|
-
"label": "decrement",
|
|
2939
|
-
"name": "decrement",
|
|
2940
|
-
},
|
|
2941
|
-
]
|
|
2942
|
-
}
|
|
2943
|
-
accessibilityRole="adjustable"
|
|
2944
|
-
accessible={true}
|
|
2945
|
-
onAccessibilityAction={[Function]}
|
|
2946
|
-
testID="undefined.header"
|
|
2947
|
-
>
|
|
2948
2903
|
<View
|
|
2949
2904
|
style={
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
"marginTop": 6,
|
|
2956
|
-
"paddingLeft": 10,
|
|
2957
|
-
"paddingRight": 10,
|
|
2958
|
-
},
|
|
2959
|
-
undefined,
|
|
2960
|
-
]
|
|
2905
|
+
{
|
|
2906
|
+
"flexDirection": "row",
|
|
2907
|
+
"justifyContent": "space-around",
|
|
2908
|
+
"marginVertical": 7,
|
|
2909
|
+
}
|
|
2961
2910
|
}
|
|
2962
2911
|
>
|
|
2963
2912
|
<View
|
|
2964
|
-
accessible={true}
|
|
2965
|
-
collapsable={false}
|
|
2966
|
-
focusable={true}
|
|
2967
|
-
hitSlop={
|
|
2968
|
-
{
|
|
2969
|
-
"bottom": 20,
|
|
2970
|
-
"left": 20,
|
|
2971
|
-
"right": 20,
|
|
2972
|
-
"top": 20,
|
|
2973
|
-
}
|
|
2974
|
-
}
|
|
2975
|
-
onClick={[Function]}
|
|
2976
|
-
onResponderGrant={[Function]}
|
|
2977
|
-
onResponderMove={[Function]}
|
|
2978
|
-
onResponderRelease={[Function]}
|
|
2979
|
-
onResponderTerminate={[Function]}
|
|
2980
|
-
onResponderTerminationRequest={[Function]}
|
|
2981
|
-
onStartShouldSetResponder={[Function]}
|
|
2982
2913
|
style={
|
|
2983
2914
|
{
|
|
2984
|
-
"
|
|
2985
|
-
"
|
|
2915
|
+
"alignItems": "center",
|
|
2916
|
+
"flex": 1,
|
|
2986
2917
|
}
|
|
2987
2918
|
}
|
|
2988
|
-
testID="undefined.header.leftArrow"
|
|
2989
2919
|
>
|
|
2990
|
-
<
|
|
2991
|
-
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
2999
|
-
|
|
2920
|
+
<View
|
|
2921
|
+
accessibilityLabel=" Maandag 30 Januari 2023 "
|
|
2922
|
+
accessibilityRole="button"
|
|
2923
|
+
accessibilityState={
|
|
2924
|
+
{
|
|
2925
|
+
"disabled": false,
|
|
2926
|
+
}
|
|
2927
|
+
}
|
|
2928
|
+
accessible={true}
|
|
2929
|
+
collapsable={false}
|
|
2930
|
+
focusable={true}
|
|
2931
|
+
onClick={[Function]}
|
|
2932
|
+
onResponderGrant={[Function]}
|
|
2933
|
+
onResponderMove={[Function]}
|
|
2934
|
+
onResponderRelease={[Function]}
|
|
2935
|
+
onResponderTerminate={[Function]}
|
|
2936
|
+
onResponderTerminationRequest={[Function]}
|
|
2937
|
+
onStartShouldSetResponder={[Function]}
|
|
3000
2938
|
style={
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3008
|
-
"height": 28,
|
|
3009
|
-
"width": 28,
|
|
3010
|
-
},
|
|
3011
|
-
]
|
|
2939
|
+
{
|
|
2940
|
+
"alignItems": "center",
|
|
2941
|
+
"height": 42,
|
|
2942
|
+
"justifyContent": "center",
|
|
2943
|
+
"opacity": 1,
|
|
2944
|
+
"width": 42,
|
|
2945
|
+
}
|
|
3012
2946
|
}
|
|
3013
|
-
|
|
3014
|
-
vbWidth={27}
|
|
3015
|
-
width="28"
|
|
2947
|
+
testID="undefined.day_2023-01-30"
|
|
3016
2948
|
>
|
|
3017
|
-
<
|
|
3018
|
-
|
|
3019
|
-
|
|
2949
|
+
<Text
|
|
2950
|
+
allowFontScaling={false}
|
|
2951
|
+
style={
|
|
3020
2952
|
[
|
|
3021
|
-
|
|
2953
|
+
{
|
|
2954
|
+
"color": "#1F2933",
|
|
2955
|
+
"fontFamily": "SourceSansPro",
|
|
2956
|
+
"fontSize": 16,
|
|
2957
|
+
"lineHeight": 22.4,
|
|
2958
|
+
"marginTop": 4,
|
|
2959
|
+
},
|
|
3022
2960
|
]
|
|
3023
2961
|
}
|
|
3024
2962
|
>
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
|
|
3031
|
-
"
|
|
3032
|
-
"
|
|
3033
|
-
|
|
3034
|
-
|
|
3035
|
-
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
</
|
|
2963
|
+
30
|
|
2964
|
+
</Text>
|
|
2965
|
+
<View
|
|
2966
|
+
style={
|
|
2967
|
+
[
|
|
2968
|
+
{
|
|
2969
|
+
"borderRadius": 2,
|
|
2970
|
+
"height": 4,
|
|
2971
|
+
"marginHorizontal": 1,
|
|
2972
|
+
"marginTop": 1,
|
|
2973
|
+
"opacity": 0,
|
|
2974
|
+
"width": 4,
|
|
2975
|
+
},
|
|
2976
|
+
]
|
|
2977
|
+
}
|
|
2978
|
+
/>
|
|
2979
|
+
</View>
|
|
3042
2980
|
</View>
|
|
3043
2981
|
<View
|
|
3044
2982
|
style={
|
|
3045
2983
|
{
|
|
3046
2984
|
"alignItems": "center",
|
|
3047
|
-
"
|
|
3048
|
-
"borderRadius": 32,
|
|
3049
|
-
"flexDirection": "row",
|
|
3050
|
-
"height": 32,
|
|
3051
|
-
"justifyContent": "center",
|
|
3052
|
-
"paddingBottom": 4,
|
|
3053
|
-
"paddingLeft": 16,
|
|
3054
|
-
"paddingRight": 16,
|
|
3055
|
-
"paddingTop": 4,
|
|
2985
|
+
"flex": 1,
|
|
3056
2986
|
}
|
|
3057
2987
|
}
|
|
3058
2988
|
>
|
|
3059
|
-
<
|
|
3060
|
-
|
|
2989
|
+
<View
|
|
2990
|
+
accessibilityLabel=" Dinsdag 31 Januari 2023 "
|
|
2991
|
+
accessibilityRole="button"
|
|
2992
|
+
accessibilityState={
|
|
2993
|
+
{
|
|
2994
|
+
"disabled": false,
|
|
2995
|
+
}
|
|
2996
|
+
}
|
|
2997
|
+
accessible={true}
|
|
2998
|
+
collapsable={false}
|
|
2999
|
+
focusable={true}
|
|
3000
|
+
onClick={[Function]}
|
|
3001
|
+
onResponderGrant={[Function]}
|
|
3002
|
+
onResponderMove={[Function]}
|
|
3003
|
+
onResponderRelease={[Function]}
|
|
3004
|
+
onResponderTerminate={[Function]}
|
|
3005
|
+
onResponderTerminationRequest={[Function]}
|
|
3006
|
+
onStartShouldSetResponder={[Function]}
|
|
3061
3007
|
style={
|
|
3062
3008
|
{
|
|
3063
|
-
"
|
|
3064
|
-
"
|
|
3065
|
-
"
|
|
3066
|
-
"
|
|
3067
|
-
"
|
|
3009
|
+
"alignItems": "center",
|
|
3010
|
+
"height": 42,
|
|
3011
|
+
"justifyContent": "center",
|
|
3012
|
+
"opacity": 1,
|
|
3013
|
+
"width": 42,
|
|
3068
3014
|
}
|
|
3069
3015
|
}
|
|
3070
|
-
testID="undefined.
|
|
3016
|
+
testID="undefined.day_2023-01-31"
|
|
3071
3017
|
>
|
|
3072
|
-
|
|
3073
|
-
|
|
3018
|
+
<Text
|
|
3019
|
+
allowFontScaling={false}
|
|
3020
|
+
style={
|
|
3021
|
+
[
|
|
3022
|
+
{
|
|
3023
|
+
"color": "#1F2933",
|
|
3024
|
+
"fontFamily": "SourceSansPro",
|
|
3025
|
+
"fontSize": 16,
|
|
3026
|
+
"lineHeight": 22.4,
|
|
3027
|
+
"marginTop": 4,
|
|
3028
|
+
},
|
|
3029
|
+
]
|
|
3030
|
+
}
|
|
3031
|
+
>
|
|
3032
|
+
31
|
|
3033
|
+
</Text>
|
|
3034
|
+
<View
|
|
3035
|
+
style={
|
|
3036
|
+
[
|
|
3037
|
+
{
|
|
3038
|
+
"borderRadius": 2,
|
|
3039
|
+
"height": 4,
|
|
3040
|
+
"marginHorizontal": 1,
|
|
3041
|
+
"marginTop": 1,
|
|
3042
|
+
"opacity": 0,
|
|
3043
|
+
"width": 4,
|
|
3044
|
+
},
|
|
3045
|
+
]
|
|
3046
|
+
}
|
|
3047
|
+
/>
|
|
3048
|
+
</View>
|
|
3074
3049
|
</View>
|
|
3075
3050
|
<View
|
|
3076
|
-
accessible={true}
|
|
3077
|
-
collapsable={false}
|
|
3078
|
-
focusable={true}
|
|
3079
|
-
hitSlop={
|
|
3080
|
-
{
|
|
3081
|
-
"bottom": 20,
|
|
3082
|
-
"left": 20,
|
|
3083
|
-
"right": 20,
|
|
3084
|
-
"top": 20,
|
|
3085
|
-
}
|
|
3086
|
-
}
|
|
3087
|
-
onClick={[Function]}
|
|
3088
|
-
onResponderGrant={[Function]}
|
|
3089
|
-
onResponderMove={[Function]}
|
|
3090
|
-
onResponderRelease={[Function]}
|
|
3091
|
-
onResponderTerminate={[Function]}
|
|
3092
|
-
onResponderTerminationRequest={[Function]}
|
|
3093
|
-
onStartShouldSetResponder={[Function]}
|
|
3094
3051
|
style={
|
|
3095
3052
|
{
|
|
3096
|
-
"
|
|
3097
|
-
"
|
|
3053
|
+
"alignItems": "center",
|
|
3054
|
+
"flex": 1,
|
|
3098
3055
|
}
|
|
3099
3056
|
}
|
|
3100
|
-
testID="undefined.header.rightArrow"
|
|
3101
3057
|
>
|
|
3102
|
-
<
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3058
|
+
<View
|
|
3059
|
+
accessibilityLabel=" Woensdag 1 Februari 2023 "
|
|
3060
|
+
accessibilityState={
|
|
3061
|
+
{
|
|
3062
|
+
"disabled": false,
|
|
3063
|
+
}
|
|
3064
|
+
}
|
|
3065
|
+
accessible={true}
|
|
3066
|
+
collapsable={false}
|
|
3067
|
+
focusable={true}
|
|
3068
|
+
onClick={[Function]}
|
|
3069
|
+
onResponderGrant={[Function]}
|
|
3070
|
+
onResponderMove={[Function]}
|
|
3071
|
+
onResponderRelease={[Function]}
|
|
3072
|
+
onResponderTerminate={[Function]}
|
|
3073
|
+
onResponderTerminationRequest={[Function]}
|
|
3074
|
+
onStartShouldSetResponder={[Function]}
|
|
3112
3075
|
style={
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
"height": 28,
|
|
3121
|
-
"width": 28,
|
|
3122
|
-
},
|
|
3123
|
-
]
|
|
3076
|
+
{
|
|
3077
|
+
"alignItems": "center",
|
|
3078
|
+
"height": 42,
|
|
3079
|
+
"justifyContent": "center",
|
|
3080
|
+
"opacity": 1,
|
|
3081
|
+
"width": 42,
|
|
3082
|
+
}
|
|
3124
3083
|
}
|
|
3125
|
-
|
|
3126
|
-
vbWidth={26}
|
|
3127
|
-
width="28"
|
|
3084
|
+
testID="undefined.day_2023-02-01"
|
|
3128
3085
|
>
|
|
3129
|
-
<
|
|
3130
|
-
|
|
3131
|
-
|
|
3086
|
+
<Text
|
|
3087
|
+
allowFontScaling={false}
|
|
3088
|
+
style={
|
|
3132
3089
|
[
|
|
3133
|
-
|
|
3090
|
+
{
|
|
3091
|
+
"color": "#1F2933",
|
|
3092
|
+
"fontFamily": "SourceSansPro",
|
|
3093
|
+
"fontSize": 16,
|
|
3094
|
+
"lineHeight": 22.4,
|
|
3095
|
+
"marginTop": 4,
|
|
3096
|
+
},
|
|
3097
|
+
{
|
|
3098
|
+
"color": "#9AA5B1",
|
|
3099
|
+
},
|
|
3134
3100
|
]
|
|
3135
3101
|
}
|
|
3136
3102
|
>
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
"
|
|
3144
|
-
"
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
</
|
|
3103
|
+
1
|
|
3104
|
+
</Text>
|
|
3105
|
+
<View
|
|
3106
|
+
style={
|
|
3107
|
+
[
|
|
3108
|
+
{
|
|
3109
|
+
"borderRadius": 2,
|
|
3110
|
+
"height": 4,
|
|
3111
|
+
"marginHorizontal": 1,
|
|
3112
|
+
"marginTop": 1,
|
|
3113
|
+
"opacity": 0,
|
|
3114
|
+
"width": 4,
|
|
3115
|
+
},
|
|
3116
|
+
]
|
|
3117
|
+
}
|
|
3118
|
+
/>
|
|
3119
|
+
</View>
|
|
3154
3120
|
</View>
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
style={
|
|
3158
|
-
[
|
|
3121
|
+
<View
|
|
3122
|
+
style={
|
|
3159
3123
|
{
|
|
3160
|
-
"
|
|
3161
|
-
"
|
|
3162
|
-
|
|
3163
|
-
},
|
|
3164
|
-
undefined,
|
|
3165
|
-
]
|
|
3166
|
-
}
|
|
3167
|
-
testID="undefined.header.dayNames"
|
|
3168
|
-
>
|
|
3169
|
-
<Text
|
|
3170
|
-
accessibilityLabel=""
|
|
3171
|
-
allowFontScaling={false}
|
|
3172
|
-
numberOfLines={1}
|
|
3173
|
-
style={
|
|
3174
|
-
[
|
|
3175
|
-
{
|
|
3176
|
-
"color": "#1F2933",
|
|
3177
|
-
"fontFamily": "SourceSansProBold",
|
|
3178
|
-
"fontSize": 16,
|
|
3179
|
-
"lineHeight": 22.4,
|
|
3180
|
-
"marginBottom": 24,
|
|
3181
|
-
"textAlign": "center",
|
|
3182
|
-
"width": 32,
|
|
3183
|
-
},
|
|
3184
|
-
]
|
|
3124
|
+
"alignItems": "center",
|
|
3125
|
+
"flex": 1,
|
|
3126
|
+
}
|
|
3185
3127
|
}
|
|
3186
3128
|
>
|
|
3187
|
-
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
accessibilityLabel=""
|
|
3191
|
-
allowFontScaling={false}
|
|
3192
|
-
numberOfLines={1}
|
|
3193
|
-
style={
|
|
3194
|
-
[
|
|
3129
|
+
<View
|
|
3130
|
+
accessibilityLabel=" Donderdag 2 Februari 2023 "
|
|
3131
|
+
accessibilityState={
|
|
3195
3132
|
{
|
|
3196
|
-
"
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
]
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
accessibilityLabel=""
|
|
3211
|
-
allowFontScaling={false}
|
|
3212
|
-
numberOfLines={1}
|
|
3213
|
-
style={
|
|
3214
|
-
[
|
|
3133
|
+
"disabled": false,
|
|
3134
|
+
}
|
|
3135
|
+
}
|
|
3136
|
+
accessible={true}
|
|
3137
|
+
collapsable={false}
|
|
3138
|
+
focusable={true}
|
|
3139
|
+
onClick={[Function]}
|
|
3140
|
+
onResponderGrant={[Function]}
|
|
3141
|
+
onResponderMove={[Function]}
|
|
3142
|
+
onResponderRelease={[Function]}
|
|
3143
|
+
onResponderTerminate={[Function]}
|
|
3144
|
+
onResponderTerminationRequest={[Function]}
|
|
3145
|
+
onStartShouldSetResponder={[Function]}
|
|
3146
|
+
style={
|
|
3215
3147
|
{
|
|
3216
|
-
"
|
|
3217
|
-
"
|
|
3218
|
-
"
|
|
3219
|
-
"
|
|
3220
|
-
"
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3224
|
-
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3148
|
+
"alignItems": "center",
|
|
3149
|
+
"height": 42,
|
|
3150
|
+
"justifyContent": "center",
|
|
3151
|
+
"opacity": 1,
|
|
3152
|
+
"width": 42,
|
|
3153
|
+
}
|
|
3154
|
+
}
|
|
3155
|
+
testID="undefined.day_2023-02-02"
|
|
3156
|
+
>
|
|
3157
|
+
<Text
|
|
3158
|
+
allowFontScaling={false}
|
|
3159
|
+
style={
|
|
3160
|
+
[
|
|
3161
|
+
{
|
|
3162
|
+
"color": "#1F2933",
|
|
3163
|
+
"fontFamily": "SourceSansPro",
|
|
3164
|
+
"fontSize": 16,
|
|
3165
|
+
"lineHeight": 22.4,
|
|
3166
|
+
"marginTop": 4,
|
|
3167
|
+
},
|
|
3168
|
+
{
|
|
3169
|
+
"color": "#9AA5B1",
|
|
3170
|
+
},
|
|
3171
|
+
]
|
|
3172
|
+
}
|
|
3173
|
+
>
|
|
3174
|
+
2
|
|
3175
|
+
</Text>
|
|
3176
|
+
<View
|
|
3177
|
+
style={
|
|
3178
|
+
[
|
|
3179
|
+
{
|
|
3180
|
+
"borderRadius": 2,
|
|
3181
|
+
"height": 4,
|
|
3182
|
+
"marginHorizontal": 1,
|
|
3183
|
+
"marginTop": 1,
|
|
3184
|
+
"opacity": 0,
|
|
3185
|
+
"width": 4,
|
|
3186
|
+
},
|
|
3187
|
+
]
|
|
3188
|
+
}
|
|
3189
|
+
/>
|
|
3190
|
+
</View>
|
|
3191
|
+
</View>
|
|
3192
|
+
<View
|
|
3233
3193
|
style={
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
"fontSize": 16,
|
|
3239
|
-
"lineHeight": 22.4,
|
|
3240
|
-
"marginBottom": 24,
|
|
3241
|
-
"textAlign": "center",
|
|
3242
|
-
"width": 32,
|
|
3243
|
-
},
|
|
3244
|
-
]
|
|
3194
|
+
{
|
|
3195
|
+
"alignItems": "center",
|
|
3196
|
+
"flex": 1,
|
|
3197
|
+
}
|
|
3245
3198
|
}
|
|
3246
3199
|
>
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
accessibilityLabel=""
|
|
3251
|
-
allowFontScaling={false}
|
|
3252
|
-
numberOfLines={1}
|
|
3253
|
-
style={
|
|
3254
|
-
[
|
|
3200
|
+
<View
|
|
3201
|
+
accessibilityLabel=" Vrijdag 3 Februari 2023 "
|
|
3202
|
+
accessibilityState={
|
|
3255
3203
|
{
|
|
3256
|
-
"
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
]
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
accessibilityLabel=""
|
|
3271
|
-
allowFontScaling={false}
|
|
3272
|
-
numberOfLines={1}
|
|
3273
|
-
style={
|
|
3274
|
-
[
|
|
3204
|
+
"disabled": false,
|
|
3205
|
+
}
|
|
3206
|
+
}
|
|
3207
|
+
accessible={true}
|
|
3208
|
+
collapsable={false}
|
|
3209
|
+
focusable={true}
|
|
3210
|
+
onClick={[Function]}
|
|
3211
|
+
onResponderGrant={[Function]}
|
|
3212
|
+
onResponderMove={[Function]}
|
|
3213
|
+
onResponderRelease={[Function]}
|
|
3214
|
+
onResponderTerminate={[Function]}
|
|
3215
|
+
onResponderTerminationRequest={[Function]}
|
|
3216
|
+
onStartShouldSetResponder={[Function]}
|
|
3217
|
+
style={
|
|
3275
3218
|
{
|
|
3276
|
-
"
|
|
3277
|
-
"
|
|
3278
|
-
"
|
|
3279
|
-
"
|
|
3280
|
-
"
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3219
|
+
"alignItems": "center",
|
|
3220
|
+
"height": 42,
|
|
3221
|
+
"justifyContent": "center",
|
|
3222
|
+
"opacity": 1,
|
|
3223
|
+
"width": 42,
|
|
3224
|
+
}
|
|
3225
|
+
}
|
|
3226
|
+
testID="undefined.day_2023-02-03"
|
|
3227
|
+
>
|
|
3228
|
+
<Text
|
|
3229
|
+
allowFontScaling={false}
|
|
3230
|
+
style={
|
|
3231
|
+
[
|
|
3232
|
+
{
|
|
3233
|
+
"color": "#1F2933",
|
|
3234
|
+
"fontFamily": "SourceSansPro",
|
|
3235
|
+
"fontSize": 16,
|
|
3236
|
+
"lineHeight": 22.4,
|
|
3237
|
+
"marginTop": 4,
|
|
3238
|
+
},
|
|
3239
|
+
{
|
|
3240
|
+
"color": "#9AA5B1",
|
|
3241
|
+
},
|
|
3242
|
+
]
|
|
3243
|
+
}
|
|
3244
|
+
>
|
|
3245
|
+
3
|
|
3246
|
+
</Text>
|
|
3247
|
+
<View
|
|
3248
|
+
style={
|
|
3249
|
+
[
|
|
3250
|
+
{
|
|
3251
|
+
"borderRadius": 2,
|
|
3252
|
+
"height": 4,
|
|
3253
|
+
"marginHorizontal": 1,
|
|
3254
|
+
"marginTop": 1,
|
|
3255
|
+
"opacity": 0,
|
|
3256
|
+
"width": 4,
|
|
3257
|
+
},
|
|
3258
|
+
]
|
|
3259
|
+
}
|
|
3260
|
+
/>
|
|
3261
|
+
</View>
|
|
3262
|
+
</View>
|
|
3263
|
+
<View
|
|
3264
|
+
style={
|
|
3265
|
+
{
|
|
3266
|
+
"alignItems": "center",
|
|
3267
|
+
"flex": 1,
|
|
3268
|
+
}
|
|
3285
3269
|
}
|
|
3286
3270
|
>
|
|
3287
|
-
|
|
3288
|
-
|
|
3289
|
-
|
|
3290
|
-
accessibilityLabel=""
|
|
3291
|
-
allowFontScaling={false}
|
|
3292
|
-
numberOfLines={1}
|
|
3293
|
-
style={
|
|
3294
|
-
[
|
|
3271
|
+
<View
|
|
3272
|
+
accessibilityLabel=" Zaterdag 4 Februari 2023 "
|
|
3273
|
+
accessibilityState={
|
|
3295
3274
|
{
|
|
3296
|
-
"
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3275
|
+
"disabled": false,
|
|
3276
|
+
}
|
|
3277
|
+
}
|
|
3278
|
+
accessible={true}
|
|
3279
|
+
collapsable={false}
|
|
3280
|
+
focusable={true}
|
|
3281
|
+
onClick={[Function]}
|
|
3282
|
+
onResponderGrant={[Function]}
|
|
3283
|
+
onResponderMove={[Function]}
|
|
3284
|
+
onResponderRelease={[Function]}
|
|
3285
|
+
onResponderTerminate={[Function]}
|
|
3286
|
+
onResponderTerminationRequest={[Function]}
|
|
3287
|
+
onStartShouldSetResponder={[Function]}
|
|
3288
|
+
style={
|
|
3289
|
+
{
|
|
3290
|
+
"alignItems": "center",
|
|
3291
|
+
"height": 42,
|
|
3292
|
+
"justifyContent": "center",
|
|
3293
|
+
"opacity": 1,
|
|
3294
|
+
"width": 42,
|
|
3295
|
+
}
|
|
3296
|
+
}
|
|
3297
|
+
testID="undefined.day_2023-02-04"
|
|
3298
|
+
>
|
|
3299
|
+
<Text
|
|
3300
|
+
allowFontScaling={false}
|
|
3301
|
+
style={
|
|
3302
|
+
[
|
|
3303
|
+
{
|
|
3304
|
+
"color": "#1F2933",
|
|
3305
|
+
"fontFamily": "SourceSansPro",
|
|
3306
|
+
"fontSize": 16,
|
|
3307
|
+
"lineHeight": 22.4,
|
|
3308
|
+
"marginTop": 4,
|
|
3309
|
+
},
|
|
3310
|
+
{
|
|
3311
|
+
"color": "#9AA5B1",
|
|
3312
|
+
},
|
|
3313
|
+
]
|
|
3314
|
+
}
|
|
3315
|
+
>
|
|
3316
|
+
4
|
|
3317
|
+
</Text>
|
|
3318
|
+
<View
|
|
3319
|
+
style={
|
|
3320
|
+
[
|
|
3321
|
+
{
|
|
3322
|
+
"borderRadius": 2,
|
|
3323
|
+
"height": 4,
|
|
3324
|
+
"marginHorizontal": 1,
|
|
3325
|
+
"marginTop": 1,
|
|
3326
|
+
"opacity": 0,
|
|
3327
|
+
"width": 4,
|
|
3328
|
+
},
|
|
3329
|
+
]
|
|
3330
|
+
}
|
|
3331
|
+
/>
|
|
3332
|
+
</View>
|
|
3333
|
+
</View>
|
|
3334
|
+
<View
|
|
3335
|
+
style={
|
|
3336
|
+
{
|
|
3337
|
+
"alignItems": "center",
|
|
3338
|
+
"flex": 1,
|
|
3339
|
+
}
|
|
3340
|
+
}
|
|
3341
|
+
>
|
|
3342
|
+
<View
|
|
3343
|
+
accessibilityLabel=" Zondag 5 Februari 2023 "
|
|
3344
|
+
accessibilityState={
|
|
3345
|
+
{
|
|
3346
|
+
"disabled": false,
|
|
3347
|
+
}
|
|
3348
|
+
}
|
|
3349
|
+
accessible={true}
|
|
3350
|
+
collapsable={false}
|
|
3351
|
+
focusable={true}
|
|
3352
|
+
onClick={[Function]}
|
|
3353
|
+
onResponderGrant={[Function]}
|
|
3354
|
+
onResponderMove={[Function]}
|
|
3355
|
+
onResponderRelease={[Function]}
|
|
3356
|
+
onResponderTerminate={[Function]}
|
|
3357
|
+
onResponderTerminationRequest={[Function]}
|
|
3358
|
+
onStartShouldSetResponder={[Function]}
|
|
3359
|
+
style={
|
|
3360
|
+
{
|
|
3361
|
+
"alignItems": "center",
|
|
3362
|
+
"height": 42,
|
|
3363
|
+
"justifyContent": "center",
|
|
3364
|
+
"opacity": 1,
|
|
3365
|
+
"width": 42,
|
|
3366
|
+
}
|
|
3367
|
+
}
|
|
3368
|
+
testID="undefined.day_2023-02-05"
|
|
3369
|
+
>
|
|
3370
|
+
<Text
|
|
3371
|
+
allowFontScaling={false}
|
|
3372
|
+
style={
|
|
3373
|
+
[
|
|
3374
|
+
{
|
|
3375
|
+
"color": "#1F2933",
|
|
3376
|
+
"fontFamily": "SourceSansPro",
|
|
3377
|
+
"fontSize": 16,
|
|
3378
|
+
"lineHeight": 22.4,
|
|
3379
|
+
"marginTop": 4,
|
|
3380
|
+
},
|
|
3381
|
+
{
|
|
3382
|
+
"color": "#9AA5B1",
|
|
3383
|
+
},
|
|
3384
|
+
]
|
|
3385
|
+
}
|
|
3386
|
+
>
|
|
3387
|
+
5
|
|
3388
|
+
</Text>
|
|
3389
|
+
<View
|
|
3390
|
+
style={
|
|
3391
|
+
[
|
|
3392
|
+
{
|
|
3393
|
+
"borderRadius": 2,
|
|
3394
|
+
"height": 4,
|
|
3395
|
+
"marginHorizontal": 1,
|
|
3396
|
+
"marginTop": 1,
|
|
3397
|
+
"opacity": 0,
|
|
3398
|
+
"width": 4,
|
|
3399
|
+
},
|
|
3400
|
+
]
|
|
3401
|
+
}
|
|
3402
|
+
/>
|
|
3403
|
+
</View>
|
|
3404
|
+
</View>
|
|
3405
|
+
</View>
|
|
3406
|
+
</View>
|
|
3407
|
+
</View>
|
|
3408
|
+
</View>
|
|
3409
|
+
`;
|
|
3410
|
+
|
|
3411
|
+
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`] = `
|
|
3412
|
+
<View
|
|
3413
|
+
onMoveShouldSetResponder={[Function]}
|
|
3414
|
+
onMoveShouldSetResponderCapture={[Function]}
|
|
3415
|
+
onResponderEnd={[Function]}
|
|
3416
|
+
onResponderGrant={[Function]}
|
|
3417
|
+
onResponderMove={[Function]}
|
|
3418
|
+
onResponderReject={[Function]}
|
|
3419
|
+
onResponderRelease={[Function]}
|
|
3420
|
+
onResponderStart={[Function]}
|
|
3421
|
+
onResponderTerminate={[Function]}
|
|
3422
|
+
onResponderTerminationRequest={[Function]}
|
|
3423
|
+
onStartShouldSetResponder={[Function]}
|
|
3424
|
+
onStartShouldSetResponderCapture={[Function]}
|
|
3425
|
+
onSwipe={[Function]}
|
|
3426
|
+
>
|
|
3427
|
+
<View
|
|
3428
|
+
style={
|
|
3429
|
+
[
|
|
3430
|
+
{
|
|
3431
|
+
"backgroundColor": "white",
|
|
3432
|
+
"paddingLeft": 5,
|
|
3433
|
+
"paddingRight": 5,
|
|
3434
|
+
},
|
|
3435
|
+
undefined,
|
|
3436
|
+
]
|
|
3437
|
+
}
|
|
3438
|
+
>
|
|
3439
|
+
<View
|
|
3440
|
+
accessibilityActions={
|
|
3441
|
+
[
|
|
3442
|
+
{
|
|
3443
|
+
"label": "increment",
|
|
3444
|
+
"name": "increment",
|
|
3445
|
+
},
|
|
3446
|
+
{
|
|
3447
|
+
"label": "decrement",
|
|
3448
|
+
"name": "decrement",
|
|
3449
|
+
},
|
|
3450
|
+
]
|
|
3451
|
+
}
|
|
3452
|
+
accessibilityRole="adjustable"
|
|
3453
|
+
accessible={true}
|
|
3454
|
+
onAccessibilityAction={[Function]}
|
|
3455
|
+
testID="undefined.header"
|
|
3456
|
+
>
|
|
3457
|
+
<View
|
|
3458
|
+
style={
|
|
3459
|
+
[
|
|
3460
|
+
{
|
|
3461
|
+
"alignItems": "center",
|
|
3462
|
+
"flexDirection": "row",
|
|
3463
|
+
"justifyContent": "space-between",
|
|
3464
|
+
"marginTop": 6,
|
|
3465
|
+
"paddingLeft": 10,
|
|
3466
|
+
"paddingRight": 10,
|
|
3467
|
+
},
|
|
3468
|
+
undefined,
|
|
3469
|
+
]
|
|
3470
|
+
}
|
|
3471
|
+
>
|
|
3472
|
+
<View
|
|
3473
|
+
accessible={true}
|
|
3474
|
+
collapsable={false}
|
|
3475
|
+
focusable={true}
|
|
3476
|
+
hitSlop={
|
|
3477
|
+
{
|
|
3478
|
+
"bottom": 20,
|
|
3479
|
+
"left": 20,
|
|
3480
|
+
"right": 20,
|
|
3481
|
+
"top": 20,
|
|
3482
|
+
}
|
|
3483
|
+
}
|
|
3484
|
+
onClick={[Function]}
|
|
3485
|
+
onResponderGrant={[Function]}
|
|
3486
|
+
onResponderMove={[Function]}
|
|
3487
|
+
onResponderRelease={[Function]}
|
|
3488
|
+
onResponderTerminate={[Function]}
|
|
3489
|
+
onResponderTerminationRequest={[Function]}
|
|
3490
|
+
onStartShouldSetResponder={[Function]}
|
|
3491
|
+
style={
|
|
3492
|
+
{
|
|
3493
|
+
"opacity": 1,
|
|
3494
|
+
"padding": 10,
|
|
3495
|
+
}
|
|
3496
|
+
}
|
|
3497
|
+
testID="undefined.header.leftArrow"
|
|
3498
|
+
>
|
|
3499
|
+
<RNSVGSvgView
|
|
3500
|
+
align="xMidYMid"
|
|
3501
|
+
bbHeight="28"
|
|
3502
|
+
bbWidth="28"
|
|
3503
|
+
fill="none"
|
|
3504
|
+
focusable={false}
|
|
3505
|
+
height="28"
|
|
3506
|
+
meetOrSlice={0}
|
|
3507
|
+
minX={0}
|
|
3508
|
+
minY={0}
|
|
3509
|
+
style={
|
|
3510
|
+
[
|
|
3511
|
+
{
|
|
3512
|
+
"backgroundColor": "transparent",
|
|
3513
|
+
"borderWidth": 0,
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"flex": 0,
|
|
3517
|
+
"height": 28,
|
|
3518
|
+
"width": 28,
|
|
3519
|
+
},
|
|
3520
|
+
]
|
|
3521
|
+
}
|
|
3522
|
+
vbHeight={27}
|
|
3523
|
+
vbWidth={27}
|
|
3524
|
+
width="28"
|
|
3525
|
+
>
|
|
3526
|
+
<RNSVGGroup
|
|
3527
|
+
fill={null}
|
|
3528
|
+
propList={
|
|
3529
|
+
[
|
|
3530
|
+
"fill",
|
|
3531
|
+
]
|
|
3532
|
+
}
|
|
3533
|
+
>
|
|
3534
|
+
<RNSVGPath
|
|
3535
|
+
d="M16.875 21.375L9 13.5L16.875 5.625"
|
|
3536
|
+
propList={
|
|
3537
|
+
[
|
|
3538
|
+
"stroke",
|
|
3539
|
+
"strokeWidth",
|
|
3540
|
+
"strokeLinecap",
|
|
3541
|
+
"strokeLinejoin",
|
|
3542
|
+
]
|
|
3543
|
+
}
|
|
3544
|
+
stroke={4279837036}
|
|
3545
|
+
strokeLinecap={1}
|
|
3546
|
+
strokeLinejoin={1}
|
|
3547
|
+
strokeWidth="2"
|
|
3548
|
+
/>
|
|
3549
|
+
</RNSVGGroup>
|
|
3550
|
+
</RNSVGSvgView>
|
|
3551
|
+
</View>
|
|
3552
|
+
<View
|
|
3553
|
+
style={
|
|
3554
|
+
{
|
|
3555
|
+
"alignItems": "center",
|
|
3556
|
+
"backgroundColor": "#19216C",
|
|
3557
|
+
"borderRadius": 32,
|
|
3558
|
+
"flexDirection": "row",
|
|
3559
|
+
"height": 32,
|
|
3560
|
+
"justifyContent": "center",
|
|
3561
|
+
"paddingBottom": 4,
|
|
3562
|
+
"paddingLeft": 16,
|
|
3563
|
+
"paddingRight": 16,
|
|
3564
|
+
"paddingTop": 4,
|
|
3565
|
+
}
|
|
3566
|
+
}
|
|
3567
|
+
>
|
|
3568
|
+
<Text
|
|
3569
|
+
allowFontScaling={false}
|
|
3570
|
+
style={
|
|
3571
|
+
{
|
|
3572
|
+
"color": "#FFFFFF",
|
|
3573
|
+
"fontFamily": "SourceSansPro",
|
|
3574
|
+
"fontSize": 16,
|
|
3575
|
+
"lineHeight": 22.4,
|
|
3576
|
+
"margin": 0,
|
|
3577
|
+
}
|
|
3578
|
+
}
|
|
3579
|
+
testID="undefined.header.title"
|
|
3580
|
+
>
|
|
3581
|
+
Januari 2023
|
|
3582
|
+
</Text>
|
|
3583
|
+
</View>
|
|
3584
|
+
<View
|
|
3585
|
+
accessible={true}
|
|
3586
|
+
collapsable={false}
|
|
3587
|
+
focusable={true}
|
|
3588
|
+
hitSlop={
|
|
3589
|
+
{
|
|
3590
|
+
"bottom": 20,
|
|
3591
|
+
"left": 20,
|
|
3592
|
+
"right": 20,
|
|
3593
|
+
"top": 20,
|
|
3594
|
+
}
|
|
3595
|
+
}
|
|
3596
|
+
onClick={[Function]}
|
|
3597
|
+
onResponderGrant={[Function]}
|
|
3598
|
+
onResponderMove={[Function]}
|
|
3599
|
+
onResponderRelease={[Function]}
|
|
3600
|
+
onResponderTerminate={[Function]}
|
|
3601
|
+
onResponderTerminationRequest={[Function]}
|
|
3602
|
+
onStartShouldSetResponder={[Function]}
|
|
3603
|
+
style={
|
|
3604
|
+
{
|
|
3605
|
+
"opacity": 1,
|
|
3606
|
+
"padding": 10,
|
|
3607
|
+
}
|
|
3608
|
+
}
|
|
3609
|
+
testID="undefined.header.rightArrow"
|
|
3610
|
+
>
|
|
3611
|
+
<RNSVGSvgView
|
|
3612
|
+
align="xMidYMid"
|
|
3613
|
+
bbHeight="28"
|
|
3614
|
+
bbWidth="28"
|
|
3615
|
+
fill="none"
|
|
3616
|
+
focusable={false}
|
|
3617
|
+
height="28"
|
|
3618
|
+
meetOrSlice={0}
|
|
3619
|
+
minX={0}
|
|
3620
|
+
minY={0}
|
|
3621
|
+
style={
|
|
3622
|
+
[
|
|
3623
|
+
{
|
|
3624
|
+
"backgroundColor": "transparent",
|
|
3625
|
+
"borderWidth": 0,
|
|
3626
|
+
},
|
|
3627
|
+
{
|
|
3628
|
+
"flex": 0,
|
|
3629
|
+
"height": 28,
|
|
3630
|
+
"width": 28,
|
|
3631
|
+
},
|
|
3632
|
+
]
|
|
3633
|
+
}
|
|
3634
|
+
vbHeight={27}
|
|
3635
|
+
vbWidth={26}
|
|
3636
|
+
width="28"
|
|
3637
|
+
>
|
|
3638
|
+
<RNSVGGroup
|
|
3639
|
+
fill={null}
|
|
3640
|
+
propList={
|
|
3641
|
+
[
|
|
3642
|
+
"fill",
|
|
3643
|
+
]
|
|
3644
|
+
}
|
|
3645
|
+
>
|
|
3646
|
+
<RNSVGPath
|
|
3647
|
+
d="M9.75 5.625L17.3333 13.5L9.75 21.375"
|
|
3648
|
+
propList={
|
|
3649
|
+
[
|
|
3650
|
+
"stroke",
|
|
3651
|
+
"strokeWidth",
|
|
3652
|
+
"strokeLinecap",
|
|
3653
|
+
"strokeLinejoin",
|
|
3654
|
+
]
|
|
3655
|
+
}
|
|
3656
|
+
stroke={4279837036}
|
|
3657
|
+
strokeLinecap={1}
|
|
3658
|
+
strokeLinejoin={1}
|
|
3659
|
+
strokeWidth="2"
|
|
3660
|
+
/>
|
|
3661
|
+
</RNSVGGroup>
|
|
3662
|
+
</RNSVGSvgView>
|
|
3663
|
+
</View>
|
|
3664
|
+
</View>
|
|
3665
|
+
<View
|
|
3666
|
+
style={
|
|
3667
|
+
[
|
|
3668
|
+
{
|
|
3669
|
+
"flexDirection": "row",
|
|
3670
|
+
"justifyContent": "space-around",
|
|
3671
|
+
"marginTop": 32,
|
|
3672
|
+
},
|
|
3673
|
+
undefined,
|
|
3674
|
+
]
|
|
3675
|
+
}
|
|
3676
|
+
testID="undefined.header.dayNames"
|
|
3677
|
+
>
|
|
3678
|
+
<Text
|
|
3679
|
+
accessibilityLabel=""
|
|
3680
|
+
allowFontScaling={false}
|
|
3681
|
+
numberOfLines={1}
|
|
3682
|
+
style={
|
|
3683
|
+
[
|
|
3684
|
+
{
|
|
3685
|
+
"color": "#1F2933",
|
|
3686
|
+
"fontFamily": "SourceSansProBold",
|
|
3687
|
+
"fontSize": 16,
|
|
3688
|
+
"lineHeight": 22.4,
|
|
3689
|
+
"marginBottom": 24,
|
|
3690
|
+
"textAlign": "center",
|
|
3691
|
+
"width": 32,
|
|
3692
|
+
},
|
|
3693
|
+
]
|
|
3694
|
+
}
|
|
3695
|
+
>
|
|
3696
|
+
Ma
|
|
3697
|
+
</Text>
|
|
3698
|
+
<Text
|
|
3699
|
+
accessibilityLabel=""
|
|
3700
|
+
allowFontScaling={false}
|
|
3701
|
+
numberOfLines={1}
|
|
3702
|
+
style={
|
|
3703
|
+
[
|
|
3704
|
+
{
|
|
3705
|
+
"color": "#1F2933",
|
|
3706
|
+
"fontFamily": "SourceSansProBold",
|
|
3707
|
+
"fontSize": 16,
|
|
3708
|
+
"lineHeight": 22.4,
|
|
3709
|
+
"marginBottom": 24,
|
|
3710
|
+
"textAlign": "center",
|
|
3711
|
+
"width": 32,
|
|
3712
|
+
},
|
|
3713
|
+
]
|
|
3714
|
+
}
|
|
3715
|
+
>
|
|
3716
|
+
Di
|
|
3717
|
+
</Text>
|
|
3718
|
+
<Text
|
|
3719
|
+
accessibilityLabel=""
|
|
3720
|
+
allowFontScaling={false}
|
|
3721
|
+
numberOfLines={1}
|
|
3722
|
+
style={
|
|
3723
|
+
[
|
|
3724
|
+
{
|
|
3725
|
+
"color": "#1F2933",
|
|
3726
|
+
"fontFamily": "SourceSansProBold",
|
|
3727
|
+
"fontSize": 16,
|
|
3728
|
+
"lineHeight": 22.4,
|
|
3729
|
+
"marginBottom": 24,
|
|
3730
|
+
"textAlign": "center",
|
|
3731
|
+
"width": 32,
|
|
3732
|
+
},
|
|
3733
|
+
]
|
|
3734
|
+
}
|
|
3735
|
+
>
|
|
3736
|
+
Wo
|
|
3737
|
+
</Text>
|
|
3738
|
+
<Text
|
|
3739
|
+
accessibilityLabel=""
|
|
3740
|
+
allowFontScaling={false}
|
|
3741
|
+
numberOfLines={1}
|
|
3742
|
+
style={
|
|
3743
|
+
[
|
|
3744
|
+
{
|
|
3745
|
+
"color": "#1F2933",
|
|
3746
|
+
"fontFamily": "SourceSansProBold",
|
|
3747
|
+
"fontSize": 16,
|
|
3748
|
+
"lineHeight": 22.4,
|
|
3749
|
+
"marginBottom": 24,
|
|
3750
|
+
"textAlign": "center",
|
|
3751
|
+
"width": 32,
|
|
3752
|
+
},
|
|
3753
|
+
]
|
|
3754
|
+
}
|
|
3755
|
+
>
|
|
3756
|
+
Do
|
|
3757
|
+
</Text>
|
|
3758
|
+
<Text
|
|
3759
|
+
accessibilityLabel=""
|
|
3760
|
+
allowFontScaling={false}
|
|
3761
|
+
numberOfLines={1}
|
|
3762
|
+
style={
|
|
3763
|
+
[
|
|
3764
|
+
{
|
|
3765
|
+
"color": "#1F2933",
|
|
3766
|
+
"fontFamily": "SourceSansProBold",
|
|
3767
|
+
"fontSize": 16,
|
|
3768
|
+
"lineHeight": 22.4,
|
|
3769
|
+
"marginBottom": 24,
|
|
3770
|
+
"textAlign": "center",
|
|
3771
|
+
"width": 32,
|
|
3772
|
+
},
|
|
3773
|
+
]
|
|
3774
|
+
}
|
|
3775
|
+
>
|
|
3776
|
+
Vr
|
|
3777
|
+
</Text>
|
|
3778
|
+
<Text
|
|
3779
|
+
accessibilityLabel=""
|
|
3780
|
+
allowFontScaling={false}
|
|
3781
|
+
numberOfLines={1}
|
|
3782
|
+
style={
|
|
3783
|
+
[
|
|
3784
|
+
{
|
|
3785
|
+
"color": "#1F2933",
|
|
3786
|
+
"fontFamily": "SourceSansProBold",
|
|
3787
|
+
"fontSize": 16,
|
|
3788
|
+
"lineHeight": 22.4,
|
|
3789
|
+
"marginBottom": 24,
|
|
3790
|
+
"textAlign": "center",
|
|
3791
|
+
"width": 32,
|
|
3792
|
+
},
|
|
3793
|
+
]
|
|
3794
|
+
}
|
|
3795
|
+
>
|
|
3796
|
+
Za
|
|
3797
|
+
</Text>
|
|
3798
|
+
<Text
|
|
3799
|
+
accessibilityLabel=""
|
|
3800
|
+
allowFontScaling={false}
|
|
3801
|
+
numberOfLines={1}
|
|
3802
|
+
style={
|
|
3803
|
+
[
|
|
3804
|
+
{
|
|
3805
|
+
"color": "#1F2933",
|
|
3806
|
+
"fontFamily": "SourceSansProBold",
|
|
3807
|
+
"fontSize": 16,
|
|
3808
|
+
"lineHeight": 22.4,
|
|
3809
|
+
"marginBottom": 24,
|
|
3810
|
+
"textAlign": "center",
|
|
3811
|
+
"width": 32,
|
|
3303
3812
|
},
|
|
3304
3813
|
]
|
|
3305
3814
|
}
|
|
3306
3815
|
>
|
|
3307
|
-
Zo
|
|
3308
|
-
</Text>
|
|
3816
|
+
Zo
|
|
3817
|
+
</Text>
|
|
3818
|
+
</View>
|
|
3819
|
+
</View>
|
|
3820
|
+
<View
|
|
3821
|
+
style={
|
|
3822
|
+
{
|
|
3823
|
+
"backgroundColor": "white",
|
|
3824
|
+
}
|
|
3825
|
+
}
|
|
3826
|
+
>
|
|
3827
|
+
<View
|
|
3828
|
+
style={
|
|
3829
|
+
{
|
|
3830
|
+
"flexDirection": "row",
|
|
3831
|
+
"justifyContent": "space-around",
|
|
3832
|
+
"marginVertical": 7,
|
|
3833
|
+
}
|
|
3834
|
+
}
|
|
3835
|
+
>
|
|
3836
|
+
<View
|
|
3837
|
+
style={
|
|
3838
|
+
{
|
|
3839
|
+
"alignItems": "center",
|
|
3840
|
+
"flex": 1,
|
|
3841
|
+
}
|
|
3842
|
+
}
|
|
3843
|
+
>
|
|
3844
|
+
<View
|
|
3845
|
+
accessibilityLabel=" Maandag 26 December 2022 "
|
|
3846
|
+
accessibilityState={
|
|
3847
|
+
{
|
|
3848
|
+
"disabled": false,
|
|
3849
|
+
}
|
|
3850
|
+
}
|
|
3851
|
+
accessible={true}
|
|
3852
|
+
collapsable={false}
|
|
3853
|
+
focusable={true}
|
|
3854
|
+
onClick={[Function]}
|
|
3855
|
+
onResponderGrant={[Function]}
|
|
3856
|
+
onResponderMove={[Function]}
|
|
3857
|
+
onResponderRelease={[Function]}
|
|
3858
|
+
onResponderTerminate={[Function]}
|
|
3859
|
+
onResponderTerminationRequest={[Function]}
|
|
3860
|
+
onStartShouldSetResponder={[Function]}
|
|
3861
|
+
style={
|
|
3862
|
+
{
|
|
3863
|
+
"alignItems": "center",
|
|
3864
|
+
"height": 42,
|
|
3865
|
+
"justifyContent": "center",
|
|
3866
|
+
"opacity": 1,
|
|
3867
|
+
"width": 42,
|
|
3868
|
+
}
|
|
3869
|
+
}
|
|
3870
|
+
testID="undefined.day_2022-12-26"
|
|
3871
|
+
>
|
|
3872
|
+
<Text
|
|
3873
|
+
allowFontScaling={false}
|
|
3874
|
+
style={
|
|
3875
|
+
[
|
|
3876
|
+
{
|
|
3877
|
+
"color": "#1F2933",
|
|
3878
|
+
"fontFamily": "SourceSansPro",
|
|
3879
|
+
"fontSize": 16,
|
|
3880
|
+
"lineHeight": 22.4,
|
|
3881
|
+
"marginTop": 4,
|
|
3882
|
+
},
|
|
3883
|
+
{
|
|
3884
|
+
"color": "#9AA5B1",
|
|
3885
|
+
},
|
|
3886
|
+
]
|
|
3887
|
+
}
|
|
3888
|
+
>
|
|
3889
|
+
26
|
|
3890
|
+
</Text>
|
|
3891
|
+
<View
|
|
3892
|
+
style={
|
|
3893
|
+
[
|
|
3894
|
+
{
|
|
3895
|
+
"borderRadius": 2,
|
|
3896
|
+
"height": 4,
|
|
3897
|
+
"marginHorizontal": 1,
|
|
3898
|
+
"marginTop": 1,
|
|
3899
|
+
"opacity": 0,
|
|
3900
|
+
"width": 4,
|
|
3901
|
+
},
|
|
3902
|
+
]
|
|
3903
|
+
}
|
|
3904
|
+
/>
|
|
3905
|
+
</View>
|
|
3906
|
+
</View>
|
|
3907
|
+
<View
|
|
3908
|
+
style={
|
|
3909
|
+
{
|
|
3910
|
+
"alignItems": "center",
|
|
3911
|
+
"flex": 1,
|
|
3912
|
+
}
|
|
3913
|
+
}
|
|
3914
|
+
>
|
|
3915
|
+
<View
|
|
3916
|
+
accessibilityLabel=" Dinsdag 27 December 2022 "
|
|
3917
|
+
accessibilityState={
|
|
3918
|
+
{
|
|
3919
|
+
"disabled": false,
|
|
3920
|
+
}
|
|
3921
|
+
}
|
|
3922
|
+
accessible={true}
|
|
3923
|
+
collapsable={false}
|
|
3924
|
+
focusable={true}
|
|
3925
|
+
onClick={[Function]}
|
|
3926
|
+
onResponderGrant={[Function]}
|
|
3927
|
+
onResponderMove={[Function]}
|
|
3928
|
+
onResponderRelease={[Function]}
|
|
3929
|
+
onResponderTerminate={[Function]}
|
|
3930
|
+
onResponderTerminationRequest={[Function]}
|
|
3931
|
+
onStartShouldSetResponder={[Function]}
|
|
3932
|
+
style={
|
|
3933
|
+
{
|
|
3934
|
+
"alignItems": "center",
|
|
3935
|
+
"height": 42,
|
|
3936
|
+
"justifyContent": "center",
|
|
3937
|
+
"opacity": 1,
|
|
3938
|
+
"width": 42,
|
|
3939
|
+
}
|
|
3940
|
+
}
|
|
3941
|
+
testID="undefined.day_2022-12-27"
|
|
3942
|
+
>
|
|
3943
|
+
<Text
|
|
3944
|
+
allowFontScaling={false}
|
|
3945
|
+
style={
|
|
3946
|
+
[
|
|
3947
|
+
{
|
|
3948
|
+
"color": "#1F2933",
|
|
3949
|
+
"fontFamily": "SourceSansPro",
|
|
3950
|
+
"fontSize": 16,
|
|
3951
|
+
"lineHeight": 22.4,
|
|
3952
|
+
"marginTop": 4,
|
|
3953
|
+
},
|
|
3954
|
+
{
|
|
3955
|
+
"color": "#9AA5B1",
|
|
3956
|
+
},
|
|
3957
|
+
]
|
|
3958
|
+
}
|
|
3959
|
+
>
|
|
3960
|
+
27
|
|
3961
|
+
</Text>
|
|
3962
|
+
<View
|
|
3963
|
+
style={
|
|
3964
|
+
[
|
|
3965
|
+
{
|
|
3966
|
+
"borderRadius": 2,
|
|
3967
|
+
"height": 4,
|
|
3968
|
+
"marginHorizontal": 1,
|
|
3969
|
+
"marginTop": 1,
|
|
3970
|
+
"opacity": 0,
|
|
3971
|
+
"width": 4,
|
|
3972
|
+
},
|
|
3973
|
+
]
|
|
3974
|
+
}
|
|
3975
|
+
/>
|
|
3976
|
+
</View>
|
|
3977
|
+
</View>
|
|
3978
|
+
<View
|
|
3979
|
+
style={
|
|
3980
|
+
{
|
|
3981
|
+
"alignItems": "center",
|
|
3982
|
+
"flex": 1,
|
|
3983
|
+
}
|
|
3984
|
+
}
|
|
3985
|
+
>
|
|
3986
|
+
<View
|
|
3987
|
+
accessibilityLabel=" Woensdag 28 December 2022 "
|
|
3988
|
+
accessibilityState={
|
|
3989
|
+
{
|
|
3990
|
+
"disabled": false,
|
|
3991
|
+
}
|
|
3992
|
+
}
|
|
3993
|
+
accessible={true}
|
|
3994
|
+
collapsable={false}
|
|
3995
|
+
focusable={true}
|
|
3996
|
+
onClick={[Function]}
|
|
3997
|
+
onResponderGrant={[Function]}
|
|
3998
|
+
onResponderMove={[Function]}
|
|
3999
|
+
onResponderRelease={[Function]}
|
|
4000
|
+
onResponderTerminate={[Function]}
|
|
4001
|
+
onResponderTerminationRequest={[Function]}
|
|
4002
|
+
onStartShouldSetResponder={[Function]}
|
|
4003
|
+
style={
|
|
4004
|
+
{
|
|
4005
|
+
"alignItems": "center",
|
|
4006
|
+
"height": 42,
|
|
4007
|
+
"justifyContent": "center",
|
|
4008
|
+
"opacity": 1,
|
|
4009
|
+
"width": 42,
|
|
4010
|
+
}
|
|
4011
|
+
}
|
|
4012
|
+
testID="undefined.day_2022-12-28"
|
|
4013
|
+
>
|
|
4014
|
+
<Text
|
|
4015
|
+
allowFontScaling={false}
|
|
4016
|
+
style={
|
|
4017
|
+
[
|
|
4018
|
+
{
|
|
4019
|
+
"color": "#1F2933",
|
|
4020
|
+
"fontFamily": "SourceSansPro",
|
|
4021
|
+
"fontSize": 16,
|
|
4022
|
+
"lineHeight": 22.4,
|
|
4023
|
+
"marginTop": 4,
|
|
4024
|
+
},
|
|
4025
|
+
{
|
|
4026
|
+
"color": "#9AA5B1",
|
|
4027
|
+
},
|
|
4028
|
+
]
|
|
4029
|
+
}
|
|
4030
|
+
>
|
|
4031
|
+
28
|
|
4032
|
+
</Text>
|
|
4033
|
+
<View
|
|
4034
|
+
style={
|
|
4035
|
+
[
|
|
4036
|
+
{
|
|
4037
|
+
"borderRadius": 2,
|
|
4038
|
+
"height": 4,
|
|
4039
|
+
"marginHorizontal": 1,
|
|
4040
|
+
"marginTop": 1,
|
|
4041
|
+
"opacity": 0,
|
|
4042
|
+
"width": 4,
|
|
4043
|
+
},
|
|
4044
|
+
]
|
|
4045
|
+
}
|
|
4046
|
+
/>
|
|
4047
|
+
</View>
|
|
4048
|
+
</View>
|
|
4049
|
+
<View
|
|
4050
|
+
style={
|
|
4051
|
+
{
|
|
4052
|
+
"alignItems": "center",
|
|
4053
|
+
"flex": 1,
|
|
4054
|
+
}
|
|
4055
|
+
}
|
|
4056
|
+
>
|
|
4057
|
+
<View
|
|
4058
|
+
accessibilityLabel=" Donderdag 29 December 2022 "
|
|
4059
|
+
accessibilityState={
|
|
4060
|
+
{
|
|
4061
|
+
"disabled": false,
|
|
4062
|
+
}
|
|
4063
|
+
}
|
|
4064
|
+
accessible={true}
|
|
4065
|
+
collapsable={false}
|
|
4066
|
+
focusable={true}
|
|
4067
|
+
onClick={[Function]}
|
|
4068
|
+
onResponderGrant={[Function]}
|
|
4069
|
+
onResponderMove={[Function]}
|
|
4070
|
+
onResponderRelease={[Function]}
|
|
4071
|
+
onResponderTerminate={[Function]}
|
|
4072
|
+
onResponderTerminationRequest={[Function]}
|
|
4073
|
+
onStartShouldSetResponder={[Function]}
|
|
4074
|
+
style={
|
|
4075
|
+
{
|
|
4076
|
+
"alignItems": "center",
|
|
4077
|
+
"height": 42,
|
|
4078
|
+
"justifyContent": "center",
|
|
4079
|
+
"opacity": 1,
|
|
4080
|
+
"width": 42,
|
|
4081
|
+
}
|
|
4082
|
+
}
|
|
4083
|
+
testID="undefined.day_2022-12-29"
|
|
4084
|
+
>
|
|
4085
|
+
<Text
|
|
4086
|
+
allowFontScaling={false}
|
|
4087
|
+
style={
|
|
4088
|
+
[
|
|
4089
|
+
{
|
|
4090
|
+
"color": "#1F2933",
|
|
4091
|
+
"fontFamily": "SourceSansPro",
|
|
4092
|
+
"fontSize": 16,
|
|
4093
|
+
"lineHeight": 22.4,
|
|
4094
|
+
"marginTop": 4,
|
|
4095
|
+
},
|
|
4096
|
+
{
|
|
4097
|
+
"color": "#9AA5B1",
|
|
4098
|
+
},
|
|
4099
|
+
]
|
|
4100
|
+
}
|
|
4101
|
+
>
|
|
4102
|
+
29
|
|
4103
|
+
</Text>
|
|
4104
|
+
<View
|
|
4105
|
+
style={
|
|
4106
|
+
[
|
|
4107
|
+
{
|
|
4108
|
+
"borderRadius": 2,
|
|
4109
|
+
"height": 4,
|
|
4110
|
+
"marginHorizontal": 1,
|
|
4111
|
+
"marginTop": 1,
|
|
4112
|
+
"opacity": 0,
|
|
4113
|
+
"width": 4,
|
|
4114
|
+
},
|
|
4115
|
+
]
|
|
4116
|
+
}
|
|
4117
|
+
/>
|
|
4118
|
+
</View>
|
|
4119
|
+
</View>
|
|
4120
|
+
<View
|
|
4121
|
+
style={
|
|
4122
|
+
{
|
|
4123
|
+
"alignItems": "center",
|
|
4124
|
+
"flex": 1,
|
|
4125
|
+
}
|
|
4126
|
+
}
|
|
4127
|
+
>
|
|
4128
|
+
<View
|
|
4129
|
+
accessibilityLabel=" Vrijdag 30 December 2022 "
|
|
4130
|
+
accessibilityState={
|
|
4131
|
+
{
|
|
4132
|
+
"disabled": false,
|
|
4133
|
+
}
|
|
4134
|
+
}
|
|
4135
|
+
accessible={true}
|
|
4136
|
+
collapsable={false}
|
|
4137
|
+
focusable={true}
|
|
4138
|
+
onClick={[Function]}
|
|
4139
|
+
onResponderGrant={[Function]}
|
|
4140
|
+
onResponderMove={[Function]}
|
|
4141
|
+
onResponderRelease={[Function]}
|
|
4142
|
+
onResponderTerminate={[Function]}
|
|
4143
|
+
onResponderTerminationRequest={[Function]}
|
|
4144
|
+
onStartShouldSetResponder={[Function]}
|
|
4145
|
+
style={
|
|
4146
|
+
{
|
|
4147
|
+
"alignItems": "center",
|
|
4148
|
+
"height": 42,
|
|
4149
|
+
"justifyContent": "center",
|
|
4150
|
+
"opacity": 1,
|
|
4151
|
+
"width": 42,
|
|
4152
|
+
}
|
|
4153
|
+
}
|
|
4154
|
+
testID="undefined.day_2022-12-30"
|
|
4155
|
+
>
|
|
4156
|
+
<Text
|
|
4157
|
+
allowFontScaling={false}
|
|
4158
|
+
style={
|
|
4159
|
+
[
|
|
4160
|
+
{
|
|
4161
|
+
"color": "#1F2933",
|
|
4162
|
+
"fontFamily": "SourceSansPro",
|
|
4163
|
+
"fontSize": 16,
|
|
4164
|
+
"lineHeight": 22.4,
|
|
4165
|
+
"marginTop": 4,
|
|
4166
|
+
},
|
|
4167
|
+
{
|
|
4168
|
+
"color": "#9AA5B1",
|
|
4169
|
+
},
|
|
4170
|
+
]
|
|
4171
|
+
}
|
|
4172
|
+
>
|
|
4173
|
+
30
|
|
4174
|
+
</Text>
|
|
4175
|
+
<View
|
|
4176
|
+
style={
|
|
4177
|
+
[
|
|
4178
|
+
{
|
|
4179
|
+
"borderRadius": 2,
|
|
4180
|
+
"height": 4,
|
|
4181
|
+
"marginHorizontal": 1,
|
|
4182
|
+
"marginTop": 1,
|
|
4183
|
+
"opacity": 0,
|
|
4184
|
+
"width": 4,
|
|
4185
|
+
},
|
|
4186
|
+
]
|
|
4187
|
+
}
|
|
4188
|
+
/>
|
|
4189
|
+
</View>
|
|
4190
|
+
</View>
|
|
4191
|
+
<View
|
|
4192
|
+
style={
|
|
4193
|
+
{
|
|
4194
|
+
"alignItems": "center",
|
|
4195
|
+
"flex": 1,
|
|
4196
|
+
}
|
|
4197
|
+
}
|
|
4198
|
+
>
|
|
4199
|
+
<View
|
|
4200
|
+
accessibilityLabel=" Zaterdag 31 December 2022 "
|
|
4201
|
+
accessibilityState={
|
|
4202
|
+
{
|
|
4203
|
+
"disabled": false,
|
|
4204
|
+
}
|
|
4205
|
+
}
|
|
4206
|
+
accessible={true}
|
|
4207
|
+
collapsable={false}
|
|
4208
|
+
focusable={true}
|
|
4209
|
+
onClick={[Function]}
|
|
4210
|
+
onResponderGrant={[Function]}
|
|
4211
|
+
onResponderMove={[Function]}
|
|
4212
|
+
onResponderRelease={[Function]}
|
|
4213
|
+
onResponderTerminate={[Function]}
|
|
4214
|
+
onResponderTerminationRequest={[Function]}
|
|
4215
|
+
onStartShouldSetResponder={[Function]}
|
|
4216
|
+
style={
|
|
4217
|
+
{
|
|
4218
|
+
"alignItems": "center",
|
|
4219
|
+
"height": 42,
|
|
4220
|
+
"justifyContent": "center",
|
|
4221
|
+
"opacity": 1,
|
|
4222
|
+
"width": 42,
|
|
4223
|
+
}
|
|
4224
|
+
}
|
|
4225
|
+
testID="undefined.day_2022-12-31"
|
|
4226
|
+
>
|
|
4227
|
+
<Text
|
|
4228
|
+
allowFontScaling={false}
|
|
4229
|
+
style={
|
|
4230
|
+
[
|
|
4231
|
+
{
|
|
4232
|
+
"color": "#1F2933",
|
|
4233
|
+
"fontFamily": "SourceSansPro",
|
|
4234
|
+
"fontSize": 16,
|
|
4235
|
+
"lineHeight": 22.4,
|
|
4236
|
+
"marginTop": 4,
|
|
4237
|
+
},
|
|
4238
|
+
{
|
|
4239
|
+
"color": "#9AA5B1",
|
|
4240
|
+
},
|
|
4241
|
+
]
|
|
4242
|
+
}
|
|
4243
|
+
>
|
|
4244
|
+
31
|
|
4245
|
+
</Text>
|
|
4246
|
+
<View
|
|
4247
|
+
style={
|
|
4248
|
+
[
|
|
4249
|
+
{
|
|
4250
|
+
"borderRadius": 2,
|
|
4251
|
+
"height": 4,
|
|
4252
|
+
"marginHorizontal": 1,
|
|
4253
|
+
"marginTop": 1,
|
|
4254
|
+
"opacity": 0,
|
|
4255
|
+
"width": 4,
|
|
4256
|
+
},
|
|
4257
|
+
]
|
|
4258
|
+
}
|
|
4259
|
+
/>
|
|
4260
|
+
</View>
|
|
4261
|
+
</View>
|
|
4262
|
+
<View
|
|
4263
|
+
style={
|
|
4264
|
+
{
|
|
4265
|
+
"alignItems": "center",
|
|
4266
|
+
"flex": 1,
|
|
4267
|
+
}
|
|
4268
|
+
}
|
|
4269
|
+
>
|
|
4270
|
+
<View
|
|
4271
|
+
accessibilityLabel=" Zondag 1 Januari 2023 "
|
|
4272
|
+
accessibilityState={
|
|
4273
|
+
{
|
|
4274
|
+
"disabled": false,
|
|
4275
|
+
}
|
|
4276
|
+
}
|
|
4277
|
+
accessible={true}
|
|
4278
|
+
collapsable={false}
|
|
4279
|
+
focusable={true}
|
|
4280
|
+
onClick={[Function]}
|
|
4281
|
+
onResponderGrant={[Function]}
|
|
4282
|
+
onResponderMove={[Function]}
|
|
4283
|
+
onResponderRelease={[Function]}
|
|
4284
|
+
onResponderTerminate={[Function]}
|
|
4285
|
+
onResponderTerminationRequest={[Function]}
|
|
4286
|
+
onStartShouldSetResponder={[Function]}
|
|
4287
|
+
style={
|
|
4288
|
+
{
|
|
4289
|
+
"alignItems": "center",
|
|
4290
|
+
"height": 42,
|
|
4291
|
+
"justifyContent": "center",
|
|
4292
|
+
"opacity": 1,
|
|
4293
|
+
"width": 42,
|
|
4294
|
+
}
|
|
4295
|
+
}
|
|
4296
|
+
testID="undefined.day_2023-01-01"
|
|
4297
|
+
>
|
|
4298
|
+
<Text
|
|
4299
|
+
allowFontScaling={false}
|
|
4300
|
+
style={
|
|
4301
|
+
[
|
|
4302
|
+
{
|
|
4303
|
+
"color": "#1F2933",
|
|
4304
|
+
"fontFamily": "SourceSansPro",
|
|
4305
|
+
"fontSize": 16,
|
|
4306
|
+
"lineHeight": 22.4,
|
|
4307
|
+
"marginTop": 4,
|
|
4308
|
+
},
|
|
4309
|
+
{
|
|
4310
|
+
"color": "#9AA5B1",
|
|
4311
|
+
},
|
|
4312
|
+
]
|
|
4313
|
+
}
|
|
4314
|
+
>
|
|
4315
|
+
1
|
|
4316
|
+
</Text>
|
|
4317
|
+
<View
|
|
4318
|
+
style={
|
|
4319
|
+
[
|
|
4320
|
+
{
|
|
4321
|
+
"borderRadius": 2,
|
|
4322
|
+
"height": 4,
|
|
4323
|
+
"marginHorizontal": 1,
|
|
4324
|
+
"marginTop": 1,
|
|
4325
|
+
"opacity": 0,
|
|
4326
|
+
"width": 4,
|
|
4327
|
+
},
|
|
4328
|
+
]
|
|
4329
|
+
}
|
|
4330
|
+
/>
|
|
4331
|
+
</View>
|
|
4332
|
+
</View>
|
|
3309
4333
|
</View>
|
|
3310
|
-
</View>
|
|
3311
|
-
<View
|
|
3312
|
-
style={
|
|
3313
|
-
{
|
|
3314
|
-
"backgroundColor": "white",
|
|
3315
|
-
}
|
|
3316
|
-
}
|
|
3317
|
-
>
|
|
3318
4334
|
<View
|
|
3319
4335
|
style={
|
|
3320
4336
|
{
|
|
@@ -3333,7 +4349,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3333
4349
|
}
|
|
3334
4350
|
>
|
|
3335
4351
|
<View
|
|
3336
|
-
accessibilityLabel=" Maandag
|
|
4352
|
+
accessibilityLabel=" Maandag 2 Januari 2023 "
|
|
3337
4353
|
accessibilityState={
|
|
3338
4354
|
{
|
|
3339
4355
|
"disabled": false,
|
|
@@ -3358,7 +4374,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3358
4374
|
"width": 42,
|
|
3359
4375
|
}
|
|
3360
4376
|
}
|
|
3361
|
-
testID="undefined.
|
|
4377
|
+
testID="undefined.day_2023-01-02"
|
|
3362
4378
|
>
|
|
3363
4379
|
<Text
|
|
3364
4380
|
allowFontScaling={false}
|
|
@@ -3377,7 +4393,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3377
4393
|
]
|
|
3378
4394
|
}
|
|
3379
4395
|
>
|
|
3380
|
-
|
|
4396
|
+
2
|
|
3381
4397
|
</Text>
|
|
3382
4398
|
<View
|
|
3383
4399
|
style={
|
|
@@ -3404,7 +4420,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3404
4420
|
}
|
|
3405
4421
|
>
|
|
3406
4422
|
<View
|
|
3407
|
-
accessibilityLabel=" Dinsdag
|
|
4423
|
+
accessibilityLabel=" Dinsdag 3 Januari 2023 "
|
|
3408
4424
|
accessibilityState={
|
|
3409
4425
|
{
|
|
3410
4426
|
"disabled": false,
|
|
@@ -3429,7 +4445,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3429
4445
|
"width": 42,
|
|
3430
4446
|
}
|
|
3431
4447
|
}
|
|
3432
|
-
testID="undefined.
|
|
4448
|
+
testID="undefined.day_2023-01-03"
|
|
3433
4449
|
>
|
|
3434
4450
|
<Text
|
|
3435
4451
|
allowFontScaling={false}
|
|
@@ -3448,7 +4464,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3448
4464
|
]
|
|
3449
4465
|
}
|
|
3450
4466
|
>
|
|
3451
|
-
|
|
4467
|
+
3
|
|
3452
4468
|
</Text>
|
|
3453
4469
|
<View
|
|
3454
4470
|
style={
|
|
@@ -3475,7 +4491,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3475
4491
|
}
|
|
3476
4492
|
>
|
|
3477
4493
|
<View
|
|
3478
|
-
accessibilityLabel=" Woensdag
|
|
4494
|
+
accessibilityLabel=" Woensdag 4 Januari 2023 "
|
|
3479
4495
|
accessibilityState={
|
|
3480
4496
|
{
|
|
3481
4497
|
"disabled": false,
|
|
@@ -3500,7 +4516,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3500
4516
|
"width": 42,
|
|
3501
4517
|
}
|
|
3502
4518
|
}
|
|
3503
|
-
testID="undefined.
|
|
4519
|
+
testID="undefined.day_2023-01-04"
|
|
3504
4520
|
>
|
|
3505
4521
|
<Text
|
|
3506
4522
|
allowFontScaling={false}
|
|
@@ -3519,7 +4535,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3519
4535
|
]
|
|
3520
4536
|
}
|
|
3521
4537
|
>
|
|
3522
|
-
|
|
4538
|
+
4
|
|
3523
4539
|
</Text>
|
|
3524
4540
|
<View
|
|
3525
4541
|
style={
|
|
@@ -3546,8 +4562,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3546
4562
|
}
|
|
3547
4563
|
>
|
|
3548
4564
|
<View
|
|
3549
|
-
accessibilityLabel=" Donderdag
|
|
3550
|
-
accessibilityRole="button"
|
|
4565
|
+
accessibilityLabel=" Donderdag 5 Januari 2023 "
|
|
3551
4566
|
accessibilityState={
|
|
3552
4567
|
{
|
|
3553
4568
|
"disabled": false,
|
|
@@ -3572,7 +4587,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3572
4587
|
"width": 42,
|
|
3573
4588
|
}
|
|
3574
4589
|
}
|
|
3575
|
-
testID="undefined.
|
|
4590
|
+
testID="undefined.day_2023-01-05"
|
|
3576
4591
|
>
|
|
3577
4592
|
<Text
|
|
3578
4593
|
allowFontScaling={false}
|
|
@@ -3585,10 +4600,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3585
4600
|
"lineHeight": 22.4,
|
|
3586
4601
|
"marginTop": 4,
|
|
3587
4602
|
},
|
|
4603
|
+
{
|
|
4604
|
+
"color": "#9AA5B1",
|
|
4605
|
+
},
|
|
3588
4606
|
]
|
|
3589
4607
|
}
|
|
3590
4608
|
>
|
|
3591
|
-
|
|
4609
|
+
5
|
|
3592
4610
|
</Text>
|
|
3593
4611
|
<View
|
|
3594
4612
|
style={
|
|
@@ -3615,8 +4633,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3615
4633
|
}
|
|
3616
4634
|
>
|
|
3617
4635
|
<View
|
|
3618
|
-
accessibilityLabel=" Vrijdag
|
|
3619
|
-
accessibilityRole="button"
|
|
4636
|
+
accessibilityLabel=" Vrijdag 6 Januari 2023 "
|
|
3620
4637
|
accessibilityState={
|
|
3621
4638
|
{
|
|
3622
4639
|
"disabled": false,
|
|
@@ -3641,7 +4658,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3641
4658
|
"width": 42,
|
|
3642
4659
|
}
|
|
3643
4660
|
}
|
|
3644
|
-
testID="undefined.
|
|
4661
|
+
testID="undefined.day_2023-01-06"
|
|
3645
4662
|
>
|
|
3646
4663
|
<Text
|
|
3647
4664
|
allowFontScaling={false}
|
|
@@ -3654,10 +4671,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3654
4671
|
"lineHeight": 22.4,
|
|
3655
4672
|
"marginTop": 4,
|
|
3656
4673
|
},
|
|
4674
|
+
{
|
|
4675
|
+
"color": "#9AA5B1",
|
|
4676
|
+
},
|
|
3657
4677
|
]
|
|
3658
4678
|
}
|
|
3659
4679
|
>
|
|
3660
|
-
|
|
4680
|
+
6
|
|
3661
4681
|
</Text>
|
|
3662
4682
|
<View
|
|
3663
4683
|
style={
|
|
@@ -3684,8 +4704,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3684
4704
|
}
|
|
3685
4705
|
>
|
|
3686
4706
|
<View
|
|
3687
|
-
accessibilityLabel=" Zaterdag
|
|
3688
|
-
accessibilityRole="button"
|
|
4707
|
+
accessibilityLabel=" Zaterdag 7 Januari 2023 "
|
|
3689
4708
|
accessibilityState={
|
|
3690
4709
|
{
|
|
3691
4710
|
"disabled": false,
|
|
@@ -3710,7 +4729,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3710
4729
|
"width": 42,
|
|
3711
4730
|
}
|
|
3712
4731
|
}
|
|
3713
|
-
testID="undefined.
|
|
4732
|
+
testID="undefined.day_2023-01-07"
|
|
3714
4733
|
>
|
|
3715
4734
|
<Text
|
|
3716
4735
|
allowFontScaling={false}
|
|
@@ -3723,10 +4742,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3723
4742
|
"lineHeight": 22.4,
|
|
3724
4743
|
"marginTop": 4,
|
|
3725
4744
|
},
|
|
4745
|
+
{
|
|
4746
|
+
"color": "#9AA5B1",
|
|
4747
|
+
},
|
|
3726
4748
|
]
|
|
3727
4749
|
}
|
|
3728
4750
|
>
|
|
3729
|
-
|
|
4751
|
+
7
|
|
3730
4752
|
</Text>
|
|
3731
4753
|
<View
|
|
3732
4754
|
style={
|
|
@@ -3753,8 +4775,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3753
4775
|
}
|
|
3754
4776
|
>
|
|
3755
4777
|
<View
|
|
3756
|
-
accessibilityLabel=" Zondag
|
|
3757
|
-
accessibilityRole="button"
|
|
4778
|
+
accessibilityLabel=" Zondag 8 Januari 2023 "
|
|
3758
4779
|
accessibilityState={
|
|
3759
4780
|
{
|
|
3760
4781
|
"disabled": false,
|
|
@@ -3779,7 +4800,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3779
4800
|
"width": 42,
|
|
3780
4801
|
}
|
|
3781
4802
|
}
|
|
3782
|
-
testID="undefined.
|
|
4803
|
+
testID="undefined.day_2023-01-08"
|
|
3783
4804
|
>
|
|
3784
4805
|
<Text
|
|
3785
4806
|
allowFontScaling={false}
|
|
@@ -3792,10 +4813,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3792
4813
|
"lineHeight": 22.4,
|
|
3793
4814
|
"marginTop": 4,
|
|
3794
4815
|
},
|
|
4816
|
+
{
|
|
4817
|
+
"color": "#9AA5B1",
|
|
4818
|
+
},
|
|
3795
4819
|
]
|
|
3796
4820
|
}
|
|
3797
4821
|
>
|
|
3798
|
-
|
|
4822
|
+
8
|
|
3799
4823
|
</Text>
|
|
3800
4824
|
<View
|
|
3801
4825
|
style={
|
|
@@ -3832,8 +4856,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3832
4856
|
}
|
|
3833
4857
|
>
|
|
3834
4858
|
<View
|
|
3835
|
-
accessibilityLabel=" Maandag
|
|
3836
|
-
accessibilityRole="button"
|
|
4859
|
+
accessibilityLabel=" Maandag 9 Januari 2023 "
|
|
3837
4860
|
accessibilityState={
|
|
3838
4861
|
{
|
|
3839
4862
|
"disabled": false,
|
|
@@ -3858,7 +4881,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3858
4881
|
"width": 42,
|
|
3859
4882
|
}
|
|
3860
4883
|
}
|
|
3861
|
-
testID="undefined.
|
|
4884
|
+
testID="undefined.day_2023-01-09"
|
|
3862
4885
|
>
|
|
3863
4886
|
<Text
|
|
3864
4887
|
allowFontScaling={false}
|
|
@@ -3871,10 +4894,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3871
4894
|
"lineHeight": 22.4,
|
|
3872
4895
|
"marginTop": 4,
|
|
3873
4896
|
},
|
|
4897
|
+
{
|
|
4898
|
+
"color": "#9AA5B1",
|
|
4899
|
+
},
|
|
3874
4900
|
]
|
|
3875
4901
|
}
|
|
3876
4902
|
>
|
|
3877
|
-
|
|
4903
|
+
9
|
|
3878
4904
|
</Text>
|
|
3879
4905
|
<View
|
|
3880
4906
|
style={
|
|
@@ -3901,7 +4927,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3901
4927
|
}
|
|
3902
4928
|
>
|
|
3903
4929
|
<View
|
|
3904
|
-
accessibilityLabel=" Dinsdag
|
|
4930
|
+
accessibilityLabel="today Dinsdag 10 Januari 2023 "
|
|
3905
4931
|
accessibilityRole="button"
|
|
3906
4932
|
accessibilityState={
|
|
3907
4933
|
{
|
|
@@ -3921,13 +4947,17 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3921
4947
|
style={
|
|
3922
4948
|
{
|
|
3923
4949
|
"alignItems": "center",
|
|
4950
|
+
"borderColor": "#7B93DB",
|
|
4951
|
+
"borderRadius": 21,
|
|
4952
|
+
"borderStyle": "solid",
|
|
4953
|
+
"borderWidth": 1,
|
|
3924
4954
|
"height": 42,
|
|
3925
4955
|
"justifyContent": "center",
|
|
3926
4956
|
"opacity": 1,
|
|
3927
4957
|
"width": 42,
|
|
3928
4958
|
}
|
|
3929
4959
|
}
|
|
3930
|
-
testID="undefined.
|
|
4960
|
+
testID="undefined.day_2023-01-10"
|
|
3931
4961
|
>
|
|
3932
4962
|
<Text
|
|
3933
4963
|
allowFontScaling={false}
|
|
@@ -3940,10 +4970,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3940
4970
|
"lineHeight": 22.4,
|
|
3941
4971
|
"marginTop": 4,
|
|
3942
4972
|
},
|
|
4973
|
+
{
|
|
4974
|
+
"color": "#7B93DB",
|
|
4975
|
+
},
|
|
3943
4976
|
]
|
|
3944
4977
|
}
|
|
3945
4978
|
>
|
|
3946
|
-
|
|
4979
|
+
10
|
|
3947
4980
|
</Text>
|
|
3948
4981
|
<View
|
|
3949
4982
|
style={
|
|
@@ -3970,8 +5003,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3970
5003
|
}
|
|
3971
5004
|
>
|
|
3972
5005
|
<View
|
|
3973
|
-
accessibilityLabel=" Woensdag
|
|
3974
|
-
accessibilityRole="button"
|
|
5006
|
+
accessibilityLabel=" Woensdag 11 Januari 2023 "
|
|
3975
5007
|
accessibilityState={
|
|
3976
5008
|
{
|
|
3977
5009
|
"disabled": false,
|
|
@@ -3996,7 +5028,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
3996
5028
|
"width": 42,
|
|
3997
5029
|
}
|
|
3998
5030
|
}
|
|
3999
|
-
testID="undefined.
|
|
5031
|
+
testID="undefined.day_2023-01-11"
|
|
4000
5032
|
>
|
|
4001
5033
|
<Text
|
|
4002
5034
|
allowFontScaling={false}
|
|
@@ -4009,10 +5041,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4009
5041
|
"lineHeight": 22.4,
|
|
4010
5042
|
"marginTop": 4,
|
|
4011
5043
|
},
|
|
5044
|
+
{
|
|
5045
|
+
"color": "#9AA5B1",
|
|
5046
|
+
},
|
|
4012
5047
|
]
|
|
4013
5048
|
}
|
|
4014
5049
|
>
|
|
4015
|
-
|
|
5050
|
+
11
|
|
4016
5051
|
</Text>
|
|
4017
5052
|
<View
|
|
4018
5053
|
style={
|
|
@@ -4039,8 +5074,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4039
5074
|
}
|
|
4040
5075
|
>
|
|
4041
5076
|
<View
|
|
4042
|
-
accessibilityLabel=" Donderdag
|
|
4043
|
-
accessibilityRole="button"
|
|
5077
|
+
accessibilityLabel=" Donderdag 12 Januari 2023 "
|
|
4044
5078
|
accessibilityState={
|
|
4045
5079
|
{
|
|
4046
5080
|
"disabled": false,
|
|
@@ -4065,7 +5099,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4065
5099
|
"width": 42,
|
|
4066
5100
|
}
|
|
4067
5101
|
}
|
|
4068
|
-
testID="undefined.
|
|
5102
|
+
testID="undefined.day_2023-01-12"
|
|
4069
5103
|
>
|
|
4070
5104
|
<Text
|
|
4071
5105
|
allowFontScaling={false}
|
|
@@ -4078,10 +5112,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4078
5112
|
"lineHeight": 22.4,
|
|
4079
5113
|
"marginTop": 4,
|
|
4080
5114
|
},
|
|
5115
|
+
{
|
|
5116
|
+
"color": "#9AA5B1",
|
|
5117
|
+
},
|
|
4081
5118
|
]
|
|
4082
5119
|
}
|
|
4083
5120
|
>
|
|
4084
|
-
|
|
5121
|
+
12
|
|
4085
5122
|
</Text>
|
|
4086
5123
|
<View
|
|
4087
5124
|
style={
|
|
@@ -4108,8 +5145,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4108
5145
|
}
|
|
4109
5146
|
>
|
|
4110
5147
|
<View
|
|
4111
|
-
accessibilityLabel=" Vrijdag
|
|
4112
|
-
accessibilityRole="button"
|
|
5148
|
+
accessibilityLabel=" Vrijdag 13 Januari 2023 "
|
|
4113
5149
|
accessibilityState={
|
|
4114
5150
|
{
|
|
4115
5151
|
"disabled": false,
|
|
@@ -4134,7 +5170,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4134
5170
|
"width": 42,
|
|
4135
5171
|
}
|
|
4136
5172
|
}
|
|
4137
|
-
testID="undefined.
|
|
5173
|
+
testID="undefined.day_2023-01-13"
|
|
4138
5174
|
>
|
|
4139
5175
|
<Text
|
|
4140
5176
|
allowFontScaling={false}
|
|
@@ -4147,10 +5183,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4147
5183
|
"lineHeight": 22.4,
|
|
4148
5184
|
"marginTop": 4,
|
|
4149
5185
|
},
|
|
5186
|
+
{
|
|
5187
|
+
"color": "#9AA5B1",
|
|
5188
|
+
},
|
|
4150
5189
|
]
|
|
4151
5190
|
}
|
|
4152
5191
|
>
|
|
4153
|
-
|
|
5192
|
+
13
|
|
4154
5193
|
</Text>
|
|
4155
5194
|
<View
|
|
4156
5195
|
style={
|
|
@@ -4177,8 +5216,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4177
5216
|
}
|
|
4178
5217
|
>
|
|
4179
5218
|
<View
|
|
4180
|
-
accessibilityLabel=" Zaterdag
|
|
4181
|
-
accessibilityRole="button"
|
|
5219
|
+
accessibilityLabel=" Zaterdag 14 Januari 2023 "
|
|
4182
5220
|
accessibilityState={
|
|
4183
5221
|
{
|
|
4184
5222
|
"disabled": false,
|
|
@@ -4203,7 +5241,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4203
5241
|
"width": 42,
|
|
4204
5242
|
}
|
|
4205
5243
|
}
|
|
4206
|
-
testID="undefined.
|
|
5244
|
+
testID="undefined.day_2023-01-14"
|
|
4207
5245
|
>
|
|
4208
5246
|
<Text
|
|
4209
5247
|
allowFontScaling={false}
|
|
@@ -4216,10 +5254,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4216
5254
|
"lineHeight": 22.4,
|
|
4217
5255
|
"marginTop": 4,
|
|
4218
5256
|
},
|
|
5257
|
+
{
|
|
5258
|
+
"color": "#9AA5B1",
|
|
5259
|
+
},
|
|
4219
5260
|
]
|
|
4220
5261
|
}
|
|
4221
5262
|
>
|
|
4222
|
-
|
|
5263
|
+
14
|
|
4223
5264
|
</Text>
|
|
4224
5265
|
<View
|
|
4225
5266
|
style={
|
|
@@ -4246,8 +5287,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4246
5287
|
}
|
|
4247
5288
|
>
|
|
4248
5289
|
<View
|
|
4249
|
-
accessibilityLabel=" Zondag
|
|
4250
|
-
accessibilityRole="button"
|
|
5290
|
+
accessibilityLabel=" Zondag 15 Januari 2023 "
|
|
4251
5291
|
accessibilityState={
|
|
4252
5292
|
{
|
|
4253
5293
|
"disabled": false,
|
|
@@ -4272,7 +5312,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4272
5312
|
"width": 42,
|
|
4273
5313
|
}
|
|
4274
5314
|
}
|
|
4275
|
-
testID="undefined.
|
|
5315
|
+
testID="undefined.day_2023-01-15"
|
|
4276
5316
|
>
|
|
4277
5317
|
<Text
|
|
4278
5318
|
allowFontScaling={false}
|
|
@@ -4285,10 +5325,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4285
5325
|
"lineHeight": 22.4,
|
|
4286
5326
|
"marginTop": 4,
|
|
4287
5327
|
},
|
|
5328
|
+
{
|
|
5329
|
+
"color": "#9AA5B1",
|
|
5330
|
+
},
|
|
4288
5331
|
]
|
|
4289
5332
|
}
|
|
4290
5333
|
>
|
|
4291
|
-
|
|
5334
|
+
15
|
|
4292
5335
|
</Text>
|
|
4293
5336
|
<View
|
|
4294
5337
|
style={
|
|
@@ -4325,8 +5368,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4325
5368
|
}
|
|
4326
5369
|
>
|
|
4327
5370
|
<View
|
|
4328
|
-
accessibilityLabel=" Maandag
|
|
4329
|
-
accessibilityRole="button"
|
|
5371
|
+
accessibilityLabel=" Maandag 16 Januari 2023 "
|
|
4330
5372
|
accessibilityState={
|
|
4331
5373
|
{
|
|
4332
5374
|
"disabled": false,
|
|
@@ -4351,7 +5393,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4351
5393
|
"width": 42,
|
|
4352
5394
|
}
|
|
4353
5395
|
}
|
|
4354
|
-
testID="undefined.
|
|
5396
|
+
testID="undefined.day_2023-01-16"
|
|
4355
5397
|
>
|
|
4356
5398
|
<Text
|
|
4357
5399
|
allowFontScaling={false}
|
|
@@ -4364,10 +5406,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4364
5406
|
"lineHeight": 22.4,
|
|
4365
5407
|
"marginTop": 4,
|
|
4366
5408
|
},
|
|
5409
|
+
{
|
|
5410
|
+
"color": "#9AA5B1",
|
|
5411
|
+
},
|
|
4367
5412
|
]
|
|
4368
5413
|
}
|
|
4369
5414
|
>
|
|
4370
|
-
|
|
5415
|
+
16
|
|
4371
5416
|
</Text>
|
|
4372
5417
|
<View
|
|
4373
5418
|
style={
|
|
@@ -4394,8 +5439,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4394
5439
|
}
|
|
4395
5440
|
>
|
|
4396
5441
|
<View
|
|
4397
|
-
accessibilityLabel=" Dinsdag
|
|
4398
|
-
accessibilityRole="button"
|
|
5442
|
+
accessibilityLabel=" Dinsdag 17 Januari 2023 "
|
|
4399
5443
|
accessibilityState={
|
|
4400
5444
|
{
|
|
4401
5445
|
"disabled": false,
|
|
@@ -4420,7 +5464,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4420
5464
|
"width": 42,
|
|
4421
5465
|
}
|
|
4422
5466
|
}
|
|
4423
|
-
testID="undefined.
|
|
5467
|
+
testID="undefined.day_2023-01-17"
|
|
4424
5468
|
>
|
|
4425
5469
|
<Text
|
|
4426
5470
|
allowFontScaling={false}
|
|
@@ -4433,10 +5477,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4433
5477
|
"lineHeight": 22.4,
|
|
4434
5478
|
"marginTop": 4,
|
|
4435
5479
|
},
|
|
5480
|
+
{
|
|
5481
|
+
"color": "#9AA5B1",
|
|
5482
|
+
},
|
|
4436
5483
|
]
|
|
4437
5484
|
}
|
|
4438
5485
|
>
|
|
4439
|
-
|
|
5486
|
+
17
|
|
4440
5487
|
</Text>
|
|
4441
5488
|
<View
|
|
4442
5489
|
style={
|
|
@@ -4463,8 +5510,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4463
5510
|
}
|
|
4464
5511
|
>
|
|
4465
5512
|
<View
|
|
4466
|
-
accessibilityLabel=" Woensdag
|
|
4467
|
-
accessibilityRole="button"
|
|
5513
|
+
accessibilityLabel=" Woensdag 18 Januari 2023 "
|
|
4468
5514
|
accessibilityState={
|
|
4469
5515
|
{
|
|
4470
5516
|
"disabled": false,
|
|
@@ -4489,7 +5535,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4489
5535
|
"width": 42,
|
|
4490
5536
|
}
|
|
4491
5537
|
}
|
|
4492
|
-
testID="undefined.
|
|
5538
|
+
testID="undefined.day_2023-01-18"
|
|
4493
5539
|
>
|
|
4494
5540
|
<Text
|
|
4495
5541
|
allowFontScaling={false}
|
|
@@ -4502,10 +5548,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4502
5548
|
"lineHeight": 22.4,
|
|
4503
5549
|
"marginTop": 4,
|
|
4504
5550
|
},
|
|
5551
|
+
{
|
|
5552
|
+
"color": "#9AA5B1",
|
|
5553
|
+
},
|
|
4505
5554
|
]
|
|
4506
5555
|
}
|
|
4507
5556
|
>
|
|
4508
|
-
|
|
5557
|
+
18
|
|
4509
5558
|
</Text>
|
|
4510
5559
|
<View
|
|
4511
5560
|
style={
|
|
@@ -4532,8 +5581,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4532
5581
|
}
|
|
4533
5582
|
>
|
|
4534
5583
|
<View
|
|
4535
|
-
accessibilityLabel=" Donderdag
|
|
4536
|
-
accessibilityRole="button"
|
|
5584
|
+
accessibilityLabel=" Donderdag 19 Januari 2023 "
|
|
4537
5585
|
accessibilityState={
|
|
4538
5586
|
{
|
|
4539
5587
|
"disabled": false,
|
|
@@ -4558,7 +5606,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4558
5606
|
"width": 42,
|
|
4559
5607
|
}
|
|
4560
5608
|
}
|
|
4561
|
-
testID="undefined.
|
|
5609
|
+
testID="undefined.day_2023-01-19"
|
|
4562
5610
|
>
|
|
4563
5611
|
<Text
|
|
4564
5612
|
allowFontScaling={false}
|
|
@@ -4571,10 +5619,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4571
5619
|
"lineHeight": 22.4,
|
|
4572
5620
|
"marginTop": 4,
|
|
4573
5621
|
},
|
|
5622
|
+
{
|
|
5623
|
+
"color": "#9AA5B1",
|
|
5624
|
+
},
|
|
4574
5625
|
]
|
|
4575
5626
|
}
|
|
4576
5627
|
>
|
|
4577
|
-
|
|
5628
|
+
19
|
|
4578
5629
|
</Text>
|
|
4579
5630
|
<View
|
|
4580
5631
|
style={
|
|
@@ -4601,8 +5652,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4601
5652
|
}
|
|
4602
5653
|
>
|
|
4603
5654
|
<View
|
|
4604
|
-
accessibilityLabel=" Vrijdag
|
|
4605
|
-
accessibilityRole="button"
|
|
5655
|
+
accessibilityLabel=" Vrijdag 20 Januari 2023 "
|
|
4606
5656
|
accessibilityState={
|
|
4607
5657
|
{
|
|
4608
5658
|
"disabled": false,
|
|
@@ -4627,7 +5677,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4627
5677
|
"width": 42,
|
|
4628
5678
|
}
|
|
4629
5679
|
}
|
|
4630
|
-
testID="undefined.
|
|
5680
|
+
testID="undefined.day_2023-01-20"
|
|
4631
5681
|
>
|
|
4632
5682
|
<Text
|
|
4633
5683
|
allowFontScaling={false}
|
|
@@ -4640,10 +5690,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4640
5690
|
"lineHeight": 22.4,
|
|
4641
5691
|
"marginTop": 4,
|
|
4642
5692
|
},
|
|
5693
|
+
{
|
|
5694
|
+
"color": "#9AA5B1",
|
|
5695
|
+
},
|
|
4643
5696
|
]
|
|
4644
5697
|
}
|
|
4645
5698
|
>
|
|
4646
|
-
|
|
5699
|
+
20
|
|
4647
5700
|
</Text>
|
|
4648
5701
|
<View
|
|
4649
5702
|
style={
|
|
@@ -4670,8 +5723,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4670
5723
|
}
|
|
4671
5724
|
>
|
|
4672
5725
|
<View
|
|
4673
|
-
accessibilityLabel=" Zaterdag
|
|
4674
|
-
accessibilityRole="button"
|
|
5726
|
+
accessibilityLabel=" Zaterdag 21 Januari 2023 "
|
|
4675
5727
|
accessibilityState={
|
|
4676
5728
|
{
|
|
4677
5729
|
"disabled": false,
|
|
@@ -4696,7 +5748,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4696
5748
|
"width": 42,
|
|
4697
5749
|
}
|
|
4698
5750
|
}
|
|
4699
|
-
testID="undefined.
|
|
5751
|
+
testID="undefined.day_2023-01-21"
|
|
4700
5752
|
>
|
|
4701
5753
|
<Text
|
|
4702
5754
|
allowFontScaling={false}
|
|
@@ -4709,10 +5761,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4709
5761
|
"lineHeight": 22.4,
|
|
4710
5762
|
"marginTop": 4,
|
|
4711
5763
|
},
|
|
5764
|
+
{
|
|
5765
|
+
"color": "#9AA5B1",
|
|
5766
|
+
},
|
|
4712
5767
|
]
|
|
4713
5768
|
}
|
|
4714
5769
|
>
|
|
4715
|
-
|
|
5770
|
+
21
|
|
4716
5771
|
</Text>
|
|
4717
5772
|
<View
|
|
4718
5773
|
style={
|
|
@@ -4739,8 +5794,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4739
5794
|
}
|
|
4740
5795
|
>
|
|
4741
5796
|
<View
|
|
4742
|
-
accessibilityLabel=" Zondag
|
|
4743
|
-
accessibilityRole="button"
|
|
5797
|
+
accessibilityLabel=" Zondag 22 Januari 2023 "
|
|
4744
5798
|
accessibilityState={
|
|
4745
5799
|
{
|
|
4746
5800
|
"disabled": false,
|
|
@@ -4765,7 +5819,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4765
5819
|
"width": 42,
|
|
4766
5820
|
}
|
|
4767
5821
|
}
|
|
4768
|
-
testID="undefined.
|
|
5822
|
+
testID="undefined.day_2023-01-22"
|
|
4769
5823
|
>
|
|
4770
5824
|
<Text
|
|
4771
5825
|
allowFontScaling={false}
|
|
@@ -4778,10 +5832,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4778
5832
|
"lineHeight": 22.4,
|
|
4779
5833
|
"marginTop": 4,
|
|
4780
5834
|
},
|
|
5835
|
+
{
|
|
5836
|
+
"color": "#9AA5B1",
|
|
5837
|
+
},
|
|
4781
5838
|
]
|
|
4782
5839
|
}
|
|
4783
5840
|
>
|
|
4784
|
-
|
|
5841
|
+
22
|
|
4785
5842
|
</Text>
|
|
4786
5843
|
<View
|
|
4787
5844
|
style={
|
|
@@ -4818,8 +5875,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4818
5875
|
}
|
|
4819
5876
|
>
|
|
4820
5877
|
<View
|
|
4821
|
-
accessibilityLabel=" Maandag
|
|
4822
|
-
accessibilityRole="button"
|
|
5878
|
+
accessibilityLabel=" Maandag 23 Januari 2023 "
|
|
4823
5879
|
accessibilityState={
|
|
4824
5880
|
{
|
|
4825
5881
|
"disabled": false,
|
|
@@ -4844,7 +5900,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4844
5900
|
"width": 42,
|
|
4845
5901
|
}
|
|
4846
5902
|
}
|
|
4847
|
-
testID="undefined.
|
|
5903
|
+
testID="undefined.day_2023-01-23"
|
|
4848
5904
|
>
|
|
4849
5905
|
<Text
|
|
4850
5906
|
allowFontScaling={false}
|
|
@@ -4857,10 +5913,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4857
5913
|
"lineHeight": 22.4,
|
|
4858
5914
|
"marginTop": 4,
|
|
4859
5915
|
},
|
|
5916
|
+
{
|
|
5917
|
+
"color": "#9AA5B1",
|
|
5918
|
+
},
|
|
4860
5919
|
]
|
|
4861
5920
|
}
|
|
4862
5921
|
>
|
|
4863
|
-
|
|
5922
|
+
23
|
|
4864
5923
|
</Text>
|
|
4865
5924
|
<View
|
|
4866
5925
|
style={
|
|
@@ -4887,8 +5946,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4887
5946
|
}
|
|
4888
5947
|
>
|
|
4889
5948
|
<View
|
|
4890
|
-
accessibilityLabel=" Dinsdag
|
|
4891
|
-
accessibilityRole="button"
|
|
5949
|
+
accessibilityLabel=" Dinsdag 24 Januari 2023 "
|
|
4892
5950
|
accessibilityState={
|
|
4893
5951
|
{
|
|
4894
5952
|
"disabled": false,
|
|
@@ -4913,7 +5971,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4913
5971
|
"width": 42,
|
|
4914
5972
|
}
|
|
4915
5973
|
}
|
|
4916
|
-
testID="undefined.
|
|
5974
|
+
testID="undefined.day_2023-01-24"
|
|
4917
5975
|
>
|
|
4918
5976
|
<Text
|
|
4919
5977
|
allowFontScaling={false}
|
|
@@ -4926,10 +5984,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4926
5984
|
"lineHeight": 22.4,
|
|
4927
5985
|
"marginTop": 4,
|
|
4928
5986
|
},
|
|
5987
|
+
{
|
|
5988
|
+
"color": "#9AA5B1",
|
|
5989
|
+
},
|
|
4929
5990
|
]
|
|
4930
5991
|
}
|
|
4931
5992
|
>
|
|
4932
|
-
|
|
5993
|
+
24
|
|
4933
5994
|
</Text>
|
|
4934
5995
|
<View
|
|
4935
5996
|
style={
|
|
@@ -4956,8 +6017,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4956
6017
|
}
|
|
4957
6018
|
>
|
|
4958
6019
|
<View
|
|
4959
|
-
accessibilityLabel=" Woensdag
|
|
4960
|
-
accessibilityRole="button"
|
|
6020
|
+
accessibilityLabel=" Woensdag 25 Januari 2023 "
|
|
4961
6021
|
accessibilityState={
|
|
4962
6022
|
{
|
|
4963
6023
|
"disabled": false,
|
|
@@ -4982,7 +6042,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4982
6042
|
"width": 42,
|
|
4983
6043
|
}
|
|
4984
6044
|
}
|
|
4985
|
-
testID="undefined.
|
|
6045
|
+
testID="undefined.day_2023-01-25"
|
|
4986
6046
|
>
|
|
4987
6047
|
<Text
|
|
4988
6048
|
allowFontScaling={false}
|
|
@@ -4995,10 +6055,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
4995
6055
|
"lineHeight": 22.4,
|
|
4996
6056
|
"marginTop": 4,
|
|
4997
6057
|
},
|
|
6058
|
+
{
|
|
6059
|
+
"color": "#9AA5B1",
|
|
6060
|
+
},
|
|
4998
6061
|
]
|
|
4999
6062
|
}
|
|
5000
6063
|
>
|
|
5001
|
-
|
|
6064
|
+
25
|
|
5002
6065
|
</Text>
|
|
5003
6066
|
<View
|
|
5004
6067
|
style={
|
|
@@ -5025,8 +6088,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5025
6088
|
}
|
|
5026
6089
|
>
|
|
5027
6090
|
<View
|
|
5028
|
-
accessibilityLabel=" Donderdag
|
|
5029
|
-
accessibilityRole="button"
|
|
6091
|
+
accessibilityLabel=" Donderdag 26 Januari 2023 "
|
|
5030
6092
|
accessibilityState={
|
|
5031
6093
|
{
|
|
5032
6094
|
"disabled": false,
|
|
@@ -5051,7 +6113,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5051
6113
|
"width": 42,
|
|
5052
6114
|
}
|
|
5053
6115
|
}
|
|
5054
|
-
testID="undefined.
|
|
6116
|
+
testID="undefined.day_2023-01-26"
|
|
5055
6117
|
>
|
|
5056
6118
|
<Text
|
|
5057
6119
|
allowFontScaling={false}
|
|
@@ -5064,10 +6126,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5064
6126
|
"lineHeight": 22.4,
|
|
5065
6127
|
"marginTop": 4,
|
|
5066
6128
|
},
|
|
6129
|
+
{
|
|
6130
|
+
"color": "#9AA5B1",
|
|
6131
|
+
},
|
|
5067
6132
|
]
|
|
5068
6133
|
}
|
|
5069
6134
|
>
|
|
5070
|
-
|
|
6135
|
+
26
|
|
5071
6136
|
</Text>
|
|
5072
6137
|
<View
|
|
5073
6138
|
style={
|
|
@@ -5094,8 +6159,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5094
6159
|
}
|
|
5095
6160
|
>
|
|
5096
6161
|
<View
|
|
5097
|
-
accessibilityLabel=" Vrijdag
|
|
5098
|
-
accessibilityRole="button"
|
|
6162
|
+
accessibilityLabel=" Vrijdag 27 Januari 2023 "
|
|
5099
6163
|
accessibilityState={
|
|
5100
6164
|
{
|
|
5101
6165
|
"disabled": false,
|
|
@@ -5120,7 +6184,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5120
6184
|
"width": 42,
|
|
5121
6185
|
}
|
|
5122
6186
|
}
|
|
5123
|
-
testID="undefined.
|
|
6187
|
+
testID="undefined.day_2023-01-27"
|
|
5124
6188
|
>
|
|
5125
6189
|
<Text
|
|
5126
6190
|
allowFontScaling={false}
|
|
@@ -5133,10 +6197,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5133
6197
|
"lineHeight": 22.4,
|
|
5134
6198
|
"marginTop": 4,
|
|
5135
6199
|
},
|
|
6200
|
+
{
|
|
6201
|
+
"color": "#9AA5B1",
|
|
6202
|
+
},
|
|
5136
6203
|
]
|
|
5137
6204
|
}
|
|
5138
6205
|
>
|
|
5139
|
-
|
|
6206
|
+
27
|
|
5140
6207
|
</Text>
|
|
5141
6208
|
<View
|
|
5142
6209
|
style={
|
|
@@ -5163,8 +6230,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5163
6230
|
}
|
|
5164
6231
|
>
|
|
5165
6232
|
<View
|
|
5166
|
-
accessibilityLabel=" Zaterdag
|
|
5167
|
-
accessibilityRole="button"
|
|
6233
|
+
accessibilityLabel=" Zaterdag 28 Januari 2023 "
|
|
5168
6234
|
accessibilityState={
|
|
5169
6235
|
{
|
|
5170
6236
|
"disabled": false,
|
|
@@ -5189,7 +6255,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5189
6255
|
"width": 42,
|
|
5190
6256
|
}
|
|
5191
6257
|
}
|
|
5192
|
-
testID="undefined.
|
|
6258
|
+
testID="undefined.day_2023-01-28"
|
|
5193
6259
|
>
|
|
5194
6260
|
<Text
|
|
5195
6261
|
allowFontScaling={false}
|
|
@@ -5202,10 +6268,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5202
6268
|
"lineHeight": 22.4,
|
|
5203
6269
|
"marginTop": 4,
|
|
5204
6270
|
},
|
|
6271
|
+
{
|
|
6272
|
+
"color": "#9AA5B1",
|
|
6273
|
+
},
|
|
5205
6274
|
]
|
|
5206
6275
|
}
|
|
5207
6276
|
>
|
|
5208
|
-
|
|
6277
|
+
28
|
|
5209
6278
|
</Text>
|
|
5210
6279
|
<View
|
|
5211
6280
|
style={
|
|
@@ -5232,8 +6301,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5232
6301
|
}
|
|
5233
6302
|
>
|
|
5234
6303
|
<View
|
|
5235
|
-
accessibilityLabel=" Zondag
|
|
5236
|
-
accessibilityRole="button"
|
|
6304
|
+
accessibilityLabel=" Zondag 29 Januari 2023 "
|
|
5237
6305
|
accessibilityState={
|
|
5238
6306
|
{
|
|
5239
6307
|
"disabled": false,
|
|
@@ -5258,7 +6326,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5258
6326
|
"width": 42,
|
|
5259
6327
|
}
|
|
5260
6328
|
}
|
|
5261
|
-
testID="undefined.
|
|
6329
|
+
testID="undefined.day_2023-01-29"
|
|
5262
6330
|
>
|
|
5263
6331
|
<Text
|
|
5264
6332
|
allowFontScaling={false}
|
|
@@ -5271,10 +6339,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5271
6339
|
"lineHeight": 22.4,
|
|
5272
6340
|
"marginTop": 4,
|
|
5273
6341
|
},
|
|
6342
|
+
{
|
|
6343
|
+
"color": "#9AA5B1",
|
|
6344
|
+
},
|
|
5274
6345
|
]
|
|
5275
6346
|
}
|
|
5276
6347
|
>
|
|
5277
|
-
|
|
6348
|
+
29
|
|
5278
6349
|
</Text>
|
|
5279
6350
|
<View
|
|
5280
6351
|
style={
|
|
@@ -5311,8 +6382,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5311
6382
|
}
|
|
5312
6383
|
>
|
|
5313
6384
|
<View
|
|
5314
|
-
accessibilityLabel="
|
|
5315
|
-
accessibilityRole="button"
|
|
6385
|
+
accessibilityLabel=" Maandag 30 Januari 2023 "
|
|
5316
6386
|
accessibilityState={
|
|
5317
6387
|
{
|
|
5318
6388
|
"disabled": false,
|
|
@@ -5331,15 +6401,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5331
6401
|
style={
|
|
5332
6402
|
{
|
|
5333
6403
|
"alignItems": "center",
|
|
5334
|
-
"backgroundColor": "#7B93DB",
|
|
5335
|
-
"borderRadius": 21,
|
|
5336
6404
|
"height": 42,
|
|
5337
6405
|
"justifyContent": "center",
|
|
5338
6406
|
"opacity": 1,
|
|
5339
6407
|
"width": 42,
|
|
5340
6408
|
}
|
|
5341
6409
|
}
|
|
5342
|
-
testID="undefined.
|
|
6410
|
+
testID="undefined.day_2023-01-30"
|
|
5343
6411
|
>
|
|
5344
6412
|
<Text
|
|
5345
6413
|
allowFontScaling={false}
|
|
@@ -5353,12 +6421,12 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5353
6421
|
"marginTop": 4,
|
|
5354
6422
|
},
|
|
5355
6423
|
{
|
|
5356
|
-
"color": "#
|
|
6424
|
+
"color": "#9AA5B1",
|
|
5357
6425
|
},
|
|
5358
6426
|
]
|
|
5359
6427
|
}
|
|
5360
6428
|
>
|
|
5361
|
-
|
|
6429
|
+
30
|
|
5362
6430
|
</Text>
|
|
5363
6431
|
<View
|
|
5364
6432
|
style={
|
|
@@ -5385,8 +6453,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5385
6453
|
}
|
|
5386
6454
|
>
|
|
5387
6455
|
<View
|
|
5388
|
-
accessibilityLabel=" Dinsdag
|
|
5389
|
-
accessibilityRole="button"
|
|
6456
|
+
accessibilityLabel=" Dinsdag 31 Januari 2023 "
|
|
5390
6457
|
accessibilityState={
|
|
5391
6458
|
{
|
|
5392
6459
|
"disabled": false,
|
|
@@ -5411,7 +6478,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5411
6478
|
"width": 42,
|
|
5412
6479
|
}
|
|
5413
6480
|
}
|
|
5414
|
-
testID="undefined.
|
|
6481
|
+
testID="undefined.day_2023-01-31"
|
|
5415
6482
|
>
|
|
5416
6483
|
<Text
|
|
5417
6484
|
allowFontScaling={false}
|
|
@@ -5424,10 +6491,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5424
6491
|
"lineHeight": 22.4,
|
|
5425
6492
|
"marginTop": 4,
|
|
5426
6493
|
},
|
|
6494
|
+
{
|
|
6495
|
+
"color": "#9AA5B1",
|
|
6496
|
+
},
|
|
5427
6497
|
]
|
|
5428
6498
|
}
|
|
5429
6499
|
>
|
|
5430
|
-
|
|
6500
|
+
31
|
|
5431
6501
|
</Text>
|
|
5432
6502
|
<View
|
|
5433
6503
|
style={
|
|
@@ -5454,8 +6524,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5454
6524
|
}
|
|
5455
6525
|
>
|
|
5456
6526
|
<View
|
|
5457
|
-
accessibilityLabel=" Woensdag
|
|
5458
|
-
accessibilityRole="button"
|
|
6527
|
+
accessibilityLabel=" Woensdag 1 Februari 2023 "
|
|
5459
6528
|
accessibilityState={
|
|
5460
6529
|
{
|
|
5461
6530
|
"disabled": false,
|
|
@@ -5480,7 +6549,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5480
6549
|
"width": 42,
|
|
5481
6550
|
}
|
|
5482
6551
|
}
|
|
5483
|
-
testID="undefined.
|
|
6552
|
+
testID="undefined.day_2023-02-01"
|
|
5484
6553
|
>
|
|
5485
6554
|
<Text
|
|
5486
6555
|
allowFontScaling={false}
|
|
@@ -5493,10 +6562,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5493
6562
|
"lineHeight": 22.4,
|
|
5494
6563
|
"marginTop": 4,
|
|
5495
6564
|
},
|
|
6565
|
+
{
|
|
6566
|
+
"color": "#9AA5B1",
|
|
6567
|
+
},
|
|
5496
6568
|
]
|
|
5497
6569
|
}
|
|
5498
6570
|
>
|
|
5499
|
-
|
|
6571
|
+
1
|
|
5500
6572
|
</Text>
|
|
5501
6573
|
<View
|
|
5502
6574
|
style={
|
|
@@ -5523,8 +6595,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5523
6595
|
}
|
|
5524
6596
|
>
|
|
5525
6597
|
<View
|
|
5526
|
-
accessibilityLabel=" Donderdag
|
|
5527
|
-
accessibilityRole="button"
|
|
6598
|
+
accessibilityLabel=" Donderdag 2 Februari 2023 "
|
|
5528
6599
|
accessibilityState={
|
|
5529
6600
|
{
|
|
5530
6601
|
"disabled": false,
|
|
@@ -5549,7 +6620,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5549
6620
|
"width": 42,
|
|
5550
6621
|
}
|
|
5551
6622
|
}
|
|
5552
|
-
testID="undefined.
|
|
6623
|
+
testID="undefined.day_2023-02-02"
|
|
5553
6624
|
>
|
|
5554
6625
|
<Text
|
|
5555
6626
|
allowFontScaling={false}
|
|
@@ -5562,10 +6633,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5562
6633
|
"lineHeight": 22.4,
|
|
5563
6634
|
"marginTop": 4,
|
|
5564
6635
|
},
|
|
6636
|
+
{
|
|
6637
|
+
"color": "#9AA5B1",
|
|
6638
|
+
},
|
|
5565
6639
|
]
|
|
5566
6640
|
}
|
|
5567
6641
|
>
|
|
5568
|
-
|
|
6642
|
+
2
|
|
5569
6643
|
</Text>
|
|
5570
6644
|
<View
|
|
5571
6645
|
style={
|
|
@@ -5592,8 +6666,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5592
6666
|
}
|
|
5593
6667
|
>
|
|
5594
6668
|
<View
|
|
5595
|
-
accessibilityLabel=" Vrijdag
|
|
5596
|
-
accessibilityRole="button"
|
|
6669
|
+
accessibilityLabel=" Vrijdag 3 Februari 2023 "
|
|
5597
6670
|
accessibilityState={
|
|
5598
6671
|
{
|
|
5599
6672
|
"disabled": false,
|
|
@@ -5618,7 +6691,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5618
6691
|
"width": 42,
|
|
5619
6692
|
}
|
|
5620
6693
|
}
|
|
5621
|
-
testID="undefined.
|
|
6694
|
+
testID="undefined.day_2023-02-03"
|
|
5622
6695
|
>
|
|
5623
6696
|
<Text
|
|
5624
6697
|
allowFontScaling={false}
|
|
@@ -5631,10 +6704,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5631
6704
|
"lineHeight": 22.4,
|
|
5632
6705
|
"marginTop": 4,
|
|
5633
6706
|
},
|
|
6707
|
+
{
|
|
6708
|
+
"color": "#9AA5B1",
|
|
6709
|
+
},
|
|
5634
6710
|
]
|
|
5635
6711
|
}
|
|
5636
6712
|
>
|
|
5637
|
-
|
|
6713
|
+
3
|
|
5638
6714
|
</Text>
|
|
5639
6715
|
<View
|
|
5640
6716
|
style={
|
|
@@ -5661,8 +6737,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5661
6737
|
}
|
|
5662
6738
|
>
|
|
5663
6739
|
<View
|
|
5664
|
-
accessibilityLabel=" Zaterdag
|
|
5665
|
-
accessibilityRole="button"
|
|
6740
|
+
accessibilityLabel=" Zaterdag 4 Februari 2023 "
|
|
5666
6741
|
accessibilityState={
|
|
5667
6742
|
{
|
|
5668
6743
|
"disabled": false,
|
|
@@ -5687,7 +6762,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5687
6762
|
"width": 42,
|
|
5688
6763
|
}
|
|
5689
6764
|
}
|
|
5690
|
-
testID="undefined.
|
|
6765
|
+
testID="undefined.day_2023-02-04"
|
|
5691
6766
|
>
|
|
5692
6767
|
<Text
|
|
5693
6768
|
allowFontScaling={false}
|
|
@@ -5700,10 +6775,13 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5700
6775
|
"lineHeight": 22.4,
|
|
5701
6776
|
"marginTop": 4,
|
|
5702
6777
|
},
|
|
6778
|
+
{
|
|
6779
|
+
"color": "#9AA5B1",
|
|
6780
|
+
},
|
|
5703
6781
|
]
|
|
5704
6782
|
}
|
|
5705
6783
|
>
|
|
5706
|
-
|
|
6784
|
+
4
|
|
5707
6785
|
</Text>
|
|
5708
6786
|
<View
|
|
5709
6787
|
style={
|
|
@@ -5730,7 +6808,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5730
6808
|
}
|
|
5731
6809
|
>
|
|
5732
6810
|
<View
|
|
5733
|
-
accessibilityLabel=" Zondag
|
|
6811
|
+
accessibilityLabel=" Zondag 5 Februari 2023 "
|
|
5734
6812
|
accessibilityState={
|
|
5735
6813
|
{
|
|
5736
6814
|
"disabled": false,
|
|
@@ -5755,7 +6833,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5755
6833
|
"width": 42,
|
|
5756
6834
|
}
|
|
5757
6835
|
}
|
|
5758
|
-
testID="undefined.day_2023-
|
|
6836
|
+
testID="undefined.day_2023-02-05"
|
|
5759
6837
|
>
|
|
5760
6838
|
<Text
|
|
5761
6839
|
allowFontScaling={false}
|
|
@@ -5774,7 +6852,7 @@ exports[`Test for the calendar component renders a calendar where you can select
|
|
|
5774
6852
|
]
|
|
5775
6853
|
}
|
|
5776
6854
|
>
|
|
5777
|
-
|
|
6855
|
+
5
|
|
5778
6856
|
</Text>
|
|
5779
6857
|
<View
|
|
5780
6858
|
style={
|