@rtsee/ngx 0.0.55 → 0.0.57

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.
Files changed (281) hide show
  1. package/.editorconfig +16 -0
  2. package/CHANGELOG.md +112 -0
  3. package/angular.json +67 -0
  4. package/jest.config.ts +9 -0
  5. package/package.json +28 -33
  6. package/projects/ngx/ng-package.json +8 -0
  7. package/projects/ngx/package.json +20 -0
  8. package/projects/ngx/src/lib/common/components/preloader/preloader.component.html +5 -0
  9. package/projects/ngx/src/lib/common/components/preloader/preloader.component.ts +30 -0
  10. package/projects/ngx/src/lib/components/constans/common.const.ts +8 -0
  11. package/projects/ngx/src/lib/components/enums/form.enum.ts +8 -0
  12. package/projects/ngx/src/lib/components/rtsee/rtsee-conference.component.html +70 -0
  13. package/projects/ngx/src/lib/components/rtsee/rtsee-conference.component.ts +35 -0
  14. package/projects/ngx/src/lib/components/rtsee/rtsee-controls/rtsee-controls.component.html +54 -0
  15. package/projects/ngx/src/lib/components/rtsee/rtsee-controls/rtsee-controls.component.scss +70 -0
  16. package/projects/ngx/src/lib/components/rtsee/rtsee-controls/rtsee-controls.component.ts +24 -0
  17. package/projects/ngx/src/lib/components/rtsee-auth/auth/auth.component.html +12 -0
  18. package/projects/ngx/src/lib/components/rtsee-auth/auth/auth.component.ts +22 -0
  19. package/projects/ngx/src/lib/components/rtsee-auth/forgot-password/forgot-password.component.html +35 -0
  20. package/projects/ngx/src/lib/components/rtsee-auth/forgot-password/forgot-password.component.ts +35 -0
  21. package/projects/ngx/src/lib/components/rtsee-auth/reset-password/reset-password.component.html +43 -0
  22. package/projects/ngx/src/lib/components/rtsee-auth/reset-password/reset-password.component.ts +79 -0
  23. package/projects/ngx/src/lib/components/rtsee-auth/services/utils.service.ts +20 -0
  24. package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.html +46 -0
  25. package/projects/ngx/src/lib/components/rtsee-auth/sign-in/sign-in.component.ts +44 -0
  26. package/projects/ngx/src/lib/components/rtsee-auth/sign-up/sign-up.component.html +51 -0
  27. package/projects/ngx/src/lib/components/rtsee-auth/sign-up/sign-up.component.ts +51 -0
  28. package/projects/ngx/src/lib/components/rtsee-auth/types/auth-form.type.ts +36 -0
  29. package/projects/ngx/src/lib/components/rtsee-auth/validators/form-fields-validators.ts +27 -0
  30. package/projects/ngx/src/lib/components/rtsee-auth/vendors/vendors.component.html +1 -0
  31. package/projects/ngx/src/lib/components/rtsee-auth/vendors/vendors.component.ts +10 -0
  32. package/projects/ngx/src/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.html +15 -0
  33. package/projects/ngx/src/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.ts +20 -0
  34. package/projects/ngx/src/lib/components/rtsee-container/rtsee-container.component.html +50 -0
  35. package/projects/ngx/src/lib/components/rtsee-container/rtsee-container.component.ts +37 -0
  36. package/projects/ngx/src/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.html +32 -0
  37. package/projects/ngx/src/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.ts +26 -0
  38. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/event-thumbnail/event-thumbnail.component.html +20 -0
  39. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/event-thumbnail/event-thumbnail.component.ts +89 -0
  40. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client/rtsee-events-dashboard-client.component.html +1 -0
  41. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client/rtsee-events-dashboard-client.component.ts +8 -0
  42. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client-thumbnail/rtsee-events-dashboard-client-thumbnail.component.html +25 -0
  43. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client-thumbnail/rtsee-events-dashboard-client-thumbnail.component.ts +40 -0
  44. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-session/rtsee-events-dashboard-session.component.html +32 -0
  45. package/projects/ngx/src/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-session/rtsee-events-dashboard-session.component.ts +21 -0
  46. package/projects/ngx/src/lib/components/rtsee-events-dashboard/rtsee-events-dashboard.component.html +12 -0
  47. package/projects/ngx/src/lib/components/rtsee-events-dashboard/rtsee-events-dashboard.component.ts +19 -0
  48. package/projects/ngx/src/lib/components/rtsee-messenger/chat/chat.component.html +10 -0
  49. package/projects/ngx/src/lib/components/rtsee-messenger/chat/chat.component.ts +18 -0
  50. package/projects/ngx/src/lib/components/rtsee-messenger/chat-input/chat-input.component.html +20 -0
  51. package/projects/ngx/src/lib/components/rtsee-messenger/chat-input/chat-input.component.ts +31 -0
  52. package/projects/ngx/src/lib/components/rtsee-messenger/chat-thumbnail/chat-thumbnail.component.html +28 -0
  53. package/projects/ngx/src/lib/components/rtsee-messenger/chat-thumbnail/chat-thumbnail.component.ts +27 -0
  54. package/projects/ngx/src/lib/components/rtsee-messenger/chats-list/chats-list.component.html +6 -0
  55. package/projects/ngx/src/lib/components/rtsee-messenger/chats-list/chats-list.component.ts +22 -0
  56. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/contacts-multiselect/contacts-multiselect.component.html +3 -0
  57. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/contacts-multiselect/contacts-multiselect.component.scss +0 -0
  58. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/contacts-multiselect/contacts-multiselect.component.ts +18 -0
  59. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/manage-chat/manage-chat.component.html +4 -0
  60. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/manage-chat/manage-chat.component.scss +0 -0
  61. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/manage-chat/manage-chat.component.ts +18 -0
  62. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/models/MainMenuState.ts +11 -0
  63. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/search/search.component.html +25 -0
  64. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/components/search/search.component.ts +36 -0
  65. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/main-menu.component.html +32 -0
  66. package/projects/ngx/src/lib/components/rtsee-messenger/main-menu/main-menu.component.ts +41 -0
  67. package/projects/ngx/src/lib/components/rtsee-messenger/message/components/message-time-and-status/message-time-and-status.component.html +9 -0
  68. package/projects/ngx/src/lib/components/rtsee-messenger/message/components/message-time-and-status/message-time-and-status.component.ts +23 -0
  69. package/projects/ngx/src/lib/components/rtsee-messenger/message/message.component.html +17 -0
  70. package/projects/ngx/src/lib/components/rtsee-messenger/message/message.component.ts +64 -0
  71. package/projects/ngx/src/lib/components/rtsee-messenger/message-widgets/call-widget/call-widget.component.html +10 -0
  72. package/projects/ngx/src/lib/components/rtsee-messenger/message-widgets/call-widget/call-widget.component.scss +1 -0
  73. package/projects/ngx/src/lib/components/rtsee-messenger/message-widgets/call-widget/call-widget.component.ts +36 -0
  74. package/projects/ngx/src/lib/components/rtsee-messenger/messages-list/messages-list.component.html +18 -0
  75. package/projects/ngx/src/lib/components/rtsee-messenger/messages-list/messages-list.component.ts +91 -0
  76. package/projects/ngx/src/lib/components/rtsee-messenger/messenger/messenger.component.html +31 -0
  77. package/projects/ngx/src/lib/components/rtsee-messenger/messenger/messenger.component.ts +45 -0
  78. package/projects/ngx/src/lib/components/rtsee-messenger/messenger-header/messenger-header.component.html +57 -0
  79. package/projects/ngx/src/lib/components/rtsee-messenger/messenger-header/messenger-header.component.ts +30 -0
  80. package/projects/ngx/src/lib/components/rtsee-messenger/profile/profile.component.html +20 -0
  81. package/projects/ngx/src/lib/components/rtsee-messenger/profile/profile.component.ts +25 -0
  82. package/projects/ngx/src/lib/components/rtsee-peer/rtsee-peer.component.html +28 -0
  83. package/projects/ngx/src/lib/components/rtsee-peer/rtsee-peer.component.ts +43 -0
  84. package/projects/ngx/src/lib/components/rtsee-peers-list/rtsee-peers-list.component.html +1 -0
  85. package/projects/ngx/src/lib/components/rtsee-peers-list/rtsee-peers-list.component.scss +0 -0
  86. package/projects/ngx/src/lib/components/rtsee-peers-list/rtsee-peers-list.component.ts +9 -0
  87. package/projects/ngx/src/lib/components/rtsee-presentation/presentation/presentation.component.html +24 -0
  88. package/projects/ngx/src/lib/components/rtsee-presentation/presentation/presentation.component.ts +26 -0
  89. package/projects/ngx/src/lib/components/rtsee-presentation/presentation-header/presentation-header.component.html +14 -0
  90. package/projects/ngx/src/lib/components/rtsee-presentation/presentation-header/presentation-header.component.ts +15 -0
  91. package/projects/ngx/src/lib/components/rtsee-presentation/slide/slide.component.html +29 -0
  92. package/projects/ngx/src/lib/components/rtsee-presentation/slide/slide.component.ts +25 -0
  93. package/projects/ngx/src/lib/components/rtsee-presentation/story-player/story-player.component.html +10 -0
  94. package/projects/ngx/src/lib/components/rtsee-presentation/story-player/story-player.component.ts +22 -0
  95. package/projects/ngx/src/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.html +15 -0
  96. package/projects/ngx/src/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.scss +0 -0
  97. package/projects/ngx/src/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.ts +19 -0
  98. package/projects/ngx/src/lib/components/rtsee-settings/rtsee-settings.component.html +44 -0
  99. package/projects/ngx/src/lib/components/rtsee-settings/rtsee-settings.component.scss +30 -0
  100. package/projects/ngx/src/lib/components/rtsee-settings/rtsee-settings.component.ts +57 -0
  101. package/projects/ngx/src/lib/components/rtsee-soundbar/rtsee-soundbar.component.html +19 -0
  102. package/projects/ngx/src/lib/components/rtsee-soundbar/rtsee-soundbar.component.scss +56 -0
  103. package/projects/ngx/src/lib/components/rtsee-soundbar/rtsee-soundbar.component.ts +66 -0
  104. package/projects/ngx/src/lib/directives/shave.directive.ts +15 -0
  105. package/projects/ngx/src/lib/directives/widget.directive.ts +9 -0
  106. package/projects/ngx/src/lib/ngx.module.ts +119 -0
  107. package/projects/ngx/src/lib/ngx.service.spec.ts +16 -0
  108. package/projects/ngx/src/lib/ngx.service.ts +11 -0
  109. package/projects/ngx/src/lib/services/default-images.service.ts +8 -0
  110. package/projects/ngx/src/lib/services/events-widgets.service.ts +19 -0
  111. package/projects/ngx/src/lib/services/message-widgets.service.ts +26 -0
  112. package/projects/ngx/src/lib/services/time-format-helper.service.ts +111 -0
  113. package/projects/ngx/src/lib/theme/auth/auth-container.scss +186 -0
  114. package/projects/ngx/src/lib/theme/auth/auth.scss +0 -0
  115. package/projects/ngx/src/lib/theme/auth/index.scss +2 -0
  116. package/projects/ngx/src/lib/theme/auth/variables.scss +64 -0
  117. package/projects/ngx/src/lib/theme/common-components/preloader.scss +35 -0
  118. package/projects/ngx/src/lib/theme/common-variables.scss +108 -0
  119. package/projects/ngx/src/lib/theme/common.scss +7 -0
  120. package/projects/ngx/src/lib/theme/containers/bottom-nav.scss +15 -0
  121. package/projects/ngx/src/lib/theme/containers/index.scss +4 -0
  122. package/projects/ngx/src/lib/theme/containers/nav-item.scss +70 -0
  123. package/projects/ngx/src/lib/theme/containers/shell.scss +203 -0
  124. package/projects/ngx/src/lib/theme/containers/sidenav.scss +125 -0
  125. package/projects/ngx/src/lib/theme/containers/variables.scss +23 -0
  126. package/projects/ngx/src/lib/theme/events-manager/client-thumbnail.scss +98 -0
  127. package/projects/ngx/src/lib/theme/events-manager/event-thumbnail.scss +47 -0
  128. package/projects/ngx/src/lib/theme/events-manager/events-dashboard-session.scss +54 -0
  129. package/projects/ngx/src/lib/theme/events-manager/events-dashboard.scss +17 -0
  130. package/projects/ngx/src/lib/theme/events-manager/events-manager.scss +0 -0
  131. package/projects/ngx/src/lib/theme/events-manager/index.scss +6 -0
  132. package/projects/ngx/src/lib/theme/events-manager.scss +0 -0
  133. package/projects/ngx/src/lib/theme/general.scss +3 -0
  134. package/projects/ngx/src/lib/theme/messenger/call-widget.scss +16 -0
  135. package/projects/ngx/src/lib/theme/messenger/chat-input.scss +51 -0
  136. package/projects/ngx/src/lib/theme/messenger/chat-thumbnail.scss +106 -0
  137. package/projects/ngx/src/lib/theme/messenger/chat.scss +28 -0
  138. package/projects/ngx/src/lib/theme/messenger/chats-list.scss +14 -0
  139. package/projects/ngx/src/lib/theme/messenger/index.scss +12 -0
  140. package/projects/ngx/src/lib/theme/messenger/message-time-and-status.scss +25 -0
  141. package/projects/ngx/src/lib/theme/messenger/message.scss +65 -0
  142. package/projects/ngx/src/lib/theme/messenger/messages-list.scss +35 -0
  143. package/projects/ngx/src/lib/theme/messenger/messenger-header.scss +182 -0
  144. package/projects/ngx/src/lib/theme/messenger/messenger-search.scss +16 -0
  145. package/projects/ngx/src/lib/theme/messenger/messenger.scss +100 -0
  146. package/projects/ngx/src/lib/theme/messenger/variables.scss +4 -0
  147. package/projects/ngx/src/lib/theme/presentation/index.scss +3 -0
  148. package/projects/ngx/src/lib/theme/presentation/slide.scss +14 -0
  149. package/projects/ngx/src/lib/theme/presentation/story-player.scss +11 -0
  150. package/projects/ngx/src/lib/theme/presentation/story-thumbnail.scss +59 -0
  151. package/projects/ngx/src/lib/theme/presentation/variables.scss +1 -0
  152. package/projects/ngx/src/lib/theme/styles.scss +8 -0
  153. package/projects/ngx/src/lib/theme/video-chat/index.scss +2 -0
  154. package/projects/ngx/src/lib/theme/video-chat/video-chat.scss +264 -0
  155. package/projects/ngx/src/lib/theme/video-chat/video-peer.scss +71 -0
  156. package/projects/ngx/src/lib/theme/video-chat.scss +0 -0
  157. package/{dist/ngx/public-api.d.ts → projects/ngx/src/public-api.ts} +7 -0
  158. package/projects/ngx/tsconfig.lib.json +14 -0
  159. package/projects/ngx/tsconfig.lib.prod.json +10 -0
  160. package/projects/ngx/tsconfig.spec.json +10 -0
  161. package/projects/ngx/yarn.lock +8 -0
  162. package/scss-bundle.config.json +6 -0
  163. package/setup-jest.ts +1 -0
  164. package/tsconfig.eslint.json +4 -0
  165. package/tsconfig.json +38 -0
  166. package/tsconfig.spec.json +8 -0
  167. package/dist/ngx/esm2022/lib/common/components/preloader/preloader.component.mjs +0 -31
  168. package/dist/ngx/esm2022/lib/components/constans/common.const.mjs +0 -9
  169. package/dist/ngx/esm2022/lib/components/enums/form.enum.mjs +0 -10
  170. package/dist/ngx/esm2022/lib/components/rtsee/rtsee-conference.component.mjs +0 -28
  171. package/dist/ngx/esm2022/lib/components/rtsee/rtsee-controls/rtsee-controls.component.mjs +0 -23
  172. package/dist/ngx/esm2022/lib/components/rtsee-auth/auth/auth.component.mjs +0 -19
  173. package/dist/ngx/esm2022/lib/components/rtsee-auth/forgot-password/forgot-password.component.mjs +0 -28
  174. package/dist/ngx/esm2022/lib/components/rtsee-auth/reset-password/reset-password.component.mjs +0 -70
  175. package/dist/ngx/esm2022/lib/components/rtsee-auth/services/utils.service.mjs +0 -24
  176. package/dist/ngx/esm2022/lib/components/rtsee-auth/sign-in/sign-in.component.mjs +0 -36
  177. package/dist/ngx/esm2022/lib/components/rtsee-auth/sign-up/sign-up.component.mjs +0 -43
  178. package/dist/ngx/esm2022/lib/components/rtsee-auth/types/auth-form.type.mjs +0 -2
  179. package/dist/ngx/esm2022/lib/components/rtsee-auth/vendors/vendors.component.mjs +0 -11
  180. package/dist/ngx/esm2022/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.mjs +0 -18
  181. package/dist/ngx/esm2022/lib/components/rtsee-container/rtsee-container.component.mjs +0 -29
  182. package/dist/ngx/esm2022/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.mjs +0 -25
  183. package/dist/ngx/esm2022/lib/components/rtsee-events-dashboard/components/event-thumbnail/event-thumbnail.component.mjs +0 -72
  184. package/dist/ngx/esm2022/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client/rtsee-events-dashboard-client.component.mjs +0 -11
  185. package/dist/ngx/esm2022/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client-thumbnail/rtsee-events-dashboard-client-thumbnail.component.mjs +0 -30
  186. package/dist/ngx/esm2022/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-session/rtsee-events-dashboard-session.component.mjs +0 -19
  187. package/dist/ngx/esm2022/lib/components/rtsee-events-dashboard/rtsee-events-dashboard.component.mjs +0 -15
  188. package/dist/ngx/esm2022/lib/components/rtsee-messenger/chat/chat.component.mjs +0 -17
  189. package/dist/ngx/esm2022/lib/components/rtsee-messenger/chat-input/chat-input.component.mjs +0 -33
  190. package/dist/ngx/esm2022/lib/components/rtsee-messenger/chat-thumbnail/chat-thumbnail.component.mjs +0 -24
  191. package/dist/ngx/esm2022/lib/components/rtsee-messenger/chats-list/chats-list.component.mjs +0 -20
  192. package/dist/ngx/esm2022/lib/components/rtsee-messenger/main-menu/components/contacts-multiselect/contacts-multiselect.component.mjs +0 -16
  193. package/dist/ngx/esm2022/lib/components/rtsee-messenger/main-menu/components/manage-chat/manage-chat.component.mjs +0 -19
  194. package/dist/ngx/esm2022/lib/components/rtsee-messenger/main-menu/components/models/MainMenuState.mjs +0 -8
  195. package/dist/ngx/esm2022/lib/components/rtsee-messenger/main-menu/components/search/search.component.mjs +0 -31
  196. package/dist/ngx/esm2022/lib/components/rtsee-messenger/main-menu/main-menu.component.mjs +0 -32
  197. package/dist/ngx/esm2022/lib/components/rtsee-messenger/message/components/message-time-and-status/message-time-and-status.component.mjs +0 -23
  198. package/dist/ngx/esm2022/lib/components/rtsee-messenger/message/message.component.mjs +0 -50
  199. package/dist/ngx/esm2022/lib/components/rtsee-messenger/message-widgets/call-widget/call-widget.component.mjs +0 -31
  200. package/dist/ngx/esm2022/lib/components/rtsee-messenger/messages-list/messages-list.component.mjs +0 -69
  201. package/dist/ngx/esm2022/lib/components/rtsee-messenger/messenger/messenger.component.mjs +0 -32
  202. package/dist/ngx/esm2022/lib/components/rtsee-messenger/messenger-header/messenger-header.component.mjs +0 -30
  203. package/dist/ngx/esm2022/lib/components/rtsee-messenger/profile/profile.component.mjs +0 -25
  204. package/dist/ngx/esm2022/lib/components/rtsee-peer/rtsee-peer.component.mjs +0 -31
  205. package/dist/ngx/esm2022/lib/components/rtsee-peers-list/rtsee-peers-list.component.mjs +0 -11
  206. package/dist/ngx/esm2022/lib/components/rtsee-presentation/presentation/presentation.component.mjs +0 -18
  207. package/dist/ngx/esm2022/lib/components/rtsee-presentation/presentation-header/presentation-header.component.mjs +0 -14
  208. package/dist/ngx/esm2022/lib/components/rtsee-presentation/slide/slide.component.mjs +0 -25
  209. package/dist/ngx/esm2022/lib/components/rtsee-presentation/story-player/story-player.component.mjs +0 -18
  210. package/dist/ngx/esm2022/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.mjs +0 -17
  211. package/dist/ngx/esm2022/lib/components/rtsee-settings/rtsee-settings.component.mjs +0 -47
  212. package/dist/ngx/esm2022/lib/components/rtsee-soundbar/rtsee-soundbar.component.mjs +0 -53
  213. package/dist/ngx/esm2022/lib/directives/shave.directive.mjs +0 -21
  214. package/dist/ngx/esm2022/lib/directives/widget.directive.mjs +0 -16
  215. package/dist/ngx/esm2022/lib/ngx.module.mjs +0 -205
  216. package/dist/ngx/esm2022/lib/ngx.service.mjs +0 -16
  217. package/dist/ngx/esm2022/lib/services/default-images.service.mjs +0 -16
  218. package/dist/ngx/esm2022/lib/services/events-widgets.service.mjs +0 -25
  219. package/dist/ngx/esm2022/lib/services/message-widgets.service.mjs +0 -28
  220. package/dist/ngx/esm2022/lib/services/time-format-helper.service.mjs +0 -92
  221. package/dist/ngx/esm2022/public-api.mjs +0 -13
  222. package/dist/ngx/esm2022/rtsee-ngx.mjs +0 -5
  223. package/dist/ngx/fesm2022/rtsee-ngx.mjs +0 -1419
  224. package/dist/ngx/fesm2022/rtsee-ngx.mjs.map +0 -1
  225. package/dist/ngx/index.d.ts +0 -5
  226. package/dist/ngx/lib/common/components/preloader/preloader.component.d.ts +0 -13
  227. package/dist/ngx/lib/components/constans/common.const.d.ts +0 -8
  228. package/dist/ngx/lib/components/enums/form.enum.d.ts +0 -8
  229. package/dist/ngx/lib/components/rtsee/rtsee-conference.component.d.ts +0 -11
  230. package/dist/ngx/lib/components/rtsee/rtsee-controls/rtsee-controls.component.d.ts +0 -9
  231. package/dist/ngx/lib/components/rtsee-auth/auth/auth.component.d.ts +0 -6
  232. package/dist/ngx/lib/components/rtsee-auth/forgot-password/forgot-password.component.d.ts +0 -13
  233. package/dist/ngx/lib/components/rtsee-auth/reset-password/reset-password.component.d.ts +0 -21
  234. package/dist/ngx/lib/components/rtsee-auth/services/utils.service.d.ts +0 -7
  235. package/dist/ngx/lib/components/rtsee-auth/sign-in/sign-in.component.d.ts +0 -14
  236. package/dist/ngx/lib/components/rtsee-auth/sign-up/sign-up.component.d.ts +0 -12
  237. package/dist/ngx/lib/components/rtsee-auth/types/auth-form.type.d.ts +0 -27
  238. package/dist/ngx/lib/components/rtsee-auth/vendors/vendors.component.d.ts +0 -5
  239. package/dist/ngx/lib/components/rtsee-container/rtsee-bottom-nav/rtsee-bottom-nav.component.d.ts +0 -9
  240. package/dist/ngx/lib/components/rtsee-container/rtsee-container.component.d.ts +0 -12
  241. package/dist/ngx/lib/components/rtsee-container/rtsee-sidenav/rtsee-sidenav.component.d.ts +0 -11
  242. package/dist/ngx/lib/components/rtsee-events-dashboard/components/event-thumbnail/event-thumbnail.component.d.ts +0 -21
  243. package/dist/ngx/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client/rtsee-events-dashboard-client.component.d.ts +0 -5
  244. package/dist/ngx/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-client-thumbnail/rtsee-events-dashboard-client-thumbnail.component.d.ts +0 -16
  245. package/dist/ngx/lib/components/rtsee-events-dashboard/components/rtsee-events-dashboard-session/rtsee-events-dashboard-session.component.d.ts +0 -10
  246. package/dist/ngx/lib/components/rtsee-events-dashboard/rtsee-events-dashboard.component.d.ts +0 -7
  247. package/dist/ngx/lib/components/rtsee-messenger/chat/chat.component.d.ts +0 -8
  248. package/dist/ngx/lib/components/rtsee-messenger/chat-input/chat-input.component.d.ts +0 -11
  249. package/dist/ngx/lib/components/rtsee-messenger/chat-thumbnail/chat-thumbnail.component.d.ts +0 -13
  250. package/dist/ngx/lib/components/rtsee-messenger/chats-list/chats-list.component.d.ts +0 -10
  251. package/dist/ngx/lib/components/rtsee-messenger/main-menu/components/contacts-multiselect/contacts-multiselect.component.d.ts +0 -9
  252. package/dist/ngx/lib/components/rtsee-messenger/main-menu/components/manage-chat/manage-chat.component.d.ts +0 -10
  253. package/dist/ngx/lib/components/rtsee-messenger/main-menu/components/models/MainMenuState.d.ts +0 -9
  254. package/dist/ngx/lib/components/rtsee-messenger/main-menu/components/search/search.component.d.ts +0 -14
  255. package/dist/ngx/lib/components/rtsee-messenger/main-menu/main-menu.component.d.ts +0 -13
  256. package/dist/ngx/lib/components/rtsee-messenger/message/components/message-time-and-status/message-time-and-status.component.d.ts +0 -13
  257. package/dist/ngx/lib/components/rtsee-messenger/message/message.component.d.ts +0 -20
  258. package/dist/ngx/lib/components/rtsee-messenger/message-widgets/call-widget/call-widget.component.d.ts +0 -13
  259. package/dist/ngx/lib/components/rtsee-messenger/messages-list/messages-list.component.d.ts +0 -22
  260. package/dist/ngx/lib/components/rtsee-messenger/messenger/messenger.component.d.ts +0 -11
  261. package/dist/ngx/lib/components/rtsee-messenger/messenger-header/messenger-header.component.d.ts +0 -14
  262. package/dist/ngx/lib/components/rtsee-messenger/profile/profile.component.d.ts +0 -9
  263. package/dist/ngx/lib/components/rtsee-peer/rtsee-peer.component.d.ts +0 -14
  264. package/dist/ngx/lib/components/rtsee-peers-list/rtsee-peers-list.component.d.ts +0 -5
  265. package/dist/ngx/lib/components/rtsee-presentation/presentation/presentation.component.d.ts +0 -8
  266. package/dist/ngx/lib/components/rtsee-presentation/presentation-header/presentation-header.component.d.ts +0 -7
  267. package/dist/ngx/lib/components/rtsee-presentation/slide/slide.component.d.ts +0 -9
  268. package/dist/ngx/lib/components/rtsee-presentation/story-player/story-player.component.d.ts +0 -9
  269. package/dist/ngx/lib/components/rtsee-presentation/story-thumbnail/story-thumbnail.component.d.ts +0 -8
  270. package/dist/ngx/lib/components/rtsee-settings/rtsee-settings.component.d.ts +0 -21
  271. package/dist/ngx/lib/components/rtsee-soundbar/rtsee-soundbar.component.d.ts +0 -17
  272. package/dist/ngx/lib/directives/shave.directive.d.ts +0 -9
  273. package/dist/ngx/lib/directives/widget.directive.d.ts +0 -8
  274. package/dist/ngx/lib/ngx.module.d.ts +0 -59
  275. package/dist/ngx/lib/ngx.service.d.ts +0 -7
  276. package/dist/ngx/lib/services/default-images.service.d.ts +0 -6
  277. package/dist/ngx/lib/services/events-widgets.service.d.ts +0 -8
  278. package/dist/ngx/lib/services/message-widgets.service.d.ts +0 -11
  279. package/dist/ngx/lib/services/time-format-helper.service.d.ts +0 -14
  280. package/dist/ngx/src/lib/common/compiled-scss/styles.scss +0 -5387
  281. /package/{dist → projects}/ngx/README.md +0 -0
@@ -0,0 +1,203 @@
1
+ @import "./variables";
2
+
3
+ .rtsee-shell {
4
+ background-color: yellow;
5
+
6
+ &.rtsee-shell-conference-mode {
7
+ padding-top: $video-container-height;
8
+
9
+ .rtsee-shell-panel {
10
+ display: block;
11
+ }
12
+
13
+ &.rtsee-shell-messenger-active {
14
+ .rtsee-messenger-container {
15
+ .rtsee-messenger-header-container {
16
+ top: $video-container-height;
17
+ }
18
+ }
19
+ }
20
+
21
+ @media screen and (min-width: $rts-break-md) {
22
+ padding-top: 0;
23
+
24
+ .rtsee-shell-panel {
25
+ padding-top: $video-container-height;
26
+ }
27
+ }
28
+ }
29
+
30
+ &.rtsee-shell-messenger-active {
31
+ .rtsee-shell-panel {
32
+ display: block;
33
+ }
34
+
35
+ .rtsee-messenger-container {
36
+ display: block;
37
+
38
+ .rtsee-messenger-header-container {
39
+ position: fixed;
40
+ top: 0;
41
+ z-index: 1;
42
+ }
43
+
44
+ .rtsee-chat-footer-container {
45
+ bottom: $rts-bottom-nav-height;
46
+ position: fixed;
47
+ z-index: 1;
48
+ }
49
+ }
50
+
51
+ .rtsee-content {
52
+ display: none;
53
+ }
54
+ }
55
+
56
+ &.rtsee-shell-dashboard-active {
57
+ .rtsee-shell-panel {
58
+ display: block;
59
+ }
60
+
61
+ .rtsee-events-dashboard-container {
62
+ display: block;
63
+ }
64
+
65
+ .rtsee-content {
66
+ display: none;
67
+ }
68
+ }
69
+
70
+ &.rtsee-shell-presentation-active {
71
+ .rtsee-shell-panel {
72
+ display: block;
73
+ }
74
+
75
+ .rtsee-presentation-container {
76
+ display: block;
77
+ }
78
+
79
+ .rtsee-content {
80
+ display: none;
81
+ }
82
+ }
83
+
84
+ .rtsee-sidenav-block {
85
+ display: none;
86
+ position: fixed;
87
+ z-index: 4;
88
+ top: 0;
89
+ height: 100%;
90
+ width: $sidenav-collapsed-width;
91
+ left: 0;
92
+ }
93
+
94
+ .rtsee-shell-panel {
95
+ display: none;
96
+ background-color: green;
97
+ }
98
+
99
+ .rtsee-conference-container {
100
+ position: fixed;
101
+ top: 0;
102
+ left: 0;
103
+ height: $video-container-height;
104
+ width: 100%;
105
+ z-index: 2;
106
+ }
107
+
108
+ .rtsee-messenger-container {
109
+ display: none;
110
+ height: 100%;
111
+ }
112
+
113
+ .rtsee-events-dashboard-container {
114
+ display: none;
115
+ }
116
+
117
+ .rtsee-presentation-container {
118
+ display: none;
119
+ height: 100%;
120
+ overflow: auto;
121
+ }
122
+
123
+ .rtsee-bottom-nav-block {
124
+ position: fixed;
125
+ width: 100%;
126
+ bottom: 0;
127
+ left: 0;
128
+ }
129
+
130
+ @media screen and (min-width: $rts-break-md) {
131
+ .rtsee-content {
132
+ display: block;
133
+ }
134
+
135
+ .rtsee-bottom-nav-block {
136
+ display: none;
137
+ }
138
+
139
+ .rtsee-sidenav-block {
140
+ display: block;
141
+ }
142
+
143
+ .rtsee-content {
144
+ padding-left: $rts-header-height;
145
+ padding-right: $video-container-width;
146
+ }
147
+
148
+ .rtsee-shell-panel {
149
+ display: block;
150
+ width: $video-container-width;
151
+ height: 100%;
152
+ position: fixed;
153
+ right: 0;
154
+ top: 0;
155
+ }
156
+
157
+ .rtsee-conference-container {
158
+ position: absolute;
159
+ left: 0;
160
+ top: 0;
161
+ }
162
+
163
+ .rtsee-shell-panel {
164
+ padding: 0;
165
+ }
166
+
167
+ &.rtsee-shell-side-nav-expanded {
168
+ .rtsee-content {
169
+ padding-left: $rts-sidenav-expanded-width;
170
+ overflow: hidden;
171
+ }
172
+
173
+ .rtsee-sidenav-block {
174
+ left: 0;
175
+ width: $rts-sidenav-expanded-width;
176
+ }
177
+ }
178
+
179
+ &.rtsee-shell-conference-mode {
180
+ &.rtsee-shell-messenger-active {
181
+ .rtsee-messenger-container {
182
+ .rtsee-messenger-header-container {
183
+ top: 0;
184
+ }
185
+ }
186
+ }
187
+ }
188
+
189
+ &.rtsee-shell-messenger-active {
190
+ .rtsee-messenger-container {
191
+ .rtsee-messenger-header-container {
192
+ top: 0;
193
+ position: absolute;
194
+ }
195
+
196
+ .rtsee-chat-footer-container {
197
+ bottom: 0;
198
+ position: absolute;
199
+ }
200
+ }
201
+ }
202
+ }
203
+ }
@@ -0,0 +1,125 @@
1
+ @import "./variables";
2
+
3
+
4
+ .rtsee-sidenav {
5
+ background-color: $sidenav-bg-color;
6
+ height: 100%;
7
+ position: relative;
8
+ border-right: 1px solid $default-border-color;
9
+
10
+ .rtsee-sidenav-toggle {
11
+ position: absolute;
12
+ top: 0;
13
+ right: -$sidenav-toggle-width;
14
+ height: 100%;
15
+ width: $sidenav-toggle-width;
16
+ border-left: 2px solid transparent;
17
+
18
+ .rtsee-sidenav-toggle-button {
19
+ display: flex;
20
+ justify-content: center;
21
+ align-items: center;
22
+ position: absolute;
23
+ top: 66px;
24
+ left: -17px;
25
+ border-radius: 50%;
26
+ border: 1px solid $default-border-color;
27
+ height: 30px;
28
+ width: 30px;
29
+ cursor: pointer;
30
+ color: $primary-blue;
31
+ background-color: $sidenav-bg-color;
32
+ }
33
+ }
34
+
35
+ .rtsee-sidenav-header {
36
+ overflow: hidden;
37
+ position: relative;
38
+ height: $rts-header-height;
39
+ border-bottom: 1px solid #e8e8e8;
40
+
41
+ .rtsee-site-logo {
42
+ float: left;
43
+ line-height: $rts-header-height;
44
+ height: $rts-header-height;
45
+ width: $sidenav-collapsed-width;
46
+ text-align: center;
47
+
48
+ .rtsee-home-link {
49
+ text-decoration: none;
50
+ color: $nav-font-color;
51
+
52
+ .rtsee-site-logo-wrapper {
53
+ display: inline-block;
54
+ vertical-align: middle;
55
+ }
56
+
57
+ img {
58
+ height: $dark-logo-height;
59
+ width: $logo-height;
60
+ vertical-align: middle;
61
+ }
62
+ }
63
+
64
+
65
+ }
66
+
67
+ .rtsee-sidenav-toggle {
68
+ position: absolute;
69
+ right: 0;
70
+ top: 0;
71
+ height: 100%;
72
+ width: 70px;
73
+ font-size: 23px;
74
+ text-align: center;
75
+ line-height: $rts-header-height;
76
+ color: $icon-color;
77
+ cursor: pointer;
78
+
79
+ :hover {
80
+ opacity: 0.6;
81
+ }
82
+ }
83
+ }
84
+
85
+ .rtsee-sidenav-body {
86
+ overflow: auto;
87
+ height: calc(100% - #{$rts-header-height});
88
+
89
+ .rtsee-nav-items {
90
+ list-style-type: none;
91
+ padding: 0;
92
+ margin: 0;
93
+
94
+ .nav-icon-img {
95
+ margin-top: -5px;
96
+ }
97
+ }
98
+ }
99
+
100
+ &.rtsee-sidenav-expanded {
101
+ .rtsee-sidenav-body {
102
+ .rtsee-nav-items {
103
+ .rtsee-nav-item {
104
+ padding-left: $nav-icon-block-width;
105
+
106
+ .rtsee-nav-item-name {
107
+ display: block;
108
+ }
109
+
110
+ .rtsee-nav-item-icon {
111
+ position: absolute;
112
+ height: $nav-item-height;
113
+ width: $nav-icon-block-width;
114
+ }
115
+ }
116
+ }
117
+ }
118
+
119
+ .rtsee-sidenav-toggle {
120
+ cursor: w-resize;
121
+ }
122
+ }
123
+ }
124
+
125
+
@@ -0,0 +1,23 @@
1
+ @import "../common-variables";
2
+
3
+ $nav-item-height: $rts-header-height;
4
+ $nav-icon-block-width: $rts-header-height;
5
+ $nav-icon-size: 24px;
6
+ $sidenav-toggle-width: 6px;
7
+
8
+ $rts-sidenav-expanded-width: $video-container-width;
9
+
10
+
11
+
12
+ $sidenav-bg-color: #fff;
13
+ $default-border-color: #e8e8e8;
14
+ $primary-blue: #5b7a9f;
15
+ $sidenav-collapsed-width: $rts-header-height;
16
+ $dark-logo-height: 30px;
17
+ $logo-height: 50px;
18
+ $icon-color: #a8a8a8;
19
+
20
+ $new-nav-icon-size: 30px;
21
+ $nav-font-color: #5d5d5d;
22
+ $active-font-color: #6897bb;
23
+ $active-bg-color: #e8f4f4;
@@ -0,0 +1,98 @@
1
+ @import "../common-variables";
2
+
3
+ $live-indicator-d: 15px;
4
+ $engage-button-border-thickness: 2px;
5
+
6
+ .rtsee-dashboard-client-thumbnail {
7
+ position: relative;
8
+
9
+ .rtsee-dashboard-client-header {
10
+ position: relative;
11
+ padding-left: $rts-user-avatar-d-sm + $rts-offset-sm;
12
+ height: $rts-user-avatar-d-sm;
13
+
14
+ .rtsee-dashboard-client-header-photo {
15
+ position: absolute;
16
+ left: 0;
17
+ top: 0;
18
+ width: $rts-user-avatar-d-sm;
19
+ height: $rts-user-avatar-d-sm;
20
+
21
+ .rtsee-dashboard-client-header-image {
22
+ width: 100%;
23
+ height: 100%;
24
+ border-radius: 50%;
25
+ overflow: hidden;
26
+ background-size: cover;
27
+ }
28
+
29
+ .rtsee-dashboard-client-live-indicator {
30
+ position: absolute;
31
+ bottom: -1px;
32
+ right: -1px;
33
+ width: $live-indicator-d;
34
+ height: $live-indicator-d;
35
+ border-radius: 50%;
36
+ background: $rts-live-color;
37
+ }
38
+ }
39
+
40
+ .rtsee-dashboard-client-name {
41
+ height: $rts-user-avatar-d-sm;
42
+ line-height: $rts-user-avatar-d-sm;
43
+ margin: 0;
44
+ font-size: 16px;
45
+ font-weight: 600;
46
+ padding-right: $rts-user-avatar-d-sm + $rts-offset-sm;
47
+ position: relative;
48
+ display: inline-block;
49
+ max-width: 100%;
50
+
51
+ .rtsee-dashboard-client-name-text {
52
+ width: 100%;
53
+ white-space: nowrap;
54
+ overflow: hidden;
55
+ text-overflow: ellipsis;
56
+ display: inline-block;
57
+ }
58
+
59
+ .rtsee-dashboard-client-engage {
60
+ position: absolute;
61
+ width: $rts-user-avatar-d-sm;
62
+ height: $rts-user-avatar-d-sm;
63
+ right: 0;
64
+ top: 0;
65
+ outline: none;
66
+ border: $engage-button-border-thickness solid $rts-font-color-light;
67
+ background-color: transparent;
68
+ cursor: pointer;
69
+ border-radius: $rts-default-border-radius;
70
+
71
+ &:hover {
72
+ opacity: 0.7;
73
+ }
74
+
75
+ .rtsee-dashboard-client-engage-icon {
76
+ font-size: 23px;
77
+ line-height: $rts-user-avatar-d-sm - $engage-button-border-thickness * 2;
78
+ }
79
+ }
80
+ }
81
+ }
82
+
83
+ .rtsee-dashboard-sessions {
84
+ overflow-x: auto;
85
+ overflow-y: hidden;
86
+ white-space: nowrap;
87
+ padding-top: $rts-offset-sm;
88
+
89
+ .rtsee-dashboard-sessions-container {
90
+ display: inline-block;
91
+ width: 320px;
92
+ margin-right: $rts-offset-sm;
93
+ vertical-align: top;
94
+ }
95
+ }
96
+
97
+
98
+ }
@@ -0,0 +1,47 @@
1
+ @import "../common-variables";
2
+
3
+
4
+ .rtsee-events-dashboard-event-thumbnail {
5
+
6
+ .rtsee-events-dashboard-default-event-thumbnail {
7
+ display: flex;
8
+ justify-content: space-between;
9
+ height: $rts-user-avatar-d-sm;
10
+ background-color: $rts-slightly-active-color;
11
+ padding: 0 $rts-offset-sm;
12
+ border-radius: $rts-default-border-radius;
13
+
14
+ .rtsee-events-dashboard-default-event-thumbnail-name {
15
+ font-size: 16px;
16
+ overflow: hidden;
17
+ white-space: nowrap;
18
+ text-overflow: ellipsis;
19
+ line-height: $rts-user-avatar-d-sm;
20
+ }
21
+
22
+ .rtsee-events-dashboard-default-event-thumbnail-info {
23
+ display: flex;
24
+ justify-content: flex-end;
25
+
26
+ .rtsee-events-dashboard-default-event-thumbnail-time {
27
+ padding-left: $rts-offset-sm;
28
+ font-size: 12px;
29
+ font-weight: 300;
30
+ color: $rts-font-color-light;
31
+ line-height: $rts-user-avatar-d-sm;
32
+ }
33
+
34
+
35
+ .rtsee-events-dashboard-default-event-thumbnail-details {
36
+ height: $rts-user-avatar-d-sm;
37
+ line-height: $rts-user-avatar-d-sm;
38
+
39
+ .rtsee-events-dashboard-default-event-thumbnail-details-icon {
40
+ height: 100%;
41
+ font-size: 24px;
42
+ line-height: $rts-user-avatar-d-sm;
43
+ }
44
+ }
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,54 @@
1
+ @import "../common-variables";
2
+
3
+ .rtsee-events-dashboard-session {
4
+ position: relative;
5
+ border-radius: $rts-default-border-radius;
6
+ padding: $rts-offset-sm;
7
+ background-color: $rts-state-bg-color;
8
+
9
+ .rtsee-events-dashboard-session-header {
10
+ height: $rts-user-avatar-d-sm;
11
+ padding-right: $rts-user-avatar-d-sm + $rts-offset-sm;
12
+
13
+ .rtsee-events-dashboard-session-client-info {
14
+ font-size: 16px;
15
+ margin: 0;
16
+ color: $rts-font-color-dark;
17
+ }
18
+
19
+ .rtsee-events-dashboard-session-os-info {
20
+ font-size: 14px;
21
+ margin: 0;
22
+ color: $rts-font-color-light;
23
+ }
24
+
25
+ .rtsee-events-dashboard-session-device-info {
26
+ position: absolute;
27
+ right: 0;
28
+ top: 0;
29
+ width: $rts-user-avatar-d-sm;
30
+ height: $rts-user-avatar-d-sm;
31
+ line-height: $rts-user-avatar-d-sm;
32
+ text-align: center;
33
+
34
+ .rtsee-events-dashboard-session-device-info-icon {
35
+ font-size: 24px;
36
+ vertical-align: middle;
37
+ }
38
+ }
39
+ }
40
+
41
+ .rtsee-events-dashboard-session-events-list {
42
+ list-style-type: none;
43
+ padding-left: 0;
44
+ margin: 0;
45
+
46
+ .rtsee-events-dashboard-session-event {
47
+ margin-bottom: $rts-offset-sm;
48
+
49
+ &:last-of-type {
50
+ margin-bottom: 0;
51
+ }
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,17 @@
1
+ @import "../common-variables";
2
+
3
+ .rtsee-events-dashboard {
4
+ background-color: $rts-main-bg-color-light;
5
+ padding: $rts-offset-sm;
6
+ border-radius: $rts-default-border-radius;
7
+
8
+ .rtsee-events-dashboard-client-thumbnails {
9
+ .rtsee-events-dashboard-client-thumbnail-wrapper {
10
+ margin-bottom: $rts-offset-md;
11
+
12
+ &:last-of-type {
13
+ margin-bottom: 0;
14
+ }
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,6 @@
1
+ @import "./events-manager";
2
+ @import "./events-dashboard";
3
+ @import "./client-thumbnail";
4
+ @import "./events-dashboard-session";
5
+ @import "./event-thumbnail";
6
+
File without changes
@@ -0,0 +1,3 @@
1
+ * {
2
+ box-sizing: border-box;
3
+ }
@@ -0,0 +1,16 @@
1
+ @import "./variables";
2
+
3
+ .rtsee-call-widget {
4
+ .rtsee-join-call-btn {
5
+ border: none;
6
+ background: $rts-new-primary-color;
7
+ color: $rts-font-color-dbg-light;
8
+ border-radius: $rts-new-border-radius-rounded;
9
+ padding: $rts-new-offset-sm $rts-new-offset-md;
10
+
11
+ &.rtsee-join-your-call-btn {
12
+ background: $rts-font-color-dbg-light;
13
+ color: $rts-new-primary-color;
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,51 @@
1
+ @import "./variables";
2
+ @import "../common-variables";
3
+
4
+ .rtsee-chat-input {
5
+ height: 100%;
6
+ padding-right: $rtsee-chat-input-height;
7
+ position: relative;
8
+ overflow: hidden;
9
+
10
+ .rtsee-send-message {
11
+ height: 100%;
12
+ overflow: auto;
13
+ border-radius: $rts-new-border-radius-rounded;
14
+
15
+ &::-webkit-scrollbar {
16
+ display: none;
17
+ }
18
+
19
+ .rtsee-chat-input-form {
20
+ height: 100%;
21
+ overflow: hidden;
22
+ }
23
+
24
+ .rtsee-chat-input-field {
25
+ width: 100%;
26
+ max-height: $rtsee-chat-input-height;
27
+ border: none;
28
+ outline: none;
29
+ resize: none;
30
+ overflow: auto;
31
+ padding: $rts-offset-sm;
32
+
33
+ &::-webkit-input-placeholder {
34
+ font-family: "Work Sans", sans-serif;;
35
+ }
36
+ }
37
+ }
38
+
39
+ .rtsee-send-message-button {
40
+ position: absolute;
41
+ right: 0;
42
+ top: 0;
43
+ height: 100%;
44
+ width: $rtsee-chat-input-height;
45
+ background: none;
46
+ border: none;
47
+ outline: none;
48
+ font-size: 27px;
49
+ color: $rts-new-primary-color;
50
+ }
51
+ }