@webitel/ui-sdk 25.12.56 → 25.12.57
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/package.json +1 -1
- package/src/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue +2 -0
- package/src/modules/CallSession/modules/VideoCall/video-call.vue +2 -0
- package/types/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue.d.ts +1 -0
- package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webitel/ui-sdk",
|
|
3
|
-
"version": "25.12.
|
|
3
|
+
"version": "25.12.57",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"make-all": "npm version patch --git-tag-version false && npm run build && (npm run build:types || true) && (npm run lint:fix || true) && npm run publish-lib",
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
v-if="shownActionsMap[VideoCallAction.Settings]"
|
|
58
58
|
:size="buttonSizeMap[size]"
|
|
59
59
|
:variant="props['actions:settings:pressed'] ? 'active' : 'outlined'"
|
|
60
|
+
:disabled="props['actions:settings:disabled']"
|
|
60
61
|
icon="settings"
|
|
61
62
|
color="secondary"
|
|
62
63
|
rounded
|
|
@@ -108,6 +109,7 @@ const props = defineProps<{
|
|
|
108
109
|
'recordings': boolean;
|
|
109
110
|
|
|
110
111
|
'actions:settings:pressed': boolean;
|
|
112
|
+
'actions:settings:disabled': boolean;
|
|
111
113
|
'actions:chat:pressed': boolean;
|
|
112
114
|
}>();
|
|
113
115
|
|
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
:recordings="props.recordings"
|
|
76
76
|
:actions="props.actions"
|
|
77
77
|
:actions:settings:pressed="props['actions:settings:pressed']"
|
|
78
|
+
:actions:settings:disabled="props['actions:settings:disabled']"
|
|
78
79
|
:actions:chat:pressed="props['actions:chat:pressed']"
|
|
79
80
|
@[VideoCallAction.Screenshot]="(payload, options) => emit(`action:${VideoCallAction.Screenshot}`, payload, options)"
|
|
80
81
|
@[VideoCallAction.Recordings]="(payload, options) => emit(`action:${VideoCallAction.Recordings}`, payload, options)"
|
|
@@ -132,6 +133,7 @@ const props = withDefaults(defineProps<{
|
|
|
132
133
|
username?: string;
|
|
133
134
|
|
|
134
135
|
'actions:settings:pressed'?: boolean;
|
|
136
|
+
'actions:settings:disabled'?: boolean;
|
|
135
137
|
'actions:chat:pressed'?: boolean;
|
|
136
138
|
}>(), {
|
|
137
139
|
position: 'right-bottom',
|
|
@@ -11,6 +11,7 @@ type __VLS_Props = {
|
|
|
11
11
|
'screenshot:loading': boolean;
|
|
12
12
|
'recordings': boolean;
|
|
13
13
|
'actions:settings:pressed': boolean;
|
|
14
|
+
'actions:settings:disabled': boolean;
|
|
14
15
|
'actions:chat:pressed': boolean;
|
|
15
16
|
};
|
|
16
17
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|