@tactics/toddle-styleguide 1.0.2 → 1.1.0
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 +11 -1
- package/assets/lottie/wave-for-daycares.json +1197 -0
- package/assets/lottie/wave-for-parents.json +1 -0
- package/index.d.ts +2 -1
- package/index.tsx +2 -0
- package/package.json +21 -19
- package/src/components/atoms/animated-wave/animated-wave.component.d.ts +1 -0
- package/src/components/atoms/animated-wave/animated-wave.component.tsx +28 -0
- package/src/components/atoms/animated-wave/animated-wave.preview.tsx +20 -0
- package/src/components/atoms/animated-wave/animated-wave.styles.d.ts +21 -0
- package/src/components/atoms/animated-wave/animated-wave.styles.js +25 -0
- package/src/components/atoms/backdrop/backdrop.component.d.ts +1 -1
- package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +1113 -191
- package/src/components/atoms/calendar/calendar.component.d.ts +1 -1
- package/src/components/atoms/check-switch/__snapshots__/check-switch.test.js.snap +17 -0
- package/src/components/atoms/check-switch/check-switch.component.d.ts +1 -1
- package/src/components/atoms/footer/__snapshots__/footer.test.js.snap +8 -3
- package/src/components/atoms/footer/footer.component.d.ts +1 -1
- package/src/components/atoms/heading-components/all-caps-heading/__snapshots__/all-caps-heading.test.js.snap +4 -0
- package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.d.ts +1 -1
- package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.tsx +12 -1
- package/src/components/atoms/heading-components/heading1/heading1.component.d.ts +1 -1
- package/src/components/atoms/heading-components/heading1/heading1.component.tsx +9 -1
- package/src/components/atoms/heading-components/heading3/heading3.component.d.ts +1 -1
- package/src/components/atoms/heading-components/heading3/heading3.component.tsx +9 -1
- package/src/components/atoms/heading-components/heading4/heading4.component.d.ts +1 -1
- package/src/components/atoms/heading-components/heading4/heading4.component.tsx +9 -1
- package/src/components/atoms/image-bubble/image-bubble.component.d.ts +1 -1
- package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +50 -6
- package/src/components/atoms/increment-input/increment-input.component.d.ts +1 -1
- package/src/components/atoms/logo/__snapshots__/logo.test.js.snap +12 -2
- package/src/components/atoms/logo/logo.component.d.ts +1 -1
- package/src/components/atoms/split-container/__snapshots__/split-container.test.js.snap +59 -3
- package/src/components/atoms/split-container/split-container.component.d.ts +1 -1
- package/src/components/atoms/static-wave/static-wave.component.d.ts +8 -0
- package/src/components/atoms/static-wave/static-wave.component.tsx +46 -0
- package/src/components/atoms/static-wave/static-wave.styles.d.ts +14 -0
- package/src/components/atoms/static-wave/static-wave.styles.js +14 -0
- package/src/components/atoms/text-input/text-input.component.d.ts +1 -1
- package/src/components/molecules/avatar/avatar.component.d.ts +1 -1
- package/src/components/molecules/blocked-message/__snapshots__/blocked-message.test.js.snap +8 -3
- package/src/components/molecules/blocked-message/blocked-message.component.d.ts +1 -1
- package/src/components/molecules/button/__snapshots__/button.test.js.snap +80 -7
- package/src/components/molecules/button/button.component.d.ts +1 -1
- package/src/components/molecules/calendar-select/__snapshots__/calendar-select.test.js.snap +75 -9
- package/src/components/molecules/calendar-select/calendar-select.component.d.ts +1 -1
- package/src/components/molecules/cancel-link/__snapshots__/cancel-link.test.js.snap +34 -0
- package/src/components/molecules/cancel-link/cancel-link.component.d.ts +1 -1
- package/src/components/molecules/checkbox/__snapshots__/checkbox.test.js.snap +34 -0
- package/src/components/molecules/checkbox/checkbox.component.d.ts +1 -1
- package/src/components/molecules/contact-role/contact-role.component.d.ts +1 -1
- package/src/components/molecules/date-input/__snapshots__/date-input.test.js.snap +25 -3
- package/src/components/molecules/date-input/date-input.component.d.ts +1 -1
- package/src/components/molecules/day/__snapshots__/day.test.js.snap +34 -0
- package/src/components/molecules/day/day.component.d.ts +1 -1
- package/src/components/molecules/default-select/__snapshots__/default-select.test.js.snap +25 -3
- package/src/components/molecules/default-select/default-select.component.d.ts +1 -1
- package/src/components/molecules/department_logo/department-logo.component.d.ts +1 -1
- package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +58 -9
- package/src/components/molecules/failed-to-send/failed-bubble.component.d.ts +1 -1
- package/src/components/molecules/filter-range/filter-range.component.d.ts +1 -1
- package/src/components/molecules/filter-tab/__snapshots__/filter-tab.test.js.snap +85 -0
- package/src/components/molecules/filter-tab/filter-tab.component.d.ts +1 -1
- package/src/components/molecules/info/info.component.d.ts +1 -1
- package/src/components/molecules/language-button/__snapshots__/language-button.test.js.snap +34 -0
- package/src/components/molecules/language-button/language-button.component.d.ts +1 -1
- package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +200 -24
- package/src/components/molecules/message-input/message-input.component.d.ts +1 -1
- package/src/components/molecules/more-info-button/__snapshots__/more-info-button.test.js.snap +34 -0
- package/src/components/molecules/more-info-button/more-info-button.component.d.ts +1 -1
- package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +93 -12
- package/src/components/molecules/password-input/password-input.component.d.ts +1 -1
- package/src/components/molecules/pill/pill.component.d.ts +1 -1
- package/src/components/molecules/pressable-icon/__snapshots__/pressable-icon.test.js.snap +90 -12
- package/src/components/molecules/pressable-icon/pressable-icon.component.d.ts +1 -1
- package/src/components/molecules/quick-filter/__snapshots__/quick-filter.test.js.snap +136 -0
- package/src/components/molecules/quick-filter/quick-filter.component.d.ts +1 -1
- package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +25 -3
- package/src/components/molecules/search-input/search.component.d.ts +1 -1
- package/src/components/molecules/select-link/__snapshots__/select-link.test.js.snap +17 -0
- package/src/components/molecules/select-link/select-link.component.d.ts +1 -1
- package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap +105 -18
- package/src/components/molecules/select-list-item/select-list-item-preview.tsx +1 -1
- package/src/components/molecules/select-list-item/select-list-item.component.d.ts +1 -1
- package/src/components/molecules/select-list-item/select-list-item.component.tsx +6 -1
- package/src/components/molecules/select-picker/__snapshots__/select-picker.test.js.snap +50 -6
- package/src/components/molecules/select-picker/select-picker.component.d.ts +1 -1
- package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +300 -36
- package/src/components/molecules/send-bubble/send-text-bubble.component.d.ts +1 -1
- package/src/components/molecules/snackbar/__snapshots__/snackbar.test.js.snap +32 -12
- package/src/components/molecules/snackbar/snackbar.component.d.ts +1 -1
- package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +66 -3
- package/src/components/molecules/swipe/swipe.component.d.ts +1 -1
- package/src/components/molecules/tag/__snapshots__/tag.test.js.snap +34 -0
- package/src/components/molecules/tag/tag.component.d.ts +1 -1
- package/src/components/molecules/time-tracker/time-tracker.component.d.ts +1 -1
- package/src/components/molecules/timeline/timeline.component.d.ts +1 -1
- package/src/components/molecules/timestamp/timestamp.component.d.ts +1 -1
- package/src/components/molecules/wave-background/__snapshots__/wave.test.js.snap +175 -0
- package/src/components/molecules/wave-background/wave.component.d.ts +2 -0
- package/src/components/molecules/wave-background/wave.component.tsx +35 -0
- package/src/components/molecules/wave-background/wave.preview.d.ts +1 -0
- package/src/components/molecules/wave-background/wave.preview.tsx +78 -0
- package/src/components/molecules/wave-background/wave.styles.d.ts +13 -0
- package/src/components/molecules/wave-background/wave.styles.js +13 -0
- package/src/components/molecules/wave-background/wave.test.js +25 -0
- package/src/components/molecules/wide-button/__snapshots__/wide-button.test.js.snap +58 -0
- package/src/components/molecules/wide-button/wide-button.component.d.ts +1 -1
- package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +76 -3
- package/src/components/organisms/child-list-item/child-list-item.component.d.ts +1 -1
- package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +50 -6
- package/src/components/organisms/contact-item/contact-item.component.d.ts +1 -1
- package/src/components/organisms/day-select/day-select.component.d.ts +1 -1
- package/src/components/organisms/loading-indicator/dot.component.d.ts +1 -1
- package/src/components/organisms/loading-indicator/loading-indicator.test.js +1 -0
- package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +52 -6
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.d.ts +1 -1
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +6 -1
- package/src/components/organisms/my-child-list-item/my-child-list-item.preview.tsx +1 -1
- package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +358 -45
- package/src/components/organisms/text-bubble/text-bubble.component.d.ts +1 -1
- package/src/components/templates/modal/components/fade-panel.component.d.ts +1 -1
- package/src/components/templates/modal/modal.component.d.ts +1 -1
- package/src/components/templates/modal/modal.preview.tsx +1 -1
- package/src/components/templates/popover/components/foreground/foreground.component.d.ts +1 -1
- package/src/components/templates/popover/components/modal/close/close.component.d.ts +1 -1
- package/src/components/templates/popover/components/modal/heading/heading.component.d.ts +1 -1
- package/src/components/templates/popover/components/modal/heading/heading.component.tsx +7 -1
- package/src/components/templates/popover/components/modal/heading/heading.styles.d.ts +4 -0
- package/src/components/templates/popover/components/modal/heading/heading.styles.js +4 -0
- package/src/components/templates/popover/components/modal/modal.component.d.ts +1 -1
- package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.d.ts +1 -1
- package/src/components/templates/popover/popover.component.d.ts +1 -1
- package/src/context/theme.context.d.ts +3 -0
- package/src/context/theme.context.ts +3 -0
- package/src/gradients/main/main.gradient.d.ts +1 -1
- package/src/icons/__snapshots__/icons.test.js.snap +408 -148
- package/src/theme/provider/parent.theme.d.ts +3 -0
- package/src/theme/provider/parent.theme.ts +3 -0
- package/src/theme/provider/staff-member.theme.d.ts +3 -0
- package/src/theme/provider/staff-member.theme.ts +3 -0
- package/src/types/icontype.type.d.ts +2 -2
- package/src/types/loading-dots.type.d.ts +1 -1
- package/src/types/text-properties.type.d.ts +1 -1
- package/src/utilities/toddle-datetime/types/duration-like.type.d.ts +1 -1
- package/src/utilities/toddle-datetime/types/toddle-datetime.type.d.ts +2 -2
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`SelectLink component test renders a pressable select-link with label "Toepassen" 1`] = `
|
|
4
4
|
<View
|
|
5
|
+
accessibilityState={
|
|
6
|
+
{
|
|
7
|
+
"busy": undefined,
|
|
8
|
+
"checked": undefined,
|
|
9
|
+
"disabled": undefined,
|
|
10
|
+
"expanded": undefined,
|
|
11
|
+
"selected": undefined,
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
accessibilityValue={
|
|
15
|
+
{
|
|
16
|
+
"max": undefined,
|
|
17
|
+
"min": undefined,
|
|
18
|
+
"now": undefined,
|
|
19
|
+
"text": undefined,
|
|
20
|
+
}
|
|
21
|
+
}
|
|
5
22
|
accessible={true}
|
|
6
23
|
collapsable={false}
|
|
7
24
|
focusable={true}
|
package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`test button component should render a select-list-item component with 1 line of white text (bold) and a dark icon in a light circle 1`] = `
|
|
4
4
|
<View
|
|
5
|
+
accessibilityState={
|
|
6
|
+
{
|
|
7
|
+
"busy": undefined,
|
|
8
|
+
"checked": undefined,
|
|
9
|
+
"disabled": undefined,
|
|
10
|
+
"expanded": undefined,
|
|
11
|
+
"selected": undefined,
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
accessibilityValue={
|
|
15
|
+
{
|
|
16
|
+
"max": undefined,
|
|
17
|
+
"min": undefined,
|
|
18
|
+
"now": undefined,
|
|
19
|
+
"text": undefined,
|
|
20
|
+
}
|
|
21
|
+
}
|
|
5
22
|
accessible={true}
|
|
6
23
|
collapsable={false}
|
|
7
24
|
focusable={true}
|
|
@@ -38,8 +55,8 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
38
55
|
<View>
|
|
39
56
|
<RNSVGSvgView
|
|
40
57
|
align="xMidYMid"
|
|
41
|
-
bbHeight=
|
|
42
|
-
bbWidth=
|
|
58
|
+
bbHeight="24"
|
|
59
|
+
bbWidth="24"
|
|
43
60
|
fill="none"
|
|
44
61
|
focusable={false}
|
|
45
62
|
height={24}
|
|
@@ -81,7 +98,12 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
81
98
|
"strokeLinejoin",
|
|
82
99
|
]
|
|
83
100
|
}
|
|
84
|
-
stroke={
|
|
101
|
+
stroke={
|
|
102
|
+
{
|
|
103
|
+
"payload": 4279837036,
|
|
104
|
+
"type": 0,
|
|
105
|
+
}
|
|
106
|
+
}
|
|
85
107
|
strokeLinecap={1}
|
|
86
108
|
strokeLinejoin={1}
|
|
87
109
|
strokeWidth="2"
|
|
@@ -103,6 +125,8 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
103
125
|
>
|
|
104
126
|
<View>
|
|
105
127
|
<Text
|
|
128
|
+
ellipsizeMode="tail"
|
|
129
|
+
numberOfLines={2}
|
|
106
130
|
style={
|
|
107
131
|
[
|
|
108
132
|
[
|
|
@@ -158,8 +182,8 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
158
182
|
>
|
|
159
183
|
<RNSVGSvgView
|
|
160
184
|
align="xMidYMid"
|
|
161
|
-
bbHeight=
|
|
162
|
-
bbWidth=
|
|
185
|
+
bbHeight="20"
|
|
186
|
+
bbWidth="20"
|
|
163
187
|
fill="none"
|
|
164
188
|
focusable={false}
|
|
165
189
|
height={20}
|
|
@@ -201,7 +225,12 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
201
225
|
"strokeLinejoin",
|
|
202
226
|
]
|
|
203
227
|
}
|
|
204
|
-
stroke={
|
|
228
|
+
stroke={
|
|
229
|
+
{
|
|
230
|
+
"payload": 4294967295,
|
|
231
|
+
"type": 0,
|
|
232
|
+
}
|
|
233
|
+
}
|
|
205
234
|
strokeLinecap={1}
|
|
206
235
|
strokeLinejoin={1}
|
|
207
236
|
strokeWidth="2"
|
|
@@ -214,6 +243,23 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
214
243
|
|
|
215
244
|
exports[`test button component should render a select-list-item component with 1 line of white text (bold) and a light icon in a dark circle 1`] = `
|
|
216
245
|
<View
|
|
246
|
+
accessibilityState={
|
|
247
|
+
{
|
|
248
|
+
"busy": undefined,
|
|
249
|
+
"checked": undefined,
|
|
250
|
+
"disabled": undefined,
|
|
251
|
+
"expanded": undefined,
|
|
252
|
+
"selected": undefined,
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
accessibilityValue={
|
|
256
|
+
{
|
|
257
|
+
"max": undefined,
|
|
258
|
+
"min": undefined,
|
|
259
|
+
"now": undefined,
|
|
260
|
+
"text": undefined,
|
|
261
|
+
}
|
|
262
|
+
}
|
|
217
263
|
accessible={true}
|
|
218
264
|
collapsable={false}
|
|
219
265
|
focusable={true}
|
|
@@ -250,8 +296,8 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
250
296
|
<View>
|
|
251
297
|
<RNSVGSvgView
|
|
252
298
|
align="xMidYMid"
|
|
253
|
-
bbHeight=
|
|
254
|
-
bbWidth=
|
|
299
|
+
bbHeight="24"
|
|
300
|
+
bbWidth="24"
|
|
255
301
|
fill="none"
|
|
256
302
|
focusable={false}
|
|
257
303
|
height={24}
|
|
@@ -293,7 +339,12 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
293
339
|
"strokeLinejoin",
|
|
294
340
|
]
|
|
295
341
|
}
|
|
296
|
-
stroke={
|
|
342
|
+
stroke={
|
|
343
|
+
{
|
|
344
|
+
"payload": 4286288859,
|
|
345
|
+
"type": 0,
|
|
346
|
+
}
|
|
347
|
+
}
|
|
297
348
|
strokeLinecap={1}
|
|
298
349
|
strokeLinejoin={1}
|
|
299
350
|
strokeWidth="2"
|
|
@@ -315,6 +366,8 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
315
366
|
>
|
|
316
367
|
<View>
|
|
317
368
|
<Text
|
|
369
|
+
ellipsizeMode="tail"
|
|
370
|
+
numberOfLines={2}
|
|
318
371
|
style={
|
|
319
372
|
[
|
|
320
373
|
[
|
|
@@ -370,8 +423,8 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
370
423
|
>
|
|
371
424
|
<RNSVGSvgView
|
|
372
425
|
align="xMidYMid"
|
|
373
|
-
bbHeight=
|
|
374
|
-
bbWidth=
|
|
426
|
+
bbHeight="20"
|
|
427
|
+
bbWidth="20"
|
|
375
428
|
fill="none"
|
|
376
429
|
focusable={false}
|
|
377
430
|
height={20}
|
|
@@ -413,7 +466,12 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
413
466
|
"strokeLinejoin",
|
|
414
467
|
]
|
|
415
468
|
}
|
|
416
|
-
stroke={
|
|
469
|
+
stroke={
|
|
470
|
+
{
|
|
471
|
+
"payload": 4294967295,
|
|
472
|
+
"type": 0,
|
|
473
|
+
}
|
|
474
|
+
}
|
|
417
475
|
strokeLinecap={1}
|
|
418
476
|
strokeLinejoin={1}
|
|
419
477
|
strokeWidth="2"
|
|
@@ -426,6 +484,23 @@ exports[`test button component should render a select-list-item component with 1
|
|
|
426
484
|
|
|
427
485
|
exports[`test button component should render a select-list-item component with 2 LINES of text and a dark icon in a light circle 1`] = `
|
|
428
486
|
<View
|
|
487
|
+
accessibilityState={
|
|
488
|
+
{
|
|
489
|
+
"busy": undefined,
|
|
490
|
+
"checked": undefined,
|
|
491
|
+
"disabled": undefined,
|
|
492
|
+
"expanded": undefined,
|
|
493
|
+
"selected": undefined,
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
accessibilityValue={
|
|
497
|
+
{
|
|
498
|
+
"max": undefined,
|
|
499
|
+
"min": undefined,
|
|
500
|
+
"now": undefined,
|
|
501
|
+
"text": undefined,
|
|
502
|
+
}
|
|
503
|
+
}
|
|
429
504
|
accessible={true}
|
|
430
505
|
collapsable={false}
|
|
431
506
|
focusable={true}
|
|
@@ -462,8 +537,8 @@ exports[`test button component should render a select-list-item component with 2
|
|
|
462
537
|
<View>
|
|
463
538
|
<RNSVGSvgView
|
|
464
539
|
align="xMidYMid"
|
|
465
|
-
bbHeight=
|
|
466
|
-
bbWidth=
|
|
540
|
+
bbHeight="24"
|
|
541
|
+
bbWidth="24"
|
|
467
542
|
fill="none"
|
|
468
543
|
focusable={false}
|
|
469
544
|
height={24}
|
|
@@ -505,7 +580,12 @@ exports[`test button component should render a select-list-item component with 2
|
|
|
505
580
|
"strokeLinejoin",
|
|
506
581
|
]
|
|
507
582
|
}
|
|
508
|
-
stroke={
|
|
583
|
+
stroke={
|
|
584
|
+
{
|
|
585
|
+
"payload": 4279837036,
|
|
586
|
+
"type": 0,
|
|
587
|
+
}
|
|
588
|
+
}
|
|
509
589
|
strokeLinecap={1}
|
|
510
590
|
strokeLinejoin={1}
|
|
511
591
|
strokeWidth="2"
|
|
@@ -527,6 +607,8 @@ exports[`test button component should render a select-list-item component with 2
|
|
|
527
607
|
>
|
|
528
608
|
<View>
|
|
529
609
|
<Text
|
|
610
|
+
ellipsizeMode="tail"
|
|
611
|
+
numberOfLines={2}
|
|
530
612
|
style={
|
|
531
613
|
[
|
|
532
614
|
[
|
|
@@ -584,8 +666,8 @@ exports[`test button component should render a select-list-item component with 2
|
|
|
584
666
|
>
|
|
585
667
|
<RNSVGSvgView
|
|
586
668
|
align="xMidYMid"
|
|
587
|
-
bbHeight=
|
|
588
|
-
bbWidth=
|
|
669
|
+
bbHeight="20"
|
|
670
|
+
bbWidth="20"
|
|
589
671
|
fill="none"
|
|
590
672
|
focusable={false}
|
|
591
673
|
height={20}
|
|
@@ -627,7 +709,12 @@ exports[`test button component should render a select-list-item component with 2
|
|
|
627
709
|
"strokeLinejoin",
|
|
628
710
|
]
|
|
629
711
|
}
|
|
630
|
-
stroke={
|
|
712
|
+
stroke={
|
|
713
|
+
{
|
|
714
|
+
"payload": 4294967295,
|
|
715
|
+
"type": 0,
|
|
716
|
+
}
|
|
717
|
+
}
|
|
631
718
|
strokeLinecap={1}
|
|
632
719
|
strokeLinejoin={1}
|
|
633
720
|
strokeWidth="2"
|
|
@@ -15,7 +15,7 @@ export const SelectListItemPreview = ({}: {}) => {
|
|
|
15
15
|
}}
|
|
16
16
|
>
|
|
17
17
|
<SelectListItem
|
|
18
|
-
title="Vlindertjes"
|
|
18
|
+
title="Vlindertjes VlindertjesVlindertjesVlindertjesVlindertjes"
|
|
19
19
|
subtitle={'Leeftijd 2 tot 4 jaar'}
|
|
20
20
|
icon={<Icon style={'regular'} name={'user-group'} size={27} />}
|
|
21
21
|
onPress={() => console.log('clicked')}
|
|
@@ -39,7 +39,12 @@ const SelectListItem = ({
|
|
|
39
39
|
</View>
|
|
40
40
|
<View style={styles.textContainer}>
|
|
41
41
|
<View>
|
|
42
|
-
<Heading2
|
|
42
|
+
<Heading2
|
|
43
|
+
bold={true}
|
|
44
|
+
textColor={context.colors.ui.white}
|
|
45
|
+
numberOfLines={2}
|
|
46
|
+
ellipsizeMode={'tail'}
|
|
47
|
+
>
|
|
43
48
|
{title}
|
|
44
49
|
</Heading2>
|
|
45
50
|
</View>
|
|
@@ -45,6 +45,23 @@ exports[`Select Picker test renders a picker with placeholder text 1`] = `
|
|
|
45
45
|
}
|
|
46
46
|
>
|
|
47
47
|
<View
|
|
48
|
+
accessibilityState={
|
|
49
|
+
{
|
|
50
|
+
"busy": undefined,
|
|
51
|
+
"checked": undefined,
|
|
52
|
+
"disabled": undefined,
|
|
53
|
+
"expanded": undefined,
|
|
54
|
+
"selected": undefined,
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
accessibilityValue={
|
|
58
|
+
{
|
|
59
|
+
"max": undefined,
|
|
60
|
+
"min": undefined,
|
|
61
|
+
"now": undefined,
|
|
62
|
+
"text": undefined,
|
|
63
|
+
}
|
|
64
|
+
}
|
|
48
65
|
accessible={true}
|
|
49
66
|
collapsable={false}
|
|
50
67
|
focusable={true}
|
|
@@ -122,8 +139,8 @@ exports[`Select Picker test renders a picker with placeholder text 1`] = `
|
|
|
122
139
|
>
|
|
123
140
|
<RNSVGSvgView
|
|
124
141
|
align="xMidYMid"
|
|
125
|
-
bbHeight=
|
|
126
|
-
bbWidth=
|
|
142
|
+
bbHeight="20"
|
|
143
|
+
bbWidth="20"
|
|
127
144
|
fill="none"
|
|
128
145
|
focusable={false}
|
|
129
146
|
height={20}
|
|
@@ -165,7 +182,12 @@ exports[`Select Picker test renders a picker with placeholder text 1`] = `
|
|
|
165
182
|
"strokeLinejoin",
|
|
166
183
|
]
|
|
167
184
|
}
|
|
168
|
-
stroke={
|
|
185
|
+
stroke={
|
|
186
|
+
{
|
|
187
|
+
"payload": 4280232243,
|
|
188
|
+
"type": 0,
|
|
189
|
+
}
|
|
190
|
+
}
|
|
169
191
|
strokeLinecap={1}
|
|
170
192
|
strokeLinejoin={1}
|
|
171
193
|
strokeWidth="2"
|
|
@@ -221,6 +243,23 @@ exports[`Select Picker test renders a picker without placeholder text 1`] = `
|
|
|
221
243
|
}
|
|
222
244
|
>
|
|
223
245
|
<View
|
|
246
|
+
accessibilityState={
|
|
247
|
+
{
|
|
248
|
+
"busy": undefined,
|
|
249
|
+
"checked": undefined,
|
|
250
|
+
"disabled": undefined,
|
|
251
|
+
"expanded": undefined,
|
|
252
|
+
"selected": undefined,
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
accessibilityValue={
|
|
256
|
+
{
|
|
257
|
+
"max": undefined,
|
|
258
|
+
"min": undefined,
|
|
259
|
+
"now": undefined,
|
|
260
|
+
"text": undefined,
|
|
261
|
+
}
|
|
262
|
+
}
|
|
224
263
|
accessible={true}
|
|
225
264
|
collapsable={false}
|
|
226
265
|
focusable={true}
|
|
@@ -296,8 +335,8 @@ exports[`Select Picker test renders a picker without placeholder text 1`] = `
|
|
|
296
335
|
>
|
|
297
336
|
<RNSVGSvgView
|
|
298
337
|
align="xMidYMid"
|
|
299
|
-
bbHeight=
|
|
300
|
-
bbWidth=
|
|
338
|
+
bbHeight="20"
|
|
339
|
+
bbWidth="20"
|
|
301
340
|
fill="none"
|
|
302
341
|
focusable={false}
|
|
303
342
|
height={20}
|
|
@@ -339,7 +378,12 @@ exports[`Select Picker test renders a picker without placeholder text 1`] = `
|
|
|
339
378
|
"strokeLinejoin",
|
|
340
379
|
]
|
|
341
380
|
}
|
|
342
|
-
stroke={
|
|
381
|
+
stroke={
|
|
382
|
+
{
|
|
383
|
+
"payload": 4280232243,
|
|
384
|
+
"type": 0,
|
|
385
|
+
}
|
|
386
|
+
}
|
|
343
387
|
strokeLinecap={1}
|
|
344
388
|
strokeLinejoin={1}
|
|
345
389
|
strokeWidth="2"
|