@linktr.ee/messaging-react 4.3.0-rc-1787410254 → 4.3.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/dist/index.d.ts CHANGED
@@ -1195,6 +1195,11 @@ export declare type MessageAttachmentGroupPosition = 'single' | 'first' | 'middl
1195
1195
  * })}
1196
1196
  * />
1197
1197
  * ```
1198
+ *
1199
+ * @deprecated Unadopted convenience adapter, slated for removal in a future
1200
+ * release. No consumer uses it. Derive `groupPosition` (a `BubbleGroupPosition`)
1201
+ * inline from stream-chat-react's `firstOfGroup` / `endOfGroup` /
1202
+ * `groupedByUser` booleans instead.
1198
1203
  */
1199
1204
  export declare const messageAttachmentGroupPositionFromStream: ({ firstOfGroup, endOfGroup, groupedByUser, }: {
1200
1205
  firstOfGroup?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/messaging-react",
3
- "version": "4.3.0-rc-1787410254",
3
+ "version": "4.3.0",
4
4
  "description": "React messaging components built on messaging-core for web applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -50,7 +50,7 @@
50
50
  "chromatic:local": "yarn storybook:build && chromatic"
51
51
  },
52
52
  "dependencies": {
53
- "@linktr.ee/messaging-core": "2.5.0-rc-1787410254",
53
+ "@linktr.ee/messaging-core": "^2.5.0",
54
54
  "@linktr.ee/messaging-taxonomy": "^0.10.0",
55
55
  "@phosphor-icons/react": "^2.1.10"
56
56
  },
@@ -51,6 +51,11 @@ export type BubbleGroupPosition = 'single' | 'first' | 'middle' | 'end'
51
51
  * })}
52
52
  * />
53
53
  * ```
54
+ *
55
+ * @deprecated Unadopted convenience adapter, slated for removal in a future
56
+ * release. No consumer uses it. Derive `groupPosition` (a `BubbleGroupPosition`)
57
+ * inline from stream-chat-react's `firstOfGroup` / `endOfGroup` /
58
+ * `groupedByUser` booleans instead.
54
59
  */
55
60
  export const bubbleGroupPositionFromStream = ({
56
61
  firstOfGroup,