@webitel/ui-sdk 2.1.18 → 2.1.19

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.18",
3
+ "version": "2.1.19",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -97,7 +97,7 @@ export default {
97
97
 
98
98
  methods: {
99
99
  getOptionLabel({ option, optionLabel }) {
100
- if (optionLabel) return option[optionLabel];
100
+ if (optionLabel && option[optionLabel]) return option[optionLabel];
101
101
  if (option.locale) {
102
102
  if (Array.isArray(option.locale)) return this.$tc(...option.locale);
103
103
  return this.$t(option.locale);
@@ -64,6 +64,7 @@
64
64
  --header-color: hsla(var(--_header-color), 1);
65
65
 
66
66
  --accent-secondary-color: hsla(var(--_accent-color), 0.3);
67
+ --task-accent-deep-color: hsla(var(--_page-bg-color-hue), 80%, 40%, 1);
67
68
 
68
69
  // SEMANTIC COLORS
69
70
  --disabled-color: hsl(var(--_contrast-color), var(--_opacity--disabled));