@rtsee/ngx 0.0.75 → 0.0.76
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 +116 -14
- package/dist/ngx/fesm2022/rtsee-ngx.mjs.map +1 -1
- package/dist/ngx/index.d.ts +9 -4
- package/dist/ngx/src/lib/theme/messenger/chat.scss +9 -0
- package/dist/ngx/src/lib/theme/presentation/index.scss +1 -0
- package/dist/ngx/src/lib/theme/presentation/story-details.scss +25 -0
- package/package.json +8 -8
package/dist/ngx/index.d.ts
CHANGED
|
@@ -13,9 +13,9 @@ import { RTSee, INavigationConfig, IRouteConfig } from '@rtsee/factory';
|
|
|
13
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
|
+
import { IRTSeeChat, IMessageThumbnail, RTSeeChatTypes } from '@rtsee/common';
|
|
16
17
|
import * as i42 from '@angular/common';
|
|
17
18
|
import { ViewportScroller } from '@angular/common';
|
|
18
|
-
import { IMessageThumbnail, RTSeeChatTypes } from '@rtsee/common';
|
|
19
19
|
import * as i44 from 'ngx-autosize';
|
|
20
20
|
import * as i45 from 'ngx-infinite-scroll';
|
|
21
21
|
import * as i47 from 'ngx-captcha';
|
|
@@ -144,9 +144,10 @@ declare class RTSeeContainerComponent implements OnInit {
|
|
|
144
144
|
|
|
145
145
|
declare class PresentationComponent {
|
|
146
146
|
presentation: RTSeePresentation;
|
|
147
|
+
messenger?: RTSeeMessenger;
|
|
147
148
|
constructor();
|
|
148
149
|
static ɵfac: i0.ɵɵFactoryDeclaration<PresentationComponent, never>;
|
|
149
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PresentationComponent, "rtsee-presentation", never, { "presentation": { "alias": "presentation"; "required": false; }; }, {}, never, never, true, never>;
|
|
150
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PresentationComponent, "rtsee-presentation", never, { "presentation": { "alias": "presentation"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
150
151
|
}
|
|
151
152
|
|
|
152
153
|
declare class RTSeeAuthComponent implements OnInit {
|
|
@@ -414,11 +415,15 @@ declare class RtseePeersListComponent {
|
|
|
414
415
|
static ɵcmp: i0.ɵɵComponentDeclaration<RtseePeersListComponent, "ngx-rtsee-peers-list", never, {}, {}, never, never, true, never>;
|
|
415
416
|
}
|
|
416
417
|
|
|
417
|
-
declare class ChatComponent {
|
|
418
|
+
declare class ChatComponent implements OnInit, OnDestroy {
|
|
418
419
|
chat: RTSeeChat;
|
|
420
|
+
chatData?: IRTSeeChat;
|
|
419
421
|
messenger: RTSeeMessenger;
|
|
422
|
+
onInViewPortChange(value: boolean): void;
|
|
423
|
+
ngOnInit(): void;
|
|
424
|
+
ngOnDestroy(): void;
|
|
420
425
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChatComponent, never>;
|
|
421
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChatComponent, "rtsee-chat", never, { "chat": { "alias": "chat"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
426
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChatComponent, "rtsee-chat", never, { "chat": { "alias": "chat"; "required": false; }; "chatData": { "alias": "chatData"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
|
|
422
427
|
}
|
|
423
428
|
|
|
424
429
|
declare class MessageComponent implements AfterViewInit {
|
|
@@ -6,6 +6,15 @@
|
|
|
6
6
|
height: 100%;
|
|
7
7
|
background: $rts-new-secondary-bg-color-light;
|
|
8
8
|
|
|
9
|
+
&.rtsee-chat-standalone {
|
|
10
|
+
&.rtsee-chat-in-viewport {
|
|
11
|
+
.rtsee-chat-footer-container {
|
|
12
|
+
position: fixed;
|
|
13
|
+
bottom: $rts-bottom-nav-height;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
9
18
|
.rtsee-chat-body-container {
|
|
10
19
|
height: 100%;
|
|
11
20
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
@import "./variables";
|
|
2
|
+
|
|
3
|
+
.rtsee-story-details {
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.rtsee-story-details-image-container {
|
|
7
|
+
position: relative;
|
|
8
|
+
|
|
9
|
+
.rtsee-story-details-image {
|
|
10
|
+
width: 100%;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.rtsee-story-details-start-reading {
|
|
14
|
+
position: absolute;
|
|
15
|
+
bottom: $rts-offset-sm;
|
|
16
|
+
right: $rts-offset-sm;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.rtsee-story-details-close {
|
|
20
|
+
position: absolute;
|
|
21
|
+
top: $rts-offset-sm;
|
|
22
|
+
left: $rts-offset-sm;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.76",
|
|
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.47",
|
|
38
|
+
"@rtsee/conference": "^0.0.48",
|
|
39
|
+
"@rtsee/core": "^0.0.91",
|
|
40
|
+
"@rtsee/events-dashboard": "^0.0.81",
|
|
41
|
+
"@rtsee/factory": "^0.0.90",
|
|
42
|
+
"@rtsee/messenger": "^0.0.81",
|
|
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": "3a0b2fe6c4ae5ec01805f35d2270f3604d111b59"
|
|
70
70
|
}
|