Skip to content

Commit

Permalink
Update devDependencies (non-major) (#990)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: lukasIO <[email protected]>
  • Loading branch information
renovate[bot] and lukasIO authored Oct 2, 2024
1 parent 2f57855 commit 25c1919
Show file tree
Hide file tree
Showing 8 changed files with 2,412 additions and 2,174 deletions.
2 changes: 1 addition & 1 deletion docs/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"eslint-config-lk-custom": "workspace:*",
"storybook": "^7.0.0-beta.30",
"tsx": "^4.0.0",
"typescript": "5.4.2",
"typescript": "5.6.2",
"vite": "^5.0.0",
"webpack": "^5.75.0"
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"turbo": "^2.1.1",
"typescript": "5.4.2"
"typescript": "5.6.2"
},
"dependencies": {
"livekit-client": "^2.5.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/core/etc/components-core.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export type GridLayoutInfo = {
export function isEqualTrackRef(a?: TrackReferenceOrPlaceholder, b?: TrackReferenceOrPlaceholder): boolean;

// @public (undocumented)
export function isLocal(p: Participant): boolean;
export function isLocal(p: Participant): p is LocalParticipant;

// @public
export function isMobileBrowser(): boolean;
Expand All @@ -235,7 +235,7 @@ export function isParticipantTrackReferencePinned(trackRef: TrackReference, pinS
export function isPlaceholderReplacement(currentTrackRef: TrackReferenceOrPlaceholder, nextTrackRef: TrackReferenceOrPlaceholder): boolean;

// @public (undocumented)
export function isRemote(p: Participant): boolean;
export function isRemote(p: Participant): p is RemoteParticipant;

// @public (undocumented)
export function isSourcesWithOptions(sources: SourcesArray): sources is TrackSourceWithOptions[];
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"eslint-config-lk-custom": "workspace:*",
"size-limit": "^11.0.2",
"tsup": "^8.0.0",
"typescript": "5.4.2",
"typescript": "5.6.2",
"vitest": "^2.0.0"
},
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions packages/react/etc/components-react.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -935,7 +935,7 @@ export function useMediaDeviceSelect({ kind, room, track, requestPermissions, on
devices: MediaDeviceInfo[];
className: string;
activeDeviceId: string;
setActiveMediaDevice: (id: string, options?: SetMediaDeviceOptions | undefined) => Promise<void>;
setActiveMediaDevice: (id: string, options?: SetMediaDeviceOptions) => Promise<void>;
};

// @public (undocumented)
Expand Down Expand Up @@ -1206,7 +1206,7 @@ export type UseTracksOptions = {

// @public
export function useTrackToggle<T extends ToggleSource>({ source, onChange, initialState, captureOptions, publishOptions, onDeviceError, ...rest }: UseTrackToggleProps<T>): {
toggle: ((forceState?: boolean | undefined) => Promise<void>) | ((forceState?: boolean | undefined, captureOptions?: CaptureOptionsBySource<T> | undefined) => Promise<boolean | undefined>);
toggle: ((forceState?: boolean) => Promise<void>) | ((forceState?: boolean, captureOptions?: CaptureOptionsBySource<T> | undefined) => Promise<boolean | undefined>);
enabled: boolean;
pending: boolean;
track: LocalTrackPublication | undefined;
Expand Down
Loading

0 comments on commit 25c1919

Please sign in to comment.