@webitel/ui-sdk 3.1.36 → 3.1.37

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": "3.1.36",
3
+ "version": "3.1.37",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve-lib": "vue-cli-service serve",
@@ -85,7 +85,7 @@
85
85
  import VueDatepicker from '@vuepic/vue-datepicker';
86
86
  import '@vuepic/vue-datepicker/dist/main.css';
87
87
  import { computed, ref } from 'vue';
88
- import { useI18n } from 'vue-i18n';
88
+ // import { useI18n } from 'vue-i18n';
89
89
 
90
90
  const props = defineProps({
91
91
  mode: {
@@ -126,13 +126,13 @@ const props = defineProps({
126
126
  });
127
127
  const emit = defineEmits(['input']);
128
128
 
129
- const i18n = useI18n();
129
+ // const i18n = useI18n();
130
130
 
131
131
  const isOpened = ref(false);
132
132
  const datepicker = ref(null); // template ref
133
133
 
134
134
  const locale = computed(() => {
135
- const { locale } = i18n;
135
+ const { locale } = { locale: 'ua' };
136
136
  if (locale === 'ua') return 'uk';
137
137
  return locale;
138
138
  });