@webitel/ui-sdk 25.12.47 → 25.12.49
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-CVfWqwx_.js → install-NAaNlYzO.js} +12699 -12503
- package/dist/{plyr-DjpbRwU1.js → plyr-giNyDXDc.js} +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +723 -707
- package/dist/{vidstack-Bq6c3Bam-D76pUOvQ.js → vidstack-Bq6c3Bam-DSDAkbP1.js} +2 -2
- package/dist/{vidstack-D2pY00kU-Bu00d2sw.js → vidstack-D2pY00kU-Dlr1_rlI.js} +2 -2
- package/dist/{vidstack-DDXt6fpN-BiIBX3zp.js → vidstack-DDXt6fpN-w_Cl4bTj.js} +1 -1
- package/dist/{vidstack-D_-9AA6_-DntZkT1m.js → vidstack-D_-9AA6_-DwP1azbl.js} +1 -1
- package/dist/{vidstack-DqAw8m9J-D1kVCcCr.js → vidstack-DqAw8m9J-M6Odux71.js} +1 -1
- package/dist/{vidstack-audio-DqdNN8Aw.js → vidstack-audio-BBuyvgC3.js} +2 -2
- package/dist/{vidstack-dash-WgTAdPNm.js → vidstack-dash-BXqBgXvl.js} +3 -3
- package/dist/{vidstack-google-cast-C2L48CdR.js → vidstack-google-cast-CrvA9Gzz.js} +3 -3
- package/dist/{vidstack-hls-sIM-sJCc.js → vidstack-hls-uKJ9b1jl.js} +3 -3
- package/dist/{vidstack-video-BCaTiWs3.js → vidstack-video-BJ4-UCfM.js} +2 -2
- package/dist/{vidstack-vimeo-CJTn78Qu.js → vidstack-vimeo-Dlc23H3r.js} +3 -3
- package/dist/{vidstack-youtube-3bZfchO3.js → vidstack-youtube-CDdgrzO7.js} +2 -2
- package/dist/{vuex.esm-bundler-BGS0cOh_.js → vuex.esm-bundler-Bct_cSur.js} +1 -1
- package/package.json +2 -2
- package/src/components/index.js +3 -0
- package/src/components/wt-badge-new/wt-badge.vue +49 -0
- package/src/components/wt-button/wt-button.vue +48 -4
- package/src/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue +10 -0
- package/src/components/wt-vidstack-player/wt-vidstack-player.vue +1 -1
- package/src/modules/CallSession/modules/ScreenSharing/screen-sharing.vue +2 -4
- package/src/modules/CallSession/modules/VideoCall/video-call.vue +7 -7
- package/src/plugins/primevue/primevue.plugin.js +2 -0
- package/src/plugins/primevue/theme/components/badge/badge.js +44 -0
- package/src/plugins/primevue/theme/components/components.js +2 -0
- package/types/components/index.d.ts +3 -1
- package/types/components/wt-badge-new/wt-badge.vue.d.ts +22 -0
- package/types/components/wt-button/wt-button.vue.d.ts +7 -2
- package/types/plugins/primevue/theme/components/badge/badge.d.ts +121 -0
- package/types/plugins/primevue/theme/components/components.d.ts +2 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
export default badge;
|
|
2
|
+
declare namespace badge {
|
|
3
|
+
let root: {
|
|
4
|
+
sm: {
|
|
5
|
+
width: string;
|
|
6
|
+
height: string;
|
|
7
|
+
fontSize: string;
|
|
8
|
+
};
|
|
9
|
+
md: {
|
|
10
|
+
width: string;
|
|
11
|
+
height: string;
|
|
12
|
+
fontSize: string;
|
|
13
|
+
};
|
|
14
|
+
lg: {
|
|
15
|
+
width: string;
|
|
16
|
+
height: string;
|
|
17
|
+
fontSize: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
let colorScheme: {
|
|
21
|
+
light: {
|
|
22
|
+
background: string;
|
|
23
|
+
color: string;
|
|
24
|
+
secondary: {
|
|
25
|
+
background: string;
|
|
26
|
+
color: string;
|
|
27
|
+
};
|
|
28
|
+
success: {
|
|
29
|
+
background: string;
|
|
30
|
+
color: string;
|
|
31
|
+
};
|
|
32
|
+
info: {
|
|
33
|
+
background: string;
|
|
34
|
+
color: string;
|
|
35
|
+
};
|
|
36
|
+
warn: {
|
|
37
|
+
background: string;
|
|
38
|
+
color: string;
|
|
39
|
+
};
|
|
40
|
+
error: {
|
|
41
|
+
background: string;
|
|
42
|
+
color: string;
|
|
43
|
+
};
|
|
44
|
+
online: {
|
|
45
|
+
background: string;
|
|
46
|
+
color: string;
|
|
47
|
+
};
|
|
48
|
+
dnd: {
|
|
49
|
+
background: string;
|
|
50
|
+
color: string;
|
|
51
|
+
};
|
|
52
|
+
busy: {
|
|
53
|
+
background: string;
|
|
54
|
+
color: string;
|
|
55
|
+
};
|
|
56
|
+
pause: {
|
|
57
|
+
background: string;
|
|
58
|
+
color: string;
|
|
59
|
+
};
|
|
60
|
+
onlineCc: {
|
|
61
|
+
background: string;
|
|
62
|
+
color: string;
|
|
63
|
+
};
|
|
64
|
+
offline: {
|
|
65
|
+
background: string;
|
|
66
|
+
color: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
dark: {
|
|
70
|
+
background: string;
|
|
71
|
+
color: string;
|
|
72
|
+
secondary: {
|
|
73
|
+
background: string;
|
|
74
|
+
color: string;
|
|
75
|
+
};
|
|
76
|
+
success: {
|
|
77
|
+
background: string;
|
|
78
|
+
color: string;
|
|
79
|
+
};
|
|
80
|
+
info: {
|
|
81
|
+
background: string;
|
|
82
|
+
color: string;
|
|
83
|
+
};
|
|
84
|
+
warn: {
|
|
85
|
+
background: string;
|
|
86
|
+
color: string;
|
|
87
|
+
};
|
|
88
|
+
error: {
|
|
89
|
+
background: string;
|
|
90
|
+
color: string;
|
|
91
|
+
};
|
|
92
|
+
online: {
|
|
93
|
+
background: string;
|
|
94
|
+
color: string;
|
|
95
|
+
};
|
|
96
|
+
dnd: {
|
|
97
|
+
background: string;
|
|
98
|
+
color: string;
|
|
99
|
+
};
|
|
100
|
+
busy: {
|
|
101
|
+
background: string;
|
|
102
|
+
color: string;
|
|
103
|
+
};
|
|
104
|
+
pause: {
|
|
105
|
+
background: string;
|
|
106
|
+
color: string;
|
|
107
|
+
};
|
|
108
|
+
onlineCc: {
|
|
109
|
+
background: string;
|
|
110
|
+
color: string;
|
|
111
|
+
};
|
|
112
|
+
offline: {
|
|
113
|
+
background: string;
|
|
114
|
+
color: string;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
function css({ dt }: {
|
|
119
|
+
dt: any;
|
|
120
|
+
}): string;
|
|
121
|
+
}
|
|
@@ -4,6 +4,7 @@ declare namespace components {
|
|
|
4
4
|
export { avatar };
|
|
5
5
|
export { breadcrumb };
|
|
6
6
|
export { button };
|
|
7
|
+
export { badge };
|
|
7
8
|
export { chip };
|
|
8
9
|
export { checkbox };
|
|
9
10
|
export { textarea };
|
|
@@ -23,6 +24,7 @@ import autocomplete from './autocomplete/autocomplete.js';
|
|
|
23
24
|
import avatar from './avatar/avatar.js';
|
|
24
25
|
import breadcrumb from './breadcrumb/breadcrumb.js';
|
|
25
26
|
import button from './button/button.js';
|
|
27
|
+
import badge from './badge/badge.js';
|
|
26
28
|
import chip from './chip/chip.js';
|
|
27
29
|
import checkbox from './checkbox/checkbox.js';
|
|
28
30
|
import textarea from './textarea/textarea.js';
|