@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/dist/ui-sdk.common.js +1 -1
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +1 -1
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +1 -1
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/wt-select/mixins/multiselectMixin.js +1 -1
- package/src/css/styleguide/colors/_colors.scss +1 -0
package/package.json
CHANGED
|
@@ -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));
|