farvex 0.1.0 → 0.2.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/CHANGELOG.md +22 -0
- package/README.md +136 -50
- package/dist/core/index.cjs +2912 -3
- package/dist/core/index.cjs.map +1 -1
- package/dist/core/index.d.cts +1416 -2
- package/dist/core/index.d.ts +1416 -2
- package/dist/core/index.js +2899 -3
- package/dist/core/index.js.map +1 -1
- package/dist/index.cjs +2900 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2893 -3
- package/dist/index.js.map +1 -1
- package/dist/livekit/index.cjs +105 -0
- package/dist/livekit/index.cjs.map +1 -0
- package/dist/livekit/index.d.cts +2 -0
- package/dist/livekit/index.d.ts +2 -0
- package/dist/livekit/index.js +4 -0
- package/dist/livekit/index.js.map +1 -0
- package/dist/mock/index.cjs +3267 -0
- package/dist/mock/index.cjs.map +1 -0
- package/dist/mock/index.d.cts +31 -0
- package/dist/mock/index.d.ts +31 -0
- package/dist/mock/index.js +3263 -0
- package/dist/mock/index.js.map +1 -0
- package/dist/react/index.cjs +3315 -3
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +87 -2
- package/dist/react/index.d.ts +87 -2
- package/dist/react/index.js +3297 -3
- package/dist/react/index.js.map +1 -1
- package/package.json +32 -3
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var componentsReact = require('@livekit/components-react');
|
|
4
|
+
var livekitClient = require('livekit-client');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
Object.defineProperty(exports, "BarVisualizer", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () { return componentsReact.BarVisualizer; }
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "ControlBar", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () { return componentsReact.ControlBar; }
|
|
15
|
+
});
|
|
16
|
+
Object.defineProperty(exports, "LiveKitRoom", {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function () { return componentsReact.LiveKitRoom; }
|
|
19
|
+
});
|
|
20
|
+
Object.defineProperty(exports, "RoomAudioRenderer", {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () { return componentsReact.RoomAudioRenderer; }
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "StartAudio", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () { return componentsReact.StartAudio; }
|
|
27
|
+
});
|
|
28
|
+
Object.defineProperty(exports, "TrackToggle", {
|
|
29
|
+
enumerable: true,
|
|
30
|
+
get: function () { return componentsReact.TrackToggle; }
|
|
31
|
+
});
|
|
32
|
+
Object.defineProperty(exports, "useConnectionQualityIndicator", {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () { return componentsReact.useConnectionQualityIndicator; }
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "useConnectionState", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () { return componentsReact.useConnectionState; }
|
|
39
|
+
});
|
|
40
|
+
Object.defineProperty(exports, "useIsMuted", {
|
|
41
|
+
enumerable: true,
|
|
42
|
+
get: function () { return componentsReact.useIsMuted; }
|
|
43
|
+
});
|
|
44
|
+
Object.defineProperty(exports, "useIsSpeaking", {
|
|
45
|
+
enumerable: true,
|
|
46
|
+
get: function () { return componentsReact.useIsSpeaking; }
|
|
47
|
+
});
|
|
48
|
+
Object.defineProperty(exports, "useLocalParticipant", {
|
|
49
|
+
enumerable: true,
|
|
50
|
+
get: function () { return componentsReact.useLocalParticipant; }
|
|
51
|
+
});
|
|
52
|
+
Object.defineProperty(exports, "useMediaDeviceSelect", {
|
|
53
|
+
enumerable: true,
|
|
54
|
+
get: function () { return componentsReact.useMediaDeviceSelect; }
|
|
55
|
+
});
|
|
56
|
+
Object.defineProperty(exports, "useParticipants", {
|
|
57
|
+
enumerable: true,
|
|
58
|
+
get: function () { return componentsReact.useParticipants; }
|
|
59
|
+
});
|
|
60
|
+
Object.defineProperty(exports, "useRemoteParticipant", {
|
|
61
|
+
enumerable: true,
|
|
62
|
+
get: function () { return componentsReact.useRemoteParticipant; }
|
|
63
|
+
});
|
|
64
|
+
Object.defineProperty(exports, "useRemoteParticipants", {
|
|
65
|
+
enumerable: true,
|
|
66
|
+
get: function () { return componentsReact.useRemoteParticipants; }
|
|
67
|
+
});
|
|
68
|
+
Object.defineProperty(exports, "useRoomContext", {
|
|
69
|
+
enumerable: true,
|
|
70
|
+
get: function () { return componentsReact.useRoomContext; }
|
|
71
|
+
});
|
|
72
|
+
Object.defineProperty(exports, "useTrackVolume", {
|
|
73
|
+
enumerable: true,
|
|
74
|
+
get: function () { return componentsReact.useTrackVolume; }
|
|
75
|
+
});
|
|
76
|
+
Object.defineProperty(exports, "useTracks", {
|
|
77
|
+
enumerable: true,
|
|
78
|
+
get: function () { return componentsReact.useTracks; }
|
|
79
|
+
});
|
|
80
|
+
Object.defineProperty(exports, "ConnectionQuality", {
|
|
81
|
+
enumerable: true,
|
|
82
|
+
get: function () { return livekitClient.ConnectionQuality; }
|
|
83
|
+
});
|
|
84
|
+
Object.defineProperty(exports, "ConnectionState", {
|
|
85
|
+
enumerable: true,
|
|
86
|
+
get: function () { return livekitClient.ConnectionState; }
|
|
87
|
+
});
|
|
88
|
+
Object.defineProperty(exports, "DisconnectReason", {
|
|
89
|
+
enumerable: true,
|
|
90
|
+
get: function () { return livekitClient.DisconnectReason; }
|
|
91
|
+
});
|
|
92
|
+
Object.defineProperty(exports, "Room", {
|
|
93
|
+
enumerable: true,
|
|
94
|
+
get: function () { return livekitClient.Room; }
|
|
95
|
+
});
|
|
96
|
+
Object.defineProperty(exports, "RoomEvent", {
|
|
97
|
+
enumerable: true,
|
|
98
|
+
get: function () { return livekitClient.RoomEvent; }
|
|
99
|
+
});
|
|
100
|
+
Object.defineProperty(exports, "Track", {
|
|
101
|
+
enumerable: true,
|
|
102
|
+
get: function () { return livekitClient.Track; }
|
|
103
|
+
});
|
|
104
|
+
//# sourceMappingURL=index.cjs.map
|
|
105
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs","sourcesContent":[]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { BarVisualizer, ControlBar, LiveKitRoom, RoomAudioRenderer, StartAudio, TrackToggle, useConnectionQualityIndicator, useConnectionState, useIsMuted, useIsSpeaking, useLocalParticipant, useMediaDeviceSelect, useParticipants, useRemoteParticipant, useRemoteParticipants, useRoomContext, useTrackVolume, useTracks } from '@livekit/components-react';
|
|
2
|
+
export { ConnectionQuality, ConnectionState, DisconnectReason, Participant as LiveKitParticipant, LocalParticipant, LocalTrackPublication, RemoteParticipant, RemoteTrackPublication, Room, RoomEvent, Track, TrackPublication } from 'livekit-client';
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { BarVisualizer, ControlBar, LiveKitRoom, RoomAudioRenderer, StartAudio, TrackToggle, useConnectionQualityIndicator, useConnectionState, useIsMuted, useIsSpeaking, useLocalParticipant, useMediaDeviceSelect, useParticipants, useRemoteParticipant, useRemoteParticipants, useRoomContext, useTrackVolume, useTracks } from '@livekit/components-react';
|
|
2
|
+
export { ConnectionQuality, ConnectionState, DisconnectReason, Participant as LiveKitParticipant, LocalParticipant, LocalTrackPublication, RemoteParticipant, RemoteTrackPublication, Room, RoomEvent, Track, TrackPublication } from 'livekit-client';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { BarVisualizer, ControlBar, LiveKitRoom, RoomAudioRenderer, StartAudio, TrackToggle, useConnectionQualityIndicator, useConnectionState, useIsMuted, useIsSpeaking, useLocalParticipant, useMediaDeviceSelect, useParticipants, useRemoteParticipant, useRemoteParticipants, useRoomContext, useTrackVolume, useTracks } from '@livekit/components-react';
|
|
2
|
+
export { ConnectionQuality, ConnectionState, DisconnectReason, Room, RoomEvent, Track } from 'livekit-client';
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
4
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
|