@linktr.ee/messaging-react 3.11.0-rc-1783756377 → 3.12.0-rc-1783766425
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 +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -185,7 +185,7 @@ export declare interface ChannelListProps {
|
|
|
185
185
|
* Signature of Stream's `<ChannelList>` live-event handlers: mutate the loaded
|
|
186
186
|
* channel array via `setChannels` in response to a websocket `event`.
|
|
187
187
|
*/
|
|
188
|
-
declare type ChannelListReorderHandler = (setChannels: Dispatch<SetStateAction<Channel[]>>, event: Event_2) => void;
|
|
188
|
+
export declare type ChannelListReorderHandler = (setChannels: Dispatch<SetStateAction<Channel[]>>, event: Event_2) => void;
|
|
189
189
|
|
|
190
190
|
declare type ChannelMember = ChannelMembers[string];
|
|
191
191
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linktr.ee/messaging-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0-rc-1783766425",
|
|
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
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@linktr.ee/component-library": "11.8.6",
|
|
53
|
-
"@linktr.ee/messaging-core": "2.3.0-rc-
|
|
53
|
+
"@linktr.ee/messaging-core": "2.3.0-rc-1783766425",
|
|
54
54
|
"@phosphor-icons/react": "^2.1.10"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
package/src/index.ts
CHANGED