@webitel/ui-sdk 24.6.25 → 24.6.27
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.js +1 -1
- package/dist/ui-sdk.umd.cjs +1 -1
- package/package.json +1 -1
- package/src/api/axios/generateInstance.js +1 -1
- package/src/api/transformers/starToSearch/starToSearch.transformer.js +1 -1
- package/src/modules/AuditForm/components/audit-form-question-write-wrapper.vue +2 -2
- package/src/modules/AuditForm/components/audit-form.vue +1 -1
- package/src/scripts/debounce.js +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import axios from 'axios';
|
|
|
3
3
|
// 'X-Webitel-Access' ~ 'X-Access-Token'
|
|
4
4
|
const generateInstance = ({ interceptors } = {}) => {
|
|
5
5
|
const instance = axios.create({
|
|
6
|
-
baseURL:
|
|
6
|
+
baseURL: import.meta.env.VITE_API_URL,
|
|
7
7
|
headers: {
|
|
8
8
|
'X-Webitel-Access': localStorage.getItem('access-token') || '',
|
|
9
9
|
},
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
</template>
|
|
60
60
|
|
|
61
61
|
<script setup>
|
|
62
|
-
import cloneDeep from 'lodash/cloneDeep';
|
|
63
|
-
import set from 'lodash/set';
|
|
62
|
+
import cloneDeep from 'lodash/cloneDeep.js';
|
|
63
|
+
import set from 'lodash/set.js';
|
|
64
64
|
import { computed } from 'vue';
|
|
65
65
|
import { EngineAuditQuestionType } from 'webitel-sdk';
|
|
66
66
|
import WtIconBtn from '../../../components/wt-icon-btn/wt-icon-btn.vue';
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
|
|
34
34
|
<script setup>
|
|
35
35
|
import { useVuelidate } from '@vuelidate/core';
|
|
36
|
-
import cloneDeep from 'lodash/cloneDeep';
|
|
36
|
+
import cloneDeep from 'lodash/cloneDeep.js';
|
|
37
37
|
import { computed, nextTick, onMounted, reactive, ref, watch, watchEffect } from 'vue';
|
|
38
38
|
import WtButton from '../../../components/wt-button/wt-button.vue';
|
|
39
39
|
import { useDestroyableSortable } from '../../../composables/useDestroyableSortable/useDestroyableSortable.js';
|
package/src/scripts/debounce.js
CHANGED