@webitel/ui-sdk 24.12.165 → 25.4.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webitel/ui-sdk",
3
- "version": "24.12.165",
3
+ "version": "25.04.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -32,6 +32,7 @@ const fieldsToSend = [
32
32
  'profile',
33
33
  'email',
34
34
  'contact',
35
+ 'chatName',
35
36
  ];
36
37
 
37
38
  const getUsersList = async (params) => {
@@ -16,13 +16,15 @@
16
16
  >
17
17
  <header class="wt-navigation-bar__nav-header">
18
18
  <!-- vue cli build target lib cant handle dynamic require :( -->
19
- <img
20
- :alt="currentApp"
21
- :src="
22
- darkMode ? appLogo[currentApp].dark : appLogo[currentApp].light
23
- "
24
- class="wt-navigation-bar__app-pic"
25
- />
19
+ <router-link :to="logoRoute">
20
+ <img
21
+ :alt="currentApp"
22
+ :src="
23
+ darkMode ? appLogo[currentApp].dark : appLogo[currentApp].light
24
+ "
25
+ class="wt-navigation-bar__app-pic"
26
+ />
27
+ </router-link>
26
28
  <wt-icon-btn
27
29
  class="wt-navigation-bar__nav-close"
28
30
  icon="close"
@@ -166,6 +168,10 @@ export default {
166
168
  type: Boolean,
167
169
  default: false,
168
170
  },
171
+ logoRoute: {
172
+ type: String,
173
+ default: '',
174
+ }
169
175
  },
170
176
  data: () => ({
171
177
  isOpened: false,