@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/dist/ui-sdk.common.js +8911 -8906
- package/dist/ui-sdk.common.js.map +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.umd.js +8911 -8906
- package/dist/ui-sdk.umd.js.map +1 -1
- package/dist/ui-sdk.umd.min.js +6 -5
- package/dist/ui-sdk.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/wt-datepicker/wt-datepicker.vue +3 -3
package/package.json
CHANGED
|
@@ -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 } =
|
|
135
|
+
const { locale } = { locale: 'ua' };
|
|
136
136
|
if (locale === 'ua') return 'uk';
|
|
137
137
|
return locale;
|
|
138
138
|
});
|