@ndscnj/roomkit-web-vue3 25.12.24154 → 25.12.24156

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.
@@ -1,2 +1,11 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare function __VLS_template(): {
2
+ content?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
2
6
  export default _default;
7
+ type __VLS_WithTemplateSlots<T, S> = T & {
8
+ new (): {
9
+ $slots: S;
10
+ };
11
+ };
@@ -1,4 +1,4 @@
1
- import { defineComponent, createElementBlock, openBlock, createVNode, unref, isRef, withCtx, createBlock, createCommentVNode } from "vue";
1
+ import { defineComponent, createElementBlock, openBlock, createVNode, unref, isRef, withCtx, createBlock, createCommentVNode, renderSlot } from "vue";
2
2
  import Drawer from "../common/base/Drawer.vue.mjs";
3
3
  import useSideBar from "./useSideBarHooks.mjs";
4
4
  import index from "../ManageMember/index.mjs";
@@ -23,12 +23,17 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
23
23
  }, {
24
24
  default: withCtx(() => [
25
25
  unref(sidebarName) == "chat" ? (openBlock(), createBlock(unref(Index), { key: 0 })) : createCommentVNode("", true),
26
- unref(sidebarName) == "vote" ? (openBlock(), createBlock(unref(Index$1), { key: 1 })) : createCommentVNode("", true),
26
+ unref(sidebarName) == "vote" ? (openBlock(), createBlock(unref(Index$1), { key: 1 }, {
27
+ content: withCtx(() => [
28
+ renderSlot(_ctx.$slots, "content")
29
+ ]),
30
+ _: 3
31
+ })) : createCommentVNode("", true),
27
32
  unref(sidebarName) == "more" ? (openBlock(), createBlock(unref(Index$2), { key: 2 })) : createCommentVNode("", true),
28
33
  unref(sidebarName) == "manage-member" ? (openBlock(), createBlock(unref(index), { key: 3 })) : createCommentVNode("", true),
29
34
  unref(sidebarName) == "aiTranscription" ? (openBlock(), createBlock(AITranscription, { key: 4 })) : createCommentVNode("", true)
30
35
  ]),
31
- _: 1
36
+ _: 3
32
37
  }, 8, ["modelValue", "title", "before-close"])
33
38
  ]);
34
39
  };
@@ -2,5 +2,21 @@ declare const Index: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('v
2
2
  "on-close-contact": (...args: any[]) => void;
3
3
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
4
  "onOn-close-contact"?: ((...args: any[]) => any) | undefined;
5
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | ({
6
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
14
+ __isFragment?: never;
15
+ __isTeleport?: never;
16
+ __isSuspense?: never;
17
+ } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
18
+ $slots: {
19
+ content?(_: {}): any;
20
+ };
21
+ }));
6
22
  export default Index;
@@ -1,2 +1,11 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare function __VLS_template(): {
2
+ content?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
2
6
  export default _default;
7
+ type __VLS_WithTemplateSlots<T, S> = T & {
8
+ new (): {
9
+ $slots: S;
10
+ };
11
+ };
@@ -1,7 +1,14 @@
1
- import _sfc_main from "./indexPC.vue2.mjs";
1
+ import { createElementBlock, openBlock, renderSlot } from "vue";
2
2
  /* empty css */
3
3
  import _export_sfc from "../../_virtual/_plugin-vue_export-helper.mjs";
4
- const indexPC = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-abe3bdf3"]]);
4
+ const _sfc_main = {};
5
+ const _hoisted_1 = { class: "more-container" };
6
+ function _sfc_render(_ctx, _cache) {
7
+ return openBlock(), createElementBlock("div", _hoisted_1, [
8
+ renderSlot(_ctx.$slots, "content", {}, void 0, true)
9
+ ]);
10
+ }
11
+ const indexPC = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-41107c5f"]]);
5
12
  export {
6
13
  indexPC as default
7
14
  };
@@ -2,7 +2,7 @@ import _sfc_main from "./conference.vue2.mjs";
2
2
  /* empty css */
3
3
  /* empty css */
4
4
  import _export_sfc from "./_virtual/_plugin-vue_export-helper.mjs";
5
- const ConferenceMainView = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3b59b436"]]);
5
+ const ConferenceMainView = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-b4d71215"]]);
6
6
  export {
7
7
  ConferenceMainView as default
8
8
  };
@@ -282,7 +282,12 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
282
282
  }, 512), [
283
283
  [vShow, unref(showRoomTool)]
284
284
  ]),
285
- createVNode(unref(Index$1)),
285
+ createVNode(unref(Index$1), null, {
286
+ content: withCtx(() => [
287
+ renderSlot(_ctx.$slots, "content", {}, void 0, true)
288
+ ]),
289
+ _: 3
290
+ }),
286
291
  createVNode(RoomSetting),
287
292
  createVNode(_sfc_main$1),
288
293
  overlayMap.value.RoomInviteOverlay.visible ? (openBlock(), createBlock(unref(Index$2), { key: 0 })) : createCommentVNode("", true),
package/es/index.mjs CHANGED
@@ -5075,17 +5075,17 @@ to {
5075
5075
  font-size: 16px;
5076
5076
  font-weight: 400;
5077
5077
  text-align: end;
5078
- }.more-container[data-v-abe3bdf3] {
5078
+ }.more-container[data-v-41107c5f] {
5079
5079
  padding: 20px;
5080
5080
  }
5081
- .more-container .more-title[data-v-abe3bdf3] {
5081
+ .more-container .more-title[data-v-41107c5f] {
5082
5082
  display: flex;
5083
5083
  align-items: center;
5084
5084
  }
5085
- .more-container .more-title .email-icon[data-v-abe3bdf3] {
5085
+ .more-container .more-title .email-icon[data-v-41107c5f] {
5086
5086
  color: var(--uikit-color-gray-7);
5087
5087
  }
5088
- .more-container .more-title .more-notice[data-v-abe3bdf3] {
5088
+ .more-container .more-title .more-notice[data-v-41107c5f] {
5089
5089
  width: 100%;
5090
5090
  height: 22px;
5091
5091
  padding-left: 8px;
@@ -5094,15 +5094,15 @@ to {
5094
5094
  line-height: 22px;
5095
5095
  color: var(--text-color-primary);
5096
5096
  }
5097
- .more-container .more-item[data-v-abe3bdf3] {
5097
+ .more-container .more-item[data-v-41107c5f] {
5098
5098
  position: relative;
5099
5099
  display: flex;
5100
5100
  flex-direction: column;
5101
5101
  }
5102
- .more-container .more-item[data-v-abe3bdf3]:not(:first-child) {
5102
+ .more-container .more-item[data-v-41107c5f]:not(:first-child) {
5103
5103
  margin-top: 20px;
5104
5104
  }
5105
- .more-container .more-item:not(:first-child) .item-title[data-v-abe3bdf3] {
5105
+ .more-container .more-item:not(:first-child) .item-title[data-v-41107c5f] {
5106
5106
  width: 100%;
5107
5107
  padding-bottom: 8px;
5108
5108
  font-size: 14px;
@@ -5110,7 +5110,7 @@ to {
5110
5110
  line-height: 22px;
5111
5111
  color: var(--text-color-primary);
5112
5112
  }
5113
- .more-container .more-item:not(:first-child) .more-content[data-v-abe3bdf3] {
5113
+ .more-container .more-item:not(:first-child) .more-content[data-v-41107c5f] {
5114
5114
  position: relative;
5115
5115
  box-sizing: border-box;
5116
5116
  display: inline-block;
@@ -5130,7 +5130,7 @@ to {
5130
5130
  background-color: var(--bg-color-input);
5131
5131
  border: 1px solid var(--stroke-color-module);
5132
5132
  }
5133
- .more-container .more-item:not(:first-child) .copy-icon[data-v-abe3bdf3] {
5133
+ .more-container .more-item:not(:first-child) .copy-icon[data-v-41107c5f] {
5134
5134
  position: absolute;
5135
5135
  top: 45px;
5136
5136
  right: 10px;
@@ -9168,7 +9168,7 @@ body, html {
9168
9168
  }
9169
9169
  .tui-room :not([class|=el]) {
9170
9170
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
9171
- }.tui-room[data-v-3b59b436] {
9171
+ }.tui-room[data-v-b4d71215] {
9172
9172
  position: relative;
9173
9173
  display: flex;
9174
9174
  flex-direction: column;
@@ -9180,7 +9180,7 @@ body, html {
9180
9180
  text-align: left;
9181
9181
  background-color: var(--bg-color-topbar);
9182
9182
  }
9183
- .tui-room .header[data-v-3b59b436] {
9183
+ .tui-room .header[data-v-b4d71215] {
9184
9184
  position: absolute;
9185
9185
  top: 0;
9186
9186
  left: 0;
@@ -9191,20 +9191,20 @@ body, html {
9191
9191
  border-bottom: 1px solid var(--stroke-color-primary);
9192
9192
  box-shadow: 0 1px 0 var(--uikit-color-black-8);
9193
9193
  }
9194
- .tui-room .content[data-v-3b59b436] {
9194
+ .tui-room .content[data-v-b4d71215] {
9195
9195
  position: absolute;
9196
9196
  top: 0;
9197
9197
  width: 100%;
9198
9198
  height: 100%;
9199
9199
  background-color: var(--bg-color-topbar);
9200
9200
  }
9201
- .tui-room.tui-room-h5[data-v-3b59b436] {
9201
+ .tui-room.tui-room-h5[data-v-b4d71215] {
9202
9202
  width: 100%;
9203
9203
  min-width: 350px;
9204
9204
  height: 100%;
9205
9205
  min-height: 525px;
9206
9206
  }
9207
- #roomContainer.chat-room[data-v-3b59b436] {
9207
+ #roomContainer.chat-room[data-v-b4d71215] {
9208
9208
  position: absolute;
9209
9209
  top: 0;
9210
9210
  right: 0;
@@ -9216,8 +9216,8 @@ body, html {
9216
9216
  margin: auto;
9217
9217
  border-radius: 10px;
9218
9218
  }
9219
- #roomContainer.tui-room-h5[data-v-3b59b436],
9220
- #roomContainer .chat-room[data-v-3b59b436] {
9219
+ #roomContainer.tui-room-h5[data-v-b4d71215],
9220
+ #roomContainer .chat-room[data-v-b4d71215] {
9221
9221
  width: 100%;
9222
9222
  height: 100%;
9223
9223
  }.user-info-container[data-v-9e9aff53] {
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
3
+ const indexPC_vue_vue_type_script_setup_true_lang = ;/* empty css */
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexPC = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-2317a136"]]);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
3
+ const indexPC_vue_vue_type_script_setup_true_lang = ;/* empty css */
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexPC = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-b687c25c"]]);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
3
+ const indexPC_vue_vue_type_script_setup_true_lang = ;/* empty css */
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexPC = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-3ed9f9ec"]]);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
3
+ const indexPC_vue_vue_type_script_setup_true_lang = ;/* empty css */
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexPc = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-4afcea78"]]);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
3
+ const indexPC_vue_vue_type_script_setup_true_lang = ;/* empty css */
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexPC = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-1bc9e31a"]]);
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
3
+ const indexPC_vue_vue_type_script_setup_true_lang = ;/* empty css */
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
6
6
  const indexPC = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-d8015abd"]]);
@@ -1,2 +1,11 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare function __VLS_template(): {
2
+ content?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
2
6
  export default _default;
7
+ type __VLS_WithTemplateSlots<T, S> = T & {
8
+ new (): {
9
+ $slots: S;
10
+ };
11
+ };
@@ -25,12 +25,17 @@ const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
25
25
  }, {
26
26
  default: Vue.withCtx(() => [
27
27
  Vue.unref(sidebarName) == "chat" ? (Vue.openBlock(), Vue.createBlock(Vue.unref(index.default), { key: 0 })) : Vue.createCommentVNode("", true),
28
- Vue.unref(sidebarName) == "vote" ? (Vue.openBlock(), Vue.createBlock(Vue.unref(index$1.default), { key: 1 })) : Vue.createCommentVNode("", true),
28
+ Vue.unref(sidebarName) == "vote" ? (Vue.openBlock(), Vue.createBlock(Vue.unref(index$1.default), { key: 1 }, {
29
+ content: Vue.withCtx(() => [
30
+ Vue.renderSlot(_ctx.$slots, "content")
31
+ ]),
32
+ _: 3
33
+ })) : Vue.createCommentVNode("", true),
29
34
  Vue.unref(sidebarName) == "more" ? (Vue.openBlock(), Vue.createBlock(Vue.unref(index$2.default), { key: 2 })) : Vue.createCommentVNode("", true),
30
35
  Vue.unref(sidebarName) == "manage-member" ? (Vue.openBlock(), Vue.createBlock(Vue.unref(index$3.default), { key: 3 })) : Vue.createCommentVNode("", true),
31
36
  Vue.unref(sidebarName) == "aiTranscription" ? (Vue.openBlock(), Vue.createBlock(AITranscription.default, { key: 4 })) : Vue.createCommentVNode("", true)
32
37
  ]),
33
- _: 1
38
+ _: 3
34
39
  }, 8, ["modelValue", "title", "before-close"])
35
40
  ]);
36
41
  };
@@ -2,5 +2,21 @@ declare const Index: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('v
2
2
  "on-close-contact": (...args: any[]) => void;
3
3
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
4
4
  "onOn-close-contact"?: ((...args: any[]) => any) | undefined;
5
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any> | ({
6
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, {}>;
14
+ __isFragment?: never;
15
+ __isTeleport?: never;
16
+ __isSuspense?: never;
17
+ } & import('vue').ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
18
+ $slots: {
19
+ content?(_: {}): any;
20
+ };
21
+ }));
6
22
  export default Index;
@@ -1,2 +1,11 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
1
+ declare function __VLS_template(): {
2
+ content?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
5
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
2
6
  export default _default;
7
+ type __VLS_WithTemplateSlots<T, S> = T & {
8
+ new (): {
9
+ $slots: S;
10
+ };
11
+ };
@@ -1,7 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const indexPC_vue_vue_type_script_setup_true_lang = require("./indexPC.vue2.js");
3
+ const Vue = require("vue");
4
4
  ;/* empty css */
5
5
  const _pluginVue_exportHelper = require("../../_virtual/_plugin-vue_export-helper.js");
6
- const indexPC = /* @__PURE__ */ _pluginVue_exportHelper.default(indexPC_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-abe3bdf3"]]);
6
+ const _sfc_main = {};
7
+ const _hoisted_1 = { class: "more-container" };
8
+ function _sfc_render(_ctx, _cache) {
9
+ return Vue.openBlock(), Vue.createElementBlock("div", _hoisted_1, [
10
+ Vue.renderSlot(_ctx.$slots, "content", {}, void 0, true)
11
+ ]);
12
+ }
13
+ const indexPC = /* @__PURE__ */ _pluginVue_exportHelper.default(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-41107c5f"]]);
7
14
  exports.default = indexPC;
@@ -4,5 +4,5 @@ const conference_vue_vue_type_script_setup_true_lang = require("./conference.vue
4
4
  ;/* empty css */
5
5
  ;/* empty css */
6
6
  const _pluginVue_exportHelper = require("./_virtual/_plugin-vue_export-helper.js");
7
- const ConferenceMainView = /* @__PURE__ */ _pluginVue_exportHelper.default(conference_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-3b59b436"]]);
7
+ const ConferenceMainView = /* @__PURE__ */ _pluginVue_exportHelper.default(conference_vue_vue_type_script_setup_true_lang.default, [["__scopeId", "data-v-b4d71215"]]);
8
8
  exports.default = ConferenceMainView;
@@ -284,7 +284,12 @@ const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
284
284
  }, 512), [
285
285
  [Vue.vShow, Vue.unref(showRoomTool)]
286
286
  ]),
287
- Vue.createVNode(Vue.unref(index$3.default)),
287
+ Vue.createVNode(Vue.unref(index$3.default), null, {
288
+ content: Vue.withCtx(() => [
289
+ Vue.renderSlot(_ctx.$slots, "content", {}, void 0, true)
290
+ ]),
291
+ _: 3
292
+ }),
288
293
  Vue.createVNode(index$4.default),
289
294
  Vue.createVNode(RoomOverlay_vue_vue_type_script_setup_true_lang.default),
290
295
  overlayMap.value.RoomInviteOverlay.visible ? (Vue.openBlock(), Vue.createBlock(Vue.unref(index$5.default), { key: 0 })) : Vue.createCommentVNode("", true),
package/lib/index.js CHANGED
@@ -5075,17 +5075,17 @@ to {
5075
5075
  font-size: 16px;
5076
5076
  font-weight: 400;
5077
5077
  text-align: end;
5078
- }.more-container[data-v-abe3bdf3] {
5078
+ }.more-container[data-v-41107c5f] {
5079
5079
  padding: 20px;
5080
5080
  }
5081
- .more-container .more-title[data-v-abe3bdf3] {
5081
+ .more-container .more-title[data-v-41107c5f] {
5082
5082
  display: flex;
5083
5083
  align-items: center;
5084
5084
  }
5085
- .more-container .more-title .email-icon[data-v-abe3bdf3] {
5085
+ .more-container .more-title .email-icon[data-v-41107c5f] {
5086
5086
  color: var(--uikit-color-gray-7);
5087
5087
  }
5088
- .more-container .more-title .more-notice[data-v-abe3bdf3] {
5088
+ .more-container .more-title .more-notice[data-v-41107c5f] {
5089
5089
  width: 100%;
5090
5090
  height: 22px;
5091
5091
  padding-left: 8px;
@@ -5094,15 +5094,15 @@ to {
5094
5094
  line-height: 22px;
5095
5095
  color: var(--text-color-primary);
5096
5096
  }
5097
- .more-container .more-item[data-v-abe3bdf3] {
5097
+ .more-container .more-item[data-v-41107c5f] {
5098
5098
  position: relative;
5099
5099
  display: flex;
5100
5100
  flex-direction: column;
5101
5101
  }
5102
- .more-container .more-item[data-v-abe3bdf3]:not(:first-child) {
5102
+ .more-container .more-item[data-v-41107c5f]:not(:first-child) {
5103
5103
  margin-top: 20px;
5104
5104
  }
5105
- .more-container .more-item:not(:first-child) .item-title[data-v-abe3bdf3] {
5105
+ .more-container .more-item:not(:first-child) .item-title[data-v-41107c5f] {
5106
5106
  width: 100%;
5107
5107
  padding-bottom: 8px;
5108
5108
  font-size: 14px;
@@ -5110,7 +5110,7 @@ to {
5110
5110
  line-height: 22px;
5111
5111
  color: var(--text-color-primary);
5112
5112
  }
5113
- .more-container .more-item:not(:first-child) .more-content[data-v-abe3bdf3] {
5113
+ .more-container .more-item:not(:first-child) .more-content[data-v-41107c5f] {
5114
5114
  position: relative;
5115
5115
  box-sizing: border-box;
5116
5116
  display: inline-block;
@@ -5130,7 +5130,7 @@ to {
5130
5130
  background-color: var(--bg-color-input);
5131
5131
  border: 1px solid var(--stroke-color-module);
5132
5132
  }
5133
- .more-container .more-item:not(:first-child) .copy-icon[data-v-abe3bdf3] {
5133
+ .more-container .more-item:not(:first-child) .copy-icon[data-v-41107c5f] {
5134
5134
  position: absolute;
5135
5135
  top: 45px;
5136
5136
  right: 10px;
@@ -9168,7 +9168,7 @@ body, html {
9168
9168
  }
9169
9169
  .tui-room :not([class|=el]) {
9170
9170
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
9171
- }.tui-room[data-v-3b59b436] {
9171
+ }.tui-room[data-v-b4d71215] {
9172
9172
  position: relative;
9173
9173
  display: flex;
9174
9174
  flex-direction: column;
@@ -9180,7 +9180,7 @@ body, html {
9180
9180
  text-align: left;
9181
9181
  background-color: var(--bg-color-topbar);
9182
9182
  }
9183
- .tui-room .header[data-v-3b59b436] {
9183
+ .tui-room .header[data-v-b4d71215] {
9184
9184
  position: absolute;
9185
9185
  top: 0;
9186
9186
  left: 0;
@@ -9191,20 +9191,20 @@ body, html {
9191
9191
  border-bottom: 1px solid var(--stroke-color-primary);
9192
9192
  box-shadow: 0 1px 0 var(--uikit-color-black-8);
9193
9193
  }
9194
- .tui-room .content[data-v-3b59b436] {
9194
+ .tui-room .content[data-v-b4d71215] {
9195
9195
  position: absolute;
9196
9196
  top: 0;
9197
9197
  width: 100%;
9198
9198
  height: 100%;
9199
9199
  background-color: var(--bg-color-topbar);
9200
9200
  }
9201
- .tui-room.tui-room-h5[data-v-3b59b436] {
9201
+ .tui-room.tui-room-h5[data-v-b4d71215] {
9202
9202
  width: 100%;
9203
9203
  min-width: 350px;
9204
9204
  height: 100%;
9205
9205
  min-height: 525px;
9206
9206
  }
9207
- #roomContainer.chat-room[data-v-3b59b436] {
9207
+ #roomContainer.chat-room[data-v-b4d71215] {
9208
9208
  position: absolute;
9209
9209
  top: 0;
9210
9210
  right: 0;
@@ -9216,8 +9216,8 @@ body, html {
9216
9216
  margin: auto;
9217
9217
  border-radius: 10px;
9218
9218
  }
9219
- #roomContainer.tui-room-h5[data-v-3b59b436],
9220
- #roomContainer .chat-room[data-v-3b59b436] {
9219
+ #roomContainer.tui-room-h5[data-v-b4d71215],
9220
+ #roomContainer .chat-room[data-v-b4d71215] {
9221
9221
  width: 100%;
9222
9222
  height: 100%;
9223
9223
  }.user-info-container[data-v-9e9aff53] {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ndscnj/roomkit-web-vue3",
3
- "version": "25.12.24154",
3
+ "version": "25.12.24156",
4
4
  "main": "./lib/index.js",
5
5
  "module": "./es/index.mjs",
6
6
  "types": "./es/index.d.ts",
@@ -8,7 +8,11 @@
8
8
  :size="400"
9
9
  >
10
10
  <chat v-if="sidebarName == 'chat'" />
11
- <room-vote v-if="sidebarName == 'vote'" />
11
+ <room-vote v-if="sidebarName == 'vote'" >
12
+ <template #content>
13
+ <slot name="content"></slot>
14
+ </template>
15
+ </room-vote>
12
16
  <room-more v-if="sidebarName == 'more'" />
13
17
  <manage-member v-if="sidebarName == 'manage-member'" />
14
18
  <AITranscription v-if="sidebarName == 'aiTranscription'" />
@@ -1,32 +1,10 @@
1
1
  <template>
2
2
  <div class="more-container">
3
- <div class="more-title">
4
- <IconEmail class="email-icon" />
5
- <div class="more-notice">
6
- {{ t('Vote') }}
7
- </div>
8
- </div>
9
- <div v-if="isZH" class="more-item">
10
- <div class="item-title">{{ t('Join our product discussion group') }}</div>
11
- <TUIButton @click="handleClick">{{ t('Join now') }}</TUIButton>
12
- </div>
13
- <div class="more-item">
14
- <div class="item-title">{{ t('Our email address') }}</div>
15
- <div class="more-content">{{ email }}</div>
16
- <IconCopy class="copy-icon" @click="onCopy(email)" />
17
- </div>
3
+ <slot name="content"></slot>
18
4
  </div>
19
5
  </template>
20
6
 
21
7
  <script setup lang="ts">
22
- import {
23
- TUIButton,
24
- IconCopy,
25
- IconEmail,
26
- } from '@tencentcloud/uikit-base-component-vue3';
27
- import useRoomMoreControl from './useRoomMoreHooks';
28
-
29
- const { t, onCopy, handleClick, email, isZH } = useRoomMoreControl();
30
8
  </script>
31
9
 
32
10
  <style lang="scss" scoped>
@@ -22,7 +22,11 @@
22
22
  <slot name="content"></slot>
23
23
  </template>
24
24
  </room-footer>
25
- <room-sidebar />
25
+ <room-sidebar>
26
+ <template #content>
27
+ <slot name="content"></slot>
28
+ </template>
29
+ </room-sidebar>
26
30
  <room-setting />
27
31
  <room-overlay />
28
32
  <RoomInviteOverlay v-if="overlayMap.RoomInviteOverlay.visible" />
@@ -1,48 +0,0 @@
1
- import { defineComponent, createElementBlock, openBlock, createElementVNode, createCommentVNode, createVNode, unref, toDisplayString, withCtx, createTextVNode } from "vue";
2
- import { IconEmail, TUIButton, IconCopy } from "@tencentcloud/uikit-base-component-vue3";
3
- import useRoomMoreHooks from "./useRoomMoreHooks.mjs";
4
- const _hoisted_1 = { class: "more-container" };
5
- const _hoisted_2 = { class: "more-title" };
6
- const _hoisted_3 = { class: "more-notice" };
7
- const _hoisted_4 = {
8
- key: 0,
9
- class: "more-item"
10
- };
11
- const _hoisted_5 = { class: "item-title" };
12
- const _hoisted_6 = { class: "more-item" };
13
- const _hoisted_7 = { class: "item-title" };
14
- const _hoisted_8 = { class: "more-content" };
15
- const _sfc_main = /* @__PURE__ */ defineComponent({
16
- __name: "indexPC",
17
- setup(__props) {
18
- const { t, onCopy, handleClick, email, isZH } = useRoomMoreHooks();
19
- return (_ctx, _cache) => {
20
- return openBlock(), createElementBlock("div", _hoisted_1, [
21
- createElementVNode("div", _hoisted_2, [
22
- createVNode(unref(IconEmail), { class: "email-icon" }),
23
- createElementVNode("div", _hoisted_3, toDisplayString(unref(t)("Vote")), 1)
24
- ]),
25
- unref(isZH) ? (openBlock(), createElementBlock("div", _hoisted_4, [
26
- createElementVNode("div", _hoisted_5, toDisplayString(unref(t)("Join our product discussion group")), 1),
27
- createVNode(unref(TUIButton), { onClick: unref(handleClick) }, {
28
- default: withCtx(() => [
29
- createTextVNode(toDisplayString(unref(t)("Join now")), 1)
30
- ]),
31
- _: 1
32
- }, 8, ["onClick"])
33
- ])) : createCommentVNode("", true),
34
- createElementVNode("div", _hoisted_6, [
35
- createElementVNode("div", _hoisted_7, toDisplayString(unref(t)("Our email address")), 1),
36
- createElementVNode("div", _hoisted_8, toDisplayString(unref(email)), 1),
37
- createVNode(unref(IconCopy), {
38
- class: "copy-icon",
39
- onClick: _cache[0] || (_cache[0] = ($event) => unref(onCopy)(unref(email)))
40
- })
41
- ])
42
- ]);
43
- };
44
- }
45
- });
46
- export {
47
- _sfc_main as default
48
- };
@@ -1,48 +0,0 @@
1
- "use strict";
2
- Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
3
- const Vue = require("vue");
4
- const uikitBaseComponentVue3 = require("@tencentcloud/uikit-base-component-vue3");
5
- const useRoomMoreHooks = require("./useRoomMoreHooks.js");
6
- const _hoisted_1 = { class: "more-container" };
7
- const _hoisted_2 = { class: "more-title" };
8
- const _hoisted_3 = { class: "more-notice" };
9
- const _hoisted_4 = {
10
- key: 0,
11
- class: "more-item"
12
- };
13
- const _hoisted_5 = { class: "item-title" };
14
- const _hoisted_6 = { class: "more-item" };
15
- const _hoisted_7 = { class: "item-title" };
16
- const _hoisted_8 = { class: "more-content" };
17
- const _sfc_main = /* @__PURE__ */ Vue.defineComponent({
18
- __name: "indexPC",
19
- setup(__props) {
20
- const { t, onCopy, handleClick, email, isZH } = useRoomMoreHooks.default();
21
- return (_ctx, _cache) => {
22
- return Vue.openBlock(), Vue.createElementBlock("div", _hoisted_1, [
23
- Vue.createElementVNode("div", _hoisted_2, [
24
- Vue.createVNode(Vue.unref(uikitBaseComponentVue3.IconEmail), { class: "email-icon" }),
25
- Vue.createElementVNode("div", _hoisted_3, Vue.toDisplayString(Vue.unref(t)("Vote")), 1)
26
- ]),
27
- Vue.unref(isZH) ? (Vue.openBlock(), Vue.createElementBlock("div", _hoisted_4, [
28
- Vue.createElementVNode("div", _hoisted_5, Vue.toDisplayString(Vue.unref(t)("Join our product discussion group")), 1),
29
- Vue.createVNode(Vue.unref(uikitBaseComponentVue3.TUIButton), { onClick: Vue.unref(handleClick) }, {
30
- default: Vue.withCtx(() => [
31
- Vue.createTextVNode(Vue.toDisplayString(Vue.unref(t)("Join now")), 1)
32
- ]),
33
- _: 1
34
- }, 8, ["onClick"])
35
- ])) : Vue.createCommentVNode("", true),
36
- Vue.createElementVNode("div", _hoisted_6, [
37
- Vue.createElementVNode("div", _hoisted_7, Vue.toDisplayString(Vue.unref(t)("Our email address")), 1),
38
- Vue.createElementVNode("div", _hoisted_8, Vue.toDisplayString(Vue.unref(email)), 1),
39
- Vue.createVNode(Vue.unref(uikitBaseComponentVue3.IconCopy), {
40
- class: "copy-icon",
41
- onClick: _cache[0] || (_cache[0] = ($event) => Vue.unref(onCopy)(Vue.unref(email)))
42
- })
43
- ])
44
- ]);
45
- };
46
- }
47
- });
48
- exports.default = _sfc_main;