@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.
- package/App.tsx +14 -1
- package/index.d.ts +2 -1
- package/index.tsx +2 -0
- package/package.json +1 -1
- package/src/components/atoms/backdrop/backdrop.component.d.ts +7 -4
- package/src/components/atoms/calendar/__snapshots__/calendar.test.js.snap +18 -18
- package/src/components/atoms/calendar/calendar.component.d.ts +11 -6
- package/src/components/atoms/check-switch/check-switch.component.d.ts +3 -3
- package/src/components/atoms/footer/footer.component.d.ts +6 -6
- package/src/components/atoms/heading-components/all-caps-heading/all-caps-heading.component.d.ts +10 -2
- package/src/components/atoms/heading-components/heading1/heading1.component.d.ts +10 -2
- package/src/components/atoms/heading-components/heading2/heading2.component.d.ts +10 -2
- package/src/components/atoms/heading-components/heading3/heading3.component.d.ts +10 -2
- package/src/components/atoms/heading-components/heading4/heading4.component.d.ts +10 -2
- package/src/components/atoms/heading-components/index.d.ts +6 -6
- package/src/components/atoms/image-bubble/image-bubble.component.d.ts +9 -6
- package/src/components/atoms/increment-input/increment-input.component.d.ts +8 -4
- package/src/components/atoms/line/line.component.d.ts +12 -0
- package/src/components/atoms/line/line.component.tsx +23 -0
- package/src/components/atoms/line/line.preview.d.ts +1 -0
- package/src/components/atoms/line/line.preview.tsx +54 -0
- package/src/components/atoms/line/line.styles.d.ts +12 -0
- package/src/components/atoms/line/line.styles.js +10 -0
- package/src/components/atoms/logo/logo.component.d.ts +4 -4
- package/src/components/atoms/paragraph-components/index.d.ts +4 -4
- package/src/components/atoms/paragraph-components/paragraph/paragraph.component.d.ts +10 -2
- package/src/components/atoms/paragraph-components/small-text/small-text.component.d.ts +10 -2
- package/src/components/atoms/paragraph-components/tiny-text/tiny-text.component.d.ts +10 -2
- package/src/components/atoms/quick-message/quick-message.component.d.ts +10 -5
- package/src/components/atoms/quick-message/quick-message.styles.d.ts +16 -13
- package/src/components/atoms/split-container/split-container.component.d.ts +7 -4
- package/src/components/atoms/static-wave/static-wave.component.d.ts +11 -6
- package/src/components/atoms/text-input/__snapshots__/text-input.test.js.snap +38 -78
- package/src/components/atoms/text-input/text-input.component.d.ts +10 -6
- package/src/components/atoms/text-input/text-input.preview.d.ts +1 -1
- package/src/components/atoms/text-input/text-input.styles.d.ts +33 -25
- package/src/components/molecules/avatar/avatar.component.d.ts +18 -11
- package/src/components/molecules/blocked-message/blocked-message.component.d.ts +4 -2
- package/src/components/molecules/button/button.component.d.ts +20 -11
- package/src/components/molecules/calendar-select/calendar-select.component.d.ts +12 -7
- package/src/components/molecules/cancel-link/cancel-link.component.d.ts +4 -4
- package/src/components/molecules/checkbox/checkbox.component.d.ts +9 -5
- package/src/components/molecules/contact-role/contact-role.component.d.ts +6 -3
- package/src/components/molecules/date-input/date-input.component.d.ts +7 -4
- package/src/components/molecules/day/__snapshots__/day.test.js.snap +24 -24
- package/src/components/molecules/day/day.component.d.ts +6 -6
- package/src/components/molecules/day/day.styles.d.ts +34 -26
- package/src/components/molecules/default-select/default-select.component.d.ts +6 -3
- package/src/components/molecules/department_logo/department-logo.component.d.ts +5 -3
- package/src/components/molecules/failed-to-send/__snapshots__/failed-bubble.test.js.snap +27 -36
- package/src/components/molecules/failed-to-send/failed-bubble.component.d.ts +11 -6
- package/src/components/molecules/failed-to-send/failed-bubble.component.tsx +40 -23
- package/src/components/molecules/failed-to-send/failed-bubble.styles.d.ts +9 -10
- package/src/components/molecules/failed-to-send/failed-bubble.styles.js +9 -6
- package/src/components/molecules/filter-range/filter-range.component.d.ts +14 -7
- package/src/components/molecules/filter-tab/filter-tab.component.d.ts +11 -7
- package/src/components/molecules/info/info.component.d.ts +4 -4
- package/src/components/molecules/language-button/language-button.component.d.ts +8 -4
- package/src/components/molecules/message-input/__snapshots__/message-input.test.js.snap +64 -388
- package/src/components/molecules/message-input/message-input.component.d.ts +10 -7
- package/src/components/molecules/message-input/message-input.component.tsx +9 -9
- package/src/components/molecules/message-input/message-input.preview.tsx +2 -2
- package/src/components/molecules/message-input/message-input.styles.d.ts +13 -6
- package/src/components/molecules/message-input/message-input.styles.js +14 -6
- package/src/components/molecules/message-input/message-input.test.js +0 -4
- package/src/components/molecules/more-info-button/more-info-button.component.d.ts +8 -4
- package/src/components/molecules/password-input/__snapshots__/password-input.test.js.snap +53 -68
- package/src/components/molecules/password-input/password-input.component.d.ts +9 -5
- package/src/components/molecules/password-input/password-input.styles.d.ts +27 -27
- package/src/components/molecules/pill/pill.component.d.ts +5 -5
- package/src/components/molecules/pressable-icon/pressable-icon.component.d.ts +10 -5
- package/src/components/molecules/quick-filter/quick-filter.component.d.ts +16 -9
- package/src/components/molecules/search-input/__snapshots__/search.test.js.snap +20 -31
- package/src/components/molecules/search-input/search.component.d.ts +12 -7
- package/src/components/molecules/search-input/search.preview.d.ts +1 -1
- package/src/components/molecules/search-input/search.styles.d.ts +31 -31
- package/src/components/molecules/search-input/search.styles.js +0 -3
- package/src/components/molecules/select-link/select-link.component.d.ts +4 -4
- package/src/components/molecules/select-list-item/select-list-item.component.d.ts +13 -7
- package/src/components/molecules/select-picker/select-picker.component.d.ts +13 -8
- package/src/components/molecules/send-bubble/__snapshots__/send-text-bubble.test.js.snap +240 -242
- package/src/components/molecules/send-bubble/send-text-bubble.component.d.ts +14 -10
- package/src/components/molecules/send-bubble/send-text-bubble.component.tsx +32 -26
- package/src/components/molecules/send-bubble/send-text-bubble.styles.d.ts +59 -58
- package/src/components/molecules/send-bubble/send-text-bubble.styles.js +5 -11
- package/src/components/molecules/send-bubble/send-text-bubble.test.js +6 -17
- package/src/components/molecules/snackbar/snackbar.component.d.ts +5 -5
- package/src/components/molecules/swipe/swipe.component.d.ts +5 -5
- package/src/components/molecules/tag/tag.component.d.ts +11 -6
- package/src/components/molecules/time-picker/time-picker.component.d.ts +10 -5
- package/src/components/molecules/time-tracker/time-tracker.component.d.ts +10 -6
- package/src/components/molecules/timeline/__snapshots__/timeline.test.js.snap +4 -4
- package/src/components/molecules/timeline/timeline.component.d.ts +6 -3
- package/src/components/molecules/timeline/timeline.styles.d.ts +49 -39
- package/src/components/molecules/timestamp/__snapshots__/timestamp.test.js.snap +2 -1
- package/src/components/molecules/timestamp/timestamp.component.d.ts +4 -4
- package/src/components/molecules/wave-background/wave.component.d.ts +7 -2
- package/src/components/molecules/wide-button/wide-button.component.d.ts +11 -6
- package/src/components/organisms/child-list-item/child-list-item.component.d.ts +34 -18
- package/src/components/organisms/child-list-item/child-list-item.styles.d.ts +38 -35
- package/src/components/organisms/child-list-item/components/child-list-tag.component.d.ts +6 -3
- package/src/components/organisms/child-list-item/components/child-list-tag.styles.d.ts +12 -9
- package/src/components/organisms/contact-item/contact-item.component.d.ts +11 -6
- package/src/components/organisms/day-select/day-select.component.d.ts +10 -6
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.d.ts +9 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.component.tsx +95 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.d.ts +13 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.styles.js +17 -0
- package/src/components/organisms/journal-entry/components/entry-type-indicator/entry-type-indicator.test.js +25 -0
- package/src/components/organisms/journal-entry/components/index.d.ts +2 -0
- package/src/components/organisms/journal-entry/components/index.ts +2 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/__snapshots__/journal-entry-type.test.js.snap +304 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.d.ts +16 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.component.tsx +60 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.d.ts +13 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.styles.js +16 -0
- package/src/components/organisms/journal-entry/components/journal-entry-type/journal-entry-type.test.js +51 -0
- package/src/components/organisms/journal-entry/journal-entry.component.d.ts +33 -0
- package/src/components/organisms/journal-entry/journal-entry.component.tsx +132 -0
- package/src/components/organisms/journal-entry/journal-entry.preview.d.ts +1 -0
- package/src/components/organisms/journal-entry/journal-entry.preview.tsx +213 -0
- package/src/components/organisms/journal-entry/journal-entry.styles.d.ts +26 -0
- package/src/components/organisms/journal-entry/journal-entry.styles.js +27 -0
- package/src/components/organisms/loading-indicator/animation-style.animate.d.ts +13 -3
- package/src/components/organisms/loading-indicator/dot.component.d.ts +3 -3
- package/src/components/organisms/loading-indicator/loading-indicator.component.d.ts +9 -2
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.d.ts +16 -9
- package/src/components/organisms/my-child-list-item/my-child-list-item.component.tsx +1 -2
- package/src/components/organisms/my-child-list-item/my-child-list-item.styles.d.ts +31 -31
- package/src/components/organisms/person-info-card/person-info-card.component.d.ts +18 -10
- package/src/components/organisms/tab-view/tab-view.component.d.ts +12 -8
- package/src/components/organisms/text-bubble/__snapshots__/text-bubble.test.js.snap +858 -635
- package/src/components/organisms/text-bubble/text-bubble.component.d.ts +21 -15
- package/src/components/organisms/text-bubble/text-bubble.component.tsx +19 -27
- package/src/components/organisms/text-bubble/text-bubble.preview.tsx +66 -73
- package/src/components/organisms/text-bubble/text-bubble.styles.d.ts +16 -32
- package/src/components/organisms/text-bubble/text-bubble.styles.js +15 -34
- package/src/components/organisms/text-bubble/text-bubble.test.js +7 -7
- package/src/components/templates/modal/components/fade-panel.component.d.ts +16 -8
- package/src/components/templates/modal/modal.component.d.ts +14 -7
- package/src/components/templates/modal/modal.styles.d.ts +3 -0
- package/src/components/templates/modal/modal.styles.js +3 -0
- package/src/components/templates/popover/components/foreground/foreground.component.d.ts +4 -4
- package/src/components/templates/popover/components/foreground/foreground.component.tsx +1 -5
- package/src/components/templates/popover/components/foreground/foreground.styles.d.ts +2 -2
- package/src/components/templates/popover/components/foreground/foreground.styles.js +4 -4
- package/src/components/templates/popover/components/modal/close/close.component.d.ts +4 -4
- package/src/components/templates/popover/components/modal/heading/heading.component.d.ts +4 -4
- package/src/components/templates/popover/components/modal/modal.component.d.ts +17 -9
- package/src/components/templates/popover/components/modal/scroll-content/scroll-content.component.d.ts +5 -3
- package/src/components/templates/popover/popover.component.d.ts +15 -8
- package/src/components/templates/popover/popover.component.tsx +1 -2
- package/src/components/templates/popover/popover.styles.d.ts +3 -0
- package/src/components/templates/popover/popover.styles.js +1 -0
- package/src/components/templates/popover-action/popover-action.component.d.ts +8 -4
- package/src/components/templates/popover-action/popover-action.component.tsx +6 -1
- package/src/components/templates/popover-action/popover-action.styles.d.ts +4 -2
- package/src/components/templates/popover-action/popover-action.styles.js +4 -2
- package/src/context/loading-dots.context.d.ts +9 -6
- package/src/context/theme.context.d.ts +47 -47
- package/src/gradients/main/main.gradient.d.ts +4 -2
- package/src/icons/index.d.ts +7 -2
- package/src/icons/outline/calendar/calendar.icon.d.ts +2 -2
- package/src/icons/outline/chat/chat.icon.d.ts +2 -2
- package/src/icons/outline/chat-alt/chat-alt.icon.d.ts +2 -2
- package/src/icons/outline/check-circle/check-circle.icon.d.ts +5 -2
- package/src/icons/outline/chevron-left/chevron-left.icon.d.ts +5 -2
- package/src/icons/outline/chevron-right/chevron-right.icon.d.ts +5 -2
- package/src/icons/outline/clock/clock.icon.d.ts +2 -2
- package/src/icons/outline/cloud-download/cloud-download.icon.d.ts +5 -2
- package/src/icons/outline/currency-euro/currency-euro.icon.d.ts +5 -2
- package/src/icons/outline/document-text/document-text.icon.d.ts +5 -2
- package/src/icons/outline/exclamation/exclamation.icon.d.ts +5 -2
- package/src/icons/outline/exclamation-circle/exclamation-circle.icon.d.ts +5 -2
- package/src/icons/outline/eye/eye.icon.d.ts +2 -2
- package/src/icons/outline/eye-off/eye-off.icon.d.ts +2 -2
- package/src/icons/outline/filter/filter.icon.d.ts +2 -2
- package/src/icons/outline/information-circle/information-circle.icon.d.ts +5 -2
- package/src/icons/outline/logout/logout.icon.d.ts +2 -2
- package/src/icons/outline/mail/mail.icon.d.ts +2 -2
- package/src/icons/outline/mail-open/mail-open.icon.d.ts +2 -2
- package/src/icons/outline/menu/menu.icon.d.ts +2 -2
- package/src/icons/outline/minus-sm/minus-sm.icon.d.ts +5 -2
- package/src/icons/outline/office-building/office-building.icon.d.ts +5 -2
- package/src/icons/outline/outline.d.ts +6 -2
- package/src/icons/outline/paper-airplane/paper-airplane.icon.d.ts +5 -2
- package/src/icons/outline/paperclip/paperclip.icon.d.ts +5 -2
- package/src/icons/outline/pencil/pencil.icon.d.ts +2 -2
- package/src/icons/outline/phone/phone.icon.d.ts +2 -2
- package/src/icons/outline/plus/plus.icon.d.ts +2 -2
- package/src/icons/outline/plus-sm/plus-sm.icon.d.ts +5 -2
- package/src/icons/outline/qrcode/qrcode.icon.d.ts +2 -2
- package/src/icons/outline/refresh/refresh.icon.d.ts +2 -2
- package/src/icons/outline/search/search.icon.d.ts +2 -2
- package/src/icons/outline/selector/selector.icon.d.ts +2 -2
- package/src/icons/outline/sm-view-grid-add/sm-view-grid-add.icon.d.ts +5 -2
- package/src/icons/outline/status-online/status-online.icon.d.ts +5 -2
- package/src/icons/outline/thumb-up/thumb-up.icon.d.ts +2 -2
- package/src/icons/outline/trash/trash.icon.d.ts +2 -2
- package/src/icons/outline/user/user.icon.d.ts +2 -2
- package/src/icons/outline/user-group/user-group.icon.d.ts +5 -2
- package/src/icons/outline/users/users.icon.d.ts +2 -2
- package/src/icons/outline/xmark/xmark.icon.d.ts +2 -2
- package/src/icons/solid/calendar/calendar.icon.d.ts +2 -2
- package/src/icons/solid/chat/chat.icon.d.ts +2 -2
- package/src/icons/solid/chat-alt/chat-alt-solid.icon.d.ts +2 -2
- package/src/icons/solid/check-circle/check-circle.icon.d.ts +5 -2
- package/src/icons/solid/chevron-left/chevron-left.icon.d.ts +5 -2
- package/src/icons/solid/chevron-right/chevron-right.icon.d.ts +5 -2
- package/src/icons/solid/clock/clock-solid.icon.d.ts +2 -2
- package/src/icons/solid/cloud-download/cloud-download.icon.d.ts +5 -2
- package/src/icons/solid/currency-euro/currency-euro.icon.d.ts +5 -2
- package/src/icons/solid/document-text/document-text-solid.icon.d.ts +5 -2
- package/src/icons/solid/exclamation/exclamation.icon.d.ts +5 -2
- package/src/icons/solid/exclamation-circle/exclamation-circle.icon.d.ts +5 -2
- package/src/icons/solid/eye/eye.icon.d.ts +2 -2
- package/src/icons/solid/eye-off/eye-off.icon.d.ts +2 -2
- package/src/icons/solid/filter/filter.icon.d.ts +2 -2
- package/src/icons/solid/information-circle/information-circle-solid.icon.d.ts +5 -2
- package/src/icons/solid/logout/logout.icon.d.ts +2 -2
- package/src/icons/solid/mail/mail.icon.d.ts +2 -2
- package/src/icons/solid/mail-open/mail-open.icon.d.ts +2 -2
- package/src/icons/solid/menu/menu.icon.d.ts +2 -2
- package/src/icons/solid/minus-sm/minus-sm.icon.d.ts +5 -2
- package/src/icons/solid/office-building/office-building.icon.d.ts +5 -2
- package/src/icons/solid/paper-airplane/paper-airplane.icon.d.ts +5 -2
- package/src/icons/solid/paperclip/paperclip.icon.d.ts +5 -2
- package/src/icons/solid/pencil/pencil-solid.icon.d.ts +2 -2
- package/src/icons/solid/phone/phone-solid.icon.d.ts +2 -2
- package/src/icons/solid/plus/plus.icon.d.ts +2 -2
- package/src/icons/solid/plus-sm/plus-sm.icon.d.ts +5 -2
- package/src/icons/solid/qrcode/qrcode.icon.d.ts +2 -2
- package/src/icons/solid/refresh/refresh-solid.icon.d.ts +2 -2
- package/src/icons/solid/search/search.icon.d.ts +2 -2
- package/src/icons/solid/selector/selector.icon.d.ts +2 -2
- package/src/icons/solid/sm-view-grid-add/sm-view-grid-add.icon.d.ts +5 -2
- package/src/icons/solid/solid.d.ts +6 -2
- package/src/icons/solid/status-online/status-online-solid.icon.d.ts +5 -2
- package/src/icons/solid/thumb-up/thumb-up.icon.d.ts +2 -2
- package/src/icons/solid/trash/trash-solid.icon.d.ts +2 -2
- package/src/icons/solid/user/user.icon.d.ts +2 -2
- package/src/icons/solid/user-group/user-group.icon.d.ts +5 -2
- package/src/icons/solid/users/users-solid.icon.d.ts +2 -2
- package/src/icons/solid/xmark/xmark.icon.d.ts +2 -2
- package/src/interfaces/icon.interface.d.ts +5 -5
- package/src/models/hex-color.model.d.ts +4 -4
- package/src/models/initials.model.d.ts +5 -5
- package/src/theme/font/font.d.ts +70 -70
- package/src/theme/font/index.d.ts +3 -3
- package/src/theme/provider/index.d.ts +3 -3
- package/src/theme/provider/parent.theme.d.ts +45 -45
- package/src/theme/provider/staff-member.theme.d.ts +45 -45
- package/src/theme/responsive/index.d.ts +5 -2
- package/src/theme/scale/index.d.ts +10 -10
- package/src/types/bubble-alignment.enum.d.ts +2 -2
- package/src/types/icontype.type.d.ts +41 -1
- package/src/types/keyboard-types.enum.d.ts +7 -7
- package/src/types/loading-dots.type.d.ts +6 -6
- package/src/types/size.enum.d.ts +3 -3
- package/src/types/text-properties.type.d.ts +8 -8
- package/src/types/visual-state.enum.d.ts +5 -5
- package/src/utilities/color-handler/color-handler.d.ts +6 -2
- package/src/utilities/toddle-datetime/interfaces/duration.interface.d.ts +18 -18
- package/src/utilities/toddle-datetime/interfaces/toddle-datetime.interface.d.ts +16 -16
- package/src/utilities/toddle-datetime/toddle-datetime.class.d.ts +103 -46
- package/src/utilities/toddle-datetime/types/duration.type.d.ts +1 -1
- 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
|
|
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
|
-
"
|
|
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={
|
|
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={
|
|
139
|
-
vbWidth={
|
|
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="
|
|
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
|
-
"
|
|
155
|
-
"strokeWidth",
|
|
156
|
-
"strokeLinecap",
|
|
157
|
-
"strokeLinejoin",
|
|
157
|
+
"fill",
|
|
158
158
|
]
|
|
159
159
|
}
|
|
160
|
-
|
|
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
|
-
|
|
167
|
-
|
|
168
|
-
|
|
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={
|
|
240
|
-
vbWidth={
|
|
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
|
-
|
|
253
|
-
|
|
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
|
-
|
|
268
|
-
|
|
269
|
-
|
|
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={
|
|
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
|
|
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
|
-
"
|
|
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={
|
|
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={
|
|
471
|
-
vbWidth={
|
|
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="
|
|
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
|
-
"
|
|
487
|
-
"strokeWidth",
|
|
488
|
-
"strokeLinecap",
|
|
489
|
-
"strokeLinejoin",
|
|
490
|
+
"fill",
|
|
490
491
|
]
|
|
491
492
|
}
|
|
492
|
-
|
|
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
|
-
|
|
499
|
-
|
|
500
|
-
|
|
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={
|
|
572
|
-
vbWidth={
|
|
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
|
-
|
|
585
|
-
|
|
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
|
-
|
|
600
|
-
|
|
601
|
-
|
|
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={
|
|
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
|
|
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
|
-
"
|
|
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": "#
|
|
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={
|
|
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={
|
|
803
|
-
vbWidth={
|
|
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="
|
|
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
|
-
"
|
|
819
|
-
"strokeWidth",
|
|
820
|
-
"strokeLinecap",
|
|
821
|
-
"strokeLinejoin",
|
|
823
|
+
"fill",
|
|
822
824
|
]
|
|
823
825
|
}
|
|
824
|
-
|
|
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
|
-
|
|
831
|
-
|
|
832
|
-
|
|
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={
|
|
904
|
-
vbWidth={
|
|
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
|
-
|
|
917
|
-
|
|
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
|
-
|
|
932
|
-
|
|
933
|
-
|
|
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={
|
|
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": "#
|
|
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": "#
|
|
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
|
|
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
|
-
"
|
|
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": "#
|
|
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={
|
|
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={
|
|
1135
|
-
vbWidth={
|
|
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="
|
|
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
|
-
"
|
|
1151
|
-
"strokeWidth",
|
|
1152
|
-
"strokeLinecap",
|
|
1153
|
-
"strokeLinejoin",
|
|
1156
|
+
"fill",
|
|
1154
1157
|
]
|
|
1155
1158
|
}
|
|
1156
|
-
|
|
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
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
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={
|
|
1236
|
-
vbWidth={
|
|
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
|
-
|
|
1249
|
-
|
|
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
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
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={
|
|
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": "#
|
|
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": "#
|
|
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
|
|
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
|
-
"
|
|
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={
|
|
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={
|
|
1467
|
-
vbWidth={
|
|
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="
|
|
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
|
-
"
|
|
1483
|
-
"strokeWidth",
|
|
1484
|
-
"strokeLinecap",
|
|
1485
|
-
"strokeLinejoin",
|
|
1487
|
+
"fill",
|
|
1486
1488
|
]
|
|
1487
1489
|
}
|
|
1488
|
-
|
|
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":
|
|
1495
|
+
"payload": 4279837036,
|
|
1491
1496
|
"type": 0,
|
|
1492
1497
|
}
|
|
1493
1498
|
}
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
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={
|
|
1568
|
-
vbWidth={
|
|
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
|
-
|
|
1581
|
-
|
|
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":
|
|
1591
|
+
"payload": 4279837036,
|
|
1592
1592
|
"type": 0,
|
|
1593
1593
|
}
|
|
1594
1594
|
}
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
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={
|
|
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": "#
|
|
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
|
|
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
|
-
"
|
|
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={
|
|
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={
|
|
1799
|
-
vbWidth={
|
|
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="
|
|
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
|
-
"
|
|
1815
|
-
"strokeWidth",
|
|
1816
|
-
"strokeLinecap",
|
|
1817
|
-
"strokeLinejoin",
|
|
1816
|
+
"fill",
|
|
1818
1817
|
]
|
|
1819
1818
|
}
|
|
1820
|
-
|
|
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":
|
|
1824
|
+
"payload": 4279837036,
|
|
1823
1825
|
"type": 0,
|
|
1824
1826
|
}
|
|
1825
1827
|
}
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
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={
|
|
1900
|
-
vbWidth={
|
|
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
|
-
|
|
1913
|
-
|
|
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":
|
|
1920
|
+
"payload": 4279837036,
|
|
1924
1921
|
"type": 0,
|
|
1925
1922
|
}
|
|
1926
1923
|
}
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
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={
|
|
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": "#
|
|
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
|
}
|