Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Web/example/vite-vue3-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
"lint": "./node_modules/.bin/eslint ./src --no-error-on-unmatched-pattern"
},
"dependencies": {
"@tencentcloud/roomkit-web-vue3": "6.1.5",
"@tencentcloud/roomkit-web-vue3": "6.1.6",
"@tencentcloud/uikit-base-component-vue3": "1.4.9",
"@tencentcloud/uikit-base-widget-vue3": "1.1.3",
"@tencentcloud/universal-api": "^2.4.0",
"tuikit-atomicx-vue3": "6.5.3",
"tuikit-atomicx-vue3": "6.5.5",
"vue": "^3.2.25",
"vue-router": "^4.0.14"
},
Expand Down
6 changes: 6 additions & 0 deletions Web/roomkit/vue3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

---

## [6.1.6] - 2026-08-17

### Changed

- Optimize real-time subtitle interaction.

## [6.1.5] - 2026-08-09

### Added
Expand Down
6 changes: 6 additions & 0 deletions Web/roomkit/vue3/CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

---

## [6.1.6] - 2026-08-17

### 优化

- 优化实时字幕交互

## [6.1.5] - 2026-08-09

### 新增
Expand Down
4 changes: 3 additions & 1 deletion Web/roomkit/vue3/RoomKit/adapter/conference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,9 @@ class Conference extends ConferenceDeprecated implements IConference {
const widgets = this.registeredWidgets.filter((w) => {
const resolved = this.resolveZone(w.zone, platform);
if (resolved === undefined) {
return false;
// Panel-only widgets have no toolbar zone. Include them when listing
// everything (side panels), but never when filtering a toolbar zone.
return !zone;
}
if (zone) {
return resolved === zone;
Expand Down
5 changes: 5 additions & 0 deletions Web/roomkit/vue3/RoomKit/adapter/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ interface BaseWidget {
id: string;
zone?: WidgetZoneConfig;
order?: number;
/**
* Whether this widget can collapse into the More menu when the toolbar
* is too narrow. Defaults to true. Set false to keep it always visible.
*/
overflow?: boolean;
panel?: {
title: string | (() => string);
component: Component;
Expand Down
148 changes: 0 additions & 148 deletions Web/roomkit/vue3/RoomKit/components/AIToolsButton/AISettingsDialog.vue

This file was deleted.

This file was deleted.

Loading