@webitel/ui-sdk 25.12.39 → 25.12.41
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/{install-DGNb9nVr.js → install-B4Nk3OEz.js} +63 -58
- package/dist/{plyr-ByorDhcr.js → plyr-KaDfMO3z.js} +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +541 -541
- package/dist/{vidstack-Bq6c3Bam-D5KBuWRZ.js → vidstack-Bq6c3Bam-wTVq5dCD.js} +2 -2
- package/dist/{vidstack-D2pY00kU-Ws1Jvjkb.js → vidstack-D2pY00kU-BDY1tl0N.js} +2 -2
- package/dist/{vidstack-DDXt6fpN-CMGNnPQV.js → vidstack-DDXt6fpN-DFzqLOOW.js} +1 -1
- package/dist/{vidstack-D_-9AA6_-DLAWXBQ4.js → vidstack-D_-9AA6_-Doy3hgnN.js} +1 -1
- package/dist/{vidstack-DqAw8m9J-BPmv6sOh.js → vidstack-DqAw8m9J-CF8Kjm2j.js} +1 -1
- package/dist/{vidstack-audio-BIY4ys0T.js → vidstack-audio-CP2NCp0l.js} +2 -2
- package/dist/{vidstack-dash-HCChLXEY.js → vidstack-dash-D2mGrqE7.js} +3 -3
- package/dist/{vidstack-google-cast-Be_1pOC-.js → vidstack-google-cast-Buijkdak.js} +3 -3
- package/dist/{vidstack-hls-BbnSLJID.js → vidstack-hls-CmjSG0jl.js} +3 -3
- package/dist/{vidstack-video-Dxw2U6Fe.js → vidstack-video-1yX47WpZ.js} +2 -2
- package/dist/{vidstack-vimeo-G_rdpj4P.js → vidstack-vimeo-CHLHywMZ.js} +3 -3
- package/dist/{vidstack-youtube-Csh5czsD.js → vidstack-youtube-DT3G83C6.js} +2 -2
- package/dist/{vuex.esm-bundler-VVqVSpHV.js → vuex.esm-bundler-GW6Qg-nV.js} +1 -1
- package/package.json +2 -2
- package/src/components/wt-vidstack-player/components/layouts/video-layout.vue +4 -3
- package/src/components/wt-vidstack-player/components/panels/media-controls-panel/media-controls-panel.vue +4 -0
- package/src/components/wt-vidstack-player/components/panels/video-display-panel/video-display-panel.vue +4 -1
- package/src/components/wt-vidstack-player/wt-vidstack-player.vue +27 -7
- package/src/locale/en/en.js +2 -0
- package/src/locale/es/es.js +2 -0
- package/src/locale/kz/kz.js +2 -0
- package/src/locale/pl/pl.js +2 -0
- package/src/locale/ro/ro.js +2 -0
- package/src/locale/ru/ru.js +2 -0
- package/src/locale/uk/uk.js +2 -0
- package/src/locale/uz/uz.js +2 -0
- package/src/locale/vi/vi.js +2 -0
- package/src/modules/CallSession/modules/VideoCall/video-call.vue +73 -68
- package/types/components/wt-vidstack-player/components/layouts/video-layout.vue.d.ts +2 -1
- package/types/components/wt-vidstack-player/wt-vidstack-player.vue.d.ts +2 -1
- package/types/locale/en/en.d.ts +2 -0
- package/types/locale/es/es.d.ts +4 -1
- package/types/locale/i18n.d.ts +18 -0
- package/types/locale/index.d.ts +18 -0
- package/types/locale/kz/kz.d.ts +4 -1
- package/types/locale/pl/pl.d.ts +4 -1
- package/types/locale/ro/ro.d.ts +4 -1
- package/types/locale/ru/ru.d.ts +4 -1
- package/types/locale/uk/uk.d.ts +4 -1
- package/types/locale/uz/uz.d.ts +4 -1
- package/types/locale/vi/vi.d.ts +4 -1
- package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +19 -1
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
:stream="mainStream"
|
|
4
4
|
:static="props.static"
|
|
5
5
|
:size="props.size"
|
|
6
|
-
:class="`video-call-position--${props.position}`"
|
|
6
|
+
:class="[!props.static && `video-call-position--${props.position}`]"
|
|
7
7
|
:username="props.username"
|
|
8
|
+
:resizable="props.resizable"
|
|
9
|
+
:hide-header="props.hideHeader"
|
|
8
10
|
class="video-call"
|
|
9
11
|
hide-background
|
|
10
12
|
autoplay
|
|
@@ -12,59 +14,55 @@
|
|
|
12
14
|
@change-size="(payload) => emit('change-size', payload)"
|
|
13
15
|
>
|
|
14
16
|
<template #content="{ size: innerSize }">
|
|
17
|
+
<slot name="content" :size="innerSize" />
|
|
18
|
+
|
|
19
|
+
<slot name="overlay" :size="innerSize">
|
|
20
|
+
<div class="video-call-overlay"></div>
|
|
21
|
+
</slot>
|
|
22
|
+
|
|
15
23
|
<div
|
|
16
|
-
:class="`video-call-content--${innerSize}`"
|
|
17
|
-
class="video-call-content"
|
|
24
|
+
:class="`video-call-content-wrapper--${innerSize}`"
|
|
25
|
+
class="video-call-content-wrapper"
|
|
18
26
|
>
|
|
19
|
-
<
|
|
27
|
+
<screenshot-box
|
|
28
|
+
:src="props['screenshot:src']"
|
|
29
|
+
:size="innerSize"
|
|
30
|
+
@zoom="emit(`action:${VideoCallAction.ZoomScreenshot}`)"
|
|
31
|
+
@close="emit(`action:${VideoCallAction.CloseScreenshot}`)"
|
|
32
|
+
/>
|
|
33
|
+
|
|
34
|
+
<template v-if="props['receiver:stream'] && !props['receiver:video:enabled']">
|
|
20
35
|
<div
|
|
21
|
-
:class="`video-call-
|
|
22
|
-
class="video-call-
|
|
36
|
+
:class="`video-call-receiver--${innerSize}`"
|
|
37
|
+
class="video-call-receiver video-call-receiver--muted"
|
|
23
38
|
>
|
|
24
|
-
<wt-icon :size="
|
|
39
|
+
<wt-icon :size="senderVideoMutedIconSizes[innerSize]" icon="video-cam-off--filled" />
|
|
25
40
|
</div>
|
|
26
41
|
</template>
|
|
27
42
|
|
|
28
|
-
<
|
|
29
|
-
<
|
|
30
|
-
:
|
|
31
|
-
:
|
|
32
|
-
|
|
33
|
-
|
|
43
|
+
<template v-else-if="props['receiver:stream']">
|
|
44
|
+
<wt-vidstack-player
|
|
45
|
+
:stream="props['receiver:stream']"
|
|
46
|
+
:resizable="false"
|
|
47
|
+
:class="`video-call-receiver--${innerSize}`"
|
|
48
|
+
hide-header
|
|
49
|
+
hide-controls-panel
|
|
50
|
+
static
|
|
51
|
+
autoplay
|
|
52
|
+
muted
|
|
53
|
+
class="video-call-receiver"
|
|
34
54
|
/>
|
|
55
|
+
</template>
|
|
56
|
+
</div>
|
|
35
57
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
<template v-else-if="props['receiver:stream']">
|
|
46
|
-
<wt-vidstack-player
|
|
47
|
-
:stream="props['receiver:stream']"
|
|
48
|
-
:resizable="false"
|
|
49
|
-
:class="`video-call-receiver--${innerSize}`"
|
|
50
|
-
hide-display-panel
|
|
51
|
-
static
|
|
52
|
-
autoplay
|
|
53
|
-
muted
|
|
54
|
-
class="video-call-receiver"
|
|
55
|
-
/>
|
|
56
|
-
</template>
|
|
57
|
-
</div>
|
|
58
|
-
|
|
59
|
-
<div
|
|
60
|
-
:class="`video-call__indicator--${innerSize}`"
|
|
61
|
-
class="video-call__indicator"
|
|
62
|
-
>
|
|
63
|
-
<recording-indicator
|
|
64
|
-
v-if="props.recordings"
|
|
65
|
-
:recording="props.recordings"
|
|
66
|
-
/>
|
|
67
|
-
</div>
|
|
58
|
+
<div
|
|
59
|
+
:class="`video-call__indicator--${innerSize}`"
|
|
60
|
+
class="video-call__indicator"
|
|
61
|
+
>
|
|
62
|
+
<recording-indicator
|
|
63
|
+
v-if="props.recordings"
|
|
64
|
+
:recording="props.recordings"
|
|
65
|
+
/>
|
|
68
66
|
</div>
|
|
69
67
|
</template>
|
|
70
68
|
|
|
@@ -127,6 +125,8 @@ const props = withDefaults(defineProps<{
|
|
|
127
125
|
static?: boolean;
|
|
128
126
|
position?: 'left-bottom' | 'right-bottom';
|
|
129
127
|
size?: ComponentSize
|
|
128
|
+
hideHeader?: boolean
|
|
129
|
+
resizable?: boolean;
|
|
130
130
|
|
|
131
131
|
actions: VideoCallAction[];
|
|
132
132
|
username: string;
|
|
@@ -153,12 +153,6 @@ const mainStream = computed(() => {
|
|
|
153
153
|
return props['receiver:stream'] || props['sender:stream'];
|
|
154
154
|
})
|
|
155
155
|
|
|
156
|
-
const receiverVideoMutedIconSizes = {
|
|
157
|
-
[ComponentSize.SM]: ComponentSize.MD,
|
|
158
|
-
[ComponentSize.MD]: ComponentSize.LG,
|
|
159
|
-
[ComponentSize.LG]: ComponentSize.XXL,
|
|
160
|
-
}
|
|
161
|
-
|
|
162
156
|
const senderVideoMutedIconSizes = {
|
|
163
157
|
[ComponentSize.SM]: ComponentSize.MD,
|
|
164
158
|
[ComponentSize.MD]: ComponentSize['4XL'],
|
|
@@ -168,6 +162,8 @@ const senderVideoMutedIconSizes = {
|
|
|
168
162
|
|
|
169
163
|
<style lang="scss" scoped>
|
|
170
164
|
.video-call {
|
|
165
|
+
flex: 0 0 auto;
|
|
166
|
+
|
|
171
167
|
&-position {
|
|
172
168
|
&--left-bottom {
|
|
173
169
|
&.wt-vidstack-player {
|
|
@@ -204,6 +200,17 @@ const senderVideoMutedIconSizes = {
|
|
|
204
200
|
}
|
|
205
201
|
}
|
|
206
202
|
|
|
203
|
+
&-overlay {
|
|
204
|
+
width: 100%;
|
|
205
|
+
height: 100%;
|
|
206
|
+
display: block;
|
|
207
|
+
position: absolute;
|
|
208
|
+
left: 0;
|
|
209
|
+
top: 0;
|
|
210
|
+
z-index: 0;
|
|
211
|
+
background: var(--p-player-wrapper-background);
|
|
212
|
+
}
|
|
213
|
+
|
|
207
214
|
&-content {
|
|
208
215
|
height: 100%;
|
|
209
216
|
padding: var(--p-player-counter-position-padding-sm);
|
|
@@ -220,27 +227,24 @@ const senderVideoMutedIconSizes = {
|
|
|
220
227
|
}
|
|
221
228
|
|
|
222
229
|
&-wrapper {
|
|
230
|
+
position: absolute;
|
|
223
231
|
display: flex;
|
|
224
232
|
flex-direction: column;
|
|
225
233
|
gap: var(--p-player-control-bar-sm-gap);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
234
|
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
width: 100%;
|
|
234
|
-
height: 100%;
|
|
235
|
-
display: flex;
|
|
236
|
-
align-items: center;
|
|
237
|
-
justify-content: center;
|
|
238
|
-
z-index: -1;
|
|
239
|
-
background: var(--p-player-wrapper-background);
|
|
235
|
+
&--sm {
|
|
236
|
+
left: var(--p-player-counter-position-padding-sm);
|
|
237
|
+
bottom: calc(var(--p-player-counter-position-padding-sm) + var(--p-player-control-bar-sm-height));
|
|
238
|
+
}
|
|
240
239
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
240
|
+
&--md {
|
|
241
|
+
left: var(--p-player-counter-position-padding-md);
|
|
242
|
+
bottom: var(--p-player-counter-position-padding-md);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
&--lg {
|
|
246
|
+
left: var(--p-player-counter-position-padding-lg);
|
|
247
|
+
bottom: var(--p-player-counter-position-padding-lg);
|
|
244
248
|
}
|
|
245
249
|
}
|
|
246
250
|
}
|
|
@@ -318,7 +322,8 @@ const senderVideoMutedIconSizes = {
|
|
|
318
322
|
justify-content: flex-end;
|
|
319
323
|
|
|
320
324
|
&--sm {
|
|
321
|
-
|
|
325
|
+
right: var(--p-player-counter-position-padding-sm);
|
|
326
|
+
bottom: calc(var(--p-player-counter-position-padding-sm) + var(--p-player-control-bar-sm-height));
|
|
322
327
|
}
|
|
323
328
|
|
|
324
329
|
&--md {
|
package/types/locale/en/en.d.ts
CHANGED
|
@@ -63,6 +63,7 @@ declare const _default: {
|
|
|
63
63
|
group: string;
|
|
64
64
|
dateTime: string;
|
|
65
65
|
updatedBy: () => "Edited";
|
|
66
|
+
check: string;
|
|
66
67
|
};
|
|
67
68
|
vocabulary: {
|
|
68
69
|
apply: string;
|
|
@@ -106,6 +107,7 @@ declare const _default: {
|
|
|
106
107
|
expireAt: string;
|
|
107
108
|
destination: string;
|
|
108
109
|
utilizationProgress: string;
|
|
110
|
+
settings: string;
|
|
109
111
|
};
|
|
110
112
|
date: {
|
|
111
113
|
sec: string;
|
package/types/locale/es/es.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ declare namespace _default {
|
|
|
68
68
|
export let group: string;
|
|
69
69
|
export let dateTime: string;
|
|
70
70
|
export function updatedBy(): string;
|
|
71
|
+
export let check: string;
|
|
71
72
|
}
|
|
72
73
|
export namespace vocabulary {
|
|
73
74
|
let apply: string;
|
|
@@ -111,6 +112,7 @@ declare namespace _default {
|
|
|
111
112
|
let expireAt: string;
|
|
112
113
|
let destination: string;
|
|
113
114
|
let utilizationProgress: string;
|
|
115
|
+
let settings: string;
|
|
114
116
|
}
|
|
115
117
|
export namespace date {
|
|
116
118
|
let sec: string;
|
|
@@ -582,7 +584,8 @@ declare namespace _default {
|
|
|
582
584
|
export namespace headerActions {
|
|
583
585
|
export let account: string;
|
|
584
586
|
export let docs: string;
|
|
585
|
-
|
|
587
|
+
let settings_1: string;
|
|
588
|
+
export { settings_1 as settings };
|
|
586
589
|
let logout_1: string;
|
|
587
590
|
export { logout_1 as logout };
|
|
588
591
|
export let buildVersion: string;
|
package/types/locale/i18n.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
64
64
|
group: string;
|
|
65
65
|
dateTime: string;
|
|
66
66
|
updatedBy: () => "Edited";
|
|
67
|
+
check: string;
|
|
67
68
|
};
|
|
68
69
|
vocabulary: {
|
|
69
70
|
apply: string;
|
|
@@ -107,6 +108,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
107
108
|
expireAt: string;
|
|
108
109
|
destination: string;
|
|
109
110
|
utilizationProgress: string;
|
|
111
|
+
settings: string;
|
|
110
112
|
};
|
|
111
113
|
date: {
|
|
112
114
|
sec: string;
|
|
@@ -842,6 +844,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
842
844
|
group: string;
|
|
843
845
|
dateTime: string;
|
|
844
846
|
updatedBy: () => string;
|
|
847
|
+
check: string;
|
|
845
848
|
};
|
|
846
849
|
vocabulary: {
|
|
847
850
|
apply: string;
|
|
@@ -885,6 +888,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
885
888
|
expireAt: string;
|
|
886
889
|
destination: string;
|
|
887
890
|
utilizationProgress: string;
|
|
891
|
+
settings: string;
|
|
888
892
|
};
|
|
889
893
|
date: {
|
|
890
894
|
sec: string;
|
|
@@ -1747,6 +1751,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1747
1751
|
group: string;
|
|
1748
1752
|
dateTime: string;
|
|
1749
1753
|
updatedBy: () => string;
|
|
1754
|
+
check: string;
|
|
1750
1755
|
};
|
|
1751
1756
|
vocabulary: {
|
|
1752
1757
|
apply: string;
|
|
@@ -1790,6 +1795,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
1790
1795
|
expireAt: string;
|
|
1791
1796
|
destination: string;
|
|
1792
1797
|
utilizationProgress: string;
|
|
1798
|
+
settings: string;
|
|
1793
1799
|
};
|
|
1794
1800
|
date: {
|
|
1795
1801
|
sec: string;
|
|
@@ -2654,6 +2660,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2654
2660
|
group: string;
|
|
2655
2661
|
dateTime: string;
|
|
2656
2662
|
updatedBy: () => string;
|
|
2663
|
+
check: string;
|
|
2657
2664
|
};
|
|
2658
2665
|
vocabulary: {
|
|
2659
2666
|
apply: string;
|
|
@@ -2697,6 +2704,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
2697
2704
|
expireAt: string;
|
|
2698
2705
|
destination: string;
|
|
2699
2706
|
utilizationProgress: string;
|
|
2707
|
+
settings: string;
|
|
2700
2708
|
};
|
|
2701
2709
|
date: {
|
|
2702
2710
|
sec: string;
|
|
@@ -3559,6 +3567,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
3559
3567
|
group: string;
|
|
3560
3568
|
dateTime: string;
|
|
3561
3569
|
updatedBy: () => string;
|
|
3570
|
+
check: string;
|
|
3562
3571
|
};
|
|
3563
3572
|
vocabulary: {
|
|
3564
3573
|
apply: string;
|
|
@@ -3602,6 +3611,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
3602
3611
|
expireAt: string;
|
|
3603
3612
|
destination: string;
|
|
3604
3613
|
utilizationProgress: string;
|
|
3614
|
+
settings: string;
|
|
3605
3615
|
};
|
|
3606
3616
|
date: {
|
|
3607
3617
|
sec: string;
|
|
@@ -4466,6 +4476,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
4466
4476
|
group: string;
|
|
4467
4477
|
dateTime: string;
|
|
4468
4478
|
updatedBy: () => string;
|
|
4479
|
+
check: string;
|
|
4469
4480
|
};
|
|
4470
4481
|
vocabulary: {
|
|
4471
4482
|
apply: string;
|
|
@@ -4509,6 +4520,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
4509
4520
|
expireAt: string;
|
|
4510
4521
|
destination: string;
|
|
4511
4522
|
utilizationProgress: string;
|
|
4523
|
+
settings: string;
|
|
4512
4524
|
};
|
|
4513
4525
|
date: {
|
|
4514
4526
|
sec: string;
|
|
@@ -5373,6 +5385,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5373
5385
|
group: string;
|
|
5374
5386
|
dateTime: string;
|
|
5375
5387
|
updatedBy: () => string;
|
|
5388
|
+
check: string;
|
|
5376
5389
|
};
|
|
5377
5390
|
vocabulary: {
|
|
5378
5391
|
apply: string;
|
|
@@ -5416,6 +5429,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
5416
5429
|
expireAt: string;
|
|
5417
5430
|
destination: string;
|
|
5418
5431
|
utilizationProgress: string;
|
|
5432
|
+
settings: string;
|
|
5419
5433
|
};
|
|
5420
5434
|
date: {
|
|
5421
5435
|
sec: string;
|
|
@@ -6280,6 +6294,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6280
6294
|
group: string;
|
|
6281
6295
|
dateTime: string;
|
|
6282
6296
|
updatedBy: () => string;
|
|
6297
|
+
check: string;
|
|
6283
6298
|
};
|
|
6284
6299
|
vocabulary: {
|
|
6285
6300
|
apply: string;
|
|
@@ -6323,6 +6338,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
6323
6338
|
expireAt: string;
|
|
6324
6339
|
destination: string;
|
|
6325
6340
|
utilizationProgress: string;
|
|
6341
|
+
settings: string;
|
|
6326
6342
|
};
|
|
6327
6343
|
date: {
|
|
6328
6344
|
sec: string;
|
|
@@ -7187,6 +7203,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
7187
7203
|
group: string;
|
|
7188
7204
|
dateTime: string;
|
|
7189
7205
|
updatedBy: () => string;
|
|
7206
|
+
check: string;
|
|
7190
7207
|
};
|
|
7191
7208
|
vocabulary: {
|
|
7192
7209
|
apply: string;
|
|
@@ -7230,6 +7247,7 @@ declare const _default: import("vue-i18n").I18n<{
|
|
|
7230
7247
|
expireAt: string;
|
|
7231
7248
|
destination: string;
|
|
7232
7249
|
utilizationProgress: string;
|
|
7250
|
+
settings: string;
|
|
7233
7251
|
};
|
|
7234
7252
|
date: {
|
|
7235
7253
|
sec: string;
|
package/types/locale/index.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ export declare const messages: {
|
|
|
74
74
|
group: string;
|
|
75
75
|
dateTime: string;
|
|
76
76
|
updatedBy: () => "Edited";
|
|
77
|
+
check: string;
|
|
77
78
|
};
|
|
78
79
|
vocabulary: {
|
|
79
80
|
apply: string;
|
|
@@ -117,6 +118,7 @@ export declare const messages: {
|
|
|
117
118
|
expireAt: string;
|
|
118
119
|
destination: string;
|
|
119
120
|
utilizationProgress: string;
|
|
121
|
+
settings: string;
|
|
120
122
|
};
|
|
121
123
|
date: {
|
|
122
124
|
sec: string;
|
|
@@ -852,6 +854,7 @@ export declare const messages: {
|
|
|
852
854
|
group: string;
|
|
853
855
|
dateTime: string;
|
|
854
856
|
updatedBy: () => string;
|
|
857
|
+
check: string;
|
|
855
858
|
};
|
|
856
859
|
vocabulary: {
|
|
857
860
|
apply: string;
|
|
@@ -895,6 +898,7 @@ export declare const messages: {
|
|
|
895
898
|
expireAt: string;
|
|
896
899
|
destination: string;
|
|
897
900
|
utilizationProgress: string;
|
|
901
|
+
settings: string;
|
|
898
902
|
};
|
|
899
903
|
date: {
|
|
900
904
|
sec: string;
|
|
@@ -1757,6 +1761,7 @@ export declare const messages: {
|
|
|
1757
1761
|
group: string;
|
|
1758
1762
|
dateTime: string;
|
|
1759
1763
|
updatedBy: () => string;
|
|
1764
|
+
check: string;
|
|
1760
1765
|
};
|
|
1761
1766
|
vocabulary: {
|
|
1762
1767
|
apply: string;
|
|
@@ -1800,6 +1805,7 @@ export declare const messages: {
|
|
|
1800
1805
|
expireAt: string;
|
|
1801
1806
|
destination: string;
|
|
1802
1807
|
utilizationProgress: string;
|
|
1808
|
+
settings: string;
|
|
1803
1809
|
};
|
|
1804
1810
|
date: {
|
|
1805
1811
|
sec: string;
|
|
@@ -2664,6 +2670,7 @@ export declare const messages: {
|
|
|
2664
2670
|
group: string;
|
|
2665
2671
|
dateTime: string;
|
|
2666
2672
|
updatedBy: () => string;
|
|
2673
|
+
check: string;
|
|
2667
2674
|
};
|
|
2668
2675
|
vocabulary: {
|
|
2669
2676
|
apply: string;
|
|
@@ -2707,6 +2714,7 @@ export declare const messages: {
|
|
|
2707
2714
|
expireAt: string;
|
|
2708
2715
|
destination: string;
|
|
2709
2716
|
utilizationProgress: string;
|
|
2717
|
+
settings: string;
|
|
2710
2718
|
};
|
|
2711
2719
|
date: {
|
|
2712
2720
|
sec: string;
|
|
@@ -3569,6 +3577,7 @@ export declare const messages: {
|
|
|
3569
3577
|
group: string;
|
|
3570
3578
|
dateTime: string;
|
|
3571
3579
|
updatedBy: () => string;
|
|
3580
|
+
check: string;
|
|
3572
3581
|
};
|
|
3573
3582
|
vocabulary: {
|
|
3574
3583
|
apply: string;
|
|
@@ -3612,6 +3621,7 @@ export declare const messages: {
|
|
|
3612
3621
|
expireAt: string;
|
|
3613
3622
|
destination: string;
|
|
3614
3623
|
utilizationProgress: string;
|
|
3624
|
+
settings: string;
|
|
3615
3625
|
};
|
|
3616
3626
|
date: {
|
|
3617
3627
|
sec: string;
|
|
@@ -4476,6 +4486,7 @@ export declare const messages: {
|
|
|
4476
4486
|
group: string;
|
|
4477
4487
|
dateTime: string;
|
|
4478
4488
|
updatedBy: () => string;
|
|
4489
|
+
check: string;
|
|
4479
4490
|
};
|
|
4480
4491
|
vocabulary: {
|
|
4481
4492
|
apply: string;
|
|
@@ -4519,6 +4530,7 @@ export declare const messages: {
|
|
|
4519
4530
|
expireAt: string;
|
|
4520
4531
|
destination: string;
|
|
4521
4532
|
utilizationProgress: string;
|
|
4533
|
+
settings: string;
|
|
4522
4534
|
};
|
|
4523
4535
|
date: {
|
|
4524
4536
|
sec: string;
|
|
@@ -5383,6 +5395,7 @@ export declare const messages: {
|
|
|
5383
5395
|
group: string;
|
|
5384
5396
|
dateTime: string;
|
|
5385
5397
|
updatedBy: () => string;
|
|
5398
|
+
check: string;
|
|
5386
5399
|
};
|
|
5387
5400
|
vocabulary: {
|
|
5388
5401
|
apply: string;
|
|
@@ -5426,6 +5439,7 @@ export declare const messages: {
|
|
|
5426
5439
|
expireAt: string;
|
|
5427
5440
|
destination: string;
|
|
5428
5441
|
utilizationProgress: string;
|
|
5442
|
+
settings: string;
|
|
5429
5443
|
};
|
|
5430
5444
|
date: {
|
|
5431
5445
|
sec: string;
|
|
@@ -6290,6 +6304,7 @@ export declare const messages: {
|
|
|
6290
6304
|
group: string;
|
|
6291
6305
|
dateTime: string;
|
|
6292
6306
|
updatedBy: () => string;
|
|
6307
|
+
check: string;
|
|
6293
6308
|
};
|
|
6294
6309
|
vocabulary: {
|
|
6295
6310
|
apply: string;
|
|
@@ -6333,6 +6348,7 @@ export declare const messages: {
|
|
|
6333
6348
|
expireAt: string;
|
|
6334
6349
|
destination: string;
|
|
6335
6350
|
utilizationProgress: string;
|
|
6351
|
+
settings: string;
|
|
6336
6352
|
};
|
|
6337
6353
|
date: {
|
|
6338
6354
|
sec: string;
|
|
@@ -7197,6 +7213,7 @@ export declare const messages: {
|
|
|
7197
7213
|
group: string;
|
|
7198
7214
|
dateTime: string;
|
|
7199
7215
|
updatedBy: () => string;
|
|
7216
|
+
check: string;
|
|
7200
7217
|
};
|
|
7201
7218
|
vocabulary: {
|
|
7202
7219
|
apply: string;
|
|
@@ -7240,6 +7257,7 @@ export declare const messages: {
|
|
|
7240
7257
|
expireAt: string;
|
|
7241
7258
|
destination: string;
|
|
7242
7259
|
utilizationProgress: string;
|
|
7260
|
+
settings: string;
|
|
7243
7261
|
};
|
|
7244
7262
|
date: {
|
|
7245
7263
|
sec: string;
|
package/types/locale/kz/kz.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ declare namespace _default {
|
|
|
68
68
|
export let group: string;
|
|
69
69
|
export let dateTime: string;
|
|
70
70
|
export function updatedBy(): string;
|
|
71
|
+
export let check: string;
|
|
71
72
|
}
|
|
72
73
|
export namespace vocabulary {
|
|
73
74
|
let apply: string;
|
|
@@ -111,6 +112,7 @@ declare namespace _default {
|
|
|
111
112
|
let expireAt: string;
|
|
112
113
|
let destination: string;
|
|
113
114
|
let utilizationProgress: string;
|
|
115
|
+
let settings: string;
|
|
114
116
|
}
|
|
115
117
|
export namespace date {
|
|
116
118
|
let sec: string;
|
|
@@ -582,7 +584,8 @@ declare namespace _default {
|
|
|
582
584
|
export namespace headerActions {
|
|
583
585
|
export let account: string;
|
|
584
586
|
export let docs: string;
|
|
585
|
-
|
|
587
|
+
let settings_1: string;
|
|
588
|
+
export { settings_1 as settings };
|
|
586
589
|
let logout_1: string;
|
|
587
590
|
export { logout_1 as logout };
|
|
588
591
|
export let buildVersion: string;
|
package/types/locale/pl/pl.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ declare namespace _default {
|
|
|
68
68
|
export let group: string;
|
|
69
69
|
export let dateTime: string;
|
|
70
70
|
export function updatedBy(): string;
|
|
71
|
+
export let check: string;
|
|
71
72
|
}
|
|
72
73
|
export namespace vocabulary {
|
|
73
74
|
let apply: string;
|
|
@@ -111,6 +112,7 @@ declare namespace _default {
|
|
|
111
112
|
let expireAt: string;
|
|
112
113
|
let destination: string;
|
|
113
114
|
let utilizationProgress: string;
|
|
115
|
+
let settings: string;
|
|
114
116
|
}
|
|
115
117
|
export namespace date {
|
|
116
118
|
let sec: string;
|
|
@@ -582,7 +584,8 @@ declare namespace _default {
|
|
|
582
584
|
export namespace headerActions {
|
|
583
585
|
export let account: string;
|
|
584
586
|
export let docs: string;
|
|
585
|
-
|
|
587
|
+
let settings_1: string;
|
|
588
|
+
export { settings_1 as settings };
|
|
586
589
|
let logout_1: string;
|
|
587
590
|
export { logout_1 as logout };
|
|
588
591
|
export let buildVersion: string;
|
package/types/locale/ro/ro.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ declare namespace _default {
|
|
|
68
68
|
export let group: string;
|
|
69
69
|
export let dateTime: string;
|
|
70
70
|
export function updatedBy(): string;
|
|
71
|
+
export let check: string;
|
|
71
72
|
}
|
|
72
73
|
export namespace vocabulary {
|
|
73
74
|
let apply: string;
|
|
@@ -111,6 +112,7 @@ declare namespace _default {
|
|
|
111
112
|
let expireAt: string;
|
|
112
113
|
let destination: string;
|
|
113
114
|
let utilizationProgress: string;
|
|
115
|
+
let settings: string;
|
|
114
116
|
}
|
|
115
117
|
export namespace date {
|
|
116
118
|
let sec: string;
|
|
@@ -582,7 +584,8 @@ declare namespace _default {
|
|
|
582
584
|
export namespace headerActions {
|
|
583
585
|
export let account: string;
|
|
584
586
|
export let docs: string;
|
|
585
|
-
|
|
587
|
+
let settings_1: string;
|
|
588
|
+
export { settings_1 as settings };
|
|
586
589
|
let logout_1: string;
|
|
587
590
|
export { logout_1 as logout };
|
|
588
591
|
export let buildVersion: string;
|
package/types/locale/ru/ru.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let group: string;
|
|
67
67
|
export let dateTime: string;
|
|
68
68
|
export function updatedBy(): string;
|
|
69
|
+
export let check: string;
|
|
69
70
|
}
|
|
70
71
|
export namespace vocabulary {
|
|
71
72
|
let apply: string;
|
|
@@ -109,6 +110,7 @@ declare namespace _default {
|
|
|
109
110
|
let expireAt: string;
|
|
110
111
|
let destination: string;
|
|
111
112
|
let utilizationProgress: string;
|
|
113
|
+
let settings: string;
|
|
112
114
|
}
|
|
113
115
|
export namespace date {
|
|
114
116
|
let sec: string;
|
|
@@ -580,7 +582,8 @@ declare namespace _default {
|
|
|
580
582
|
export namespace headerActions {
|
|
581
583
|
export let account: string;
|
|
582
584
|
export let docs: string;
|
|
583
|
-
|
|
585
|
+
let settings_1: string;
|
|
586
|
+
export { settings_1 as settings };
|
|
584
587
|
let logout_1: string;
|
|
585
588
|
export { logout_1 as logout };
|
|
586
589
|
export let buildVersion: string;
|
package/types/locale/uk/uk.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ declare namespace _default {
|
|
|
66
66
|
export let group: string;
|
|
67
67
|
export let dateTime: string;
|
|
68
68
|
export function updatedBy(): string;
|
|
69
|
+
export let check: string;
|
|
69
70
|
}
|
|
70
71
|
export namespace vocabulary {
|
|
71
72
|
let apply: string;
|
|
@@ -109,6 +110,7 @@ declare namespace _default {
|
|
|
109
110
|
let expireAt: string;
|
|
110
111
|
let destination: string;
|
|
111
112
|
let utilizationProgress: string;
|
|
113
|
+
let settings: string;
|
|
112
114
|
}
|
|
113
115
|
export namespace date {
|
|
114
116
|
let sec: string;
|
|
@@ -580,7 +582,8 @@ declare namespace _default {
|
|
|
580
582
|
export namespace headerActions {
|
|
581
583
|
export let account: string;
|
|
582
584
|
export let docs: string;
|
|
583
|
-
|
|
585
|
+
let settings_1: string;
|
|
586
|
+
export { settings_1 as settings };
|
|
584
587
|
let logout_1: string;
|
|
585
588
|
export { logout_1 as logout };
|
|
586
589
|
export let buildVersion: string;
|