vg-x07df 1.9.3 → 1.9.4
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/channel/index.cjs +10 -2
- package/dist/channel/index.cjs.map +1 -1
- package/dist/channel/index.d.cts +1 -1
- package/dist/channel/index.d.ts +1 -1
- package/dist/channel/index.mjs +10 -2
- package/dist/channel/index.mjs.map +1 -1
- package/dist/index.cjs +548 -124
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +128 -46
- package/dist/index.d.ts +128 -46
- package/dist/index.mjs +546 -127
- package/dist/index.mjs.map +1 -1
- package/dist/livekit/index.cjs +143 -0
- package/dist/livekit/index.cjs.map +1 -1
- package/dist/livekit/index.d.cts +1 -0
- package/dist/livekit/index.d.ts +1 -0
- package/dist/livekit/index.mjs +146 -2
- package/dist/livekit/index.mjs.map +1 -1
- package/dist/{types-Bo9J75sX.d.cts → types-DrUtRtHg.d.cts} +1 -2
- package/dist/{types-Bo9J75sX.d.ts → types-DrUtRtHg.d.ts} +1 -2
- package/dist/useVirtualBackground-DInTzJ4F.d.cts +26 -0
- package/dist/useVirtualBackground-DInTzJ4F.d.ts +26 -0
- package/package.json +13 -11
package/dist/channel/index.cjs
CHANGED
|
@@ -1538,7 +1538,10 @@ var SpotlightService = class {
|
|
|
1538
1538
|
} catch (error) {
|
|
1539
1539
|
logger7.error("Failed to spotlight user", error);
|
|
1540
1540
|
if (previousSpotlighted) {
|
|
1541
|
-
useSpotlightStore.getState().spotlight(
|
|
1541
|
+
useSpotlightStore.getState().spotlight(
|
|
1542
|
+
previousSpotlighted.participantId,
|
|
1543
|
+
previousSpotlighted.info
|
|
1544
|
+
);
|
|
1542
1545
|
} else {
|
|
1543
1546
|
useSpotlightStore.getState().unspotlight();
|
|
1544
1547
|
}
|
|
@@ -1687,7 +1690,12 @@ var FEATURES = {
|
|
|
1687
1690
|
cleanupStore: () => useSpotlightStore.getState().clear()
|
|
1688
1691
|
}
|
|
1689
1692
|
};
|
|
1690
|
-
var DEFAULT_FEATURES = [
|
|
1693
|
+
var DEFAULT_FEATURES = [
|
|
1694
|
+
"chat",
|
|
1695
|
+
"reactions",
|
|
1696
|
+
"raise-hand",
|
|
1697
|
+
"spotlight"
|
|
1698
|
+
];
|
|
1691
1699
|
var logger9 = createLogger("channels:provider");
|
|
1692
1700
|
function DataChannelProvider({
|
|
1693
1701
|
room,
|