fcr-ui-scene 3.4.2 → 3.4.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/lib/common/device-store.d.ts +23 -14
- package/lib/common/device-store.js +361 -252
- package/lib/common/device-stream-store.d.ts +8 -14
- package/lib/common/device-stream-store.js +254 -116
- package/lib/common/event-store.d.ts +35 -10
- package/lib/common/event-store.js +64 -13
- package/lib/common/security-store.d.ts +47 -39
- package/lib/common/security-store.js +335 -379
- package/lib/electron/app.js +1 -0
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +4 -1
- package/lib/modules/action-bar/action-bar-collapes-items.js +38 -21
- package/lib/modules/action-bar/components/apps/useWidgetList.d.ts +7 -0
- package/lib/modules/action-bar/components/apps/useWidgetList.js +43 -0
- package/lib/modules/action-bar/components/leave/assign-host.d.ts +8 -1
- package/lib/modules/action-bar/components/leave/assign-host.js +1 -1
- package/lib/modules/action-bar/components/leave/leave-meeting.d.ts +16 -1
- package/lib/modules/action-bar/smaller.js +5 -5
- package/lib/modules/chat/chat-bar/index.css +6 -0
- package/lib/modules/chat/chat-bar/index.d.ts +3 -3
- package/lib/modules/chat/chat-bar/index.js +51 -39
- package/lib/modules/chat/chat-select/index.css +27 -7
- package/lib/modules/chat/chat-select/index.d.ts +1 -1
- package/lib/modules/chat/chat-select/index.js +18 -4
- package/lib/modules/chat/chat.d.ts +1 -2
- package/lib/modules/chat/chat.js +196 -128
- package/lib/modules/chat/components/chat-select/select-input/index.d.ts +7 -0
- package/lib/modules/chat/components/chat-select/select-input/index.js +35 -0
- package/lib/modules/chat/components/chat-select/select-item/index.d.ts +12 -0
- package/lib/modules/chat/components/chat-select/select-item/index.js +153 -0
- package/lib/modules/chat/components/chat-tabs/index.d.ts +2 -0
- package/lib/modules/chat/components/chat-tabs/index.js +61 -0
- package/lib/modules/chat/components/message-list/chat-empty/index.d.ts +2 -0
- package/lib/modules/chat/components/message-list/chat-empty/index.js +26 -0
- package/lib/modules/chat/components/message-list/history-unread-message-button/index.d.ts +7 -0
- package/lib/modules/chat/components/message-list/history-unread-message-button/index.js +55 -0
- package/lib/modules/chat/components/message-list/message-item/index.d.ts +15 -0
- package/lib/modules/chat/components/message-list/message-item/index.js +279 -0
- package/lib/modules/chat/components/message-list/scroll-bottom-button/index.d.ts +9 -0
- package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +67 -0
- package/lib/modules/chat/message-list.js +68 -51
- package/lib/modules/components/dialog-container/component/body.js +1 -2
- package/lib/modules/components/dialog-container/index.d.ts +2 -2
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.d.ts +6 -0
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +36 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.d.ts +40 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +170 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.d.ts +11 -0
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +105 -0
- package/lib/modules/components/member-window/components/member-actions/components/layout/index.d.ts +9 -0
- package/lib/modules/components/member-window/components/member-actions/components/layout/index.js +42 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.d.ts +11 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +159 -0
- package/lib/modules/components/member-window/components/member-actions/components/share-status.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-actions/components/share-status.js +32 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-info.d.ts +16 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-info.js +130 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-tag.d.ts +12 -0
- package/lib/modules/components/member-window/components/member-actions/components/user-tag.js +57 -0
- package/lib/modules/components/member-window/components/member-actions/index.d.ts +3 -0
- package/lib/modules/components/member-window/components/member-actions/index.js +122 -0
- package/lib/modules/components/member-window/components/member-actions/libs/index.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-actions/libs/index.js +24 -0
- package/lib/modules/components/member-window/components/member-actions/provider.d.ts +21 -0
- package/lib/modules/components/member-window/components/member-actions/provider.js +77 -0
- package/lib/modules/components/member-window/components/member-actions/store.d.ts +48 -0
- package/lib/modules/components/member-window/components/member-actions/store.js +306 -0
- package/lib/modules/components/member-window/components/member-board.d.ts +2 -0
- package/lib/modules/components/member-window/components/member-board.js +63 -0
- package/lib/modules/components/member-window/components/mic-volume.d.ts +2 -0
- package/lib/modules/components/member-window/components/mic-volume.js +23 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.d.ts +4 -0
- package/lib/modules/components/member-window/components/video-player/components/local-video-player.js +40 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +8 -0
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +62 -0
- package/lib/modules/components/member-window/components/video-player/index.d.ts +9 -0
- package/lib/modules/components/member-window/components/video-player/index.js +38 -0
- package/lib/modules/components/member-window/types.d.ts +78 -0
- package/lib/modules/components/member-window/types.js +6 -0
- package/lib/modules/connection-gateway/components/tabs/index.js +2 -1
- package/lib/modules/control-bar/components/meeting-details/index.js +7 -15
- package/lib/modules/control-bar/components/more-actions/index.js +5 -15
- package/lib/modules/dialog/components/system-preference/assets/bg1.png +0 -0
- package/lib/modules/dialog/components/system-preference/assets/bg2.png +0 -0
- package/lib/modules/dialog/components/system-preference/assets/fcr_png_host.png +0 -0
- package/lib/modules/dialog/components/widget/electron.d.ts +5 -0
- package/lib/modules/dialog/components/widget/electron.js +41 -0
- package/lib/modules/dialog/components/widget/index.d.ts +6 -0
- package/lib/modules/dialog/components/widget/index.js +41 -0
- package/lib/modules/dialog/type.d.ts +84 -0
- package/lib/modules/dialog/type.js +6 -0
- package/lib/modules/invite/components/pstn-invite.js +4 -13
- package/lib/modules/invite/pstn-invite.js +7 -9
- package/lib/modules/invite/store.d.ts +2 -0
- package/lib/modules/invite/store.js +6 -0
- package/lib/modules/invite/voip-invite.js +5 -6
- package/lib/modules/layout/member-window/index.css +116 -18
- package/lib/modules/layout/member-window/index.d.ts +10 -3
- package/lib/modules/layout/member-window/index.js +227 -115
- package/lib/modules/participant/attendee/index.css +0 -51
- package/lib/modules/participant/attendee/index.d.ts +8 -5
- package/lib/modules/participant/attendee/index.js +61 -15
- package/lib/modules/participant/components/attendee/components/interpreter-tag/index.d.ts +3 -0
- package/lib/modules/participant/components/attendee/components/interpreter-tag/index.js +48 -0
- package/lib/modules/participant/components/confirm-input/index.d.ts +6 -0
- package/lib/modules/participant/components/confirm-input/index.js +49 -0
- package/lib/modules/participant/components/drop-menu/util.d.ts +5 -0
- package/lib/modules/participant/components/drop-menu/util.js +28 -0
- package/lib/modules/participant/components/participants/components/footer/components/buttons.d.ts +6 -0
- package/lib/modules/participant/components/participants/components/footer/components/buttons.js +52 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +60 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +166 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +28 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +13 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +242 -0
- package/lib/modules/participant/components/participants/components/footer/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/footer/index.js +47 -0
- package/lib/modules/participant/components/participants/components/merge/index.d.ts +11 -0
- package/lib/modules/participant/components/participants/components/merge/index.js +49 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +191 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.d.ts +4 -0
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +204 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +49 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +219 -0
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +70 -0
- package/lib/modules/participant/components/participants/components/participants/index.css +104 -0
- package/lib/modules/participant/components/participants/components/participants/index.d.ts +3 -0
- package/lib/modules/participant/components/participants/components/participants/index.js +110 -0
- package/lib/modules/participant/components/participants/components/render-tab/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/render-tab/index.js +49 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.d.ts +3 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +48 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.d.ts +6 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +28 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.d.ts +7 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +39 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +69 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +135 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.d.ts +7 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +31 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.d.ts +12 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +82 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.d.ts +4 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +26 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +75 -0
- package/lib/modules/participant/components/participants/components/render-user/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/components/render-user/index.js +21 -0
- package/lib/modules/participant/components/participants/render-tab/index.d.ts +2 -0
- package/lib/modules/participant/components/participants/render-tab/index.js +49 -0
- package/lib/modules/participant/components/participants/render-user/index.d.ts +5 -0
- package/lib/modules/participant/components/participants/render-user/index.js +21 -0
- package/lib/modules/participant/components/participants/types.d.ts +96 -0
- package/lib/modules/participant/components/participants/types.js +37 -0
- package/lib/modules/participant/components/user-action/audio-button/index.d.ts +7 -0
- package/lib/modules/participant/components/user-action/audio-button/index.js +31 -0
- package/lib/modules/participant/components/user-action/move-actions-popover/index.d.ts +12 -0
- package/lib/modules/participant/components/user-action/move-actions-popover/index.js +82 -0
- package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.d.ts +4 -0
- package/lib/modules/participant/components/user-action/move-to-mainroom-button/index.js +26 -0
- package/lib/modules/share-screen/selection/index.css +4 -0
- package/lib/modules/share-screen/selection/index.js +126 -129
- package/lib/modules/share-screen/share-state-bar/index.js +1 -1
- package/lib/modules/state-bar/meeting-details.js +29 -34
- package/lib/modules/video-window/components/deviceState/index.d.ts +7 -0
- package/lib/modules/video-window/components/deviceState/index.js +75 -0
- package/lib/modules/video-window/components/members/index.css +51 -0
- package/lib/modules/video-window/components/members/index.d.ts +2 -0
- package/lib/modules/video-window/components/members/index.js +130 -0
- package/lib/modules/video-window/components/speaking/index.css +86 -0
- package/lib/modules/video-window/components/speaking/index.d.ts +3 -0
- package/lib/modules/video-window/components/speaking/index.js +48 -0
- package/lib/modules/video-window/components/topControl/index.css +35 -0
- package/lib/modules/video-window/components/topControl/index.d.ts +3 -0
- package/lib/modules/video-window/components/topControl/index.js +79 -0
- package/lib/modules/widget/index.css +17 -0
- package/lib/modules/widget/index.d.ts +10 -0
- package/lib/modules/widget/index.js +114 -0
- package/lib/modules/widget/sdk.d.ts +30 -0
- package/lib/modules/widget/sdk.js +221 -0
- package/lib/modules/widget/store.d.ts +14 -0
- package/lib/modules/widget/store.js +28 -0
- package/lib/modules/widget/type.d.ts +155 -0
- package/lib/modules/widget/type.js +6 -0
- package/lib/modules/widget/view.d.ts +2 -0
- package/lib/modules/widget/view.js +47 -0
- package/lib/modules/widget/web-widget.d.ts +29 -0
- package/lib/modules/widget/web-widget.js +234 -0
- package/lib/providers/ability-provider.d.ts +24 -0
- package/lib/providers/ability-provider.js +36 -0
- package/lib/providers/widget-provider.d.ts +44 -0
- package/lib/providers/widget-provider.js +167 -0
- package/lib/schema.d.ts +114 -0
- package/lib/schema.js +77 -0
- package/lib/shared-data-source/member-data.d.ts +126 -0
- package/lib/shared-data-source/member-data.js +465 -0
- package/lib/translations/enUS.d.ts +5 -0
- package/lib/translations/enUS.js +9 -3
- package/lib/translations/zhCN.d.ts +5 -0
- package/lib/translations/zhCN.js +13 -7
- package/lib/utilities/extract.d.ts +1 -1
- package/lib/utilities/logger.d.ts +8 -0
- package/lib/utilities/logger.js +42 -0
- package/lib/utilities/meeting-detail.d.ts +2 -0
- package/lib/utilities/meeting-detail.js +56 -0
- package/lib/utilities/validate-params.d.ts +2 -0
- package/lib/utilities/validate-params.js +16 -0
- package/lib/widget-sdk.d.ts +2 -0
- package/lib/widget-sdk.js +13 -0
- package/package.json +5 -5
|
@@ -72,6 +72,48 @@
|
|
|
72
72
|
inset: 0;
|
|
73
73
|
font-size: 0;
|
|
74
74
|
}
|
|
75
|
+
.fcr-member-window-body-render-video-loading {
|
|
76
|
+
border-radius: 10px;
|
|
77
|
+
position: absolute;
|
|
78
|
+
z-index: 999;
|
|
79
|
+
display: flex;
|
|
80
|
+
top: 10px;
|
|
81
|
+
right: 13px;
|
|
82
|
+
max-width: 447px;
|
|
83
|
+
height: fit-content;
|
|
84
|
+
transition: all 0.2s;
|
|
85
|
+
padding: 6px 8px;
|
|
86
|
+
gap: 14px;
|
|
87
|
+
background: #748bff;
|
|
88
|
+
align-items: center;
|
|
89
|
+
justify-content: center;
|
|
90
|
+
}
|
|
91
|
+
.fcr-member-window-body-render-video-loading span {
|
|
92
|
+
color: #fff;
|
|
93
|
+
font-size: 14px;
|
|
94
|
+
line-height: 18px;
|
|
95
|
+
font-weight: 600;
|
|
96
|
+
text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
|
|
97
|
+
white-space: pre-wrap;
|
|
98
|
+
}
|
|
99
|
+
.fcr-member-window-body-render-video-loading .render-video-loading-icon {
|
|
100
|
+
animation: loading-rotate 1s linear infinite;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
@keyframes loading-rotate {
|
|
104
|
+
from {
|
|
105
|
+
transform: rotate(0deg);
|
|
106
|
+
}
|
|
107
|
+
to {
|
|
108
|
+
transform: rotate(360deg);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
.fcr-member-window-body.fcr-member-window-body-video-remote {
|
|
112
|
+
visibility: hidden;
|
|
113
|
+
}
|
|
114
|
+
.fcr-member-window-body.fcr-member-window-body-video-remote-render {
|
|
115
|
+
visibility: visible;
|
|
116
|
+
}
|
|
75
117
|
.fcr-member-window-excitation {
|
|
76
118
|
position: absolute;
|
|
77
119
|
inset: 0;
|
|
@@ -83,7 +125,7 @@
|
|
|
83
125
|
opacity: 1;
|
|
84
126
|
}
|
|
85
127
|
.fcr-member-window-pin {
|
|
86
|
-
display:
|
|
128
|
+
display: none;
|
|
87
129
|
justify-content: center;
|
|
88
130
|
align-items: center;
|
|
89
131
|
position: absolute;
|
|
@@ -93,12 +135,13 @@
|
|
|
93
135
|
height: 26px;
|
|
94
136
|
border-radius: var(--fcr_cornerradius_xs);
|
|
95
137
|
background-color: var(--fcr_ui_scene_view_toast);
|
|
96
|
-
opacity: 0;
|
|
97
|
-
transition: opacity 0.2s;
|
|
138
|
+
/* opacity: 0; */
|
|
139
|
+
/* transition: opacity 0.2s; */
|
|
98
140
|
z-index: 3;
|
|
99
141
|
}
|
|
100
142
|
.fcr-member-window-pin-show {
|
|
101
|
-
opacity: 1;
|
|
143
|
+
/* opacity: 1; */
|
|
144
|
+
display: flex;
|
|
102
145
|
}
|
|
103
146
|
.fcr-member-board:hover .fcr-user-window-actions-top,
|
|
104
147
|
.fcr-member-window:hover .fcr-user-window-actions-top {
|
|
@@ -110,14 +153,19 @@
|
|
|
110
153
|
justify-content: center;
|
|
111
154
|
background-color: var(--fcr_ui_scene_ramp_green6);
|
|
112
155
|
border-radius: var(--fcr_cornerradius_xxs);
|
|
113
|
-
padding: 0 1px;
|
|
156
|
+
/* padding: 0 1px; */
|
|
114
157
|
height: 18px;
|
|
115
158
|
margin-right: 2px;
|
|
116
159
|
}
|
|
117
160
|
.fcr-member-window-members-sharebtn-show {
|
|
118
|
-
margin-left:
|
|
161
|
+
margin-left: 0px;
|
|
119
162
|
display: flex;
|
|
120
163
|
}
|
|
164
|
+
|
|
165
|
+
.fcr-member-window-members-sharebtn-large {
|
|
166
|
+
height: 24px;
|
|
167
|
+
margin-right: 6px;
|
|
168
|
+
}
|
|
121
169
|
/* fcr-member-window-action start */
|
|
122
170
|
|
|
123
171
|
.fcr-user-window-actions {
|
|
@@ -140,20 +188,31 @@
|
|
|
140
188
|
.fcr-user-window-actions-bottom {
|
|
141
189
|
position: absolute;
|
|
142
190
|
inset: auto auto 4px 4px;
|
|
191
|
+
z-index: 1;
|
|
192
|
+
max-width: calc(100% - 8px);
|
|
193
|
+
height: 18px;
|
|
194
|
+
transition: opacity 0.2s;
|
|
195
|
+
opacity: 1;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.fcr-user-window-actions-bottom-layout {
|
|
143
199
|
color: var(--fcr_ui_scene_icontext1);
|
|
144
|
-
border-radius: var(--fcr_cornerradius_xxs);
|
|
145
|
-
background-color: var(--fcr_ui_scene_view_toast);
|
|
146
|
-
backdrop-filter: blur(25px);
|
|
147
200
|
font-weight: var(--fcr_font_weight_m);
|
|
148
|
-
font-size:
|
|
201
|
+
font-size: 12px;
|
|
202
|
+
backdrop-filter: blur(25px);
|
|
149
203
|
display: inline-flex;
|
|
150
204
|
align-items: center;
|
|
151
|
-
max-width: calc(100% - 8px);
|
|
152
|
-
height: 18px;
|
|
153
205
|
overflow: hidden;
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
206
|
+
}
|
|
207
|
+
.fcr-user-window-actions-bottom-layout-info {
|
|
208
|
+
border-radius: var(--fcr_cornerradius_xs);
|
|
209
|
+
background-color: var(--fcr_ui_scene_view_toast);
|
|
210
|
+
display: inline-flex;
|
|
211
|
+
align-items: center;
|
|
212
|
+
overflow: hidden;
|
|
213
|
+
}
|
|
214
|
+
.fcr-user-window-actions-bottom-interpreter-tag {
|
|
215
|
+
margin-left: 8px;
|
|
157
216
|
}
|
|
158
217
|
.fcr-member-board .fcr-user-window-actions-bottom-show,
|
|
159
218
|
.fcr-member-window .fcr-user-window-actions-bottom-show {
|
|
@@ -165,13 +224,12 @@
|
|
|
165
224
|
}
|
|
166
225
|
.fcr-member-window-gallery .fcr-user-window-actions-bottom {
|
|
167
226
|
height: 24px;
|
|
168
|
-
border-radius: var(--fcr_cornerradius_s);
|
|
169
227
|
font-size: 12px;
|
|
170
228
|
}
|
|
171
229
|
|
|
172
230
|
.fcr-user-window-actions-tag {
|
|
173
231
|
height: 18px;
|
|
174
|
-
border-radius: var(--
|
|
232
|
+
border-radius: var(--fcr_cornerradius_xs);
|
|
175
233
|
display: inline-flex;
|
|
176
234
|
align-items: center;
|
|
177
235
|
white-space: nowrap;
|
|
@@ -179,13 +237,14 @@
|
|
|
179
237
|
|
|
180
238
|
.fcr-member-window-gallery .fcr-user-window-actions-tag {
|
|
181
239
|
height: 24px;
|
|
182
|
-
border-radius: var(--
|
|
240
|
+
border-radius: var(--fcr_cornerradius_xs);
|
|
183
241
|
}
|
|
184
242
|
|
|
185
243
|
.fcr-user-window-actions-tag-host {
|
|
186
244
|
color: var(--fcr_ui_scene_white10);
|
|
187
245
|
background: linear-gradient(90deg, #4262ff, #7c79ff);
|
|
188
246
|
padding: 0 8px;
|
|
247
|
+
/* margin-right: 10px; */
|
|
189
248
|
}
|
|
190
249
|
|
|
191
250
|
.fcr-user-window-actions-tag-host:has(svg) {
|
|
@@ -251,9 +310,30 @@
|
|
|
251
310
|
overflow: hidden;
|
|
252
311
|
text-overflow: ellipsis;
|
|
253
312
|
}
|
|
313
|
+
|
|
314
|
+
.fcr-user-window-actions-bottom .fcr-user-window-actions-name.ml-5 {
|
|
315
|
+
margin-left: 5px;
|
|
316
|
+
}
|
|
317
|
+
|
|
254
318
|
.fcr-user-window-actions-name-isme {
|
|
255
319
|
font-weight: normal;
|
|
256
320
|
}
|
|
321
|
+
|
|
322
|
+
.fcr-user-window-actions-bottom .fcr-user-window-actions-name-rename {
|
|
323
|
+
width: 20px;
|
|
324
|
+
height: 20px;
|
|
325
|
+
cursor: pointer;
|
|
326
|
+
display: none;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.fcr-user-window-actions-bottom:hover .fcr-user-window-actions-name-rename {
|
|
330
|
+
display: block;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.member-window-actions__more-actions {
|
|
334
|
+
padding: 0;
|
|
335
|
+
}
|
|
336
|
+
|
|
257
337
|
/* .fcr-member-window-gallery .fcr-user-window-actions-name {
|
|
258
338
|
padding: 0 4px;
|
|
259
339
|
} */
|
|
@@ -319,3 +399,21 @@
|
|
|
319
399
|
display: flex;
|
|
320
400
|
flex-flow: column-reverse nowrap;
|
|
321
401
|
}
|
|
402
|
+
|
|
403
|
+
.fcr-user-window-actions-tag_large {
|
|
404
|
+
margin-bottom: 10px;
|
|
405
|
+
}
|
|
406
|
+
.fcr-user-window-actions-bottom .fcr-device-settings-video__video-flip-container {
|
|
407
|
+
position: static;
|
|
408
|
+
margin-left: 2px;
|
|
409
|
+
}
|
|
410
|
+
.fcr-user-window-actions-bottom .fcr-device-settings-video__video-flip-container:hover {
|
|
411
|
+
background: var(--fcr_ui_scene_white10);
|
|
412
|
+
}
|
|
413
|
+
.fcr-user-window-actions-bottom
|
|
414
|
+
.fcr-device-settings-video__video-flip-container
|
|
415
|
+
.fcr-clickable-icon-small {
|
|
416
|
+
width: 24px;
|
|
417
|
+
height: 24px;
|
|
418
|
+
border-radius: var(--fcr_cornerradius_xs);
|
|
419
|
+
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { FcrUserRole } from '
|
|
1
|
+
import { FcrUserRole } from 'fcr-core/lib/type';
|
|
2
2
|
import { FcrUIVideoWindowData } from '../type';
|
|
3
3
|
import './index.css';
|
|
4
4
|
import { AgoraRtcRenderMode, AgoraRtcVideoStreamType } from 'agora-rte-sdk/lib/core/rtc/type';
|
|
5
5
|
import { FcrVideoWindowPreviewType } from '../../video-window/type';
|
|
6
|
+
import { FcrInterpreterUserInfo } from 'fcr-core/lib/room-control/interpreter-control/types';
|
|
6
7
|
export interface MemberWindowCustomProps {
|
|
7
8
|
showAvatar: boolean;
|
|
8
9
|
onDoubleClick: () => void;
|
|
@@ -19,7 +20,7 @@ export interface MemberWindowProps extends MemberWindowCustomProps {
|
|
|
19
20
|
windowData: FcrUIVideoWindowData;
|
|
20
21
|
}
|
|
21
22
|
export declare const MemberWindow: ({ showAvatar, windowData, onDoubleClick, slot, width, height, canShowSpeakerSpotlight, onRemovePin, memberWindowPreviewType, videoRenderMode, videoStreamType, }: MemberWindowProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export declare const MemberWindowActions: ({ windowData, iconSize, windowSize, openPrivateChat, localUserRole, sendParticipantEvent, muteAudio, hasPinnedStream, allowedOperations, setVideoOrientation, showActionBottomLabel, isShowActionAudio, actionAudioTag, onVisibleChanged, videoWindowCurrentWidth, videoWindowCurrentHeight, videoWindowPreviewType, showRotation, }: {
|
|
23
|
+
export declare const MemberWindowActions: ({ windowData, iconSize, windowSize, openPrivateChat, localUserRole, sendParticipantEvent, muteAudio, hasPinnedStream, allowedOperations, setVideoOrientation, showActionBottomLabel, isShowActionAudio, actionAudioTag, onVisibleChanged, videoWindowCurrentWidth, videoWindowCurrentHeight, videoWindowPreviewType, showRotation, interpreterUsers, interpreterState, handleRename, renderListLength, }: {
|
|
23
24
|
windowData: FcrUIVideoWindowData;
|
|
24
25
|
iconSize: number;
|
|
25
26
|
windowSize: "large" | "normal";
|
|
@@ -38,6 +39,10 @@ export declare const MemberWindowActions: ({ windowData, iconSize, windowSize, o
|
|
|
38
39
|
videoWindowCurrentHeight?: number;
|
|
39
40
|
videoWindowPreviewType?: FcrVideoWindowPreviewType;
|
|
40
41
|
showRotation: boolean;
|
|
42
|
+
interpreterUsers: FcrInterpreterUserInfo[];
|
|
43
|
+
interpreterState: boolean;
|
|
44
|
+
handleRename: (userId: string) => void;
|
|
45
|
+
renderListLength?: number;
|
|
41
46
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
42
47
|
interface MemberBoardProps {
|
|
43
48
|
slot: React.ReactNode;
|
|
@@ -56,12 +61,14 @@ export declare const FcrUIVideoPlayer: (props: {
|
|
|
56
61
|
hasVideoStream: boolean;
|
|
57
62
|
videoStreamType: AgoraRtcVideoStreamType;
|
|
58
63
|
renderMode: AgoraRtcRenderMode;
|
|
64
|
+
hasScreenSharing: boolean;
|
|
59
65
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
60
66
|
export declare const FcrUILocalVideoPlayer: () => import("react/jsx-runtime").JSX.Element;
|
|
61
|
-
export declare const FcrUIRemoteVideoPlayer: ({ streamId, hasVideoStream, videoStreamType, renderMode, }: {
|
|
67
|
+
export declare const FcrUIRemoteVideoPlayer: ({ streamId, hasVideoStream, videoStreamType, renderMode, hasScreenSharing, }: {
|
|
62
68
|
streamId: string;
|
|
63
69
|
hasVideoStream: boolean;
|
|
64
70
|
videoStreamType: AgoraRtcVideoStreamType;
|
|
65
71
|
renderMode: AgoraRtcRenderMode;
|
|
72
|
+
hasScreenSharing: boolean;
|
|
66
73
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
67
74
|
export {};
|