@webitel/ui-sdk 26.6.110 → 26.6.111
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/{components-D-OqQDfD.js → components-D4d_Zcfc.js} +6 -5
- package/dist/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +1 -1
- package/dist/{wt-chat-emoji-1hWR2L8o.js → wt-chat-emoji-DJSa3MA_.js} +1 -1
- package/dist/{wt-display-chip-items-CMaITt-I.js → wt-display-chip-items-DO5_TTGi.js} +1 -1
- package/dist/{wt-send-message-popup-BtaPaXfM.js → wt-send-message-popup-DsEKdBWT.js} +1 -1
- package/dist/{wt-type-extension-value-input-D7dRKJ6S.js → wt-type-extension-value-input-BzjijnyS.js} +1 -1
- package/dist/{wt-vidstack-player-C59T6heF.js → wt-vidstack-player-BJELcGtw.js} +1 -1
- package/package.json +1 -1
- package/src/components/wt-call-media-metric/wt-call-media-metric.vue +3 -1
- package/src/locale/en/en.js +5 -0
- package/src/locale/es/es.js +5 -0
- package/src/locale/kz/kz.js +5 -0
- package/src/locale/pl/pl.js +5 -0
- package/src/locale/ro/ro.js +5 -0
- package/src/locale/ru/ru.js +5 -0
- package/src/locale/uk/uk.js +5 -0
- package/src/locale/uz/uz.js +5 -0
- package/src/locale/vi/vi.js +5 -0
- package/types/.tsbuildinfo +1 -1
- package/types/components/wt-call-media-metric/wt-call-media-metric.vue.d.ts +2 -0
- package/types/locale/en/en.d.ts +5 -0
- package/types/locale/es/es.d.ts +13 -4
- package/types/locale/i18n.d.ts +45 -0
- package/types/locale/index.d.ts +45 -0
- package/types/locale/kz/kz.d.ts +13 -4
- package/types/locale/pl/pl.d.ts +13 -4
- package/types/locale/ro/ro.d.ts +13 -4
- package/types/locale/ru/ru.d.ts +13 -4
- package/types/locale/uk/uk.d.ts +13 -4
- package/types/locale/uz/uz.d.ts +13 -4
- package/types/locale/vi/vi.d.ts +13 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as e, i as t } from "./components-
|
|
1
|
+
import { C as e, i as t } from "./components-D4d_Zcfc.js";
|
|
2
2
|
import { t as n } from "./_plugin-vue_export-helper-B3ysoDQm.js";
|
|
3
3
|
import { t as r } from "./displayText-CtaxzaBz.js";
|
|
4
4
|
import { Fragment as i, computed as a, createCommentVNode as o, createElementBlock as s, createTextVNode as c, createVNode as l, defineComponent as u, openBlock as d, renderList as f, renderSlot as p, toDisplayString as m, unref as h, withCtx as g } from "vue";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { n as e, r as t } from "./clients-DqzkR0RW.js";
|
|
2
|
-
import { n } from "./components-
|
|
2
|
+
import { n } from "./components-D4d_Zcfc.js";
|
|
3
3
|
import { t as r } from "./vue-i18n-Db_oYfO8.js";
|
|
4
4
|
import { createBlock as i, createTextVNode as a, createVNode as o, defineComponent as s, inject as c, mergeProps as l, onMounted as u, openBlock as d, ref as f, resolveComponent as p, toDisplayString as m, unref as h, withCtx as g } from "vue";
|
|
5
5
|
//#endregion
|
package/dist/{wt-type-extension-value-input-D7dRKJ6S.js → wt-type-extension-value-input-BzjijnyS.js}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { t as e } from "./clients-DqzkR0RW.js";
|
|
2
|
-
import { a as t, o as n, r, s as i } from "./components-
|
|
2
|
+
import { a as t, o as n, r, s as i } from "./components-D4d_Zcfc.js";
|
|
3
3
|
import { t as a } from "./enums-De8CDKZ1.js";
|
|
4
4
|
import { t as o } from "./vue-i18n-Db_oYfO8.js";
|
|
5
5
|
import { computed as s, createBlock as c, createCommentVNode as l, createVNode as u, defineComponent as d, mergeModels as f, mergeProps as p, openBlock as m, renderSlot as h, resolveComponent as g, unref as _, useModel as v } from "vue";
|
package/package.json
CHANGED
|
@@ -19,10 +19,12 @@ const props = withDefaults(
|
|
|
19
19
|
mosAvg?: number | null;
|
|
20
20
|
size?: (typeof ComponentSize)[keyof typeof ComponentSize];
|
|
21
21
|
showTooltip?: boolean;
|
|
22
|
+
tooltipTextPrefix?: string;
|
|
22
23
|
}>(),
|
|
23
24
|
{
|
|
24
25
|
size: ComponentSize.MD,
|
|
25
26
|
showTooltip: false,
|
|
27
|
+
tooltipTextPrefix: 'connectionQuality',
|
|
26
28
|
},
|
|
27
29
|
);
|
|
28
30
|
|
|
@@ -35,7 +37,7 @@ const resolvedQuality = computed(() => {
|
|
|
35
37
|
|
|
36
38
|
const tooltip = computed(() =>
|
|
37
39
|
resolvedQuality.value
|
|
38
|
-
? t(
|
|
40
|
+
? t(`${props.tooltipTextPrefix}.${resolvedQuality.value}`)
|
|
39
41
|
: undefined,
|
|
40
42
|
);
|
|
41
43
|
</script>
|
package/src/locale/en/en.js
CHANGED
|
@@ -304,6 +304,11 @@ export default deepmerge(
|
|
|
304
304
|
[CallDirection.Inbound]: 'Inbound',
|
|
305
305
|
[CallDirection.Outbound]: 'Outbound',
|
|
306
306
|
},
|
|
307
|
+
connectionQuality: {
|
|
308
|
+
high: 'Excellent network quality.',
|
|
309
|
+
medium: 'Unstable network quality.',
|
|
310
|
+
low: 'Poor network quality.',
|
|
311
|
+
},
|
|
307
312
|
},
|
|
308
313
|
cases: {
|
|
309
314
|
status: 'Status',
|
package/src/locale/es/es.js
CHANGED
|
@@ -295,6 +295,11 @@ export default {
|
|
|
295
295
|
[CallDirection.Inbound]: 'Entrante',
|
|
296
296
|
[CallDirection.Outbound]: 'Saliente',
|
|
297
297
|
},
|
|
298
|
+
connectionQuality: {
|
|
299
|
+
high: 'Excelente calidad de red.',
|
|
300
|
+
medium: 'Calidad de red inestable.',
|
|
301
|
+
low: 'Mala calidad de red.',
|
|
302
|
+
},
|
|
298
303
|
},
|
|
299
304
|
cases: {
|
|
300
305
|
status: 'Estado',
|
package/src/locale/kz/kz.js
CHANGED
|
@@ -300,6 +300,11 @@ export default {
|
|
|
300
300
|
[CallDirection.Inbound]: 'Кіріс',
|
|
301
301
|
[CallDirection.Outbound]: 'Шығыс',
|
|
302
302
|
},
|
|
303
|
+
connectionQuality: {
|
|
304
|
+
high: 'Желі сапасы өте жақсы.',
|
|
305
|
+
medium: 'Желі сапасы тұрақсыз.',
|
|
306
|
+
low: 'Желі сапасы нашар.',
|
|
307
|
+
},
|
|
303
308
|
},
|
|
304
309
|
cases: {
|
|
305
310
|
status: 'Мәртебе',
|
package/src/locale/pl/pl.js
CHANGED
|
@@ -300,6 +300,11 @@ export default {
|
|
|
300
300
|
[CallDirection.Inbound]: 'Przychodzące',
|
|
301
301
|
[CallDirection.Outbound]: 'Wychodzące',
|
|
302
302
|
},
|
|
303
|
+
connectionQuality: {
|
|
304
|
+
high: 'Doskonała jakość sieci.',
|
|
305
|
+
medium: 'Niestabilna jakość sieci.',
|
|
306
|
+
low: 'Słaba jakość sieci.',
|
|
307
|
+
},
|
|
303
308
|
},
|
|
304
309
|
cases: {
|
|
305
310
|
status: 'Status',
|
package/src/locale/ro/ro.js
CHANGED
|
@@ -300,6 +300,11 @@ export default {
|
|
|
300
300
|
[CallDirection.Inbound]: 'Intrare',
|
|
301
301
|
[CallDirection.Outbound]: 'Ieșire',
|
|
302
302
|
},
|
|
303
|
+
connectionQuality: {
|
|
304
|
+
high: 'Calitate excelentă a rețelei.',
|
|
305
|
+
medium: 'Calitate instabilă a rețelei.',
|
|
306
|
+
low: 'Calitate slabă a rețelei.',
|
|
307
|
+
},
|
|
303
308
|
},
|
|
304
309
|
cases: {
|
|
305
310
|
status: 'Status',
|
package/src/locale/ru/ru.js
CHANGED
|
@@ -315,6 +315,11 @@ export default {
|
|
|
315
315
|
[CallDirection.Inbound]: 'Входящий | Входящие',
|
|
316
316
|
[CallDirection.Outbound]: 'Исходящий | Исходящие',
|
|
317
317
|
},
|
|
318
|
+
connectionQuality: {
|
|
319
|
+
high: 'Отличное качество сети.',
|
|
320
|
+
medium: 'Нестабильное качество сети.',
|
|
321
|
+
low: 'Плохое качество сети.',
|
|
322
|
+
},
|
|
318
323
|
},
|
|
319
324
|
// describes Webitel FRONTEND applications + their navs
|
|
320
325
|
WtApplication: {
|
package/src/locale/uk/uk.js
CHANGED
|
@@ -295,6 +295,11 @@ export default {
|
|
|
295
295
|
[CallDirection.Inbound]: 'Вхідний | Вхідні',
|
|
296
296
|
[CallDirection.Outbound]: 'Вихідний | Вихідні',
|
|
297
297
|
},
|
|
298
|
+
connectionQuality: {
|
|
299
|
+
high: 'Чудова якість мережі.',
|
|
300
|
+
medium: 'Нестабільна якість мережі.',
|
|
301
|
+
low: 'Погана якість мережі.',
|
|
302
|
+
},
|
|
298
303
|
},
|
|
299
304
|
cases: {
|
|
300
305
|
status: 'Статус',
|
package/src/locale/uz/uz.js
CHANGED
|
@@ -301,6 +301,11 @@ export default {
|
|
|
301
301
|
[CallDirection.Inbound]: 'Kiruvchi',
|
|
302
302
|
[CallDirection.Outbound]: 'Chiquvchi',
|
|
303
303
|
},
|
|
304
|
+
connectionQuality: {
|
|
305
|
+
high: 'Tarmoq sifati aʼlo.',
|
|
306
|
+
medium: 'Tarmoq sifati barqaror emas.',
|
|
307
|
+
low: 'Tarmoq sifati past.',
|
|
308
|
+
},
|
|
304
309
|
},
|
|
305
310
|
cases: {
|
|
306
311
|
status: 'Holat',
|
package/src/locale/vi/vi.js
CHANGED
|
@@ -300,6 +300,11 @@ export default {
|
|
|
300
300
|
[CallDirection.Inbound]: 'Gọi vào',
|
|
301
301
|
[CallDirection.Outbound]: 'Gọi ra',
|
|
302
302
|
},
|
|
303
|
+
connectionQuality: {
|
|
304
|
+
high: 'Chất lượng mạng tuyệt vời.',
|
|
305
|
+
medium: 'Chất lượng mạng không ổn định.',
|
|
306
|
+
low: 'Chất lượng mạng kém.',
|
|
307
|
+
},
|
|
303
308
|
},
|
|
304
309
|
cases: {
|
|
305
310
|
status: 'Trạng thái',
|