@webitel/ui-sdk 2.1.28 → 2.1.30

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": "2.1.28",
3
+ "version": "2.1.30",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -29,7 +29,7 @@ export default {
29
29
  color: {
30
30
  type: String,
31
31
  default: 'default',
32
- options: ['default', 'contrast', 'active', 'accent', 'secondary', 'disabled', 'success', 'danger', 'transfer', 'job', 'hold', 'secondary-50'],
32
+ options: ['default', 'contrast', 'active', 'accent', 'secondary', 'disabled', 'success', 'danger', 'transfer', 'job', 'hold', 'secondary-50', 'icon-secondary'],
33
33
  },
34
34
  iconPrefix: {
35
35
  type: String,
@@ -113,6 +113,10 @@ svg {
113
113
  fill: var(--icon-color-secondary-50);
114
114
  }
115
115
 
116
+ &-icon-secondary .wt-icon__icon {
117
+ fill: var(--icon-color-secondary);
118
+ }
119
+
116
120
  &-disabled .wt-icon__icon {
117
121
  fill: var(--icon-color-disabled);
118
122
  }
@@ -48,7 +48,7 @@ export default {
48
48
  padding: var(--progress-bar-padding);
49
49
  line-height: 0;
50
50
  border-radius: var(--border-radius);
51
- box-shadow: var(--elevation-2);
51
+ box-shadow: var(--elevation-1);
52
52
  }
53
53
 
54
54
  .wt-progress-bar__progress {
@@ -46,6 +46,7 @@
46
46
 
47
47
  // ICON COLORS
48
48
  --icon-color: hsla(var(--_icon-color), var(--_opacity--default));
49
+ --icon-color-secondary: hsla(var(--_icon-color), 0.25);
49
50
 
50
51
  --icon-color--hover: hsla(var(--_icon-color), var(--_opacity--hover));
51
52