Skip to content

Commit 305585d

Browse files
Update devDependencies (non-major) (#1023)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: lukasIO <[email protected]>
1 parent e23bb41 commit 305585d

File tree

9 files changed

+4911
-4338
lines changed

9 files changed

+4911
-4338
lines changed

docs/storybook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"eslint-config-lk-custom": "workspace:*",
3131
"storybook": "^7.0.0-beta.30",
3232
"tsx": "^4.0.0",
33-
"typescript": "5.6.2",
33+
"typescript": "5.7.3",
3434
"vite": "^5.0.0",
3535
"webpack": "^5.75.0"
3636
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"nodemon": "^3.0.3",
3939
"prettier": "^3.2.5",
4040
"turbo": "^2.1.1",
41-
"typescript": "5.6.2"
41+
"typescript": "5.7.3"
4242
},
4343
"engines": {
4444
"node": ">=18"

packages/core/etc/components-core.api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export function createChatObserver(room: Room): Observable<[message: ChatMessage
115115
export function createConnectionQualityObserver(participant: Participant): Observable<ConnectionQuality>;
116116

117117
// @public (undocumented)
118-
export function createDataObserver(room: Room): Observable<[payload: Uint8Array, participant?: RemoteParticipant | undefined, kind?: DataPacket_Kind | undefined, topic?: string | undefined]>;
118+
export function createDataObserver(room: Room): Observable<[payload: Uint8Array<ArrayBufferLike>, participant?: RemoteParticipant | undefined, kind?: DataPacket_Kind | undefined, topic?: string | undefined]>;
119119

120120
// @public (undocumented)
121121
export const createDefaultGrammar: () => {
@@ -537,7 +537,7 @@ export function setupConnectionQualityIndicator(participant: Participant): {
537537
// @public (undocumented)
538538
export function setupDataMessageHandler<T extends string>(room: Room, topic?: T | [T, ...T[]], onMessage?: (msg: ReceivedDataMessage<T>) => void): {
539539
messageObservable: Observable<{
540-
payload: Uint8Array;
540+
payload: Uint8Array<ArrayBufferLike>;
541541
topic: T;
542542
from: RemoteParticipant | undefined;
543543
}>;

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"eslint-config-lk-custom": "workspace:*",
5353
"size-limit": "^11.0.2",
5454
"tsup": "^8.0.0",
55-
"typescript": "5.6.2",
55+
"typescript": "5.7.3",
5656
"vitest": "^2.0.0"
5757
},
5858
"engines": {

packages/react/etc/components-react.api.md

Lines changed: 115 additions & 161 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)