@tactics/toddle-styleguide 1.2.3 → 1.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/App.tsx +202 -191
  2. package/index.d.ts +2 -1
  3. package/index.tsx +2 -0
  4. package/package.json +2 -2
  5. package/src/components/atoms/backdrop/backdrop.component.d.ts +2 -1
  6. package/src/components/atoms/backdrop/backdrop.component.tsx +8 -2
  7. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +1821 -641
  8. package/src/components/atoms/text-input/text-input.component.d.ts +4 -5
  9. package/src/components/atoms/text-input/text-input.component.tsx +9 -13
  10. package/src/components/atoms/text-input/text-input.preview.tsx +5 -5
  11. package/src/components/atoms/text-input/text-input.test.js +4 -4
  12. package/src/components/molecules/avatar/__snapshots__/avatar.test.js.snap +70 -62
  13. package/src/components/molecules/avatar/avatar.component.d.ts +2 -1
  14. package/src/components/molecules/avatar/avatar.component.tsx +22 -11
  15. package/src/components/molecules/avatar/avatar.preview.tsx +58 -44
  16. package/src/components/molecules/avatar/avatar.styles.d.ts +54 -15
  17. package/src/components/molecules/avatar/avatar.styles.js +33 -5
  18. package/src/components/molecules/button/__snapshots__/button.test.js.snap +144 -0
  19. package/src/components/molecules/button/button.component.d.ts +6 -4
  20. package/src/components/molecules/button/button.component.tsx +30 -9
  21. package/src/components/molecules/button/button.preview.tsx +16 -1
  22. package/src/components/molecules/button/button.styles.d.ts +13 -16
  23. package/src/components/molecules/button/button.styles.js +2 -4
  24. package/src/components/molecules/button/button.test.js +12 -0
  25. package/src/components/molecules/date-input/date-input.preview.tsx +25 -23
  26. package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +4 -0
  27. package/src/components/molecules/message-input/message-input.component.d.ts +4 -6
  28. package/src/components/molecules/message-input/message-input.component.tsx +10 -12
  29. package/src/components/molecules/message-input/message-input.preview.tsx +28 -15
  30. package/src/components/molecules/password-input/password-input.component.d.ts +4 -6
  31. package/src/components/molecules/password-input/password-input.component.tsx +11 -15
  32. package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +263 -420
  33. package/src/components/molecules/swipe/swipe.component.d.ts +4 -4
  34. package/src/components/molecules/swipe/swipe.component.tsx +47 -20
  35. package/src/components/molecules/swipe/swipe.preview.tsx +111 -51
  36. package/src/components/molecules/swipe/swipe.styles.d.ts +28 -0
  37. package/src/components/molecules/swipe/swipe.styles.js +32 -0
  38. package/src/components/molecules/swipe/swipe.test.js +1 -1
  39. package/src/components/molecules/tag/__snapshots__/tag.test.js.snap +10 -10
  40. package/src/components/molecules/tag/tag.component.d.ts +3 -8
  41. package/src/components/molecules/tag/tag.component.tsx +7 -13
  42. package/src/components/molecules/tag/tag.preview.tsx +22 -19
  43. package/src/components/molecules/tag/tag.styles.js +4 -2
  44. package/src/components/molecules/tag/tag.test.js +10 -2
  45. package/src/components/molecules/time-picker/__snapshots__/time-picker.test.js.snap +1868 -1776
  46. package/src/components/molecules/time-picker/time-picker.component.tsx +49 -23
  47. package/src/components/molecules/time-picker/time-picker.preview.tsx +5 -4
  48. package/src/components/molecules/time-picker/time-picker.styles.d.ts +16 -4
  49. package/src/components/molecules/time-picker/time-picker.styles.js +18 -6
  50. package/src/components/molecules/timestamp/__snapshots__/timestamp.test.js.snap +1 -1
  51. package/src/components/molecules/timestamp/timestamp.component.tsx +0 -2
  52. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +174 -162
  53. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +70 -127
  54. package/src/components/organisms/contact-item/contact-item.component.tsx +10 -9
  55. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +97 -89
  56. package/src/components/organisms/person-info-card/__snapshots__/person-info-card.test.js.snap +233 -209
  57. package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +7 -7
  58. package/src/components/templates/modal/modal.component.tsx +0 -1
  59. package/src/components/templates/popover/components/modal/modal.component.tsx +0 -1
  60. package/src/components/templates/popover/components/modal/modal.styles.d.ts +2 -1
  61. package/src/components/templates/popover/components/modal/modal.styles.js +2 -2
  62. package/src/components/templates/popover/popover.component.tsx +27 -14
  63. package/src/components/templates/popover/popover.preview.tsx +63 -97
  64. package/src/components/templates/popover/popover.styles.d.ts +1 -1
  65. package/src/components/templates/popover/popover.styles.js +3 -1
  66. package/src/components/templates/popover-action/popover-action.component.d.ts +8 -0
  67. package/src/components/templates/popover-action/popover-action.component.tsx +119 -0
  68. package/src/components/templates/popover-action/popover-action.preview.d.ts +1 -0
  69. package/src/components/templates/popover-action/popover-action.preview.tsx +142 -0
  70. package/src/components/templates/popover-action/popover-action.styles.d.ts +26 -0
  71. package/src/components/templates/popover-action/popover-action.styles.js +31 -0
  72. package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +5 -0
  73. package/src/utilities/toddle-datetime/toddle-datetime.class.tsx +23 -0
  74. package/src/utilities/toddle-datetime/toddle-datetime.preview.tsx +15 -1
  75. package/src/utilities/toddle-datetime/toddle-datetime.test.js +10 -0
  76. package/src/components/molecules/swipe/Swipe.styles.d.ts +0 -7
  77. package/src/components/molecules/swipe/Swipe.styles.js +0 -10
@@ -1,491 +1,334 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`Test Swipe component should render an swipe component with dots and navigation arrows 1`] = `
3
+ exports[`Test Swipe component should render an swipe component with navigation arrows 1`] = `
4
4
  <View
5
5
  style={
6
6
  {
7
- "alignItems": "center",
8
- "height": 85,
9
- "justifyContent": "center",
7
+ "flex": 1,
10
8
  }
11
9
  }
12
10
  >
13
11
  <View
14
- onLayout={[Function]}
12
+ accessibilityState={
13
+ {
14
+ "busy": undefined,
15
+ "checked": undefined,
16
+ "disabled": undefined,
17
+ "expanded": undefined,
18
+ "selected": undefined,
19
+ }
20
+ }
21
+ accessibilityValue={
22
+ {
23
+ "max": undefined,
24
+ "min": undefined,
25
+ "now": undefined,
26
+ "text": undefined,
27
+ }
28
+ }
29
+ accessible={true}
30
+ collapsable={false}
31
+ focusable={true}
32
+ onBlur={[Function]}
33
+ onClick={[Function]}
34
+ onFocus={[Function]}
35
+ onResponderGrant={[Function]}
36
+ onResponderMove={[Function]}
37
+ onResponderRelease={[Function]}
38
+ onResponderTerminate={[Function]}
39
+ onResponderTerminationRequest={[Function]}
40
+ onStartShouldSetResponder={[Function]}
15
41
  style={
16
- [
17
- {
18
- "backgroundColor": "transparent",
19
- "flex": 1,
20
- "position": "relative",
21
- },
22
- undefined,
23
- ]
42
+ {
43
+ "alignItems": "center",
44
+ "height": 42,
45
+ "justifyContent": "center",
46
+ "position": "absolute",
47
+ "right": 0,
48
+ "top": 12,
49
+ "width": 42,
50
+ "zIndex": 10,
51
+ }
24
52
  }
25
53
  >
26
- <RCTScrollView
27
- activeDotColor="#98AEEB"
28
- automaticallyAdjustContentInsets={false}
29
- autoplay={false}
30
- autoplayDirection={true}
31
- autoplayTimeout={2.5}
32
- bounces={false}
33
- contentContainerStyle={
54
+ <RNSVGSvgView
55
+ align="xMidYMid"
56
+ bbHeight="24"
57
+ bbWidth="24"
58
+ fill="none"
59
+ focusable={false}
60
+ height={24}
61
+ meetOrSlice={0}
62
+ minX={0}
63
+ minY={0}
64
+ style={
34
65
  [
35
66
  {
36
67
  "backgroundColor": "transparent",
68
+ "borderWidth": 0,
69
+ },
70
+ {
71
+ "flex": 0,
72
+ "height": 24,
73
+ "width": 24,
37
74
  },
38
- undefined,
39
75
  ]
40
76
  }
41
- contentOffset={
42
- {
43
- "x": 0,
77
+ vbHeight={19}
78
+ vbWidth={11}
79
+ width={24}
80
+ >
81
+ <RNSVGGroup
82
+ fill={null}
83
+ propList={
84
+ [
85
+ "fill",
86
+ ]
44
87
  }
45
- }
46
- disableNextButton={false}
47
- disablePrevButton={false}
48
- dotColor="#E5E8EB"
49
- horizontal={true}
50
- index={0}
51
- loadMinimal={false}
52
- loadMinimalSize={1}
53
- loop={false}
54
- nextButton={
55
- <Icon
56
- color="#19216C"
57
- name="chevron-right"
58
- style="regular"
88
+ >
89
+ <RNSVGPath
90
+ d="M1.75 1.625L9.33333 9.5L1.75 17.375"
91
+ propList={
92
+ [
93
+ "stroke",
94
+ "strokeWidth",
95
+ "strokeLinecap",
96
+ "strokeLinejoin",
97
+ ]
98
+ }
99
+ stroke={
100
+ {
101
+ "payload": 4279837036,
102
+ "type": 0,
103
+ }
104
+ }
105
+ strokeLinecap={1}
106
+ strokeLinejoin={1}
107
+ strokeWidth="2"
59
108
  />
109
+ </RNSVGGroup>
110
+ </RNSVGSvgView>
111
+ </View>
112
+ <RNCViewPager
113
+ collapsable={false}
114
+ initialPage={0}
115
+ layoutDirection="ltr"
116
+ onMoveShouldSetResponderCapture={[Function]}
117
+ onPageScroll={[Function]}
118
+ onPageScrollStateChanged={[Function]}
119
+ onPageSelected={[Function]}
120
+ style={
121
+ {
122
+ "flex": 1,
60
123
  }
61
- onIndexChanged={[Function]}
62
- onMomentumScrollEnd={[Function]}
63
- onScrollBeginDrag={[Function]}
64
- onScrollEndDrag={[Function]}
65
- paginationStyle={
124
+ }
125
+ >
126
+ <View
127
+ collapsable={false}
128
+ style={
66
129
  {
67
130
  "bottom": 0,
131
+ "left": 0,
132
+ "position": "absolute",
133
+ "right": 0,
134
+ "top": 0,
68
135
  }
69
136
  }
70
- pagingEnabled={true}
71
- prevButton={
72
- <Icon
73
- color="#19216C"
74
- name="chevron-left"
75
- style="regular"
76
- />
77
- }
78
- removeClippedSubviews={true}
79
- scrollsToTop={false}
80
- showsButtons={true}
81
- showsHorizontalScrollIndicator={false}
82
- showsPagination={true}
83
- showsVerticalScrollIndicator={false}
84
137
  >
85
- <View>
138
+ <View
139
+ style={
140
+ [
141
+ {
142
+ "alignSelf": "center",
143
+ "marginLeft": 15,
144
+ "marginRight": 15,
145
+ "marginTop": 20,
146
+ "width": "60%",
147
+ },
148
+ {
149
+ "bottom": 0,
150
+ "left": 0,
151
+ "position": "absolute",
152
+ "right": 0,
153
+ "top": 0,
154
+ },
155
+ ]
156
+ }
157
+ >
86
158
  <View
87
- style={
88
- [
89
- {
90
- "height": 1334,
91
- "width": 750,
92
- },
93
- {
94
- "backgroundColor": "transparent",
95
- },
96
- ]
159
+ accessibilityState={
160
+ {
161
+ "busy": undefined,
162
+ "checked": undefined,
163
+ "disabled": undefined,
164
+ "expanded": undefined,
165
+ "selected": undefined,
166
+ }
97
167
  }
98
- >
99
- <View
100
- style={
101
- {
102
- "alignSelf": "center",
103
- "marginLeft": 15,
104
- "marginRight": 15,
105
- "marginTop": 20,
106
- "width": "60%",
107
- }
168
+ accessibilityValue={
169
+ {
170
+ "max": undefined,
171
+ "min": undefined,
172
+ "now": undefined,
173
+ "text": undefined,
108
174
  }
109
- >
110
- <View
111
- accessibilityState={
112
- {
113
- "busy": undefined,
114
- "checked": undefined,
115
- "disabled": undefined,
116
- "expanded": undefined,
117
- "selected": undefined,
118
- }
119
- }
120
- accessibilityValue={
121
- {
122
- "max": undefined,
123
- "min": undefined,
124
- "now": undefined,
125
- "text": undefined,
126
- }
127
- }
128
- accessible={true}
129
- collapsable={false}
130
- focusable={true}
131
- onBlur={[Function]}
132
- onClick={[Function]}
133
- onFocus={[Function]}
134
- onResponderGrant={[Function]}
135
- onResponderMove={[Function]}
136
- onResponderRelease={[Function]}
137
- onResponderTerminate={[Function]}
138
- onResponderTerminationRequest={[Function]}
139
- onStartShouldSetResponder={[Function]}
140
- >
141
- <View
142
- style={
143
- {
144
- "alignItems": "center",
145
- "backgroundColor": "#19216C",
146
- "borderRadius": 50,
147
- "flexDirection": "row",
148
- "justifyContent": "center",
149
- "paddingHorizontal": 24,
150
- "paddingVertical": 12,
151
- }
152
- }
153
- >
154
- <View>
155
- <Text
156
- style={
157
- [
158
- [
159
- {
160
- "fontFamily": "SourceSansPro",
161
- "fontSize": 16,
162
- "lineHeight": 22.4,
163
- },
164
- ],
165
- {
166
- "color": "#E0E8F9",
167
- "textAlign": "center",
168
- "width": "100%",
169
- },
170
- undefined,
171
- ]
172
- }
173
- >
174
- button 1
175
- </Text>
176
- </View>
177
- </View>
178
- </View>
179
- </View>
180
- </View>
181
- <View
182
- style={
183
- [
184
- {
185
- "height": 1334,
186
- "width": 750,
187
- },
188
- {
189
- "backgroundColor": "transparent",
190
- },
191
- ]
192
175
  }
176
+ accessible={true}
177
+ collapsable={false}
178
+ focusable={true}
179
+ onBlur={[Function]}
180
+ onClick={[Function]}
181
+ onFocus={[Function]}
182
+ onResponderGrant={[Function]}
183
+ onResponderMove={[Function]}
184
+ onResponderRelease={[Function]}
185
+ onResponderTerminate={[Function]}
186
+ onResponderTerminationRequest={[Function]}
187
+ onStartShouldSetResponder={[Function]}
193
188
  >
194
189
  <View
195
190
  style={
196
191
  {
197
- "alignSelf": "center",
198
- "marginLeft": 15,
199
- "marginRight": 15,
200
- "marginTop": 20,
201
- "width": "60%",
192
+ "alignItems": "center",
193
+ "backgroundColor": "#19216C",
194
+ "borderRadius": 50,
195
+ "flexDirection": "row",
196
+ "justifyContent": "center",
197
+ "paddingHorizontal": 24,
198
+ "paddingVertical": 12,
202
199
  }
203
200
  }
204
201
  >
205
- <View
206
- accessibilityState={
207
- {
208
- "busy": undefined,
209
- "checked": undefined,
210
- "disabled": undefined,
211
- "expanded": undefined,
212
- "selected": undefined,
213
- }
214
- }
215
- accessibilityValue={
216
- {
217
- "max": undefined,
218
- "min": undefined,
219
- "now": undefined,
220
- "text": undefined,
221
- }
222
- }
223
- accessible={true}
224
- collapsable={false}
225
- focusable={true}
226
- onBlur={[Function]}
227
- onClick={[Function]}
228
- onFocus={[Function]}
229
- onResponderGrant={[Function]}
230
- onResponderMove={[Function]}
231
- onResponderRelease={[Function]}
232
- onResponderTerminate={[Function]}
233
- onResponderTerminationRequest={[Function]}
234
- onStartShouldSetResponder={[Function]}
235
- >
236
- <View
202
+ <View>
203
+ <Text
237
204
  style={
238
- {
239
- "alignItems": "center",
240
- "backgroundColor": "#19216C",
241
- "borderRadius": 50,
242
- "flexDirection": "row",
243
- "justifyContent": "center",
244
- "paddingHorizontal": 24,
245
- "paddingVertical": 12,
246
- }
205
+ [
206
+ [
207
+ {
208
+ "fontFamily": "SourceSansPro",
209
+ "fontSize": 16,
210
+ "lineHeight": 22.4,
211
+ },
212
+ ],
213
+ {
214
+ "color": "#E0E8F9",
215
+ "textAlign": "center",
216
+ "width": "100%",
217
+ },
218
+ undefined,
219
+ ]
247
220
  }
248
221
  >
249
- <View>
250
- <Text
251
- style={
252
- [
253
- [
254
- {
255
- "fontFamily": "SourceSansPro",
256
- "fontSize": 16,
257
- "lineHeight": 22.4,
258
- },
259
- ],
260
- {
261
- "color": "#E0E8F9",
262
- "textAlign": "center",
263
- "width": "100%",
264
- },
265
- undefined,
266
- ]
267
- }
268
- >
269
- button 2
270
- </Text>
271
- </View>
272
- </View>
222
+ button 1
223
+ </Text>
273
224
  </View>
274
225
  </View>
275
226
  </View>
276
227
  </View>
277
- </RCTScrollView>
228
+ </View>
278
229
  <View
279
- pointerEvents="none"
230
+ collapsable={false}
280
231
  style={
281
- [
282
- {
283
- "alignItems": "center",
284
- "backgroundColor": "transparent",
285
- "bottom": 25,
286
- "flex": 1,
287
- "flexDirection": "row",
288
- "justifyContent": "center",
289
- "left": 0,
290
- "position": "absolute",
291
- "right": 0,
292
- },
293
- {
294
- "bottom": 0,
295
- },
296
- ]
232
+ {
233
+ "bottom": 0,
234
+ "left": 0,
235
+ "position": "absolute",
236
+ "right": 0,
237
+ "top": 0,
238
+ }
297
239
  }
298
240
  >
299
241
  <View
300
242
  style={
301
243
  [
302
244
  {
303
- "backgroundColor": "#98AEEB",
304
- "borderRadius": 4,
305
- "height": 8,
306
- "marginBottom": 3,
307
- "marginLeft": 3,
308
- "marginRight": 3,
309
- "marginTop": 3,
310
- "width": 8,
245
+ "alignSelf": "center",
246
+ "marginLeft": 15,
247
+ "marginRight": 15,
248
+ "marginTop": 20,
249
+ "width": "60%",
311
250
  },
312
- undefined,
313
- ]
314
- }
315
- />
316
- <View
317
- style={
318
- [
319
251
  {
320
- "backgroundColor": "#E5E8EB",
321
- "borderRadius": 4,
322
- "height": 8,
323
- "marginBottom": 3,
324
- "marginLeft": 3,
325
- "marginRight": 3,
326
- "marginTop": 3,
327
- "width": 8,
252
+ "bottom": 0,
253
+ "left": 0,
254
+ "position": "absolute",
255
+ "right": 0,
256
+ "top": 0,
328
257
  },
329
- undefined,
330
258
  ]
331
259
  }
332
- />
333
- </View>
334
- <View
335
- pointerEvents="box-none"
336
- style={
337
- [
338
- {
339
- "alignItems": "center",
340
- "backgroundColor": "transparent",
341
- "flex": 1,
342
- "flexDirection": "row",
343
- "justifyContent": "space-between",
344
- "left": 0,
345
- "paddingHorizontal": 10,
346
- "paddingVertical": 10,
347
- "position": "absolute",
348
- "top": 0,
349
- },
350
- {
351
- "height": 1334,
352
- "width": 750,
353
- },
354
- undefined,
355
- ]
356
- }
357
- >
358
- <View
359
- accessibilityState={
360
- {
361
- "busy": undefined,
362
- "checked": undefined,
363
- "disabled": false,
364
- "expanded": undefined,
365
- "selected": undefined,
366
- }
367
- }
368
- accessibilityValue={
369
- {
370
- "max": undefined,
371
- "min": undefined,
372
- "now": undefined,
373
- "text": undefined,
374
- }
375
- }
376
- accessible={true}
377
- collapsable={false}
378
- focusable={true}
379
- onClick={[Function]}
380
- onResponderGrant={[Function]}
381
- onResponderMove={[Function]}
382
- onResponderRelease={[Function]}
383
- onResponderTerminate={[Function]}
384
- onResponderTerminationRequest={[Function]}
385
- onStartShouldSetResponder={[Function]}
386
- style={
387
- {
388
- "opacity": 1,
389
- }
390
- }
391
260
  >
392
- <View />
393
- </View>
394
- <View
395
- accessibilityState={
396
- {
397
- "busy": undefined,
398
- "checked": undefined,
399
- "disabled": false,
400
- "expanded": undefined,
401
- "selected": undefined,
402
- }
403
- }
404
- accessibilityValue={
405
- {
406
- "max": undefined,
407
- "min": undefined,
408
- "now": undefined,
409
- "text": undefined,
261
+ <View
262
+ accessibilityState={
263
+ {
264
+ "busy": undefined,
265
+ "checked": undefined,
266
+ "disabled": undefined,
267
+ "expanded": undefined,
268
+ "selected": undefined,
269
+ }
410
270
  }
411
- }
412
- accessible={true}
413
- collapsable={false}
414
- focusable={true}
415
- onClick={[Function]}
416
- onResponderGrant={[Function]}
417
- onResponderMove={[Function]}
418
- onResponderRelease={[Function]}
419
- onResponderTerminate={[Function]}
420
- onResponderTerminationRequest={[Function]}
421
- onStartShouldSetResponder={[Function]}
422
- style={
423
- {
424
- "opacity": 1,
271
+ accessibilityValue={
272
+ {
273
+ "max": undefined,
274
+ "min": undefined,
275
+ "now": undefined,
276
+ "text": undefined,
277
+ }
425
278
  }
426
- }
427
- >
428
- <View>
429
- <RNSVGSvgView
430
- align="xMidYMid"
431
- bbHeight="24"
432
- bbWidth="24"
433
- fill="none"
434
- focusable={false}
435
- height={24}
436
- meetOrSlice={0}
437
- minX={0}
438
- minY={0}
279
+ accessible={true}
280
+ collapsable={false}
281
+ focusable={true}
282
+ onBlur={[Function]}
283
+ onClick={[Function]}
284
+ onFocus={[Function]}
285
+ onResponderGrant={[Function]}
286
+ onResponderMove={[Function]}
287
+ onResponderRelease={[Function]}
288
+ onResponderTerminate={[Function]}
289
+ onResponderTerminationRequest={[Function]}
290
+ onStartShouldSetResponder={[Function]}
291
+ >
292
+ <View
439
293
  style={
440
- [
441
- {
442
- "backgroundColor": "transparent",
443
- "borderWidth": 0,
444
- },
445
- {
446
- "flex": 0,
447
- "height": 24,
448
- "width": 24,
449
- },
450
- ]
294
+ {
295
+ "alignItems": "center",
296
+ "backgroundColor": "#19216C",
297
+ "borderRadius": 50,
298
+ "flexDirection": "row",
299
+ "justifyContent": "center",
300
+ "paddingHorizontal": 24,
301
+ "paddingVertical": 12,
302
+ }
451
303
  }
452
- vbHeight={19}
453
- vbWidth={11}
454
- width={24}
455
304
  >
456
- <RNSVGGroup
457
- fill={null}
458
- propList={
459
- [
460
- "fill",
461
- ]
462
- }
463
- >
464
- <RNSVGPath
465
- d="M1.75 1.625L9.33333 9.5L1.75 17.375"
466
- propList={
305
+ <View>
306
+ <Text
307
+ style={
467
308
  [
468
- "stroke",
469
- "strokeWidth",
470
- "strokeLinecap",
471
- "strokeLinejoin",
309
+ [
310
+ {
311
+ "fontFamily": "SourceSansPro",
312
+ "fontSize": 16,
313
+ "lineHeight": 22.4,
314
+ },
315
+ ],
316
+ {
317
+ "color": "#E0E8F9",
318
+ "textAlign": "center",
319
+ "width": "100%",
320
+ },
321
+ undefined,
472
322
  ]
473
323
  }
474
- stroke={
475
- {
476
- "payload": 4279837036,
477
- "type": 0,
478
- }
479
- }
480
- strokeLinecap={1}
481
- strokeLinejoin={1}
482
- strokeWidth="2"
483
- />
484
- </RNSVGGroup>
485
- </RNSVGSvgView>
324
+ >
325
+ button 2
326
+ </Text>
327
+ </View>
328
+ </View>
486
329
  </View>
487
330
  </View>
488
331
  </View>
489
- </View>
332
+ </RNCViewPager>
490
333
  </View>
491
334
  `;