@webitel/ui-sdk 1.0.6 → 1.0.7

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": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -203,7 +203,7 @@ export default {
203
203
  transition: var(--transition);
204
204
  border-radius: var(--border-radius);
205
205
  background: var(--wt-app-header-content-bg-color);
206
- box-shadow: var(--elevation-1);
206
+ box-shadow: var(--elevation-10);
207
207
  }
208
208
 
209
209
  .wt-app-navigator__nav-title {
@@ -26,7 +26,7 @@
26
26
  target="_blank"
27
27
  @click="close"
28
28
  >
29
- <wt-icon icon="docs" size="sm"></wt-icon>
29
+ <wt-icon icon="docs"></wt-icon>
30
30
  <span>{{ $t('webitelUI.headerActions.docs') }}</span>
31
31
  </a>
32
32
  </li>
@@ -35,7 +35,7 @@
35
35
  class="wt-header-actions__action__link"
36
36
  @click.prevent="settings"
37
37
  >
38
- <wt-icon icon="settings" size="sm"></wt-icon>
38
+ <wt-icon icon="settings"></wt-icon>
39
39
  <span>{{ $t('webitelUI.headerActions.settings') }}</span>
40
40
  </a>
41
41
  </li>
@@ -44,7 +44,7 @@
44
44
  class="wt-header-actions__action__link"
45
45
  @click.prevent="logout"
46
46
  >
47
- <wt-icon color="danger" icon="logout" size="sm"></wt-icon>
47
+ <wt-icon color="danger" icon="logout"></wt-icon>
48
48
  <span>{{ $t('webitelUI.headerActions.logout') }}</span>
49
49
  </a>
50
50
  </li>
@@ -137,7 +137,7 @@ export default {
137
137
  transition: var(--transition);
138
138
  border-radius: var(--border-radius);
139
139
  background: var(--wt-app-header-content-bg-color);
140
- box-shadow: var(--elevation-1);
140
+ box-shadow: var(--elevation-10);
141
141
  }
142
142
 
143
143
  .wt-header-actions__name {
@@ -1,6 +1,6 @@
1
1
 
2
2
  :root {
3
- --tooltip-padding: var(--spacing-3xs) var(--spacing-2xs);
3
+ --tooltip-padding: var(--spacing-2xs) var(--spacing-xs);
4
4
  --tooltip-z-index: 100;
5
5
 
6
6
  --tooltip-light-text-color: var(--text-primary-color);