@linktr.ee/messaging-react 1.8.1 → 1.8.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/messaging-react",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "React messaging components built on messaging-core for web applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,7 +34,7 @@ export const Avatar: React.FC<AvatarProps> = ({
34
34
  return (
35
35
  <div
36
36
  className={classNames(
37
- 'flex-shrink-0 overflow-hidden rounded-lg',
37
+ 'flex-shrink-0 overflow-hidden rounded-[1rem]',
38
38
  className
39
39
  )}
40
40
  style={{ width: `${size}px`, height: `${size}px` }}
@@ -49,7 +49,7 @@ export const Avatar: React.FC<AvatarProps> = ({
49
49
  <div
50
50
  aria-hidden="true"
51
51
  className={classNames(
52
- 'flex h-full w-full items-center justify-center font-semibold rounded-sm bg-[#FBFAF9]/60',
52
+ 'flex h-full w-full items-center justify-center font-semibold rounded-sm bg-[#E6E5E3]',
53
53
  fontSizeClass
54
54
  )}
55
55
  >
package/src/styles.css CHANGED
@@ -89,3 +89,8 @@
89
89
  color: color-mix(in srgb, white 60%, #005fff);
90
90
  }
91
91
  }
92
+
93
+ .str-chat__unread-messages-separator,
94
+ .str-chat__date-separator-line {
95
+ background-color: transparent;
96
+ }