@webitel/ui-sdk 25.8.40 → 25.8.41

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.
@@ -105,6 +105,8 @@ function setPause() {
105
105
  </script>
106
106
 
107
107
  <style lang="scss" scoped>
108
+ @use '@webitel/styleguide/typography' as *;
109
+
108
110
  .wt-cc-pause-cause-popup-option {
109
111
  display: flex;
110
112
  justify-content: space-between;
@@ -26,9 +26,7 @@ export default {
26
26
  return this.filterSchema?.storedProp;
27
27
  },
28
28
  label() {
29
- return Array.isArray(this.locale.label)
30
- ? this.$tc(...this.locale.label)
31
- : this.$t(this.locale.label);
29
+ return this.$t(this.locale.label);
32
30
  },
33
31
  localizedOptions() {
34
32
  const optsHaveLocale = this.options.length && this.options[0].locale; // just check 1st el
@@ -36,7 +34,7 @@ export default {
36
34
  return this.options.map((opt) => ({
37
35
  ...opt,
38
36
  name: Array.isArray(opt.locale)
39
- ? this.$tc(...opt.locale)
37
+ ? this.$t(...opt.locale)
40
38
  : this.$t(opt.locale),
41
39
  }));
42
40
  }