@rtsee/ngx 0.0.73 → 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.
@@ -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';
@@ -468,6 +468,15 @@ declare class ChatThumbnailComponent {
468
468
  messenger: RTSeeMessenger;
469
469
  readonly RTSeeChatTypes: typeof RTSeeChatTypes;
470
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
+ };
471
480
  static ɵfac: i0.ɵɵFactoryDeclaration<ChatThumbnailComponent, never>;
472
481
  static ɵcmp: i0.ɵɵComponentDeclaration<ChatThumbnailComponent, "rtsee-chat-thumbnail", never, { "chat": { "alias": "chat"; "required": false; }; "messenger": { "alias": "messenger"; "required": false; }; }, {}, never, never, true, never>;
473
482
  }
@@ -561,12 +570,13 @@ declare class SearchComponent implements OnInit, OnDestroy {
561
570
 
562
571
  declare class StoryPlayerComponent implements OnInit, AfterViewInit {
563
572
  story: RTSeeStory;
573
+ settings: RTSeePresentationSettings;
564
574
  swiperEl: ElementRef<HTMLElement>;
565
575
  constructor();
566
576
  ngOnInit(): void;
567
577
  ngAfterViewInit(): void;
568
578
  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>;
579
+ static ɵcmp: i0.ɵɵComponentDeclaration<StoryPlayerComponent, "rtsee-story-player", never, { "story": { "alias": "story"; "required": false; }; "settings": { "alias": "settings"; "required": false; }; }, {}, never, never, true, never>;
570
580
  }
571
581
 
572
582
  declare class SlideComponent implements AfterViewInit {
@@ -576,13 +586,14 @@ declare class SlideComponent implements AfterViewInit {
576
586
  scrollingDown: boolean;
577
587
  story: RTSeeStory;
578
588
  slide: RTSeeStorySlide;
589
+ settings: RTSeePresentationSettings;
579
590
  constructor(elementRef: ElementRef<HTMLElement>);
580
591
  slideRewindClicked(forward: boolean): void;
581
592
  ngAfterViewInit(): void;
582
593
  onScroll(target: EventTarget | null): void;
583
594
  private handleScroll;
584
595
  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>;
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>;
586
597
  }
587
598
 
588
599
  declare class StoryThumbnailComponent {
@@ -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 {
@@ -6,3 +6,4 @@
6
6
  @import "./manage-stories";
7
7
  @import "./dashboard";
8
8
  @import "./presentation";
9
+ @import "./settings";
@@ -60,6 +60,9 @@
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
  }
@@ -0,0 +1,70 @@
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
+ .rtsee-presentation-settings-rooms-list-item {
27
+ display: flex;
28
+ flex-direction: row;
29
+ justify-content: left;
30
+ align-items: center;
31
+ gap: $rts-offset-sm;
32
+
33
+ .rtsee-presentation-settings-rooms-list-item-image {
34
+ width: $rts-new-user-avatar-d-sm;
35
+ height: $rts-new-user-avatar-d-sm;
36
+ border-radius: 50%;
37
+ overflow: hidden;
38
+ }
39
+ }
40
+ }
41
+
42
+ }
43
+
44
+ .rtsee-presentation-sound-settings {
45
+ .rtsee-presentation-sound-settings-inner {
46
+ display: flex;
47
+ flex-direction: row;
48
+ align-items: center;
49
+ gap: $rts-offset-md;
50
+
51
+ .rtsee-presentation-sound-settings-inner-left {
52
+ flex: 1;
53
+ }
54
+
55
+ .rtsee-presentation-sound-settings-inner-right {
56
+ width: auto;
57
+ }
58
+ }
59
+ }
60
+
61
+ .rtsee-presentation-font-size-settings {
62
+ .rtsee-presentation-font-size-range {
63
+ margin-bottom: $rts-offset-md;
64
+ }
65
+ }
66
+
67
+ @media screen and (min-width: $rts-break-md) {
68
+ position: absolute;
69
+ }
70
+ }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.73",
2
+ "version": "0.0.74",
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.44",
38
- "@rtsee/conference": "^0.0.45",
39
- "@rtsee/core": "^0.0.88",
40
- "@rtsee/events-dashboard": "^0.0.78",
41
- "@rtsee/factory": "^0.0.87",
42
- "@rtsee/messenger": "^0.0.78",
37
+ "@rtsee/common": "^0.0.45",
38
+ "@rtsee/conference": "^0.0.46",
39
+ "@rtsee/core": "^0.0.89",
40
+ "@rtsee/events-dashboard": "^0.0.79",
41
+ "@rtsee/factory": "^0.0.88",
42
+ "@rtsee/messenger": "^0.0.79",
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": "e84bc0a51f9a931c02257f74ac16974f40964939"
69
+ "gitHead": "1162958bb02625dc4473457d4e417cf9e2ee3d07"
70
70
  }