@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/CHANGELOG.md +10 -0
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +1040 -1031
- package/dist/ui-sdk.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/api/clients/users/users.js +1 -0
- package/src/components/wt-navigation-bar/wt-navigation-bar.vue +13 -7
package/package.json
CHANGED
|
@@ -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
|
-
<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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,
|