@naviedu/room-platform-react 0.0.48 → 0.0.49
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/index.d.ts +8 -0
- package/index.esm.js +31 -19
- package/package.json +1 -1
- package/styles.css +1 -1
package/index.d.ts
CHANGED
|
@@ -618,6 +618,14 @@ export declare type RoomPlatformShellProps = {
|
|
|
618
618
|
sidebar: ReactNode;
|
|
619
619
|
};
|
|
620
620
|
|
|
621
|
+
export declare function RoomPlatformSidebarLayout({ header, children, className }: RoomPlatformSidebarLayoutProps): JSX.Element;
|
|
622
|
+
|
|
623
|
+
export declare type RoomPlatformSidebarLayoutProps = {
|
|
624
|
+
header?: ReactNode;
|
|
625
|
+
children: ReactNode;
|
|
626
|
+
className?: string;
|
|
627
|
+
};
|
|
628
|
+
|
|
621
629
|
export declare type RoomPlatformSizing = 'viewport' | 'container';
|
|
622
630
|
|
|
623
631
|
export declare function RoomPlatformSpeakQueue({ activeSpeakerParticipantIdentity, activeSpeakerSlot, canApproveSpeak, canClearActiveSpeaker, canRejectSpeak, isClearingActiveSpeaker, onApproveSpeakRequest, onClearActiveSpeaker, onRejectSpeakRequest, participants, raisedHandParticipantIdentities, }: {
|