@100mslive/roomkit-react 0.3.10-alpha.0 → 0.3.10-alpha.2
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/{HLSView-5GXP76IN.js → HLSView-KRJMDNAF.js} +2 -2
- package/dist/Prebuilt/common/constants.d.ts +1 -0
- package/dist/Prebuilt/components/AppData/useSidepaneResetOnLayoutUpdate.d.ts +3 -0
- package/dist/Prebuilt/components/Chat/Chat.d.ts +1 -1
- package/dist/Prebuilt/components/RoleChangeModal.d.ts +5 -0
- package/dist/Prebuilt/components/TileMenu/TileMenuContent.d.ts +2 -1
- package/dist/Prebuilt/components/VideoLayouts/WhiteboardLayout.d.ts +0 -1
- package/dist/{chunk-WSDBUVSZ.js → chunk-AFSI3LBT.js} +618 -564
- package/dist/chunk-AFSI3LBT.js.map +7 -0
- package/dist/index.cjs.js +1953 -1896
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +125 -204
- package/dist/meta.esbuild.json +131 -280
- package/package.json +7 -9
- package/src/Modal/DialogContent.tsx +1 -1
- package/src/Prebuilt/common/constants.ts +2 -0
- package/src/Prebuilt/components/AppData/useSidepaneResetOnLayoutUpdate.tsx +22 -0
- package/src/Prebuilt/components/AudioVideoToggle.tsx +1 -1
- package/src/Prebuilt/components/Chat/Chat.tsx +3 -4
- package/src/Prebuilt/components/Footer/ParticipantList.tsx +56 -37
- package/src/Prebuilt/components/RoleChangeModal.tsx +187 -0
- package/src/Prebuilt/components/TileMenu/TileMenu.tsx +5 -0
- package/src/Prebuilt/components/TileMenu/TileMenuContent.tsx +23 -1
- package/src/Prebuilt/components/VideoLayouts/WhiteboardLayout.tsx +13 -7
- package/src/Prebuilt/components/VirtualBackground/VBPicker.tsx +3 -0
- package/src/Prebuilt/layouts/SidePane.tsx +9 -9
- package/dist/HLSView-FBGVUTA5.css +0 -2767
- package/dist/HLSView-FBGVUTA5.css.map +0 -7
- package/dist/chunk-WSDBUVSZ.js.map +0 -7
- package/dist/index.cjs.css +0 -2767
- package/dist/index.cjs.css.map +0 -7
- package/dist/index.css +0 -2767
- package/dist/index.css.map +0 -7
- package/src/Prebuilt/components/RoleChangeModal.jsx +0 -185
- /package/dist/{HLSView-5GXP76IN.js.map → HLSView-KRJMDNAF.js.map} +0 -0
@@ -34,7 +34,7 @@ import {
|
|
34
34
|
useRoomLayoutHeader,
|
35
35
|
useSidepaneToggle,
|
36
36
|
useTheme
|
37
|
-
} from "./chunk-
|
37
|
+
} from "./chunk-AFSI3LBT.js";
|
38
38
|
|
39
39
|
// src/Prebuilt/layouts/HLSView.jsx
|
40
40
|
init_define_process_env();
|
@@ -1607,4 +1607,4 @@ var HLSView_default = HLSView;
|
|
1607
1607
|
export {
|
1608
1608
|
HLSView_default as default
|
1609
1609
|
};
|
1610
|
-
//# sourceMappingURL=HLSView-
|
1610
|
+
//# sourceMappingURL=HLSView-KRJMDNAF.js.map
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import { DefaultConferencingScreen_Elements } from '@100mslive/types-prebuilt';
|
2
|
+
import { SidePaneOption } from '../../common/constants';
|
3
|
+
export declare const useSidepaneResetOnLayoutUpdate: (layoutKey: keyof DefaultConferencingScreen_Elements, sidepaneOption: SidePaneOption) => void;
|
@@ -1,2 +1,2 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
export declare const Chat: () => React.JSX.Element
|
2
|
+
export declare const Chat: () => React.JSX.Element;
|
@@ -5,7 +5,7 @@ export declare const isSameTile: ({ trackId, videoTrackID, audioTrackID, }: {
|
|
5
5
|
videoTrackID?: string | undefined;
|
6
6
|
audioTrackID?: string | undefined;
|
7
7
|
}) => boolean;
|
8
|
-
export declare const TileMenuContent: ({ videoTrackID, audioTrackID, isLocal, isScreenshare, showSpotlight, showPinAction, peerID, canMinimise, closeSheetOnClick, openNameChangeModal, }: {
|
8
|
+
export declare const TileMenuContent: ({ videoTrackID, audioTrackID, isLocal, isScreenshare, showSpotlight, showPinAction, peerID, canMinimise, closeSheetOnClick, openNameChangeModal, openRoleChangeModal, }: {
|
9
9
|
videoTrackID: string;
|
10
10
|
audioTrackID: string;
|
11
11
|
isLocal: boolean;
|
@@ -16,4 +16,5 @@ export declare const TileMenuContent: ({ videoTrackID, audioTrackID, isLocal, is
|
|
16
16
|
canMinimise?: boolean | undefined;
|
17
17
|
closeSheetOnClick?: (() => void) | undefined;
|
18
18
|
openNameChangeModal?: (() => void) | undefined;
|
19
|
+
openRoleChangeModal?: (() => void) | undefined;
|
19
20
|
}) => React.JSX.Element | null;
|