stream-chat-react-native-core 5.16.0 → 5.17.0-beta.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/README.md +0 -1
- package/lib/commonjs/components/Attachment/Gallery.js +75 -75
- package/lib/commonjs/components/Attachment/Gallery.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +2 -1
- 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 +75 -75
- package/lib/module/components/Attachment/Gallery.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +2 -1
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +1 -0
- package/package.json +1 -1
- package/src/components/Attachment/Gallery.tsx +55 -54
- package/src/contexts/themeContext/utils/theme.ts +2 -0
- package/src/version.json +1 -1
|
@@ -448,6 +448,7 @@ export type Theme = {
|
|
|
448
448
|
minWidth: number;
|
|
449
449
|
moreImagesContainer: ViewStyle;
|
|
450
450
|
moreImagesText: TextStyle;
|
|
451
|
+
thumbnail: ViewStyle;
|
|
451
452
|
};
|
|
452
453
|
giphy: {
|
|
453
454
|
buttonContainer: ViewStyle;
|
|
@@ -982,6 +983,7 @@ export const defaultTheme: Theme = {
|
|
|
982
983
|
minWidth: 170,
|
|
983
984
|
moreImagesContainer: {},
|
|
984
985
|
moreImagesText: {},
|
|
986
|
+
thumbnail: {},
|
|
985
987
|
},
|
|
986
988
|
giphy: {
|
|
987
989
|
buttonContainer: {},
|
package/src/version.json
CHANGED