@tactics/toddle-styleguide 1.2.9 → 1.3.1

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 (267) hide show
  1. package/App.tsx +14 -1
  2. package/index.d.ts +2 -1
  3. package/index.tsx +2 -0
  4. package/package.json +1 -1
  5. package/src/components/atoms/backdrop/backdrop.component.d.ts +7 -4
  6. package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +18 -18
  7. package/src/components/atoms/calendar/calendar.component.d.ts +11 -6
  8. package/src/components/atoms/check-switch/check-switch.component.d.ts +3 -3
  9. package/src/components/atoms/footer/footer.component.d.ts +6 -6
  10. package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.d.ts +10 -2
  11. package/src/components/atoms/heading-components/heading1/heading1.component.d.ts +10 -2
  12. package/src/components/atoms/heading-components/heading2/heading2.component.d.ts +10 -2
  13. package/src/components/atoms/heading-components/heading3/heading3.component.d.ts +10 -2
  14. package/src/components/atoms/heading-components/heading4/heading4.component.d.ts +10 -2
  15. package/src/components/atoms/heading-components/index.d.ts +6 -6
  16. package/src/components/atoms/image-bubble/image-bubble.component.d.ts +9 -6
  17. package/src/components/atoms/increment-input/increment-input.component.d.ts +8 -4
  18. package/src/components/atoms/line/line.component.d.ts +12 -0
  19. package/src/components/atoms/line/line.component.tsx +23 -0
  20. package/src/components/atoms/line/line.preview.d.ts +1 -0
  21. package/src/components/atoms/line/line.preview.tsx +54 -0
  22. package/src/components/atoms/line/line.styles.d.ts +12 -0
  23. package/src/components/atoms/line/line.styles.js +10 -0
  24. package/src/components/atoms/logo/logo.component.d.ts +4 -4
  25. package/src/components/atoms/paragraph-components/index.d.ts +4 -4
  26. package/src/components/atoms/paragraph-components/paragraph/paragraph.component.d.ts +10 -2
  27. package/src/components/atoms/paragraph-components/small-text/small-text.component.d.ts +10 -2
  28. package/src/components/atoms/paragraph-components/tiny-text/tiny-text.component.d.ts +10 -2
  29. package/src/components/atoms/quick-message/quick-message.component.d.ts +10 -5
  30. package/src/components/atoms/quick-message/quick-message.styles.d.ts +16 -13
  31. package/src/components/atoms/split-container/split-container.component.d.ts +7 -4
  32. package/src/components/atoms/static-wave/static-wave.component.d.ts +11 -6
  33. package/src/components/atoms/text-input/__snapshots__/text-input.test.js.snap +38 -78
  34. package/src/components/atoms/text-input/text-input.component.d.ts +10 -6
  35. package/src/components/atoms/text-input/text-input.preview.d.ts +1 -1
  36. package/src/components/atoms/text-input/text-input.styles.d.ts +33 -25
  37. package/src/components/molecules/avatar/avatar.component.d.ts +18 -11
  38. package/src/components/molecules/blocked-message/blocked-message.component.d.ts +4 -2
  39. package/src/components/molecules/button/button.component.d.ts +20 -11
  40. package/src/components/molecules/calendar-select/calendar-select.component.d.ts +12 -7
  41. package/src/components/molecules/cancel-link/cancel-link.component.d.ts +4 -4
  42. package/src/components/molecules/checkbox/checkbox.component.d.ts +9 -5
  43. package/src/components/molecules/contact-role/contact-role.component.d.ts +6 -3
  44. package/src/components/molecules/date-input/date-input.component.d.ts +7 -4
  45. package/src/components/molecules/day/__snapshots__/day.test.js.snap +24 -24
  46. package/src/components/molecules/day/day.component.d.ts +6 -6
  47. package/src/components/molecules/day/day.styles.d.ts +34 -26
  48. package/src/components/molecules/default-select/default-select.component.d.ts +6 -3
  49. package/src/components/molecules/department_logo/department-logo.component.d.ts +5 -3
  50. package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +27 -36
  51. package/src/components/molecules/failed-to-send/failed-bubble.component.d.ts +11 -6
  52. package/src/components/molecules/failed-to-send/failed-bubble.component.tsx +40 -23
  53. package/src/components/molecules/failed-to-send/failed-bubble.styles.d.ts +9 -10
  54. package/src/components/molecules/failed-to-send/failed-bubble.styles.js +9 -6
  55. package/src/components/molecules/filter-range/filter-range.component.d.ts +14 -7
  56. package/src/components/molecules/filter-tab/filter-tab.component.d.ts +11 -7
  57. package/src/components/molecules/info/info.component.d.ts +4 -4
  58. package/src/components/molecules/language-button/language-button.component.d.ts +8 -4
  59. package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +64 -388
  60. package/src/components/molecules/message-input/message-input.component.d.ts +10 -7
  61. package/src/components/molecules/message-input/message-input.component.tsx +9 -9
  62. package/src/components/molecules/message-input/message-input.preview.tsx +2 -2
  63. package/src/components/molecules/message-input/message-input.styles.d.ts +13 -6
  64. package/src/components/molecules/message-input/message-input.styles.js +14 -6
  65. package/src/components/molecules/message-input/message-input.test.js +0 -4
  66. package/src/components/molecules/more-info-button/more-info-button.component.d.ts +8 -4
  67. package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +53 -68
  68. package/src/components/molecules/password-input/password-input.component.d.ts +9 -5
  69. package/src/components/molecules/password-input/password-input.styles.d.ts +27 -27
  70. package/src/components/molecules/pill/pill.component.d.ts +5 -5
  71. package/src/components/molecules/pressable-icon/pressable-icon.component.d.ts +10 -5
  72. package/src/components/molecules/quick-filter/quick-filter.component.d.ts +16 -9
  73. package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +20 -31
  74. package/src/components/molecules/search-input/search.component.d.ts +12 -7
  75. package/src/components/molecules/search-input/search.preview.d.ts +1 -1
  76. package/src/components/molecules/search-input/search.styles.d.ts +31 -31
  77. package/src/components/molecules/search-input/search.styles.js +0 -3
  78. package/src/components/molecules/select-link/select-link.component.d.ts +4 -4
  79. package/src/components/molecules/select-list-item/select-list-item.component.d.ts +13 -7
  80. package/src/components/molecules/select-picker/select-picker.component.d.ts +13 -8
  81. package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +240 -242
  82. package/src/components/molecules/send-bubble/send-text-bubble.component.d.ts +14 -10
  83. package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +32 -26
  84. package/src/components/molecules/send-bubble/send-text-bubble.styles.d.ts +59 -58
  85. package/src/components/molecules/send-bubble/send-text-bubble.styles.js +5 -11
  86. package/src/components/molecules/send-bubble/send-text-bubble.test.js +6 -17
  87. package/src/components/molecules/snackbar/snackbar.component.d.ts +5 -5
  88. package/src/components/molecules/swipe/swipe.component.d.ts +5 -5
  89. package/src/components/molecules/tag/tag.component.d.ts +11 -6
  90. package/src/components/molecules/time-picker/time-picker.component.d.ts +10 -5
  91. package/src/components/molecules/time-tracker/time-tracker.component.d.ts +10 -6
  92. package/src/components/molecules/timeline/__snapshots__/timeline.test.js.snap +4 -4
  93. package/src/components/molecules/timeline/timeline.component.d.ts +6 -3
  94. package/src/components/molecules/timeline/timeline.styles.d.ts +49 -39
  95. package/src/components/molecules/timestamp/__snapshots__/timestamp.test.js.snap +2 -1
  96. package/src/components/molecules/timestamp/timestamp.component.d.ts +4 -4
  97. package/src/components/molecules/wave-background/wave.component.d.ts +7 -2
  98. package/src/components/molecules/wide-button/wide-button.component.d.ts +11 -6
  99. package/src/components/organisms/child-list-item/child-list-item.component.d.ts +34 -18
  100. package/src/components/organisms/child-list-item/child-list-item.styles.d.ts +38 -35
  101. package/src/components/organisms/child-list-item/components/child-list-tag.component.d.ts +6 -3
  102. package/src/components/organisms/child-list-item/components/child-list-tag.styles.d.ts +12 -9
  103. package/src/components/organisms/contact-item/contact-item.component.d.ts +11 -6
  104. package/src/components/organisms/day-select/day-select.component.d.ts +10 -6
  105. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.d.ts +9 -0
  106. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.tsx +95 -0
  107. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.d.ts +13 -0
  108. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.js +17 -0
  109. package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.test.js +25 -0
  110. package/src/components/organisms/journal-entry/components/index.d.ts +2 -0
  111. package/src/components/organisms/journal-entry/components/index.ts +2 -0
  112. package/src/components/organisms/journal-entry/components/journal-entry-type/__snapshots__/journal-entry-type.test.js.snap +304 -0
  113. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.d.ts +16 -0
  114. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.tsx +60 -0
  115. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.d.ts +13 -0
  116. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.js +16 -0
  117. package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.test.js +51 -0
  118. package/src/components/organisms/journal-entry/journal-entry.component.d.ts +33 -0
  119. package/src/components/organisms/journal-entry/journal-entry.component.tsx +132 -0
  120. package/src/components/organisms/journal-entry/journal-entry.preview.d.ts +1 -0
  121. package/src/components/organisms/journal-entry/journal-entry.preview.tsx +213 -0
  122. package/src/components/organisms/journal-entry/journal-entry.styles.d.ts +26 -0
  123. package/src/components/organisms/journal-entry/journal-entry.styles.js +27 -0
  124. package/src/components/organisms/loading-indicator/animation-style.animate.d.ts +13 -3
  125. package/src/components/organisms/loading-indicator/dot.component.d.ts +3 -3
  126. package/src/components/organisms/loading-indicator/loading-indicator.component.d.ts +9 -2
  127. package/src/components/organisms/my-child-list-item/my-child-list-item.component.d.ts +16 -9
  128. package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +1 -2
  129. package/src/components/organisms/my-child-list-item/my-child-list-item.styles.d.ts +31 -31
  130. package/src/components/organisms/person-info-card/person-info-card.component.d.ts +18 -10
  131. package/src/components/organisms/tab-view/tab-view.component.d.ts +12 -8
  132. package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +858 -635
  133. package/src/components/organisms/text-bubble/text-bubble.component.d.ts +21 -15
  134. package/src/components/organisms/text-bubble/text-bubble.component.tsx +19 -27
  135. package/src/components/organisms/text-bubble/text-bubble.preview.tsx +66 -73
  136. package/src/components/organisms/text-bubble/text-bubble.styles.d.ts +16 -32
  137. package/src/components/organisms/text-bubble/text-bubble.styles.js +15 -34
  138. package/src/components/organisms/text-bubble/text-bubble.test.js +7 -7
  139. package/src/components/templates/modal/components/fade-panel.component.d.ts +16 -8
  140. package/src/components/templates/modal/modal.component.d.ts +14 -7
  141. package/src/components/templates/modal/modal.styles.d.ts +3 -0
  142. package/src/components/templates/modal/modal.styles.js +3 -0
  143. package/src/components/templates/popover/components/foreground/foreground.component.d.ts +4 -4
  144. package/src/components/templates/popover/components/foreground/foreground.component.tsx +1 -5
  145. package/src/components/templates/popover/components/foreground/foreground.styles.d.ts +2 -2
  146. package/src/components/templates/popover/components/foreground/foreground.styles.js +4 -4
  147. package/src/components/templates/popover/components/modal/close/close.component.d.ts +4 -4
  148. package/src/components/templates/popover/components/modal/heading/heading.component.d.ts +4 -4
  149. package/src/components/templates/popover/components/modal/modal.component.d.ts +17 -9
  150. package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.d.ts +5 -3
  151. package/src/components/templates/popover/popover.component.d.ts +15 -8
  152. package/src/components/templates/popover/popover.component.tsx +1 -2
  153. package/src/components/templates/popover/popover.styles.d.ts +3 -0
  154. package/src/components/templates/popover/popover.styles.js +1 -0
  155. package/src/components/templates/popover-action/popover-action.component.d.ts +8 -4
  156. package/src/components/templates/popover-action/popover-action.component.tsx +6 -1
  157. package/src/components/templates/popover-action/popover-action.styles.d.ts +4 -2
  158. package/src/components/templates/popover-action/popover-action.styles.js +4 -2
  159. package/src/context/loading-dots.context.d.ts +9 -6
  160. package/src/context/theme.context.d.ts +47 -47
  161. package/src/gradients/main/main.gradient.d.ts +4 -2
  162. package/src/icons/index.d.ts +7 -2
  163. package/src/icons/outline/calendar/calendar.icon.d.ts +2 -2
  164. package/src/icons/outline/chat/chat.icon.d.ts +2 -2
  165. package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +2 -2
  166. package/src/icons/outline/check-circle/check-circle.icon.d.ts +5 -2
  167. package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +5 -2
  168. package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +5 -2
  169. package/src/icons/outline/clock/clock.icon.d.ts +2 -2
  170. package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +5 -2
  171. package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +5 -2
  172. package/src/icons/outline/document-text/document-text.icon.d.ts +5 -2
  173. package/src/icons/outline/exclamation/exclamation.icon.d.ts +5 -2
  174. package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +5 -2
  175. package/src/icons/outline/eye/eye.icon.d.ts +2 -2
  176. package/src/icons/outline/eye-off/eye-off.icon.d.ts +2 -2
  177. package/src/icons/outline/filter/filter.icon.d.ts +2 -2
  178. package/src/icons/outline/information-circle/information-circle.icon.d.ts +5 -2
  179. package/src/icons/outline/logout/logout.icon.d.ts +2 -2
  180. package/src/icons/outline/mail/mail.icon.d.ts +2 -2
  181. package/src/icons/outline/mail-open/mail-open.icon.d.ts +2 -2
  182. package/src/icons/outline/menu/menu.icon.d.ts +2 -2
  183. package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +5 -2
  184. package/src/icons/outline/office-building/office-building.icon.d.ts +5 -2
  185. package/src/icons/outline/outline.d.ts +6 -2
  186. package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +5 -2
  187. package/src/icons/outline/paperclip/paperclip.icon.d.ts +5 -2
  188. package/src/icons/outline/pencil/pencil.icon.d.ts +2 -2
  189. package/src/icons/outline/phone/phone.icon.d.ts +2 -2
  190. package/src/icons/outline/plus/plus.icon.d.ts +2 -2
  191. package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +5 -2
  192. package/src/icons/outline/qrcode/qrcode.icon.d.ts +2 -2
  193. package/src/icons/outline/refresh/refresh.icon.d.ts +2 -2
  194. package/src/icons/outline/search/search.icon.d.ts +2 -2
  195. package/src/icons/outline/selector/selector.icon.d.ts +2 -2
  196. package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +5 -2
  197. package/src/icons/outline/status-online/status-online.icon.d.ts +5 -2
  198. package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +2 -2
  199. package/src/icons/outline/trash/trash.icon.d.ts +2 -2
  200. package/src/icons/outline/user/user.icon.d.ts +2 -2
  201. package/src/icons/outline/user-group/user-group.icon.d.ts +5 -2
  202. package/src/icons/outline/users/users.icon.d.ts +2 -2
  203. package/src/icons/outline/xmark/xmark.icon.d.ts +2 -2
  204. package/src/icons/solid/calendar/calendar.icon.d.ts +2 -2
  205. package/src/icons/solid/chat/chat.icon.d.ts +2 -2
  206. package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +2 -2
  207. package/src/icons/solid/check-circle/check-circle.icon.d.ts +5 -2
  208. package/src/icons/solid/chevron-left/chevron-left.icon.d.ts +5 -2
  209. package/src/icons/solid/chevron-right/chevron-right.icon.d.ts +5 -2
  210. package/src/icons/solid/clock/clock-solid.icon.d.ts +2 -2
  211. package/src/icons/solid/cloud-download/cloud-download.icon.d.ts +5 -2
  212. package/src/icons/solid/currency-euro/currency-euro.icon.d.ts +5 -2
  213. package/src/icons/solid/document-text/document-text-solid.icon.d.ts +5 -2
  214. package/src/icons/solid/exclamation/exclamation.icon.d.ts +5 -2
  215. package/src/icons/solid/exclamation-circle/exclamation-circle.icon.d.ts +5 -2
  216. package/src/icons/solid/eye/eye.icon.d.ts +2 -2
  217. package/src/icons/solid/eye-off/eye-off.icon.d.ts +2 -2
  218. package/src/icons/solid/filter/filter.icon.d.ts +2 -2
  219. package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +5 -2
  220. package/src/icons/solid/logout/logout.icon.d.ts +2 -2
  221. package/src/icons/solid/mail/mail.icon.d.ts +2 -2
  222. package/src/icons/solid/mail-open/mail-open.icon.d.ts +2 -2
  223. package/src/icons/solid/menu/menu.icon.d.ts +2 -2
  224. package/src/icons/solid/minus-sm/minus-sm.icon.d.ts +5 -2
  225. package/src/icons/solid/office-building/office-building.icon.d.ts +5 -2
  226. package/src/icons/solid/paper-airplane/paper-airplane.icon.d.ts +5 -2
  227. package/src/icons/solid/paperclip/paperclip.icon.d.ts +5 -2
  228. package/src/icons/solid/pencil/pencil-solid.icon.d.ts +2 -2
  229. package/src/icons/solid/phone/phone-solid.icon.d.ts +2 -2
  230. package/src/icons/solid/plus/plus.icon.d.ts +2 -2
  231. package/src/icons/solid/plus-sm/plus-sm.icon.d.ts +5 -2
  232. package/src/icons/solid/qrcode/qrcode.icon.d.ts +2 -2
  233. package/src/icons/solid/refresh/refresh-solid.icon.d.ts +2 -2
  234. package/src/icons/solid/search/search.icon.d.ts +2 -2
  235. package/src/icons/solid/selector/selector.icon.d.ts +2 -2
  236. package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.d.ts +5 -2
  237. package/src/icons/solid/solid.d.ts +6 -2
  238. package/src/icons/solid/status-online/status-online-solid.icon.d.ts +5 -2
  239. package/src/icons/solid/thumb-up/thumb-up.icon.d.ts +2 -2
  240. package/src/icons/solid/trash/trash-solid.icon.d.ts +2 -2
  241. package/src/icons/solid/user/user.icon.d.ts +2 -2
  242. package/src/icons/solid/user-group/user-group.icon.d.ts +5 -2
  243. package/src/icons/solid/users/users-solid.icon.d.ts +2 -2
  244. package/src/icons/solid/xmark/xmark.icon.d.ts +2 -2
  245. package/src/interfaces/icon.interface.d.ts +5 -5
  246. package/src/models/hex-color.model.d.ts +4 -4
  247. package/src/models/initials.model.d.ts +5 -5
  248. package/src/theme/font/font.d.ts +70 -70
  249. package/src/theme/font/index.d.ts +3 -3
  250. package/src/theme/provider/index.d.ts +3 -3
  251. package/src/theme/provider/parent.theme.d.ts +45 -45
  252. package/src/theme/provider/staff-member.theme.d.ts +45 -45
  253. package/src/theme/responsive/index.d.ts +5 -2
  254. package/src/theme/scale/index.d.ts +10 -10
  255. package/src/types/bubble-alignment.enum.d.ts +2 -2
  256. package/src/types/icontype.type.d.ts +41 -1
  257. package/src/types/keyboard-types.enum.d.ts +7 -7
  258. package/src/types/loading-dots.type.d.ts +6 -6
  259. package/src/types/size.enum.d.ts +3 -3
  260. package/src/types/text-properties.type.d.ts +8 -8
  261. package/src/types/visual-state.enum.d.ts +5 -5
  262. package/src/utilities/color-handler/color-handler.d.ts +6 -2
  263. package/src/utilities/toddle-datetime/interfaces/duration.interface.d.ts +18 -18
  264. package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.d.ts +16 -16
  265. package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +103 -46
  266. package/src/utilities/toddle-datetime/types/duration.type.d.ts +1 -1
  267. package/src/utilities/toddle-datetime/types/toddle-datetime.type.d.ts +11 -2
@@ -1,12 +1,15 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
- exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
3
+ exports[`Failed text bubble test shows a DEFAULT text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
4
4
  <View>
5
5
  <View
6
6
  style={
7
7
  [
8
8
  {
9
- "borderRadius": 24,
9
+ "borderBottomLeftRadius": 8,
10
+ "borderBottomRightRadius": 24,
11
+ "borderTopLeftRadius": 24,
12
+ "borderTopRightRadius": 24,
10
13
  "justifyContent": "center",
11
14
  "overflow": "hidden",
12
15
  "paddingBottom": 16,
@@ -19,19 +22,13 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
19
22
  "backgroundColor": "#E0E8F9",
20
23
  },
21
24
  false,
22
- false,
23
- {
24
- "borderBottomLeftRadius": 8,
25
- "borderBottomRightRadius": 32,
26
- },
27
- false,
28
25
  ]
29
26
  }
30
27
  >
31
28
  <View
32
29
  collapsable={false}
33
30
  forwardedRef={[Function]}
34
- handlerTag={3}
31
+ handlerTag={1}
35
32
  handlerType="PanGestureHandler"
36
33
  onGestureHandlerEvent={[Function]}
37
34
  onGestureHandlerStateChange={[Function]}
@@ -135,8 +132,8 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
135
132
  },
136
133
  ]
137
134
  }
138
- vbHeight={23}
139
- vbWidth={23}
135
+ vbHeight={17}
136
+ vbWidth={16}
140
137
  width={24}
141
138
  >
142
139
  <RNSVGGroup
@@ -148,24 +145,32 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
148
145
  }
149
146
  >
150
147
  <RNSVGPath
151
- d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
148
+ d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
149
+ fill={
150
+ {
151
+ "payload": 4279837036,
152
+ "type": 0,
153
+ }
154
+ }
152
155
  propList={
153
156
  [
154
- "stroke",
155
- "strokeWidth",
156
- "strokeLinecap",
157
- "strokeLinejoin",
157
+ "fill",
158
158
  ]
159
159
  }
160
- stroke={
160
+ />
161
+ <RNSVGPath
162
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
163
+ fill={
161
164
  {
162
165
  "payload": 4279837036,
163
166
  "type": 0,
164
167
  }
165
168
  }
166
- strokeLinecap={1}
167
- strokeLinejoin={1}
168
- strokeWidth="2"
169
+ propList={
170
+ [
171
+ "fill",
172
+ ]
173
+ }
169
174
  />
170
175
  </RNSVGGroup>
171
176
  </RNSVGSvgView>
@@ -236,8 +241,8 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
236
241
  },
237
242
  ]
238
243
  }
239
- vbHeight={22}
240
- vbWidth={21}
244
+ vbHeight={18}
245
+ vbWidth={17}
241
246
  width={24}
242
247
  >
243
248
  <RNSVGGroup
@@ -249,24 +254,21 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
249
254
  }
250
255
  >
251
256
  <RNSVGPath
252
- d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
253
- propList={
254
- [
255
- "stroke",
256
- "strokeWidth",
257
- "strokeLinecap",
258
- "strokeLinejoin",
259
- ]
260
- }
261
- stroke={
257
+ clipRule={0}
258
+ d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
259
+ fill={
262
260
  {
263
261
  "payload": 4279837036,
264
262
  "type": 0,
265
263
  }
266
264
  }
267
- strokeLinecap={1}
268
- strokeLinejoin={1}
269
- strokeWidth="2"
265
+ fillRule={0}
266
+ propList={
267
+ [
268
+ "fill",
269
+ "fillRule",
270
+ ]
271
+ }
270
272
  />
271
273
  </RNSVGGroup>
272
274
  </RNSVGSvgView>
@@ -280,7 +282,7 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
280
282
  <View
281
283
  collapsable={false}
282
284
  forwardedRef={[Function]}
283
- handlerTag={4}
285
+ handlerTag={2}
284
286
  handlerType="TapGestureHandler"
285
287
  onGestureHandlerEvent={[Function]}
286
288
  onGestureHandlerStateChange={[Function]}
@@ -319,7 +321,6 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
319
321
  "backgroundColor": "#E0E8F9",
320
322
  },
321
323
  false,
322
- false,
323
324
  ],
324
325
  ]
325
326
  }
@@ -332,13 +333,16 @@ exports[`Failed text bubble test shows a DEFAULT RECEIVED text bubble that is sw
332
333
  </View>
333
334
  `;
334
335
 
335
- exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
336
+ exports[`Failed text bubble test shows a DEFAULT text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 2`] = `
336
337
  <View>
337
338
  <View
338
339
  style={
339
340
  [
340
341
  {
341
- "borderRadius": 24,
342
+ "borderBottomLeftRadius": 8,
343
+ "borderBottomRightRadius": 24,
344
+ "borderTopLeftRadius": 24,
345
+ "borderTopRightRadius": 24,
342
346
  "justifyContent": "center",
343
347
  "overflow": "hidden",
344
348
  "paddingBottom": 16,
@@ -351,19 +355,13 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
351
355
  "backgroundColor": "#E0E8F9",
352
356
  },
353
357
  false,
354
- false,
355
- false,
356
- {
357
- "borderBottomLeftRadius": 32,
358
- "borderBottomRightRadius": 8,
359
- },
360
358
  ]
361
359
  }
362
360
  >
363
361
  <View
364
362
  collapsable={false}
365
363
  forwardedRef={[Function]}
366
- handlerTag={1}
364
+ handlerTag={3}
367
365
  handlerType="PanGestureHandler"
368
366
  onGestureHandlerEvent={[Function]}
369
367
  onGestureHandlerStateChange={[Function]}
@@ -467,8 +465,8 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
467
465
  },
468
466
  ]
469
467
  }
470
- vbHeight={23}
471
- vbWidth={23}
468
+ vbHeight={17}
469
+ vbWidth={16}
472
470
  width={24}
473
471
  >
474
472
  <RNSVGGroup
@@ -480,24 +478,32 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
480
478
  }
481
479
  >
482
480
  <RNSVGPath
483
- d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
481
+ d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
482
+ fill={
483
+ {
484
+ "payload": 4279837036,
485
+ "type": 0,
486
+ }
487
+ }
484
488
  propList={
485
489
  [
486
- "stroke",
487
- "strokeWidth",
488
- "strokeLinecap",
489
- "strokeLinejoin",
490
+ "fill",
490
491
  ]
491
492
  }
492
- stroke={
493
+ />
494
+ <RNSVGPath
495
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
496
+ fill={
493
497
  {
494
498
  "payload": 4279837036,
495
499
  "type": 0,
496
500
  }
497
501
  }
498
- strokeLinecap={1}
499
- strokeLinejoin={1}
500
- strokeWidth="2"
502
+ propList={
503
+ [
504
+ "fill",
505
+ ]
506
+ }
501
507
  />
502
508
  </RNSVGGroup>
503
509
  </RNSVGSvgView>
@@ -568,8 +574,8 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
568
574
  },
569
575
  ]
570
576
  }
571
- vbHeight={22}
572
- vbWidth={21}
577
+ vbHeight={18}
578
+ vbWidth={17}
573
579
  width={24}
574
580
  >
575
581
  <RNSVGGroup
@@ -581,24 +587,21 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
581
587
  }
582
588
  >
583
589
  <RNSVGPath
584
- d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
585
- propList={
586
- [
587
- "stroke",
588
- "strokeWidth",
589
- "strokeLinecap",
590
- "strokeLinejoin",
591
- ]
592
- }
593
- stroke={
590
+ clipRule={0}
591
+ d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
592
+ fill={
594
593
  {
595
594
  "payload": 4279837036,
596
595
  "type": 0,
597
596
  }
598
597
  }
599
- strokeLinecap={1}
600
- strokeLinejoin={1}
601
- strokeWidth="2"
598
+ fillRule={0}
599
+ propList={
600
+ [
601
+ "fill",
602
+ "fillRule",
603
+ ]
604
+ }
602
605
  />
603
606
  </RNSVGGroup>
604
607
  </RNSVGSvgView>
@@ -612,7 +615,7 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
612
615
  <View
613
616
  collapsable={false}
614
617
  forwardedRef={[Function]}
615
- handlerTag={2}
618
+ handlerTag={4}
616
619
  handlerType="TapGestureHandler"
617
620
  onGestureHandlerEvent={[Function]}
618
621
  onGestureHandlerStateChange={[Function]}
@@ -651,7 +654,6 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
651
654
  "backgroundColor": "#E0E8F9",
652
655
  },
653
656
  false,
654
- false,
655
657
  ],
656
658
  ]
657
659
  }
@@ -664,13 +666,16 @@ exports[`Failed text bubble test shows a DEFAULT SENT text bubble that is swipea
664
666
  </View>
665
667
  `;
666
668
 
667
- exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
669
+ exports[`Failed text bubble test shows a WARNING text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
668
670
  <View>
669
671
  <View
670
672
  style={
671
673
  [
672
674
  {
673
- "borderRadius": 24,
675
+ "borderBottomLeftRadius": 8,
676
+ "borderBottomRightRadius": 24,
677
+ "borderTopLeftRadius": 24,
678
+ "borderTopRightRadius": 24,
674
679
  "justifyContent": "center",
675
680
  "overflow": "hidden",
676
681
  "paddingBottom": 16,
@@ -681,21 +686,15 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
681
686
  },
682
687
  false,
683
688
  {
684
- "backgroundColor": "#FEEFDB",
685
- },
686
- false,
687
- {
688
- "borderBottomLeftRadius": 8,
689
- "borderBottomRightRadius": 32,
689
+ "backgroundColor": "#FFD398",
690
690
  },
691
- false,
692
691
  ]
693
692
  }
694
693
  >
695
694
  <View
696
695
  collapsable={false}
697
696
  forwardedRef={[Function]}
698
- handlerTag={7}
697
+ handlerTag={5}
699
698
  handlerType="PanGestureHandler"
700
699
  onGestureHandlerEvent={[Function]}
701
700
  onGestureHandlerStateChange={[Function]}
@@ -799,8 +798,8 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
799
798
  },
800
799
  ]
801
800
  }
802
- vbHeight={23}
803
- vbWidth={23}
801
+ vbHeight={17}
802
+ vbWidth={16}
804
803
  width={24}
805
804
  >
806
805
  <RNSVGGroup
@@ -812,24 +811,32 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
812
811
  }
813
812
  >
814
813
  <RNSVGPath
815
- d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
814
+ d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
815
+ fill={
816
+ {
817
+ "payload": 4294618180,
818
+ "type": 0,
819
+ }
820
+ }
816
821
  propList={
817
822
  [
818
- "stroke",
819
- "strokeWidth",
820
- "strokeLinecap",
821
- "strokeLinejoin",
823
+ "fill",
822
824
  ]
823
825
  }
824
- stroke={
826
+ />
827
+ <RNSVGPath
828
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
829
+ fill={
825
830
  {
826
831
  "payload": 4294618180,
827
832
  "type": 0,
828
833
  }
829
834
  }
830
- strokeLinecap={1}
831
- strokeLinejoin={1}
832
- strokeWidth="2"
835
+ propList={
836
+ [
837
+ "fill",
838
+ ]
839
+ }
833
840
  />
834
841
  </RNSVGGroup>
835
842
  </RNSVGSvgView>
@@ -900,8 +907,8 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
900
907
  },
901
908
  ]
902
909
  }
903
- vbHeight={22}
904
- vbWidth={21}
910
+ vbHeight={18}
911
+ vbWidth={17}
905
912
  width={24}
906
913
  >
907
914
  <RNSVGGroup
@@ -913,24 +920,21 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
913
920
  }
914
921
  >
915
922
  <RNSVGPath
916
- d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
917
- propList={
918
- [
919
- "stroke",
920
- "strokeWidth",
921
- "strokeLinecap",
922
- "strokeLinejoin",
923
- ]
924
- }
925
- stroke={
923
+ clipRule={0}
924
+ d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
925
+ fill={
926
926
  {
927
927
  "payload": 4294618180,
928
928
  "type": 0,
929
929
  }
930
930
  }
931
- strokeLinecap={1}
932
- strokeLinejoin={1}
933
- strokeWidth="2"
931
+ fillRule={0}
932
+ propList={
933
+ [
934
+ "fill",
935
+ "fillRule",
936
+ ]
937
+ }
934
938
  />
935
939
  </RNSVGGroup>
936
940
  </RNSVGSvgView>
@@ -944,7 +948,7 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
944
948
  <View
945
949
  collapsable={false}
946
950
  forwardedRef={[Function]}
947
- handlerTag={8}
951
+ handlerTag={6}
948
952
  handlerType="TapGestureHandler"
949
953
  onGestureHandlerEvent={[Function]}
950
954
  onGestureHandlerStateChange={[Function]}
@@ -970,7 +974,7 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
970
974
  },
971
975
  ],
972
976
  {
973
- "color": "#FAAC44",
977
+ "color": "#1F2933",
974
978
  "textAlign": undefined,
975
979
  "width": "100%",
976
980
  },
@@ -981,9 +985,8 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
981
985
  },
982
986
  false,
983
987
  {
984
- "backgroundColor": "#FEEFDB",
988
+ "backgroundColor": "#FFD398",
985
989
  },
986
- false,
987
990
  ],
988
991
  ]
989
992
  }
@@ -996,13 +999,16 @@ exports[`Failed text bubble test shows a WARNING RECEIVED text bubble that is sw
996
999
  </View>
997
1000
  `;
998
1001
 
999
- exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
1002
+ exports[`Failed text bubble test shows a WARNING text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 2`] = `
1000
1003
  <View>
1001
1004
  <View
1002
1005
  style={
1003
1006
  [
1004
1007
  {
1005
- "borderRadius": 24,
1008
+ "borderBottomLeftRadius": 8,
1009
+ "borderBottomRightRadius": 24,
1010
+ "borderTopLeftRadius": 24,
1011
+ "borderTopRightRadius": 24,
1006
1012
  "justifyContent": "center",
1007
1013
  "overflow": "hidden",
1008
1014
  "paddingBottom": 16,
@@ -1013,13 +1019,7 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1013
1019
  },
1014
1020
  false,
1015
1021
  {
1016
- "backgroundColor": "#FEEFDB",
1017
- },
1018
- false,
1019
- false,
1020
- {
1021
- "borderBottomLeftRadius": 32,
1022
- "borderBottomRightRadius": 8,
1022
+ "backgroundColor": "#FFD398",
1023
1023
  },
1024
1024
  ]
1025
1025
  }
@@ -1027,7 +1027,7 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1027
1027
  <View
1028
1028
  collapsable={false}
1029
1029
  forwardedRef={[Function]}
1030
- handlerTag={5}
1030
+ handlerTag={7}
1031
1031
  handlerType="PanGestureHandler"
1032
1032
  onGestureHandlerEvent={[Function]}
1033
1033
  onGestureHandlerStateChange={[Function]}
@@ -1131,8 +1131,8 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1131
1131
  },
1132
1132
  ]
1133
1133
  }
1134
- vbHeight={23}
1135
- vbWidth={23}
1134
+ vbHeight={17}
1135
+ vbWidth={16}
1136
1136
  width={24}
1137
1137
  >
1138
1138
  <RNSVGGroup
@@ -1144,24 +1144,32 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1144
1144
  }
1145
1145
  >
1146
1146
  <RNSVGPath
1147
- d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
1147
+ d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
1148
+ fill={
1149
+ {
1150
+ "payload": 4294618180,
1151
+ "type": 0,
1152
+ }
1153
+ }
1148
1154
  propList={
1149
1155
  [
1150
- "stroke",
1151
- "strokeWidth",
1152
- "strokeLinecap",
1153
- "strokeLinejoin",
1156
+ "fill",
1154
1157
  ]
1155
1158
  }
1156
- stroke={
1159
+ />
1160
+ <RNSVGPath
1161
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
1162
+ fill={
1157
1163
  {
1158
1164
  "payload": 4294618180,
1159
1165
  "type": 0,
1160
1166
  }
1161
1167
  }
1162
- strokeLinecap={1}
1163
- strokeLinejoin={1}
1164
- strokeWidth="2"
1168
+ propList={
1169
+ [
1170
+ "fill",
1171
+ ]
1172
+ }
1165
1173
  />
1166
1174
  </RNSVGGroup>
1167
1175
  </RNSVGSvgView>
@@ -1232,8 +1240,8 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1232
1240
  },
1233
1241
  ]
1234
1242
  }
1235
- vbHeight={22}
1236
- vbWidth={21}
1243
+ vbHeight={18}
1244
+ vbWidth={17}
1237
1245
  width={24}
1238
1246
  >
1239
1247
  <RNSVGGroup
@@ -1245,24 +1253,21 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1245
1253
  }
1246
1254
  >
1247
1255
  <RNSVGPath
1248
- d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
1249
- propList={
1250
- [
1251
- "stroke",
1252
- "strokeWidth",
1253
- "strokeLinecap",
1254
- "strokeLinejoin",
1255
- ]
1256
- }
1257
- stroke={
1256
+ clipRule={0}
1257
+ d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
1258
+ fill={
1258
1259
  {
1259
1260
  "payload": 4294618180,
1260
1261
  "type": 0,
1261
1262
  }
1262
1263
  }
1263
- strokeLinecap={1}
1264
- strokeLinejoin={1}
1265
- strokeWidth="2"
1264
+ fillRule={0}
1265
+ propList={
1266
+ [
1267
+ "fill",
1268
+ "fillRule",
1269
+ ]
1270
+ }
1266
1271
  />
1267
1272
  </RNSVGGroup>
1268
1273
  </RNSVGSvgView>
@@ -1276,7 +1281,7 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1276
1281
  <View
1277
1282
  collapsable={false}
1278
1283
  forwardedRef={[Function]}
1279
- handlerTag={6}
1284
+ handlerTag={8}
1280
1285
  handlerType="TapGestureHandler"
1281
1286
  onGestureHandlerEvent={[Function]}
1282
1287
  onGestureHandlerStateChange={[Function]}
@@ -1302,7 +1307,7 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1302
1307
  },
1303
1308
  ],
1304
1309
  {
1305
- "color": "#FAAC44",
1310
+ "color": "#1F2933",
1306
1311
  "textAlign": undefined,
1307
1312
  "width": "100%",
1308
1313
  },
@@ -1313,9 +1318,8 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1313
1318
  },
1314
1319
  false,
1315
1320
  {
1316
- "backgroundColor": "#FEEFDB",
1321
+ "backgroundColor": "#FFD398",
1317
1322
  },
1318
- false,
1319
1323
  ],
1320
1324
  ]
1321
1325
  }
@@ -1328,13 +1332,16 @@ exports[`Failed text bubble test shows a WARNING SENT text bubble that is swipea
1328
1332
  </View>
1329
1333
  `;
1330
1334
 
1331
- exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
1335
+ exports[`Failed text bubble test shows an ERROR text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
1332
1336
  <View>
1333
1337
  <View
1334
1338
  style={
1335
1339
  [
1336
1340
  {
1337
- "borderRadius": 24,
1341
+ "borderBottomLeftRadius": 8,
1342
+ "borderBottomRightRadius": 24,
1343
+ "borderTopLeftRadius": 24,
1344
+ "borderTopRightRadius": 24,
1338
1345
  "justifyContent": "center",
1339
1346
  "overflow": "hidden",
1340
1347
  "paddingBottom": 16,
@@ -1345,21 +1352,13 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1345
1352
  },
1346
1353
  false,
1347
1354
  false,
1348
- {
1349
- "backgroundColor": "#F16868",
1350
- },
1351
- {
1352
- "borderBottomLeftRadius": 8,
1353
- "borderBottomRightRadius": 32,
1354
- },
1355
- false,
1356
1355
  ]
1357
1356
  }
1358
1357
  >
1359
1358
  <View
1360
1359
  collapsable={false}
1361
1360
  forwardedRef={[Function]}
1362
- handlerTag={11}
1361
+ handlerTag={9}
1363
1362
  handlerType="PanGestureHandler"
1364
1363
  onGestureHandlerEvent={[Function]}
1365
1364
  onGestureHandlerStateChange={[Function]}
@@ -1463,8 +1462,8 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1463
1462
  },
1464
1463
  ]
1465
1464
  }
1466
- vbHeight={23}
1467
- vbWidth={23}
1465
+ vbHeight={17}
1466
+ vbWidth={16}
1468
1467
  width={24}
1469
1468
  >
1470
1469
  <RNSVGGroup
@@ -1476,24 +1475,32 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1476
1475
  }
1477
1476
  >
1478
1477
  <RNSVGPath
1479
- d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
1478
+ d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
1479
+ fill={
1480
+ {
1481
+ "payload": 4279837036,
1482
+ "type": 0,
1483
+ }
1484
+ }
1480
1485
  propList={
1481
1486
  [
1482
- "stroke",
1483
- "strokeWidth",
1484
- "strokeLinecap",
1485
- "strokeLinejoin",
1487
+ "fill",
1486
1488
  ]
1487
1489
  }
1488
- stroke={
1490
+ />
1491
+ <RNSVGPath
1492
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
1493
+ fill={
1489
1494
  {
1490
- "payload": 4294695385,
1495
+ "payload": 4279837036,
1491
1496
  "type": 0,
1492
1497
  }
1493
1498
  }
1494
- strokeLinecap={1}
1495
- strokeLinejoin={1}
1496
- strokeWidth="2"
1499
+ propList={
1500
+ [
1501
+ "fill",
1502
+ ]
1503
+ }
1497
1504
  />
1498
1505
  </RNSVGGroup>
1499
1506
  </RNSVGSvgView>
@@ -1564,8 +1571,8 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1564
1571
  },
1565
1572
  ]
1566
1573
  }
1567
- vbHeight={22}
1568
- vbWidth={21}
1574
+ vbHeight={18}
1575
+ vbWidth={17}
1569
1576
  width={24}
1570
1577
  >
1571
1578
  <RNSVGGroup
@@ -1577,24 +1584,21 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1577
1584
  }
1578
1585
  >
1579
1586
  <RNSVGPath
1580
- d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
1581
- propList={
1582
- [
1583
- "stroke",
1584
- "strokeWidth",
1585
- "strokeLinecap",
1586
- "strokeLinejoin",
1587
- ]
1588
- }
1589
- stroke={
1587
+ clipRule={0}
1588
+ d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
1589
+ fill={
1590
1590
  {
1591
- "payload": 4294695385,
1591
+ "payload": 4279837036,
1592
1592
  "type": 0,
1593
1593
  }
1594
1594
  }
1595
- strokeLinecap={1}
1596
- strokeLinejoin={1}
1597
- strokeWidth="2"
1595
+ fillRule={0}
1596
+ propList={
1597
+ [
1598
+ "fill",
1599
+ "fillRule",
1600
+ ]
1601
+ }
1598
1602
  />
1599
1603
  </RNSVGGroup>
1600
1604
  </RNSVGSvgView>
@@ -1608,7 +1612,7 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1608
1612
  <View
1609
1613
  collapsable={false}
1610
1614
  forwardedRef={[Function]}
1611
- handlerTag={12}
1615
+ handlerTag={10}
1612
1616
  handlerType="TapGestureHandler"
1613
1617
  onGestureHandlerEvent={[Function]}
1614
1618
  onGestureHandlerStateChange={[Function]}
@@ -1634,7 +1638,7 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1634
1638
  },
1635
1639
  ],
1636
1640
  {
1637
- "color": "#FFFFFF",
1641
+ "color": "#1F2933",
1638
1642
  "textAlign": undefined,
1639
1643
  "width": "100%",
1640
1644
  },
@@ -1645,9 +1649,6 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1645
1649
  },
1646
1650
  false,
1647
1651
  false,
1648
- {
1649
- "backgroundColor": "#F16868",
1650
- },
1651
1652
  ],
1652
1653
  ]
1653
1654
  }
@@ -1660,13 +1661,16 @@ exports[`Failed text bubble test shows an ERROR RECEIVED text bubble that is swi
1660
1661
  </View>
1661
1662
  `;
1662
1663
 
1663
- exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 1`] = `
1664
+ exports[`Failed text bubble test shows an ERROR text bubble that is swipeable with edit and trash icon, which if we press them we can edit or delete the message 2`] = `
1664
1665
  <View>
1665
1666
  <View
1666
1667
  style={
1667
1668
  [
1668
1669
  {
1669
- "borderRadius": 24,
1670
+ "borderBottomLeftRadius": 8,
1671
+ "borderBottomRightRadius": 24,
1672
+ "borderTopLeftRadius": 24,
1673
+ "borderTopRightRadius": 24,
1670
1674
  "justifyContent": "center",
1671
1675
  "overflow": "hidden",
1672
1676
  "paddingBottom": 16,
@@ -1677,21 +1681,13 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1677
1681
  },
1678
1682
  false,
1679
1683
  false,
1680
- {
1681
- "backgroundColor": "#F16868",
1682
- },
1683
- false,
1684
- {
1685
- "borderBottomLeftRadius": 32,
1686
- "borderBottomRightRadius": 8,
1687
- },
1688
1684
  ]
1689
1685
  }
1690
1686
  >
1691
1687
  <View
1692
1688
  collapsable={false}
1693
1689
  forwardedRef={[Function]}
1694
- handlerTag={9}
1690
+ handlerTag={11}
1695
1691
  handlerType="PanGestureHandler"
1696
1692
  onGestureHandlerEvent={[Function]}
1697
1693
  onGestureHandlerStateChange={[Function]}
@@ -1795,8 +1791,8 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1795
1791
  },
1796
1792
  ]
1797
1793
  }
1798
- vbHeight={23}
1799
- vbWidth={23}
1794
+ vbHeight={17}
1795
+ vbWidth={16}
1800
1796
  width={24}
1801
1797
  >
1802
1798
  <RNSVGGroup
@@ -1808,24 +1804,32 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1808
1804
  }
1809
1805
  >
1810
1806
  <RNSVGPath
1811
- d="M15.1363 3.88626L19.1137 7.86374M16.8238 2.19876C17.9221 1.10041 19.7029 1.10041 20.8012 2.19876C21.8996 3.29711 21.8996 5.07789 20.8012 6.17624L5.31256 21.6649H1.37506V17.6475L16.8238 2.19876Z"
1807
+ d="M11.9444 1.12367C12.8036 0.225461 14.1965 0.225461 15.0557 1.12367C15.9148 2.02187 15.9148 3.47815 15.0557 4.37636L14.1835 5.28818L11.0722 2.03549L11.9444 1.12367Z"
1808
+ fill={
1809
+ {
1810
+ "payload": 4279837036,
1811
+ "type": 0,
1812
+ }
1813
+ }
1812
1814
  propList={
1813
1815
  [
1814
- "stroke",
1815
- "strokeWidth",
1816
- "strokeLinecap",
1817
- "strokeLinejoin",
1816
+ "fill",
1818
1817
  ]
1819
1818
  }
1820
- stroke={
1819
+ />
1820
+ <RNSVGPath
1821
+ d="M9.5166 3.66184L0.300049 13.2973V16.55H3.41132L12.6279 6.91453L9.5166 3.66184Z"
1822
+ fill={
1821
1823
  {
1822
- "payload": 4294695385,
1824
+ "payload": 4279837036,
1823
1825
  "type": 0,
1824
1826
  }
1825
1827
  }
1826
- strokeLinecap={1}
1827
- strokeLinejoin={1}
1828
- strokeWidth="2"
1828
+ propList={
1829
+ [
1830
+ "fill",
1831
+ ]
1832
+ }
1829
1833
  />
1830
1834
  </RNSVGGroup>
1831
1835
  </RNSVGSvgView>
@@ -1896,8 +1900,8 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1896
1900
  },
1897
1901
  ]
1898
1902
  }
1899
- vbHeight={22}
1900
- vbWidth={21}
1903
+ vbHeight={18}
1904
+ vbWidth={17}
1901
1905
  width={24}
1902
1906
  >
1903
1907
  <RNSVGGroup
@@ -1909,24 +1913,21 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1909
1913
  }
1910
1914
  >
1911
1915
  <RNSVGPath
1912
- d="M18.375 5.58333L17.3993 18.7377C17.3152 19.8715 16.3354 20.75 15.155 20.75H5.84502C4.66458 20.75 3.68484 19.8715 3.60074 18.7377L2.625 5.58333M8.25 9.91667V16.4167M12.75 9.91667V16.4167M13.875 5.58333V2.33333C13.875 1.73502 13.3713 1.25 12.75 1.25H8.25C7.62868 1.25 7.125 1.73502 7.125 2.33333V5.58333M1.5 5.58333H19.5"
1913
- propList={
1914
- [
1915
- "stroke",
1916
- "strokeWidth",
1917
- "strokeLinecap",
1918
- "strokeLinejoin",
1919
- ]
1920
- }
1921
- stroke={
1916
+ clipRule={0}
1917
+ d="M7.34995 0.200012C6.91436 0.200012 6.51616 0.435415 6.32136 0.808077L5.48921 2.40001H1.59995C0.964824 2.40001 0.449951 2.8925 0.449951 3.50001C0.449951 4.10753 0.964824 4.60001 1.59995 4.60001L1.59995 15.6C1.59995 16.815 2.6297 17.8 3.89995 17.8H13.1C14.3702 17.8 15.4 16.815 15.4 15.6V4.60001C16.0351 4.60001 16.55 4.10753 16.55 3.50001C16.55 2.8925 16.0351 2.40001 15.4 2.40001H11.5107L10.6785 0.808077C10.4837 0.435415 10.0855 0.200012 9.64995 0.200012H7.34995ZM5.04995 6.80001C5.04995 6.1925 5.56482 5.70001 6.19995 5.70001C6.83508 5.70001 7.34995 6.1925 7.34995 6.80001V13.4C7.34995 14.0075 6.83508 14.5 6.19995 14.5C5.56482 14.5 5.04995 14.0075 5.04995 13.4V6.80001ZM10.8 5.70001C10.1648 5.70001 9.64995 6.1925 9.64995 6.80001V13.4C9.64995 14.0075 10.1648 14.5 10.8 14.5C11.4351 14.5 11.95 14.0075 11.95 13.4V6.80001C11.95 6.1925 11.4351 5.70001 10.8 5.70001Z"
1918
+ fill={
1922
1919
  {
1923
- "payload": 4294695385,
1920
+ "payload": 4279837036,
1924
1921
  "type": 0,
1925
1922
  }
1926
1923
  }
1927
- strokeLinecap={1}
1928
- strokeLinejoin={1}
1929
- strokeWidth="2"
1924
+ fillRule={0}
1925
+ propList={
1926
+ [
1927
+ "fill",
1928
+ "fillRule",
1929
+ ]
1930
+ }
1930
1931
  />
1931
1932
  </RNSVGGroup>
1932
1933
  </RNSVGSvgView>
@@ -1940,7 +1941,7 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1940
1941
  <View
1941
1942
  collapsable={false}
1942
1943
  forwardedRef={[Function]}
1943
- handlerTag={10}
1944
+ handlerTag={12}
1944
1945
  handlerType="TapGestureHandler"
1945
1946
  onGestureHandlerEvent={[Function]}
1946
1947
  onGestureHandlerStateChange={[Function]}
@@ -1966,7 +1967,7 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1966
1967
  },
1967
1968
  ],
1968
1969
  {
1969
- "color": "#FFFFFF",
1970
+ "color": "#1F2933",
1970
1971
  "textAlign": undefined,
1971
1972
  "width": "100%",
1972
1973
  },
@@ -1977,9 +1978,6 @@ exports[`Failed text bubble test shows an ERROR SENT text bubble that is swipeab
1977
1978
  },
1978
1979
  false,
1979
1980
  false,
1980
- {
1981
- "backgroundColor": "#F16868",
1982
- },
1983
1981
  ],
1984
1982
  ]
1985
1983
  }