@rtsee/ngx 0.0.68 → 0.0.69

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.
@@ -3,6 +3,7 @@
3
3
 
4
4
  .rtsee-auth {
5
5
  min-height: 100vh;
6
+ min-height: 100dvh;
6
7
  display: flex;
7
8
  flex-direction: column;
8
9
  justify-content: center;
@@ -2,6 +2,7 @@
2
2
 
3
3
  .rtsee-shell {
4
4
  min-height: 100vh;
5
+ min-height: 100dvh;
5
6
 
6
7
  &.rtsee-shell-conference-mode {
7
8
  padding-top: $video-container-height;
@@ -131,6 +132,7 @@
131
132
  padding-left: $rts-sidebar-width;
132
133
  padding-right: $video-container-width;
133
134
  min-height: 100vh;
135
+ min-height: 100dvh;
134
136
  }
135
137
 
136
138
  .rtsee-shell-panel {
@@ -15,6 +15,7 @@
15
15
 
16
16
  .rtsee-ordered-list-inner {
17
17
  height: $presentation-dashboard-ol-height;
18
+ height: $presentation-dashboard-ol-height-dvh;
18
19
  }
19
20
 
20
21
  .rtsee-presentation-manage-slides-list-item-info {
@@ -3,6 +3,7 @@
3
3
  .rtsee-presentation-slide {
4
4
  background-color: $rts-main-bg-color-light;
5
5
  height: $stories-player-height;
6
+ height: $stories-player-height-dvh;
6
7
  overflow-y: auto;
7
8
 
8
9
  .rtsee-presentation-slide-default {
@@ -27,5 +28,6 @@
27
28
 
28
29
  @media screen and (min-width: $rts-break-md) {
29
30
  height: $stories-player-height-wide-screen;
31
+ height: $stories-player-height-wide-screen-dvh;
30
32
  }
31
33
  }
@@ -2,6 +2,7 @@
2
2
 
3
3
  .rtsee-story-player {
4
4
  height: $stories-player-height;
5
+ height: $stories-player-height-dvh;
5
6
  overflow: hidden;
6
7
 
7
8
  .rtsee-story-player-slider {
@@ -9,6 +10,7 @@
9
10
  touch-action: pan-y;
10
11
  //display: none;
11
12
  height: $stories-player-height;
13
+ height: $stories-player-height-dvh;
12
14
 
13
15
  &.story-player-slide-active {
14
16
  //display: block;
@@ -34,10 +36,12 @@
34
36
 
35
37
  @media screen and (min-width: $rts-break-md) {
36
38
  height: $stories-player-height-wide-screen;
39
+ height: $stories-player-height-wide-screen-dvh;
37
40
 
38
41
  .rtsee-story-player-slider {
39
42
  .story-player-slide-container {
40
43
  height: $stories-player-height-wide-screen;
44
+ height: $stories-player-height-wide-screen-dvh; // we need a macros for this
41
45
  }
42
46
  }
43
47
  }
@@ -16,4 +16,9 @@ $presentation-dashboard-preoccupied-height: $presentation-dashboard-header-heigh
16
16
  $stories-player-height: calc(100vh - $rts-bottom-nav-height);
17
17
  $stories-player-height-wide-screen: calc(100vh - $presentation-dashboard-header-height);
18
18
 
19
- $presentation-dashboard-ol-height: calc(100vh - $presentation-dashboard-preoccupied-height)
19
+ $presentation-dashboard-ol-height: calc(100vh - $presentation-dashboard-preoccupied-height);
20
+
21
+ $stories-player-height-dvh: calc(100dvh - $rts-bottom-nav-height);
22
+ $stories-player-height-wide-screen-dvh: calc(100vh - $presentation-dashboard-header-height);
23
+
24
+ $presentation-dashboard-ol-height-dvh: calc(100vh - $presentation-dashboard-preoccupied-height)
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.68",
2
+ "version": "0.0.69",
3
3
  "name": "@rtsee/ngx",
4
4
  "module": "./dist/ngx/fesm2022/rtsee-ngx.mjs",
5
5
  "types": "./dist/ngx/index.d.ts",
@@ -34,11 +34,11 @@
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",
38
- "@rtsee/conference": "^0.0.39",
39
- "@rtsee/events-dashboard": "^0.0.72",
40
- "@rtsee/factory": "^0.0.81",
41
- "@rtsee/messenger": "^0.0.72",
37
+ "@rtsee/common": "^0.0.39",
38
+ "@rtsee/conference": "^0.0.40",
39
+ "@rtsee/events-dashboard": "^0.0.73",
40
+ "@rtsee/factory": "^0.0.82",
41
+ "@rtsee/messenger": "^0.0.73",
42
42
  "@rtsee/signaling-client": "^0.0.66",
43
43
  "dayjs": "^1.11.9",
44
44
  "ngx-autosize": "^2.0.4",
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "78822344192ba405bb0e97692d2ca7c60afb4738"
68
+ "gitHead": "e7f31b5d2a5b6822c8ec7e5eb1f333c8599614a4"
69
69
  }