@webitel/ui-sdk 25.12.48 → 25.12.50
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-B4EtpXXD.js → install-DM_Q0dji.js} +13070 -12889
- package/dist/{plyr-DAfyG_iO.js → plyr-OnhA4rf4.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-DEJ-5jcv.js → vidstack-Bq6c3Bam-DbaqiW-G.js} +2 -2
- package/dist/{vidstack-D2pY00kU-DWEQ9_N8.js → vidstack-D2pY00kU-Ilyikvhr.js} +2 -2
- package/dist/{vidstack-DDXt6fpN-DHo4CIYR.js → vidstack-DDXt6fpN-CHfTn9BX.js} +1 -1
- package/dist/{vidstack-D_-9AA6_-ad2HIxVI.js → vidstack-D_-9AA6_-3vwSP2uy.js} +1 -1
- package/dist/{vidstack-DqAw8m9J-ReUPOFHP.js → vidstack-DqAw8m9J-DhoY5QSY.js} +1 -1
- package/dist/{vidstack-audio-CAikPdW6.js → vidstack-audio-DWe9RnDc.js} +2 -2
- package/dist/{vidstack-dash-CebXK5VO.js → vidstack-dash-B0eNUc8l.js} +3 -3
- package/dist/{vidstack-google-cast-Bb5-TcI4.js → vidstack-google-cast-ChRMiIAe.js} +3 -3
- package/dist/{vidstack-hls-CFWw21PX.js → vidstack-hls-DAdAA7tQ.js} +3 -3
- package/dist/{vidstack-video-BTCFVA94.js → vidstack-video-BGBwzabO.js} +2 -2
- package/dist/{vidstack-vimeo-D1nXJdHs.js → vidstack-vimeo-CGKxoSCH.js} +3 -3
- package/dist/{vidstack-youtube-MtnoA4Ft.js → vidstack-youtube-B9wXZ50D.js} +2 -2
- package/dist/{vuex.esm-bundler-yJVenwQK.js → vuex.esm-bundler-C6nPH718.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-table-actions/wt-table-actions.vue +36 -41
- package/src/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue +11 -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 +8 -8
- 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/components/wt-table-actions/wt-table-actions.vue.d.ts +22 -27
- 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,22 @@
|
|
|
1
|
+
import { ComponentSize } from "../../enums";
|
|
2
|
+
interface Props {
|
|
3
|
+
value: string | number;
|
|
4
|
+
severity?: "secondary" | "info" | "success" | "warn" | "error" | "online" | "dnd" | "busy" | "pause" | "onlineCc" | "offline";
|
|
5
|
+
size?: ComponentSize;
|
|
6
|
+
}
|
|
7
|
+
declare var __VLS_6: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
default?: (props: typeof __VLS_6) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
12
|
+
value: string | number;
|
|
13
|
+
size: ComponentSize;
|
|
14
|
+
severity: "secondary" | "info" | "success" | "warn" | "error" | "online" | "dnd" | "busy" | "pause" | "onlineCc" | "offline";
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -9,11 +9,16 @@ interface WtButtonProps extends /* @vue-ignore */ ButtonProps {
|
|
|
9
9
|
widthByContent?: boolean;
|
|
10
10
|
icon?: string;
|
|
11
11
|
iconPrefix?: string;
|
|
12
|
+
badge?: string;
|
|
13
|
+
badgeSeverity?: string;
|
|
14
|
+
badgeAbsolutePosition?: boolean;
|
|
12
15
|
variant?: ButtonVariant;
|
|
13
16
|
}
|
|
14
|
-
declare var __VLS_14: {};
|
|
17
|
+
declare var __VLS_14: {}, __VLS_19: {};
|
|
15
18
|
type __VLS_Slots = {} & {
|
|
16
19
|
default?: (props: typeof __VLS_14) => any;
|
|
20
|
+
} & {
|
|
21
|
+
badge?: (props: typeof __VLS_19) => any;
|
|
17
22
|
};
|
|
18
23
|
declare const __VLS_component: import("vue").DefineComponent<WtButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
24
|
click: (...args: any[]) => void;
|
|
@@ -26,8 +31,8 @@ declare const __VLS_component: import("vue").DefineComponent<WtButtonProps, {},
|
|
|
26
31
|
icon: string;
|
|
27
32
|
wide: boolean;
|
|
28
33
|
loading: boolean;
|
|
29
|
-
widthByContent: boolean;
|
|
30
34
|
iconPrefix: string;
|
|
35
|
+
widthByContent: boolean;
|
|
31
36
|
variant: ButtonVariant;
|
|
32
37
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
33
38
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
@@ -1,30 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
icons
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
isSettings(): boolean;
|
|
17
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
18
|
-
icons: {
|
|
19
|
-
type: ArrayConstructor;
|
|
20
|
-
default: () => string[];
|
|
21
|
-
};
|
|
22
|
-
isSettingsActive: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
}>> & Readonly<{}>, {
|
|
27
|
-
icons: unknown[];
|
|
1
|
+
interface Props {
|
|
2
|
+
icons?: string[];
|
|
3
|
+
isSettingsActive?: boolean;
|
|
4
|
+
isSettingsBadge?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare var __VLS_1: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
input: (value: string) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
|
|
13
|
+
onInput?: (value: string) => any;
|
|
14
|
+
}>, {
|
|
15
|
+
icons: string[];
|
|
28
16
|
isSettingsActive: boolean;
|
|
17
|
+
isSettingsBadge: boolean;
|
|
29
18
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
30
20
|
export default _default;
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -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';
|