@rtsee/ngx 0.0.48 → 0.0.49
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/esm2022/lib/components/rtsee/rtsee-conference.component.mjs +2 -2
- package/dist/ngx/esm2022/lib/components/rtsee-presentation/presentation/presentation.component.mjs +18 -0
- package/dist/ngx/esm2022/lib/components/rtsee-presentation/slide/slide.component.mjs +16 -0
- package/dist/ngx/esm2022/lib/components/rtsee-presentation/story-player/story-player.component.mjs +25 -0
- package/dist/ngx/esm2022/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.mjs +16 -0
- package/dist/ngx/esm2022/lib/components/rtsee-settings/rtsee-settings.component.mjs +22 -10
- package/dist/ngx/esm2022/lib/ngx.module.mjs +26 -7
- package/dist/ngx/esm2022/public-api.mjs +2 -1
- package/dist/ngx/fesm2022/rtsee-ngx.mjs +108 -22
- package/dist/ngx/fesm2022/rtsee-ngx.mjs.map +1 -1
- package/dist/ngx/lib/components/rtsee-presentation/presentation/presentation.component.d.ts +8 -0
- package/dist/ngx/lib/components/rtsee-presentation/slide/slide.component.d.ts +7 -0
- package/dist/ngx/lib/components/rtsee-presentation/story-player/story-player.component.d.ts +11 -0
- package/dist/ngx/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.d.ts +8 -0
- package/dist/ngx/lib/components/rtsee-settings/rtsee-settings.component.d.ts +6 -3
- package/dist/ngx/lib/ngx.module.d.ts +14 -10
- package/dist/ngx/public-api.d.ts +1 -0
- package/dist/ngx/src/lib/common/compiled-scss/styles.scss +130 -58
- package/package.json +5 -5
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { RTSeePresentation } from "@rtsee/presentation";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PresentationComponent {
|
|
4
|
+
rtSeePresentation: RTSeePresentation;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PresentationComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PresentationComponent, "rtsee-presentation", never, { "rtSeePresentation": { "alias": "rtSeePresentation"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { RTSeeStorySlide } from "@rtsee/presentation";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SlideComponent {
|
|
4
|
+
slide: RTSeeStorySlide;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SlideComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SlideComponent, "rtsee-slide", never, { "slide": { "alias": "slide"; "required": false; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { RTSeeStory } from "@rtsee/presentation";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class StoryPlayerComponent implements OnInit {
|
|
5
|
+
story: RTSeeStory;
|
|
6
|
+
closeClicked: EventEmitter<void>;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
onCloseClicked(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StoryPlayerComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StoryPlayerComponent, "rtsee-story-player", never, { "story": { "alias": "story"; "required": false; }; }, { "closeClicked": "closeClicked"; }, never, never, false, never>;
|
|
11
|
+
}
|
package/dist/ngx/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { RTSeeStory } from "@rtsee/presentation";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class StoryThumbnailComponent {
|
|
4
|
+
story: RTSeeStory;
|
|
5
|
+
protected readonly Math: Math;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StoryThumbnailComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StoryThumbnailComponent, "rtsee-story-thumbnail", never, { "story": { "alias": "story"; "required": false; }; }, {}, never, never, false, never>;
|
|
8
|
+
}
|
|
@@ -5,14 +5,17 @@ export declare class RtseeSettingsComponent implements OnInit {
|
|
|
5
5
|
availableAudioInputDevices: MediaDeviceInfo[];
|
|
6
6
|
availableVideoInputDevices: MediaDeviceInfo[];
|
|
7
7
|
availableAudioOutputDevices: MediaDeviceInfo[];
|
|
8
|
+
audioOutputDeviceId?: string;
|
|
9
|
+
videoInputDeviceId?: string;
|
|
10
|
+
audioInputDeviceId?: string;
|
|
8
11
|
rtSee: RTSeeConference;
|
|
9
12
|
fullScreenMode: boolean;
|
|
10
13
|
constructor();
|
|
11
14
|
ngOnInit(): void;
|
|
12
15
|
refreshSelectOptions(): void;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
+
audioInputChanged(): void;
|
|
17
|
+
audioOutputChanged(): void;
|
|
18
|
+
videoInputChanged(): void;
|
|
16
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<RtseeSettingsComponent, never>;
|
|
17
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<RtseeSettingsComponent, "ngx-rtsee-settings", never, { "rtSee": { "alias": "rtSee"; "required": false; }; "fullScreenMode": { "alias": "fullScreenMode"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
21
|
}
|
|
@@ -29,17 +29,21 @@ import * as i27 from "./components/rtsee-messenger/profile/profile.component";
|
|
|
29
29
|
import * as i28 from "./components/rtsee-events-dashboard/components/event-thumbnail/event-thumbnail.component";
|
|
30
30
|
import * as i29 from "./components/rtsee-events-dashboard/components/rtsee-events-dashboard-session/rtsee-events-dashboard-session.component";
|
|
31
31
|
import * as i30 from "./components/rtsee-container/rtsee-container.component";
|
|
32
|
-
import * as i31 from "
|
|
33
|
-
import * as i32 from "
|
|
34
|
-
import * as i33 from "
|
|
35
|
-
import * as i34 from "
|
|
36
|
-
import * as i35 from "@angular/
|
|
37
|
-
import * as i36 from "@angular/material/
|
|
38
|
-
import * as i37 from "@angular/
|
|
39
|
-
import * as i38 from "
|
|
40
|
-
import * as i39 from "
|
|
32
|
+
import * as i31 from "./components/rtsee-presentation/presentation/presentation.component";
|
|
33
|
+
import * as i32 from "./components/rtsee-presentation/story-player/story-player.component";
|
|
34
|
+
import * as i33 from "./components/rtsee-presentation/slide/slide.component";
|
|
35
|
+
import * as i34 from "./components/rtsee-presentation/story-thumbnail/story-thumbnail.component";
|
|
36
|
+
import * as i35 from "@angular/common";
|
|
37
|
+
import * as i36 from "@angular/material/icon";
|
|
38
|
+
import * as i37 from "@angular/material/button";
|
|
39
|
+
import * as i38 from "@angular/material/select";
|
|
40
|
+
import * as i39 from "@angular/platform-browser/animations";
|
|
41
|
+
import * as i40 from "@angular/material/form-field";
|
|
42
|
+
import * as i41 from "@angular/forms";
|
|
43
|
+
import * as i42 from "ngx-autosize";
|
|
44
|
+
import * as i43 from "ngx-infinite-scroll";
|
|
41
45
|
export declare class RTSeeModule {
|
|
42
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<RTSeeModule, never>;
|
|
43
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RTSeeModule, [typeof i1.RTSeeConferenceComponent, typeof i2.RTSeeControlsComponent, typeof i3.RtseePeerComponent, typeof i4.RtseeSoundbarComponent, typeof i5.RtseePeersListComponent, typeof i6.RtseeSettingsComponent, typeof i7.MessengerComponent, typeof i8.ChatComponent, typeof i9.MessageComponent, typeof i10.ChatsListComponent, typeof i11.MessagesListComponent, typeof i12.ChatThumbnailComponent, typeof i13.ChatInputComponent, typeof i14.MessengerHeaderComponent, typeof i15.RtseeEventsDashboardComponent, typeof i16.RtseeEventsDashboardClientComponent, typeof i17.RtseeEventsDashboardClientThumbnailComponent, typeof i18.WidgetDirective, typeof i19.CallWidgetComponent, typeof i20.MainMenuComponent, typeof i21.MessageTimeAndStatusComponent, typeof i22.PreloaderComponent, typeof i23.SearchComponent, typeof i24.ManageChatComponent, typeof i25.ContactsMultiselectComponent, typeof i26.ShaveDirective, typeof i27.ProfileComponent, typeof i28.EventThumbnailComponent, typeof i29.RtseeEventsDashboardSessionComponent, typeof i30.RTSeeContainerComponent], [typeof
|
|
47
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RTSeeModule, [typeof i1.RTSeeConferenceComponent, typeof i2.RTSeeControlsComponent, typeof i3.RtseePeerComponent, typeof i4.RtseeSoundbarComponent, typeof i5.RtseePeersListComponent, typeof i6.RtseeSettingsComponent, typeof i7.MessengerComponent, typeof i8.ChatComponent, typeof i9.MessageComponent, typeof i10.ChatsListComponent, typeof i11.MessagesListComponent, typeof i12.ChatThumbnailComponent, typeof i13.ChatInputComponent, typeof i14.MessengerHeaderComponent, typeof i15.RtseeEventsDashboardComponent, typeof i16.RtseeEventsDashboardClientComponent, typeof i17.RtseeEventsDashboardClientThumbnailComponent, typeof i18.WidgetDirective, typeof i19.CallWidgetComponent, typeof i20.MainMenuComponent, typeof i21.MessageTimeAndStatusComponent, typeof i22.PreloaderComponent, typeof i23.SearchComponent, typeof i24.ManageChatComponent, typeof i25.ContactsMultiselectComponent, typeof i26.ShaveDirective, typeof i27.ProfileComponent, typeof i28.EventThumbnailComponent, typeof i29.RtseeEventsDashboardSessionComponent, typeof i30.RTSeeContainerComponent, typeof i31.PresentationComponent, typeof i32.StoryPlayerComponent, typeof i33.SlideComponent, typeof i34.StoryThumbnailComponent], [typeof i35.CommonModule, typeof i36.MatIconModule, typeof i37.MatButtonModule, typeof i38.MatSelectModule, typeof i39.BrowserAnimationsModule, typeof i40.MatFormFieldModule, typeof i41.ReactiveFormsModule, typeof i42.AutosizeModule, typeof i43.InfiniteScrollModule, typeof i41.FormsModule, typeof i35.NgOptimizedImage], [typeof i1.RTSeeConferenceComponent, typeof i7.MessengerComponent, typeof i15.RtseeEventsDashboardComponent, typeof i30.RTSeeContainerComponent, typeof i31.PresentationComponent]>;
|
|
44
48
|
static ɵinj: i0.ɵɵInjectorDeclaration<RTSeeModule>;
|
|
45
49
|
}
|
package/dist/ngx/public-api.d.ts
CHANGED
|
@@ -4,4 +4,5 @@ export * from './lib/components/rtsee/rtsee-conference.component';
|
|
|
4
4
|
export * from './lib/components/rtsee-messenger/messenger/messenger.component';
|
|
5
5
|
export * from './lib/components/rtsee-events-dashboard/rtsee-events-dashboard.component';
|
|
6
6
|
export * from './lib/components/rtsee-container/rtsee-container.component';
|
|
7
|
+
export * from './lib/components/rtsee-presentation/presentation/presentation.component';
|
|
7
8
|
export * from './lib/ngx.module';
|
|
@@ -212,15 +212,26 @@ $rtsee-chat-input-height: 40px;
|
|
|
212
212
|
$rtsee-container-top-offset: 84px;
|
|
213
213
|
$rtsee-default-component-dimension: 320px;
|
|
214
214
|
|
|
215
|
+
@media screen and (min-width: 900px) {
|
|
216
|
+
.rtsee-container {
|
|
217
|
+
position: fixed;
|
|
218
|
+
top: $rtsee-container-top-offset;
|
|
219
|
+
right: $rts-new-offset-md;
|
|
220
|
+
width: $rtsee-default-component-dimension;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.rtsee-messenger {
|
|
224
|
+
height: $rtsee-default-component-dimension;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
215
228
|
.rtsee-container {
|
|
216
|
-
|
|
217
|
-
width: $rtsee-default-component-dimension;
|
|
229
|
+
|
|
218
230
|
height: calc(100% - ($rtsee-container-top-offset + $rts-offset-md));
|
|
219
|
-
|
|
220
|
-
right: $rts-new-offset-md;
|
|
231
|
+
|
|
221
232
|
|
|
222
233
|
.rtsee-messenger {
|
|
223
|
-
height: $rtsee-default-component-dimension;
|
|
234
|
+
max-height: $rtsee-default-component-dimension;
|
|
224
235
|
|
|
225
236
|
&.rtsee-messenger-folded {
|
|
226
237
|
height: $rts-messenger-header-height;
|
|
@@ -295,59 +306,6 @@ $rts-new-default-text-size: 16px;
|
|
|
295
306
|
$rts-messenger-header-height: $rts-offset-sm + $rts-user-avatar-d-sm + $rts-offset-sm;
|
|
296
307
|
$rtsee-chat-input-height: 40px;
|
|
297
308
|
|
|
298
|
-
$rts-offset-sm: 8px;
|
|
299
|
-
$rts-offset-md: 16px;
|
|
300
|
-
$rts-offset-lg: 24px;
|
|
301
|
-
|
|
302
|
-
$rts-default-border-radius: 8px;
|
|
303
|
-
$rts-rounded-border-radius: 16px;
|
|
304
|
-
|
|
305
|
-
$rts-main-bg-color-light: #ffffff;
|
|
306
|
-
$rts-secondary-bg-color-light: #e6eef3;
|
|
307
|
-
$rts-main-bg-color-dark: #000000;
|
|
308
|
-
$rts-live-color: #91d8bb;
|
|
309
|
-
|
|
310
|
-
$rts-active-bg-color-light: #bbdffd;
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
$rts-font-color-dark: #000000;
|
|
314
|
-
$rts-font-color-light: #333333;
|
|
315
|
-
|
|
316
|
-
$rts-font-color-dbg-light: #ffffff;
|
|
317
|
-
|
|
318
|
-
$rts-user-avatar-d-sm: 42px;
|
|
319
|
-
$rts-user-avatar-d-md: 54px;
|
|
320
|
-
$rts-user-avatar-d-lg: 65px;
|
|
321
|
-
|
|
322
|
-
$rts-message-status-width: 69px;
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
$rts-state-bg-color: #D1F1EF;
|
|
326
|
-
$rts-disabled-color: #82DBD8;
|
|
327
|
-
$rts-slightly-active-color: #B3E8E5;
|
|
328
|
-
$rts-super-active-color: #3BACB6;
|
|
329
|
-
|
|
330
|
-
// new design-variables
|
|
331
|
-
|
|
332
|
-
$rts-new-offset-xsm: 8px;
|
|
333
|
-
$rts-new-offset-sm: 12px;
|
|
334
|
-
$rts-new-offset-md: 18px;
|
|
335
|
-
|
|
336
|
-
$rts-new-user-avatar-d-sm: 40px;
|
|
337
|
-
|
|
338
|
-
$rts-new-default-border-radius: 8px;
|
|
339
|
-
$rts-new-border-radius-rounded: 12px;
|
|
340
|
-
|
|
341
|
-
$rts-new-primary-color: #ea7b00;
|
|
342
|
-
$rts-new-active-bg-color-light: #feefe0;
|
|
343
|
-
$rts-new-secondary-bg-color-light: #e8e9eb;
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
$rts-new-small-text-size: 12px;
|
|
347
|
-
$rts-new-default-text-size: 16px;
|
|
348
|
-
|
|
349
|
-
// end of new design-variables
|
|
350
|
-
|
|
351
309
|
|
|
352
310
|
$control-icon-size: 18px;
|
|
353
311
|
|
|
@@ -2229,3 +2187,117 @@ $rts-new-default-text-size: 16px;
|
|
|
2229
2187
|
|
|
2230
2188
|
|
|
2231
2189
|
|
|
2190
|
+
$rts-offset-sm: 8px;
|
|
2191
|
+
$rts-offset-md: 16px;
|
|
2192
|
+
$rts-offset-lg: 24px;
|
|
2193
|
+
|
|
2194
|
+
$rts-default-border-radius: 8px;
|
|
2195
|
+
$rts-rounded-border-radius: 16px;
|
|
2196
|
+
|
|
2197
|
+
$rts-main-bg-color-light: #ffffff;
|
|
2198
|
+
$rts-secondary-bg-color-light: #e6eef3;
|
|
2199
|
+
$rts-main-bg-color-dark: #000000;
|
|
2200
|
+
$rts-live-color: #91d8bb;
|
|
2201
|
+
|
|
2202
|
+
$rts-active-bg-color-light: #bbdffd;
|
|
2203
|
+
|
|
2204
|
+
|
|
2205
|
+
$rts-font-color-dark: #000000;
|
|
2206
|
+
$rts-font-color-light: #333333;
|
|
2207
|
+
|
|
2208
|
+
$rts-font-color-dbg-light: #ffffff;
|
|
2209
|
+
|
|
2210
|
+
$rts-user-avatar-d-sm: 42px;
|
|
2211
|
+
$rts-user-avatar-d-md: 54px;
|
|
2212
|
+
$rts-user-avatar-d-lg: 65px;
|
|
2213
|
+
|
|
2214
|
+
$rts-message-status-width: 69px;
|
|
2215
|
+
|
|
2216
|
+
|
|
2217
|
+
$rts-state-bg-color: #D1F1EF;
|
|
2218
|
+
$rts-disabled-color: #82DBD8;
|
|
2219
|
+
$rts-slightly-active-color: #B3E8E5;
|
|
2220
|
+
$rts-super-active-color: #3BACB6;
|
|
2221
|
+
|
|
2222
|
+
// new design-variables
|
|
2223
|
+
|
|
2224
|
+
$rts-new-offset-xsm: 8px;
|
|
2225
|
+
$rts-new-offset-sm: 12px;
|
|
2226
|
+
$rts-new-offset-md: 18px;
|
|
2227
|
+
|
|
2228
|
+
$rts-new-user-avatar-d-sm: 40px;
|
|
2229
|
+
|
|
2230
|
+
$rts-new-default-border-radius: 8px;
|
|
2231
|
+
$rts-new-border-radius-rounded: 12px;
|
|
2232
|
+
|
|
2233
|
+
$rts-new-primary-color: #ea7b00;
|
|
2234
|
+
$rts-new-active-bg-color-light: #feefe0;
|
|
2235
|
+
$rts-new-secondary-bg-color-light: #e8e9eb;
|
|
2236
|
+
|
|
2237
|
+
|
|
2238
|
+
$rts-new-small-text-size: 12px;
|
|
2239
|
+
$rts-new-default-text-size: 16px;
|
|
2240
|
+
|
|
2241
|
+
// end of new design-variables
|
|
2242
|
+
|
|
2243
|
+
|
|
2244
|
+
|
|
2245
|
+
.rtsee-presentation-stories-list {
|
|
2246
|
+
overflow-x: auto;
|
|
2247
|
+
overflow-y: hidden;
|
|
2248
|
+
white-space: nowrap;
|
|
2249
|
+
padding: $rts-offset-sm;
|
|
2250
|
+
|
|
2251
|
+
.rtsee-presentation-story-thumbnail-container {
|
|
2252
|
+
display: inline-block;
|
|
2253
|
+
width: 128px;
|
|
2254
|
+
margin-right: $rts-offset-sm;
|
|
2255
|
+
vertical-align: top;
|
|
2256
|
+
|
|
2257
|
+
.rtsee-story-thumbnail {
|
|
2258
|
+
border-radius: $rts-default-border-radius;
|
|
2259
|
+
background-color: #fff;
|
|
2260
|
+
overflow: hidden;
|
|
2261
|
+
|
|
2262
|
+
.rtsee-story-thumbnail-image-container {
|
|
2263
|
+
padding-bottom: 100%;
|
|
2264
|
+
background-size: cover;
|
|
2265
|
+
background-repeat: no-repeat;
|
|
2266
|
+
overflow: hidden;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
.rtsee-story-thumbnail-body-container {
|
|
2270
|
+
padding: 4px;
|
|
2271
|
+
height: 111px;
|
|
2272
|
+
|
|
2273
|
+
.rtsee-story-thumbnail-title-container {
|
|
2274
|
+
.rtsee-story-thumbnail-title {
|
|
2275
|
+
margin: 0 0 $rts-offset-sm 0;
|
|
2276
|
+
white-space: normal;
|
|
2277
|
+
color: #333;
|
|
2278
|
+
}
|
|
2279
|
+
}
|
|
2280
|
+
|
|
2281
|
+
.rtsee-story-thumbnail-info-container {
|
|
2282
|
+
.rtsee-story-thumbnail-info-time-icon {
|
|
2283
|
+
font-size: 12px;
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
2286
|
+
}
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
|
|
2290
|
+
&:after {
|
|
2291
|
+
content: '';
|
|
2292
|
+
display: block;
|
|
2293
|
+
clear: both;
|
|
2294
|
+
}
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
|
|
2298
|
+
|
|
2299
|
+
|
|
2300
|
+
|
|
2301
|
+
|
|
2302
|
+
|
|
2303
|
+
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.0.
|
|
2
|
+
"version": "0.0.49",
|
|
3
3
|
"name": "@rtsee/ngx",
|
|
4
4
|
"module": "./dist/ngx/esm2022/public-api.mjs",
|
|
5
5
|
"types": "./dist/ngx/index.d.ts",
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
"@angular/platform-browser": "~16.2.2",
|
|
35
35
|
"@angular/platform-browser-dynamic": "~16.2.2",
|
|
36
36
|
"@angular/router": "~16.2.2",
|
|
37
|
-
"@rtsee/common": "^0.0.
|
|
38
|
-
"@rtsee/conference": "^0.0.
|
|
37
|
+
"@rtsee/common": "^0.0.19",
|
|
38
|
+
"@rtsee/conference": "^0.0.20",
|
|
39
39
|
"@rtsee/events-dashboard": "./packages/@rtsee/events-dashboard",
|
|
40
|
-
"@rtsee/messenger": "^0.0.
|
|
40
|
+
"@rtsee/messenger": "^0.0.53",
|
|
41
41
|
"dayjs": "^1.11.9",
|
|
42
42
|
"ngx-autosize": "^2.0.4",
|
|
43
43
|
"ngx-infinite-scroll": "16.0.0",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "bb223780c5ffdbb9860ddf8612cde61cbb77701d"
|
|
64
64
|
}
|