@rtsee/ngx 0.0.71 → 0.0.74
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 +370 -242
- package/dist/ngx/fesm2022/rtsee-ngx.mjs.map +1 -1
- package/dist/ngx/index.d.ts +74 -51
- package/dist/ngx/src/lib/theme/common-variables.scss +1 -1
- package/dist/ngx/src/lib/theme/containers/nav.scss +4 -0
- package/dist/ngx/src/lib/theme/containers/shell.scss +42 -17
- package/dist/ngx/src/lib/theme/messenger/chat-input.scss +18 -20
- package/dist/ngx/src/lib/theme/messenger/chat-thumbnail.scss +1 -3
- package/dist/ngx/src/lib/theme/messenger/chat.scss +1 -3
- package/dist/ngx/src/lib/theme/messenger/index.scss +1 -0
- package/dist/ngx/src/lib/theme/messenger/messages-list.scss +11 -0
- package/dist/ngx/src/lib/theme/messenger/messenger-header.scss +148 -102
- package/dist/ngx/src/lib/theme/messenger/messenger.scss +9 -60
- package/dist/ngx/src/lib/theme/messenger/profile.scss +40 -0
- package/dist/ngx/src/lib/theme/presentation/index.scss +1 -0
- package/dist/ngx/src/lib/theme/presentation/presentation.scss +6 -2
- package/dist/ngx/src/lib/theme/presentation/settings.scss +70 -0
- package/dist/ngx/src/lib/theme/presentation/story-player.scss +55 -43
- package/package.json +8 -7
package/dist/ngx/index.d.ts
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, AfterViewInit, ElementRef, ViewContainerRef, ComponentFactoryResolver, ChangeDetectorRef, OnDestroy
|
|
2
|
+
import { OnInit, AfterViewInit, ElementRef, ViewContainerRef, ComponentFactoryResolver, ChangeDetectorRef, OnDestroy } from '@angular/core';
|
|
3
3
|
import { RTSeeConference, RTSeePeerConnection } from '@rtsee/conference';
|
|
4
4
|
import { RTSeeMessenger, RTSeeMessengerSearch, RTSeeMessage, RTSeeChat, RTSeeChatMember } from '@rtsee/messenger';
|
|
5
|
-
import {
|
|
6
|
-
import { RTSee, INavigationConfig, IRouteConfig } from '@rtsee/factory';
|
|
7
|
-
import { RTSeePresentation, RTSeeStory, RTSeeStorySlide } from '@rtsee/presentation';
|
|
5
|
+
import { IPeer, IRTSeeCall } from '@rtsee/core';
|
|
8
6
|
import { HttpClient } from '@angular/common/http';
|
|
9
7
|
import { RTSeeAuth, RTSeeAuthConfiguration, IRtseeSignInRequestOptions, IRTSeeSignInResponse, IRtseeSignUpRequestOptions, IRTSeeSignUpResponse, AuthEndpointsKeys } from '@rtsee/auth';
|
|
10
8
|
import { Observable, Subscription } from 'rxjs';
|
|
11
|
-
import * as i43 from '@angular/forms';
|
|
12
|
-
import { FormArray, FormGroup, FormControl, FormBuilder } from '@angular/forms';
|
|
13
9
|
import * as i46 from '@angular/router';
|
|
14
10
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
11
|
+
import { RTSeeEventsDashboard, RTSeeDashboardClientSession, RTSeeDashboardEvent, RTSeeDashboardClient } from '@rtsee/events-dashboard';
|
|
12
|
+
import { RTSee, INavigationConfig, IRouteConfig } from '@rtsee/factory';
|
|
13
|
+
import { RTSeePresentation, RTSeeStory, RTSeePresentationSettings, RTSeeStorySlide } from '@rtsee/presentation';
|
|
14
|
+
import * as i43 from '@angular/forms';
|
|
15
|
+
import { FormArray, FormGroup, FormControl, FormBuilder } from '@angular/forms';
|
|
17
16
|
import * as i42 from '@angular/common';
|
|
17
|
+
import { ViewportScroller } from '@angular/common';
|
|
18
|
+
import { IMessageThumbnail, RTSeeChatTypes } from '@rtsee/common';
|
|
18
19
|
import * as i44 from 'ngx-autosize';
|
|
19
20
|
import * as i45 from 'ngx-infinite-scroll';
|
|
20
21
|
import * as i47 from 'ngx-captcha';
|
|
@@ -75,20 +76,55 @@ declare class RtseePeerComponent implements AfterViewInit {
|
|
|
75
76
|
static ɵcmp: i0.ɵɵComponentDeclaration<RtseePeerComponent, "ngx-rtsee-peer", never, { "peer": { "alias": "peer"; "required": false; }; }, {}, never, never, true, never>;
|
|
76
77
|
}
|
|
77
78
|
|
|
79
|
+
interface IRtseeForgotPasswordRequestOptions {
|
|
80
|
+
email: string;
|
|
81
|
+
}
|
|
82
|
+
interface IRtseeResetPasswordRequestOptions {
|
|
83
|
+
password: string;
|
|
84
|
+
passwordConfirm: string;
|
|
85
|
+
token: string;
|
|
86
|
+
}
|
|
87
|
+
interface IRTSeeForgotPasswordResponse {
|
|
88
|
+
success: boolean;
|
|
89
|
+
message: string;
|
|
90
|
+
}
|
|
91
|
+
interface IRTSeeResetPasswordResponse {
|
|
92
|
+
success: boolean;
|
|
93
|
+
message: string;
|
|
94
|
+
}
|
|
95
|
+
declare class RTSeeAuthService {
|
|
96
|
+
private http;
|
|
97
|
+
rtseeAuth: RTSeeAuth<any>;
|
|
98
|
+
authConfiguration: RTSeeAuthConfiguration;
|
|
99
|
+
constructor(http: HttpClient);
|
|
100
|
+
init(auth: RTSeeAuth<any>): void;
|
|
101
|
+
signIn(credentials: IRtseeSignInRequestOptions): Observable<IRTSeeSignInResponse>;
|
|
102
|
+
signUp(credentials: IRtseeSignUpRequestOptions): Observable<IRTSeeSignUpResponse>;
|
|
103
|
+
forgotPassword(credentials: IRtseeForgotPasswordRequestOptions): Observable<IRTSeeForgotPasswordResponse>;
|
|
104
|
+
resetPassword(credentials: IRtseeResetPasswordRequestOptions): Observable<IRTSeeResetPasswordResponse>;
|
|
105
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RTSeeAuthService, never>;
|
|
106
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RTSeeAuthService>;
|
|
107
|
+
}
|
|
108
|
+
|
|
78
109
|
declare class ProfileComponent {
|
|
110
|
+
private authService;
|
|
111
|
+
private router;
|
|
112
|
+
authConfiguration: RTSeeAuthConfiguration;
|
|
79
113
|
messenger: RTSeeMessenger;
|
|
114
|
+
peer?: IPeer;
|
|
115
|
+
constructor(authService: RTSeeAuthService, router: Router);
|
|
80
116
|
call(): void;
|
|
81
117
|
videoCall(): void;
|
|
118
|
+
logOut(): void;
|
|
119
|
+
protected readonly AuthEndpointsKeys: typeof AuthEndpointsKeys;
|
|
82
120
|
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileComponent, never>;
|
|
83
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileComponent, "rtsee-profile", never, { "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
121
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileComponent, "rtsee-profile", never, { "messenger": { "alias": "messenger"; "required": false; }; "peer": { "alias": "peer"; "required": false; }; }, {}, never, never, true, never>;
|
|
84
122
|
}
|
|
85
123
|
|
|
86
124
|
declare class MessengerComponent {
|
|
87
|
-
isHeaderExpanded: boolean;
|
|
88
125
|
messenger: RTSeeMessenger;
|
|
89
126
|
constructor();
|
|
90
127
|
onScroll(): void;
|
|
91
|
-
onHeaderExpandToggled(value: boolean): void;
|
|
92
128
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessengerComponent, never>;
|
|
93
129
|
static ɵcmp: i0.ɵɵComponentDeclaration<MessengerComponent, "rtsee-messenger", never, { "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
94
130
|
}
|
|
@@ -99,14 +135,17 @@ declare class RtseeEventsDashboardComponent {
|
|
|
99
135
|
static ɵcmp: i0.ɵɵComponentDeclaration<RtseeEventsDashboardComponent, "rtsee-events-dashboard", never, { "eventsDashboard": { "alias": "eventsDashboard"; "required": false; }; }, {}, never, never, true, never>;
|
|
100
136
|
}
|
|
101
137
|
|
|
102
|
-
declare class RTSeeContainerComponent {
|
|
138
|
+
declare class RTSeeContainerComponent implements OnInit {
|
|
139
|
+
private authService;
|
|
103
140
|
rtsee: RTSee;
|
|
104
141
|
navigationConfig: INavigationConfig<IRouteConfig>;
|
|
142
|
+
auth: RTSeeAuth<any>;
|
|
143
|
+
constructor(authService: RTSeeAuthService);
|
|
105
144
|
isSidenavExpanded: boolean;
|
|
106
|
-
isSidenavExpandededed: boolean;
|
|
107
145
|
onSidenavToggleClicked(): void;
|
|
146
|
+
ngOnInit(): void;
|
|
108
147
|
static ɵfac: i0.ɵɵFactoryDeclaration<RTSeeContainerComponent, never>;
|
|
109
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RTSeeContainerComponent, "rtsee-container", never, { "rtsee": { "alias": "rtsee"; "required": false; }; "navigationConfig": { "alias": "navigationConfig"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
148
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RTSeeContainerComponent, "rtsee-container", never, { "rtsee": { "alias": "rtsee"; "required": false; }; "navigationConfig": { "alias": "navigationConfig"; "required": false; }; "auth": { "alias": "auth"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
110
149
|
}
|
|
111
150
|
|
|
112
151
|
declare class PresentationComponent {
|
|
@@ -116,36 +155,6 @@ declare class PresentationComponent {
|
|
|
116
155
|
static ɵcmp: i0.ɵɵComponentDeclaration<PresentationComponent, "rtsee-presentation", never, { "presentation": { "alias": "presentation"; "required": false; }; }, {}, never, never, true, never>;
|
|
117
156
|
}
|
|
118
157
|
|
|
119
|
-
interface IRtseeForgotPasswordRequestOptions {
|
|
120
|
-
email: string;
|
|
121
|
-
}
|
|
122
|
-
interface IRtseeResetPasswordRequestOptions {
|
|
123
|
-
password: string;
|
|
124
|
-
passwordConfirm: string;
|
|
125
|
-
token: string;
|
|
126
|
-
}
|
|
127
|
-
interface IRTSeeForgotPasswordResponse {
|
|
128
|
-
success: boolean;
|
|
129
|
-
message: string;
|
|
130
|
-
}
|
|
131
|
-
interface IRTSeeResetPasswordResponse {
|
|
132
|
-
success: boolean;
|
|
133
|
-
message: string;
|
|
134
|
-
}
|
|
135
|
-
declare class RTSeeAuthService {
|
|
136
|
-
private http;
|
|
137
|
-
rtseeAuth: RTSeeAuth<any>;
|
|
138
|
-
authConfiguration: RTSeeAuthConfiguration;
|
|
139
|
-
constructor(http: HttpClient);
|
|
140
|
-
init(auth: RTSeeAuth<any>): void;
|
|
141
|
-
signIn(credentials: IRtseeSignInRequestOptions): Observable<IRTSeeSignInResponse>;
|
|
142
|
-
signUp(credentials: IRtseeSignUpRequestOptions): Observable<IRTSeeSignUpResponse>;
|
|
143
|
-
forgotPassword(credentials: IRtseeForgotPasswordRequestOptions): Observable<IRTSeeForgotPasswordResponse>;
|
|
144
|
-
resetPassword(credentials: IRtseeResetPasswordRequestOptions): Observable<IRTSeeResetPasswordResponse>;
|
|
145
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RTSeeAuthService, never>;
|
|
146
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<RTSeeAuthService>;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
158
|
declare class RTSeeAuthComponent implements OnInit {
|
|
150
159
|
authService: RTSeeAuthService;
|
|
151
160
|
auth: RTSeeAuth<any>;
|
|
@@ -296,6 +305,7 @@ declare class EventThumbnailComponent implements OnInit, AfterViewInit {
|
|
|
296
305
|
timeFormatService: TimeFormatHelperService;
|
|
297
306
|
private cd;
|
|
298
307
|
tooltip?: string;
|
|
308
|
+
timeInAgoFormat: string;
|
|
299
309
|
event: RTSeeDashboardEvent;
|
|
300
310
|
widgetHost: WidgetDirective;
|
|
301
311
|
constructor(widgetsService: EventsWidgetsService, componentFactoryResolver: ComponentFactoryResolver, timeFormatService: TimeFormatHelperService, cd: ChangeDetectorRef);
|
|
@@ -434,11 +444,12 @@ declare class MessageComponent implements AfterViewInit {
|
|
|
434
444
|
|
|
435
445
|
declare class MessagesListComponent implements AfterViewInit, OnDestroy, OnInit {
|
|
436
446
|
private timeFormatService;
|
|
447
|
+
private scroller;
|
|
437
448
|
bindScrollFunction: () => void;
|
|
438
449
|
chat: RTSeeChat;
|
|
439
450
|
messenger: RTSeeMessenger;
|
|
440
451
|
scrollContainer: ElementRef<HTMLDivElement>;
|
|
441
|
-
constructor(timeFormatService: TimeFormatHelperService);
|
|
452
|
+
constructor(timeFormatService: TimeFormatHelperService, scroller: ViewportScroller);
|
|
442
453
|
ngOnInit(): void;
|
|
443
454
|
ngAfterViewInit(): void;
|
|
444
455
|
onMessageSent(): void;
|
|
@@ -457,6 +468,15 @@ declare class ChatThumbnailComponent {
|
|
|
457
468
|
messenger: RTSeeMessenger;
|
|
458
469
|
readonly RTSeeChatTypes: typeof RTSeeChatTypes;
|
|
459
470
|
constructor(timeFormatService: TimeFormatHelperService);
|
|
471
|
+
protected readonly COMMON_CONSTANTS: {
|
|
472
|
+
minPasswordLength: number;
|
|
473
|
+
requestItemLimit: number;
|
|
474
|
+
customTimeFormat: string;
|
|
475
|
+
customDateFormat: string;
|
|
476
|
+
customDateFormatDaysJs: string;
|
|
477
|
+
customDateTimeFormat: string;
|
|
478
|
+
defaultProfileImgUrl: string;
|
|
479
|
+
};
|
|
460
480
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatThumbnailComponent, never>;
|
|
461
481
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChatThumbnailComponent, "rtsee-chat-thumbnail", never, { "chat": { "alias": "chat"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
462
482
|
}
|
|
@@ -465,7 +485,10 @@ declare class ChatInputComponent {
|
|
|
465
485
|
sendMessageForm: FormGroup;
|
|
466
486
|
messenger: RTSeeMessenger;
|
|
467
487
|
chat: RTSeeChat;
|
|
488
|
+
chatInput: ElementRef<HTMLTextAreaElement>;
|
|
468
489
|
sendMessage(): void;
|
|
490
|
+
onKeyUp(event: KeyboardEvent): void;
|
|
491
|
+
handleResize(): void;
|
|
469
492
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatInputComponent, never>;
|
|
470
493
|
static ɵcmp: i0.ɵɵComponentDeclaration<ChatInputComponent, "rtsee-chat-input", never, { "messenger": { "alias": "messenger"; "required": false; }; "chat": { "alias": "chat"; "required": false; }; }, {}, never, never, true, never>;
|
|
471
494
|
}
|
|
@@ -487,13 +510,11 @@ declare class RtseeSoundbarComponent implements OnInit {
|
|
|
487
510
|
|
|
488
511
|
declare class MessengerHeaderComponent {
|
|
489
512
|
defaultImagesService: DefaultImagesService;
|
|
490
|
-
expandToggled: EventEmitter<any>;
|
|
491
|
-
isExpanded?: boolean;
|
|
492
513
|
messenger: RTSeeMessenger;
|
|
493
514
|
constructor(defaultImagesService: DefaultImagesService);
|
|
494
|
-
|
|
515
|
+
openProfile(id: string): void;
|
|
495
516
|
static ɵfac: i0.ɵɵFactoryDeclaration<MessengerHeaderComponent, never>;
|
|
496
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MessengerHeaderComponent, "rtsee-messenger-header", never, { "
|
|
517
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MessengerHeaderComponent, "rtsee-messenger-header", never, { "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
497
518
|
}
|
|
498
519
|
|
|
499
520
|
declare class ChatsListComponent implements OnInit {
|
|
@@ -549,12 +570,13 @@ declare class SearchComponent implements OnInit, OnDestroy {
|
|
|
549
570
|
|
|
550
571
|
declare class StoryPlayerComponent implements OnInit, AfterViewInit {
|
|
551
572
|
story: RTSeeStory;
|
|
573
|
+
settings: RTSeePresentationSettings;
|
|
552
574
|
swiperEl: ElementRef<HTMLElement>;
|
|
553
575
|
constructor();
|
|
554
576
|
ngOnInit(): void;
|
|
555
577
|
ngAfterViewInit(): void;
|
|
556
578
|
static ɵfac: i0.ɵɵFactoryDeclaration<StoryPlayerComponent, never>;
|
|
557
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StoryPlayerComponent, "rtsee-story-player", never, { "story": { "alias": "story"; "required": false; }; }, {}, never, never, true, never>;
|
|
579
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StoryPlayerComponent, "rtsee-story-player", never, { "story": { "alias": "story"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, true, never>;
|
|
558
580
|
}
|
|
559
581
|
|
|
560
582
|
declare class SlideComponent implements AfterViewInit {
|
|
@@ -564,13 +586,14 @@ declare class SlideComponent implements AfterViewInit {
|
|
|
564
586
|
scrollingDown: boolean;
|
|
565
587
|
story: RTSeeStory;
|
|
566
588
|
slide: RTSeeStorySlide;
|
|
589
|
+
settings: RTSeePresentationSettings;
|
|
567
590
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
568
591
|
slideRewindClicked(forward: boolean): void;
|
|
569
592
|
ngAfterViewInit(): void;
|
|
570
593
|
onScroll(target: EventTarget | null): void;
|
|
571
594
|
private handleScroll;
|
|
572
595
|
static ɵfac: i0.ɵɵFactoryDeclaration<SlideComponent, never>;
|
|
573
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SlideComponent, "rtsee-slide", never, { "story": { "alias": "story"; "required": false; }; "slide": { "alias": "slide"; "required": false; }; }, {}, never, never, true, never>;
|
|
596
|
+
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>;
|
|
574
597
|
}
|
|
575
598
|
|
|
576
599
|
declare class StoryThumbnailComponent {
|
|
@@ -90,7 +90,7 @@ $rts-new-user-avatar-d-sm: 40px;
|
|
|
90
90
|
$rts-new-default-border-radius: 8px;
|
|
91
91
|
$rts-new-border-radius-rounded: 12px;
|
|
92
92
|
|
|
93
|
-
$rts-new-primary-color: #
|
|
93
|
+
$rts-new-primary-color: #3b82f7;
|
|
94
94
|
$rts-new-active-bg-color-light: #feefe0;
|
|
95
95
|
$rts-new-secondary-bg-color-light: #e8e9eb;
|
|
96
96
|
|
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
display: block;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
+
.rtsee-presentation-settings {
|
|
15
|
+
top: $video-container-height;
|
|
16
|
+
}
|
|
17
|
+
|
|
14
18
|
&.rtsee-shell-messenger-active {
|
|
15
19
|
.rtsee-messenger-container {
|
|
16
20
|
.rtsee-messenger-header-container {
|
|
@@ -36,16 +40,28 @@
|
|
|
36
40
|
.rtsee-messenger-container {
|
|
37
41
|
display: block;
|
|
38
42
|
|
|
39
|
-
.rtsee-messenger
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
43
|
+
.rtsee-messenger {
|
|
44
|
+
&.rtsee-messenger-header-expanded {
|
|
45
|
+
padding-top: 0;
|
|
46
|
+
|
|
47
|
+
.rtsee-messenger-header-container {
|
|
48
|
+
position: static;
|
|
49
|
+
height: 100%;
|
|
50
|
+
overflow: auto;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.rtsee-messenger-header-container {
|
|
55
|
+
position: fixed;
|
|
56
|
+
top: 0;
|
|
57
|
+
z-index: 1;
|
|
58
|
+
}
|
|
44
59
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
60
|
+
.rtsee-chat-footer-container {
|
|
61
|
+
bottom: $rts-bottom-nav-height;
|
|
62
|
+
position: fixed;
|
|
63
|
+
z-index: 1;
|
|
64
|
+
}
|
|
49
65
|
}
|
|
50
66
|
}
|
|
51
67
|
|
|
@@ -92,6 +108,7 @@
|
|
|
92
108
|
|
|
93
109
|
.rtsee-shell-panel {
|
|
94
110
|
display: none;
|
|
111
|
+
//padding-bottom: $rts-bottom-nav-height + $rts-offset-md;
|
|
95
112
|
background-color: #fff;
|
|
96
113
|
}
|
|
97
114
|
|
|
@@ -116,7 +133,6 @@
|
|
|
116
133
|
.rtsee-presentation-container {
|
|
117
134
|
display: none;
|
|
118
135
|
height: 100%;
|
|
119
|
-
overflow: auto;
|
|
120
136
|
}
|
|
121
137
|
|
|
122
138
|
@media screen and (min-width: $rts-break-md) {
|
|
@@ -142,6 +158,13 @@
|
|
|
142
158
|
position: fixed;
|
|
143
159
|
right: 0;
|
|
144
160
|
top: 0;
|
|
161
|
+
padding-bottom: 0;
|
|
162
|
+
padding-top: $video-container-height;
|
|
163
|
+
|
|
164
|
+
.rtsee-shell-panel-inner {
|
|
165
|
+
overflow: auto;
|
|
166
|
+
height: 100%;
|
|
167
|
+
}
|
|
145
168
|
}
|
|
146
169
|
|
|
147
170
|
.rtsee-conference-container {
|
|
@@ -176,14 +199,16 @@
|
|
|
176
199
|
}
|
|
177
200
|
|
|
178
201
|
.rtsee-messenger-container {
|
|
179
|
-
.rtsee-messenger
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
202
|
+
.rtsee-messenger {
|
|
203
|
+
.rtsee-messenger-header-container {
|
|
204
|
+
top: 0;
|
|
205
|
+
position: absolute;
|
|
206
|
+
}
|
|
183
207
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
208
|
+
.rtsee-chat-footer-container {
|
|
209
|
+
bottom: 0;
|
|
210
|
+
position: absolute;
|
|
211
|
+
}
|
|
187
212
|
}
|
|
188
213
|
}
|
|
189
214
|
}
|
|
@@ -2,50 +2,48 @@
|
|
|
2
2
|
@import "../common-variables";
|
|
3
3
|
|
|
4
4
|
.rtsee-chat-input {
|
|
5
|
-
height: 100%;
|
|
6
5
|
padding-right: $rtsee-chat-input-height;
|
|
7
6
|
position: relative;
|
|
8
7
|
overflow: hidden;
|
|
9
8
|
|
|
10
9
|
.rtsee-send-message {
|
|
11
|
-
height: 100%;
|
|
12
|
-
overflow: auto;
|
|
13
|
-
border-radius: $rts-new-border-radius-rounded;
|
|
14
|
-
|
|
15
10
|
&::-webkit-scrollbar {
|
|
16
11
|
display: none;
|
|
17
12
|
}
|
|
18
13
|
|
|
19
14
|
.rtsee-chat-input-form {
|
|
20
|
-
height: 100%;
|
|
21
15
|
overflow: hidden;
|
|
22
|
-
|
|
16
|
+
line-height: 0;
|
|
23
17
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
resize: none;
|
|
30
|
-
overflow: auto;
|
|
31
|
-
padding: $rts-offset-sm;
|
|
32
|
-
|
|
33
|
-
&::-webkit-input-placeholder {
|
|
34
|
-
font-family: "Work Sans", sans-serif;;
|
|
18
|
+
.rtsee-chat-input-field {
|
|
19
|
+
width: 100%;
|
|
20
|
+
max-height: 130px;
|
|
21
|
+
border: none;
|
|
22
|
+
outline: none;
|
|
35
23
|
}
|
|
36
24
|
}
|
|
37
25
|
}
|
|
38
26
|
|
|
39
27
|
.rtsee-send-message-button {
|
|
40
28
|
position: absolute;
|
|
29
|
+
height: 35px;
|
|
30
|
+
line-height: 0;
|
|
41
31
|
right: 0;
|
|
42
|
-
|
|
43
|
-
height: 100%;
|
|
32
|
+
bottom: 0;
|
|
44
33
|
width: $rtsee-chat-input-height;
|
|
45
34
|
background: none;
|
|
46
35
|
border: none;
|
|
47
36
|
outline: none;
|
|
48
37
|
font-size: 27px;
|
|
49
38
|
color: $rts-new-primary-color;
|
|
39
|
+
cursor: pointer;
|
|
40
|
+
|
|
41
|
+
span {
|
|
42
|
+
line-height: 35px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:hover {
|
|
46
|
+
opacity: 0.7;
|
|
47
|
+
}
|
|
50
48
|
}
|
|
51
49
|
}
|
|
@@ -7,7 +7,7 @@ $last-message-text-color: #707579;
|
|
|
7
7
|
.rtsee-chat-thumbnail {
|
|
8
8
|
position: relative;
|
|
9
9
|
height: $rts-user-avatar-d-sm + $rts-offset-sm * 2;
|
|
10
|
-
padding: $rts-new-offset-
|
|
10
|
+
padding: $rts-new-offset-xsm $rts-new-offset-xsm $rts-new-offset-sm $rts-new-offset-sm * 2 + $rts-new-user-avatar-d-sm;
|
|
11
11
|
cursor: pointer;
|
|
12
12
|
|
|
13
13
|
-webkit-touch-callout: none;
|
|
@@ -47,8 +47,6 @@ $last-message-text-color: #707579;
|
|
|
47
47
|
white-space: nowrap;
|
|
48
48
|
overflow: hidden;
|
|
49
49
|
text-overflow: ellipsis;
|
|
50
|
-
|
|
51
|
-
|
|
52
50
|
padding-right: $rts-message-status-width + $rts-offset-sm;
|
|
53
51
|
|
|
54
52
|
.rtsee-chat-thumbnail-status {
|
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
.rtsee-chat {
|
|
6
6
|
height: 100%;
|
|
7
|
-
padding-bottom: $rtsee-chat-input-height + $rts-offset-sm + $rts-offset-sm;
|
|
8
7
|
background: $rts-new-secondary-bg-color-light;
|
|
9
8
|
|
|
10
9
|
.rtsee-chat-body-container {
|
|
@@ -19,9 +18,8 @@
|
|
|
19
18
|
width: 100%;
|
|
20
19
|
|
|
21
20
|
.rtsee-chat-footer-container-inner {
|
|
22
|
-
height: $rtsee-chat-input-height;
|
|
23
21
|
background: $rts-main-bg-color-light;
|
|
24
|
-
border-radius:
|
|
22
|
+
border-radius: 4px;
|
|
25
23
|
width: 100%;
|
|
26
24
|
}
|
|
27
25
|
}
|
|
@@ -14,6 +14,10 @@ $messenger-date-background-color: #FFFFFF7F;
|
|
|
14
14
|
&.rtsee-messenger-message-wrapper-consecutive {
|
|
15
15
|
margin-bottom: 4px;
|
|
16
16
|
}
|
|
17
|
+
|
|
18
|
+
&:last-child {
|
|
19
|
+
margin-bottom: $rts-bottom-nav-height;
|
|
20
|
+
}
|
|
17
21
|
}
|
|
18
22
|
|
|
19
23
|
.rtsee-messenger-message-date {
|
|
@@ -32,4 +36,11 @@ $messenger-date-background-color: #FFFFFF7F;
|
|
|
32
36
|
}
|
|
33
37
|
}
|
|
34
38
|
|
|
39
|
+
@media screen and (min-width: $rts-break-md) {
|
|
40
|
+
.rtsee-messenger-message-wrapper {
|
|
41
|
+
&:last-child {
|
|
42
|
+
margin-bottom: 0;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
35
46
|
}
|