@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.
Files changed (146) hide show
  1. package/App.tsx +11 -1
  2. package/assets/lottie/wave-for-daycares.json +1197 -0
  3. package/assets/lottie/wave-for-parents.json +1 -0
  4. package/index.d.ts +2 -1
  5. package/index.tsx +2 -0
  6. package/package.json +21 -19
  7. package/src/components/atoms/animated-wave/animated-wave.component.d.ts +1 -0
  8. package/src/components/atoms/animated-wave/animated-wave.component.tsx +28 -0
  9. package/src/components/atoms/animated-wave/animated-wave.preview.tsx +20 -0
  10. package/src/components/atoms/animated-wave/animated-wave.styles.d.ts +21 -0
  11. package/src/components/atoms/animated-wave/animated-wave.styles.js +25 -0
  12. package/src/components/atoms/backdrop/backdrop.component.d.ts +1 -1
  13. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +1113 -191
  14. package/src/components/atoms/calendar/calendar.component.d.ts +1 -1
  15. package/src/components/atoms/check-switch/__snapshots__/check-switch.test.js.snap +17 -0
  16. package/src/components/atoms/check-switch/check-switch.component.d.ts +1 -1
  17. package/src/components/atoms/footer/__snapshots__/footer.test.js.snap +8 -3
  18. package/src/components/atoms/footer/footer.component.d.ts +1 -1
  19. package/src/components/atoms/heading-components/all-caps-heading/__snapshots__/all-caps-heading.test.js.snap +4 -0
  20. package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.d.ts +1 -1
  21. package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.tsx +12 -1
  22. package/src/components/atoms/heading-components/heading1/heading1.component.d.ts +1 -1
  23. package/src/components/atoms/heading-components/heading1/heading1.component.tsx +9 -1
  24. package/src/components/atoms/heading-components/heading3/heading3.component.d.ts +1 -1
  25. package/src/components/atoms/heading-components/heading3/heading3.component.tsx +9 -1
  26. package/src/components/atoms/heading-components/heading4/heading4.component.d.ts +1 -1
  27. package/src/components/atoms/heading-components/heading4/heading4.component.tsx +9 -1
  28. package/src/components/atoms/image-bubble/image-bubble.component.d.ts +1 -1
  29. package/src/components/atoms/increment-input/__snapshots__/increment-input.test.js.snap +50 -6
  30. package/src/components/atoms/increment-input/increment-input.component.d.ts +1 -1
  31. package/src/components/atoms/logo/__snapshots__/logo.test.js.snap +12 -2
  32. package/src/components/atoms/logo/logo.component.d.ts +1 -1
  33. package/src/components/atoms/split-container/__snapshots__/split-container.test.js.snap +59 -3
  34. package/src/components/atoms/split-container/split-container.component.d.ts +1 -1
  35. package/src/components/atoms/static-wave/static-wave.component.d.ts +8 -0
  36. package/src/components/atoms/static-wave/static-wave.component.tsx +46 -0
  37. package/src/components/atoms/static-wave/static-wave.styles.d.ts +14 -0
  38. package/src/components/atoms/static-wave/static-wave.styles.js +14 -0
  39. package/src/components/atoms/text-input/text-input.component.d.ts +1 -1
  40. package/src/components/molecules/avatar/avatar.component.d.ts +1 -1
  41. package/src/components/molecules/blocked-message/__snapshots__/blocked-message.test.js.snap +8 -3
  42. package/src/components/molecules/blocked-message/blocked-message.component.d.ts +1 -1
  43. package/src/components/molecules/button/__snapshots__/button.test.js.snap +80 -7
  44. package/src/components/molecules/button/button.component.d.ts +1 -1
  45. package/src/components/molecules/calendar-select/__snapshots__/calendar-select.test.js.snap +75 -9
  46. package/src/components/molecules/calendar-select/calendar-select.component.d.ts +1 -1
  47. package/src/components/molecules/cancel-link/__snapshots__/cancel-link.test.js.snap +34 -0
  48. package/src/components/molecules/cancel-link/cancel-link.component.d.ts +1 -1
  49. package/src/components/molecules/checkbox/__snapshots__/checkbox.test.js.snap +34 -0
  50. package/src/components/molecules/checkbox/checkbox.component.d.ts +1 -1
  51. package/src/components/molecules/contact-role/contact-role.component.d.ts +1 -1
  52. package/src/components/molecules/date-input/__snapshots__/date-input.test.js.snap +25 -3
  53. package/src/components/molecules/date-input/date-input.component.d.ts +1 -1
  54. package/src/components/molecules/day/__snapshots__/day.test.js.snap +34 -0
  55. package/src/components/molecules/day/day.component.d.ts +1 -1
  56. package/src/components/molecules/default-select/__snapshots__/default-select.test.js.snap +25 -3
  57. package/src/components/molecules/default-select/default-select.component.d.ts +1 -1
  58. package/src/components/molecules/department_logo/department-logo.component.d.ts +1 -1
  59. package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +58 -9
  60. package/src/components/molecules/failed-to-send/failed-bubble.component.d.ts +1 -1
  61. package/src/components/molecules/filter-range/filter-range.component.d.ts +1 -1
  62. package/src/components/molecules/filter-tab/__snapshots__/filter-tab.test.js.snap +85 -0
  63. package/src/components/molecules/filter-tab/filter-tab.component.d.ts +1 -1
  64. package/src/components/molecules/info/info.component.d.ts +1 -1
  65. package/src/components/molecules/language-button/__snapshots__/language-button.test.js.snap +34 -0
  66. package/src/components/molecules/language-button/language-button.component.d.ts +1 -1
  67. package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +200 -24
  68. package/src/components/molecules/message-input/message-input.component.d.ts +1 -1
  69. package/src/components/molecules/more-info-button/__snapshots__/more-info-button.test.js.snap +34 -0
  70. package/src/components/molecules/more-info-button/more-info-button.component.d.ts +1 -1
  71. package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +93 -12
  72. package/src/components/molecules/password-input/password-input.component.d.ts +1 -1
  73. package/src/components/molecules/pill/pill.component.d.ts +1 -1
  74. package/src/components/molecules/pressable-icon/__snapshots__/pressable-icon.test.js.snap +90 -12
  75. package/src/components/molecules/pressable-icon/pressable-icon.component.d.ts +1 -1
  76. package/src/components/molecules/quick-filter/__snapshots__/quick-filter.test.js.snap +136 -0
  77. package/src/components/molecules/quick-filter/quick-filter.component.d.ts +1 -1
  78. package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +25 -3
  79. package/src/components/molecules/search-input/search.component.d.ts +1 -1
  80. package/src/components/molecules/select-link/__snapshots__/select-link.test.js.snap +17 -0
  81. package/src/components/molecules/select-link/select-link.component.d.ts +1 -1
  82. package/src/components/molecules/select-list-item/__snapshots__/select-list-item.test.js.snap +105 -18
  83. package/src/components/molecules/select-list-item/select-list-item-preview.tsx +1 -1
  84. package/src/components/molecules/select-list-item/select-list-item.component.d.ts +1 -1
  85. package/src/components/molecules/select-list-item/select-list-item.component.tsx +6 -1
  86. package/src/components/molecules/select-picker/__snapshots__/select-picker.test.js.snap +50 -6
  87. package/src/components/molecules/select-picker/select-picker.component.d.ts +1 -1
  88. package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +300 -36
  89. package/src/components/molecules/send-bubble/send-text-bubble.component.d.ts +1 -1
  90. package/src/components/molecules/snackbar/__snapshots__/snackbar.test.js.snap +32 -12
  91. package/src/components/molecules/snackbar/snackbar.component.d.ts +1 -1
  92. package/src/components/molecules/swipe/__snapshots__/swipe.test.js.snap +66 -3
  93. package/src/components/molecules/swipe/swipe.component.d.ts +1 -1
  94. package/src/components/molecules/tag/__snapshots__/tag.test.js.snap +34 -0
  95. package/src/components/molecules/tag/tag.component.d.ts +1 -1
  96. package/src/components/molecules/time-tracker/time-tracker.component.d.ts +1 -1
  97. package/src/components/molecules/timeline/timeline.component.d.ts +1 -1
  98. package/src/components/molecules/timestamp/timestamp.component.d.ts +1 -1
  99. package/src/components/molecules/wave-background/__snapshots__/wave.test.js.snap +175 -0
  100. package/src/components/molecules/wave-background/wave.component.d.ts +2 -0
  101. package/src/components/molecules/wave-background/wave.component.tsx +35 -0
  102. package/src/components/molecules/wave-background/wave.preview.d.ts +1 -0
  103. package/src/components/molecules/wave-background/wave.preview.tsx +78 -0
  104. package/src/components/molecules/wave-background/wave.styles.d.ts +13 -0
  105. package/src/components/molecules/wave-background/wave.styles.js +13 -0
  106. package/src/components/molecules/wave-background/wave.test.js +25 -0
  107. package/src/components/molecules/wide-button/__snapshots__/wide-button.test.js.snap +58 -0
  108. package/src/components/molecules/wide-button/wide-button.component.d.ts +1 -1
  109. package/src/components/organisms/child-list-item/__snapshots__/child-list-item.test.js.snap +76 -3
  110. package/src/components/organisms/child-list-item/child-list-item.component.d.ts +1 -1
  111. package/src/components/organisms/contact-item/__snapshots__/contact-item.test.js.snap +50 -6
  112. package/src/components/organisms/contact-item/contact-item.component.d.ts +1 -1
  113. package/src/components/organisms/day-select/day-select.component.d.ts +1 -1
  114. package/src/components/organisms/loading-indicator/dot.component.d.ts +1 -1
  115. package/src/components/organisms/loading-indicator/loading-indicator.test.js +1 -0
  116. package/src/components/organisms/my-child-list-item/__snapshots__/my-child-list-item.test.js.snap +52 -6
  117. package/src/components/organisms/my-child-list-item/my-child-list-item.component.d.ts +1 -1
  118. package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +6 -1
  119. package/src/components/organisms/my-child-list-item/my-child-list-item.preview.tsx +1 -1
  120. package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +358 -45
  121. package/src/components/organisms/text-bubble/text-bubble.component.d.ts +1 -1
  122. package/src/components/templates/modal/components/fade-panel.component.d.ts +1 -1
  123. package/src/components/templates/modal/modal.component.d.ts +1 -1
  124. package/src/components/templates/modal/modal.preview.tsx +1 -1
  125. package/src/components/templates/popover/components/foreground/foreground.component.d.ts +1 -1
  126. package/src/components/templates/popover/components/modal/close/close.component.d.ts +1 -1
  127. package/src/components/templates/popover/components/modal/heading/heading.component.d.ts +1 -1
  128. package/src/components/templates/popover/components/modal/heading/heading.component.tsx +7 -1
  129. package/src/components/templates/popover/components/modal/heading/heading.styles.d.ts +4 -0
  130. package/src/components/templates/popover/components/modal/heading/heading.styles.js +4 -0
  131. package/src/components/templates/popover/components/modal/modal.component.d.ts +1 -1
  132. package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.d.ts +1 -1
  133. package/src/components/templates/popover/popover.component.d.ts +1 -1
  134. package/src/context/theme.context.d.ts +3 -0
  135. package/src/context/theme.context.ts +3 -0
  136. package/src/gradients/main/main.gradient.d.ts +1 -1
  137. package/src/icons/__snapshots__/icons.test.js.snap +408 -148
  138. package/src/theme/provider/parent.theme.d.ts +3 -0
  139. package/src/theme/provider/parent.theme.ts +3 -0
  140. package/src/theme/provider/staff-member.theme.d.ts +3 -0
  141. package/src/theme/provider/staff-member.theme.ts +3 -0
  142. package/src/types/icontype.type.d.ts +2 -2
  143. package/src/types/loading-dots.type.d.ts +1 -1
  144. package/src/types/text-properties.type.d.ts +1 -1
  145. package/src/utilities/toddle-datetime/types/duration-like.type.d.ts +1 -1
  146. package/src/utilities/toddle-datetime/types/toddle-datetime.type.d.ts +2 -2
@@ -19,8 +19,8 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
19
19
  >
20
20
  <RNSVGSvgView
21
21
  align="xMidYMid"
22
- bbHeight={26}
23
- bbWidth={26}
22
+ bbHeight="26"
23
+ bbWidth="26"
24
24
  fill="none"
25
25
  focusable={false}
26
26
  height={26}
@@ -62,7 +62,12 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
62
62
  "strokeLinejoin",
63
63
  ]
64
64
  }
65
- stroke={4294010984}
65
+ stroke={
66
+ {
67
+ "payload": 4294010984,
68
+ "type": 0,
69
+ }
70
+ }
66
71
  strokeLinecap={1}
67
72
  strokeLinejoin={1}
68
73
  strokeWidth="2"
@@ -140,6 +145,23 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
140
145
  }
141
146
  >
142
147
  <View
148
+ accessibilityState={
149
+ {
150
+ "busy": undefined,
151
+ "checked": undefined,
152
+ "disabled": undefined,
153
+ "expanded": undefined,
154
+ "selected": undefined,
155
+ }
156
+ }
157
+ accessibilityValue={
158
+ {
159
+ "max": undefined,
160
+ "min": undefined,
161
+ "now": undefined,
162
+ "text": undefined,
163
+ }
164
+ }
143
165
  accessible={true}
144
166
  collapsable={false}
145
167
  focusable={true}
@@ -155,8 +177,8 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
155
177
  >
156
178
  <RNSVGSvgView
157
179
  align="xMidYMid"
158
- bbHeight={24}
159
- bbWidth={24}
180
+ bbHeight="24"
181
+ bbWidth="24"
160
182
  fill="none"
161
183
  focusable={false}
162
184
  height={24}
@@ -198,7 +220,12 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
198
220
  "strokeLinejoin",
199
221
  ]
200
222
  }
201
- stroke={4294695385}
223
+ stroke={
224
+ {
225
+ "payload": 4294695385,
226
+ "type": 0,
227
+ }
228
+ }
202
229
  strokeLinecap={1}
203
230
  strokeLinejoin={1}
204
231
  strokeWidth="2"
@@ -218,6 +245,23 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
218
245
  }
219
246
  >
220
247
  <View
248
+ accessibilityState={
249
+ {
250
+ "busy": undefined,
251
+ "checked": undefined,
252
+ "disabled": undefined,
253
+ "expanded": undefined,
254
+ "selected": undefined,
255
+ }
256
+ }
257
+ accessibilityValue={
258
+ {
259
+ "max": undefined,
260
+ "min": undefined,
261
+ "now": undefined,
262
+ "text": undefined,
263
+ }
264
+ }
221
265
  accessible={true}
222
266
  collapsable={false}
223
267
  focusable={true}
@@ -233,8 +277,8 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
233
277
  >
234
278
  <RNSVGSvgView
235
279
  align="xMidYMid"
236
- bbHeight={24}
237
- bbWidth={24}
280
+ bbHeight="24"
281
+ bbWidth="24"
238
282
  fill="none"
239
283
  focusable={false}
240
284
  height={24}
@@ -276,7 +320,12 @@ exports[`Failed text bubble test shows a failed to send text bubble that is swip
276
320
  "strokeLinejoin",
277
321
  ]
278
322
  }
279
- stroke={4294695385}
323
+ stroke={
324
+ {
325
+ "payload": 4294695385,
326
+ "type": 0,
327
+ }
328
+ }
280
329
  strokeLinecap={1}
281
330
  strokeLinejoin={1}
282
331
  strokeWidth="2"
@@ -1,4 +1,4 @@
1
- declare type FailedBubbleProps = {
1
+ type FailedBubbleProps = {
2
2
  text: string;
3
3
  onPressRefresh: () => void;
4
4
  onPressDelete: () => void;
@@ -1,4 +1,4 @@
1
- declare type FilterRangeProps = {
1
+ type FilterRangeProps = {
2
2
  value: number | number[];
3
3
  onChange: (value: number | number[]) => void;
4
4
  minValue: number;
@@ -36,6 +36,23 @@ exports[`Filter tab test renders a filter tab with 2 tabs 1`] = `
36
36
  }
37
37
  >
38
38
  <View
39
+ accessibilityState={
40
+ {
41
+ "busy": undefined,
42
+ "checked": undefined,
43
+ "disabled": undefined,
44
+ "expanded": undefined,
45
+ "selected": undefined,
46
+ }
47
+ }
48
+ accessibilityValue={
49
+ {
50
+ "max": undefined,
51
+ "min": undefined,
52
+ "now": undefined,
53
+ "text": undefined,
54
+ }
55
+ }
39
56
  accessible={true}
40
57
  collapsable={false}
41
58
  focusable={true}
@@ -90,6 +107,23 @@ exports[`Filter tab test renders a filter tab with 2 tabs 1`] = `
90
107
  </Text>
91
108
  </View>
92
109
  <View
110
+ accessibilityState={
111
+ {
112
+ "busy": undefined,
113
+ "checked": undefined,
114
+ "disabled": undefined,
115
+ "expanded": undefined,
116
+ "selected": undefined,
117
+ }
118
+ }
119
+ accessibilityValue={
120
+ {
121
+ "max": undefined,
122
+ "min": undefined,
123
+ "now": undefined,
124
+ "text": undefined,
125
+ }
126
+ }
93
127
  accessible={true}
94
128
  collapsable={false}
95
129
  focusable={true}
@@ -241,6 +275,23 @@ exports[`Filter tab test renders a filter tab with 3 tabs 1`] = `
241
275
  }
242
276
  >
243
277
  <View
278
+ accessibilityState={
279
+ {
280
+ "busy": undefined,
281
+ "checked": undefined,
282
+ "disabled": undefined,
283
+ "expanded": undefined,
284
+ "selected": undefined,
285
+ }
286
+ }
287
+ accessibilityValue={
288
+ {
289
+ "max": undefined,
290
+ "min": undefined,
291
+ "now": undefined,
292
+ "text": undefined,
293
+ }
294
+ }
244
295
  accessible={true}
245
296
  collapsable={false}
246
297
  focusable={true}
@@ -295,6 +346,23 @@ exports[`Filter tab test renders a filter tab with 3 tabs 1`] = `
295
346
  </Text>
296
347
  </View>
297
348
  <View
349
+ accessibilityState={
350
+ {
351
+ "busy": undefined,
352
+ "checked": undefined,
353
+ "disabled": undefined,
354
+ "expanded": undefined,
355
+ "selected": undefined,
356
+ }
357
+ }
358
+ accessibilityValue={
359
+ {
360
+ "max": undefined,
361
+ "min": undefined,
362
+ "now": undefined,
363
+ "text": undefined,
364
+ }
365
+ }
298
366
  accessible={true}
299
367
  collapsable={false}
300
368
  focusable={true}
@@ -349,6 +417,23 @@ exports[`Filter tab test renders a filter tab with 3 tabs 1`] = `
349
417
  </Text>
350
418
  </View>
351
419
  <View
420
+ accessibilityState={
421
+ {
422
+ "busy": undefined,
423
+ "checked": undefined,
424
+ "disabled": undefined,
425
+ "expanded": undefined,
426
+ "selected": undefined,
427
+ }
428
+ }
429
+ accessibilityValue={
430
+ {
431
+ "max": undefined,
432
+ "min": undefined,
433
+ "now": undefined,
434
+ "text": undefined,
435
+ }
436
+ }
352
437
  accessible={true}
353
438
  collapsable={false}
354
439
  focusable={true}
@@ -1,4 +1,4 @@
1
- declare type FilterTab = {
1
+ type FilterTab = {
2
2
  tabItem: {
3
3
  value: string;
4
4
  label: string;
@@ -1,4 +1,4 @@
1
- declare type InfoProps = {
1
+ type InfoProps = {
2
2
  label: string;
3
3
  description: string;
4
4
  };
@@ -2,6 +2,23 @@
2
2
 
3
3
  exports[`language button should render a language button in a black text color, medium bold 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}
@@ -49,6 +66,23 @@ exports[`language button should render a language button in a black text color,
49
66
 
50
67
  exports[`language button should render a language button in a white text color, medium bold 1`] = `
51
68
  <View
69
+ accessibilityState={
70
+ {
71
+ "busy": undefined,
72
+ "checked": undefined,
73
+ "disabled": undefined,
74
+ "expanded": undefined,
75
+ "selected": undefined,
76
+ }
77
+ }
78
+ accessibilityValue={
79
+ {
80
+ "max": undefined,
81
+ "min": undefined,
82
+ "now": undefined,
83
+ "text": undefined,
84
+ }
85
+ }
52
86
  accessible={true}
53
87
  collapsable={false}
54
88
  focusable={true}
@@ -1,4 +1,4 @@
1
- declare type LanguageButtonProps = {
1
+ type LanguageButtonProps = {
2
2
  label: string;
3
3
  onPress?: () => void;
4
4
  textColor?: string;
@@ -20,6 +20,23 @@ exports[`Message Input test render a message text input component with placehold
20
20
  }
21
21
  >
22
22
  <View
23
+ accessibilityState={
24
+ {
25
+ "busy": undefined,
26
+ "checked": undefined,
27
+ "disabled": undefined,
28
+ "expanded": undefined,
29
+ "selected": undefined,
30
+ }
31
+ }
32
+ accessibilityValue={
33
+ {
34
+ "max": undefined,
35
+ "min": undefined,
36
+ "now": undefined,
37
+ "text": undefined,
38
+ }
39
+ }
23
40
  accessible={true}
24
41
  collapsable={false}
25
42
  focusable={true}
@@ -35,8 +52,8 @@ exports[`Message Input test render a message text input component with placehold
35
52
  >
36
53
  <RNSVGSvgView
37
54
  align="xMidYMid"
38
- bbHeight={24}
39
- bbWidth={24}
55
+ bbHeight="24"
56
+ bbWidth="24"
40
57
  fill="none"
41
58
  focusable={false}
42
59
  height={24}
@@ -78,7 +95,12 @@ exports[`Message Input test render a message text input component with placehold
78
95
  "strokeLinejoin",
79
96
  ]
80
97
  }
81
- stroke={4280232243}
98
+ stroke={
99
+ {
100
+ "payload": 4280232243,
101
+ "type": 0,
102
+ }
103
+ }
82
104
  strokeLinecap={1}
83
105
  strokeLinejoin={1}
84
106
  strokeWidth="2"
@@ -107,6 +129,23 @@ exports[`Message Input test render a message text input component with placehold
107
129
  value="text value"
108
130
  />
109
131
  <View
132
+ accessibilityState={
133
+ {
134
+ "busy": undefined,
135
+ "checked": undefined,
136
+ "disabled": undefined,
137
+ "expanded": undefined,
138
+ "selected": undefined,
139
+ }
140
+ }
141
+ accessibilityValue={
142
+ {
143
+ "max": undefined,
144
+ "min": undefined,
145
+ "now": undefined,
146
+ "text": undefined,
147
+ }
148
+ }
110
149
  accessible={true}
111
150
  collapsable={false}
112
151
  focusable={true}
@@ -122,8 +161,8 @@ exports[`Message Input test render a message text input component with placehold
122
161
  >
123
162
  <RNSVGSvgView
124
163
  align="xMidYMid"
125
- bbHeight={24}
126
- bbWidth={24}
164
+ bbHeight="24"
165
+ bbWidth="24"
127
166
  fill="none"
128
167
  focusable={false}
129
168
  height={24}
@@ -182,7 +221,12 @@ exports[`Message Input test render a message text input component with placehold
182
221
  "strokeLinejoin",
183
222
  ]
184
223
  }
185
- stroke={4280232243}
224
+ stroke={
225
+ {
226
+ "payload": 4280232243,
227
+ "type": 0,
228
+ }
229
+ }
186
230
  strokeLinecap={1}
187
231
  strokeLinejoin={1}
188
232
  strokeWidth="2"
@@ -213,6 +257,23 @@ exports[`Message Input test render a message text input component with placehold
213
257
  }
214
258
  >
215
259
  <View
260
+ accessibilityState={
261
+ {
262
+ "busy": undefined,
263
+ "checked": undefined,
264
+ "disabled": undefined,
265
+ "expanded": undefined,
266
+ "selected": undefined,
267
+ }
268
+ }
269
+ accessibilityValue={
270
+ {
271
+ "max": undefined,
272
+ "min": undefined,
273
+ "now": undefined,
274
+ "text": undefined,
275
+ }
276
+ }
216
277
  accessible={true}
217
278
  collapsable={false}
218
279
  focusable={true}
@@ -228,8 +289,8 @@ exports[`Message Input test render a message text input component with placehold
228
289
  >
229
290
  <RNSVGSvgView
230
291
  align="xMidYMid"
231
- bbHeight={24}
232
- bbWidth={24}
292
+ bbHeight="24"
293
+ bbWidth="24"
233
294
  fill="none"
234
295
  focusable={false}
235
296
  height={24}
@@ -271,7 +332,12 @@ exports[`Message Input test render a message text input component with placehold
271
332
  "strokeLinejoin",
272
333
  ]
273
334
  }
274
- stroke={4280232243}
335
+ stroke={
336
+ {
337
+ "payload": 4280232243,
338
+ "type": 0,
339
+ }
340
+ }
275
341
  strokeLinecap={1}
276
342
  strokeLinejoin={1}
277
343
  strokeWidth="2"
@@ -300,6 +366,23 @@ exports[`Message Input test render a message text input component with placehold
300
366
  value="text value"
301
367
  />
302
368
  <View
369
+ accessibilityState={
370
+ {
371
+ "busy": undefined,
372
+ "checked": undefined,
373
+ "disabled": undefined,
374
+ "expanded": undefined,
375
+ "selected": undefined,
376
+ }
377
+ }
378
+ accessibilityValue={
379
+ {
380
+ "max": undefined,
381
+ "min": undefined,
382
+ "now": undefined,
383
+ "text": undefined,
384
+ }
385
+ }
303
386
  accessible={true}
304
387
  collapsable={false}
305
388
  focusable={true}
@@ -315,8 +398,8 @@ exports[`Message Input test render a message text input component with placehold
315
398
  >
316
399
  <RNSVGSvgView
317
400
  align="xMidYMid"
318
- bbHeight={24}
319
- bbWidth={24}
401
+ bbHeight="24"
402
+ bbWidth="24"
320
403
  fill="none"
321
404
  focusable={false}
322
405
  height={24}
@@ -375,7 +458,12 @@ exports[`Message Input test render a message text input component with placehold
375
458
  "strokeLinejoin",
376
459
  ]
377
460
  }
378
- stroke={4280232243}
461
+ stroke={
462
+ {
463
+ "payload": 4280232243,
464
+ "type": 0,
465
+ }
466
+ }
379
467
  strokeLinecap={1}
380
468
  strokeLinejoin={1}
381
469
  strokeWidth="2"
@@ -406,6 +494,23 @@ exports[`Message Input test render a message text input component without placeh
406
494
  }
407
495
  >
408
496
  <View
497
+ accessibilityState={
498
+ {
499
+ "busy": undefined,
500
+ "checked": undefined,
501
+ "disabled": undefined,
502
+ "expanded": undefined,
503
+ "selected": undefined,
504
+ }
505
+ }
506
+ accessibilityValue={
507
+ {
508
+ "max": undefined,
509
+ "min": undefined,
510
+ "now": undefined,
511
+ "text": undefined,
512
+ }
513
+ }
409
514
  accessible={true}
410
515
  collapsable={false}
411
516
  focusable={true}
@@ -421,8 +526,8 @@ exports[`Message Input test render a message text input component without placeh
421
526
  >
422
527
  <RNSVGSvgView
423
528
  align="xMidYMid"
424
- bbHeight={24}
425
- bbWidth={24}
529
+ bbHeight="24"
530
+ bbWidth="24"
426
531
  fill="none"
427
532
  focusable={false}
428
533
  height={24}
@@ -464,7 +569,12 @@ exports[`Message Input test render a message text input component without placeh
464
569
  "strokeLinejoin",
465
570
  ]
466
571
  }
467
- stroke={4280232243}
572
+ stroke={
573
+ {
574
+ "payload": 4280232243,
575
+ "type": 0,
576
+ }
577
+ }
468
578
  strokeLinecap={1}
469
579
  strokeLinejoin={1}
470
580
  strokeWidth="2"
@@ -492,6 +602,23 @@ exports[`Message Input test render a message text input component without placeh
492
602
  value="text value"
493
603
  />
494
604
  <View
605
+ accessibilityState={
606
+ {
607
+ "busy": undefined,
608
+ "checked": undefined,
609
+ "disabled": undefined,
610
+ "expanded": undefined,
611
+ "selected": undefined,
612
+ }
613
+ }
614
+ accessibilityValue={
615
+ {
616
+ "max": undefined,
617
+ "min": undefined,
618
+ "now": undefined,
619
+ "text": undefined,
620
+ }
621
+ }
495
622
  accessible={true}
496
623
  collapsable={false}
497
624
  focusable={true}
@@ -507,8 +634,8 @@ exports[`Message Input test render a message text input component without placeh
507
634
  >
508
635
  <RNSVGSvgView
509
636
  align="xMidYMid"
510
- bbHeight={24}
511
- bbWidth={24}
637
+ bbHeight="24"
638
+ bbWidth="24"
512
639
  fill="none"
513
640
  focusable={false}
514
641
  height={24}
@@ -567,7 +694,12 @@ exports[`Message Input test render a message text input component without placeh
567
694
  "strokeLinejoin",
568
695
  ]
569
696
  }
570
- stroke={4280232243}
697
+ stroke={
698
+ {
699
+ "payload": 4280232243,
700
+ "type": 0,
701
+ }
702
+ }
571
703
  strokeLinecap={1}
572
704
  strokeLinejoin={1}
573
705
  strokeWidth="2"
@@ -598,6 +730,23 @@ exports[`Message Input test render a message text input component without placeh
598
730
  }
599
731
  >
600
732
  <View
733
+ accessibilityState={
734
+ {
735
+ "busy": undefined,
736
+ "checked": undefined,
737
+ "disabled": undefined,
738
+ "expanded": undefined,
739
+ "selected": undefined,
740
+ }
741
+ }
742
+ accessibilityValue={
743
+ {
744
+ "max": undefined,
745
+ "min": undefined,
746
+ "now": undefined,
747
+ "text": undefined,
748
+ }
749
+ }
601
750
  accessible={true}
602
751
  collapsable={false}
603
752
  focusable={true}
@@ -613,8 +762,8 @@ exports[`Message Input test render a message text input component without placeh
613
762
  >
614
763
  <RNSVGSvgView
615
764
  align="xMidYMid"
616
- bbHeight={24}
617
- bbWidth={24}
765
+ bbHeight="24"
766
+ bbWidth="24"
618
767
  fill="none"
619
768
  focusable={false}
620
769
  height={24}
@@ -656,7 +805,12 @@ exports[`Message Input test render a message text input component without placeh
656
805
  "strokeLinejoin",
657
806
  ]
658
807
  }
659
- stroke={4280232243}
808
+ stroke={
809
+ {
810
+ "payload": 4280232243,
811
+ "type": 0,
812
+ }
813
+ }
660
814
  strokeLinecap={1}
661
815
  strokeLinejoin={1}
662
816
  strokeWidth="2"
@@ -684,6 +838,23 @@ exports[`Message Input test render a message text input component without placeh
684
838
  value="text value"
685
839
  />
686
840
  <View
841
+ accessibilityState={
842
+ {
843
+ "busy": undefined,
844
+ "checked": undefined,
845
+ "disabled": undefined,
846
+ "expanded": undefined,
847
+ "selected": undefined,
848
+ }
849
+ }
850
+ accessibilityValue={
851
+ {
852
+ "max": undefined,
853
+ "min": undefined,
854
+ "now": undefined,
855
+ "text": undefined,
856
+ }
857
+ }
687
858
  accessible={true}
688
859
  collapsable={false}
689
860
  focusable={true}
@@ -699,8 +870,8 @@ exports[`Message Input test render a message text input component without placeh
699
870
  >
700
871
  <RNSVGSvgView
701
872
  align="xMidYMid"
702
- bbHeight={24}
703
- bbWidth={24}
873
+ bbHeight="24"
874
+ bbWidth="24"
704
875
  fill="none"
705
876
  focusable={false}
706
877
  height={24}
@@ -759,7 +930,12 @@ exports[`Message Input test render a message text input component without placeh
759
930
  "strokeLinejoin",
760
931
  ]
761
932
  }
762
- stroke={4280232243}
933
+ stroke={
934
+ {
935
+ "payload": 4280232243,
936
+ "type": 0,
937
+ }
938
+ }
763
939
  strokeLinecap={1}
764
940
  strokeLinejoin={1}
765
941
  strokeWidth="2"