@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
@@ -102,6 +102,23 @@ exports[`test text-bubble given the bubbleAlignment is SENT return a text-bubble
102
102
  }
103
103
  >
104
104
  <View
105
+ accessibilityState={
106
+ {
107
+ "busy": undefined,
108
+ "checked": undefined,
109
+ "disabled": undefined,
110
+ "expanded": undefined,
111
+ "selected": undefined,
112
+ }
113
+ }
114
+ accessibilityValue={
115
+ {
116
+ "max": undefined,
117
+ "min": undefined,
118
+ "now": undefined,
119
+ "text": undefined,
120
+ }
121
+ }
105
122
  accessible={true}
106
123
  collapsable={false}
107
124
  focusable={true}
@@ -117,8 +134,8 @@ exports[`test text-bubble given the bubbleAlignment is SENT return a text-bubble
117
134
  >
118
135
  <RNSVGSvgView
119
136
  align="xMidYMid"
120
- bbHeight={24}
121
- bbWidth={24}
137
+ bbHeight="24"
138
+ bbWidth="24"
122
139
  fill="none"
123
140
  focusable={false}
124
141
  height={24}
@@ -160,7 +177,12 @@ exports[`test text-bubble given the bubbleAlignment is SENT return a text-bubble
160
177
  "strokeLinejoin",
161
178
  ]
162
179
  }
163
- stroke={4279837036}
180
+ stroke={
181
+ {
182
+ "payload": 4279837036,
183
+ "type": 0,
184
+ }
185
+ }
164
186
  strokeLinecap={1}
165
187
  strokeLinejoin={1}
166
188
  strokeWidth="2"
@@ -180,6 +202,23 @@ exports[`test text-bubble given the bubbleAlignment is SENT return a text-bubble
180
202
  }
181
203
  >
182
204
  <View
205
+ accessibilityState={
206
+ {
207
+ "busy": undefined,
208
+ "checked": undefined,
209
+ "disabled": undefined,
210
+ "expanded": undefined,
211
+ "selected": undefined,
212
+ }
213
+ }
214
+ accessibilityValue={
215
+ {
216
+ "max": undefined,
217
+ "min": undefined,
218
+ "now": undefined,
219
+ "text": undefined,
220
+ }
221
+ }
183
222
  accessible={true}
184
223
  collapsable={false}
185
224
  focusable={true}
@@ -195,8 +234,8 @@ exports[`test text-bubble given the bubbleAlignment is SENT return a text-bubble
195
234
  >
196
235
  <RNSVGSvgView
197
236
  align="xMidYMid"
198
- bbHeight={24}
199
- bbWidth={24}
237
+ bbHeight="24"
238
+ bbWidth="24"
200
239
  fill="none"
201
240
  focusable={false}
202
241
  height={24}
@@ -238,7 +277,12 @@ exports[`test text-bubble given the bubbleAlignment is SENT return a text-bubble
238
277
  "strokeLinejoin",
239
278
  ]
240
279
  }
241
- stroke={4279837036}
280
+ stroke={
281
+ {
282
+ "payload": 4279837036,
283
+ "type": 0,
284
+ }
285
+ }
242
286
  strokeLinecap={1}
243
287
  strokeLinejoin={1}
244
288
  strokeWidth="2"
@@ -447,6 +491,23 @@ exports[`test text-bubble given the visualState is DEFAULT return a light-blue c
447
491
  }
448
492
  >
449
493
  <View
494
+ accessibilityState={
495
+ {
496
+ "busy": undefined,
497
+ "checked": undefined,
498
+ "disabled": undefined,
499
+ "expanded": undefined,
500
+ "selected": undefined,
501
+ }
502
+ }
503
+ accessibilityValue={
504
+ {
505
+ "max": undefined,
506
+ "min": undefined,
507
+ "now": undefined,
508
+ "text": undefined,
509
+ }
510
+ }
450
511
  accessible={true}
451
512
  collapsable={false}
452
513
  focusable={true}
@@ -462,8 +523,8 @@ exports[`test text-bubble given the visualState is DEFAULT return a light-blue c
462
523
  >
463
524
  <RNSVGSvgView
464
525
  align="xMidYMid"
465
- bbHeight={24}
466
- bbWidth={24}
526
+ bbHeight="24"
527
+ bbWidth="24"
467
528
  fill="none"
468
529
  focusable={false}
469
530
  height={24}
@@ -505,7 +566,12 @@ exports[`test text-bubble given the visualState is DEFAULT return a light-blue c
505
566
  "strokeLinejoin",
506
567
  ]
507
568
  }
508
- stroke={4279837036}
569
+ stroke={
570
+ {
571
+ "payload": 4279837036,
572
+ "type": 0,
573
+ }
574
+ }
509
575
  strokeLinecap={1}
510
576
  strokeLinejoin={1}
511
577
  strokeWidth="2"
@@ -525,6 +591,23 @@ exports[`test text-bubble given the visualState is DEFAULT return a light-blue c
525
591
  }
526
592
  >
527
593
  <View
594
+ accessibilityState={
595
+ {
596
+ "busy": undefined,
597
+ "checked": undefined,
598
+ "disabled": undefined,
599
+ "expanded": undefined,
600
+ "selected": undefined,
601
+ }
602
+ }
603
+ accessibilityValue={
604
+ {
605
+ "max": undefined,
606
+ "min": undefined,
607
+ "now": undefined,
608
+ "text": undefined,
609
+ }
610
+ }
528
611
  accessible={true}
529
612
  collapsable={false}
530
613
  focusable={true}
@@ -540,8 +623,8 @@ exports[`test text-bubble given the visualState is DEFAULT return a light-blue c
540
623
  >
541
624
  <RNSVGSvgView
542
625
  align="xMidYMid"
543
- bbHeight={24}
544
- bbWidth={24}
626
+ bbHeight="24"
627
+ bbWidth="24"
545
628
  fill="none"
546
629
  focusable={false}
547
630
  height={24}
@@ -583,7 +666,12 @@ exports[`test text-bubble given the visualState is DEFAULT return a light-blue c
583
666
  "strokeLinejoin",
584
667
  ]
585
668
  }
586
- stroke={4279837036}
669
+ stroke={
670
+ {
671
+ "payload": 4279837036,
672
+ "type": 0,
673
+ }
674
+ }
587
675
  strokeLinecap={1}
588
676
  strokeLinejoin={1}
589
677
  strokeWidth="2"
@@ -792,6 +880,23 @@ exports[`test text-bubble given the visualState is ERROR return a red colored te
792
880
  }
793
881
  >
794
882
  <View
883
+ accessibilityState={
884
+ {
885
+ "busy": undefined,
886
+ "checked": undefined,
887
+ "disabled": undefined,
888
+ "expanded": undefined,
889
+ "selected": undefined,
890
+ }
891
+ }
892
+ accessibilityValue={
893
+ {
894
+ "max": undefined,
895
+ "min": undefined,
896
+ "now": undefined,
897
+ "text": undefined,
898
+ }
899
+ }
795
900
  accessible={true}
796
901
  collapsable={false}
797
902
  focusable={true}
@@ -807,8 +912,8 @@ exports[`test text-bubble given the visualState is ERROR return a red colored te
807
912
  >
808
913
  <RNSVGSvgView
809
914
  align="xMidYMid"
810
- bbHeight={24}
811
- bbWidth={24}
915
+ bbHeight="24"
916
+ bbWidth="24"
812
917
  fill="none"
813
918
  focusable={false}
814
919
  height={24}
@@ -850,7 +955,12 @@ exports[`test text-bubble given the visualState is ERROR return a red colored te
850
955
  "strokeLinejoin",
851
956
  ]
852
957
  }
853
- stroke={4294695385}
958
+ stroke={
959
+ {
960
+ "payload": 4294695385,
961
+ "type": 0,
962
+ }
963
+ }
854
964
  strokeLinecap={1}
855
965
  strokeLinejoin={1}
856
966
  strokeWidth="2"
@@ -870,6 +980,23 @@ exports[`test text-bubble given the visualState is ERROR return a red colored te
870
980
  }
871
981
  >
872
982
  <View
983
+ accessibilityState={
984
+ {
985
+ "busy": undefined,
986
+ "checked": undefined,
987
+ "disabled": undefined,
988
+ "expanded": undefined,
989
+ "selected": undefined,
990
+ }
991
+ }
992
+ accessibilityValue={
993
+ {
994
+ "max": undefined,
995
+ "min": undefined,
996
+ "now": undefined,
997
+ "text": undefined,
998
+ }
999
+ }
873
1000
  accessible={true}
874
1001
  collapsable={false}
875
1002
  focusable={true}
@@ -885,8 +1012,8 @@ exports[`test text-bubble given the visualState is ERROR return a red colored te
885
1012
  >
886
1013
  <RNSVGSvgView
887
1014
  align="xMidYMid"
888
- bbHeight={24}
889
- bbWidth={24}
1015
+ bbHeight="24"
1016
+ bbWidth="24"
890
1017
  fill="none"
891
1018
  focusable={false}
892
1019
  height={24}
@@ -928,7 +1055,12 @@ exports[`test text-bubble given the visualState is ERROR return a red colored te
928
1055
  "strokeLinejoin",
929
1056
  ]
930
1057
  }
931
- stroke={4294695385}
1058
+ stroke={
1059
+ {
1060
+ "payload": 4294695385,
1061
+ "type": 0,
1062
+ }
1063
+ }
932
1064
  strokeLinecap={1}
933
1065
  strokeLinejoin={1}
934
1066
  strokeWidth="2"
@@ -1135,6 +1267,23 @@ exports[`test text-bubble given the visualState is RECEIVE return a text-bubble
1135
1267
  }
1136
1268
  >
1137
1269
  <View
1270
+ accessibilityState={
1271
+ {
1272
+ "busy": undefined,
1273
+ "checked": undefined,
1274
+ "disabled": undefined,
1275
+ "expanded": undefined,
1276
+ "selected": undefined,
1277
+ }
1278
+ }
1279
+ accessibilityValue={
1280
+ {
1281
+ "max": undefined,
1282
+ "min": undefined,
1283
+ "now": undefined,
1284
+ "text": undefined,
1285
+ }
1286
+ }
1138
1287
  accessible={true}
1139
1288
  collapsable={false}
1140
1289
  focusable={true}
@@ -1150,8 +1299,8 @@ exports[`test text-bubble given the visualState is RECEIVE return a text-bubble
1150
1299
  >
1151
1300
  <RNSVGSvgView
1152
1301
  align="xMidYMid"
1153
- bbHeight={24}
1154
- bbWidth={24}
1302
+ bbHeight="24"
1303
+ bbWidth="24"
1155
1304
  fill="none"
1156
1305
  focusable={false}
1157
1306
  height={24}
@@ -1193,7 +1342,12 @@ exports[`test text-bubble given the visualState is RECEIVE return a text-bubble
1193
1342
  "strokeLinejoin",
1194
1343
  ]
1195
1344
  }
1196
- stroke={4279837036}
1345
+ stroke={
1346
+ {
1347
+ "payload": 4279837036,
1348
+ "type": 0,
1349
+ }
1350
+ }
1197
1351
  strokeLinecap={1}
1198
1352
  strokeLinejoin={1}
1199
1353
  strokeWidth="2"
@@ -1213,6 +1367,23 @@ exports[`test text-bubble given the visualState is RECEIVE return a text-bubble
1213
1367
  }
1214
1368
  >
1215
1369
  <View
1370
+ accessibilityState={
1371
+ {
1372
+ "busy": undefined,
1373
+ "checked": undefined,
1374
+ "disabled": undefined,
1375
+ "expanded": undefined,
1376
+ "selected": undefined,
1377
+ }
1378
+ }
1379
+ accessibilityValue={
1380
+ {
1381
+ "max": undefined,
1382
+ "min": undefined,
1383
+ "now": undefined,
1384
+ "text": undefined,
1385
+ }
1386
+ }
1216
1387
  accessible={true}
1217
1388
  collapsable={false}
1218
1389
  focusable={true}
@@ -1228,8 +1399,8 @@ exports[`test text-bubble given the visualState is RECEIVE return a text-bubble
1228
1399
  >
1229
1400
  <RNSVGSvgView
1230
1401
  align="xMidYMid"
1231
- bbHeight={24}
1232
- bbWidth={24}
1402
+ bbHeight="24"
1403
+ bbWidth="24"
1233
1404
  fill="none"
1234
1405
  focusable={false}
1235
1406
  height={24}
@@ -1271,7 +1442,12 @@ exports[`test text-bubble given the visualState is RECEIVE return a text-bubble
1271
1442
  "strokeLinejoin",
1272
1443
  ]
1273
1444
  }
1274
- stroke={4279837036}
1445
+ stroke={
1446
+ {
1447
+ "payload": 4279837036,
1448
+ "type": 0,
1449
+ }
1450
+ }
1275
1451
  strokeLinecap={1}
1276
1452
  strokeLinejoin={1}
1277
1453
  strokeWidth="2"
@@ -1476,6 +1652,23 @@ exports[`test text-bubble given the visualState is RECEIVE return a textBubble w
1476
1652
  }
1477
1653
  >
1478
1654
  <View
1655
+ accessibilityState={
1656
+ {
1657
+ "busy": undefined,
1658
+ "checked": undefined,
1659
+ "disabled": undefined,
1660
+ "expanded": undefined,
1661
+ "selected": undefined,
1662
+ }
1663
+ }
1664
+ accessibilityValue={
1665
+ {
1666
+ "max": undefined,
1667
+ "min": undefined,
1668
+ "now": undefined,
1669
+ "text": undefined,
1670
+ }
1671
+ }
1479
1672
  accessible={true}
1480
1673
  collapsable={false}
1481
1674
  focusable={true}
@@ -1491,8 +1684,8 @@ exports[`test text-bubble given the visualState is RECEIVE return a textBubble w
1491
1684
  >
1492
1685
  <RNSVGSvgView
1493
1686
  align="xMidYMid"
1494
- bbHeight={24}
1495
- bbWidth={24}
1687
+ bbHeight="24"
1688
+ bbWidth="24"
1496
1689
  fill="none"
1497
1690
  focusable={false}
1498
1691
  height={24}
@@ -1534,7 +1727,12 @@ exports[`test text-bubble given the visualState is RECEIVE return a textBubble w
1534
1727
  "strokeLinejoin",
1535
1728
  ]
1536
1729
  }
1537
- stroke={4279837036}
1730
+ stroke={
1731
+ {
1732
+ "payload": 4279837036,
1733
+ "type": 0,
1734
+ }
1735
+ }
1538
1736
  strokeLinecap={1}
1539
1737
  strokeLinejoin={1}
1540
1738
  strokeWidth="2"
@@ -1554,6 +1752,23 @@ exports[`test text-bubble given the visualState is RECEIVE return a textBubble w
1554
1752
  }
1555
1753
  >
1556
1754
  <View
1755
+ accessibilityState={
1756
+ {
1757
+ "busy": undefined,
1758
+ "checked": undefined,
1759
+ "disabled": undefined,
1760
+ "expanded": undefined,
1761
+ "selected": undefined,
1762
+ }
1763
+ }
1764
+ accessibilityValue={
1765
+ {
1766
+ "max": undefined,
1767
+ "min": undefined,
1768
+ "now": undefined,
1769
+ "text": undefined,
1770
+ }
1771
+ }
1557
1772
  accessible={true}
1558
1773
  collapsable={false}
1559
1774
  focusable={true}
@@ -1569,8 +1784,8 @@ exports[`test text-bubble given the visualState is RECEIVE return a textBubble w
1569
1784
  >
1570
1785
  <RNSVGSvgView
1571
1786
  align="xMidYMid"
1572
- bbHeight={24}
1573
- bbWidth={24}
1787
+ bbHeight="24"
1788
+ bbWidth="24"
1574
1789
  fill="none"
1575
1790
  focusable={false}
1576
1791
  height={24}
@@ -1612,7 +1827,12 @@ exports[`test text-bubble given the visualState is RECEIVE return a textBubble w
1612
1827
  "strokeLinejoin",
1613
1828
  ]
1614
1829
  }
1615
- stroke={4279837036}
1830
+ stroke={
1831
+ {
1832
+ "payload": 4279837036,
1833
+ "type": 0,
1834
+ }
1835
+ }
1616
1836
  strokeLinecap={1}
1617
1837
  strokeLinejoin={1}
1618
1838
  strokeWidth="2"
@@ -1819,6 +2039,23 @@ exports[`test text-bubble given the visualState is WARNING return an orange colo
1819
2039
  }
1820
2040
  >
1821
2041
  <View
2042
+ accessibilityState={
2043
+ {
2044
+ "busy": undefined,
2045
+ "checked": undefined,
2046
+ "disabled": undefined,
2047
+ "expanded": undefined,
2048
+ "selected": undefined,
2049
+ }
2050
+ }
2051
+ accessibilityValue={
2052
+ {
2053
+ "max": undefined,
2054
+ "min": undefined,
2055
+ "now": undefined,
2056
+ "text": undefined,
2057
+ }
2058
+ }
1822
2059
  accessible={true}
1823
2060
  collapsable={false}
1824
2061
  focusable={true}
@@ -1834,8 +2071,8 @@ exports[`test text-bubble given the visualState is WARNING return an orange colo
1834
2071
  >
1835
2072
  <RNSVGSvgView
1836
2073
  align="xMidYMid"
1837
- bbHeight={24}
1838
- bbWidth={24}
2074
+ bbHeight="24"
2075
+ bbWidth="24"
1839
2076
  fill="none"
1840
2077
  focusable={false}
1841
2078
  height={24}
@@ -1877,7 +2114,12 @@ exports[`test text-bubble given the visualState is WARNING return an orange colo
1877
2114
  "strokeLinejoin",
1878
2115
  ]
1879
2116
  }
1880
- stroke={4294618180}
2117
+ stroke={
2118
+ {
2119
+ "payload": 4294618180,
2120
+ "type": 0,
2121
+ }
2122
+ }
1881
2123
  strokeLinecap={1}
1882
2124
  strokeLinejoin={1}
1883
2125
  strokeWidth="2"
@@ -1897,6 +2139,23 @@ exports[`test text-bubble given the visualState is WARNING return an orange colo
1897
2139
  }
1898
2140
  >
1899
2141
  <View
2142
+ accessibilityState={
2143
+ {
2144
+ "busy": undefined,
2145
+ "checked": undefined,
2146
+ "disabled": undefined,
2147
+ "expanded": undefined,
2148
+ "selected": undefined,
2149
+ }
2150
+ }
2151
+ accessibilityValue={
2152
+ {
2153
+ "max": undefined,
2154
+ "min": undefined,
2155
+ "now": undefined,
2156
+ "text": undefined,
2157
+ }
2158
+ }
1900
2159
  accessible={true}
1901
2160
  collapsable={false}
1902
2161
  focusable={true}
@@ -1912,8 +2171,8 @@ exports[`test text-bubble given the visualState is WARNING return an orange colo
1912
2171
  >
1913
2172
  <RNSVGSvgView
1914
2173
  align="xMidYMid"
1915
- bbHeight={24}
1916
- bbWidth={24}
2174
+ bbHeight="24"
2175
+ bbWidth="24"
1917
2176
  fill="none"
1918
2177
  focusable={false}
1919
2178
  height={24}
@@ -1955,7 +2214,12 @@ exports[`test text-bubble given the visualState is WARNING return an orange colo
1955
2214
  "strokeLinejoin",
1956
2215
  ]
1957
2216
  }
1958
- stroke={4294618180}
2217
+ stroke={
2218
+ {
2219
+ "payload": 4294618180,
2220
+ "type": 0,
2221
+ }
2222
+ }
1959
2223
  strokeLinecap={1}
1960
2224
  strokeLinejoin={1}
1961
2225
  strokeWidth="2"
@@ -2102,8 +2366,8 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2102
2366
  >
2103
2367
  <RNSVGSvgView
2104
2368
  align="xMidYMid"
2105
- bbHeight={26}
2106
- bbWidth={26}
2369
+ bbHeight="26"
2370
+ bbWidth="26"
2107
2371
  fill="none"
2108
2372
  focusable={false}
2109
2373
  height={26}
@@ -2145,7 +2409,12 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2145
2409
  "strokeLinejoin",
2146
2410
  ]
2147
2411
  }
2148
- stroke={4294010984}
2412
+ stroke={
2413
+ {
2414
+ "payload": 4294010984,
2415
+ "type": 0,
2416
+ }
2417
+ }
2149
2418
  strokeLinecap={1}
2150
2419
  strokeLinejoin={1}
2151
2420
  strokeWidth="2"
@@ -2223,6 +2492,23 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2223
2492
  }
2224
2493
  >
2225
2494
  <View
2495
+ accessibilityState={
2496
+ {
2497
+ "busy": undefined,
2498
+ "checked": undefined,
2499
+ "disabled": undefined,
2500
+ "expanded": undefined,
2501
+ "selected": undefined,
2502
+ }
2503
+ }
2504
+ accessibilityValue={
2505
+ {
2506
+ "max": undefined,
2507
+ "min": undefined,
2508
+ "now": undefined,
2509
+ "text": undefined,
2510
+ }
2511
+ }
2226
2512
  accessible={true}
2227
2513
  collapsable={false}
2228
2514
  focusable={true}
@@ -2238,8 +2524,8 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2238
2524
  >
2239
2525
  <RNSVGSvgView
2240
2526
  align="xMidYMid"
2241
- bbHeight={24}
2242
- bbWidth={24}
2527
+ bbHeight="24"
2528
+ bbWidth="24"
2243
2529
  fill="none"
2244
2530
  focusable={false}
2245
2531
  height={24}
@@ -2281,7 +2567,12 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2281
2567
  "strokeLinejoin",
2282
2568
  ]
2283
2569
  }
2284
- stroke={4294695385}
2570
+ stroke={
2571
+ {
2572
+ "payload": 4294695385,
2573
+ "type": 0,
2574
+ }
2575
+ }
2285
2576
  strokeLinecap={1}
2286
2577
  strokeLinejoin={1}
2287
2578
  strokeWidth="2"
@@ -2301,6 +2592,23 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2301
2592
  }
2302
2593
  >
2303
2594
  <View
2595
+ accessibilityState={
2596
+ {
2597
+ "busy": undefined,
2598
+ "checked": undefined,
2599
+ "disabled": undefined,
2600
+ "expanded": undefined,
2601
+ "selected": undefined,
2602
+ }
2603
+ }
2604
+ accessibilityValue={
2605
+ {
2606
+ "max": undefined,
2607
+ "min": undefined,
2608
+ "now": undefined,
2609
+ "text": undefined,
2610
+ }
2611
+ }
2304
2612
  accessible={true}
2305
2613
  collapsable={false}
2306
2614
  focusable={true}
@@ -2316,8 +2624,8 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2316
2624
  >
2317
2625
  <RNSVGSvgView
2318
2626
  align="xMidYMid"
2319
- bbHeight={24}
2320
- bbWidth={24}
2627
+ bbHeight="24"
2628
+ bbWidth="24"
2321
2629
  fill="none"
2322
2630
  focusable={false}
2323
2631
  height={24}
@@ -2359,7 +2667,12 @@ exports[`test text-bubble return a text bubble, that will be send, but does not
2359
2667
  "strokeLinejoin",
2360
2668
  ]
2361
2669
  }
2362
- stroke={4294695385}
2670
+ stroke={
2671
+ {
2672
+ "payload": 4294695385,
2673
+ "type": 0,
2674
+ }
2675
+ }
2363
2676
  strokeLinecap={1}
2364
2677
  strokeLinejoin={1}
2365
2678
  strokeWidth="2"