@webitel/ui-sdk 23.12.126 → 23.12.127

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": "23.12.126",
3
+ "version": "23.12.127",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -14,4 +14,5 @@
14
14
  --wt-indicator-error-color: var(--error-color);
15
15
  --wt-indicator-transfer-color: var(--transfer-color);
16
16
  --wt-indicator-break-out-color: var(--warning-color);
17
+ --wt-indicator-info-color: var(--info-color);
17
18
  }
@@ -27,7 +27,7 @@ export default {
27
27
  color: {
28
28
  type: String,
29
29
  default: 'secondary',
30
- options: ['primary', 'secondary', 'disabled', 'success', 'error', 'transfer', 'break-out'],
30
+ options: ['primary', 'secondary', 'disabled', 'success', 'error', 'transfer', 'break-out', 'info'],
31
31
  },
32
32
  text: {
33
33
  type: [String, Number],
@@ -98,6 +98,10 @@ export default {
98
98
  &--break-out {
99
99
  background: var(--wt-indicator-break-out-color);
100
100
  }
101
+
102
+ &--info {
103
+ background: var(--wt-indicator-info-color);
104
+ }
101
105
  }
102
106
 
103
107
  .wt-indicator--size {