@rtsee/ngx 0.0.73 → 0.0.75
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/ngx/fesm2022/rtsee-ngx.mjs +123 -58
- package/dist/ngx/fesm2022/rtsee-ngx.mjs.map +1 -1
- package/dist/ngx/index.d.ts +14 -9
- package/dist/ngx/src/lib/theme/containers/shell.scss +22 -2
- package/dist/ngx/src/lib/theme/presentation/index.scss +2 -0
- package/dist/ngx/src/lib/theme/presentation/join-call.scss +46 -0
- package/dist/ngx/src/lib/theme/presentation/presentation.scss +4 -1
- package/dist/ngx/src/lib/theme/presentation/settings.scss +72 -0
- package/dist/ngx/src/lib/theme/presentation/story-thumbnail.scss +6 -1
- package/dist/ngx/src/lib/theme/video-chat/video-chat.scss +20 -16
- package/package.json +8 -8
package/dist/ngx/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as i46 from '@angular/router';
|
|
|
10
10
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
11
11
|
import { RTSeeEventsDashboard, RTSeeDashboardClientSession, RTSeeDashboardEvent, RTSeeDashboardClient } from '@rtsee/events-dashboard';
|
|
12
12
|
import { RTSee, INavigationConfig, IRouteConfig } from '@rtsee/factory';
|
|
13
|
-
import { RTSeePresentation, RTSeeStory, RTSeeStorySlide } from '@rtsee/presentation';
|
|
13
|
+
import { RTSeePresentation, RTSeeStory, RTSeePresentationSettings, RTSeeStorySlide } from '@rtsee/presentation';
|
|
14
14
|
import * as i43 from '@angular/forms';
|
|
15
15
|
import { FormArray, FormGroup, FormControl, FormBuilder } from '@angular/forms';
|
|
16
16
|
import * as i42 from '@angular/common';
|
|
@@ -36,12 +36,6 @@ declare class RTSeeControlsComponent {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
declare class RtseeSettingsComponent implements OnInit {
|
|
39
|
-
availableAudioInputDevices: MediaDeviceInfo[];
|
|
40
|
-
availableVideoInputDevices: MediaDeviceInfo[];
|
|
41
|
-
availableAudioOutputDevices: MediaDeviceInfo[];
|
|
42
|
-
audioOutputDeviceId?: string;
|
|
43
|
-
videoInputDeviceId?: string;
|
|
44
|
-
audioInputDeviceId?: string;
|
|
45
39
|
rtSee: RTSeeConference;
|
|
46
40
|
fullScreenMode: boolean;
|
|
47
41
|
constructor();
|
|
@@ -468,6 +462,15 @@ declare class ChatThumbnailComponent {
|
|
|
468
462
|
messenger: RTSeeMessenger;
|
|
469
463
|
readonly RTSeeChatTypes: typeof RTSeeChatTypes;
|
|
470
464
|
constructor(timeFormatService: TimeFormatHelperService);
|
|
465
|
+
protected readonly COMMON_CONSTANTS: {
|
|
466
|
+
minPasswordLength: number;
|
|
467
|
+
requestItemLimit: number;
|
|
468
|
+
customTimeFormat: string;
|
|
469
|
+
customDateFormat: string;
|
|
470
|
+
customDateFormatDaysJs: string;
|
|
471
|
+
customDateTimeFormat: string;
|
|
472
|
+
defaultProfileImgUrl: string;
|
|
473
|
+
};
|
|
471
474
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatThumbnailComponent, never>;
|
|
472
475
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChatThumbnailComponent, "rtsee-chat-thumbnail", never, { "chat": { "alias": "chat"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
473
476
|
}
|
|
@@ -561,12 +564,13 @@ declare class SearchComponent implements OnInit, OnDestroy {
|
|
|
561
564
|
|
|
562
565
|
declare class StoryPlayerComponent implements OnInit, AfterViewInit {
|
|
563
566
|
story: RTSeeStory;
|
|
567
|
+
settings: RTSeePresentationSettings;
|
|
564
568
|
swiperEl: ElementRef<HTMLElement>;
|
|
565
569
|
constructor();
|
|
566
570
|
ngOnInit(): void;
|
|
567
571
|
ngAfterViewInit(): void;
|
|
568
572
|
static ɵfac: i0.ɵɵFactoryDeclaration<StoryPlayerComponent, never>;
|
|
569
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StoryPlayerComponent, "rtsee-story-player", never, { "story": { "alias": "story"; "required": false; }; }, {}, never, never, true, never>;
|
|
573
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StoryPlayerComponent, "rtsee-story-player", never, { "story": { "alias": "story"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, true, never>;
|
|
570
574
|
}
|
|
571
575
|
|
|
572
576
|
declare class SlideComponent implements AfterViewInit {
|
|
@@ -576,13 +580,14 @@ declare class SlideComponent implements AfterViewInit {
|
|
|
576
580
|
scrollingDown: boolean;
|
|
577
581
|
story: RTSeeStory;
|
|
578
582
|
slide: RTSeeStorySlide;
|
|
583
|
+
settings: RTSeePresentationSettings;
|
|
579
584
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
580
585
|
slideRewindClicked(forward: boolean): void;
|
|
581
586
|
ngAfterViewInit(): void;
|
|
582
587
|
onScroll(target: EventTarget | null): void;
|
|
583
588
|
private handleScroll;
|
|
584
589
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlideComponent, never>;
|
|
585
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SlideComponent, "rtsee-slide", never, { "story": { "alias": "story"; "required": false; }; "slide": { "alias": "slide"; "required": false; }; }, {}, never, never, true, never>;
|
|
590
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlideComponent, "rtsee-slide", never, { "story": { "alias": "story"; "required": false; }; "slide": { "alias": "slide"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, true, never>;
|
|
586
591
|
}
|
|
587
592
|
|
|
588
593
|
declare class StoryThumbnailComponent {
|
|
@@ -11,10 +11,26 @@
|
|
|
11
11
|
display: block;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
.rtsee-presentation-settings {
|
|
15
|
+
top: $video-container-height;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.rtsee-join-call {
|
|
19
|
+
.rtsee-join-call-button {
|
|
20
|
+
display: none;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.rtsee-share-call-link {
|
|
24
|
+
display: block;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
14
28
|
&.rtsee-shell-messenger-active {
|
|
15
29
|
.rtsee-messenger-container {
|
|
16
|
-
.rtsee-messenger
|
|
17
|
-
|
|
30
|
+
.rtsee-messenger {
|
|
31
|
+
.rtsee-messenger-header-container {
|
|
32
|
+
top: $video-container-height;
|
|
33
|
+
}
|
|
18
34
|
}
|
|
19
35
|
}
|
|
20
36
|
}
|
|
@@ -28,6 +44,10 @@
|
|
|
28
44
|
}
|
|
29
45
|
}
|
|
30
46
|
|
|
47
|
+
.rtsee-share-call-link {
|
|
48
|
+
display: none;
|
|
49
|
+
}
|
|
50
|
+
|
|
31
51
|
&.rtsee-shell-messenger-active {
|
|
32
52
|
.rtsee-shell-panel {
|
|
33
53
|
display: block;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
@import "./variables";
|
|
2
|
+
|
|
3
|
+
.rtsee-join-call {
|
|
4
|
+
.rtsee-join-call-button {
|
|
5
|
+
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.rtsee-share-call-link {
|
|
9
|
+
.rtsee-share-call-explain-section {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: row;
|
|
12
|
+
gap: $rts-offset-sm;
|
|
13
|
+
align-items: center;
|
|
14
|
+
margin-bottom: $rts-offset-sm;
|
|
15
|
+
|
|
16
|
+
.rtsee-share-call-explain-section-icon {
|
|
17
|
+
flex: 1;
|
|
18
|
+
text-align: center;
|
|
19
|
+
|
|
20
|
+
.rtsee-link-icon {
|
|
21
|
+
width: 40px;
|
|
22
|
+
font-size: 1.4rem;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.rtsee-share-call-explain-section-text {
|
|
27
|
+
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.rtsee-share-call-link-section {
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: row;
|
|
34
|
+
gap: $rts-offset-sm;
|
|
35
|
+
align-items: center;
|
|
36
|
+
|
|
37
|
+
.rtsee-share-call-link-copy-btn {
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.rtsee-share-call-link-text {
|
|
42
|
+
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
@@ -60,12 +60,15 @@
|
|
|
60
60
|
|
|
61
61
|
.rtsee-presentation-header-active-story-info-settings-icon {
|
|
62
62
|
font-size: 1.8rem;
|
|
63
|
+
padding: 7px;
|
|
64
|
+
background-color: rgba(0, 0, 0, 0.06);
|
|
65
|
+
border-radius: 50%;
|
|
63
66
|
}
|
|
64
67
|
}
|
|
65
68
|
}
|
|
66
69
|
|
|
67
70
|
.rtsee-presentation-room-block {
|
|
68
|
-
|
|
71
|
+
padding: $rts-offset-sm;
|
|
69
72
|
}
|
|
70
73
|
|
|
71
74
|
@media screen and (min-width: $rts-break-md) {
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
@import "./variables";
|
|
2
|
+
|
|
3
|
+
.rtsee-presentation-settings {
|
|
4
|
+
position: fixed;
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
top: 0;
|
|
8
|
+
left: 0;
|
|
9
|
+
bottom: 0;
|
|
10
|
+
right: 0;
|
|
11
|
+
z-index: 305; // 300 = story-player footer
|
|
12
|
+
padding: $rts-offset-sm;
|
|
13
|
+
overflow: auto;
|
|
14
|
+
background-color: #ffffff;
|
|
15
|
+
|
|
16
|
+
.rtsee-presentation-settings-header {
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: row;
|
|
19
|
+
justify-content: space-between;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.rtsee-presentation-rooms {
|
|
23
|
+
margin-bottom: $rts-offset-md;
|
|
24
|
+
|
|
25
|
+
.rtsee-presentation-settings-rooms-list {
|
|
26
|
+
margin-bottom: $rts-offset-md;
|
|
27
|
+
|
|
28
|
+
.rtsee-presentation-settings-rooms-list-item {
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-direction: row;
|
|
31
|
+
justify-content: left;
|
|
32
|
+
align-items: center;
|
|
33
|
+
gap: $rts-offset-sm;
|
|
34
|
+
|
|
35
|
+
.rtsee-presentation-settings-rooms-list-item-image {
|
|
36
|
+
width: $rts-new-user-avatar-d-sm;
|
|
37
|
+
height: $rts-new-user-avatar-d-sm;
|
|
38
|
+
border-radius: 50%;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.rtsee-presentation-sound-settings {
|
|
47
|
+
.rtsee-presentation-sound-settings-inner {
|
|
48
|
+
display: flex;
|
|
49
|
+
flex-direction: row;
|
|
50
|
+
align-items: center;
|
|
51
|
+
gap: $rts-offset-md;
|
|
52
|
+
|
|
53
|
+
.rtsee-presentation-sound-settings-inner-left {
|
|
54
|
+
flex: 1;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.rtsee-presentation-sound-settings-inner-right {
|
|
58
|
+
width: auto;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.rtsee-presentation-font-size-settings {
|
|
64
|
+
.rtsee-presentation-font-size-range {
|
|
65
|
+
margin-bottom: $rts-offset-md;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@media screen and (min-width: $rts-break-md) {
|
|
70
|
+
position: absolute;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -10,7 +10,7 @@ $own-video-container-width: $video-container-width / $own-video-divider;
|
|
|
10
10
|
$own-video-container-height: $video-container-height / $own-video-divider;
|
|
11
11
|
$container-offset: 16px;
|
|
12
12
|
$container-inner-offset: 8px;
|
|
13
|
-
$controls-panel-height:
|
|
13
|
+
$controls-panel-height: 69px;
|
|
14
14
|
$expanded-controls-panel-height: 84px;
|
|
15
15
|
$select-border-radius: 4px;
|
|
16
16
|
$border-radius: 8px;
|
|
@@ -89,6 +89,7 @@ $expanded-peer-wrapper-offset: 4px;
|
|
|
89
89
|
bottom: - $controls-panel-height;
|
|
90
90
|
transition: bottom 0.1s;
|
|
91
91
|
text-align: center;
|
|
92
|
+
z-index: 1;
|
|
92
93
|
}
|
|
93
94
|
|
|
94
95
|
.rtsee-window-controls {
|
|
@@ -97,24 +98,29 @@ $expanded-peer-wrapper-offset: 4px;
|
|
|
97
98
|
right: $container-inner-offset;
|
|
98
99
|
transition: top 0.1s;
|
|
99
100
|
z-index: 4;
|
|
101
|
+
cursor: pointer;
|
|
102
|
+
|
|
103
|
+
.rtsee-ripple-button {
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
|
|
106
|
+
&:hover {
|
|
107
|
+
opacity: 0.7;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
100
111
|
|
|
101
112
|
.rtsee-window-controls-button {
|
|
102
113
|
margin-left: $container-inner-offset;
|
|
103
|
-
background-color: rgba(0,0,0,0.7);
|
|
114
|
+
background-color: rgba(0, 0, 0, 0.7);
|
|
104
115
|
color: #ffffff;
|
|
116
|
+
border: none;
|
|
117
|
+
outline: 0;
|
|
118
|
+
border-radius: 50%;
|
|
119
|
+
height: 45px;
|
|
120
|
+
width: 45px;
|
|
105
121
|
}
|
|
106
122
|
}
|
|
107
123
|
|
|
108
|
-
.rtsee-settings-container {
|
|
109
|
-
position: absolute;
|
|
110
|
-
top: 0;
|
|
111
|
-
right: 0;
|
|
112
|
-
bottom: 0;
|
|
113
|
-
left: 0;
|
|
114
|
-
overflow: auto;
|
|
115
|
-
z-index: 4;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
124
|
&.rtsee-conference-shell-no-companions {
|
|
119
125
|
.rtsee-local-peer {
|
|
120
126
|
box-sizing: border-box;
|
|
@@ -235,10 +241,8 @@ $expanded-peer-wrapper-offset: 4px;
|
|
|
235
241
|
background-position: center;
|
|
236
242
|
transition: background 0.2s;
|
|
237
243
|
outline: none;
|
|
244
|
+
line-height: 0;
|
|
238
245
|
|
|
239
|
-
&:hover {
|
|
240
|
-
background: rgba(245,245,245,.1) radial-gradient(circle, transparent 1%, rgba(245,245,245,.1) 1%) center/15000%;
|
|
241
|
-
}
|
|
242
246
|
&:active {
|
|
243
247
|
background-size: 100%;
|
|
244
248
|
transition: background 0s;
|
|
@@ -253,7 +257,7 @@ $expanded-peer-wrapper-offset: 4px;
|
|
|
253
257
|
}
|
|
254
258
|
|
|
255
259
|
.material-icons-outlined {
|
|
256
|
-
font-size:
|
|
260
|
+
font-size: 26px;
|
|
257
261
|
}
|
|
258
262
|
|
|
259
263
|
&.rtsee-conference-shell-expanded {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.75",
|
|
3
3
|
"name": "@rtsee/ngx",
|
|
4
4
|
"module": "./dist/ngx/fesm2022/rtsee-ngx.mjs",
|
|
5
5
|
"types": "./dist/ngx/index.d.ts",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"@angular/platform-browser-dynamic": "^20.1.2",
|
|
35
35
|
"@angular/router": "^20.1.2",
|
|
36
36
|
"@primeuix/themes": "^1.2.3",
|
|
37
|
-
"@rtsee/common": "^0.0.
|
|
38
|
-
"@rtsee/conference": "^0.0.
|
|
39
|
-
"@rtsee/core": "^0.0.
|
|
40
|
-
"@rtsee/events-dashboard": "^0.0.
|
|
41
|
-
"@rtsee/factory": "^0.0.
|
|
42
|
-
"@rtsee/messenger": "^0.0.
|
|
37
|
+
"@rtsee/common": "^0.0.46",
|
|
38
|
+
"@rtsee/conference": "^0.0.47",
|
|
39
|
+
"@rtsee/core": "^0.0.90",
|
|
40
|
+
"@rtsee/events-dashboard": "^0.0.80",
|
|
41
|
+
"@rtsee/factory": "^0.0.89",
|
|
42
|
+
"@rtsee/messenger": "^0.0.80",
|
|
43
43
|
"@rtsee/signaling-client": "^0.0.66",
|
|
44
44
|
"dayjs": "^1.11.9",
|
|
45
45
|
"ngx-autosize": "^2.0.4",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "b55b39b9292738c9b7782c406fcb58bc19bf2fbc"
|
|
70
70
|
}
|