stream-chat-react-native-core 5.6.2-beta.1 → 5.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Attachment/Gallery.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/ChannelPreview.js +3 -6
- package/lib/commonjs/components/ChannelPreview/ChannelPreview.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +10 -8
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +1 -0
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Attachment/Gallery.js.map +1 -1
- package/lib/module/components/ChannelPreview/ChannelPreview.js +3 -6
- package/lib/module/components/ChannelPreview/ChannelPreview.js.map +1 -1
- package/lib/module/components/Message/Message.js +10 -8
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +1 -0
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Attachment/Gallery.d.ts +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/Attachment/Gallery.tsx +1 -1
- package/src/components/ChannelPreview/ChannelPreview.tsx +1 -4
- package/src/components/Message/Message.tsx +7 -2
- package/src/contexts/themeContext/utils/theme.ts +2 -0
- package/src/version.json +1 -1
|
@@ -501,6 +501,7 @@ export type Theme = {
|
|
|
501
501
|
statusContainer: ViewStyle;
|
|
502
502
|
timeIcon: IconProps;
|
|
503
503
|
};
|
|
504
|
+
targetedMessageContainer: ViewStyle;
|
|
504
505
|
targetedMessageUnderlay: ViewStyle;
|
|
505
506
|
videoThumbnail: {
|
|
506
507
|
container: ViewStyle;
|
|
@@ -1042,6 +1043,7 @@ export const defaultTheme: Theme = {
|
|
|
1042
1043
|
width: DEFAULT_STATUS_ICON_SIZE,
|
|
1043
1044
|
},
|
|
1044
1045
|
},
|
|
1046
|
+
targetedMessageContainer: {},
|
|
1045
1047
|
targetedMessageUnderlay: {},
|
|
1046
1048
|
videoThumbnail: {
|
|
1047
1049
|
container: {},
|
package/src/version.json
CHANGED