@webitel/ui-sdk 24.10.37 → 24.10.39
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.css +1 -1
- package/dist/ui-sdk.js +5131 -5029
- package/dist/ui-sdk.umd.cjs +17 -17
- package/package.json +1 -1
- package/src/api/{crm → clients//321/201ontacts}/contactChatMessagesHistory.js +5 -2
- package/src/api/{crm → clients//321/201ontacts}/contacts.js +2 -2
- package/src/api/clients//321/201ontacts/index.js +4 -0
- package/src/components/index.js +2 -0
- package/src/api/crm/index.js +0 -4
- /package/src/api/{crm/enums/ContactsSearchMode.js → clients//321/201ontacts/enums/ContactsSearchMode.js"} +0 -0
package/package.json
CHANGED
|
@@ -3,8 +3,11 @@ import {
|
|
|
3
3
|
getDefaultGetListResponse,
|
|
4
4
|
getDefaultInstance,
|
|
5
5
|
getDefaultOpenAPIConfig,
|
|
6
|
-
} from '
|
|
7
|
-
import applyTransform, { notify, snakeToCamel, merge
|
|
6
|
+
} from '../../defaults/index.js';
|
|
7
|
+
import applyTransform, { notify, snakeToCamel, merge } from '../../transformers/index.js';
|
|
8
|
+
import i18n from '../../../locale/i18n.js';
|
|
9
|
+
|
|
10
|
+
const { t } = i18n.global;
|
|
8
11
|
|
|
9
12
|
const instance = getDefaultInstance();
|
|
10
13
|
const configuration = getDefaultOpenAPIConfig();
|
|
@@ -5,14 +5,14 @@ import {
|
|
|
5
5
|
getDefaultGetParams,
|
|
6
6
|
getDefaultInstance,
|
|
7
7
|
getDefaultOpenAPIConfig,
|
|
8
|
-
} from '
|
|
8
|
+
} from '../../defaults/index.js';
|
|
9
9
|
import applyTransform, {
|
|
10
10
|
camelToSnake,
|
|
11
11
|
merge,
|
|
12
12
|
notify,
|
|
13
13
|
sanitize,
|
|
14
14
|
snakeToCamel,
|
|
15
|
-
} from '
|
|
15
|
+
} from '../../transformers/index.js';
|
|
16
16
|
import ContactsSearchMode from './enums/ContactsSearchMode.js';
|
|
17
17
|
|
|
18
18
|
const instance = getDefaultInstance();
|
package/src/components/index.js
CHANGED
|
@@ -24,6 +24,7 @@ import WtIcon from './wt-icon/wt-icon.vue';
|
|
|
24
24
|
import WtIndicator from './wt-indicator/wt-indicator.vue';
|
|
25
25
|
import WtInputInfo from './wt-input-info/wt-input-info.vue';
|
|
26
26
|
import WtInput from './wt-input/wt-input.vue';
|
|
27
|
+
import WtIntersectionObserver from './wt-intersection-observer/wt-intersection-observer.vue';
|
|
27
28
|
import WtItemLink from './wt-item-link/wt-item-link.vue';
|
|
28
29
|
import WtLabel from './wt-label/wt-label.vue';
|
|
29
30
|
import WtLoadBar from './wt-load-bar/wt-load-bar.vue';
|
|
@@ -74,6 +75,7 @@ const Components = {
|
|
|
74
75
|
WtDatepicker,
|
|
75
76
|
WtIconBtn,
|
|
76
77
|
WtInput,
|
|
78
|
+
WtIntersectionObserver,
|
|
77
79
|
WtHint,
|
|
78
80
|
WtNotification,
|
|
79
81
|
WtPopup,
|
package/src/api/crm/index.js
DELETED
|
File without changes
|