@100mslive/roomkit-react 0.1.18 → 0.1.19-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{HLSView-XU2WQ4VV.js → HLSView-UBVLOPNY.js} +2 -2
- package/dist/Prebuilt/common/constants.d.ts +2 -6
- package/dist/Prebuilt/components/VirtualBackground/VBPicker.d.ts +4 -2
- package/dist/Prebuilt/components/hooks/useChatBlacklist.d.ts +4 -1
- package/dist/{chunk-2FX6MFDM.js → chunk-VU2CQFCB.js} +5548 -78
- package/dist/chunk-VU2CQFCB.js.map +7 -0
- package/dist/index.cjs.js +5549 -79
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +47 -38
- package/dist/meta.esbuild.json +54 -45
- package/package.json +6 -6
- package/src/Prebuilt/common/constants.ts +4 -4
- package/src/Prebuilt/components/Chat/ChatActions.tsx +4 -2
- package/src/Prebuilt/components/Chat/ChatFooter.tsx +2 -2
- package/src/Prebuilt/components/Chat/ChatStates.tsx +2 -2
- package/src/Prebuilt/components/Polls/CreateQuestions/QuestionForm.jsx +3 -3
- package/src/Prebuilt/components/Polls/Voting/Leaderboard.tsx +9 -1
- package/src/Prebuilt/components/Polls/Voting/LeaderboardEntry.tsx +6 -6
- package/src/Prebuilt/components/Polls/Voting/QuestionCard.jsx +20 -23
- package/src/Prebuilt/components/VirtualBackground/VBPicker.tsx +5 -3
- package/src/Prebuilt/components/hooks/useChatBlacklist.ts +2 -2
- package/src/Prebuilt/layouts/SidePane.tsx +6 -2
- package/src/Prebuilt/provider/roomLayoutProvider/index.tsx +13 -2
- package/dist/chunk-2FX6MFDM.js.map +0 -7
- /package/dist/{HLSView-XU2WQ4VV.js.map → HLSView-UBVLOPNY.js.map} +0 -0
@@ -23,7 +23,7 @@ import {
|
|
23
23
|
styled,
|
24
24
|
usePollViewToggle,
|
25
25
|
useTheme
|
26
|
-
} from "./chunk-
|
26
|
+
} from "./chunk-VU2CQFCB.js";
|
27
27
|
|
28
28
|
// src/Prebuilt/layouts/HLSView.jsx
|
29
29
|
init_define_process_env();
|
@@ -969,4 +969,4 @@ var HLSView_default = HLSView;
|
|
969
969
|
export {
|
970
970
|
HLSView_default as default
|
971
971
|
};
|
972
|
-
//# sourceMappingURL=HLSView-
|
972
|
+
//# sourceMappingURL=HLSView-UBVLOPNY.js.map
|
@@ -101,15 +101,11 @@ export declare enum INTERACTION_TYPE {
|
|
101
101
|
}
|
102
102
|
export declare enum QUESTION_TYPE_TITLE {
|
103
103
|
'single-choice' = "Single Choice",
|
104
|
-
'multiple-choice' = "Multiple Choice"
|
105
|
-
'short-answer' = "Short Answer",
|
106
|
-
'long-answer' = "Long Answer"
|
104
|
+
'multiple-choice' = "Multiple Choice"
|
107
105
|
}
|
108
106
|
export declare enum QUESTION_TYPE {
|
109
107
|
SINGLE_CHOICE = "single-choice",
|
110
|
-
MULTIPLE_CHOICE = "multiple-choice"
|
111
|
-
SHORT_ANSWER = "short-answer",
|
112
|
-
LONG_ANSWER = "long-answer"
|
108
|
+
MULTIPLE_CHOICE = "multiple-choice"
|
113
109
|
}
|
114
110
|
export declare const ROLE_CHANGE_DECLINED = "role_change_declined";
|
115
111
|
export declare const DEFAULT_PORTAL_CONTAINER = "#prebuilt-container";
|
@@ -1,3 +1,5 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import {
|
3
|
-
export declare const VBPicker: ({
|
2
|
+
import { VirtualBackgroundMedia } from '@100mslive/types-prebuilt/elements/virtual_background';
|
3
|
+
export declare const VBPicker: ({ backgroundMedia }: {
|
4
|
+
backgroundMedia: VirtualBackgroundMedia[];
|
5
|
+
}) => React.JSX.Element | null;
|
@@ -3,4 +3,7 @@ export declare const useChatBlacklist: (sessionStoreKey: SESSION_STORE_KEY.CHAT_
|
|
3
3
|
blacklistItem: (blacklistID: string) => Promise<void>;
|
4
4
|
blacklistedIDs: any;
|
5
5
|
};
|
6
|
-
export declare const
|
6
|
+
export declare const useIsPeerBlacklisted: ({ local, peerCustomerUserId }: {
|
7
|
+
local?: boolean | undefined;
|
8
|
+
peerCustomerUserId?: string | undefined;
|
9
|
+
}) => any;
|